For first use: download the fastText Library via Terminal
$ wget https://github.com/facebookresearch/fastText/archive/v0.9.1.zip
$ unzip v0.9.1.zip
$ cd fastText-0.9.1
$ make
First we need to create a training file corpTrain.txt in containing UTF-8 encoded text. Therefore we create a training corpus consisting of the NDC data and save it to this file:
library(reticulate)
library(countrycode)
library(quanteda)
## Package version: 2.0.0
## Parallel computing: 2 of 16 threads used.
## See https://quanteda.io for tutorials and examples.
##
## Attaching package: 'quanteda'
## The following object is masked from 'package:utils':
##
## View
library(quanteda.corpora)
library(quanteda.textmodels)
library(stringi)
load("data_ndc_reduced.RData",.GlobalEnv)
frameNDC <- data.frame(data_ndc)
cleanNDC <-subset(frameNDC,select = c(NDCISO3,Title,Body, NDCSubmissionDate))
#this step makes the process very slow but is necessary to create a well structures corpus
cleanNDC$Body<-as.character(cleanNDC$Body)
corp_NDC <- corpus(cleanNDC,docid_field = "NDCISO3",text_field = "Body")
stri_write_lines(as.character(corp_NDC), "corpNDC.txt",encoding="UTF-8")
#sepeate corpus in training and testing-samples 2:1, we will need this later on
corp_Train<-corpus(corp_NDC[1:120])
corp_Test <- corpus(corp_NDC[121:184])
stri_write_lines(as.character(corp_Train), "corpTrain.txt",encoding="UTF-8")
Now we can create the n-grams:
$./fasttext skipgram -input /home/lmdose/Transnorms/corpNDC.txt -output /home/lmdose/Transnorms/model
NOTE: Make sure the path to your input file is complete
Output: character n-gramms from 3 to 6 characters we using the default option: so our model will be saved in 2 files: model.binand model.vec
model.vec: containing word vectors - one per line
model.by: binary file, containing parameters of the model, dictionary and the hyper parameters (used to compute word vectors or restart the optimization)
Look into model.vecdata
$ head -n 4 /home/lmdose/Transnorms/model.vec
First you will see the Header with the number of words and the dimensionality of the vectors
Lines underneath are the word vectors for all words in the vocabulary, sorted by decreasing frequency
10774 100
the -0.03499 -0.18335 -0.10559 0.2881 0.54159 -0.032164 -0.41327 -0.59312 0.26826 -0.036791 -0.078577 0.11063 0.24688 -0.21086 0.20692 -0.56439 0.04891 -0.22069 0.17839 0.076822 -0.22762 0.045206 0.23644 -0.17071 -0.0057124 -0.39182 0.1745 -0.43951 -0.33953 0.038183 -0.094884 -0.057301 0.24533 -0.22221 0.04039 -0.12032 -0.6133 -0.039249 -0.21975 0.10141 0.017226 0.33069 -0.017599 0.029245 0.016613 0.10392 -0.074652 -0.13209 -0.50272 0.11387 -0.40016 0.13423 0.11466 -0.2506 -0.070772 0.43143 -0.05571 -0.19713 -0.14835 -0.14179 -0.14898 0.21163 0.24192 -0.076029 -0.32578 -0.11701 -0.26833 0.67852 -0.21537 0.1336 0.19592 0.38179 0.048842 0.13838 -0.21994 0.029262 0.025223 -0.29592 0.32399 -0.0040888 0.020609 -0.082071 1.1773 0.0040636 -0.094433 0.17531 -0.32684 0.029042 -0.16321 -0.23234 -0.11499 0.062406 -0.0088184 -0.017994 0.033088 -0.63257 -0.020392 0.49179 0.082061 -0.25972
of 0.098286 0.2146 -0.49967 0.23697 0.057761 0.053467 0.02508 -0.6012 0.17814 -0.061209 0.16816 0.15009 -0.067927 -0.3957 -0.095671 -0.4982 0.029651 -0.091187 0.13122 0.035603 -0.42743 -0.43455 0.12268 -0.13232 0.096251 0.15197 0.17784 -0.23815 -0.54501 0.1379 -0.2073 -0.32335 0.14169 -0.72529 -0.27303 0.0042096 -0.051325 -0.11965 -0.083101 -0.083953 -0.35923 0.12159 -0.072992 -0.036568 -0.010522 0.3643 0.35721 -0.32418 -0.37369 -0.5212 0.018163 0.23687 -0.0071997 -0.0074888 -0.034494 0.019077 -0.26253 -0.11654 -0.23271 0.0019683 0.15023 0.12797 0.44823 0.35739 -0.049191 -0.14703 -0.11383 0.5319 -0.0048039 0.3375 0.052892 -0.13707 -0.0015453 0.19553 -0.16275 0.2902 0.26353 -0.049827 -0.07324 0.0047258 0.30992 -0.37119 0.91426 0.26154 0.11348 0.29161 -0.45588 -0.035805 -0.049376 -0.069457 -0.27662 0.31167 -0.12594 -0.050569 0.31997 -0.70282 0.26969 0.22731 0.10048 -0.23374
For this we need the previously trained model to compute out-of-vocabulary word-vectors:
NOTE: therefore we need the test_corpus from our NDC-Data and save it to a file:
stri_write_lines(as.character(corp_Test), "corpTest.txt",encoding="UTF-8")
Now you can compute all vectors
- NOT RECOMMENDED - long comliling time:
$ ./fasttext print-word-vectors model.bin < corpTest.txt
to see the difference between the possible models for computing word representations: skipgram and cbow
skipgram learns to predict a target word thank to a nearby word
cbow model predicts the target word according to it’s context
library(reticulate)
#py_install("fasttext",pip=TRUE)
generalization of n-grams in which the components (typically words) need not be consecutive in the text under consideration, but may leave gaps that are skipped over
import fasttext
# Skipgram model :
model = fasttext.train_unsupervised('/home/lmdose/Transnorms/corpNDC.txt', model='skipgram')
#print(model.words) # list of words in dictionary
#print(model['environment']) # get the vector of the word 'environment'
print(model.get_word_vector("the"))
#save and load the used model
#model.save_model("model_Skipgram.bin")
#model = fasttext.load_model("model_Skipgram.bin")
## [ 0.5823187 0.01354557 0.12242497 0.3532409 0.24886626 -0.28897318
## -0.11529521 -0.15595374 0.3636525 0.23986788 0.22228147 0.05776799
## 0.00633125 -0.47234684 0.5451472 -0.37693605 -0.26807293 0.14937538
## -0.35640112 -0.0690174 -0.4630555 0.13071229 -0.0015531 -0.45493153
## 0.02816676 -0.37942094 0.2182137 -0.24866456 -0.27882028 -0.15474558
## -0.0050651 -0.13726953 0.5423108 -0.34045658 -0.32225138 0.07109424
## -0.19171932 0.08170998 -0.26355192 0.38899308 -0.17432684 0.58566105
## -0.00887425 0.06567102 0.15995084 -0.10437258 -0.18424591 0.01847774
## -0.26021647 0.30871364 -0.13643053 0.20566447 -0.04363001 -0.15818818
## -0.37993807 -0.00893357 0.17031232 -0.09664437 0.33397734 0.47009605
## 0.07011077 -0.06849101 0.3162833 -0.15138812 0.16167358 0.53874534
## -0.16129242 0.23343508 -0.04670294 -0.11028334 0.14168428 -0.09825205
## -0.08191513 -0.21527962 -0.11924632 0.07435291 0.05326606 -0.23393513
## -0.04418733 -0.05805134 0.28165254 -0.15664068 0.70873284 -0.00764321
## 0.16308399 -0.1581713 -0.1808656 0.09245358 -0.5312962 -0.22118971
## 0.09415234 -0.21852034 0.15755884 -0.07343325 0.30879864 -0.6222605
## 0.32024637 0.15456776 -0.15166144 0.00543984]
Continous-Bag-of-Words-Model
import fasttext
# or, cbow model :
model = fasttext.train_unsupervised('/home/lmdose/Transnorms/corpNDC.txt', model='cbow')
#print(model.words) # list of words in dictionary
print(model['environment']) # get the vector of the word 'environment'
#save and load the used model
## [ 1.0783936 -0.204134 0.21529645 1.5048165 0.28533927 0.10685279
## -0.39947036 0.6357685 -0.06705244 -0.31064126 -0.5757042 -0.01651522
## 0.7476375 0.6310607 0.2445185 -0.23020095 -0.9824078 0.04718415
## 0.42641228 0.65498126 0.16872868 -0.06193537 0.32136488 0.10784563
## -0.06033111 -0.47580484 -0.55686164 -0.50976086 0.13409051 1.3227488
## -1.016191 -0.2796896 -0.6983971 0.43487424 -0.91790116 0.27311012
## 0.7269545 -0.30813086 -0.7438809 1.0001969 0.31998748 -0.08725212
## -0.58830404 0.02290096 0.21639366 -0.03155804 -0.49392143 1.1624535
## -0.77428865 -0.5978175 0.11803786 0.95361537 0.70845217 -0.2361077
## 0.34372678 -0.05231997 -0.28632146 0.6989872 -0.386794 0.1604246
## -1.125397 1.6065888 1.3761024 -0.46430793 -0.58917826 -0.35198298
## 0.03626015 0.8655159 0.4552439 1.4416643 -0.02853695 -0.43792236
## -0.30112815 -0.22626884 -0.29589254 -0.95303667 -0.21992451 0.55057746
## -0.5048564 -0.07325631 -1.0728685 0.10855455 -0.5114205 0.7659224
## -0.46671182 1.8982466 1.1050923 -0.63911104 0.01496439 -1.5656222
## -0.04519705 -0.13737708 0.15876943 -0.96226853 -0.10238124 -1.9488845
## -0.32782564 0.51581585 1.2527219 -0.43449318]
model.save_model("model_CBOW.bin")
#model = fasttext.load_model("model_CBOW.bin")
in the upper part we used the default version of all the parameters, now we explore the possibilities:
we can control the dimension of the vectors (dim), subwords are all substrings between the minimum size (minn) and the maximal size (maxn)
in the default version we using dim=100, minn=3,max=6
$ ./fasttext skipgram -input /home/lmdose/Transnorms/corpNDC.txt -output /home/lmdose/Transnorms/param -minn 4 -maxn 6 -dim 300
Let’s check the results:
Read 0M words
Number of words: 10774
Number of labels: 0
Progress: 100.0% words/sec/thread: 76769 lr: 0.000000 loss: 2.182278 ETA: 0h 0m
depending on the quantity of the data you can change the parameters of the training
epoch: controls how many times the model will loop over your data (default =5 times) lr: learning rate, the higher the learning rate is, the faster the model coverage to a solution but risk overfitting (default= 0.05)
$ ./fasttext skipgram -input /home/lmdose/Transnorms/corpNDC.txt -output /home/lmdose/Transnorms/epochlr -epoch 1 -lr 0.5
Results:
Read 0M words
Number of words: 10774
Number of labels: 0
Progress: 100.0% words/sec/thread: 147367 lr: 0.000000 loss: 22.457983 ETA: 0h 0m
fastText is multi-threaded (default= 12threads), so you can change the number of used threads:
./fasttext skipgram -input /home/lmdose/Transnorms/corpNDC.txt -output /home/lmdose/Transnorms/thread -thread 4
you can use the print-word-vectors functionality to view some of the word vectors:
echo "environment nature save" | ./fasttext print-word-vectors /home/lmdose/Transnorms/model.bin
you can also query for words that did not appear in your data (exp: miss spelled words)
In the following you will see some examples of nearest neighbors, calculated with different models.bin data
In order to find nearest neighbors, we need to compute a similarity score between words represented as vectors. In particular we use the cosine of the angles between two vectors.
$ ./fasttext nn /home/lmdose/Transnorms/model.bin
now you can choose a word for comparison:
Query word? environment
| default skipgram | default cbow | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| environment; 0.976175 | environment; 0.985328 | environment. 0.976722 |
| environment. 0.971485 | environment. 0.985055 | environment; 0.976203 |
| environment, 0.964518 | environment, 0.984893 | environment, 0.96742 |
| environments 0.961128 | environmental, 0.975207 | environments. 0.965824 |
| environments. 0.958927 | environmental 0.971219 | environments 0.964224 |
| environmental, 0.950929 | environments 0.965677 | environmental, 0.960406 |
| environmental 0.943074 | environments. 0.962285 | environmental 0.952263 |
| environmentally 0.939118 | environmentfriendly 0.957352 | environmentally 0.945117 |
| environmentfriendly 0.931369 | environmental 0.952318 | environmentfriendly 0.934378 |
| environmental 0.907616 | environmentally 0.936702 | environmental 0.931076 |
Query word? economics
| default skipgram | default cbow | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| economic, 0.980065 | economic, 0.9971 | economic 0.986749 |
| economic 0.979307 | economic 0.993475 | economic, 0.983864 |
| economique 0.952258 | economie 0.98356 | economique 0.970077 |
| economic 0.943479 | economique 0.983391 | economic 0.964972 |
| macroeconomic 0.939974 | macroeconomic 0.980489 | economie 0.942939 |
| economie 0.927168 | economic 0.978601 | economical 0.94133 |
| economical 0.925894 | economy; 0.973662 | macroeconomic 0.936014 |
| socioeconomic 0.921567 | economy. 0.973567 | economy: 0.909701 |
| economy: 0.910588 | economy: 0.973478 | economy; 0.908804 |
| economy; 0.900353 | economy 0.973379 | socioeconomic 0.908281 |
Query word? help
| default skipgram | default cbow | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| helps 0.894918 | helps 0.959427 | helps 0.89368 |
| Paraguay 0.857259 | seeks 0.941891 | helped 0.86531 |
| firmly 0.854321 | successful 0.934734 | vigorously 0.845747 |
| milestone 0.840481 | needed. 0.927279 | overcome 0.815734 |
| spirit 0.828939 | necessarily 0.921473 | maximize 0.812902 |
| seems 0.828745 | successfully 0.918 | seek 0.81268 |
| firms 0.828697 | away 0.917192 | g) 0.812417 |
| “We 0.824893 | emphasize 0.91241 | will, 0.810029 |
| Egypt 0.823377 | adequacy 0.91231 | ideal 0.809566 |
| enjoy 0.822348 | adequate, 0.911914 | maximise 0.808108 |
future
Query word? future
| default skipgram | default cbow | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| future 0.944385 | future. 0.971025 | future 0.971006 |
| future. 0.924314 | future 0.953925 | future. 0.924168 |
| future, 0.784043 | assure 0.8816 | future, 0.796366 |
| feature 0.775011 | tackle 0.872702 | RMI. 0.785379 |
| failure 0.753871 | pose 0.868906 | RMI, 0.77423 |
| immediate, 0.749489 | failure 0.867657 | feature 0.759662 |
| immediately, 0.741339 | allows 0.866596 | explicit 0.755335 |
| explicit 0.736049 | allow 0.861032 | dynamic 0.753797 |
| immediate 0.729415 | delay 0.858254 | driven 0.751838 |
| tackle 0.727342 | pathway 0.85643 | tackle 0.751041 |
nation:
Query word? nation| default skipgram | default cbow | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| occupation 0.863779 | Elimination 0.959792 | occupation 0.866776 |
| location 0.854486 | allocation 0.950098 | location 0.862074 |
| duration 0.842992 | realisation 0.947967 | duration 0.862065 |
| destination 0.838705 | elimination 0.944217 | saturation 0.8556 |
| vocation 0.835614 | destination 0.941915 | destination 0.854961 |
| fixation 0.833931 | relocation 0.941207 | inflation 0.844954 |
| elevation 0.832624 | foundation 0.936484 | fixation 0.837067 |
| migration 0.828343 | Situation 0.935346 | elevation 0.834022 |
| Elimination 0.827394 | deterioration 0.935131 | vocation 0.83077 |
| saturation 0.826724 | aspiration 0.934847 | Situation 0.829719 |
money:
Query word? money
| default skipgram | default cbow | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| monetary 0.897812 | theme 0.919846 | monetary 0.920609 |
| happens 0.855233 | precocious 0.913133 | worsen 0.915096 |
| ENSO 0.854976 | thorough 0.912424 | catastrophes 0.912599 |
| worsen 0.846901 | suffers 0.911671 | ENSO 0.905982 |
| returns 0.843443 | hazard 0.906327 | death 0.905583 |
| enormous 0.840994 | serious 0.90476 | records 0.90507 |
| magnitude 0.839656 | highlights 0.902415 | catastrophic 0.904974 |
| survival. 0.839157 | strong, 0.901379 | fewer 0.897929 |
| exact 0.839037 | experiences, 0.901326 | (dryness, 0.896362 |
| monsoon 0.836551 | experiences 0.900803 | sometimes 0.893317 |
We can calculate which two vectors have a similar relationship to each other as two given reference vectors. This can be done with the analogies functionality. It takes a word triplet (like Germany Berlin France) and outputs the analogy:
./fasttext analogies /home/lmdose/Transnorms/model.bin
Example Nr.1:
Query triplet (A - B + C)? environment economy money
| default skipgram | default CBOW | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| environmental 0.681859 | arrangements, 0.823284 | monetary 0.685106 |
| environmental, 0.680602 | arrangements 0.79583 | defense 0.665122 |
| monetary 0.680154 | arrangements. 0.793848 | prevents 0.660168 |
| environments 0.673295 | register 0.793176 | loss. 0.658111 |
| experimental 0.670279 | search 0.789722 | lasting. 0.657862 |
| harmful 0.659239 | Arrangements 0.771946 | loss, 0.657579 |
| environments. 0.655499 | Women 0.768271 | flow 0.65746 |
| environment; 0.65439 | settlements, 0.75964 | prevent, 0.656878 |
| lasting. 0.65202 | men, 0.755929 | ever 0.649998 |
| danger 0.649508 | settlements 0.753831 | catastrophes 0.648085 |
Example Nr.2:
Query triplet (A - B + C)? economy environment money
| default skigram | default CBOW | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| economique 0.694713 | decouple 0.829562 | low, 0.725725 |
| economie 0.680082 | him 0.828757 | rose 0.698711 |
| economies 0.678955 | obvious 0.813524 | slightly 0.689552 |
| low, 0.677932 | deep 0.812828 | lower 0.689168 |
| low. 0.667652 | high. 0.811764 | gold 0.687941 |
| high, 0.663306 | lot 0.809197 | CPEC 0.687592 |
| economically 0.661366 | despite 0.808579 | tend 0.686826 |
| shocks 0.659641 | high, 0.807657 | summer 0.68662 |
| high. 0.656066 | hit 0.807469 | plateau 0.686237 |
| economy: 0.655573 | significant. 0.806372 | 44% 0.685803 |
Example Nr. 3:
Query triplet (A - B + C)? helf environment pollution
| default skigram | default CBOW | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| pollutants 0.70366 | distribution 0.816826 | te 0.728939 |
| depletion 0.696487 | malnutrition 0.802241 | 27. 0.722679 |
| decomposition 0.694116 | distribution 0.79926 | mosquitoes 0.719671 |
| disposition 0.687676 | Nutrition 0.78808 | Limit 0.717822 |
| ! 0.685478 | exhibition 0.787138 | shortlived 0.714141 |
| herds 0.684758 | nutrition 0.775685 | pollutants 0.707772 |
| firms 0.682133 | limitation 0.767911 | decomposition 0.706242 |
| bauxite 0.681445 | disposition 0.760229 | MOA 0.705363 |
| composition 0.679994 | depletion 0.760211 | stone 0.70489 |
| palms 0.678527 | distribution, 0.759834 | PANA-ASA 0.704827 |
Example Nr.4:
Query triplet (A - B + C)? help limit pollution
| default skigram | default CBOW | skipram(-minn 4,-maxn 6,-dim 300) |
|---|---|---|
| safety 0.726571 | innovation 0.878877 | schools 0.77708 |
| f) 0.726185 | organisation 0.875022 | competitiveness. 0.7698 |
| designs 0.725096 | modernisation 0.869121 | safety 0.768397 |
| schools 0.723643 | organization 0.858813 | competitiveness 0.766038 |
| services; 0.723549 | urbanisation 0.857014 | f) 0.764046 |
| drainage 0.72282 | civilization 0.856748 | drainage 0.760211 |
| modernize 0.720092 | innovation. 0.849295 | schools, 0.759368 |
| school 0.718747 | modernization 0.846737 | schemes. 0.75136 |
| roads 0.718205 | innovation, 0.841857 | school 0.749063 |
| dimension 0.713688 | observation 0.840498 | pastoralist 0.747295 |
Please checkout:
https://fasttext.cc/
https://github.com/facebookresearch/fastText
library(reticulate)
#py_install("matplotlib")
matplotlib <- import("matplotlib")
matplotlib$use("Agg", force = TRUE)
plt <- import("matplotlib.pyplot")
import numpy as np
import matplotlib.pyplot as plt
import codecs # to open the file in specific mode
# first we need to create two lists, one for the words and one for the corresponding vectors:
words = []
vec = []
with codecs.open("/home/lmdose/Transnorms/model.vec",'r','utf-8') as f_in:
vocabulary, wv = zip(*[line.strip().split(' ',1) for line in f_in])
# common to skip first 10 words, mostly they are garbage words
for i in range(10,len(vocabulary)):
words.append(vocabulary[i])
x = wv[i]
vec.append(np.fromstring(x,dtype='float32',sep=' '))
#carrying out singular value decomposition
U, s, Vh = np.linalg.svd(vec,full_matrices=False)
# plotting words an their vector representations
for i in range(len(words)):
fig = plt.gcf()
fig.set_size_inches(18.5,10.5)
plt.text(U[i,0],U[i,1], words[i])
plt.xlim((-0.03,0.03))
plt.ylim((-0.025,0.025))
#plt.show()
# you can't view this on the Rmd but if you use the code on the console it will work
## Text(-0.008598817, -0.0022292738, 'is')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076950807, 0.0034336927, 'The')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008061071, 0.00091275165, 'on')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077938875, 0.0017199538, 'by')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010799535, -0.008773672, 'climate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008465988, -0.005456439, 'as')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008148175, -0.002173567, 'with')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008963273, -0.006705454, 'that')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008770926, -0.0044086995, 'will')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00872357, -0.00351355, 'be')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00927952, -6.927172e-05, 'its')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010239718, -0.005790173, 'change')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075990977, 0.0017873325, 'from')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009770405, 0.006611304, 'emissions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008016475, -0.0032311962, 'are')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069444315, 0.0092960745, '-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009859251, -0.0047025178, 'energy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010467455, 0.018354904, 'National')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007824728, 0.00502837, '\uf0b7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009749263, -0.0060764467, 'development')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010919093, -0.0053130295, 'adaptation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086472565, -0.00054813264, 'has')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097486, -0.002987304, 'national')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007893405, -0.0020492391, 'which')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010551156, 0.0132705355, 'Climate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008448811, -0.0016384495, 'an')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00858552, -0.0012058826, 'at')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008774188, -0.0022070664, 'this')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010564993, -0.0015922727, 'mitigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010949709, -0.012845407, 'water')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007908432, 0.0061477497, '•')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008794236, -0.00027126353, 'In')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008977366, 0.00026216256, 'sector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010012568, 0.00024382661, 'implementation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010933052, -0.0070994245, 'management')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009742592, 0.0038080006, 'reduction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008655674, -0.0043044025, 'have')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822939, -0.0044404026, 'it')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009475343, -0.0052037835, 'use')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009694396, 0.006796936, 'GHG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013455178, 0.014184361, 'o')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011064857, 0.017916588, 'Change')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009114269, -0.005544683, 'country')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01026434, -0.006575194, 'capacity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008958258, -0.0054184888, 'through')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009014109, -0.0030733994, 'all')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010374914, 0.010263534, 'INDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00884291, -0.0065905494, 'other')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009832139, -0.0033159123, 'measures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721777, -0.008126606, 'increase')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009717237, 0.019950463, 'Energy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008783747, -0.0067201685, 'also')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010482448, -0.0055324864, 'support')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103178965, -0.0019476596, 'actions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01082797, -0.0049834927, 'international')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009510136, 0.004469159, 'emission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008153515, -0.001909704, 'This')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008864867, -0.0017521606, 'been')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009995942, 0.015570754, '2030')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01063739, -0.0031599284, 'global')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010072817, 0.008840274, 'per')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01081211, -0.011531476, 'sustainable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010246039, -0.0100117065, 'economic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010436189, -0.005015137, 'land')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010305765, 0.013129694, 'year')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008435856, -0.0058171935, 'including')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009937941, -0.003144992, 'sectors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010233822, 0.0032940197, 'gas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01032304, 0.0039609424, 'contribution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009499574, 0.010696554, 'Development')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077095567, -0.0046785357, 'or')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101339575, -0.004020205, 'carbon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010522092, -0.011472012, 'resources')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099741025, -0.007104931, 'reduce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009509328, -0.0040868367, 'into')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010991181, -0.009955379, 'impacts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008954162, 0.0037793617, 'under')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008232615, -0.0069880737, 'more')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009419545, 0.002097496, 'based')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009109103, -0.009676748, 'well')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009308895, -0.0044571417, 'not')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00842787, 0.008029426, 'was')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009189907, -0.003167869, 'level')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010775367, -0.002180322, 'renewable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010273156, 0.014949675, 'Adaptation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010009906, -0.011360792, 'their')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011244053, 0.005168885, 'greenhouse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010685713, -0.0077940146, 'forest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009238657, -0.008930609, 'these')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010285418, 0.017762965, 'Plan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008164227, 0.017695697, '2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00931251, -0.011655577, 'such')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009270498, 0.010553599, '%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010555543, -0.013046794, 'natural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009379638, -0.006208211, 'production')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008471176, -0.0022424972, 'To')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010413132, -0.0030764374, 'waste')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009780087, 0.00914555, 'million')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00873794, -0.0026138003, 'one')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010064343, -0.010461241, 'areas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009851709, -0.00025367513, 'electricity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009858905, 0.011896808, 'Republic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008443204, -0.00300835, 'It')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011458148, -0.006653439, 'change.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010155315, -0.0045494274, 'growth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090769855, -0.0071790493, 'new')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008774993, -0.006228641, 'would')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012323197, 0.018119553, 'Contribution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011034902, -0.009953406, 'vulnerable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010716279, 0.016443398, 'Strategy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009621627, -0.0030328496, 'over')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010921124, -0.005880923, 'efficiency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010292269, -0.0078079114, 'building')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008696928, 0.0062640007, 'total')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010066472, 0.017990699, '2015')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009722111, -0.00732468, 'agricultural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010398375, -0.0042608115, 'plans')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011275143, 0.011872121, 'scenario')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010747317, -0.014273973, 'environmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010434408, -0.010534448, 'public')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010910196, -0.0073778685, 'financial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008550943, 0.020864096, '1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080565335, -0.0015397784, 'between')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00956308, -0.008874024, 'low')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007793433, 0.0010175437, 'up')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015764851, 0.0122526325, 'States')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009679282, -0.0056826603, 'population')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010472032, -0.0017264722, 'power')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009395224, -0.0019246336, 'than')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008502163, 0.0034063477, 'were')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009799975, -0.009940912, 'most')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009298864, -0.000587136, 'projects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009480304, 0.0024574543, 'Government')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009694704, 0.0017260051, 'out')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010123294, 0.00705552, 'target')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009193027, 0.001729621, 'programmes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011543432, -0.013208748, 'coastal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017904015, 0.017469939, 'EU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538638, -0.0054573207, 'activities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010291567, -0.0070651923, 'system')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011627792, -0.011775529, 'resilience')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009929847, -0.0062083667, 'needs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01095252, -0.008031131, 'efforts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010303207, -0.009491661, 'systems')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008842507, -0.005643247, 'order')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009232988, -0.011719134, 'high')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00918811, -0.0061124824, 'potential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010687755, 0.008491907, 'period')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010200804, 0.012160871, '2030.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014876537, 0.020746594, 'Determined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011072177, -0.00354407, 'process')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01141891, -0.007867952, 'technology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009441392, 0.0023258366, 'following')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010051754, 0.0011148076, 'developed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010181311, -0.006576111, 'climatic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00973955, -0.0066687744, 'agriculture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843498, -0.001965695, 'information')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010279908, -0.0063296533, 'vulnerability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010367052, -0.0081826635, 'need')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010773966, -0.004415099, 'policies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009339415, -0.0007606131, 'As')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009269045, -0.0098542785, 'can')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013235415, 0.0205405, 'Nationally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010840493, -0.008337971, 'planning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010825745, -0.012722449, 'access')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009735895, -0.004613701, 'sources')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008925455, -0.001089801, 'current')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01202559, 0.010108167, 'compared')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010663017, -0.0021744578, 'implement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010537811, -0.005229808, 'policy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010910681, -0.006679562, 'transport')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010111141, -0.0009436804, 'action')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010292957, 0.010068646, 'CO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.019970188, 0.014696681, 'Member')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008463623, 0.0014079944, 'about')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008168069, 0.024571255, 'the')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010778421, -0.01434561, 'social')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010594087, -0.0022809699, 'achieve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011514502, -0.010905063, 'food')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010367661, -0.008461294, 'developing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008785777, -0.006745911, 'These')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108629335, 0.016559502, 'Policy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009971463, -0.008045717, 'future')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009268199, -0.003742568, 'part')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012261676, 0.014979552, 'UNFCCC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010065497, -0.007965867, 'significant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010115807, -0.011813305, 'but')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010919369, -0.005955462, 'countries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009609297, 0.007548787, 'estimated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010043733, -0.0053701894, 'key')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010589571, 0.022004867, 'Mitigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010287374, -0.0011934208, 'data')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009101999, -0.004715536, 'being')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008970412, -0.0073290886, 'there')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010019659, -0.0032964328, 'generation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009168246, -0.004785182, 'already')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010727816, 0.011836137, '2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010047051, -0.0069416477, 'existing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011093768, -0.015975924, 'local')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100822635, -0.008559942, 'related')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109074935, -0.011216438, 'technologies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009359363, -0.0074635847, 'both')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007465547, 0.018182013, '3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074061602, 0.021689083, 'and')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013896155, 0.021427669, 'Intended')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007658949, 0.012752838, '5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009834303, 0.0035396616, 'used')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010466304, 0.0038813306, 'set')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010899088, -0.016453171, 'human')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011609298, -0.01143763, 'risk')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079101715, 0.016366135, '4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010827085, 0.016894842, 'Management')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007400735, 0.0024038597, 'A')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010158262, -0.005906149, 'levels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011652885, -0.0026116322, 'forestry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010273771, -0.00792389, 'change,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0118524395, 0.019776357, 'Action')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010711877, -0.008129189, 'technical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009870361, -0.0022009325, 'area')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01140597, -0.0143454885, 'health')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009941523, -0.0045894166, 'should')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009403792, 0.015016479, 'Agriculture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014771768, 0.018582925, 'IPCC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009825426, -0.0036960377, 'towards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01093537, -0.00073492224, 'solar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0123403575, 0.01744119, 'United')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010623192, 0.012439255, 'Water')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010496819, -0.009812252, 'economy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009484615, -0.009586072, 'due')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012759591, 0.012652079, 'Ministry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009749506, -0.009565441, 'while')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009986018, -0.0024086093, 'cost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01095566, -0.0088221645, 'private')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097840205, -0.0070150164, 'include')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010750897, -0.014003739, 'infrastructure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009193091, -0.008858297, 'they')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106797945, -0.010799859, 'rural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008423184, 0.0011218395, 'For')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01055784, -0.004299674, 'domestic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01040978, -0.009987477, 'develop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01032844, -0.004820941, 'priority')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013001196, 0.009053657, 'Convention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010945433, 0.0016084234, 'average')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010204052, 0.007494803, 'Other')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011134251, 0.004882249, 'commitment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009862167, -0.0071901195, 'changes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011319142, -0.0067009404, 'monitoring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013443717, 0.021116951, 'Land')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009249533, -0.00115758, 'expected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427885, 0.0025546227, 'plan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010244199, -0.011643381, 'improve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009228315, -0.0058177803, "country's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0116193015, 0.007878006, 'GDP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008776909, -0.0043228036, 'main')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010047329, 0.015105719, '2025')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010874531, -0.0048580407, 'institutional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009961099, -0.009974096, 'impact')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00935744, -0.006154584, 'further')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00884082, -0.006264039, 'could')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091736205, -0.008563362, 'major')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01190074, 0.0075112223, 'below')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009273815, -0.006373988, 'means')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011925805, 0.0021118494, 'framework')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012474309, 0.021902142, 'Framework')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010397955, -0.011698691, 'promote')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010350808, 0.015916737, 'Reduction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009584292, 0.004791595, 'annual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010480595, 0.017033646, '2010')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008192332, 0.010145371, '1.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009646584, 0.0004111255, 'using')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010639551, 0.02364518, 'Sector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010924195, 0.0032728717, 'line')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009113594, -0.001235272, 'additional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008544405, 0.01695783, '6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077326954, 0.012241118, '2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010243553, -0.01174714, 'important')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010426236, -0.01412803, 'increasing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011519866, -0.0021526052, 'account')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010268653, 0.025822183, 'Emissions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01020788, -0.0035706176, 'consumption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011227807, -0.008323273, 'conservation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015179272, 0.0075301537, 'Parties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010122769, 0.0012818191, 'emissions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010441917, -0.0041354806, 'strategy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009981866, -0.008071194, 'provide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010242171, -0.005271122, 'investment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009854296, 0.002942179, 'reductions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011767214, 0.016437892, 'BAU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009473489, 0.011794971, 'Sustainable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011357502, -0.009760122, 'effects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093973195, -0.004820423, 'during')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010025965, 0.0014809638, 'conditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010278368, -0.0076560844, 'increased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112178745, 0.0027524582, 'objective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009884185, 0.003894418, 'around')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011619354, -0.01148181, 'sea')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008454299, -0.0016459521, 'within')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010250872, -0.0102116885, 'urban')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015674494, 0.034658004, 'Page')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010609202, -0.010369566, 'reducing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010516834, -0.007178507, 'industrial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009868848, 0.00034987016, 'rate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017951135, 0.022997709, 'OF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010294542, -0.0054008216, 'contribute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010878188, -0.01204067, 'efficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011332972, -0.0048218025, 'fuel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011004406, 0.018941374, 'Table')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009178932, -0.003662877, 'only')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071897726, 0.01993664, 'of')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010705443, -0.01073657, 'protection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009394246, 0.009624728, 'Implementation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009906952, -0.006342061, 'government')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010385494, 0.00012852924, 'contributions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01061669, -0.011275803, 'ensure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010562033, -0.005466338, 'industry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011416208, -0.004609677, 'strategies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009896767, -0.00014160784, 'sectoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009003862, -0.0069677588, 'some')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008658855, 0.0016889375, 'project')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012083488, 0.017391907, 'Environment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010714696, -0.0030064972, 'relevant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011206704, 0.0031573991, 'least')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009861188, -0.010497403, 'different')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01029118, -0.0061881687, 'sector,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01129756, -0.009344793, 'address')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008086249, 0.01029863, '3.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012023047, -0.0022594463, 'temperature')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01062104, -0.00047066723, 'identified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01192727, -0.0093962755, 'agriculture,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008372063, 0.012237642, '10')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010854691, -0.011157575, 'research')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010136919, -0.0013917063, 'approach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009953468, -0.0034790724, 'implementing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010648296, -0.007584551, 'forests')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008137284, 0.0021705357, '\uf0a7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009353502, -0.0058463598, 'across')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009603784, -0.0025718191, 'sector.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010383465, -0.005679741, 'necessary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010324486, -0.009714873, 'community')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009698118, -0.01153736, 'particularly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107265245, 0.009840819, '2050')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00926831, -0.0040137777, 'made')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012041928, 0.016471414, 'Forestry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009469814, 0.0077931043, '20')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009690157, 0.017939292, 'Waste')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008051131, 0.015864778, '7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009231689, -0.0042874124, 'against')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012617829, -0.012912642, 'extreme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00995921, 0.0030878226, 'years')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010984301, 0.0005632318, 'objectives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010794338, 0.000913235, 'context')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009967156, 0.00079359574, 'implemented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011151845, -0.004358175, 'mechanisms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011728508, 0.017802745, 'Communication')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011548688, 0.021502715, 'Carbon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01062052, 0.009138105, 'base')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008983526, -0.0058491435, 'terms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01181831, -0.0026097603, 'ambitious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011752734, -0.011720451, 'risks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013198964, 0.014822446, 'Nations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01136225, -0.01582207, 'resources,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01002902, 0.019017959, 'Programme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01135386, -0.0066771707, 'integrated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011696267, 0.010352693, 'capita')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010362373, -0.009063795, 'supply')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009789371, -0.004351642, 'costs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0144185955, 0.0022298372, 'ü')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008181028, 0.024226932, 'to')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009810033, -0.008529843, 'improved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009765134, 0.0030908298, 'first')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011980367, 0.009054959, 'gases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009556852, 0.009311276, '2030,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01078097, -0.0028878686, 'same')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009694911, -0.008102716, 'various')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110707935, 0.0143423965, 'Planning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010039275, -0.0043581673, 'specific')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010520337, 0.014716374, 'Forest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008863539, 0.00013034738, 'currently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010231778, 0.0065989695, 'projected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010934528, -0.0148074655, 'communities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009751167, -0.00939662, 'our')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009254312, 0.0070401537, 'approximately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012567808, 0.014731802, '000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009271747, -0.0066412664, 'number')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008008528, 0.0090930555, '4.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010392802, -0.0061416416, 'financing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009802195, -0.0100584105, 'so')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009137184, -0.0080161365, 'those')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010198143, -0.009133462, 'small')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012128426, -0.0108713675, 'disaster')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008810344, -0.0017732903, 'two')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010399333, -0.009407409, 'development,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075403485, 0.009607378, '/')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009509444, -0.007966212, 'result')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009303157, 0.0015866538, 'includes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009738619, -0.007890767, 'appropriate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010760128, -0.014817255, 'environment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107708955, 0.012312776, 'billion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010941856, -0.0081899725, 'energy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009836082, 0.00733695, 'targets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009797236, 0.0010721295, 'provided')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009861946, -0.009407772, 'country.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010520274, -0.0074678077, 'effective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011801225, -4.648455e-05, 'committed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013182814, -0.006262105, 'rainfall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010092504, 0.00068339094, 'Ia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010048914, 0.013193356, 'NDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009278468, -0.005915924, 'associated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011395814, 0.007650549, 'accordance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011162958, -0.0051775156, 'taking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010781263, -0.0040663346, 'processes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014548486, 0.016636869, '1990')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011969002, -0.014668723, 'resilient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106185805, -0.007869178, 'development.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009546707, -0.009930421, 'very')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01093646, -0.0072236597, 'take')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101772845, -0.0052066394, 'demand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012084948, -0.008064253, 'transfer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0119614685, -0.010794676, 'security')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013341228, -0.0022459377, 'fuels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010476163, -0.005680914, 'available')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010917072, 0.015047014, 'Use')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010119534, -0.006682752, 'share')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01155933, -0.013394281, 'enhance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008196004, -0.007631787, 'where')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008548181, 0.0030427007, 'three')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010570072, -0.008396251, 'poverty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010141547, 0.0062399097, 'established')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010043122, 0.0030636364, 'included')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009686727, 0.001518327, 'overall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101178745, -0.007169584, 'regional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009455557, 0.005519779, 'according')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010329641, -0.009286279, 'practices')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009783228, -0.008479963, 'continue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0127583975, -0.011752267, 'adverse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009471187, 0.0047303136, 'proposed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011075306, -0.0101400865, 'strengthening')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010258372, -0.0039110878, 'required')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008819475, -0.0053056437, 'among')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011223332, -0.013884981, 'services')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011995757, 0.020493694, 'Greenhouse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012068271, -0.0051235277, 'rise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009600727, -0.008030229, 'However,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009556017, -0.011702048, 'make')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010940399, -0.011887322, 'resource')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098750675, -0.009657402, 'country,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009710955, 0.017472839, '12')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011776082, 0.019056479, 'Global')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01027548, -0.006435369, 'time')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012193438, -0.00823925, 'events')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010416214, -0.006610521, 'programs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010969254, -0.012252918, 'quality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011208247, 0.012991937, 'USD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096465275, -0.008754465, 'possible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008988287, -0.01130371, 'may')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012312364, 0.006232782, 'accounting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013876852, 0.00644452, 'Paris')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011546011, 0.013601168, 'Environmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010667002, 0.001714265, 'intensity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008928807, 0.011511491, 'I')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011841822, -0.01365558, 'soil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008031122, 0.012160443, '15')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008790876, -0.00843054, 'like')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01075006, 0.0016560861, 'goal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011157366, -0.010664557, 'livestock')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013549073, 0.0270613, 'Report')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009946759, -0.004897998, 'oil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012292107, -0.008377016, 'awareness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010941804, -0.008145042, 'market')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009360258, 0.0050448645, 'State')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010331723, -0.005527526, 'sectors.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011637116, 0.0020588678, 'ambition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010519291, -0.0057949796, 'early')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011061348, -0.0055485424, 'particular')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008468934, 0.011775239, '5.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009275664, 0.0011188808, 'taken')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009878817, -0.004411405, 'considered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011658193, -0.005569671, 'fossil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010879644, 0.020107148, 'Figure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008332436, -0.003755281, 'With')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011522434, 0.0032394012, 'INDC.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010435323, 0.0008520187, 'analysis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011198029, -0.010878199, 'challenges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012973276, -0.0010349634, 'agreement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007121083, 0.014679648, '8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010403582, -0.013989677, 'limited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010156709, 0.016206352, 'Transport')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010819837, -0.0141199585, 'improving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010878213, -0.010291818, 'capacities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009135774, -0.006126712, 'addition,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009012395, 0.019722173, '9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106585985, 0.01640258, '2012')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010053412, -0.00442977, 'place')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009606593, -0.0102407755, 'conditions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00985506, -0.0027459047, 'initiatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011186502, -0.007390011, 'finance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011101742, -0.010717145, 'loss')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014959503, 0.013749308, 'Conference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112104565, 0.012137428, 'MW')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010735879, 0.020158308, '2013')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082813995, -0.0015380246, 'each')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089484, -0.011131493, 'people')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012212395, 0.018426433, 'Assessment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009370641, -0.004307375, 'less')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011979675, 0.0074209683, 'inventory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011358957, 0.01329263, 'equivalent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014103597, 0.014042159, 'European')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010736198, -0.0050003766, 'strategic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010255893, 0.0005931459, 'At')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010464193, -0.011046282, 'build')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011439646, -0.0133026345, 'ecosystems')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010735451, 0.01702154, 'Law')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009903751, -0.0060529113, 'longterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009880381, -0.011212251, 'construction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011224162, 0.010031846, 'Green')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.02076682, 0.025303002, 'THE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095452145, -0.013421342, 'especially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010314358, -0.008549157, 'investments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011102278, -0.0008833897, 'assessment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010676327, 0.005335509, 'unconditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010535815, -0.006643904, 'irrigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009818214, -0.0032748468, 'above')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011369293, 0.023986187, 'Second')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011485272, -0.001244313, 'achieving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009332843, -0.0014180529, 'programme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011476257, 0.008849898, 'Fund')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009618545, 0.0020029712, 'before')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009660195, 0.019832129, 'Program')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009820473, -0.004449962, 'reduced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010444918, -0.008553354, 'allow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012891954, 0.024872033, 'Gas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01104137, -0.008762702, 'response')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01096374, 0.011453415, '100')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010802496, -0.0034208426, 'funding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106922, 0.01701414, 'Actions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007466015, 0.0157286, '11')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010457148, 0.0012316972, 'basis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098347245, -0.0044277534, 'options')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013514207, 0.01083259, 'INDCs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010154524, 0.008424926, 'reference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01673867, 0.022471914, 'AND')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009714322, 0.009082868, 'projections')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011946686, 0.0014889075, '\x01')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00989271, -0.0003424462, 'Increase')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011230796, -0.013611431, 'knowledge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010191357, -0.003348156, 'emissions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010859736, -0.006871092, 'wind')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010986323, -0.0036037979, 'priorities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011176364, -0.008766161, 'meet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01101585, -0.007678557, 'progress')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010407872, -0.008585278, 'storage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0117045995, -0.007884397, 'facilitate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010483223, -0.009283624, 'highly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010834614, -0.008034034, 'needed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010618339, -0.010026849, 'sectors,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010643443, -0.009400384, 'long')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008810625, 0.01817286, 'Project')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010827971, -0.008687229, 'any')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010595502, -0.011516123, 'socioeconomic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01136483, -0.009715147, 'strengthen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009034251, 0.0023690409, 'RMI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010237481, -0.0076658586, 'focus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011360303, 0.0075822016, 'ha')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009838225, -0.01188347, 'way')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079443315, 0.029498037, 'in')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007969345, 0.011618665, '&')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008982791, 0.012929927, 'All')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008956744, -0.0017801591, 'since')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009982002, -0.0035824336, 'consistent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011241088, 0.009171087, 'report')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012193818, 0.0039416887, 'determined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00963409, -0.005187825, 'work')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010458506, -0.015215472, 'many')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010721941, -0.007947734, 'issues')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107933525, -0.0090947, 'losses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012525263, -0.0145571465, 'water,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010574007, 0.0018013208, 'intends')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009784147, 0.0034007384, 'Develop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010096516, -0.008889644, 'must')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095401, -0.009105574, 'improvement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009494655, -0.010347619, 'higher')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009529542, -0.009332505, 'large')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010482359, -0.011542442, 'green')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013433656, 0.015910752, 'tonnes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010927691, 0.014508629, 'tons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013900805, 0.01736666, 'dioxide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01126181, 0.0003107845, 'goals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008970579, -0.0066159745, 'therefore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010687915, 0.016325282, 'GES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009801473, 0.0064596464, 'scenarios')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009248633, -0.0025615562, 'present')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0122775, -0.014811546, 'weather')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009248631, -0.0037831275, 'when')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01006172, 0.019758875, 'Renewable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01109272, -0.00841063, 'drought')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008782701, -0.009176305, 'There')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010567592, -0.0032070088, 'comprehensive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009916698, -0.0022754022, 'cover')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01070648, 0.0023720604, 'net')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010730435, -0.00897573, 'crop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008906151, -0.0041921325, 'results')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008942208, 0.016771825, '|')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009413909, -0.0060168025, 'if')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009800606, 0.012951969, 'International')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010989469, 0.0020923507, 'intended')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010897489, -0.0029298917, 'plants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101467045, 0.00010227628, 'fully')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010441507, -0.013932532, 'critical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009037985, -0.0066103386, 'addition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109429015, 0.0139555475, 'Industrial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104401205, 0.018481385, '2000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010813065, 0.00045928225, 'commitments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01027257, -0.0071213534, 'promotion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012719888, -0.0057623717, 'treatment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010973056, -0.011716127, 'resources.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011830764, 0.0035518408, 'nationally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010946213, 0.0047938325, 'hectares')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010224411, 0.014282943, 'US')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01089694, -0.0013006344, 'effect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011265771, -0.010967029, 'education')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010528838, -0.009787075, 'technological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010783636, -0.009268061, 'require')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009703014, 0.0072852657, 'Building')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075750486, 0.0131114125, '13')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010727579, 0.004935738, '20%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009493594, -0.0073427395, 'no')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009584933, 0.003868942, '\uf09f')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113784615, -0.010359038, 'affected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01113761, -0.00892998, 'biodiversity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009608759, -0.011933097, 'better')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00950735, -0.0122875925, 'strong')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012099214, -0.006256434, 'stakeholders')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012156249, -0.013132092, 'lowcarbon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01072785, -0.0019577774, 'deforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009139014, -0.0043901913, 'distribution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011620017, -0.008056426, 'term')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091798175, -0.001861376, 'planned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008940286, 0.008617271, '6.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00977264, -0.008928334, 'several')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011379723, 0.004507765, '2020.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013275978, 0.022870194, 'December')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010544094, -0.012165057, 'availability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009781564, -0.008221827, 'given')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012228383, -0.006941062, 'understanding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009640522, 0.0026053947, 'Introduction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009913553, -0.0057070428, 'world')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011196187, -0.0104462495, 'management,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011652592, 0.00044363458, 'uses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009298333, -0.0071425517, 'benefits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014359983, -0.0038149692, 'use,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009861107, 0.016006205, 'Economic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009875281, 0.00038468692, 'South')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012379789, 0.019452311, 'Gg')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010811318, -0.00062953925, 'solid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010191845, -0.010832292, 'help')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011002076, -0.010380467, 'clean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010674596, -0.000436374, 'last')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008409355, -0.0064388756, 'without')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01091958, -0.0018913399, 'electric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010733204, -0.012869153, 'promoting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009224207, 0.015124237, 'Conditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015159091, 0.017007045, '(INDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014278632, 0.004950785, 'communicate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013247177, 0.019962326, '2006')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009597885, 0.010522389, 'Capacity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01170614, -0.016476583, 'adapt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010889239, -0.0051372517, 'effort')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009282866, 0.012374066, 'Agricultural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010529661, -0.0063273213, 'industries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009733712, -0.0043601794, 'participation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008326528, 0.004924006, 'On')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112374425, -0.011495939, 'adaptive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011429889, -0.005155769, 'legal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009980521, 0.002523064, 'represents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112960655, -0.0010981241, 'warming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008977782, 0.001176401, 'aims')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01150804, -0.0033155603, 'policies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009583965, 0.013154036, '2014')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010376061, -0.0029725407, 'wood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012637244, 0.017055465, 'e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110239005, 0.016401744, 'Information')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011123818, -0.015190544, 'role')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01099996, -0.008365782, 'institutions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.022805367, 0.027016217, 'CONTRIBUTION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104095265, 0.026038883, 'Emission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010314649, 0.008937888, 'adopted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012199761, 0.0020480559, 'decision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011022744, 0.0047526862, 'preparation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010566023, 0.017630804, 'Sectors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010562487, 0.020875989, 'Section')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010210031, 0.0019290885, 'end')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010815905, -0.0058408813, 'decrease')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009930995, 4.4966124e-05, 'approaches')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01042411, -0.014198565, 'opportunities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006806247, 0.005897145, '>')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0118990755, -0.0054138126, 'coordination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009483791, 0.0028005275, 'Developing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010360251, -0.0060442006, 'plant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010706576, -0.011013665, 'tourism')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010212262, 0.009630973, 'Health')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010134193, 0.018218637, 'World')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009558645, -0.007869648, 'form')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013345015, 0.017418496, 'Faso')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010685714, -0.009445258, 'addressing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.02165871, 0.023592945, 'DETERMINED')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010666531, 0.005870845, '100%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010727406, -0.0025926589, 'vehicles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011119602, 0.013205404, 'Resources')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011301383, 0.017942835, '2005')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010078201, 0.002717345, 'Promote')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103399465, -0.011707979, 'areas.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009922995, 0.008153535, 'Support')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009601255, -0.008968857, 'making')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011638795, -0.01128088, 'island')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01063533, 0.018404039, 'CO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011146585, -0.00541858, 'mechanism')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014631986, -0.0014277076, 'transparency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0127531905, 0.020059407, 'Potential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010014196, -0.006102142, 'put')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010328396, -0.0043282853, 'assistance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01121955, -0.007901768, 'cooperation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010157948, -0.003778985, 'responsible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009422059, 0.012968513, '2015.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008703366, 0.00025687195, 'reach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0123707075, 0.016445858, 'Risk')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010054098, -0.0049720625, 'biomass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013430258, 0.01700359, 'Kyoto')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013809711, -0.01185184, 'warning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010151775, 0.00057894853, 'vision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010666107, 0.019195786, 'No')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011685767, -0.012807306, 'marine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011394012, 0.025226194, 'Scenario')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009273558, -0.002229395, 'medium')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012551331, 0.01819778, 'Type')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010284476, 0.0064955503, 'second')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010901219, -0.011734558, 'negative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012983927, 0.004599321, '40%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012714726, -0.00043835794, 'product')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01080801, -0.0025595005, 'undertaken')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113260355, -0.011334912, 'disasters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009120551, 0.00042029197, 'budget')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010403195, -0.002207663, 'case')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009831247, 0.009129285, 'until')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011939396, -0.0068804924, 'view')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010236123, -0.0047323843, 'achieved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012026072, 0.0065968954, 'removals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008820008, 0.0005722673, 'provides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009148856, -0.006341363, 'value')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009194189, 0.010090341, '2015,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010126635, -0.008876654, 'requires')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008947979, -0.0046864445, 'regarding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011868401, -0.010446652, 'civil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010497741, -0.0046731154, 'actions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010361051, 0.0054996074, 'Promotion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011173185, -0.006325606, 'products')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009836154, -0.0023320634, 'studies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090909535, -0.009938653, 'along')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009075727, -0.004104908, 'range')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011332157, -0.00095404574, 'reporting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011069027, -0.0100132525, 'damage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011952637, 0.018478805, 'Mt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009897472, -0.012161124, 'facilities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010748069, -0.0026606277, 'Strengthening')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014387611, 0.018109309, 'Council')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009523407, -0.008777917, 'still')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009190562, -0.0052358466, 'state')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01030592, -0.016330814, 'lack')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009761467, 0.0033342342, 'next')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010636271, -0.0061529735, 'do')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011247258, 0.010004272, 'Agriculture,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010584751, -0.005782045, 'external')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009460593, -0.00017873046, 'India')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010304767, 0.007749365, 'baseline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010329918, 0.009244861, 'covered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008586653, 0.011344226, 'According')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010435389, -0.004717862, 'political')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013283785, 0.001416533, 'burning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010172246, -0.0054769996, 'general')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107809985, -0.011798487, 'likely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102062635, -0.0076151574, 'alternative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010365677, -0.0030935493, 'recent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009423096, -0.0072035366, 'linked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01089497, 0.009976786, 'Integrated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01284832, 0.017329289, 'Disaster')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089476, -0.010894444, 'direct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009557569, -0.006924522, 'significantly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0129338475, 0.017408552, 'submitted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010845471, -0.013447872, 'adequate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010080132, -0.010666343, 'air')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01118351, -0.013806181, 'training')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01165352, -0.01379059, 'society')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009453671, 0.015371105, 'Unconditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079334015, 0.011637721, '14')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01101184, 0.0153598925, 'Strategic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011209706, -0.007920686, 'adaptation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010596078, -0.004339642, 'grid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010132584, 0.0031783995, 'year.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010378296, -0.0010075527, 'Improve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014547992, 0.021501636, 'Guidelines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.023437956, 0.024719989, 'NATIONALLY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010066051, 0.0029729086, "RMI's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105861155, -0.008997326, 'zones')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009655455, -0.004808564, 'standards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011914936, -0.013834627, 'ecosystem')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00915782, -0.004973859, 'basic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010561993, 0.000992369, 'activity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009107993, 0.021921357, 'Total')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009458096, 0.005734343, 'presented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013014746, -0.01005039, 'floods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009058959, 6.239198e-05, 'adoption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009451282, 0.009036534, '30')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010077098, -0.0052324976, 'source')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010585021, -0.0067747682, 'enable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008543799, -0.005507212, 'mainly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012946386, -0.011417032, 'diseases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082766125, -0.0035998092, 'and/or')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017676778, 0.02354447, 'g')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011558402, -0.017053463, 'protect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011264575, -0.01801541, 'life')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008926135, -0.008700682, 'become')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00962334, 0.015389881, 'Efficiency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009705854, 0.003956102, '50%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010984268, -0.0040568337, 'lands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008214839, 0.013579127, '0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010181606, -0.011987493, 'providing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095486995, 0.007657508, 'Based')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015338596, 0.0007822668, 'landuse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01103725, 0.0069204764, 'percent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010041539, 0.0044139214, 'GHGs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010511306, -0.007930954, 'transition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009567239, 0.02092221, '1:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009744242, -0.004562057, 'level,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012516184, -0.009760443, 'manner')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00920021, 0.0019378673, 'five')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009624995, 0.002261289, 'Kiribati')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010418315, 0.01411092, 'Technology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108962, 0.010521628, 'Burkina')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017065387, 8.414141e-05, 'clarity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011332036, -0.009744882, 'degradation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011668729, -0.01655115, 'infrastructure,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009748727, -0.01246889, 'growing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010185608, -0.009358057, 'control')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010524937, 0.013624726, 'LULUCF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009489395, -0.0027044846, 'shall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009483612, -0.004138861, 'regions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009292422, 0.006215483, '50')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010335036, -0.0039057839, 'years,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010202945, 0.011306315, 'Public')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010908041, -0.011870146, 'crops')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009617682, 0.0057177003, '10%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009709299, -0.0040698997, 'level.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010043243, 0.0048466404, 'thousand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008949595, 0.017190963, 'Electricity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010402562, -0.0052046166, 'levels.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010494294, -0.00015861505, 'years.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010641075, -0.008895805, 'transportation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008092306, 0.0018310554, 'By')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010534324, 0.007567659, 'African')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009578469, -0.008618054, 'good')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010030452, 0.019181445, 'System')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008646135, -0.0024626856, 'primary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010761485, -0.011644045, 'economy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010752727, 0.006252027, 'Coastal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096099395, -0.0008929218, 'trend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009127519, -8.404641e-05, 'model')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006719454, 0.0044061993, '.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010898412, 0.01628635, 'Coverage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011388405, 0.0008076902, 'methane')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.020185111, 0.02014897, 'INTENDED')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008734557, -0.0040828427, 'every')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009449393, 0.0025208713, '§')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009318662, 0.0074949786, 'Central')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012090878, 0.015576239, 'Solid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009863444, -0.0053596105, 'surface')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010272036, -0.008205269, 'economy.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010665977, -0.0037030843, 'evaluation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007954427, 0.0011179334, 'An')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009724716, -0.0052308845, 'creation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427878, -0.007693384, 'lower')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010270699, -0.0041841497, 'politics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013935934, 0.02025454, 'Methane')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009728274, -0.0069719153, 'application')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093782125, 0.003402107, 'Cabo')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014946855, 0.021784777, '1990.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099720545, -0.0041948357, 'establish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010720937, -0.012559341, 'areas,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00882292, -0.00901469, 'them')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009951023, -0.0047629518, 'consideration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014378514, 0.015168555, 'paragraph')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012149635, -0.016584102, 'livelihoods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01128519, -0.00994359, 'adaptation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721932, -0.004050286, 'subject')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017554363, 0.02708005, 'P')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01042067, 0.015928289, '2016')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009410529, -0.011369569, 'lead')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009616682, 0.015836293, 'Solar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008142886, 0.014426209, '25')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010455281, -0.006502821, 'upon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012345677, 0.01050868, 'Article')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009854568, -0.005622947, 'network')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107405195, -0.0017196193, 'Promoting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008990642, -0.004651927, 'households')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094357245, -0.0017091816, 'are:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010319391, 0.015848102, 'de')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0126123205, 0.027557068, 'Base')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009292638, -0.011153605, 'much')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00925993, -0.0029026102, 'regard')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009738413, -0.0015990464, 'Improvement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009765053, 0.0016493687, 'component')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013079973, -0.0042720307, 'fair')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010932577, -0.0060533592, 'protected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01026651, 0.002809023, 'installed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009957106, -0.0056997063, 'limit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008904704, 0.009411561, 'Rwanda')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011301091, -0.0036637562, 'beyond')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011004759, -0.00015062692, 'review')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015475077, 0.0038191932, '2°C')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011307009, 0.0100567825, 'Domestic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009163923, 0.0006492091, 'study')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00957994, 0.020657344, 'Measures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010457435, -2.2721171e-05, 'carried')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011032849, -0.009426029, 'islands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009954916, -0.0067251152, 'scale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011898855, -0.014227796, 'common')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009293892, -0.00430155, 'program')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009436691, 0.00071774365, 'Furthermore,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009432531, -0.0022332207, 'supported')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010346471, 0.0009086365, 'business')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010980274, 0.016079737, 'Department')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009014975, -0.0010114993, 'establishment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008804253, -0.005163347, 'light')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00965787, -0.011695103, 'living')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010559113, -0.012759494, 'species')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009595716, -0.012785487, 'greater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095119905, -0.0036780827, 'buildings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011111607, 0.008714104, 'cent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009741384, -0.013287457, 'because')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009325626, 0.0021679006, 'relative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010762208, -0.00033505255, 'reforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011982145, -0.005572406, 'strategies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577183, -0.009172429, 'caused')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011879284, 0.013794703, 'Contributions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010067028, -0.012956438, 'productive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010585384, 0.014544357, 'Assumptions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010439345, -0.012176631, 'measures,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010965735, -0.0040119705, 'responsibility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010409875, 0.0072252923, 'prepared')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011841244, 0.016806392, 'Decision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011639246, -0.008053832, 'management.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111762155, 0.0040765717, '30%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010226097, 0.01163993, 'Protection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008185818, 0.025484977, ':')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008906233, 0.020905538, '21')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009997788, -0.0051418087, 'does')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01131605, 0.015875617, 'Resilience')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016088584, 0.0034846552, 'binding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00888306, 0.0023584594, 'alleviation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009706283, 0.0041123806, '2025,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012411427, 0.034052666, 'Year')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011320772, 0.017180244, 'CH4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845452, -0.0056936997, 'regards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011247518, -0.014962954, 'face')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092779035, -0.00077244465, 'electrical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0134617025, 0.00090318505, 'legislation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00952162, 0.0109798545, 'Union')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930018, -0.006317275, 'road')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01027807, 0.005209046, '2025.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009336281, -0.010712587, 'thus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01078203, -0.012394085, 'groups')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01029061, -0.012190051, 'importance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009716088, -0.009123204, 'production,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00896324, -0.010181843, 'who')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008973375, 0.018966768, '16')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102723045, 0.009835828, 'Conservation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010219404, -0.006096593, 'region')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008074237, 0.0038212293, 'after')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010344259, 0.008752406, 'document')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009820407, 0.01486826, 'Key')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010899296, -0.010773498, 'animal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016818514, 0.0194686, 'Use,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008766839, 0.010962348, 'Low')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009692636, -0.0008982016, 'amount')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010088126, -0.0026474944, 'Myanmar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008980985, -0.0065394235, 'what')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016937386, 0.01923126, 'Nitrous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009172522, -0.000636022, 'Jordan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009627835, -0.011199189, 'income')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009983952, 0.005816542, 'Islands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009288402, -0.0095252, 'maintain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009907081, -0.00071123487, 'Increased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009807411, -0.0076089483, 'techniques')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009486082, -0.0028979576, 'relation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010488803, -0.0025188052, 'circumstances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010986712, -0.0052694418, 'how')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01684819, 0.021906652, 'CO2-eq.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008992755, -0.0042508873, 'working')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009763752, -0.0035205234, 'full')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00947469, -0.0066925483, 'considering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012068209, 0.015592648, '2014.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010015025, -0.002008028, 'Sri')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113579, -0.01167954, 'challenge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009458101, 0.01449606, '2020,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010099287, -0.008071323, 'provision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010652994, 0.020086449, 'Annex')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009073808, 0.0042338064, 'Seychelles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009542175, 0.014508943, '2011')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012459914, -0.012397394, 'erosion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098975, 0.00796538, 'millions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011235281, 0.0035355855, 'frame')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010739416, -0.0007456866, 'communication')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010563409, -0.0086074555, 'variability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011150903, -0.0058809766, 'enabling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0122744525, 0.015760615, 'Scope')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009990654, -0.0103010535, 'even')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010373816, 0.007806612, 'Natural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009878229, 0.012044269, 'projection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011076081, -0.008441989, 'flood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108113885, -0.0063572587, 'funds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012573424, -0.01607961, 'health,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009234826, 0.0043715253, 'shows')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010118009, 0.014545499, '2010.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010418502, -0.010208132, 'productivity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008384774, 0.017800806, '18')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00945129, -0.008727304, 'respect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008178052, 0.005065913, '\uf0d8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012537259, 0.01996438, 'March')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011174581, -0.012018245, 'enhancing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009562466, -0.004126097, 'contributing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009880523, -0.010715895, 'resulting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01055993, -0.0075816796, 'identify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010804208, -0.0095827915, 'mitigate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009756861, 0.01618506, 'Investment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011006689, -0.007601372, 'zone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104064895, -0.0021110044, 'implementation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009623983, 0.012068277, 'Vision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009473371, 0.006455191, 'REDD+')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011231316, 0.0010609332, 'detailed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012154694, 0.00452456, 'decisions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011206728, 0.009402349, 'comparison')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015396767, 0.016607817, 'Warming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011583225, -0.00926562, 'farming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011407944, 0.014336586, 'Committee')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010671421, 0.015893467, 'US$')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010171304, 0.019700604, 'Act')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010740248, -0.011086395, 'right')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009691599, -0.00611202, 'clear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011876116, -0.0045774975, 'temperatures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01025696, -0.0053490195, 'past')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009930299, 0.022237066, '2:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066706915, 0.01607244, 'for')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009768401, -0.0026235003, 'sequestration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009891465, 0.010257622, 'Sea')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011086474, -0.007890325, 'transport,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010830841, -0.0051334146, 'imported')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01161049, 0.009201049, 'Agreement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110037485, -0.010734005, 'severe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008248899, 0.019852556, '17')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010108073, -0.00779931, 'own')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010607894, 0.010357172, 'Food')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012470935, -0.00901284, 'frequency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010282521, 0.0069391807, 'St.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010173542, 0.01798153, 'Needs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010878379, -0.0010635677, 'Strengthen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009784836, -0.0070394245, 'enhanced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010491942, -0.006396508, 'actions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007999663, -0.0042490275, 'notably')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008501989, 0.0012830847, 'Timor-Leste')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009941222, -0.006011174, 'energy.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011284134, -0.009076254, 'dry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009128105, -0.0112657165, 'traditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072919037, 0.013084945, '7.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009376778, -0.00772551, 'Therefore,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009551453, -0.0069804233, 'organic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081029255, -0.0012752844, 'four')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011416202, -0.00690152, 'undertake')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105602145, -0.008017109, 'able')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008948499, 0.015453954, 'Power')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843027, 0.0055705705, 'estimate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011047128, 0.0045725117, 'Finance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011154922, -0.013018205, 'dependent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010976507, 0.0035425483, 'PV')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011440889, -0.0044890936, 'support.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010773697, -0.008682839, 'restoration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00974717, -0.00672925, 'consider')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009284451, 0.0123956455, 'approved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008955203, 0.006977135, 'Morocco')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010187937, 0.0056096073, 'values')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009661647, 0.002897475, 'coverage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016700206, 0.017913137, 'Lima')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010593167, -0.0052901316, 'Improving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008758553, 0.007322251, 'Human')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009369843, -0.002278302, 'generated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009510027, -0.009774449, 'cities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01149416, -0.0046804165, 'regulatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009494684, -0.007966023, 'best')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013004613, 0.022697996, 'Protocol')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010150419, 0.0059122904, 'defined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100444965, -0.011379446, 'create')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013589466, 0.026228841, 'Inventory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009762637, 0.00011638331, 'percentage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008609087, -0.0024893917, 'whole')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006470818, 0.018879535, 'is')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00962485, -0.008758586, 'factors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009183734, -0.011058455, 'leading')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010443814, 0.0031460489, 'Africa')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010414134, -0.008334386, 'measures.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093198335, 0.006237445, 'envisaged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007973222, 0.0058914176, '(in')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011079255, -0.0075817527, 'tropical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010625833, 0.020702912, 'Growth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009752289, -0.006413636, 'collection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104279695, -0.008444098, 'vulnerabilities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009571718, -0.0029318451, 'aim')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011361169, 0.0010081289, 'INDC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009692104, 0.0018819575, 'Improved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010217534, -0.003191608, 'mix')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008829177, 0.00083187275, 'Costa')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007525865, 0.012665172, 'Under')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012253205, 0.019228602, 'Gases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011971538, -0.011859643, 'gender')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010905377, 0.002918592, 'scenario,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010919348, -0.009986031, 'integration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009486182, -0.0015476805, 'indicators')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009697919, -0.007375386, 'remains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010301631, 0.014907204, 'Energy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009755236, 0.0081667965, 'Research')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009747121, -0.004578103, 'ongoing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008075429, -0.0056383098, 'and,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010942846, -0.0124080125, 'systems.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538712, -0.008112262, 'substantial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010098704, -0.0028443194, 'energies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008368332, 0.0042883093, 'Since')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011709885, -0.0074754423, 'precipitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010231188, -0.010089446, 'we')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01048304, 0.015205455, 'Bank')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011484496, -0.0013939675, 'mean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009318846, -0.005987107, 'recovery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009110087, -0.0063876654, 'having')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097983265, 0.018773016, 'Summary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010966061, -0.014267221, 'prevent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013473836, -0.016174769, 'security,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012681664, 0.0007038735, 'framework,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009172348, -0.0047855848, 'situation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010799804, -0.010824763, 'respond')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009026152, -0.0056776637, 'household')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013294636, 0.027583094, 'Product')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011394707, -0.014873218, 'systems,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01006707, 0.014208616, '2007')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010702498, -0.015217503, 'ensuring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010322765, 0.012400781, '500')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096795885, -0.0054347753, 'rehabilitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105074635, 0.014509364, '~')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012338632, -0.011777761, 'droughts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01027421, -0.0028632968, 'achievement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083504105, 0.0021137334, 'status')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008912063, 0.0075077172, 'Vulnerability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109583605, -0.0019376766, 'assessments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011657786, 0.011704734, 'methodology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00971974, -0.0047704387, 'charcoal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008512891, -0.007054742, 'throughout')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01091203, -0.009249934, 'impacts.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009091683, 1.35807195e-05, 'represent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010895801, 0.008551439, 'NAPA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009790747, 0.006363388, 'Sierra')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011084795, -0.005626647, 'principles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010727461, -0.003005048, 'located')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010684505, -0.006573292, 'hydro')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010371485, -0.008643024, 'increases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011285714, -0.0050055925, 'degraded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010303093, 0.02869004, 'N')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093779275, 0.026745724, '=')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009551079, 0.011404352, 'Climatic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010320753, -0.010384504, 'encourage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011769607, 0.022652673, 'Level')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010813533, -0.018398121, 'indigenous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009908376, -0.010746774, 'barriers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009352167, -0.0033464616, 'yet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00855641, 0.0190878, 'Cost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012906204, 0.0016831559, 'applicable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012288687, -0.0060469485, 'forward')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008253027, -0.0014174229, 'had')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01039627, -0.011714927, 'population,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009282427, 0.0011672749, 'created')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009701583, -0.0066016926, 'regulations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094785355, 0.0047823587, 'estimates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011037522, -0.0057681436, 'considers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01160924, 0.00042244143, 'MRV')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00996757, 0.00412517, 'El')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010225586, -0.007304565, 'scientific')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010766814, -0.015021297, 'manage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009379606, -0.0054855114, 'now')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011170989, 0.016803904, '28')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009346566, -0.004442082, 'led')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011970933, 0.009219137, 'usual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00896793, 0.010620693, '2014,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010852257, -0.0074242787, 'countries.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009537763, -0.0076307664, 'generate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009612314, 0.006767521, 'Reduce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088356435, -0.0029078552, 'almost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013478547, 0.016828476, 'Secretariat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009456401, -0.0016482915, 'forested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010339424, -0.01031748, 'design')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010087552, -0.0048825634, 'issue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011687086, -0.015289625, 'affect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011274028, 0.025138956, '24')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009398808, -0.002792122, 'supports')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014080201, 0.0029178811, 'aggregate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011141289, -0.010273397, 'technology,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011259332, -0.012395589, 'technologies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014021014, 0.024361476, 'ADAPTATION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012606689, 0.023293888, 'Process')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108745545, -0.009854921, 'decline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008850233, -0.009898614, 'makes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012048865, 0.008765299, 'UNFCCC.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008647882, -0.006477182, 'units')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010110104, -0.0078014266, 'tools')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094081815, 0.0062823575, 'Caribbean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00970781, -0.005727449, 'activities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009924007, -0.008201579, 'diversification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009529269, -0.009677446, 'maintenance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105434675, -0.005831489, 'cooking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010232723, -0.013127906, 'ecological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010067143, 0.002746119, 'presents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010324971, 0.01303116, 'Social')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009907122, -0.012351503, 'considerable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010295891, 0.0056272964, 'assumptions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008794651, -0.008657719, 'certain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009975283, -0.0059904857, 'plantations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010111514, 0.009801896, 'Urban')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010418096, 0.008611744, 'updated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721417, -0.0074170316, 'equipment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009138866, -0.00853387, 'he')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010084229, -0.01126563, 'service')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100690145, -0.006784679, 'relating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008945128, -0.004444283, 'stations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009685763, 0.007141432, 'reported')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009067198, -0.0061579566, 'While')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010445108, 0.0112884315, 'Clean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010525359, 0.0027488095, 'NAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015403603, 0.020458134, 'oxide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009431979, -0.010084056, 'capital')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010443139, -0.0062911874, 'involved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009846225, -0.00073698605, 'periods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009923924, -0.013946616, 'rapid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009273357, -0.0035427155, 'territory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010644198, 0.004229269, 'documents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013201511, 0.0011115468, 'period.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085106455, -0.0036378966, '(ii)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012098621, -0.007716483, 'forestry,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007965801, 0.005615123, 'New')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010275196, -0.006021073, 'sources.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012190038, -0.015642496, 'education,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011087471, -0.0072697666, 'partners')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009849386, -0.010066119, 'activities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010570958, -0.0075331987, 'monitor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012112389, 0.013860844, 'Environment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012879022, -0.011104282, 'storm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009660653, -0.0038280427, 'thermal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009869506, 0.00086857955, 'unit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009330645, 0.005903656, 'Comoros')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845498, 0.0009528665, 'pilot')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008764178, 0.0026480523, 'law')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009935967, -0.0059640226, 'projects,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011865198, -0.0077738552, 'plans,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012870826, 0.004031469, 'preparing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010474399, 0.0061412384, 'NDCs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009457009, -0.0035100807, 'highest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012944121, 0.0068015093, 'absolute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009911493, -0.010039813, 'populations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010926811, -0.0060384856, 'steps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009294491, 0.007627889, '1.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009076623, -0.005998733, 'his')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009624404, 0.00026197336, 'stage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010686681, -0.0035571805, 'open')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009560257, -0.0073512937, 'introduction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00886899, 5.0860363e-05, 'covering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011304037, 0.018503381, 'Commission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013043113, 0.00047112236, 'objective,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010591414, -0.004393165, 'include:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009338577, -0.0035845398, 'Despite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009243607, 0.01637468, 'Objective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009153328, -0.0074795885, 'come')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01413592, -0.0049612946, 'facilitates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010742176, -0.011042459, 'technologies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013277506, 0.014721978, '(BAU)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077776406, 0.00069361343, '(including')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010512178, 0.0028250336, 'reviewed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.02059225, 0.02312754, 'ON')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009030816, -0.003972238, 'requirements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008285035, 0.024603337, 'a')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012822495, 0.02074066, 'October')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00967559, 0.024698721, 'Target')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012005226, -0.019173725, 'women')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010757368, -0.008746973, 'change;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010651549, 0.0006209178, 'controlled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008776081, -0.005225631, 'together')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010190977, -0.010124411, 'river')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010159479, -0.009480329, 'system,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099651, -0.007527885, 'path')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012509763, -0.01088778, 'finance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010838733, -0.010275923, 'heat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009373561, 0.004425205, 'point')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012808977, 0.003004109, 'rules')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009287065, -0.0070426743, 'coming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008816675, 0.015380247, '2010,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00936833, -0.010448027, 'nature')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0118837925, -0.005955842, 'differentiated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009687717, 0.004700885, 'Reducing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015183416, 0.018970365, 'REPUBLIC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010123809, -0.0039711134, 'historical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012069128, -2.1784203e-05, 'ministries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075549353, 0.005323958, '2)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010700501, 0.010550554, 'calculated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008837972, 0.004106439, 'Establishment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012908607, 0.03220611, 'Net')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011649231, 0.011040302, 'UNFCCC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009770324, -0.0043550236, 'rice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0141002145, -0.018169722, 'floods,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011898833, -0.0050064763, 'adopting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010111818, 0.010747817, 'Institutional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184271, -0.008945176, 'commercial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009275184, -0.0015764254, 'show')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011005687, 0.007862561, 'Vincent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011008855, -0.005016866, 'instruments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010590185, -0.0018791931, 'provisions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009548743, 0.0064885854, 'Somalia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010530231, 0.016551232, 'Plans')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010473844, -0.004199412, 'pathway')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011509375, 0.01626857, 'Third')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009229917, 1.5595244e-05, 'Pakistan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011118652, -0.005527857, 'process.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106486445, -0.013114626, 'levels,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009571906, 0.00040407694, 'Guinea')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009518378, 0.023633305, 'General')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013576542, 0.02179759, 'Panel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010300219, -0.009408668, 'supporting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011308483, 0.017437667, 'Intergovernmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010989368, -0.020336576, 'poor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011536089, 0.019645644, 'Business')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010123266, -0.01260331, 'modern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009376992, -0.0051791365, 'utilization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096247215, 0.011070767, 'horizon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011153579, -0.0068197567, 'responsibilities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009718602, 0.0026306084, 'Verde')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00942783, -0.005668254, 'Some')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01165371, -0.0005844553, 'consultation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012462943, 0.029228797, 'Period')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010109171, 0.0077161253, 'Pacific')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011106375, 0.008468902, 'Security')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009834657, -0.011640035, 'future.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013392363, 0.01950719, 'eq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009760447, -0.00027916388, 'diesel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099206045, 0.018373689, 'Reference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012010061, -0.017571993, 'facing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011833519, 0.007753243, 'categories')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010725785, 0.010945898, '200')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009215306, 0.010335659, 'Togo')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010156633, 0.016767938, 'Institute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009787467, 0.005862553, 'Lao')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01075709, -0.011909686, 'impacts,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01008736, -0.004754569, 'lighting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010994152, -0.009941404, 'forests,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009463597, -0.010827976, 'essential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016596138, 0.027781902, 'CLIMATE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009797803, 0.011406988, 'Finance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011144913, -0.007165206, 'mitigation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010337544, -0.008386921, 'recycling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077323634, 0.008928957, 'Current')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010250824, -0.011042922, 'equitable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011522436, -0.00100572, 'stoves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011007252, -0.00048367045, 'soils')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009689784, 0.0025276942, 'year,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012737274, 0.026961736, '31')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009049338, -0.008835641, 'central')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01069797, -0.01068128, 'assess')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009260167, 0.0043366286, 'Gambia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010340274, -0.008718389, 'cobenefits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011129692, -0.017769258, 'communities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014157751, 0.020903936, 'Land-Use')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009400907, -0.0105432095, 'farmers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009985338, 0.014858607, 'Community')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012447176, 0.021734864, '2021')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072167083, 0.020581327, 'on')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009508172, 0.000101812264, 'landfill')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008527131, -0.002906465, '(i)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008892424, -0.0051005497, 'establishing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009342151, -0.002745114, 'installation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00979117, 0.012424656, 'Priority')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009688975, -0.008409356, 'incentives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01198611, 0.023500593, 'N2O')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010805569, -0.008393449, 'countries,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010421062, -0.0028915617, 'vehicle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011050793, -0.012346638, 'ability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009251088, 0.003958573, 'km')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009724961, 0.0026519685, 'Establish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00991156, 0.013419592, 'draft')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008959531, -0.006172512, 'example,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009808066, -0.0011351135, 'electrification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011276159, 0.024846924, 'September')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009055479, -0.001859528, 'Nepal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009425665, 0.0066553983, 'AFOLU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010896995, -0.005609877, 'support,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01495003, 0.027939793, 'Dioxide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016803076, 0.020116035, '(CH4)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008951744, 0.0060379277, "d'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011070318, -0.0037618943, 'undertaking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009986992, 0.016731162, 'Means')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010371261, 0.019863714, 'Initial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087762205, -0.006970615, 'Given')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010996577, 0.019498393, 'Industry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097763855, -0.0014478314, 'meeting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011171447, 0.019250024, 'Gross')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011034772, 0.009823783, 'Monitoring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010810824, -0.018233093, 'pressure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089968, -0.009737125, 'population.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082999375, 0.0039337147, 'Further')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009648853, 0.009891025, '40')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009659189, 0.01096594, 'Rural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009370796, 0.018423045, 'Area')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010036734, 0.015502153, '2009')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012250371, -0.012041209, 'fisheries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008315015, -0.004457556, 'entire')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009616579, -0.0066052643, 'wide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011068375, -0.0026931542, 'zero')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008396708, 0.0059946114, 'Chile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721516, -0.006251871, 'export')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009273329, 0.004257064, 'Kingdom')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016981574, 0.022265885, '(N2O)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010354922, -0.0033036142, 'Lanka')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009390193, 0.008761801, 'Tourism')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010015944, 0.0007090685, 'Bangladesh')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00931754, -0.0021648149, 'takes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009879382, 0.008779087, '300')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009453321, -0.0024656404, 'contributes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010047904, -0.010838454, 'prevention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011763751, -0.004442007, 'plans.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009064704, -0.0060205087, 'residential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009936103, -0.0056163357, 'hydropower')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011402907, 0.0079964, '(GHG)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009992283, 0.013264636, 'Regional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010898639, 0.0067987326, 'guidelines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00973284, -0.0007851025, '80%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010013216, -0.0076407627, 'effectively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007787006, -0.0010109987, 'a)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087659415, 0.0035969424, 'assumed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009279309, -0.008237722, 'balance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009011841, -0.0031279544, 'Dominica')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010765203, 0.02385852, 'No.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009424728, -0.011102789, 'solutions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009830627, -0.006763964, 'methods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009508606, -0.00049096666, 'projects.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009405959, -0.005085989, 'relatively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010240275, -0.006326871, 'Increasing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008391466, -0.0029570851, 'b)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087361615, 0.004601449, 'final')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009856112, 0.0089128995, 'launched')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010450217, -0.0077089868, 'interventions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011769802, -0.010512202, 'flooding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010643303, 0.01241524, 'Change,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009210934, -0.00931429, 'Moreover,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010371575, -0.007635377, 'meteorological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00994713, 0.012211035, 'Korea')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013031722, 0.02385134, 'CO2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010130137, 0.004531036, 'hereby')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099767195, 0.0062597254, '5%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011980693, -0.017768295, 'threats')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011140021, -0.017979745, 'affecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013445681, 0.0022636545, 'fairness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009685525, -0.012654625, '(e.g.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110998405, 0.012425402, 'Deforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007941855, 0.004278573, 'Lesotho')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009039824, 0.0201881, '3:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010959278, 0.0090742335, 'COP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008973763, -0.006353944, 'advanced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011314337, 0.00019972406, 'states')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009050147, -0.0077112974, 'benefit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009531706, -0.0052105538, 'real')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009490512, -0.0063936366, 'rates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011243678, -0.012763307, 'rising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009366617, 0.00032307557, 'respective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012143572, -0.008304223, 'agencies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010565773, -0.00454601, 'cultivation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010265704, -0.008466359, 'system.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008614937, -0.0029173067, 'largest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009270878, -0.00874355, 'types')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009992651, -0.003690205, 'series')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009540833, -0.0002543027, 'hydroelectric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01016586, -0.010019261, 'emergency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009342667, -0.0010077473, 'measure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010527828, -0.0039804378, 'capacitybuilding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011305024, -0.0041855676, 'multilateral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010136651, 0.029193673, 'Source:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012868229, 0.016860133, 'Methodologies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008687098, 0.011016984, 'Panama')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012452639, 0.024589704, 'Methodology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014826786, 0.00034368117, 'legally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106396265, -0.011845315, 'growth,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010820205, -0.008727925, 'efficiency,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011466483, 0.00585589, 'methodological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00916548, -0.009400279, 'adapted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009487647, -0.0036256507, 'aimed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010051439, -0.008354249, 'struggle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012622907, 0.025939787, 'January')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008459508, 0.0065367757, "I'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010363675, 0.0055400236, 'Leone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01307906, 0.016532244, '1990,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010946327, 0.019075334, 'Economy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106298085, -0.011402944, 'sources,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010585226, -0.015150689, 'etc.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007478314, 0.002868182, 'Additional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011281712, 0.009826039, 'scenario.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011715346, -0.0068029533, 'mainstreaming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010373792, -0.0067767873, 'fight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009295974, 0.01872855, '19')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010597211, 0.009820314, 'Biodiversity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009096743, 0.010477195, 'Moldova')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011940551, 0.020020407, 'Approach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009500794, 0.0083318185, 'Implement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011597591, -0.014592428, 'faces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009057234, 0.009185709, 'Oil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011335218, 0.012595062, 'Change.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009391872, 0.004563553, 'trends')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009061516, 0.0020742044, 'Construction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010386792, 0.008247251, 'outlined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010263605, -0.004018071, 'mentioned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012137003, 0.021901542, 'November')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008870081, -0.00518285, 'Thus,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011037036, -0.012964215, 'planning,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0121894, -0.01273187, 'building,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009826386, -0.00047738687, 'Solomon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009681719, -0.009481577, 'improvements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011711182, 0.021925868, 'published')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008625083, -0.0059074513, 'combined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013697112, 0.020949487, '1996')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008785383, -0.0070410473, 'lasting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00953074, 0.004023386, 'Infrastructure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008672507, -0.0045964518, 'produce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009588775, 0.015170944, '2012,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00841319, 0.018527422, '22')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011315667, -0.014218524, 'play')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012067528, -0.016621813, 'ecosystems,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008277476, 0.017429942, '23')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008271689, -0.0036951716, 'Singapore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009699732, -0.007961299, 'production.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010781676, -0.013744769, 'sensitive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01206613, -0.005176743, 'wastewater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011278559, 0.0135996435, 'Market')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014379908, 0.018689841, 'Oxide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009629074, 0.0013971482, 'sectorial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009262967, -0.003284844, 'inclusion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00951831, -0.010471668, 'structures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010426381, -0.007250606, 'seeks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009577743, -0.0027557288, 'scope')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074485685, 0.006451916, '1)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008932741, 0.0011517189, 'produced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008088195, 0.005882618, 'phase')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011456116, -0.0024366735, 'coordinated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009737983, 0.0048667816, 'section')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060446463, 0.0020666828, 'climate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099712685, -0.005523535, 'aspects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009393115, 0.008009065, 'avoided')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010840536, -0.015635557, 'infrastructure.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009034901, 0.0017828234, 'Niue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010287853, 0.007103266, 'Island')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010544029, 0.0030375663, 'trajectory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010093035, -0.00816121, 'saving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009732118, 0.012989297, 'Technical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010206578, -0.013149492, 'great')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010108439, 0.0069161835, 'accounted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009546847, 0.009624797, 'iNDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010420328, -0.008268991, 'short')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010871582, -0.005212047, 'mitigation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007129833, 0.009590717, '*')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107621765, -0.0023229646, 'Enhancing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010094422, 0.0020694959, 'period,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010450867, -0.0030632894, 'collaboration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010887934, -0.010560837, 'harvesting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009979, 0.00366646, 'Uruguay')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012148971, 0.0013050344, 'approach,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008599615, 0.0069318367, '·')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009281887, 0.006316802, 'covers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010337121, -0.013495961, 'pollution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010580305, -0.003959787, 'subnational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009861749, -0.0038657584, 'focused')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009239336, -0.0045283344, 'targeted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011231556, -0.0020329203, 'sink')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009321852, 0.007786464, 'Financial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010320012, -0.0143072335, 'fishing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094418945, -0.0074268333, 'extension')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010713653, -0.0062723067, 'governance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011834394, -0.014192399, 'livelihood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009001238, 0.0036853852, 'table')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.019473376, 0.018162012, 'EUROPEAN')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008703772, -0.0020542922, 'six')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010425092, -0.012784582, 'sustainability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009734874, -0.004272269, 'resulted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014314866, 0.02252375, 'Report.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010574025, 0.010391433, 'Mechanism')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01086128, -0.010232186, 'drinking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009864825, -0.0060486295, 'successful')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009762498, -0.0071376264, 'avoid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008854598, -0.009598689, 'They')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009653517, -0.0086608, 'trees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011869083, 0.0055385735, 'methodologies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012247044, -0.0016327093, 'bilateral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00902494, 0.009880419, 'NAMA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00980274, -0.004940139, 'active')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009584141, -0.0029853713, 'prices')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008538525, -0.0043307757, 'Although')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00868173, -0.0058928514, 'field')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012894404, 0.019914508, '(UNFCCC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008453714, 0.0051102424, 'Mali')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010525486, -0.015835281, 'managing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008693437, -0.0032331198, 'type')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250924, -0.0038715391, 'Guyana')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008433534, 0.0030310855, 'Eritrea')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011662321, 0.015565254, 'Policy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00917157, -0.004096455, 'maximum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010912643, -0.004981767, 'agroforestry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089515615, 0.003962281, 'shown')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184942, -0.0037385114, 'minimum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011976827, -0.0052058776, 'stakeholder')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009301145, -0.007063513, 'expansion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009805776, -0.0018741013, 'half')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01054837, -0.011883445, 'settlements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009864412, 0.008340079, 'dollars')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010478521, -0.0019125656, 'conducted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010237065, -0.010397896, 'opportunity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011094627, 0.0048607313, 'Biological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011446821, -0.004518213, 'policy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009596732, 0.006660784, '60')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102356775, -0.0032863398, 'Rica')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097302385, -0.012606663, 'keep')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007779199, 0.010593279, '8.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009281059, -0.0069064153, 'structure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009133408, -0.007168703, 'transformation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011867886, 0.0014994021, 'agreed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010476513, 0.020983415, 'Group')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00835669, 0.0024704763, 'Suriname')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009652881, -0.010257866, 'housing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011030132, -0.0019109969, 'disposal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009916542, -0.014359767, 'etc.)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009008643, -0.0096667, 'individual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009531441, 0.0032539158, 'recently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010782831, -0.008063791, 'time,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01196303, -0.012550438, 'ocean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105592655, -0.010194524, 'biological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009952303, -0.009537489, 'far')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010753581, -0.01433971, 'communities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092832325, -0.008094249, 'jobs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012036126, 0.0024689897, 'Convention,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008732794, 0.004111143, 'latest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008972153, 0.010326618, 'Efficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0116527835, -0.014183959, 'patterns')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010410858, -0.0070453314, 'diversity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009817785, -0.003122637, 'programmes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184958, -0.012473758, 'big')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011256275, -0.008885995, 'management;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004611796, 0.012946684, 'by')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010866299, -0.009909242, 'mangrove')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009635744, -0.0067287358, 'just')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010391335, 0.008592987, 'quantified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009405632, -0.0006546075, 'initial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009551331, -0.005949484, 'reserves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011672831, 0.0059478544, 'fall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011516149, -0.015040993, 'fish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012947496, -0.01115274, 'transfer,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010337831, -0.015255404, 'changing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011162817, -0.018390168, 'consequences')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011737281, -0.018387306, 'coral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009549622, 0.020135736, 'Context')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077505317, 0.007397231, 'Chad')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014598416, 0.025477463, 'Final')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008271191, 0.006154158, '−')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010492862, -0.011974482, 'assist')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100265285, 0.01574892, '2000,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008856956, 0.00041060912, 'abatement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010719434, -0.013552533, 'capacity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010810802, -0.004295351, 'afforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011911922, -0.013532645, 'urgent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011492559, 0.023448223, '38')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009714097, 0.01605879, 'Master')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014105961, 0.020777607, 'Call')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009651623, -0.0007749472, 'robust')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012184113, 0.0094061745, 'inventories')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010039044, -0.009778479, 'markets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01197346, 0.015567821, 'Resilient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010041297, -0.010164862, 'dependence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010488852, -0.0033588018, 'implementation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00719758, -0.00034897611, 'down')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009660701, 0.013159512, 'Ambition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010787214, 0.0024079925, 'update')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010862895, -0.0067363097, 'anthropogenic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010563982, -0.010547154, 'combat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009220694, -0.001709354, 'operational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076588397, -0.0024515348, 'More')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011159778, -0.009741598, 'industry,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007911193, 0.0020117552, 'Niger')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009888108, -0.007734021, 'considerations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009100577, -0.0026324217, 'give')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010342416, -0.0049404656, 'Syrian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009177311, 0.011894456, 'Country')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01419892, 0.023045218, 'MITIGATION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011121369, -0.01414389, 'varieties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091234865, -0.0031749748, 'savings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01032857, -0.013593789, 'assure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012078406, -0.008293808, 'building.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010354869, 0.01142602, 'Appropriate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010141666, -0.0016561943, '70%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014403095, 0.020810233, 'hexafluoride')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010363464, -0.007886592, 'actors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010059549, -0.010181403, 'materials')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010861634, 0.022670718, 'Fuel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009429563, -0.005264996, 'allocation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009336079, -0.00994588, 'maintaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011441625, -0.0038423077, 'consultations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011590796, -0.01729696, 'threat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010780734, -0.01011362, 'needs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009887937, 0.007219793, '15%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012000673, -0.0019872545, 'result,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009988473, 0.013639977, '2008')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010278674, -0.009230753, 'seasonal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010670015, -0.008807512, 'innovative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009000249, -0.0037262186, 'previous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009408776, -0.006280196, 'performance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010077514, 0.009906394, 'described')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016177423, 0.026431233, '(CO2)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009241877, 0.004957426, 'Implementing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010880272, -0.014207735, 'heavy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096958885, 0.010530394, '2035')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00914442, 0.015139614, 'Production')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008992488, -0.004236052, 'allows')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105297845, -0.009318367, 'generation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012459077, -0.0036657455, 'season')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010095974, -0.0062262807, 'live')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00990106, -0.011916851, 'groundwater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00926913, -0.0023168393, 'Indonesia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011483569, -0.01770813, 'services,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009618494, -0.0060836053, 'models')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009728453, -0.010985397, 'however,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008695756, 0.015772976, '2012.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010465396, 0.006816289, 'West')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010170347, -0.011016911, 'concerns')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077446615, 0.004486454, 'River')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089980215, -0.010072374, 'multiple')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009011568, 0.0017593993, 'follows:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010709458, -0.013623896, 'economic,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01005587, -0.0056758085, 'deliver')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009485672, -0.009618163, 'concern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010176156, -0.010415945, 'waters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011201577, -0.012138332, 'growth.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010338314, -0.0057054977, 'sanitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008324544, -0.0036996107, '(iii)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009121796, -0.0014486766, 'option')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010605563, 0.012450527, 'Strategy.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009371078, -0.0010132238, 'During')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01132897, -0.0053001866, 'coal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01173711, -0.006579174, 'cook')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070819147, 0.016043572, '2.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009814818, -0.0092878, 'remain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00658254, 0.022213727, 'as')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008421902, 0.012747771, '2013,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010448225, -0.013406408, 'rights')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009984013, -0.004051815, 'transmission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009486694, 0.0042200694, 'starting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011055104, -0.011420572, 'experienced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008274109, 0.015409427, 'energy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009255471, 0.00085459725, 'recommendations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011225686, -0.011611829, 'pursue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110538015, -0.0007167509, 'guidance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010584214, -0.011630335, 'immediate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009645704, 0.001489903, 'Cambodia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010706496, -0.008741496, 'gaps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250748, 0.014425978, 't')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011871076, -0.011229905, 'integrate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087347245, 0.0051495065, 'Tonga')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010010635, 0.011539428, '2018')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012831064, -0.010718935, 'events.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092299245, -0.011464369, 'shift')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008152827, -0.0033702573, 'close')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008264568, -5.9301354e-05, 'Due')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01268845, -0.0022967055, 'residues')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009718344, 0.007331396, 'Tunisia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008930245, -0.0054859966, 'geographical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009323716, -0.002587748, 'done')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097436635, 0.0057272464, 'Transportation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011063564, 0.010171526, 'Grenadines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010844098, -0.00010143392, 'directions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009986464, -0.0011214899, 'financed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009309583, -0.008650891, 'absence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0118487915, -0.012235885, 'resilience.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009929082, 0.007473227, 'Small')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010751581, 1.6549067e-05, 'prepare')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00901762, 0.014937377, 'Estimated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009390962, -0.0075824647, 'remaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009655781, 0.004587024, 'fermentation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01158257, -0.009286178, 'ways')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010406442, 0.0130841965, '2016.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097610885, -0.010653423, 'positive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010035104, -0.0074345837, 'Nauru')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010426564, -0.011344927, 'few')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010559482, 0.0026780094, "Sudan's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011655603, -0.013695415, 'depend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010396595, -0.0081359595, 'determine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01040706, 0.0050413245, '25%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670986, -0.0029434925, 'similar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010228181, -0.0017164695, 'arrangements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010814001, 0.00076279807, 'Manufacturing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0044347746, 0.012909603, 'with')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011658521, -0.007167175, 'monitoring,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010057426, -0.0070023895, 'enhancement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012829287, 0.0017785016, 'legislative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009676321, 0.0055479733, '2050.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008983456, 0.0012131935, 'assessed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012080799, 0.010776165, 'Fair')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010044113, 0.014676527, 'Developed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009051629, 0.008179075, 'Principality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011130899, -0.012835873, 'despite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104751885, -0.01431566, 'crucial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011607089, -0.0140714, 'resilience,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009087383, -0.010502178, 'mining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008952734, 0.0070177442, '35')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010546597, 0.0040721367, 'domestically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102034565, -0.001552363, 'times')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010392517, 0.0007615319, 'indicate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010254374, -0.00836723, 'dams')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008030082, 0.021590266, '29')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008826591, -0.006062028, 'c)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010479788, -0.007015782, 'to:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009939138, 0.0044697276, '2050,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007115583, 0.009141924, '9.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004777987, 0.0078044175, 'from')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008374029, -0.0039354456, 'example')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010408616, 0.0033833936, 'photovoltaic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008729871, -0.0037152634, 'factor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008641446, -0.0034499466, 'measurements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0129681565, 0.015968008, 'contract')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007733705, 0.006800839, '(with')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010689121, 0.008777892, 'revised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013012599, -0.0051151393, 'look')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005894673, 0.0143834315, 'emissions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009979139, -0.00865303, 'raise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010762973, 0.0104543725, '(which')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010699138, -0.0102516115, 'forests.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010755089, -0.0021362705, 'penetration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010485811, 0.0072317882, 'Fisheries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011571389, 0.02267322, 'Time')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009302142, -0.013185525, 'extensive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01531344, 0.022114066, "IPCC's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011332047, -0.014032773, 'services.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009715874, -0.010309733, 'majority')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010333655, 0.016656473, 'Sectoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098244725, -0.001352734, '\uf0fc')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008678268, -0.0019845802, 'once')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074945865, 0.004271732, 'i.e.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014548489, 0.023428319, 'Facility-Burkina')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00935452, 0.0046774917, 'cumulative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016403493, 0.032226168, '2015-AC-001-15DDU0C006-CPDN-Support')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010219222, 0.015604811, 'Plan,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009998764, -0.006362835, 'collective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009783349, 0.0016108003, 'contributed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009529824, -0.0013640912, 'Namibia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098516075, -0.009595058, 'recognized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008889274, 0.009694302, 'RE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010039087, 0.014907384, 'Policies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008924129, -0.0017514278, 'anticipated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010739218, -0.010070318, 'recognizes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011321785, 0.021166528, 'Covered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109053515, -0.013147148, 'trading')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009588771, -0.009784716, 'directly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930595, 0.0065497183, 'Rice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008514032, 0.0018495573, 'course')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008915927, -0.0043087215, 'tax')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009074738, 0.017986808, 'Programmes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007418971, 0.018224332, '3.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010494031, -0.011291158, 'proportion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010549848, -0.00631684, 'Lack')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010723451, -0.011241385, 'faced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011594139, 0.019217886, 'tCO2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014845302, 0.00109442, 'Parties,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012327614, 0.017961912, 'i')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008310812, -0.0033923744, 'purpose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013160394, 0.017882608, 'Usual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011670296, 0.009975995, 'Comprehensive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011728496, 0.022724984, 'Revised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010900121, -0.012101651, 'reliable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014521535, 0.016588628, '1/CP.19')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012233807, -0.0023755988, 'ready')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010615876, -0.00661642, 'process,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009159477, -0.007876952, 'primarily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009067606, 0.009127303, '80')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01190888, -0.0033900542, 'soon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010410491, -0.008838055, 'fact')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014957973, 0.018519074, 'Deliverable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012005324, 0.016882278, 'Parts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01173084, 0.003933679, 'Convention.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009845083, 0.008755923, '2030;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010611549, -0.0026928221, 'policies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008975024, 0.0048771054, 'completed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012005422, 0.018199665, 'Hydrofluorocarbons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012882421, 0.020967122, 'Perfluorocarbons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011858398, 0.015456293, 'Resource')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075822584, 0.015888007, '2.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008292239, 0.013722772, '2020-2030')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011186588, -0.00023085545, 'Enhance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009964312, 0.012529197, 'Coast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008465042, 0.005876169, 'CPDN')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00988109, 0.0064405594, 'listed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009302655, 0.005543881, 'Rehabilitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009377227, 0.0011647077, 'assumes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008218415, 0.0032617762, 'Through')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009737875, 0.011919459, 'Changes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010337036, -0.0129171135, 'insurance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008384551, -0.0010862382, 'another')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008808928, 0.0040042936, 'Main')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009801338, 0.011979217, 'Areas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009181762, 0.0055914083, 'indicates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011849485, 0.00577882, 'mm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010453011, 0.0053055454, 'PDR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010087863, -0.012016652, 'physical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010547748, 0.01171457, 'Strategy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014480719, 0.028017316, 'Metric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009977795, 0.001185737, 'sectors:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010750538, -0.011356561, 'sustained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009428624, -0.010281668, 'special')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073567494, 0.01775912, '3.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007431033, 0.0032214865, 'One')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010746714, -0.0039810967, 'decreased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011377367, -0.0053768046, 'decade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009202869, -0.0006826682, 'cement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008830278, 0.007740206, 'reached')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009295495, 0.014791427, 'Index')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091423355, 0.004659528, 'contained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009692496, -0.003597777, 'waste.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011644196, -0.011789487, 'frequent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010064447, 0.0041653677, 'Salvador')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011908894, -0.015203519, 'ecosystems.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010332329, -0.013759074, 'emphasis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009500928, -0.0058465875, 'planting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012654712, 0.006600158, 'jointly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009607304, 0.0013980921, 'initiated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00905611, -0.008643622, 'thereby')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011069885, 0.0130788945, 'Agency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010454202, -0.011039164, 'exposed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00986764, 0.0007970609, 'Arab')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009822207, 0.0130064795, 'n')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00949427, -0.003207145, 'Belize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010084425, -0.0017984458, 'context,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009904079, -0.011885394, 'fundamental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009496223, -0.0090208575, 'extent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010336497, -0.008421838, 'organizations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011724298, -0.014319581, 'adapting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015987724, 0.012322832, 'Warsaw')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012960204, -0.01024157, '-To')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010120025, -0.0041094073, 'participatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009437385, -0.0074955286, 'works')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009296149, -0.006942966, 'inclusive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008417993, 0.0010321718, 'Nigeria')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010753327, -0.004392104, 'waste,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009763527, -0.0093952725, 'seen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009590121, 0.008536606, 'Reduced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009234309, -0.004543657, 'UAE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011359094, 0.018759288, 'Good')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010120872, -0.013975383, 'emerging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009838959, -0.00332944, '90%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011628666, 0.007869995, 'Least')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01179761, 0.010859337, 'Action,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011606932, 0.021705138, 'FOR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012816133, -0.0039008453, 'forestry.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01106413, -0.0142018935, 'environment.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00956312, -0.007816244, 'particular,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009915438, 0.0068608443, 'Viet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009523929, 0.01447081, '(see')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008990447, 0.0020608194, 'initiative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009313426, -0.0041022175, 'operation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010398736, -0.0093131345, 'national,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010661217, 0.009865317, '$')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009174749, -9.559329e-05, 'volume')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008784726, -0.007997253, 'continues')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008765814, 0.0050707776, "Swaziland's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008175357, -0.005905284, 'whose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008497839, -0.009127893, 'regime')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009355814, -0.0060807443, 'If')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010210684, -0.0036034766, 'smart')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010062885, 0.011988165, 'Office')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007297842, 0.0024199148, '(the')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097051095, 0.006508253, 'held')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010838507, -0.008681287, 'integral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009274246, -0.0010032713, 'Creation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007283491, 0.0059506735, 'High')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822238, 0.0027076346, 'worldwide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008811261, -0.0007028995, 'evolution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009831259, 0.0011177928, 'Training')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01077948, -0.0070048273, 'preservation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065302174, 0.010316527, 'ANNEX')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00947783, 0.00555921, 'indicative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.020029882, 0.029015485, 'NATIONAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008184542, -0.0012315579, 'double')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010030234, -0.010188298, 'capacity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011448863, 0.00918109, 'quantifiable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012871781, 0.0030724965, 'objective.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010960923, -0.0142591605, 'protecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005581781, 0.015244467, 'will')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010705646, -0.009803233, 'damages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008572708, 0.0023924771, 'cattle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010446396, -0.0016965165, 'received')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007908035, 0.019412901, '26')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010668217, -0.00040339725, 'contribution,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012291667, 0.022650177, 'Sulphur')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009780392, 0.0041230824, 'reports')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010303771, -0.010865389, 'tree')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009391196, -0.008822172, 'exchange')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011008416, -0.015848858, 'secure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00875963, 0.0046044486, 'Afghanistan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010921197, -0.0016296646, 'outcome')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009330729, 0.019593094, 'August')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010514522, -0.0026974145, 'Grenada')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009535637, -0.011787322, 'incomes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009878976, -0.0148285655, 'safe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009631986, -0.00016482054, 'Uganda')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009468765, 0.018318325, 'July')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095671415, -0.0022019164, 'valuation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010665682, -0.007022048, 'engagement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017473936, 0.023547694, '(CO2),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010975086, -0.014474379, 'needs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009452376, -0.009583323, 'intensive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00849723, -0.008828973, 'Also,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008500933, -0.0016127955, 'We')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007942686, -0.00042320264, 'followed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009439594, -0.0008285138, 'designed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010902619, 0.020711279, 'First')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00970812, -0.00399106, 'outcomes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008886729, -0.0050120894, 'city')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00959463, -0.007920089, 'processing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009340255, -0.0077732303, 'forms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010179805, -0.0032048358, 'prioritized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01037175, -0.016193202, 'wellbeing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009352973, -0.0080348775, 'largely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010439903, 0.0028914383, 'formulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010820461, 0.024006864, 'Decree')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014301045, 0.014908227, 'Absolute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011965298, -0.009799457, 'land,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009288526, 0.0029395733, 'sector:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00952002, 0.020826694, '4:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009544786, -0.009789675, 'cultural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00888307, -0.010041243, 'comes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007771501, 0.0001381633, 'Additionally,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010842257, 0.014805207, 'ratified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008277093, -0.0011192205, 'capture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009844746, -0.0038891383, 'enforcement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010136394, -0.015546817, 'increasingly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009801493, -0.0063300123, 'elements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010171593, -0.009103788, 'heating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010490292, -0.0016860999, 'connected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011669076, -0.012631987, 'drought,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00972985, 0.02732926, '°')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930683, -0.0031534708, 'Kuwait')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105067585, -0.014085775, 'sufficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010097279, 0.0012683065, 'commits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009566487, 0.013344455, 'REDD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011806682, -0.0107023, 'storms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085736085, -0.0058876756, 'constitute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093723675, -0.002661199, 'concerned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011259167, 0.02083062, 'CO2,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170889, -0.0024918935, 'Sudan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010230508, -0.010024915, 'community.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010026286, -0.009878377, 'climaterelated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011754657, 0.017986638, 'Biennial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009918621, -0.0077830283, 'success')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00856594, 0.001968414, 'see')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0139675485, 0.010474576, 'nitrous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008980693, 0.009443403, 'absorption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011319454, -0.014685834, 'challenges,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009583773, -0.0020521297, 'that,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009592482, -0.0026697356, 'north')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011649627, 0.016712323, 'Processes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010075536, -0.015852261, 'serious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010471018, -0.013527875, 'inter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087280255, 0.0038303563, 'corresponding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009683234, -0.0017503093, 'representatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010099639, 0.0044527003, 'million.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0122673735, 0.0060094586, 'request')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009555653, -0.012755264, 'suitable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009484428, -0.011283267, 'foreign')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01016025, -0.0052232496, 'experts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066393837, 0.0048539685, ',')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009987975, -0.0061420435, 'world.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010818164, -0.009468496, 'changes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010006731, -0.0080984505, 'developmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100635085, 0.0024192163, 'gross')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008729131, -0.0073401635, 'continued')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010576285, -0.008027339, 'effectiveness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008189027, -0.0040032896, 'Its')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009388908, -0.007559152, 'introduce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010137551, 0.012208103, 'Estimating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009714508, 0.0038035433, 'indicated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073332638, 0.008630881, 'From')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009318442, -0.0035903559, 'delivery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010154318, -0.004621414, 'petroleum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009598123, 0.0045888126, 'funded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012623267, 0.020628847, 'LULUCF)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0059314203, 0.01036597, 'that')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009240042, -0.0033077532, 'introduced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010317449, -0.00045238397, 'husbandry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008824137, -0.007756193, 'others')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010413185, 0.018016463, 'FY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01098126, -0.010193126, 'coast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010471541, 0.0004196293, 'applied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008806063, -0.005520454, 'sites')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011130258, 0.018990252, 'Update')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010502102, -0.0141418185, 'water.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01292215, 0.006727949, 'communicated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009246147, -0.008886652, 'middle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011151313, 0.016612612, 'Cabinet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011883339, 0.011282784, 'Fairness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009407146, -0.0029532881, 'apply')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008964849, -0.0083150035, 'rather')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011338565, 0.0127509935, 'Republic,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009081611, -0.010544205, 'combination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010769856, 0.0083739925, 'Mechanisms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010251229, -0.012320849, 'creating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011153352, -0.006836907, 'principle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012307356, 0.01434765, 'Minister')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011113423, -0.015174264, 'environment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009668963, -0.003997811, 'observed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008705476, -0.0018547876, 'post')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010870451, -0.0001330446, 'contribution.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010816354, -0.017752543, 'vital')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011580292, 0.019488841, '(SF6)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010379797, 0.01632367, 'Protected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087647615, 0.014017462, '2013.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010269739, -0.008393652, 'generating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085240025, -0.0011226322, 'administrative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008885283, -0.012744993, 'space')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01231754, 0.01483997, 'Montreal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009087846, 0.009654891, 'Impacts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011299778, 0.021580828, 'Description')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009370318, 0.011651606, 'Mission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009959083, -0.009529495, 'region.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010575113, -0.007116764, 'grow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013754626, 0.010465237, 'timescale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100271255, -0.00049399113, 'list')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013207141, 0.005267727, 'confirmed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010416009, -0.008575171, 'networks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011119991, -0.008610578, 'priorities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011159055, 0.001411008, 'ultimate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010970327, -0.015309231, 'poverty,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011612348, -0.012758998, 'hazards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670623, -0.0019170429, 'her')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009850292, -0.006463582, 'limiting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00949496, 0.00053186476, 'group')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096029695, -0.008545406, 'hand,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00698921, 0.0027598292, '●')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108212605, -0.014473674, 'fiscal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012727145, -0.015429854, 'droughts,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011019698, -0.004730928, 'priorities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010801249, 0.02008345, 'UN')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009724338, 0.008134089, 'GEI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008834063, 0.008008615, 'Ivory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076860273, 0.013072627, '+')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008965508, 0.0052144127, '70')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01019967, 0.0009171813, 'verification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010278381, 0.014380672, 'Reductions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011032064, -0.01220149, 'protection,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01047693, -0.004751413, 'fund')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010259366, 0.0061733257, 'below.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843276, -0.0074433335, 'catchment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00963832, -0.008232929, 'regard,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008580298, 0.013937603, 'Population')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009923664, 0.006910713, '400')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008796576, 0.011658928, '45')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009557585, -0.0078072315, 'cleaner')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00964009, 0.013608843, 'April')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00837132, 0.00075359066, 'Considering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010257547, -0.0015521651, 'sinks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010138423, -0.0067154556, 'watershed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009655421, -0.011017917, 'ground')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101152565, -0.011060074, 'extremely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010027285, 0.0048939595, 'sets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013141087, -0.016778877, 'events,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010251001, -0.0068649505, 'synergies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00959655, -0.007016713, 'setting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010826988, 0.020779392, '1994')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009798874, 0.012638362, 'Manure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011220432, -0.0143846525, 'phenomena')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012991031, 0.023816798, 'Economywide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010013925, -0.010856661, 'raising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007843613, 0.004604219, 'third')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009062001, 0.0055924365, 'stated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009461058, -0.00419766, 'centres')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009785942, -0.0072631203, 'ones')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011710235, -0.001805383, 'frameworks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012872747, 0.0069078924, 'economywide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015680807, 0.02222471, 'IMPLEMENTATION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007818175, -0.0007840875, 'Most')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010904908, 0.011837452, 'Enteric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010098839, -0.016025798, 'diverse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01079884, -0.013688048, 'pastoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010422646, -0.00089228747, 'renewables')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010297349, -0.007149364, 'generation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010033282, -0.008806014, 'internal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012578397, -0.010967481, 'disease')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107398005, 0.01888087, 'Party')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008049742, 0.0016715225, 'Nicaragua')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008922811, -0.008456206, 'inputs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007436396, 0.008913914, 'Wind')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009491306, 0.012518409, 'Zone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010722362, 0.0122427335, 'submission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011956167, -0.0018432948, 'progression')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012239316, -0.015962914, 'society,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01024428, -0.009619877, 'parts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010455293, -0.011065016, 'capabilities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016072333, 0.007862923, 'synthesis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008859302, 0.003921111, "Dominica's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106362915, 0.017662454, 'CO2eq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013895222, 0.005702583, 'Parties.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009252493, 0.010310349, '2011,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011773776, -0.0147006605, 'biodiversity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011697838, -0.006185639, 'mechanisms.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008765429, -0.0035273605, 'compliance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105804, -0.01740933, 'difficult')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009525019, 0.00329111, 'reflected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010425197, 0.0030233604, 'guided')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009000897, 0.013663822, 'San')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010139146, 0.013066082, 'Forests')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012363099, 0.006812645, 'Agreement.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008956491, 0.0005171344, 'amounts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010260552, -0.0074800844, 'processes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009116467, -0.001371485, 'Seek')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008058894, 0.009809528, 'Data')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013311653, -0.0027831702, 'grown')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008460894, 0.0035576606, "Benin's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098560145, -0.012345028, 'others,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011583725, -0.003957246, 'degrees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011981661, -0.012066883, 'tourism,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011369184, -0.0023409147, 'preindustrial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009112283, -0.0071618347, 'built')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010141044, -0.009852056, 'depends')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010416275, -0.011968641, 'grazing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076346775, 0.0042204116, 'then')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008921864, -0.0068827732, 'little')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014165284, 0.011651967, 'Council,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008296233, -0.0005243615, 'Many')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009475999, 0.00037166974, 'selected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010309414, 0.016552381, 'Plan.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011185906, -0.005966437, 'discharge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008992227, -0.003909092, 'potential.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009499983, 0.0069814636, 'estimation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010584639, 0.021313466, 'Million')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009736561, -0.004507015, 'addressed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01153846, 0.019516548, 'NGHGI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008587945, 0.0025539126, 'Congo')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011821942, -0.003542703, 'guide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012965362, 0.015178404, 'Parliament')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010335215, 0.008208517, 'Reforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091809835, -0.003389351, 'beginning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009009168, -0.007527309, 'driven')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010820016, -0.0023840517, 'instrument')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012634763, 0.0078071817, 'quarter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011115553, -0.013345501, 'rain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01252789, 0.025929106, 'GWP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008663552, 0.0010093641, 'profile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112203155, -0.003904165, 'fertility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009617528, -0.0029786523, 'regulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014297977, -0.00061967305, 'negotiating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009082973, 0.014079027, 'Politics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100835385, 0.0022813468, '60%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008957654, -0.004368768, 'stock')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009284226, 0.0024693352, 'Switzerland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009939623, -0.0058323075, 'geothermal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010165347, 0.015836678, 'Working')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008000799, -0.0017397128, '3)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010720253, 0.011801395, 'proposals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011633842, -0.011839017, 'conservation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110439975, -0.008873838, 'efforts.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009968765, 0.016682774, 'Baseline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010968114, 0.015463925, 'Joint')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094693685, 0.01385411, 'Bank,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01004244, -0.008896729, 'identifying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008336735, 0.0060127475, 'respectively.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008893731, -0.004318263, 'allowing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009529403, -0.004525798, 'carry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012646678, 0.020493492, 'Protocol.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009628973, -0.011966351, 'guarantee')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009879575, -0.009494465, 'reinforce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015571702, 0.020917244, '4th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012112359, -0.0122518325, 'security.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009038859, -0.009230616, 'Such')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012343446, 0.0080406, 'landbased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008514597, 0.01286674, 'Haiti')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009234122, -0.00064447743, 'municipal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010046777, -0.008646157, 'consumption,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008604561, 0.010920466, '2016,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012013939, 0.0043367143, 'Wastewater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008528256, -0.0007501897, 'criteria')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009351207, 0.010197661, 'approval')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008462753, 0.009446779, 'Annual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010638245, -0.014351406, 'experience')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010998162, -0.0022230626, 'fulfillment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012256178, 0.021611262, '(HFCs)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008693815, -0.0021149528, 'Djibouti')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009893468, -0.010850601, 'causing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00926631, -0.005152295, 'territorial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010155604, -0.006992948, 'impacted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008303745, 0.018438429, 'II')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010904053, -0.014093024, 'longer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008463864, -0.003968917, 'inside')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009358879, -0.006415545, 'reaching')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008762624, 0.017767768, '2,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009591089, -0.006642376, 'collectively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010124972, 0.011383769, 'Authority')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00909118, -0.0012230559, 'follow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009638062, -0.0056243343, 'incorporate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009884977, 0.0063127945, 'calculation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009902996, -0.010804353, 'expand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010590638, -0.009462865, 'timely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010169646, -0.00944828, 'import')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011008725, -0.0016324801, 'joint')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012880332, -0.014432463, 'fisheries,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008572042, 0.0063741924, 'Barbados')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012595072, -0.009971803, 'rise.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008615049, -0.0065106032, 'basins')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008020669, 0.0034418907, 'Benin')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0118782995, -0.01780145, 'health.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085053025, -0.002327558, 'itself')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009523641, -0.012186444, 'huge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009618858, -0.013887614, 'trade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012951036, 0.023198359, '(PFCs)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010031205, -0.008790216, 'crosscutting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010653107, 0.0084348535, 'aligned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009524114, -0.0077364487, 'near')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01202485, -0.020555658, 'social,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007942251, 0.0016376557, 'expressed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009983379, -0.0014679754, 'reduction.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105048865, -0.015007674, 'heavily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011223158, 0.017426448, 'Practice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011014266, 0.011067392, 'ODS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008687492, -0.0037462153, 'stocks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009133077, 0.018314257, '2017')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009701559, 0.0016336113, 'accounts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010407576, 0.012018552, '600')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01006325, -0.0070664645, 'strengthened')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109054465, -0.011463484, 'decreasing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009687269, -0.009526036, 'depending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008650061, -0.0064205276, 'd)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009814967, -0.013962372, 'implications')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009034992, -0.006535142, 'this,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009252744, 0.0012481459, 'following:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009828005, -0.011306894, 'sharing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009645399, -0.013518587, 'problem')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011127157, 0.00123688, '2%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013844425, 0.01886509, 'trifluoride')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082709715, 0.021104567, '27')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010947626, -0.016452966, 'minimize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008507182, 0.0015868121, 'Loss')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008942837, 0.00045940146, 'forecast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008234388, -0.0013917796, 'derived')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009051773, 0.006841122, 'Specific')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009564342, -0.010549461, 'attention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096428115, -0.012296888, 'move')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010740838, -0.012120004, 'society.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00613889, 0.015692042, 'be')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093553495, -0.0052650836, 'actively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009226686, -0.005376858, 'rivers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008408044, 0.0042855553, 'Gabon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009653506, 0.0053545255, 'attenuation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010616679, -0.012637829, 'severely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011621448, 0.026662514, '√')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010792194, -0.013298911, 'lives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009532857, 0.0020981198, 'Jamaica')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009176862, -0.013888419, 'problems')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011350765, -0.0075622885, 'mitigating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012096179, 0.009937252, 'Reporting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009999994, -0.012523568, 'destruction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010661048, -0.014973909, 'infrastructures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012091343, 0.008289531, 'Field')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011864458, 0.003089546, 'acting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009595877, -0.00016808634, 'potentials')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009322263, -0.0072312527, 'district')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103104375, 0.022306964, 'Component')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103121875, -0.015389729, 'proper')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013860795, 0.018963061, 'Applied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008882229, -0.007158982, 'amongst')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00909702, 0.0053313486, 'Introduce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009733261, 0.013997584, 'Systems')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010632282, -0.007345633, 'information,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008252036, 0.010253231, 'Study')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009673255, 0.0026588202, 'Local')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007874623, 0.00041208728, '(a)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010933782, -0.005530093, 'vehicles.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009622667, -0.0013615906, 'lowest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009802218, 0.01484274, 'Center')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009003846, -0.004850785, 'broad')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011291186, -0.002463517, 'goals.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011691464, 0.024267498, 'Doha')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011339905, 0.013498546, 'businessas-usual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069271196, 0.010949205, '1.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009834692, -0.004127197, 'force')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011170088, -0.011580563, 'skills')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011701764, 0.004562504, 'Agreement,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010126964, -0.0064031444, 'aiming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008967468, -0.0009293984, 'Turkmenistan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009890987, -0.0030058662, 'define')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009573594, -0.003377685, 'native')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009443129, -0.012209205, 'weak')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009582141, -0.0034034133, 'reflect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01069103, -0.010986179, 'dangerous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008916855, 0.015156652, 'President')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009706176, 0.0017340451, '(*).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010644318, -0.008264785, 'gas,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009720813, -0.002751754, 'laws')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010481118, 0.011543225, 'Control')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011838497, -0.0020668763, 'manufacture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008207987, -0.0015672335, 'purposes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009278734, -0.002318702, 'feasibility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007987308, 0.007257915, 'Studies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010785801, -0.010760338, 'research,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010495223, -0.005712877, 'concrete')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010154643, -0.005954668, 'biogas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008808309, 0.0052597225, 'Bhutan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009963228, -0.010389955, 'involvement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00838075, -0.0072423583, 'spread')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009247322, -0.0049502854, 'appropriate,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015902555, 0.028523078, 'KP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008225871, 0.0076662325, 'Bolivia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010423024, -0.0086600855, 'issues.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011820904, -0.011377434, 'financial,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010884798, -0.006939799, 'circumstances,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008619106, 0.002494729, 'Over')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00969649, 0.007705349, 'Review')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009389879, 0.010587827, 'Gender')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009656162, -0.0045352913, 'regular')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010046611, 0.018261142, 'Response')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009312043, -0.011000715, 'structural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008871681, -0.0067665465, 'concerning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008973837, 0.013530766, 'Goals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011628405, -0.0117582, 'reliance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010036566, -0.0052780486, 'serve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009015869, -0.005529026, 'equal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017628253, 0.018126888, 'SUBMISSION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009285026, 0.01550049, 'Generation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092214625, -0.008668663, 'managed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009530747, -0.012301123, 'environmentally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011402424, 0.015233089, '2015-2016')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009373187, -0.008010397, 'desertification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009115257, -0.0095376205, 'however')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00917627, 0.016330868, '(2014)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008377385, 0.008211037, 'Circumstances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011930109, 0.011928227, 'Nitrogen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106019145, 0.0038862957, 'Norway')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106057245, -0.0028577023, 'irrigated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010522183, -0.0018478136, 'partnership')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101048555, -0.008640875, 'area.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011144023, 0.009806768, '800')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008127504, -0.0010971306, 'complete')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010404619, -0.008603337, 'agriculture.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100727, -0.002955937, 'reduction,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009682043, -0.00461027, 'communitybased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010352769, -0.0114782825, 'staff')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010335644, -0.013676804, 'people,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009774974, -0.010909152, 'though')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009917633, 0.0081913, 'proposal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009528701, -0.008508802, 'handling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01034245, -0.007766862, 'imports')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009763957, -0.011340472, 'dissemination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009389281, -0.005717804, 'data,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009179632, 0.009679672, '35%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095904125, 0.012748696, 'Poverty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008634048, 0.0037118853, 'date')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004183768, 0.0032401658, 'The')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009039815, 0.0033158062, 'Saint')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010181471, 0.0012370234, 'proposes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007983995, -0.0007064204, '(b)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008379294, 0.00062275806, '(i.e.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009376599, -0.0017911983, 'lines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010131108, -0.011994711, 'intense')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009215774, 0.017366784, '\uf020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010631258, -0.0047733923, 'above,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009610818, -0.0020844506, 'identification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011005868, -0.0045446693, 'solar,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090998765, 0.0072810133, 'Financing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010694877, 0.019039335, 'BaU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012040451, 0.010826433, '(GDP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011717939, 0.011271778, 'Communication,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009835756, 0.019097745, 'dated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007751564, 0.0051352843, '4)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008104845, 0.004567069, 'Cameroon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009985586, 0.0108269565, 'Monaco')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008375095, 0.01436486, 'Analysis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010217965, -0.009010791, 'degree')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011095903, -0.010460502, 'institutions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010574979, -0.0043466035, 'further.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011361561, -0.006801803, 'equity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01166237, 0.008942259, 'credits.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010697166, 0.0061794687, 'Education')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007023228, 0.0021047634, 'Ethiopia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010057447, -0.00436936, 'south')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01194544, 0.016178261, 'Supplement.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009656976, -0.0046696654, 'atmosphere')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011273755, -0.010814918, 'sealevel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011318773, -0.017081384, 'zones,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015054623, 0.0046683676, '44%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01138325, -0.011943296, 'strength')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011150997, 0.0003556421, 'fertilisers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009197172, -0.0057885577, 'applying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012656302, 0.006151155, 'fulfilled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011228851, 0.006000552, 'Mineral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010456893, -0.011389693, 'hydrometeorological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008618727, -0.0042642737, 'back')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00921936, -0.0077368096, 'producing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009971387, -0.0054620067, 'vegetation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010622739, -0.0069395765, 'adopt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011077791, 0.018275177, 'Combustion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012358295, -0.018173655, 'women,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009586864, -0.009713561, 'strongly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110584125, -0.009919774, 'financing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00977953, -0.007781915, 'manner.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011559451, 0.0052165086, 'Nonenergy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009363776, 0.003277394, 'Honduras')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00953137, -0.009348105, 'although')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008794187, -0.00083715067, 'Bahamas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010384982, -0.010562024, 'planning.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012373739, -0.012559858, 'rise,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011284703, 0.01264932, 'Communications')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01026717, 0.0063636755, 'Ocean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009606045, -0.007965822, 'accompanied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00933425, 0.0031715923, 'subsector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008327085, -0.0068882285, 'principally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01052197, 0.0018088757, 'targets.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009223973, -0.012419388, 'bring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009254884, 0.0066776923, 'North')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009698265, -0.0042804466, 'Nevertheless,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010058349, -0.009343241, 'mountainous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008283812, 0.0038693766, 'Malawi')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012079332, 0.015388802, 'Methodological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00992865, -0.0128631, 'material')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01059524, -0.017075935, 'turn')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096904915, -0.0015273335, 'exceed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010136243, -0.0036100652, 'obligations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01017539, -0.00897411, 'it,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009969629, 0.022643514, 'Targets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008184082, -0.0020818952, 'index')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008329969, -0.007860853, 'spatial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010885791, -0.017153604, 'young')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009876673, -0.0073801377, 'area,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010400708, 0.0021093888, 'noted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010523148, -0.012651625, 'restore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009220804, -0.005684421, 'distributed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010303062, -0.0065390877, 'nation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009506216, 0.0041819364, 'Samoa')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00941845, -0.013454252, 'flow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010121473, -0.00623362, 'donor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008720311, 0.013862382, 'Impact')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01019731, -0.00814578, 'drainage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010362633, 0.02072392, 'Term')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102597745, -0.010421618, 'buildings,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008856214, -0.0017614302, 'demographic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008444365, 0.009493401, "Morocco's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008885212, -0.0050299247, 'price')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010295876, -0.0060759396, 'track')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011980117, -0.016092151, 'disasters,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01084953, 0.02056012, 'year:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010273318, -0.0003148559, 'Canada')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011042832, 0.007053431, 'billion.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090596685, 0.00089464494, 'sector;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009422843, -0.003505973, 'forecasting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087864, -0.0039850585, 'specifically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011591192, 0.0056015844, 'Incineration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009394719, 0.017765326, 'June')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010590439, -0.006774126, 'strategy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008983128, 0.016008161, '2011.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008871383, -0.003816753, 'complementary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009511252, -0.010223522, 'economically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009406964, 0.006817046, 'Build')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009150407, 0.008326385, 'Sanitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010695583, -0.006821989, 'processes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012322556, -0.0028809689, 'agreements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00947653, -0.008720611, 'schemes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013023777, 0.023592945, 'CHANGE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01029357, 0.008223371, '3%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0116442405, -0.01719021, 'cause')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011224079, -0.0048687044, 'strategies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096507985, -0.010549284, 'interest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008925113, 0.00038477822, 'establishes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015361707, 0.0072365445, 'legallybinding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009585815, -0.008120393, '(iv)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011100539, 0.0073075965, 'unconditionally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0147567475, 0.015534451, '14,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009659617, -0.00281015, 'toward')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01030352, -0.006610661, 'met')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009583982, 0.0147034265, 'Centre')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008690201, -0.00072355213, 'standard')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008346209, 0.011154325, 'Biomass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010247765, -0.011597287, 'science')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010112757, 0.0053155622, 'scenarios.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010815831, -0.017454408, 'healthy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009961298, -0.0079552485, 'focusing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011247613, -0.0013962076, 'internationally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01406872, 0.019415645, 'Or')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007479938, 0.011711795, '10.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008015488, 0.00055080914, "Singapore's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009405014, -0.005525605, 'replacement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008976825, -0.009286876, 'persons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009050343, 0.0066165156, 'East')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009224471, -0.006682028, 'might')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008296679, 0.018304424, 'et')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013601936, -0.007020009, 'understanding.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010361916, -0.005768572, 'uncertainty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008939168, 0.0051337257, 'LPG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010532189, 0.008969805, 'Coordination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015523773, 0.026829012, '2021-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008372526, -0.0043026754, 'allowed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009522466, -0.013265329, 'burden')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009415508, -0.0045862687, 'note')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098982565, 0.021621563, 'Electric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01066585, -0.008283632, 'time.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0115612, 0.015296025, 'Categories')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072414894, 0.012829931, 'National')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0156201655, 0.008297842, '19%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011207762, -0.0072959806, 'cyclones')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008626484, 0.008981569, 'Private')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010100992, -0.003016769, "world's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010091073, -0.011522964, 'desalination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010179435, -0.0061153434, 'initiatives.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010792043, -0.0087887645, 'costs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006964494, 0.012997773, '1.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016281463, 0.004286731, 'wish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010144117, 0.010393936, 'metric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013022586, 0.022513308, 'TO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009569998, -0.00019669694, 'approach.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005080698, 0.01024175, 'its')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076883403, 0.0037471766, 'adaptation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011588596, 0.019090328, '(NF3)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011570459, 0.017321961, 'version')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011138548, -0.01239883, 'transportation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264256, -0.007326036, 'revenue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00770521, 0.0035581703, 'Swaziland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008279019, -0.008040571, 'numerous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010812409, 0.0017657004, 'Chemical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070832903, 0.005927256, 'Antigua')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009982382, 0.010165931, 'Smart')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009834657, 0.00734914, 'DPR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013180894, 0.023822503, 'Protocol:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010544661, -0.010516673, 'rainwater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00891598, -0.003841379, 'side')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008054709, -0.0046731466, 'found')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011734844, -0.013678949, 'degradation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008319966, 0.018814355, 'Executive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014129788, 0.015651643, '1/CP.20')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011496625, 0.0012746274, 'substitutes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014135751, 0.0035310453, 'website')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009554851, -0.0050450596, 'Brazil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093606105, -0.0058607003, 'namely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010362135, -0.005559177, 'intervention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01387298, 0.024533119, 'Inventories')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01036885, -0.0124582825, 'changes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011947279, -0.010571741, 'conduct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011110328, -0.009365678, 'evaluate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011891434, -0.0058792154, 'decades')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012021596, -0.000911389, 'negotiations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008918298, -0.0050775, 'constitutes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009387211, 0.0016737588, 'annually')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011037128, -0.012837491, 'future,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011703594, -0.017096508, 'men')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100460965, 0.003353156, 'Meteorological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014881103, 0.015944377, 'BY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010785064, 0.009254168, 'conclusions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104094045, -0.010659389, 'fires')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009345012, 0.014121645, 'Objectives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00929028, 0.0006648609, 'voluntary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0116922725, -0.0023888305, 'mainstreamed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011634368, -0.006003222, 'economies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010476547, 0.0048210314, 'Fugitive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090001505, -0.0029995146, 'stages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010954753, -0.009346823, 'livestock,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009149005, 0.004693267, 'represented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009948946, -0.0031795616, 'territories')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00818749, 0.0026251876, 'Georgia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00918527, -0.003024541, 'PNG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009447131, -0.011132926, 'crisis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009187752, 0.0047195298, 'Services')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011229758, -0.013144875, 'diversify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009377832, 0.020193044, 'Projected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097632585, -0.0020786605, 'indicator')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009082484, 0.0012316381, 'Ghana')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010612574, 0.0069273664, 'formulated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010468293, -0.002957954, 'informed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010013169, 0.0017821867, 'target,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011596344, -0.013146407, 'induced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009106594, -0.0014968929, 'Identification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011286006, -0.009057061, 'innovation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009248851, 0.0014676476, 'recorded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010156187, -0.010995616, 'rest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070512863, 0.008620574, 'b.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010651966, -0.0018441393, 'overarching')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01034251, -0.006454549, 'participate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009924849, -0.007556516, 'efficiency.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010233706, 0.0101098735, '2000.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0125169465, 0.014320972, 'submitted:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00907876, -0.009044673, 'Hence,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011563641, -0.01332379, 'fishery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008790995, -0.0076945894, 'mass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005485527, 0.005439058, 'change')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01259077, 0.017776767, 'Czech')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104329465, -0.01542752, 'constraints')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009889244, -0.008164543, 'viable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009024458, -0.0047415863, 'single')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012111305, -0.00707277, 'coordinate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012221674, -0.01420521, 'exacerbated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008891222, -0.00760312, 'offer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013321, 0.012091013, 'Hungary,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113711255, -0.003024609, 'group,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012543325, 0.013428889, 'publish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010546051, -0.002233589, 'energy;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013392949, -0.012384012, 'integrity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009945902, -0.011903306, 'preserve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008909932, -0.0074253785, 'job')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009014049, 0.01563089, '2017.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009289791, -0.0016975235, 'centre')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009412554, -0.01315599, 'matter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009129831, -0.012148714, 'cycle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010890685, -0.0028639657, 'Grazing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010563048, -0.010420396, 'climateresilient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009102163, -0.006847471, 'position')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008384267, 0.00028803005, 'representing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00857336, -0.0009198405, 'Guyana"s')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010525347, -0.0068295025, 'surveillance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085062785, 0.001815682, 'later')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009728669, 0.008638475, 'started')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012980828, 0.0067028496, 'France,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010192973, -0.005131694, 'partnerships')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010080995, -0.010061135, 'poverty.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013285534, -0.0018897168, 'solvent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078026257, 0.015651505, 'Stage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011721757, 0.014758456, 'Legislative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009925298, -0.013383959, 'exist')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01035702, -0.011613644, 'hot')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013154068, 0.009258636, 'fallen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010625408, -0.009659321, 'investment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009946668, -0.0061659697, 'practice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010774288, 0.008956768, 'Countries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008696765, -0.003139099, 'nearly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008976058, -0.0027114318, 'basin')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012420462, -0.010438938, 'borne')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014392203, 0.013579544, 'Lithuania,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009705873, -0.005016966, 'reform')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009090944, 0.009801878, 'Housing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007791561, -0.00043584313, 'of:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009315709, -0.005053782, 'modelling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008386626, 0.01155691, 's')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011575191, -0.01597648, 'risks,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011849715, 0.014153781, 'Metal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013531311, 0.016786717, 'Germany,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011294815, -0.00022231875, 'Afforestation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010316262, -0.010597968, 'region,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008788377, 0.005486724, 'Cropland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009710049, -0.0115370015, 'conditions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010388492, -0.0010034876, 'direction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011001911, -0.009694554, 'institutions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009095973, 0.0021004116, 'Extension')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009491273, 0.0032056994, 'roadmap')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010379844, 0.005353161, 'Nam')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012249068, -0.009223916, 'finance.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010851276, -0.011708742, 'supply,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011565559, -0.012640882, 'erosion,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009803237, -0.010220954, 'promotes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010708269, -0.009775508, 'decisionmaking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009620221, -0.0036802702, 'present,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009715398, -0.010244212, 'characteristics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009964228, -0.00816148, 'advance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015783083, -0.0020325999, 'urge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011971227, -0.012550272, 'integrity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010413522, 0.009931956, 'Marine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014652981, 0.014674097, 'Spain,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010100371, 0.013623691, '2021-2030')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006691346, 0.0068869544, 'a.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008941806, 0.004109327, 'Liberia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01218593, 0.012247725, 'Luxembourg,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074433708, 0.006689239, 'Follow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009089223, -0.009061523, 'rich')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008652067, 0.015448559, 'Sectors/Source')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009022636, 0.0013227824, "Tonga's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010498146, -0.00076195033, 'hybrid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008221445, 0.0033531196, 'inhabitants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009040984, -0.0035158058, 'dedicated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009755088, -0.008632649, 'involves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011831902, -0.01317219, 'disasters.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012972894, 0.013031197, 'Portugal,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008423482, 0.0066369995, 'Between')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009269923, -0.0021211717, 'courses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008151782, 0.018823389, '5:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009767383, -0.0053478447, 'condition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009599568, -0.01207868, 'whilst')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009511878, -0.009091892, 'aid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093186125, -0.0063207056, 'top')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010826596, 0.007859744, 'Electronic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010993784, -0.007854318, 'ten')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010433041, -0.01167547, 'safety')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009540613, 0.005488529, "Jordan's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009667516, -0.004830125, 'coastline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009651616, 9.8899596e-05, 'emission.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010473333, -0.0067655686, 'step')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008773675, -0.008013388, 'thanks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076161562, -0.00012936478, '(for')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010493892, -0.014243337, 'encouraging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009758001, -0.010330725, 'arid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011162038, -0.010416946, 'responses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00898047, -0.0070402185, 'Qatar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010568786, 0.0027440286, 'combustion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01103739, -0.008168267, 'term.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010733562, 0.006351109, 'estimating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010171021, -0.008919436, 'such,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009279868, -0.009982975, 'places')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010748351, 0.0206272, '2003')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010074901, -0.014658119, 'subsistence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012478838, 0.023400754, '(IPCC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106966235, -0.0110005215, 'efforts,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010473943, 0.015147911, 'Policy.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009782486, 0.004708735, 'Restoration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013752072, 0.020131724, 'Subject:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008639994, -0.008316679, 'continuous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101354625, 0.013231951, '100%.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011169991, 0.014343624, 'description')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011299472, -0.012601748, 'resources;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01069784, -0.013871003, 'practices,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105498405, -0.006752951, 'agriculture;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010884796, 0.008281474, 'calculate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009072061, -0.010550713, 'unique')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010033618, -0.013990751, 'employment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01167576, -0.017028404, 'youth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085197855, 0.012390864, 'Goal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009007173, -0.010745132, 'continuing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010734654, -0.0054526264, 'preparedness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008283839, 0.0005060058, 'Trinidad')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009039759, 0.009324348, 'Equity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011292643, -0.0017906267, 'ambitious,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008628188, -0.009258801, 'permanent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010041287, -0.00025821463, 'target.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00894674, -0.0055278135, 'through:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009410353, -0.008845913, 'potentially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009122392, 0.016507743, 'kt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009571894, 0.008995686, '700')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093471315, 0.009478002, 'Latin')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109932795, 0.007968206, '2100')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013181797, 0.01615465, 'Poland,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0132591855, 0.009846991, 'Austria,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008287652, 0.0002901018, 'prior')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010585859, -0.01195603, 'causes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086753685, -0.0049590506, 'fleet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00921593, -0.008404726, 'mostly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008989063, -0.001971212, 'Saudi')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009461097, -0.0022134066, 'successfully')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008126409, 0.0056081912, 'Malaysia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011820893, -0.0031302865, 'ministries,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008974842, 0.014299148, 'bn')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009115468, 0.01679035, '2015-2030')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009979925, 0.008035021, 'figure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0125773065, -0.0037651993, 'discussing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010932013, 0.0018348782, 'elected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011080717, -0.007971523, 'manufacturing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011294648, -0.0098749185, 'alia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008958844, 0.01254329, 'Network')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010479025, -0.00786779, 'benefits.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01057423, -0.0018439144, 'authorities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010574669, 0.018435776, 'Prescribed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008618204, 0.008039616, '250')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016428404, 0.012402618, 'Romania,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010678194, -0.00691985, 'plants.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009881445, 0.004091984, 'used.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009740809, -0.013986351, 'potable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010806267, -0.0036509926, 'plan.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009618396, -0.0073899603, 'largescale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175757, 0.003006209, 'recommended')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012885239, 0.011609484, 'Sweden,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00961797, -0.008951013, 'others.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014861719, 0.0028439162, '(EU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00961959, -0.009508189, 'climate,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015353929, 0.014739258, 'Slovakia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016713496, 0.014932577, 'Slovenia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008302201, 0.0023998646, 'Thailand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010310307, -0.0021626346, 'highlighted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009555487, 0.016068341, 'Code')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010138242, -0.0058293804, 'realize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010247639, -0.014307424, 'construct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008900382, -0.008652577, 'sound')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012018364, 0.010161616, 'peaked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011562095, 0.008663904, 'Forestry,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012690467, 0.017126983, 'Guidance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015874889, 0.018772606, 'Estonia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074415356, 0.016768724, '3.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010189317, 0.011293649, '20,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008457889, 0.013350824, 'Medium')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010016137, -0.009695083, 'systematic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099981185, -0.0005872187, 'rational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005085423, 0.015892006, 'are')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014593564, 0.010907698, 'Bulgaria,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008974275, 0.017896567, '2030:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010131765, -0.007073763, 'electricity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098211225, -0.002164892, 'wetlands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010503373, 0.0051652766, 'Verification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015827945, 0.018060064, 'ITS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105659915, -0.015019325, 'impel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010553903, -0.0056243576, 'available.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009209193, 0.010864516, 'Flood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008178653, 0.00065662776, 'Finally,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009731438, 0.010202911, 'Federal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011619273, 0.030191148, 'Frame')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009327542, -0.006882696, 'added')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008811582, 0.002396241, 'preliminary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009018859, -0.0075901826, 'feasible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016116114, 0.010271578, 'Latvia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009351325, -0.0051939716, 'regeneration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008333192, -0.0019510185, 'seven')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008951072, -0.004255688, 'perspective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011794417, -0.011732926, 'engage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010662458, -0.0011642749, 'eastern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010140339, -0.0031510915, 'plan,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009472367, 0.018670168, 'Timeframe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008988792, 0.001799098, '90')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010175333, -0.013972912, 'deployment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00929204, -0.003951395, 'reflects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009937231, -0.0065968297, 'developments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009650485, -0.0071262144, 'going')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009436463, 0.0019030229, "Niue's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010061099, -0.008654143, 'variable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100615835, 0.014034107, 'pleased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008156146, 0.0040429267, 'Mauritania')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011138784, -0.007154842, 'goals,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008909599, 0.006001895, 'Argentina')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011169987, 0.013622666, '(NAP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011267864, 0.016219335, 'refer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010302741, -0.005432275, 'information.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011079583, 0.0033116024, 'formulate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009624761, -0.005113125, 'realized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008880875, -0.0035338998, 'Ensure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008587469, 0.011520504, 'Recovery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843724, -0.0070196954, 'tracking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008872299, -0.003637878, 'independent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011360611, -0.008559381, 'occur')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011427979, -0.008962844, 'event')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010152278, -0.0064798854, 'governmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008522561, 0.0001505832, 'contains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009416114, -0.0052163624, 'constructed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011422468, -0.005189501, 'mainstream')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008773952, -0.003654246, 'Consequently,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011013169, -0.0038916091, 'circumstances.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008963016, 0.005542255, 'excluding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009283014, 0.0018653634, 'quantitative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008692717, 0.0063516665, 'Adoption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009246194, -0.0079871835, 'gap')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010079476, -0.011629039, 'friendly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009222975, 0.012658531, 'Andorra')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0048438814, 0.013704441, 'sector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010181686, -0.003941613, 'receiving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009701254, -0.00060428353, "India's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00988736, 0.0035275207, 'Development,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011531466, -0.0127607435, 'incidence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009869115, -0.01000643, 'pasture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008723829, 0.00016447638, 'Maldives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099997865, -0.002231435, 'century')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011569523, -0.010788077, 'lands,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009481084, -0.0111961225, 'care')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009732865, 0.007804385, 'Belarus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009156882, 0.004263893, "Government's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009580149, 0.009179146, 'University')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009299561, -0.004460949, 'replace')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008419964, -0.0043486576, 'known')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009642411, -0.010871889, 'universal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070419717, 0.013874406, '4.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014220837, 0.022006717, 'Denmark,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011133415, -0.013543338, 'areas;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010219834, -0.0030838603, 'pathways')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005182961, 0.003493454, 'Antigua')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016059991, 0.017282115, 'LATVIA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009453514, 0.02519703, 'Measure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009376185, 0.0070975656, '%,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.018529763, 0.019487448, 'COMMISSION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013984154, 0.01626743, 'BEHALF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.02101551, 0.02255272, 'UNION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015577901, 0.0166661, 'MEMBER')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01486974, 0.017774086, 'STATES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012434945, 0.017849429, 'Riga,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013775108, 0.004091182, 'jointly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.016155131, 0.015561534, '(Belgium,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014978717, 0.0121666845, 'Croatia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008128293, 0.0028412354, 'conversion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012714121, 0.0121935615, 'Ireland,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00828256, -0.006650321, 'constant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012919085, 0.009181249, 'Greece,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014527937, 0.009014041, 'Italy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015054763, 0.009876866, 'Cyprus,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009165364, 0.008040186, 'forthcoming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110947015, 0.004071986, '(MRV)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013386024, 0.011102585, 'Malta,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012383386, 0.008970521, 'Netherlands,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0130079305, 0.012028236, 'Finland,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012706482, 0.008724293, 'Kingdom)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011787327, -0.003633732, 'package.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013921177, 0.012645606, '529/2013)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011662764, 0.00059079245, 'nontraded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.018534495, 0.02215034, 'CONTRIBUTIONS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011035055, 0.009631847, 'Fund,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010378557, -0.0034126667, 'departments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009286676, -0.00529642, 'formal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009601215, -0.0015774402, 'articulated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00921507, -0.004927089, 'leadership')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009657465, -0.007209959, 'geographic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009952167, 0.019198276, 'Road')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012323157, -0.0060278936, 'coordinating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008801826, 0.0054475227, 'Tajikistan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009133154, 0.004339843, 'GDP.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009389056, -0.008161226, 'yields')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008805332, -0.0047034877, 'numbers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012505209, -0.02054142, 'sustain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089943, 0.007936614, 'credits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009339163, -0.0061048595, 'coupled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108590815, 0.021199744, 'CH')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009426332, -0.010384877, 'traffic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008725175, -0.008673591, 'becoming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012567406, -0.015836885, 'flooding,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009779978, -0.010679574, 'farm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008753772, -0.0064260163, 'procedures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00941523, 0.004616524, 'Livestock')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010314344, -0.0071542533, 'consumption.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010442328, 0.0020586303, 'Awareness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008815657, 0.011411463, 'Soil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112385955, 0.0060202475, 'inventory,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010140104, -0.012116095, 'input')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00940263, -0.0062577706, 'possible.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008599823, -0.0033332002, 'extended')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008742734, 2.3403203e-05, 'Indian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01227267, 0.008036436, 'communicates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017423602, -0.0020209288, '_____________')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01278041, 0.012868919, '529/2013/EU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010144209, 0.0020897705, 'Liming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009272831, 0.0023458372, 'carboncontaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009710193, 0.0033207478, '1%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011981028, 0.013383746, '1979.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015121104, 0.006345758, 'landaccounting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009822809, 0.0022162306, 'Urea')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011163442, 0.003905777, 'savannas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012624215, 0.000989026, 'offsets).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011394631, 0.016298816, 'Amendment.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014096081, -0.0053177145, 'halving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0136135565, 0.013646551, '80-95%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010807209, 0.0064226687, 'categories/activities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100337425, -0.0019181251, 'contributor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010045556, -0.0019314138, 'identifies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009616906, -0.004165501, 'holistic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009724402, -0.006870168, 'responding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008990951, -0.005028754, 'expenditure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012088639, -0.009000682, 'stakeholders,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010603473, -0.008995431, 'rains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104368245, -0.011380541, 'scarcity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009819346, -0.014362354, 'deal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009477672, 0.016162015, '2030)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007694228, 0.011961304, '1.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006781506, 0.011347619, 'M')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010536272, 0.025185134, 'Profile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0135971075, 0.013035268, 'submit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010411582, -0.009869524, 'war')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008168988, 0.0030237867, 'Further,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008656272, -0.008807233, 'flows')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101596, -0.008044393, 'northern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010552682, -0.00767006, 'government,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009399545, -0.009571899, 'home')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010154804, -0.005208047, 'carbon.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011115363, 0.01645436, 'Democratic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017092124, 0.02284856, 'TOWARDS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012087233, -0.006954806, 'transport.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011414364, -0.012829618, 'tolerant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009263923, -0.008990359, 'vast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010232562, -0.0071917456, 'keeping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009182319, 0.003320441, 'ranked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010062964, 0.006465598, 'America')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008655424, 0.0056120693, 'corresponds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007417862, 0.01909843, 'an')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012933597, -0.015710771, 'flash')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009985194, -0.008196224, 'mapping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008382605, 0.009175239, '150')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009882936, 0.009328664, '%.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008858758, 0.000592746, 'Damage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011530456, 0.014354377, '(LULUCF)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009772911, -0.0102548525, 'exploitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102866115, -0.011625407, 'rainfed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009356159, -0.0050761006, 'programmes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008399063, -0.0052326526, 'centers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007204718, 0.017559307, 'I.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011521206, 0.012800583, 'Communication.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009121196, -0.0050231796, 'Create')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010828593, 0.02288402, 'Supply')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009543308, 0.0007301776, 'components')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007757232, 0.013780854, '3.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010175424, -0.0013803988, 'developed.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008408418, 0.006264261, 'Zimbabwe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010232361, -0.0145772, 'exposure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009380879, 0.017491953, '2.2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009736153, -0.006143683, 'climatesmart')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009158206, -0.0055401637, 'sense,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009746528, 0.014059919, 'Directorate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009841816, -0.011682096, 'affordable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009286647, 0.015191268, 'Initiative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0121194655, -0.019099524, 'cope')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009328805, 0.0018906788, "Uganda's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00903943, -0.012812922, 'etc.).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010475449, 0.003209654, 'Mexico')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010814057, -0.011238879, 'hydrological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010904224, -0.0090107005, 'wildlife')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008491728, -0.0019289491, 'points')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008559262, -0.0031285747, 'except')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008364147, 0.0029484697, 'Cuba')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009907627, -0.004330464, 'exercise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00810328, 0.016617175, 'd')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010641751, -0.009867119, 'seek')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010992111, -0.011613741, 'insecurity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009159711, 0.01937154, 'Projections')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01058919, -0.008540603, 'engaged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008335581, -0.00030317134, 'China')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009042869, -0.0014645818, 'Algeria')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010693402, -0.00889424, 'industries,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010256321, 0.0033250006, 'revision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009986372, -0.009794309, 'progressive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011160799, -0.0100968955, 'recognises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01044448, -0.008210627, 'forest,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007815263, 0.0045725456, 'Fiji')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008746845, 0.0018811963, 'Vanuatu')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010477525, -0.0016472832, 'implemented.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008426503, -0.0033992443, 'including:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007741677, 0.014621748, '(to')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01052058, 0.0074801156, 'Degradation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075865793, 0.010438738, 'KIRIBATI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008208067, 0.007859352, 'Planting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009564105, -0.00029224844, 'power,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008918117, -0.0009849383, 'parameters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009385355, 0.00061343075, 'Mauritius')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008796669, -0.0060135913, 'balanced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078090695, -0.001834797, 'by:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073600635, 0.00591817, '(or')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010473283, 0.0081075085, '21st')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009319584, -0.007858733, 'operations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111781955, 0.022571784, 'PNCC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009364816, -0.0068659666, 'demonstrate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008783416, -0.005286697, 'cars')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009980117, -0.0026980222, 'plantation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008907082, -0.0052176234, 'demonstration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006812289, 0.01331765, '4.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009064457, -0.007425951, 'timber')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007543997, 0.010648922, 'Future')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010771434, 0.017593237, 'Facility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010284881, -0.0039154654, 'change:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009967901, -0.0069318404, 'get')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00831691, 0.0030127978, '(without')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009660034, 0.018998241, 'Scenarios')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010785144, -0.006930751, 'vulnerability.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009793832, 0.012086556, 'ton')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00963362, -0.009914542, 'introducing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071255863, 0.008539081, '(1)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008882988, -0.008606636, 'answer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009982502, 0.004743302, 'summary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010246161, 0.013593879, 'Agenda')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010077371, -0.011182135, 'peoples')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009801873, -0.002505866, 'directed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074515366, -0.0012099976, 'secondary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009095893, -0.006207902, 'foreseen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007263497, 0.016012924, '"')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010464628, -0.012621306, 'rail')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009487244, -0.011577306, 'seeking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009409018, -0.008432121, 'companies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008722392, 0.00797966, 'CDM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00828027, -0.003027043, 'i)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010750957, -0.015284302, 'phenomenon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077361753, 0.0051906146, 'Drought')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009949917, 0.0053583365, 'start')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01105352, -0.006271055, 'priority.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010322333, -0.001616485, 'agenda')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007283604, 0.0066773775, 'Geographical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010782201, -0.016740369, 'pressures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010060254, 0.012092485, 'Partnership')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008197664, 0.017584337, '2.1.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008946639, -0.0011308393, 'tool')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010153434, -0.0058985413, 'governments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010454544, 0.013782623, 'Science')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008925754, 0.017159658, '2015)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008714671, 0.010162994, '75')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010807683, 0.005495514, '10,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011444301, -0.00015734695, 'detail')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008732929, -0.0054511908, 'today')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011363951, -0.011895548, 'challenges.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010900169, -0.01413763, 'capacities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009009654, -0.0053246967, 'quantity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010847191, -0.007097637, 'SIDS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068891677, 0.01669004, '5.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009585645, -0.011177644, 'accelerate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010271023, -0.0051183426, 'treated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008303435, -0.00431411, '\uf001')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008533649, 0.012382332, 'Uzbekistan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008858083, -0.0017795123, 'Major')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009691706, 0.008906326, 'Parameter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008724448, 0.01334356, '$US')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017851947, 0.024597421, 'AGREEMENT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010291717, -0.010006585, 'entities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010883822, -0.010552569, 'investments.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010363806, -0.009187379, 'changeability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009507779, 0.0004158029, 'Iceland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010336962, 0.0057327105, "Africa's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009836872, -0.011476403, 'link')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094692735, -0.0071707494, 'invested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009852999, 0.011017375, 'signed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010978086, -0.0061644297, 'transparent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009573209, 0.00091488764, 'Palestine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009563548, 0.004409876, 'GES,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010063215, 0.0074405484, '45%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009124855, -0.0012979705, 'Existing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009622441, -0.011739178, 'expanding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093144, -0.005716709, 'targeting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008548693, -0.0021394992, 'whereas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008488066, 0.012332124, 'Residential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010653696, -0.0099893585, 'term,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010050477, -0.00017719305, 'obligation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01573037, 0.021564964, 'INFORMATION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008890777, -0.008338203, 'moving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011270524, -0.013719969, 'issues,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01164443, 0.00021993948, 'consultative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009869754, -0.0056382874, 'mobilization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00993878, 0.000801159, 'Enhancement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010654425, -0.0075994115, 'financing.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007173333, 0.010058966, 'II.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010028725, 0.009349692, 'elaborated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008512894, -0.0035012048, 'biggest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00879319, -0.010515138, 'massive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009025552, 0.0036459193, 'Early')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010554352, 0.024407078, '2nd')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009443294, -0.00697929, 'composting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011185012, 0.028524397, 'GgCO2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008640487, -0.001934657, '(c)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00995189, 0.0002707153, 'beef')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008596846, -0.0060034185, 'e)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010110298, 0.00045409676, 'negligible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008502877, 0.016122235, 'Cook')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010911666, -0.008375419, 'institutional,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008386969, 0.0014065006, "Nigeria's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008730957, -0.005744048, 'via')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011530166, 0.012670539, 'Ministers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009426376, -0.010616473, 'overcome')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01328385, -0.0025144233, 'agreement.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00972545, 0.016865551, 'Prime')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010941146, -0.006178979, 'offgrid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088448245, 0.0033834227, 'GDP,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009391095, 0.0020601936, 'obtained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009733862, -0.009050924, 'them.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008534402, -0.000894977, 'subsequent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00907936, -0.009719738, 'doing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010258969, -0.010978562, 'upgrading')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008989773, 0.004186477, 'Burundi')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007040932, 0.010997187, 'Not')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00915861, 0.005844061, 'figures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009982034, -0.0033312635, 'collected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008425612, 0.009301393, 'Distribution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00982063, -0.0048017357, 'appliances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008145024, 0.011081111, 'Expected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007839744, -0.0028985522, 'illegal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01131064, -0.007560955, 'understand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010496182, -0.010836226, 'addresses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080140745, 0.003506611, 'measured')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072338413, 0.0029984585, 'i.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009036862, -0.005927073, 'placed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009482361, -0.009741207, 'larger')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010671856, -0.0095894635, 'occurrence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007075904, 0.0050884797, '▪')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008580428, 0.004284903, 'powered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008546943, 0.0027901551, 'Evaluation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010024372, -0.013013406, 'competitiveness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008982972, -0.009406881, 'leads')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010111597, -0.008251865, 'location')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012730878, -0.010832422, 'rainfall,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010434354, -0.007916858, 'capability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008744785, 0.015436872, 'Projects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014922367, 0.019273214, 'FROM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008803484, -0.010456241, 'often')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009067361, -0.007988234, 'size')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009968941, -0.006092815, 'nongovernmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009528284, -0.007635292, 'believes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010672633, 0.004647628, 'Afforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010062759, -0.011574298, 'species,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010375475, 0.0050461115, 'article')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009589608, -0.009695365, 'function')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009190784, -0.0050235465, 'Insufficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096858125, -0.012006357, 'migration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010488133, -0.0081080645, 'goal,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009290525, -0.0067097857, 'Ongoing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009295027, -0.001336419, 'meters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010811518, -0.0005075428, 'agency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008459291, 0.013164193, '(not')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010080551, -0.013313254, 'influence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010657625, -0.015485172, 'citizens')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008653767, -0.005289245, 'old')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010300892, -0.009485889, 'recognition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009308794, -0.0038089866, 'intention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012782366, -0.019695954, 'livelihoods,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009676393, -0.010388266, 'resistant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008698666, -0.008217108, 'cannot')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010587277, -0.0063453973, 'facilitating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007992784, 0.0068208743, '(3)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006966458, 0.017459283, '2.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008944493, -0.0054133926, 'classified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008152025, -0.0031168365, 'carrying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010005452, -0.005073895, 'sectors;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008380631, 4.8761773e-05, 'registered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082216, -0.0042728614, 'outside')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011509603, 0.01293213, 'Strategies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009380166, 0.02708614, 'Phase')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010146636, 0.00733692, 'Conduct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010856052, -0.011269694, 'transit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008297046, 0.01065712, '33')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009678923, -0.0101115, 'roads')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009776286, -0.006855826, 'supply.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008908539, -0.0029546143, 'requirement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010582503, -0.011631391, 'spite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009570773, -0.010294293, 'substantially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007964599, 0.009888712, 'OECD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008665113, -0.0039137914, 'energetics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010144375, -0.008341205, 'compatible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009535337, -0.005859442, 'expanded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009481925, -0.005117202, 'atmospheric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010748625, -0.0077558896, 'partners.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009504027, 0.016601115, '(million')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079738675, 0.0105717825, '3.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009290511, 0.011795369, 'emissions:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009634394, -0.010526105, 'climate.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107834535, -0.0075678146, 'action,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011519069, -0.009225036, 'security;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011090232, 0.021573463, 'Graph')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075776684, 0.012355178, '2.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010294781, -0.008800865, 'technology.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072008977, 0.010606241, '34')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079287905, -0.0013769302, 'Similarly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009308173, -0.012582709, 'goods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010122185, -0.0073750652, 'production;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010684453, -0.012854503, 'water;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009832234, -0.00945881, 'use.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010025691, 0.0061082966, 'Technologies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010763774, 0.019195957, '2040')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008954329, -0.008546396, 'marginal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078005926, 0.0049794056, ';')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009913608, 0.0077507165, 'km2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010244038, -0.013323935, 'knowledge,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01259004, -0.012247068, 'surges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008402755, 0.0061543426, "Lesotho's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009594618, -0.010025335, 'fodder')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009836104, -0.0087088235, 'imperative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011187115, -0.007899213, 'wind,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011228571, -0.015796931, 'invest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008088628, 0.018082762, '6:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008733325, 0.0106700305, '22%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010751153, 0.016588002, 'Transfer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008571192, 0.017826047, '(hereinafter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010332272, 0.02161983, 'O')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010571027, -0.001364449, 'contributions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009714911, -0.0031633147, 'end,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009957117, 0.018720577, 'Unit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009274905, -0.00829232, 'homes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011231254, -0.01041888, 'vulnerability,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012319435, -0.011041708, 'temperatures,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010347461, -0.0037015318, 'effect,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010397108, -0.00567234, 'short,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012234354, 0.021399299, '(NAPA)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009883832, -0.0010262042, 'undertakings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010845861, -0.0037768136, 'fuels.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009937354, -0.0026594773, "sector's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007544048, 0.013158069, '(by')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074113887, 0.00093826454, 'development')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008498217, -0.0016368198, 'gives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008087886, 0.010655133, 'Ukraine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082785245, 0.002576358, 'national')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009226342, 0.008104193, 'fiveyear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092542935, -0.0047751167, 'exports')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009002931, 0.013040667, 'Air')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00981038, -0.009966308, 'standards,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011888874, 0.021390421, 'IN')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008606778, 0.007779229, 'Average')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010248504, 0.005188736, 'Protecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009137746, -0.0025677704, 'programme,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009233276, -0.00061882904, '4%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009654376, -0.006292992, 'Identify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009739557, -0.011732829, 'accessible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009385927, 0.013304481, '1).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010725929, -0.010935481, 'indirect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010225977, -0.006062514, 'strategy.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008639082, -0.006330486, 'intensification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009885294, -0.006324761, 'studies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095067555, -0.004553146, 'scheme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009330684, -0.011460411, 'widespread')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102985995, -0.009697483, 'importation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008002104, -0.0030113277, 'consists')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011168107, -0.0066217664, 'biofuels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008877573, -0.0024968956, 'bulbs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010292761, -0.009953902, "nation's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009507656, -0.0021212483, 'Southern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073144627, 0.008598815, 'Of')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094198575, 0.006251662, 'periode')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078943, 0.0038809457, 'Regarding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008886796, 0.00021717083, 'attain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009229848, -0.007843303, 'reduces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00931873, -0.0069714887, 'clearly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008232418, -0.005632301, 'opposite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009209013, 0.004457094, 'definition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009150399, 0.021563493, 'Proposed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009433192, 0.011957515, 'Options')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0117276255, -0.010211479, 'inform')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010821948, -0.016949216, 'experiences')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008897333, -0.004082713, 'drivers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009873644, -0.00849942, 'people.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009479392, -0.004126069, 'data.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010290959, -0.013765193, 'predictable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009134189, -0.005180461, 'utility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009338212, -0.005836017, 'charge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010005614, -0.00998293, 'codes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009451381, -0.010844251, 'arable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01027106, -0.0043796683, 'manure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105907265, 0.021488339, 'STRATEGIES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007872416, 0.0069069797, 'X')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009402908, -0.0030975316, 'decided')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010509143, -0.0046936055, 'chemical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009193631, -0.010463138, 'fragile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008633365, 0.0054680863, 'post-2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009260531, -0.010203627, 'raw')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010563029, -0.002577456, 'contributions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105596455, -0.01100944, 'programs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009911669, -0.005438822, 'Limited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008952567, -0.0044533303, 'examples')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010484257, -0.0042132805, 'policy.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010077177, -0.011137652, 'lowlying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009656788, -0.011261196, 'modes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012891375, 0.015129861, 'Transparency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009487444, -0.010700741, 'variety')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009681546, -0.0040613976, 'organized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009527254, -0.0071830708, 'assessing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009624173, -0.007677117, 'agroecological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01114204, -0.01025783, 'include,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100157745, -0.013378381, 'children')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010888902, 0.013697081, 'covered:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008436742, 0.016792657, '1,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009584955, 0.0175927, '(2013)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010202256, -0.0058895526, 'vector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008725181, -0.011526996, 'free')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101267435, -0.0075570852, 'dam')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009388987, -0.006628808, 'accelerated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005478357, 0.0018683968, 'Tuvalu')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01151238, -0.01003852, 'awareness,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010224219, 0.022148691, 'Fourth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010073559, 0.0019927297, "Brazil's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009664257, 0.0015268187, 'Tropical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011664628, -0.016271306, 'reefs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011821698, -0.013102174, 'erosion.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009580184, 0.0023625284, 'category')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009639829, -0.012691381, 'medical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009845998, -0.0036612842, 'Encourage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089629, -0.0034094416, 'carbon,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009825841, -0.002920985, 'focal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00539118, 0.013148259, 'which')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009199613, -0.0011612909, 'members')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010625358, -0.0090139555, 'sub')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010166881, -0.009206775, 'attract')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008648281, -0.00033303158, 'Significant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010444246, -0.0062608444, 'mobilize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008112601, 0.0074774045, 'Efforts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012301633, -0.00681078, 'parties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007967206, -0.00312629, 'gains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00892632, 0.0033801333, 'Irrigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010128085, -0.007720205, 'promoted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008256627, 0.011569449, 'Lighthouse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008177183, 0.0055501005, 'Equatorial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007985223, 0.0023142032, 'head')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011337954, -0.008535332, 'mechanisms,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008565996, -0.0038044164, 'official')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01652392, 0.021811748, '(CH4),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009928315, -0.005445031, 'areas:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010842968, -0.018282099, 'to,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009561214, -0.0037673663, 'periodic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078143, 0.0013512493, 'Majuro')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009658097, -0.00337618, 'observation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008754637, -0.0047758142, 'budgetary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008098717, 0.0043796026, 'devoted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00880615, 0.0125001315, 'Regulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008976795, 0.00136739, 'scenarios,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01022856, 0.009677934, '1,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009586042, -0.009654498, 'yield')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009191087, -0.008524797, 'surrounding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009101192, -1.0727673e-05, 'formation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00935332, -0.014618277, 'remote')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010916098, -0.003443253, 'committee')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009246698, 0.020327574, 'Statistics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011342582, -0.013208649, 'pursuing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.015264447, 0.02366113, 'PARIS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009129454, -0.0009667517, "Indonesia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080068335, -0.001423085, 'which,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012559744, 0.008676483, 'Ministries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100988485, 0.01820691, 'Roadmap')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009474604, 0.0036092661, 'assuming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00828865, 0.0028826038, 'That')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010254414, -0.010965929, 'willing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105898995, -0.005029227, 'required.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01090698, -0.01249738, 'nations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008679721, 0.0062403353, '%)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094170645, 0.005785731, 'tendanciel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008780324, -0.008519887, 'gradual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009353682, -0.002719579, 'firewood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009420319, -0.008996391, 'reservoirs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112180635, -0.00623874, 'deforestation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010592492, -0.014062837, 'investing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010015785, -0.0005446901, 'reductions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00970636, -0.008868785, 'operating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008658948, -0.0011918971, 'offered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009079499, -0.00595626, 'farms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011483426, -0.0036994123, 'objectives.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008549899, -0.0043785684, 'lessons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008721249, 0.003159303, 'Animal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008211991, 0.0050233435, 'RDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008992385, -0.006020653, 'hand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009391984, -0.013550067, 'fast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078071556, -0.0004621285, '(and')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01106216, -0.0076267347, 'products.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008411187, -0.00046222392, 'flaring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091556115, 0.015683526, '2005.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009844046, -0.0049382467, 'accurate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012569693, -0.0069802576, 'temperature,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008002665, -0.0025770303, 'Another')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010499378, -0.012750771, 'experiencing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008890844, 0.0049123066, 'called')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008641931, 0.0015608759, 'workshop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009193705, 0.009371284, 'Installation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008500535, 0.011041647, 'm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00946348, 0.0106616635, 'Electrification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007885626, -0.00084147666, 'Within')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00886294, -0.0075624757, 'generally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009940209, 0.003462896, 'million,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009454141, 0.0048508146, '12%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008550445, -0.007940151, 'either')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01059614, -0.0143358875, 'freshwater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008591798, -0.00044519964, 'database')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009224673, -0.0042696097, 'actual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008897956, -0.0053327014, 'stabilization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008948739, -0.00027470096, 'Tobago')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007967922, 0.0064606033, 'Using')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010874035, -0.009549465, 'mangroves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00957078, 0.010149761, 'Meteorology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010777406, -0.012315118, 'housing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011190193, 0.009831406, 'Water,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068929475, 0.015874084, 'A.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009576699, -0.007675062, 'nuclear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008628415, -0.0013990831, 'followup')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009560111, -0.009734665, 'stability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009120909, -0.011254318, 'considerably')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010071421, 0.0006479091, 'above.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009535535, 0.008537571, 'Blue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010604567, -0.0060225604, 'action.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010287997, 0.00014959395, 'authority')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010003354, -0.010272204, 'rapidly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010744799, -0.00057227234, 'substitution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007269109, 0.00423298, '5)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012647834, 0.024824051, 'Fifth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008209172, 0.016969655, 'Plant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010948731, -0.010668295, 'sanitation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007909546, 0.014231953, '36')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009075461, -0.006478548, 'outer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00937809, -0.009479569, 'is,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101921335, -0.011666321, 'intrusion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009837692, 0.0010092524, 'quantify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011736629, -0.0104318885, 'transfer.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009242839, -0.009973489, 'characterized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01029247, 0.010316482, 'Priorities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00992864, -0.007235526, 'development;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008122635, 0.008500239, 'Constitution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009872439, -0.008753877, 'subsidies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009959696, 0.008867575, '100,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009243114, 0.0002599327, 'Kenya')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008905601, -0.0003705363, 'respectively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012494848, 0.0153266685, '1/CP.20,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010660203, -0.015820835, 'food,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008139457, 0.0028254734, 'defining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009349359, -0.0052608787, 'previously')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008509241, -0.0016663203, 'meetings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010926587, -0.009769938, 'transfers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012400061, -0.021090584, 'fresh')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011755902, -0.0138615025, 'storms,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010232922, 0.013354323, '2019')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009161955, -0.007423303, 'concept')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009085894, 0.00012566116, 'Atlantic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009542158, 0.0054798364, 'Kitts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008681918, 0.003438477, 'Physical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00931452, -0.0051845787, 'mandate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009405729, -0.0070643076, 'magnitude')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008732208, -0.007200706, 'eventually')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008558773, -0.00011753282, 'Guinea-Bissau')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009780875, 0.015995804, 'INTRODUCTION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009874799, -0.010968804, 'wealth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009247624, -0.007844307, 'users')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103183435, 0.0062661776, 'COP21')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008729678, 0.0013311912, 'tendency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009920291, -0.009231469, 'reuse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01146916, 0.0026956997, 'counting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010967129, 0.018083263, '2004')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009474183, 0.009252759, 'Funding:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009597798, 0.0072409613, 'Funding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007815142, 0.0020384314, 'Guatemala')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011850622, -0.016813291, 'training,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010407636, -0.009510282, 'manner,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01027852, -0.004934644, 'grasslands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008736527, 0.01950216, 'May')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009306935, -0.0031983275, "Belize's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.017277563, 0.02209907, 'CHILE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090276925, -0.0073829032, 'augment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009744085, -0.0081055565, 'agricultural,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008630473, -0.005146425, 'provinces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009269832, -0.0041440963, 'concentrated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010855504, 0.018124266, 'Intensity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088892, -0.0065092742, 'ambience')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008930664, -0.0005550398, 'forecasts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009935968, 0.013983843, "Moldova's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083683, 0.012384084, '2015).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008249211, -0.005077922, 'macroeconomic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01197614, 0.019039962, '2022')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009465488, -0.0004363571, "Grenada's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075075105, 0.005980262, '42')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074833627, 0.0105857635, '11.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01105023, 0.008825172, 'biennial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009687288, 0.0045265825, "Palestine's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010987799, 0.0068172617, 'Integrate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010600298, 0.0047976333, 'goal.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009534161, -0.0057892, 'variables')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010283284, 0.004877196, '75%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008978663, -0.010541638, 'banks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009589022, -0.0017963188, 'incorporated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008905155, 0.019123312, '2.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009466153, -0.004547984, 'reflecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009514861, -0.007410959, 'broader')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006681468, 0.0039547845, 'c.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009696983, -0.0026180376, 'emitting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00945173, 0.0063990825, 'Cooperation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009111198, 0.0005064774, 'marketbased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009576046, -0.00055746903, 'peak')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175783, -0.008811258, 'diffusion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009667043, -0.00816364, 'designing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009514462, 0.0086544715, 'RCP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009024399, 0.010668446, 'Estimates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008486262, -0.008225839, 'offers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010951671, -0.015851589, 'prone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007079861, 0.012538371, '12.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007924253, 0.0061815595, 'blue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009115817, -0.010475173, 'off')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008402274, 0.01150059, '39')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010504938, -0.009113426, 'alternatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098183565, 0.005328276, 'ha)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010249811, 0.018171484, 'Energy;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010475505, -0.009244421, 'conducting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012083933, 0.018451482, 'Decisions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009967554, -0.002197459, 'platform')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009469837, 0.0064272257, 'year)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848396, -0.0076035764, 'entirely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009161206, 0.0026611658, 'square')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011082201, -0.007003653, 'industry.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010373569, -0.0034390637, 'fertilizer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011752369, -0.008076874, 'responsibility,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010169872, -0.011894339, 'go')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010226692, -0.008154038, 'initiatives,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008219876, 0.011401378, 'Overall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010174892, -0.0036019846, 'days')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079254415, -0.0024936735, 'ii)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009910354, -0.012086079, 'fluctuations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069235843, 0.010871962, 'List')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010972908, -0.0027891775, 'use;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009387677, -0.005167402, 'determining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009306462, 0.017387785, '2007.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108929435, -0.00603382, 'guiding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007605692, 0.0054066204, 'Earth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077435845, 0.009313795, 'EE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109922085, -0.0047906158, 'updating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00849054, 0.0018011697, 'Bahrain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008104496, -0.007044951, 'extraction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014022041, 0.019523095, 'CO2-eq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009684728, 0.0013905824, 'Mongolia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010616706, -0.011105954, 'islands.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00957992, -0.010254064, 'quite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010650773, 6.44575e-05, 'frames')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009924429, -0.0075173895, 'gas.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107126115, -0.0012803208, 'planted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007222792, 0.0042984504, 'Each')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00887022, -0.0051468685, 'underway')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01160167, -0.011782931, 'landslides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008921069, 0.020978361, 'Planned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008523049, 0.014286115, 'Pilot')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009150705, 0.00566857, 'Emergency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011494475, -0.011033563, 'systems;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011700053, -0.019623077, 'rely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100887725, -0.009420412, 'collection,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670305, -0.0012137684, 'municipalities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011605608, -0.011929061, 'fuels,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071529304, 0.008545678, 'du')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008885766, 0.009724343, '0.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095111495, -0.009058003, 'minimal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099944435, 0.01217396, 'FCFA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010180881, 0.0071324417, "Uruguay's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01067832, -0.003767355, 'reafforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008417406, -0.004606367, 'isolated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00905084, 0.016399797, '(National')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010473572, -0.017759925, 'inadequate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074143973, 0.008065595, '(2)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845564, 0.0009683601, 'here')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010668838, -0.0052216053, 'shelter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649574, -0.009067616, 'functions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008316136, 0.0122699775, 'r')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010846853, 0.023279738, 'IPCC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009480475, -0.0067717354, 'Being')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010995793, -0.008685414, 'assistance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010549026, -0.010469399, 'inundation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009823678, -0.012933635, 'relies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010297822, -0.0119739855, 'evidence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009870317, 0.008644131, 'actions:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009628765, -0.009421583, 'greatest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010461639, -0.014598839, 'groups,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010987413, -0.013794337, 'community,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010340557, -0.011040173, 'involve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009225103, -0.007845724, 'save')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008246936, 0.004903822, 'Our')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009291762, 0.025477001, '2016-2025')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008924349, -0.0040920265, 'motor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009018591, -0.003033164, 'worth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090649715, 0.008741779, '(approximately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845571, -0.007446041, 'dynamic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008470684, 0.018848926, '7:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009951815, -0.004165012, 'conventional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008689105, 0.009890033, '(as')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098960055, -0.004019753, 'considered.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010775973, -0.008654667, 'vehicles,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105682155, -0.011384094, 'plants,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008061675, 0.0060265246, 'Following')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009595573, -0.0036871487, 'initiate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008528958, 0.021332862, 'Energy:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010661649, 0.017948397, 'CONTEXT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097551225, -0.0001584102, 'Madagascar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086636925, 0.0006755717, "Fiji's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011638696, 0.027984122, 'Envisaged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011087327, 0.013817997, "People's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930132, -0.0055566235, 'deterioration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009541202, 0.019952772, '4,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010228267, 0.0004945795, 'Rainfall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008025148, -0.001565679, 'news')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00850957, -0.0013763505, 'date,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009360183, -0.0003496866, 'Arabia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010480768, -0.006125445, 'energies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009949563, -0.0064378125, 'dependency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007501474, 0.0099240765, '32')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01192722, -0.020544894, 'quality,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011000178, -0.014342592, 'conserve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009488171, -0.0013033126, 'power.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007286982, 0.0024490734, '✓')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011079359, -0.009179018, 'cobenefits.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009668417, -0.0036504494, 'coherence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009673095, -0.010628657, 'sand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110308025, -0.015084615, 'crops,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011619673, -0.008823792, 'object')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010406598, -0.009648888, 'topics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009107867, -0.002083755, 'kerosene')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009620904, -0.0046274094, 'foundation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010712978, -0.0033898856, 'skilled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010464232, -0.01222985, 'tourist')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009473247, -0.0135605885, 'emergence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01013141, -0.0067333137, 'aspect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009315015, -0.009278336, 'core')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086599365, -0.0066887443, 'uptake')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00959432, -0.005411913, 'suggest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008811683, 0.009586344, 'Scale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007586292, 0.0028242918, 'Liechtenstein')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008558588, -0.0090522915, 'continuously')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008204057, 0.012406899, 'LEAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01005737, -0.0014669518, 'implemented,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008819704, -0.006914667, 'implies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011773022, 0.018859986, 'MtCO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006410334, 0.004885249, '(')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077933646, 0.012033726, 'Basic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009101051, -0.005230151, 'possibility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009007956, -0.008708649, 'producers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008642277, -0.0055128266, 'maritime')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009156792, -0.0064211646, 'concentration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008964973, 0.021002565, 'Map')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011354045, -0.018655924, 'pose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010355706, -0.0066400548, 'contingent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009955161, -0.009139132, 'preventing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008867283, 0.0051833484, 'Organization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009712665, 0.0048893136, 'drafting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010699094, -0.004037921, 'act')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009040534, -0.008403382, 'recurrent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092525445, -0.005254245, 'expects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009518942, 0.003902747, 'outlines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010692104, 0.02180078, 'US$)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010028273, 0.010598696, 'SNC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009848445, -0.012253498, 'supplies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100570405, -0.0051912777, 'cyclone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008587052, 0.0016173443, 'Tanzania')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008917292, -0.0049672923, 'elevation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009648884, -0.003269169, 'conditioned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008997135, -0.0065899277, 'closely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010869271, 0.0019326905, 'prioritised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077665825, -0.00029514878, 'eight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011382469, 0.02256944, 'MtCO2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012471697, 0.02111768, '(GWP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008519926, -0.007564288, 'fields')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009892696, 0.0057381038, 'below:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087407585, -0.0042926106, 'shortterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008391036, -0.009442118, 'seeds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008276974, -0.0025085392, 'pass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010540178, -0.0032057727, 'wastes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009756052, -0.013669118, 'competitive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008073202, 0.0075849257, 'Peru')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008409082, -0.0035012474, 'federal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070198365, 0.014808785, 'B.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011483982, 0.0196873, '1995')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010382407, -0.005390244, 'wet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010355783, -0.013470795, 'feed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009764545, -0.00944767, 'it.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009013057, -0.0028974356, 'accomplish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009395297, 0.006293768, 'Verde´s')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.020743927, -0.0026731028, '__________________________________________________________________________________________I')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010402502, 0.0028446033, 'NDC.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007929726, 0.010154392, 'Picture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011185915, -0.015669256, 'explore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010445533, -0.007666754, 'putting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008597373, 0.017815659, 'E')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008905809, -0.0016882962, 'Palestinian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011656755, -0.00011340869, 'western')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008695451, -0.0027858717, 'non-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009215093, -0.0052031158, 'Maintaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00837393, -0.006648461, 'freight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011037167, 0.017336799, 'MEANS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109178675, 0.013422418, 'Industries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009129402, -0.0096719125, 'simultaneously')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01198942, -0.015168891, 'equity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007841283, 0.0029478003, 'Venezuela')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010193918, -0.0030331581, 'liquid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060994294, 0.0091671925, 'Climate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090294555, -0.0064689172, 'usage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011732234, -0.017785894, 'affects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010554401, -0.008531723, 'investment.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009409858, 0.012461472, 'Preparation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062397323, 0.019739388, 'at')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009598196, 0.010129914, 'Design')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013148118, -0.00396261, 'transparency,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010153319, 0.004998901, 'Western')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010897031, 0.00029769083, 'fulfill')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009772992, -0.0017228848, 'allocated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097089885, -0.007635638, 'rehabilitating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009075732, 0.0017336147, 'station')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00931677, -0.006997909, 'looking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010963736, -0.01248652, 'sustainable,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009484359, -0.00048455154, 'gases,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010187682, 0.0015856578, 'cookstoves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010304445, 0.015156279, 'tCO2eq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008440171, 0.017546333, 'Demand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010251218, -0.0015044394, 'developed,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012279926, -0.009263799, 'decades.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011154576, 0.019847631, '(IPCC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008874258, -0.0056834077, 'parks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011199713, -0.004840996, 'reforestation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010526108, -0.0026657449, 'husbandry,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068012103, 0.0078737475, '1.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009088164, 0.019397814, '(2030)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008587084, -0.0074219108, 'whether')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009950635, 0.016976062, '(2012)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010438793, 0.016239436, '1998')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009378837, -0.0039703664, 'donors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010247611, -0.010384199, 'practices.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010062477, -0.017184973, 'cities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009280883, 0.0034050655, 'energie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009810966, -0.0010780531, 'body')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008871473, 0.0015490444, 'Addressing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008699257, 0.017342651, 'C')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010642516, -0.013487197, 'diversifying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010230295, 0.017977506, 'GIEC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008940344, 0.013199821, 'Charcoal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008914687, -0.003843595, 'territory,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009910708, 0.012452354, 'Accounting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011653425, -0.016509434, 'patterns,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008930804, -0.00032283735, 'emissions;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009813023, 0.00473718, 'projections,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009627162, -0.005592425, 'campaigns')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010881999, -0.002738529, 'Mainstreaming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010118613, -0.008523296, 'culture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009290476, 0.0004854052, 'emission,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009163988, -0.008689633, 'houses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009343233, 0.008667764, 'TNC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010500488, -0.0068878643, 'warming.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010325871, -0.004275861, 'prices.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00932095, -0.008802579, 'heritage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096719535, -0.0060578263, 'NGOs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009967025, -0.005479228, 'element')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009298767, -0.007326546, 'schools')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00971654, -0.0086298715, 'mineral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01092091, -0.009989775, 'risks.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009029359, 0.003712753, 'Access')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009729429, -0.004601737, 'Knowledge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010223555, -0.01568615, 'facilities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009111446, 0.0013652534, 'developpement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009658103, -0.0047618905, 'fact,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009825414, 0.008424703, 'annum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010142925, -0.014571797, 'factors,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009906199, 0.0032875284, 'finalized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010737303, -0.015422333, 'environmental,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009863065, 0.007743138, 'assumption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009083527, -0.0071860827, 'calls')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010621527, -0.014373395, 'negatively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00906675, -0.005493817, 'limits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01052205, -0.0066125453, 'government.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009385546, -0.0066598663, 'reforms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010580395, 0.024080912, '(Gg')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067507946, 0.012950878, 'Energy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010927756, -0.013079678, 'zones.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009900306, 0.0103673935, 'years)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009462727, 0.0013655309, 'Diversification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010866358, 0.007131807, '0%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010694073, -0.012110526, 'sustainably')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009165806, 0.009593041, '1000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009602771, -0.004192756, 'assisted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009119793, 0.0058810976, 'hundred')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010086236, -0.0013127477, 'risen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085114455, -0.00043406576, 'day')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009808333, 0.0039802752, 'nitrogen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010134342, -0.004559461, 'focuses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009650453, -0.009500856, 'factors.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009976619, -0.011151121, 'populations.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097161895, -0.009870294, 'conditions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007748663, 0.016275173, 'MT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009145607, 0.0033222777, 'annually.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009231324, -0.005124526, 'realisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009495673, -0.0041734003, 'coconut')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010256079, 0.01653803, 'Point')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010253474, 0.006103853, '2100.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006305551, 0.0063320957, 'Barbuda')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011457574, -0.011676344, 'degradation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010157544, -0.009222492, 'animals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01059721, 0.015221687, 'tCO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.02103198, -0.0026952, '_____________________________________________________________________________________________________')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065625417, 0.012904243, 'TOTAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011621271, 0.0061351154, 'inventory.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010374311, -0.002454203, 'mobilise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009879442, -0.009548479, 'regulations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098530995, -0.016254948, 'existence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109112095, -0.014535424, 'infrastructure;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008993433, 0.0125774415, '(relative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010551088, 0.01850636, 'Assess')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010215158, 0.010771693, 'Focal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007881527, 0.009657621, 'renewable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011166937, -0.004287462, '(agriculture,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007948861, 0.005136796, 'Colombia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103947595, -0.0058047716, 'grassland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009993582, -0.0070657246, 'options.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009540956, -0.0024655815, 'specified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008293134, -0.003061983, 'Several')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00866703, -0.0073288535, 'drive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010085637, 0.014248545, 'UNDP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011065777, -0.0046529407, 'decade.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010527889, 0.019774616, '(US$)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009146774, 0.016131455, 'Contents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009150738, -0.0008228007, 'pillars')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00870798, -0.00042430792, 'Establishing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008412047, 0.0052201063, 'metrics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011947439, -0.007103434, 'stakeholders.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009005361, 0.00063345727, 'hydroelectricity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010151308, -0.012197467, 'constructing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010259928, -0.00886673, 'aware')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008961971, -0.008499877, 'bodies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011494723, -0.0097011095, 'instruments,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010011581, 0.021521162, 'Part')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008239865, 0.010644972, 'Budget')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009027485, -0.008940594, 'daily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008499744, -0.0046591265, 'districts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008780431, 0.013893508, '2018.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009362635, 0.021820774, 'February')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009698651, -0.0010898414, 'Reinforce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009104171, -0.0047051227, 'fit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00972977, 0.003234275, "Switzerland's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009220694, -0.005530678, 'obtain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008934954, 0.007055047, 'Albania')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013049048, 0.015860507, 'á')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009726182, -0.005016264, 'campaign')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009001912, -0.0030556591, 'relationship')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010137938, -0.0054745395, 'organization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007656519, -0.0010864602, 'Also')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008385552, -0.0031690875, 'normal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092983, -0.0085131815, 'deficit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097126225, -0.0069004116, 'decarbonization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008413703, -0.003535768, 'Among')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009269633, -0.005929487, 'alone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010534534, -0.012755713, 'us')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010641509, 0.010560097, 'Management,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112744495, -0.0025613788, 'commitments.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075222612, 0.014229091, '5.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007467782, 0.011147413, 'GAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010619314, -0.007055529, 'highlight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009381031, -0.0016330801, 'adjusted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00968477, -0.0072537065, 'fire')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009957641, -0.009343392, 'overseas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009584624, -0.003141223, 'complement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008362224, 0.014360505, 'Declaration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009275853, 0.0019107695, 'announced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011406414, -0.008056087, 'adaptation;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009199024, 0.013469276, 'kg')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010536092, -0.008099071, 'economies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009147906, -0.0050896746, 'shared')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010217196, -0.009670904, 'terrestrial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011625728, 0.021010585, '2024')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008896016, 0.010765304, 'Risks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087091215, -0.0055188173, 'maps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009375529, -0.009178517, 'greatly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01151737, -0.012359459, 'cooperation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008401321, -0.0075075203, 'giving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009790891, -0.013592986, 'enough')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076768096, 0.017371057, ')')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009425687, -0.00083140464, 'execution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010095242, -0.005611403, 'interference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008484151, -0.0025164378, 'occupation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009516517, -0.006590086, 'principal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007601545, 0.001357324, '(4)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011928305, -0.01814164, 'hazards,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01028162, -0.0063893283, 'shade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087539945, -0.00030308648, 'as:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00857518, -0.0040194076, 'map')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008509392, 0.0007139267, 'Paraguay')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008260517, -0.0012261483, 'Lake')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011165838, -0.012638776, 'islands,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009542419, -0.00038271007, 'acts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008597925, -0.0075901956, 'of,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073723365, 0.0056584263, 'ii.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075737652, 0.01738951, '3.1.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010195644, -0.016675338, 'minimizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010060817, -0.009815894, 'inefficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011695848, -0.0004890862, 'ambitious.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009944649, -0.0088979285, 'biomass,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009973517, -0.007721048, 'programs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009687803, -0.0005988099, 'readiness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009345676, 0.003900231, 'Lucia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009071698, -0.006552467, 'However')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009301821, -0.009917784, 'logging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009850002, -0.003358951, 'strategical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009639189, 0.0007978298, 'subsectors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011257362, -0.011132825, 'biodiversity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008585203, 0.0065253987, 'Special')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008189795, -0.0063075544, 'pollutants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009244023, 0.0016738193, "Niger's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007071541, 0.010773212, 'III.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011461493, -0.0060959784, 'objectives,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010937175, 0.028710086, 'Per')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009157858, 0.0056374753, "Liberia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009023714, -0.0044152457, 'goes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010461857, 0.0049833884, 'report,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010657565, -0.0022876426, 'install')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010981275, 0.0026637567, 'NDC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009959968, 0.0029281157, 'Governance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087695755, -0.0046210815, 'grants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008404603, 0.0046214084, "Timor-Leste's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007877901, 0.007917881, 'Japan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008134109, -0.0050163344, 'sovereignty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112692285, -0.01048949, 'cooperation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009029245, 0.018224843, 'Sources')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009066521, -0.0048509724, 'limitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010107404, 0.012654251, 'Integral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010015348, 0.013377201, 'Transport,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010146612, 0.0011395457, 'Supporting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063073984, 0.016309254, 'target')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010411722, 0.0028824839, 'elaboration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009889114, -0.0055060745, 'regulate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008187984, 0.0059387526, '120')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073146857, 0.0051161735, 'electricity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009233461, -0.0030965162, 'demonstrated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009616992, -0.007396444, 'lost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007602216, -0.002398415, 'iii)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008667472, -0.00079161464, 'survey')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010579562, -0.01362109, 'relate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00842181, 0.006859528, 'Transformation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011209708, -0.012604469, 'educate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007843718, 0.017284432, 'Up')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009373591, -0.0066900095, 'widely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00848061, 0.016756449, 'Long')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011645895, 0.00044011965, 'Celsius')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008305921, 0.01843989, 'Indicative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008341737, -0.0037935863, 'RMI,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008839162, 0.005930474, 'NAPA,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009188266, 2.3857052e-05, 'mediumterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009982243, -0.006407256, 'southern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111721335, -0.011968267, 'innovations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008728902, -0.0059928317, 'site')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010253112, -0.011732557, 'productivity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009796816, 0.010182193, 'session')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010585383, -0.007871677, 'industries.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00796367, -0.002210482, 'puts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010930315, -0.011619961, 'combating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009281735, -0.0075577344, 'solution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009052775, -0.008649381, 'away')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012162619, 0.018800203, 'please')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008131449, 0.0017147014, 'Currently,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009678758, 0.00455595, 'Enhanced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009357787, -0.012116705, 'useful')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011358193, 0.01967667, 'eq.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089751, -0.008112362, 'conditioning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008628749, -0.0053665605, 'him')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010412808, -0.010653233, 'organizations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010963146, -0.008577567, 'effects.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010613389, 0.0009955066, 'gases.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009575678, -0.0031358525, 'accompanying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009090285, -0.00652841, 'demonstrates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009001688, -0.0104343025, 'decentralized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008403327, 0.013743714, 'UT-CUTS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008974436, -0.005671993, 'justice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009540421, -0.0046673836, 'biodiesel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008879447, -0.009415761, 'f)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007857005, 0.0070768227, 'Dam')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008679105, -0.004392733, 'town')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822996, 0.005947768, 'Cobenefits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063889176, 0.009119753, '13.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01000585, -0.010136358, 'terms,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088107735, 0.011573097, '2009,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009381537, -0.011035805, 'wider')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009908621, -0.009716273, 'applications')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009232293, 0.015642175, '2007,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011203482, -0.011109428, 'irrigation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007918218, 0.0058612325, 'Gaza')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009536148, -0.013815082, 'assets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010679449, 0.009726533, '900')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009662553, -0.014367306, 'insufficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00893318, -0.0003959568, 'Taking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009141353, 0.022085536, 'Projection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008678374, -0.008188748, 'load')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00963284, 0.005773046, 'Thousand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008326246, 0.013950348, '3,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010148021, -0.0010905928, 'century.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010417154, -0.0113172, 'zone,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009893185, -0.006405174, 'levels;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008959606, -0.003165851, 'maintained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008956579, -0.00033242532, 'showed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008530757, -0.009896786, 'cycles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010727409, -0.013556681, 'portion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009251039, -0.0089301225, 'Ensuring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010015252, -0.0024159125, 'collaborative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010634582, -0.006894971, 'acidification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008869186, 0.00010747493, 'wants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009325065, 0.010343744, '37%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008903224, -0.0055936775, 'consist')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010099921, -0.01118712, 'cooling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009238491, -0.010509585, 'stable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009277633, -0.0037804807, 'world,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009676151, -0.009041274, 'add')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008572256, -0.006160629, 'tertiary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008820363, 0.008157284, 'Buildings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077375453, 0.009024085, 'Big')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010607688, -0.0054609464, "people's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008762684, 0.008381309, "Australia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009234926, 0.01562955, '2013)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010573145, -0.016239893, 'roads,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005578311, 0.017953908, 'all')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008543217, -0.010927188, 'etc.);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0039987825, 0.004198154, 'GHG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008713799, 0.0045030136, 'Allocation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010061829, 0.021077788, '(2015)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010141608, -0.012306908, 'regions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010022549, -0.0030856556, 'analyses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008069389, -0.008213718, 'return')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008739805, -0.008095379, 'breeding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010021772, -0.01011732, 'instance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009751243, 0.006511084, 'describes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008929598, 0.0056088595, 'correspond')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011440048, -0.0074088764, 'assessments,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006341345, 0.0067163645, 'Whole')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008674503, -0.0054154014, 'subsidy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009187204, 0.01374359, 'Resolution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009197025, -0.006979488, 'begin')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008794263, 0.012675721, '(USD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011481419, -0.0074035157, 'needed.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009730925, -0.0034233893, 'wetland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009462114, 0.0005229197, 'Introducing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008421689, 0.0004912864, 'accumulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008510676, 0.01844478, 'Five')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105457315, -0.012026313, 'utilizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010944868, 0.00070446485, 'translation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007509364, 0.0021377217, 'outputs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009121864, 0.0176674, '2006.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010262541, 0.0050106393, 'Integration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010662823, -0.014331512, 'soil,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01150609, -0.010645157, 'technologies;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010615229, -0.008354326, 'vectorborne')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009272443, -0.0035171295, 'mobilisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010711053, -0.010344332, 'capacities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00899718, 0.006172996, '350')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010854352, -0.010126695, 'land.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009586307, -0.0060795504, 'grid.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009028343, -0.0064886394, 'destroyed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010579486, -0.014998816, 'productivity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01098463, -0.00668356, 'aquaculture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012097899, -0.015083097, 'livelihoods.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008832349, 0.004209245, 'La')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009525231, -0.0026358152, 'Improvements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009864589, -0.0038623083, 'electricity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006852093, 0.0024880304, 'd.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073779025, 0.012480531, 'S')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077181067, 0.0065208147, '\uf02d')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010097492, -0.007305399, 'organisations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009571953, -0.0013166132, 'removal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008929556, 0.011906528, '(2014-2018)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074811545, 0.0007595222, 'on:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009882256, -0.0018182743, 'landfills')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102633955, -0.0044805594, 'laws,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009766678, -0.0036521947, 'aspiration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012228447, -0.00991718, 'droughts.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102292225, 0.017597722, 'Red')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009558199, 0.0095341, 'timeframe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073024896, -0.0014447606, 'output')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010191411, -0.00012665777, 'Mainstream')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010959267, 0.006667413, 'Paris,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010209738, 0.001652647, 'wishes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008910036, -0.007601446, '(e.g.,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010302637, -0.008401032, 'cross')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01088223, 0.0059186667, 'billion,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008306598, -0.008271011, 'gradually')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009883216, 0.008304897, 'pursuant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009577664, -0.007963407, 'existent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010769643, -0.007005277, 'adaption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010550386, 0.008698661, '60,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010258918, -0.005497505, 'programming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009241675, -0.008278538, 'passenger')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010262117, -0.016255239, 'enormous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01064798, -0.006921425, 'politics,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008081554, 0.004515339, 'mitigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008795553, -0.001300012, 'Expanding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008720414, 0.00277348, "Maldives'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010886275, 0.02072037, 'Commitment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010958294, -0.01297344, 'investments,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009448213, -0.009210868, 'possible,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012522281, -0.016986178, 'landslides,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007973249, 0.005866861, '(up')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105456775, -0.007973769, 'habitat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009867723, -0.009853622, 'costs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009774746, -0.000962524, 'slightly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008073183, 0.020612814, 'D.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008668498, 0.007945088, '2035,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075107333, 0.0042286054, 'But')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843815, -0.0031811278, 'modeling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010028667, -0.008259747, 'mountain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010821641, -0.014494862, 'environment;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011609802, -0.012722486, 'integrating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076048626, -5.3578344e-05, 'Only')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008919406, 0.021380315, '"On')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009110386, 0.004537549, 'Include')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005244083, 0.0057811053, 'reduce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0042774403, 0.002349034, '0,0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008418501, -0.008252369, 'beach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011761813, -0.007226825, 'seasons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00913747, -0.004644866, 'rate,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009457353, -0.010002242, 'replacing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009392349, -0.009195534, 'slow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009845405, 0.011787834, 'Intention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008368323, 0.003079835, 'Continue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009485389, -0.0052574975, 'globally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00929149, 0.016598796, 'C0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010203353, 0.001400389, 'Africa,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008057278, 0.007834804, 'Alliance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104100285, -0.015189029, 'preserving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010271641, -0.0057554627, 'historic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008941898, -0.0044729626, 'R&D')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009508145, -0.013599688, 'Besides,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010842802, -0.016579472, 'property')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009855379, 0.0061710356, 'projections.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009043743, -0.01087632, 'abundant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009832456, -0.0021135989, 'analysis,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007822004, -0.0014597022, 'nine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009891114, -0.0076890565, 'consumed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007990066, -0.008548399, 'successive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009445412, -0.010651599, 'smaller')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086031575, -0.007977483, 'regularly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01101871, 0.002200433, 'website.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008983814, -0.0033718676, 'generators')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013489411, 0.023756664, 'Spanish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008294816, -0.008858777, 'e.g.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009902341, -0.0054987934, 'SIDS,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009895356, -0.007816195, 'generations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078858165, -0.0016151748, 'comprises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073871226, 0.017875228, '2.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00935681, 0.0050441455, 'Historical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008274687, -0.0059738583, 'malaria')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008494764, 0.009716538, 'till')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01007985, -0.0042046225, 'prioritize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077040493, 0.010943697, '180')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009954856, -0.0104747275, 'way,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010335948, -0.007674184, 'place.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008713299, -0.006522972, 'modernization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008395388, 0.012488622, 'Montenegro')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086888075, 0.00084374944, '26%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009874921, -0.003956576, 'pathway.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009083446, -0.006344333, 'multipurpose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007710867, 0.013268989, 'c')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011586635, -0.009740487, 'rainy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008737118, -0.0016116669, 'in:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008828772, -0.008743921, 'favourable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009247652, -0.006314681, 'builds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010390284, 0.009218645, 'dollar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009400333, -0.006747309, 'incentive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012645571, -0.011930501, 'flooding.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010462311, 0.0093995975, '5,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010048123, -0.013941709, 'dealing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010930813, -0.013265954, 'lying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103767, -0.008689334, 'habitats')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008954359, -0.0046161, 'perspectives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084716575, -0.0056539983, 'person')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011158732, -0.012136515, 'restoring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008927082, -0.005165508, 'hence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010482004, -0.010778581, 'prolonged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009796545, -0.0031184035, "government's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010511143, 0.0020518585, 'method')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0116432095, 0.007872136, 'authoritative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010350404, -0.0066635786, 'ecosystembased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009212225, -0.008235866, 'street')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094095515, 0.012589491, '2.5%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009151517, -0.004987033, 'winter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011700218, -0.01061521, 'partners,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009785143, -0.01197106, 'sense')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008891323, 0.011787303, '2025;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010080952, -0.015021544, 'cold')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009724438, -0.011624849, 'winds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077417125, 0.009888013, 'Association')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011220597, 0.0066612475, 'Monitoring,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008555163, -0.011187601, 'becomes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008881258, -0.0052406625, 'running')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009866678, -0.007244258, 'dust')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084983, 0.018030532, '3.2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011388573, -0.012796516, 'cyclones,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009030908, -0.0046252655, 'provincial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076807328, 0.017419951, '8:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008682269, 0.0023477697, 'envisages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083721755, -0.0013827904, 'continuation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072526964, -0.0024979748, 'border')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008438532, 0.0036688666, '33%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008910901, 0.01388459, 'breakdown')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078588165, -0.002557393, 'equipped')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008261046, 0.0043461174, 'Expansion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009533795, -0.0027626636, 'crosssectoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009246017, -0.008250417, 'therefore,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175723, -0.0055944407, 'utilized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076840073, 0.006005454, '(except')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007388036, 0.015817476, 'V.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012330635, 0.012353693, 'paragraphs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008066405, -0.004336117, 'always')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008985426, 0.00015239674, 'sector)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009679843, 0.00043628912, 'density')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012531658, -0.011974044, 'decades,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010502567, 0.018373987, '2001')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110396715, -0.009033102, 'variability.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010060663, -0.0051318067, 'nutritional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009110795, -0.01504762, 'deep')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076299766, 0.006949088, 'approx.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008590998, -0.005190859, 'dynamics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008905783, -0.005180461, 'explained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007529196, 0.013810534, 'SUMMARY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009611436, 0.0023712807, 'estimations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008762785, 0.018137677, 'Bill')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008101804, -0.0027236284, 'strict')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089668445, 0.007607105, 'Assistance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010965361, 0.012473378, 'equivalents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010629218, -0.014576918, 'agro')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008937845, 0.0014781383, 'translated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009478388, -0.011570435, 'features')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009776767, -0.008655375, 'changerelated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008957439, -0.0052762222, 'revenues')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008238944, -0.00017521981, 'brought')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010025422, 0.015132023, '1997')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082564885, 0.019077195, '310')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077876486, 0.0051461975, 'anchored')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009319233, 0.016034892, 'Activity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008282999, -0.0010704928, '(d)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009076876, -0.012549399, 'harmful')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008774574, -0.008845158, 'speed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008600685, -0.0017149647, 'Israeli')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006855457, 0.0096089635, 'Gabonaise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008993352, -0.011299666, 'functioning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009658454, -0.009287898, 'climatesensitive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009163839, -0.011859544, 'prosperous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009229131, -0.008019349, 'capable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008391042, 0.000568548, 'water')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00903372, -0.0051924107, 'coherent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009020519, 0.016972266, '(2010)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095741665, -0.006575882, 'entry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010046539, -0.012081901, 'littoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009189233, 0.0011665035, 'bases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011005316, -0.011722728, 'products,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008523252, -0.007823569, 'complex')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848702, 0.0025750075, 'assume')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009303432, -0.010779093, 'arising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008517552, -0.0081987055, 'personnel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0051425053, 0.011580555, 'has')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012648648, -0.010575675, 'floods.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009625956, 0.004550853, '(considering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008895472, 0.012990869, '2).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066456553, 0.011587469, 'C.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010739673, -0.0074465517, 'sources;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008934087, -0.008437528, 'predominantly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008400588, 0.011884614, 'Statement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012273808, 0.0031248922, 'negotiation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00944366, -0.0066826856, 'unsustainable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008769214, 0.0060208095, 'Provision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009229977, -0.0016625427, 'contain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012297053, 0.015598671, '(UNFCCC),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010738173, 0.0057238927, 'Fairness,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008171325, -0.0059875315, 'Without')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010062535, 0.010598838, '95%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009390962, 0.0029615592, 'Conducting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00740489, 0.002526821, 'Various')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007908877, -0.0020950767, 'towns')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010835537, -0.012874906, 'pest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009549977, -0.0063101705, 'consistency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006253413, 0.014926151, 'INDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010730615, -0.0031131336, 'transport)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010432089, -0.011481061, 'technical,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010075591, -0.006276367, 'activities;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009754641, 0.007169349, 'amended')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009610988, -0.00035033398, 'context.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010149215, -0.0094199395, 'rehabilitate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011504325, -0.013447462, 'variability,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008767343, 0.008022575, 'Vulnerable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009556735, -0.009079656, 'optimal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073922966, 0.015114156, '2.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010000905, -0.009367176, 'options,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008085159, 0.011637521, '41')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009598469, 0.003723514, 'State,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008865943, 0.0013413419, 'became')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010053816, -0.013819398, 'seriously')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011617388, -0.01051019, 'drought.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009298492, -0.01097846, 'ranging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009014655, -0.0026711111, 'sober')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010694477, -0.0138253365, 'markets,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009628103, -4.9241455e-05, "Ghana's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009249119, 0.004926414, 'accomplished')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008470647, -0.0010072773, 'sought')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008539753, -0.010271414, 'Because')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102597205, 0.003464568, 'details')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008149065, -8.3394756e-05, 'captured')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009765596, 0.00087952364, '9%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009442614, -0.009749302, 'payment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008770451, -0.0019528638, 'workshops')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009382541, -0.008682053, 'limitations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010550698, -0.013448264, 'safeguard')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099282395, 0.002320894, 'calculations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072565502, 0.0028938511, '(from')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012028999, 0.018826446, 'Informal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01222195, 0.012473296, 'version,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00877804, 0.01584285, 'Trade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008479687, 0.016274987, 'Represent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010935443, 0.018962266, '1999')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009270563, -0.00045875076, 'revealed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008792591, 0.0055612675, 'fixed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008895972, -0.0015811773, 'late')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009092918, 0.0011221681, 'energy:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009660158, -0.012049295, 'welfare')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008641347, 0.005187741, 'mission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008177689, -0.0018187608, 'independence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009337472, -0.008787319, 'concentrations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009768528, 0.0002168156, 'Government,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008395885, 0.003936271, 'weight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008710636, -0.0061777974, 'unprecedented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009747026, -0.0108813085, 'chain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008257793, 0.011504286, 'Costs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008625801, -0.008192695, 'continental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008535276, 0.0038298003, "Malawi's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008196389, -0.0021284656, 'host')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009957591, 0.003174178, 'Capacitybuilding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010278146, -0.0052017625, 'facility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007775426, 0.012562359, '2.3.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010053826, -0.010616541, 'species.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008528994, 0.0118264295, '450')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009839139, -0.004109407, 'energies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010140244, -0.008183334, 'incorporating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009445679, -0.010661614, 'pests')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007922982, 0.006324269, 'Value')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009405899, -0.007869806, 'professional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845812, -0.0018335255, 'counterfoil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010414076, -0.009021959, 'proactive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010292111, -0.001811423, 'alignment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008372405, 0.0024897011, 'chosen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008383365, 0.0129689025, 'GW')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01080233, 0.016246306, 'FRAMEWORK')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008190037, -0.0032506771, 'appears')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007982768, -0.00077904563, 'Make')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008701499, 0.009938677, 'Available')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008753277, 0.00667445, 'Alternatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009624031, 0.02036406, 'Work')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009425329, -0.011781779, 'mind')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009235178, -0.008096367, '(v)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009187113, -0.0058569354, 'marked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008944265, -0.0015437333, 'basis,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009101222, 0.007830697, 'GEF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007820562, 0.012174502, 'UTCAF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009903219, 0.006868853, 'hectare')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008828188, 0.00132478, 'earlier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073286486, 0.018080708, '1.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01135246, 0.022468766, 'Act,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00965038, -0.0043736445, 'enabled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011408268, -0.008959411, 'governance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010823861, 0.0041105486, 'document.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009886448, 0.0011353692, 'Government.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011098645, -0.017535914, 'stress')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009923452, 0.0061353333, 'Adapting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096432585, -0.0062343036, 'nevertheless')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012627377, -0.0048251073, 'agreement,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008765015, 0.017080879, 'Company')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009043605, -0.0047733732, 'company')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010174876, -0.0029286565, 'dialogue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00858816, 0.0145000145, '5.1.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008775244, -0.010585478, 'planet.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008952513, 0.0005637593, "Pakistan's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008437902, -0.001227345, 'garbage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009550537, 0.005338758, 'annum.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010276834, -0.010456822, 'ensures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010499982, 0.0030050385, 'Nino')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008539334, 0.007285409, 'Feasibility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009307888, -0.009184865, 'landscape')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009643558, -0.0011905296, 'analyzed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008203774, -0.0049237385, 'Egypt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008536802, 0.022468593, '2016-2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008965371, 0.01596746, 'Pursuant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010376274, 0.019256778, 'GtCO2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008501508, 0.0057685566, 'm3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079806335, 0.0053615686, 'implementation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009447074, -0.0027267493, 'M&E')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009332555, 0.010865036, 'Political')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00968727, 0.012883411, 'tCO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008952976, 0.0013347428, 'focussed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009952744, 0.011794777, 'Armenia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009012605, 0.010631617, 'INR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009622735, 0.01729889, '2005,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010048822, -0.011182864, 'empowerment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008053441, 0.0026258272, "Suriname's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007720738, 0.021445123, 'Model')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010151371, 0.004374457, '6%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009185767, -0.013260981, 'prevailing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011286646, -0.0047551407, 'forestry;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074460586, 0.00047187656, 'other')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070894463, 0.011538992, 'Moderate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01002006, -0.0015933713, "Myanmar's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068457765, 0.005456604, 'measures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010725565, 0.007896954, 'Fund.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012232641, -0.019230446, 'exacerbate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010100989, -0.009641067, 'impact,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011342541, -0.012425293, 'adversely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010106969, 0.013766737, '2020;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010529509, -0.004918074, 'aspires')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008131382, 0.009293437, 'Line')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009606181, -0.011629089, 'shortages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008777774, 0.015500991, '2014)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093701, -0.0060929926, 'offices')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010799839, -0.005338267, 'strifes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008720108, 0.0023424514, 'Consideration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649806, -0.010440135, 'obstacles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100438595, -0.014723207, 'harmony')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077657723, 0.009802984, '130')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009452226, -0.004613645, 'realization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010463618, 0.017690556, 'Sectors:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009279147, -0.0064917114, 'volcanic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096626505, -0.010660386, 'permit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009764178, -0.012743594, 'conflict')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009388176, 0.017556185, 'Horizon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010144012, -0.011195963, 'efficiently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008946123, -0.0066378117, 'incremental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008795091, -0.007115203, '(such')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077367667, 0.02182185, 'See')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011192145, -0.010917666, 'harvest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007979527, -0.006168259, 'kinds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00841257, -0.00514973, 'railway')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011074514, -0.0040712673, 'foresterie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008329987, 0.012492911, 'software')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009579084, -0.009189122, 'links')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009119134, 0.0043818564, 'MW.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649467, -0.01562296, 'consequently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010141723, 0.01771276, 'October,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009445584, -0.009288266, 'consolidate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007287893, 0.013191558, '(%)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009273191, -0.0067446027, 'insignificant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009689953, 0.015155242, 'Common')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009739855, 0.013766528, 'Progress')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011045061, -0.009257097, 'forests;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009464894, -0.005532979, 'level;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007938563, 0.0022637297, 'Gambia.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010843855, 0.0035139828, 'member')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008116495, 0.0055227047, 'efficiency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011612285, -0.012329972, 'hydro,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00999048, 0.0067339065, 'Nevis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008921822, -0.008991937, 'boost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008390409, -0.0031725713, 'operators')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00834747, 0.009747314, 'CFA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007825615, 0.003206012, 'Large')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.003870405, 0.002408414, 'Barbuda')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00939964, -0.0037164346, 'territory.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010470079, -0.0036914956, 'multistakeholder')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009931219, -0.0051897177, 'approaches,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006743152, 0.0148189785, "'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008397516, 0.009221203, '0.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009492783, -0.0017340401, 'e.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009668429, 0.0050843214, 'Achieving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010206248, -0.0019569674, 'SPCR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010969646, -0.009455387, 'entity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00931064, -0.0019010797, 'raised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085810805, 0.0031899144, 'bottomup')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008815064, -0.008596247, 'shoreline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011107713, -0.01877859, 'threaten')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099176, -0.009565317, 'residential,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008490144, -0.0070304517, 'reasonable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008938025, -0.007893179, 'country;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009477924, -0.012359708, 'essentially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100171575, -0.0025154548, 'cases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011142765, -0.007790696, 'assistance.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00994774, -0.01159406, 'facilities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010417942, 0.0035103047, "Rica's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008996302, 0.012522416, 'City')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072010043, 0.0050532343, 'dnd')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009551731, 0.000794076, 'master')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010520122, -0.0023395042, 'targets,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008765464, 0.0077666696, 'Longterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082459925, 0.002859019, 'pre-2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097936215, -0.009059142, 'chains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010214644, -0.009736354, 'barrier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009222312, 0.005922017, 'ratification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009151819, -0.0009861615, 'acquired')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010452888, -0.00860288, 'inland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009059282, -0.010207317, 'declining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009246591, -0.004267367, 'bet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011232612, -0.009598191, 'tackle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009398123, 0.020008313, 'T')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008912467, -0.0039496785, 'summer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011333899, -0.0038892985, 'fair,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010801685, -0.0016217744, 'ambitions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075433794, 0.011281299, '(Project')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091669755, -0.0031683885, 'Jordan,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008581719, -0.00090850866, 'Greater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009945281, -0.008610935, 'variations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010196798, -0.0044346773, 'fertilizers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112500815, -0.0013489198, 'Education,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010538147, -0.0095904935, 'activity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082752425, -0.0055725994, 'imposed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010596948, -0.011936421, 'prices,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010521304, 0.00429696, 'Health,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011641087, -0.009615182, 'decade,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091148475, 0.002795937, 'launch')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00862156, -0.0065597505, 'lakes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009958196, -0.009557596, 'diversified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008749551, 0.016432071, 'Billion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010187645, -0.015599797, 'genetic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010055775, -0.0050296206, 'realise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008817181, -0.0032746352, 'consisting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009334657, 0.014103127, '2006,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009708533, -0.0028437932, 'agenda.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007672037, 0.004267745, 'Kazakhstan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008928381, 0.0072130607, 'Activities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010611106, -0.015170459, 'suffers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009837246, -0.009667964, 'rests')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009364902, -0.004600053, 'Tarawa')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008016899, 0.0053410083, 'Middle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011082303, -0.012044255, 'involving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009842762, -0.0055251615, 'publication')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010091808, -0.013662999, 'construction,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009908568, -0.0050187088, 'costing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011102435, -0.003048992, 'communications')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009892718, -0.010922288, 'bus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010866319, -0.010958947, 'governments,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009663901, -0.008081377, 'inclusive,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008861146, -0.0058961124, 'school')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010372065, -0.008600225, 'drop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008259022, 0.011365305, '(excluding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01054236, -0.012035216, 'expertise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010230495, -0.011370119, 'productiveness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01147374, -0.0006707365, 'formulating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009903493, -0.007853164, 'expert')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00865106, 0.0030747987, 'Effective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00945762, -0.0123700835, 'charging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009902774, -0.009866718, 'pursuit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008531457, -0.0067829825, 'employed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009612819, -0.004693511, 'buildings.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008625109, -0.0020987217, 'team')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010111495, -0.008753166, 'demand,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008068934, 0.0033211736, 'sheet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009883461, -0.0019687212, 'emitter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010374198, -0.009895774, 'indirectly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086960895, -0.0030762984, 'village')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008438541, 0.003098123, 'accumulated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010209439, -0.012255622, 'roles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092147095, -0.0033315585, 'abovementioned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013347635, -0.004505435, 'legislation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007748216, -0.0015806012, 'RMI.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007652675, 0.010320177, 'Millennium')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008992106, 0.0010642438, 'measures:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009736311, -0.0123154875, 'threatened')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007479257, -0.003224864, '"The')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008211636, 1.6076026e-05, 'turbines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009488965, 0.016907213, '(2014).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007996539, 0.0009270285, 'purchase')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008074194, -0.007719737, 'respiratory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009157557, 0.00023540028, 'budgets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094719855, 0.005629565, '7%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0064189583, 0.0054661585, 'CC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009080005, -0.00023795692, 'attainment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008146442, 0.0067338697, '11%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00962119, -0.008168153, 'develops')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009403505, 0.0065583447, '2019.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008955267, 0.0088468185, 'Somalia.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01065573, -0.013293272, 'serving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011891318, -0.014234545, 'diseases,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010917461, -0.016681092, 'consequence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009589133, 0.002983668, 'project.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010257171, -0.014373048, 'suffering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008979886, 0.0013787375, 'Highly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009800617, -0.007488741, 'demands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010448085, -0.005377602, 'standing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008785797, -0.006241684, 'operate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009770933, -0.009103742, 'recover')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008531353, -0.009170383, 'extend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00811445, 0.01574456, '1.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010160834, -0.0015689555, 'waste;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010560844, -0.013928, 'maximize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008851064, 0.008387899, 'How')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010779872, 0.00050858734, 'framework.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009965775, 0.013579656, 'INDC:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010982645, -0.004162729, 'assessment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010858113, 0.010247261, '3,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089001525, 0.0010178119, "Nauru's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009580711, -0.01132847, 'consumers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009334323, -0.004566135, 'investigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009094013, -0.0046164803, 'alert')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008110833, -0.0064944266, 'loans')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073357266, 0.0029932614, 'Two')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008939298, 0.006162266, "Zimbabwe's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007951844, 0.0061077415, 'After')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00788583, 0.011226027, "Togo's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008553426, 0.008476929, 'statistics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009380905, -0.002734738, 'connection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00914769, -0.0070027574, 'switching')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009108376, 0.0015616794, 'hours')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009258664, -0.006672384, 'budgeting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008948869, -0.00995775, 'wells')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009407368, -0.009225167, 'necessity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008678227, -4.7106798e-05, 'separate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010593564, -0.009754282, 'warming,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008127581, 0.005462495, 'Foreign')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075254976, 0.015165635, '4.2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008539929, -0.006326779, 'Even')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008693934, 0.011949706, '140')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094103515, -0.016032975, 'family')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009122914, 0.013879637, '(CDM)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00908848, -0.0056810314, 'suggests')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008398331, 0.0020461609, 'republic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721856, -0.004504766, 'necessary.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014060594, 0.022891967, '(CO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008992987, -0.0028558907, 'vary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010106547, -0.013356169, 'sustentable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007597681, -0.0009324364, 'Mother')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009311161, -0.0065244157, 'cleaning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005568663, 0.010104316, 'use')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010114405, -0.0017133051, 'supplement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008411317, 0.010613968, 'Panama,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008138793, -0.005233608, '(both')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009194896, -0.0059746737, 'code')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008477603, -0.0067640785, 'comprising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077890446, 0.0005428054, 'Rapid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008760965, 0.004889563, 'Accelerated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009717735, -0.009761352, 'shocks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009720502, 0.001429247, 'discussed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008913249, -0.004934205, 'ranges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011402765, -0.010383905, 'academic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008530058, 0.013539889, 'Primary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008396458, 0.0063581234, '160')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008045796, 0.0012190971, 'And')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008745696, 0.011847094, '2008,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010044771, -0.0022085614, 'prioritization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009733442, -0.010405028, 'cities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010614173, 0.0047658375, 'amounting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093655465, 0.002035158, 'KJIP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008641506, -0.0045389086, 'learned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010640255, -0.0027193055, 'effort,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008731142, 0.0025954032, 'Ambience')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009904283, -0.009337608, 'poorest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010086791, -0.0037327944, 'sink.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011407858, -0.010060446, 'conservation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007363039, 0.012855757, '4.1.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009593123, -0.009364669, 'seawater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008740585, -0.0045282855, 'publicprivate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00868898, 0.008451531, 'Standards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008974355, -0.0002634753, 'Socioeconomic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670324, -0.0023829695, 'Djibouti.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008133259, 0.015170795, '5.2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010088869, -0.00539466, 'receive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009790995, -0.0009728483, 'average,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008173094, -0.0031520375, 'comprise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008994331, -0.005211978, 'she')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008286988, 0.0105728945, 'Alternative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009485152, -0.007981214, 'reasons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00882523, 0.012975891, 'Condition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012193297, 0.01681908, 'UNITED')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009750024, -0.005574298, 'mix.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009615492, -0.0008182503, 'call')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010176925, -0.0019004254, 'declined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01041698, -0.006466313, 'sum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00947763, 0.0038588997, 'quantification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008204481, 0.0066327536, 'Australia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007628214, 0.013653095, '43')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009960134, 0.0134615, 'Direction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010081056, -0.0038548268, 'achievements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096856505, 0.02046021, 'Combat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009229194, -0.0043075997, 'model,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009711624, -0.0074340394, 'damaged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008326164, 0.009516429, '46')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009461406, 0.0026008217, 'Ecosystems')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008850415, -0.010536629, 'instead')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008028544, -0.0065597435, 'sanitary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012647923, -0.009973468, 'funding,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010055575, -0.00968173, 'urgently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009957648, -0.0041639553, 'populated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00867663, -9.829906e-05, 'divided')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008922636, -0.0108935, '(especially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010146428, 0.0024275854, 'NAP,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011393413, -0.005190141, 'commitments,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009393403, -0.008638439, 'avoiding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010738808, -0.017576195, 'life.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012141193, 0.016975453, 'ENVISAGED')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009020068, -0.0066350047, 'thematic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009937322, 0.015994871, '2002')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008722394, 0.005577748, 'Geothermal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010822446, -0.0058350326, 'institution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008942115, 0.00036782422, 'activities:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008834549, -0.0032746096, 'PV,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010531195, 0.014438561, 'Scenario,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008903521, -0.0071636178, 'mode')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009744808, -0.012505532, 'favorable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010327769, 0.018962901, 'CH4,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008514633, 0.015371678, '2010)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009462127, -0.012236246, 'adequately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012377466, 0.016749145, '(UNFCCC).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009561126, 0.007253876, 'stipulated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008867428, 0.0020043007, 'defines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009187918, -0.0068719243, 'professionals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009575825, -0.006020758, 'reality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010460979, -0.002657198, 'hectares,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010325364, -0.006158288, 'required,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010920256, -0.008913881, 'lands.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01011301, -0.009223949, 'linking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009102577, -0.00464754, 'meant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010654254, -0.001740563, 'incineration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010883514, -0.00046738132, 'average.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009243685, 0.016702883, 'Approximately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011690121, -0.001167304, 'communicating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007800036, 0.013460803, 'Note:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009607815, -0.008599185, 'port')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011371614, -0.016221777, 'availability,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077533475, -0.0042391, 'stand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008706101, 0.0042758514, '24%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012043622, 0.020240013, '-INDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105408905, 0.0017618192, 'revise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008424736, -0.004071071, 'villages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010772706, 0.0057943575, 'Preservation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008629966, -0.0044247108, 'moderate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008247728, 0.010151531, "Japan's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010661616, -0.006058487, 'cover,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009027725, -0.0017687831, 'periodically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008837781, -0.0067377277, 'why')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007145859, 0.009667337, '6.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008806392, 0.010933174, 'Marino')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008048342, 0.009020684, 'Service')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009829966, -0.013748715, 'transform')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010008422, -0.008835602, 'topic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084440615, -0.008397972, 'eliminate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00866202, -0.0044172276, 'shipping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00832876, 0.0044808304, 'Certain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007940311, 0.001378652, 'Israel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009484905, -0.010687471, 'market,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009302598, -0.0059585595, 'climatic,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009462577, 0.005684116, 'Prevention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00694331, 0.013302653, '4.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009660948, -0.008152039, 'one,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009932191, -0.0076659797, 'determination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008653198, -0.0049103578, 'device')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007994864, 0.016441572, 'CM2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008258613, 0.0057384986, 'Provide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009047063, -0.0064119846, 'footprint')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008337844, 0.0102100335, 'Civil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008568089, -0.0007724907, 'presenting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093693165, -0.00752684, 'onset')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009681062, 0.008823509, '500,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072121937, 0.0030693742, 'through')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008733473, -0.004351047, 'bulk')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00855561, -0.0038171299, 'Employment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008395885, -0.0064216596, 'left')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006513085, 0.0018379972, 'public')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009445411, -0.004232148, 'record')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008271509, -0.0060042883, 'offshore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009432335, -0.0020821812, 'Guinean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009194504, 0.0012041633, 'Hurricane')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010105534, -0.016609715, 'difficulties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009266106, -0.010590603, 'matters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113193905, -0.016990023, 'sustaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072093545, 0.013529415, '5.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076851146, 0.00975498, '64')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009147974, -0.0043803467, 'ha;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009661791, -0.006288702, 'steady')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011390369, -0.013090479, 'pattern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009107094, 0.0062831417, 'Wildlife')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099137835, 0.0047826325, '8%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010828098, -0.00864074, 'available,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011576429, -0.005203768, 'commit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010425818, 0.0123589225, 'Lands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008507159, -0.0005705496, 'nationwide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009126579, -0.010692111, 'aquifers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008819445, -0.0072886827, 'watersheds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009015814, -0.0019249178, 'landlocked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009335703, -0.0064205574, 'ratio')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009547169, -0.010702725, 'lot')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009850481, -0.0054755486, 'relevance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011238729, -0.016775558, 'did')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009323665, 0.012021766, 'Division')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010285881, -0.007210365, 'informal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009069048, -0.004988169, 'transformational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008095175, -0.0038975445, 'themselves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009967993, 0.011353732, 'Strategical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010103909, -0.0072934637, 'posed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109944055, 0.003150157, 'calculating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009210462, -0.0105202235, 'nor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009030141, -0.0016133774, 'programme.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010693312, 0.0084631005, '32%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013315102, 0.018286956, '(N2O).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010002544, 0.006377662, 'LDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011777947, 0.0085100485, 'Facilitate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008147667, 0.0009001702, 'generation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00890826, -0.007715061, 'routes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009304623, 0.021483758, 'September,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070318324, 0.021508891, 'Palau')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670919, -0.0074150814, 'compost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009241893, -0.000674645, 'grids')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009518042, 0.0031629289, 'counted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00818227, 0.0028778517, "Liechtenstein's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085078, -0.009049461, 'favour')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004064605, 0.008228235, 'under')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009803455, -0.0014027411, 'Kiribati.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00538629, 0.009072794, 'this')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009643584, -0.009210729, 'adjust')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009047061, 0.0071931654, '14%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009742641, -0.009755977, 'aquatic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010372391, 0.011840534, 'Atlas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009556043, 0.004230269, 'Ecosystem')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008462432, -0.0062399623, 'underground')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008520268, -0.0080376165, 'bush')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009842792, -0.01261239, 'shortage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107863005, 0.015281947, 'Approaches')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010223688, -0.009128182, 'attack')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084843775, -0.0023619528, 'measurement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008508327, 0.0043845316, 'Crop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009064838, -0.0077163656, 'valuable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008090324, -0.001983234, 'usually')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01051929, -0.0013050723, 'Understanding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010153133, -0.0014354858, 'party')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009920287, 0.019107757, 'Region')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009099957, -0.007863687, 'grant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009053168, -0.001560985, 'administration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009545703, -0.014418688, 'spaces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009933932, -0.001842578, 'reductions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011220555, 0.008528917, 'submitting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009210701, -0.007814094, 'dimension')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097262645, 0.003074098, 'capita.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01062709, -0.012778182, 'extremes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008004294, -0.0052086664, 'duty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008187849, 0.0045414465, 'aviation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008784465, 0.00039158177, 'When')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01000967, 0.003060973, 'updates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075057363, 0.001014457, 'iii.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010711686, 0.009411894, 'Foresterie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008460666, 0.015456255, 'Interannual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008050282, -0.0025670633, 'Nile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010328836, -0.010091302, 'diminish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00996322, -0.012630881, 'techniques,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008962318, -0.00680021, 'topography')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008460401, -0.005411712, 'lamps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009473812, 0.012917967, 'Platform')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009748977, -0.008715172, 'cutting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008788039, -0.006729021, 'centralized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095077045, -0.0036260488, 'oversee')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086616725, -0.00368935, 'neutral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008487805, 0.0039407276, 'picture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008629907, -0.008439624, 'engineering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009799829, -0.0017100945, 'case,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010013733, -0.003856524, 'scaling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093913805, -0.010243865, 'grounds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011805131, -0.0021461751, 'ministries.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008050664, 0.0054889303, 'cubic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010347136, -0.0070448266, 'system;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012579518, -0.00833013, 'legal,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009588395, 0.013898826, 'Estimate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010520246, 0.0046677506, "Norway's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010021596, -0.0058934037, '(very')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009268354, -0.009224554, 'cases,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010238982, -0.0100148935, 'potential,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00954961, -0.0016036675, 'monitored')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007678911, 0.007065409, 'Recommendations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009844279, -0.012704535, 'grass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00868496, 0.0011933533, 'respectively,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009634823, 0.004284144, 'PPD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009134839, -0.0011821553, 'Zambia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009556996, -0.0111214025, 'place,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008761512, 0.015190697, 'UNDP,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010785399, 0.0008947542, 'INDCs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011634163, 0.0017815994, 'ministry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010889954, -0.0007161361, '(SIDS)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009776258, -0.0020499523, 'refine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009212998, -0.0037299613, 'pumping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065800454, 0.010767015, 'reduction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009546097, -0.00502481, 'functional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009189576, 0.0034678758, 'Adopt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009036136, -0.004397661, 'flexibility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009439918, -7.5105934e-05, "Zambia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008041781, 0.007572925, 'Marshall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011619494, 0.0068780477, 'secretariat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008852741, 0.01519762, 'Definition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011297161, -0.0034535986, 'stove')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0043218154, 0.020098124, 'was')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0056272564, 0.013138703, '₋')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010128572, -0.011825991, 'equipment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009325522, 0.017512502, '\uf013')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009364155, -0.007267689, 'eradication')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010826382, -0.009477127, 'biodiversity;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073407744, 0.01173939, '4.7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010101007, -0.01177288, 'for,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008045921, 0.008652219, '4.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008699696, 0.013612648, 'Biogas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009533704, -0.00454388, 'sectorspecific')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00923064, 0.00058457826, 'representation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00844069, -0.0040894775, 'again')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010789048, -0.006577113, 'educational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009574723, -0.0032243878, 'alleviation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009203761, 0.0037401507, 'Construct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008718825, 0.02099125, 'NA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009567066, 0.010448337, '5000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848745, -0.005243006, 'archipelago')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090372255, -0.010413657, 'harnessing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009339903, -0.010277362, 'travel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009577637, 0.017352903, 'DEVELOPMENT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538589, 0.009329147, 'Adaptive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009098548, -0.008775246, 'families')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008767381, -0.011058202, 'intensify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077181384, 0.012360044, 'Entire')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009541523, 0.014315504, '2),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008153576, -0.0004999353, '(low')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010417058, -0.0076106284, 'highlights')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008088053, 0.00015379603, 'ha.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009187874, -0.0076079583, 'design,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01297773, 0.019906508, '(CH')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008816432, -0.00535418, 'run')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008735855, 0.019467914, 'Popular')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010416685, 0.014461281, 'Marked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010669161, 7.6977965e-05, 'align')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010130676, -0.00902202, 'decoupling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008155744, 0.009793964, '750')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009318455, 0.014564646, 'Trajectory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009984561, 0.0074277604, 'scenarioes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008642547, 1.0260262e-05, 'namely:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00828198, 0.008576938, 'Requirements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009958035, -0.012110133, 'reverse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106572565, -0.0035515286, 'fuel.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009158048, 0.0022543909, 'LED')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011180498, -0.0072225425, 'capacitybuilding,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009524189, 0.0029817373, "Cambodia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009987234, 0.002147992, "Iceland's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008447917, 0.0094789425, 'Basin')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012793716, 0.016844925, 'Protocol,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009531396, -0.008274852, 'leverage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009382802, -0.008597397, 'shares')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009389377, -0.007849535, 'reinforcement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012313155, 0.020708015, 'Report,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009610111, -0.010904946, 'storage,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009819797, 0.009837766, 'Fully')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077142995, 0.013854671, 'SF6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009167731, 0.00033523462, 'thousands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00915329, 0.0034897218, 'initials')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067955256, 0.010621289, '7.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009029544, 0.0039235665, 'CPDN,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087963985, -0.002282912, 'Providing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009634908, 0.0096894065, 'Document')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007845048, 0.008345377, 'Towards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007664027, -0.006501974, 'beaches')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011499409, -0.011160986, 'challenge.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009384942, -0.006505935, 'state,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009610291, -0.010995982, 'shifting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082739275, 0.016969802, 'Tons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008126987, 0.015367925, 'CM1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009146543, 0.005037108, 'NCCC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011099047, 0.00020938282, 'commitment.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010222914, -0.0016817846, 'enteric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009754873, 0.011091381, 'SOC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011137851, -0.011127733, 'practices;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009328278, 0.0051696887, "Jamaica's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009799505, -0.007677323, 'utilize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009266514, -0.0052003986, 'adjustments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009818499, 0.0036495822, 'Participation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008669323, -0.0006370466, 'portfolio')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009507459, -0.0055783507, 'standards.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076928604, 0.0048162364, 'Concerning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080890935, 0.0028878136, 'roughly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010645831, -0.0062918584, 'mechanism,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091656735, 0.0071846093, 'Uruguayan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009361144, -0.0027656015, 'slight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009924296, -0.010067307, 'characterised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009325766, -0.0076855063, 'easier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009552393, -0.009920635, 'bearing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008570128, 0.0024480089, '"to')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009982937, -0.0016507839, 'identified,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01167357, 0.006169306, 'aggregated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008559178, 0.0014514773, 'drawn')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109026125, -0.012686661, 'ecosystematic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008659351, 0.016343443, 'Set')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009750446, -0.005503065, 'incorporation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010178852, 0.017730959, 'N2O.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008099644, 0.0020265558, 'phases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01069571, -0.020409105, 'as,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00980521, -0.0041387635, 'reaffirms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008680488, 0.008041012, 'chaired')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008210895, -0.006144502, 'mortality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010105782, -0.009801971, 'foster')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009864747, -0.011212197, 'desertification,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010431288, -0.0102774175, 'equipment.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009817189, -0.0046032737, 'variation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008903389, 0.0008357375, 'translates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010385745, 0.013674605, 'DEMOCRATIC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010244575, -0.00841208, 'waves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008893206, -0.0012511188, 'laid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009258489, 0.020064088, '(2011)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010183689, 0.016645094, '100-year')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073714727, 0.01188147, '4.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009112778, -0.0068971612, 'hopes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00983901, -0.0033782548, 'century,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008939822, 0.0029008728, '85%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00068783184, 0.009838952, 'p.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009191287, 0.018475, 'Draft')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008786678, -0.00925882, 'them,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009176398, -0.0056719114, 'scale,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009686989, -0.0073522865, 'pursued')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010462899, -0.0129280975, 'rivers,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010050694, -0.0102054505, 'evident')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007836496, 0.006995893, '95')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009172764, -0.0002318821, 'Extreme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009729777, -0.009659763, 'transitioning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00861517, -0.00024334785, 'Indeed,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100736795, -0.01085701, 'sinks,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845104, 0.008588541, 'Somali')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011728098, -0.013826107, 'innovation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009778505, -0.0013506885, 'cent,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009141408, -0.0055516474, 'newly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010992812, -0.015083684, 'securing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009330269, -0.0021465037, 'desired')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079426905, 0.009014212, 'Alleviation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010111094, -0.006391447, 'spent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007997353, -0.0022815636, 'sugar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01023887, -0.0056595583, 'participating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008543407, 0.013168932, '2011).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008813945, -0.0046215644, 'originated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011281578, -0.008429008, 'afforestation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009664104, 0.014205251, 'AR5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072599347, 0.014090814, 'III')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009263903, 0.0043381825, "Thailand's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008647527, -0.006789544, 'said')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009305913, -0.0033153791, 'Raising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088280365, 0.007122682, 'Percentage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008025891, 0.0060761855, 'Recent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011651991, 0.016631868, '(NDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008437604, 0.017342877, 'Submission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009279816, -0.010064786, 'upfront')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009275293, -0.010938589, 'dengue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010314618, -0.0153124975, 'ever')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075818347, 0.014014063, '5.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007519069, 0.0064277984, 'Fanoole')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011511244, 0.018750012, '2026')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009276225, -0.00095497846, 'content')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010122859, -0.015487849, 'empower')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011398555, -0.017379083, 'salt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007850895, 5.7310823e-05, 'So,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010260826, -0.008113852, 'measures;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008736786, -0.006459032, 'evaporation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010321358, -0.007539079, 'cooperative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008500746, 0.007911463, 'endorsed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848065, -0.010175052, 'equally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010306487, -0.01081293, 'nutrition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006985386, 0.0076698945, 'Mozambique')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010590382, 0.0049914587, 'Somalia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009938047, -0.0121443905, 'urbanization,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008272274, -0.00057579076, 'Thus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008069222, 0.00455304, 'took')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008404214, 0.0042212405, 'tables')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009641053, 0.010141953, "Samoa's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080155125, 0.01621998, '37')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009789858, 0.0051609245, 'peatlands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008646894, 0.010884841, 'Wetlands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010237033, 0.00860741, 'annum,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008482258, -0.0054529766, 'climatic.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007231085, 0.006999981, 'So')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010190154, -0.005550736, 'meets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01021452, 0.021133885, 'AR5)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008465295, 0.018540133, 'R')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184382, 0.0039226953, 'Africa.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008114139, 0.0058135837, 'Bank)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008946412, -0.0015017049, 'converted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008907806, -0.006030658, 'cropping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007338857, 0.005907768, 'Share')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009242328, 0.006594089, 'litres')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009480836, -0.0057682213, 'energyefficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009761455, -0.013595677, 'disseminate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010189579, -0.0010877651, 'served')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010092063, -0.008722986, 'search')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008720765, -0.0014334283, 'butane')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930186, 0.0020592166, 'implementation:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009782042, 0.002562576, '2oC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009946397, 0.0012318926, 'Guinea,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010035636, 0.002372693, 'percent,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072994907, -0.0010642932, 'of!')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076143364, -0.0011663268, 'capacity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009066263, 0.014107149, '2009.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010856543, -0.010712244, 'progress,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073598986, 0.018549137, '3.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008933758, -0.00920371, 'channels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009533445, -0.005474776, 'embark')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010258535, -0.014695624, 'predict')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073321685, 0.008119322, '\uf076')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085858675, -0.0057140915, 'perennial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085474085, 0.0006886586, 'that:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009340222, -0.007554141, 'dominant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009995949, 0.0044367174, '0.1%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00785087, -0.003194261, 'check')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009001557, -0.008188254, 'semiarid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008711863, 0.00043581272, 'issued')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008772648, 0.006936989, '38%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011133729, 0.022780024, 'DATE:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011679336, -0.0057058916, 'frameworks,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009106962, -0.0104370555, 'conditions;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009801681, 0.0014367395, "Bangladesh's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094806645, -0.0006859445, 'worked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01118094, -0.007265685, 'industries;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008059613, -0.005150547, 'possibly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009632142, -0.009284681, 'locally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008032251, 0.0056036147, '(about')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088701015, -0.011522859, 'combine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009996435, -0.0074852384, 'secured')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009892708, -0.0052874847, 'confidence).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009709243, -0.006513616, 'observations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009131197, -0.01091001, 'consensus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00991603, -0.0057151904, 'looks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077399407, 0.01445368, 'Ha')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008336636, -0.0027622448, 'helped')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009357959, 0.0101800915, 'USD.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010976615, -0.0085783135, 'cost.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085172625, 0.008394013, 'Metropolitan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009694796, 0.01865231, 'Nationale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008957785, 0.0014404722, "Canada's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077704135, -0.0021202068, 'fauna')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010999956, 0.012445787, 'Mitigation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007616677, 0.018712305, 'J.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010539444, 0.006976015, 'Adaptation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009428685, -0.008468385, 'sensitization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010422945, -0.0144797815, 'desert')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011074853, -0.014516586, 'mangroves,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009796875, 0.007651017, 'Funds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007947759, -0.007462996, 'illnesses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008715467, 0.00074111356, 'euros')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076962262, 0.011583398, '2017-2021)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008004073, 0.003924806, '6)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009708664, -0.00854968, "population's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008475502, -0.00518909, 'micro')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009108161, -0.0020050104, 'attributed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008297012, -0.0038466356, 'kind')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008717009, 0.0034082558, 'Quality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007870177, 0.006123271, '23%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008605664, -0.0057102535, 'new,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010478608, -0.008830271, 'interventions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010546726, -0.01683034, 'opportunities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007232933, 0.010111961, '55')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007744756, 0.013668914, 'RESOURCES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008450709, 0.0066761877, 'Achieve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011183764, -0.0070469077, 'season.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009908696, -0.0025874893, 'Groundwater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008760774, 0.017279394, 'Years')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009881951, 0.0042450656, 'Treatment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008484909, 0.0058668475, 'Expand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00801475, -0.0027712216, 'downstream')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012127723, -0.0068580117, 'agencies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008883626, 0.010897647, 'Asia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107113505, 0.012394, 'Protect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010072716, -0.011734216, 'means,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010420215, -0.009030422, 'vulnerabilities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007246068, 0.006647985, 'About')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009737838, 0.005830441, 'Technological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008586673, -0.0030133738, 'Any')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010570121, -0.0122127505, 'all,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012590427, -0.009858897, 'aquaculture,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078242645, -0.00012170413, 'Mediterranean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01054572, 0.014388409, 'éq.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012597688, 0.020424692, 'Potentials')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009898758, -0.0046783257, 'mobilized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095988875, -0.013362026, 'shifts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008466091, 0.002274475, 'Tunisian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010104583, 0.012075636, 'Agriculture;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008979088, -0.002155053, 'Having')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096056145, -0.011918775, 'advances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009535326, 0.0018599594, 'delivered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009180456, 0.0014380807, 'Undertake')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008604578, 0.007586121, 'Vehicle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009936123, 0.0008484081, 'base,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010541835, -0.0112773245, 'groups.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011774178, -0.010881671, 'damage.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100168865, 0.0112222545, '(GHGs)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008699334, 0.015335312, '44')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009726768, -0.0076057194, 'aspirations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088918, 0.016925806, 'Electrical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007234078, 0.012390284, '2.4.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008614126, 0.0105415685, 'Hybrid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007861217, 0.014035001, '14.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008026706, -7.450387e-05, 'Eritrea"s')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008828748, -0.011037566, 'paid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006090736, 0.012871359, '№')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011039148, -0.013399473, 'reef')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010812233, 0.0147525845, 'Commitments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008559636, 0.0061105127, '2035.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008605299, 0.0022750504, 'GES.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009803553, 0.01029455, 'Investments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008854849, -0.0037687093, 'stimulate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00966853, 0.014237181, "Monaco's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008407478, 0.0040286146, "Afghanistan's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011670615, 0.014486016, 'submits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009149893, -0.011356226, 'expenses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007268615, 0.0085398005, 'Number')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009977283, 0.010492219, 'Relevant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00899512, -0.005015262, 'replaced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007613908, -0.003243362, 'upper')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010306898, -0.014929413, 'investors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010169084, -0.0013540228, 'periods.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009235664, 0.0088118585, 'USD,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009904531, -0.0058842697, 'provisional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087942025, -0.0023168237, 'middleincome')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008421162, -0.0029405209, 'stocking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008710807, -0.008347994, 'narrow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009340221, -0.0054818634, 'incorporates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007864037, -0.0052576, 'leave')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577764, 0.015235285, 'MAURITANIA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009729507, -0.009816979, 'atolls')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009870032, 0.012532142, 'Supplementary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009913748, 0.010125248, 'Initiatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009849713, 0.009905785, 'Diversity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011505237, -0.005417002, 'vehicles;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008891426, 0.0104955, 'kWh')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007971041, -0.003352805, 'stands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010061816, -0.004692444, 'occurred')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009131547, 0.0033383411, 'Desertification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010723086, -0.010288205, 'protective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009140621, -0.003525064, 'Maintenance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010763949, -0.0031293263, 'enforce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074682897, 0.00441029, 'Background')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009586946, -0.008671263, 'requirements,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009842007, -0.011329283, 'susceptible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074808826, 0.010604358, '47')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009668241, -0.011957568, 'general,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009077126, -0.008640747, 'curricula')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00923962, 0.0140993735, '0.8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008601971, 0.005952747, '(Table')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008666419, 0.011911249, 'Readiness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098638935, -0.010712973, 'severity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008653298, 0.0021639413, 'inhabitant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008874656, -0.0016699462, 'Earnings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009179369, -0.0013759047, 'basis.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008776913, 0.012414692, '2020)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010281155, -0.0111558195, 'transforming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077889487, 0.0059281783, 'Living')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0150226075, 0.019858478, 'CONVENTION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009438479, -0.013799418, 'favor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104059735, 0.005483129, 'emitted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010529243, -0.0039503598, 'offset')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0026811627, 0.0042692474, 'Mt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009706426, 0.010299918, 'non-Annex')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009726054, 0.012537268, 'ETHIOPIA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.020005597, 0.026537554, 'NATIONS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009632057, 0.013707854, 'FEDERAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010631434, -0.017328901, 'threatens')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01172644, -0.015590215, 'nation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01122081, 0.0062144757, 'Paris.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008568116, 0.0118503515, '2007).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011436765, 0.019386027, '2023')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170409, -0.008070246, 'driving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008023958, -0.0033160504, 'military')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008129629, 0.0035855295, 'Storage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009284722, 0.01599505, '2015-2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008216992, -0.002147333, 'audits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427082, -0.006013671, 'partly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008739225, 0.0058103455, '5,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009007737, -0.0050665033, 'classification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010961031, -0.016422011, 'dams,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00846484, -0.005541981, 'matrix')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010763442, -0.006336714, 'mechanism.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008292552, -0.0007323069, 'showing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008437673, 0.016284559, 'Paper')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0046048504, 0.017763246, 'into')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008342239, -0.00083250395, 'economic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010394322, 0.01637675, 'ENVIRONMENT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010252653, -0.010060123, 'agropastoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008926073, -0.009800844, 'humid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007609936, -0.0031236615, 'completely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009487884, -0.0041850717, 'hydropower,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011776198, -0.011919156, 'precise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0047346586, 0.010492932, 'were')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010319849, -0.011606632, 'island.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009977029, 0.006378176, 'Ambitious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011346901, -0.001375673, 'fulfil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112861125, -0.014640539, 'resiliente')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009560895, 0.0039803283, 'deviation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010545858, -0.01517732, 'infrastructural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010722888, -0.014770879, 'pressing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0059648654, 0.010260608, 'Change')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005151545, 0.01199233, 'BAU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009403464, -0.010540873, 'segments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009188282, -0.0036927962, 'budget.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009351577, -0.0021944826, 'remained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010494837, -0.00542149, 'fulfilling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00818991, -0.0012053094, 'Notwithstanding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008716006, 0.008946982, 'Measurement,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010260072, -0.012462718, 'advantage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004827656, 0.00018519048, 'Colombia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009346223, 0.016272742, '2012)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011231539, -0.0028680125, 'documents,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008205529, 0.0053258114, '52')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009739881, 0.0019674115, 'established.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009733873, -0.006878406, 'biomass.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009902319, -0.0070883674, 'consolidation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008975452, -0.0052484754, 'Indigenous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077013224, 0.008240239, 'Prosopis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010856197, 0.0041753524, 'guidelines.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006547976, 0.0039275805, "Tuvalu's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007997647, 0.0032464, 'Acacia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007108151, 0.0019664967, 'boundaries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009499313, -0.007717213, 'rangeland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074121743, 0.004299602, 'Valley')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009842477, -0.0074109393, 'lowering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009162068, -0.008923236, 'conflicts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008471198, -0.005353133, 'bank')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009309712, -0.0115778, 'cash')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009144547, -0.0038722565, 'selection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102778245, 0.0010076736, 'requests')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008722133, -0.0062723225, 'original')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009568672, -0.012705576, 'minimise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007676695, 0.013847732, 'HFCs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008712869, 0.01597593, '2015),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009849858, -0.012498398, 'promising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008636006, -0.003323762, 'certification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009276243, -0.0084791295, 'pricing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009251135, -0.0026819434, 'supplementary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094492305, -0.0053636716, 'records')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007841817, -0.0040485756, 'whom')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009022179, -0.011544494, 'attractive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008252183, 0.0066525307, '(at')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007519077, 0.0058613215, 'Currently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010026826, -0.010575453, 'situation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009911345, -0.010147029, 'control,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010183677, -0.008784443, 'prioritizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011914978, 0.01664813, 'DOMESTICALLY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009209083, 0.01852124, 'Statistical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009921326, -0.010752419, 'wave')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009484067, 0.014582568, 'Bank.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01114415, 0.0034072984, 'bill')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011004864, 0.0066078897, 'graph')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108256275, -0.008671061, 'intensity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930609, -0.0034633605, 'buses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009350899, -0.0025121511, 'mandatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008742333, 0.008593275, 'Grid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008927228, -0.0056024, 'Therefore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008414877, -0.0026965786, 'augmented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009259874, -0.009932453, 'forces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009929026, 0.002351109, '1.5°C')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078486875, 0.016263714, 'PFCs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009808545, 0.0035332208, 'formed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008581553, -0.004893318, 'produces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011611647, -0.012083189, 'hazards.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264049, 0.011979579, 'Included')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013058859, 0.019465212, '(N2O),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010690485, -0.013262745, 'children,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009301293, 0.0026555632, 'findings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00872281, -0.008581063, 'aggravated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009370863, -0.00859812, 'upgrade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008174382, -0.0011409909, 'STP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098480545, 0.0015199992, 'Islands.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009902565, -0.009656824, 'reconstruction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009924132, -0.0086020045, 'Encouraging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006978786, 0.010065711, '6.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094256075, -0.011095082, 'accessing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081570605, 0.0051766927, "Vanuatu's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007911914, 0.013947287, 'NEEDS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0064691356, 0.009605743, '7.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008429221, 0.0020926858, 'notification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009532722, -0.009172449, 'planning;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01214793, -0.009515422, 'coordination,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00759143, 0.0010456957, 'Sahel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00902519, -0.008732461, 'smallscale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008615295, 0.0014278237, 'GCF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068650036, 0.013920122, 'SECTOR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009977943, -0.013788625, 'farmers,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009813864, -0.006634212, 'technically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008187063, 0.0034290531, "Nepal's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076405383, -0.0055180676, 'brings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011167678, 0.00037716984, 'documents.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00874232, -0.006034497, 'partial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007860584, 0.0027382069, 'Both')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010416134, 0.008905751, 'forth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011908332, -0.009244826, 'priority,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009355085, 0.0044963825, 'credit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008645662, 0.0070383353, "Chile's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007391819, 0.011613607, 'IPPU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077166036, 0.012969631, 'Preliminary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010607519, -0.01723274, 'recognizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009797916, -0.002338923, 'adaptation:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009068267, 0.006716275, 'Pan-Canadian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077839876, 0.015200338, 'Survey')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009399991, -0.006432144, 'foresees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008943397, -0.006229248, 'Whilst')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01067202, -0.014664752, 'exploring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010458896, -0.014490299, 'inequality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009938856, -0.014443019, 'turn,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009921106, 0.014430685, '0.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008315386, -0.008387458, 'sewer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008393073, 0.0020312138, "Georgia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010573978, -0.013529639, 'human,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010495595, -0.011198776, 'capabilities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008454713, 0.0056370357, 'fourth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010108779, -0.0072469586, 'consideration.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009691522, -0.003961178, 'observatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009625267, -0.01149459, 'scarce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010397473, 0.017961346, '24,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009578361, -0.0070928223, 'pumps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008995477, -0.00447226, 'underlying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009839523, -0.011771381, 'unemployment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010355741, -0.0100891385, 'equality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01029231, -0.000814608, 'reviews')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010541166, -0.0056445464, 'convention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009193901, 0.00022535342, 'values.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009718129, -0.01249482, 'will,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009448991, 0.0031100921, 'accordingly.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012397079, 0.018286074, '(INDCs)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264524, -0.005627855, 'lies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010035781, -0.009562209, 'livestock.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008187405, 0.0042012124, 'Petroleum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00779608, 0.009911588, '6.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007376135, 0.010504478, '(5)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009135167, -0.005057369, 'canals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009618416, -0.009987123, 'prediction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075301216, 0.01593099, 'Sub-Component')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010271793, -0.012553956, 'relying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008444348, -0.0043394845, 'conjunction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009980692, -0.005438603, 'receives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009699623, -0.0038242831, 'embarked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008055891, 0.012500057, 'Mtons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010108766, -0.007814764, 'cost,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009615466, -0.009245522, 'rigorous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009688943, -0.01195102, 'sale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008569327, -0.0063745533, 'flexible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009177262, -0.006481284, 'excellent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00918883, 0.0180094, 'Next')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175064, 0.015456688, 'Steps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008665056, -0.0035527698, 'completion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009657951, -0.008827835, 'controls')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010567028, 0.0026205087, 'document,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010413574, -0.0027341286, 'identified.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009319319, -0.006428427, 'petrol')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008610363, -0.0073705153, 'monetary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007832586, -0.004929073, 'too')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01152181, -0.004509216, 'communication,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009640458, -0.0012347371, 'savannah')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008014972, 0.0047019394, 'Rate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078508705, -0.00015686576, 'mill')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008595143, -0.008683859, 'exists')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073125795, 0.008350041, '175')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010058925, 0.012957076, 'Gg)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008344446, -0.0050058607, 'match')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010093846, -0.009547665, 'stream')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008112779, 0.0055812425, 'Australian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008536678, 0.016126521, 'Legal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009505208, 0.011417257, 'Dialogue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00932997, -0.011030303, 'careful')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00802551, 0.003604568, 'passed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009209548, -0.0054119434, 'instance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009457203, -0.00904275, 'strive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009488085, -0.0085427, 'possibilities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01028622, -0.015805414, 'employment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009572119, 0.006094319, 'Innovation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068848715, -0.00010289108, 'del')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009446092, 0.0010317011, 'recommend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009485072, -0.005273994, 'circulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010243958, 0.007847453, "Leone's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010158675, 0.0031526624, 'summarised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008738374, 0.0060684877, 'Great')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010038169, 0.021458918, 'Sector:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0049378583, 0.0106703285, 'Headline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012666034, 0.012238883, '1/CP.20.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008365301, -0.008845646, 'repair')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092053935, 0.007222997, 'Macedonia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00939652, -0.00776197, 'viability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074749114, 0.010600461, '1.1.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011284903, 0.0065218937, 'Warning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008700297, 0.000758777, 'Eritrea,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010273082, -0.008789239, 'entail')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007381477, 0.01270903, 'PLANNING')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008949977, 0.0013751554, 'technology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010288247, -0.01507691, 'science,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010516398, 0.014271523, 'Strategy;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250376, -0.007313845, 'climate-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00950099, -0.0018105663, 'contributors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00841985, 0.012229735, 'Indicators')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010806932, -0.012952606, 'reliant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009513098, 0.003662356, 'MW)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00894961, -0.007790898, 'compensation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010609937, 5.089471e-06, '(SIDS),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009583176, 0.022939496, 'Source')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008668539, -0.0046013715, 'modification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010735192, -0.006553661, 'transport;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069979923, 0.010412019, 'based')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008180071, 0.01001064, 'Pak-INDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008838867, 0.0038754214, 'Collection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01000761, -0.011597649, 'collect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004968967, 0.012501517, '2015')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00882532, 0.0035078793, 'aeries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008377842, -0.0023302294, 'begun')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006620315, 0.0047481973, 'global')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097528985, -0.008269697, 'believe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009381984, -0.0077000353, 'eliminating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012362701, -0.009400389, 'rainfall.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011306648, -0.016359651, 'nature,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010371213, -0.009629746, 'organizations.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095782, 0.012154602, 'Short')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010641716, 0.022643816, '1993')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008900004, -0.009682296, 'distinct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010302462, -0.011999422, 'locations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089995125, -0.007052936, 'localities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008808922, -0.0067765457, 'modalities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010115167, 0.0134200165, 'Waste,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008741376, -0.008331179, 'communal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008624018, 0.0011993892, 'now,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077319155, -0.0022698906, 'borders')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010003251, -0.009691526, 'saltwater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670753, 0.016652284, 'PRG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009075116, -0.010342109, 'ambience,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009309197, -0.0078268405, 'urbanization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007156657, 0.0051640454, '1-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008183058, 0.014293532, 'CIRCUMSTANCES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008628978, 0.007927231, 'statistical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009166758, -0.008022003, 'comply')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007912047, 0.0026151794, 'Municipalities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009702402, -0.00864592, 'longerterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008654735, 0.005595328, 'coverage:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008603738, -0.0108379405, 'contamination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011128088, -0.016038546, 'settlements,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009505693, -0.010539907, 'makers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004917351, 0.0053946073, 'This')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010733208, 0.005972702, 'Planning,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006307465, 0.009080953, '(MM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007884237, -1.0926399e-05, 'Oman')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010998389, -0.0068970104, 'recognised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009191183, -0.0031867258, 'cogeneration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010908268, -0.010814305, 'transportation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011454408, 0.012949511, 'Industry,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008907333, -0.0067974203, 'movement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007897563, 0.0020219411, 'Azerbaijan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010090716, -0.0015045764, 'east')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009287442, 0.006413843, 'emissions)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096586095, 0.008028458, 'joined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008753057, 0.019474661, 'AR2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010968452, -0.008685764, 'responsive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010014535, 0.008013919, 'Institutions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008475383, 0.0026036596, 'India.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011812528, 0.01614989, 'SURINAME')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170667, -0.0036860218, 'programmatic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00868052, -0.0017451646, 'inhabitants,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008399232, -0.002152102, 'Weak')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009734468, -0.0069551915, 'units.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00905867, 0.014385866, 'Programme,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007561066, 0.0031509944, '(e)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009417282, -0.008491423, 'indeed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010516927, -0.019565927, 'fires,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011091384, -0.016272748, 'coping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008852013, 0.0040596267, 'Administration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011302943, -0.023168093, 'life,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007236915, 0.0025917676, "Ethiopia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010678451, -0.0143575715, 'capabilities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011100398, -0.016288687, 'conserving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009615232, -0.0069100303, 'perform')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096567795, -0.015565854, 'properly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009892433, -0.00816516, 'demand.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007923291, 0.010313934, 'Abatement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009133569, -0.004566977, 'thinks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099863075, -0.0063384897, 'views')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009867416, -0.004284564, 'stage.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009973939, -0.00930317, 'sensitivity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008391245, 0.0061168424, 'Challenges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011490441, 0.015845157, '1991')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011394032, 0.019953264, 'Reports')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008483477, -0.0018833173, 'Critical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008796871, 0.009557791, 'Outer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009500271, -0.0038794463, 'supervision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010331458, -0.011009012, 'lacks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013846468, -0.013132929, 'surge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009331299, 0.0021749183, 'Cities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011292194, 0.010774262, 'equivalent.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074100723, -9.188248e-06, 'incandescent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008240023, 0.003112935, 'Replacement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007706392, 0.0047524525, 'al.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843652, -0.0057239365, 'scale.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090470975, 0.010115104, '1995,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010359415, -0.0142460745, 'scarcity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009165703, -0.0037717423, 'ownership')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010163337, -0.0099211335, 'increase.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009998281, -0.008039603, 'predicted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007056874, 0.007341648, '15.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009288858, -0.00095466344, 'oriented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008290384, -0.0068616048, 'intensified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008802724, 0.009656452, 'BAU,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009186792, -0.0014143861, 'ending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086205, 0.01885594, 'Complete')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009236362, 0.014174125, 'CO2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009181114, 0.018871352, '2020:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006628672, 0.0014298322, '(Gaza')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009061235, -0.00906384, 'exodus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008310168, -4.955868e-06, '(West')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009874065, 0.0028429742, '2°C.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010562269, -0.015928471, 'fishing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009286353, 0.007366677, 'absorptions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011271938, 0.022737969, '(SNC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008813814, -0.0026859099, 'situated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00931816, 0.008169482, '15,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011011767, 0.015661774, '0.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011852837, -0.01405057, 'patterns.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009129437, -0.0043155965, 'glaciers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077844863, 0.009630154, 'Développement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009087219, -0.0065049776, 'dominated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009463742, -0.009888539, 'excess')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010889544, 0.0161763, '1992')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008476854, 0.003577413, 'declared')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009414753, -0.0027153406, 'Dominica,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009305346, -0.006766635, 'rangelands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011265123, -0.001097151, 'determined.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012112045, 0.013375539, 'hydrofluorocarbons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00375915, 0.0048278854, '\u202b')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00845445, -0.0053924946, 'fruit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011304286, -0.0058506215, 'des')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009321709, -0.0011894517, 'palm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065448903, 0.010128458, '17.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011617327, 0.0143016465, '(COP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008750833, 0.012593418, '2013-2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008768077, -0.009491526, 'origin')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077086897, -0.00013877466, 'f.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009248595, -0.0088102175, 'advice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010058658, -0.008144472, 'regions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007688421, 0.00050903653, 'Is')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009044329, 0.0024510985, 'km²')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010152374, 0.0021863943, 'discussions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010074118, 0.012297735, '(Ministry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010060073, -0.006060562, 'efficiency;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008787423, -0.0069169463, 'practical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010604078, -0.0050262776, 'intensity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007904622, 0.0056748968, '"the')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008129385, -0.010129882, 'intellectual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010485042, -0.0109173115, 'imply')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077767423, 0.008050358, 'referred')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008535414, -0.0024130866, 'evolve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009564503, 0.009286433, '75,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008824536, -0.014440674, 'you')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008803242, 0.011245612, '(US')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009617665, 0.0025444764, 'Floods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009992643, -0.014655333, 'expense')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100084, -0.010003142, 'markets.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010361889, 0.0036788296, 'outline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008577967, -0.006860644, '(particularly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00862494, 0.0034173026, 'Timor-Leste,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010008546, -0.0125042265, 'populations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009307373, -0.007958417, 'Inadequate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009605367, -0.0058089257, 'upscaling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010092588, 0.0058855643, 'elaborate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008958201, -0.0051440913, 'park')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008599505, -0.0042558545, 'spending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007756718, 0.012531331, '2.7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009526188, 0.002378109, 'validation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010358155, -0.010048107, 'hazard')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008117839, -0.003534647, 'Those')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008496149, 0.0066224686, '65%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0125169335, -0.012089059, 'diseases;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01114797, -0.019010944, 'infrastructures,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00811628, 0.010609247, 'FSM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009157234, -0.006927881, 'stocks.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012340387, -0.007959545, 'temperatures.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084156655, -0.0044124364, 'g)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008839381, -0.0049982513, 'heaters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010129246, -0.011923677, 'progressively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008703967, 0.010205928, 'Socio-Economic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007738716, 0.004325481, '72')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011510057, -0.0128738135, 'occurring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010254929, -0.007040976, 'fighting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008865717, 0.006008806, 'Vehicles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069789747, 0.014370401, 'E.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670633, 0.0062366733, 'Uncertainty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009476601, -0.002938943, 'stabilise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008634844, 0.0007784886, 'liquefied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104638785, -0.01010064, 'increase,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013717655, 0.015761215, 'Guidelines.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008177092, 0.0045483657, 'ENR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007782326, 0.014711215, '(CPDN)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010081269, -0.008066565, 'acknowledges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070372457, 0.012654356, '1.2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009968802, -0.012398681, 'harness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009270408, -0.006994135, 'unless')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00896722, -0.00024133688, 'bunch')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070831263, 0.0076551926, '1.3.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00879574, -0.004298598, 'forced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010179247, -0.01665366, 'peoples,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010261959, 0.014144864, 'Quantifiable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076767346, 0.0054521123, 'actions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009080087, 0.0006576086, 'national.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010966896, -0.0046544927, 'deforestation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011201042, -0.005288808, 'institutes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111632515, 0.011455687, 'Assessment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008241256, 0.0033292521, 'TTE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010016757, -0.009472278, 'zone.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010472325, -0.010674451, 'recycling,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011598281, 0.01906528, '(HFCs),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009326699, 0.014855471, 'Energy.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008779303, -0.0049310634, 'insular')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086866645, 6.593444e-05, "Algeria's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670028, -0.0036609203, 'powers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009325222, -0.002393014, 'multisectoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009189231, -0.0018551459, 'resilience')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009818413, 0.01093893, '43%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007819074, 0.00673173, '29%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008290068, -0.006033062, 'capitalist')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009878117, -0.0029467607, 'hurricanes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008867643, -0.011589794, 'prosperity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007045432, 0.0053485446, '16.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009795857, -0.009141633, 'striving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008840379, 0.002759468, 'yearly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009367585, -0.008715638, "farmers'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009672112, -0.0017986377, 'nationals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008530873, 0.015956266, 'PROCESS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009692381, -0.0031278678, 'stay')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008799051, -0.008501994, 'extractive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013367551, 0.018722652, 'AMBITION')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009521112, 0.0023721592, 'used,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008225434, 0.007435339, '57%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009806052, 0.0017564984, "Guinea's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00950528, -0.014224439, 'things,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009602712, 0.0017186069, 'Assure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010127951, -0.008293968, 'capture,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006968995, 0.015783392, 'targets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008812467, -0.0026688608, 'insulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010184735, 0.00046582025, 'hectares.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009517427, -0.011339515, 'schools,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008965532, 0.005320982, 'forecasted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008526794, -0.0010780931, 'Losses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009681354, 0.010576754, 'Composting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01381855, 0.019918848, 'Inventories,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010361648, -0.006192403, 'genderresponsive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011938433, 0.0132353185, 'Legislation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070317877, 0.0061394474, '1,5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009276406, -0.0017336213, 'geared')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007914491, 0.00633358, '65')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008841612, 0.00017397678, 'Cuba,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007925058, 0.005854505, 'Municipal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009517975, -0.005819738, 'systematically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010515288, -0.009168688, 'count')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092177875, 0.0067762104, 'amounted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070780106, 0.016980333, 'Tree')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009157737, -0.0054537654, 'procurement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009247196, -0.0027460603, 'trends,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008949656, 0.0049617123, 'Asian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009537064, -0.009332089, 'well.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011495825, -0.014027582, 'effects,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008896778, 0.01826, 'Results')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009028263, 0.029457433, 'End')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074025025, 0.015070472, '1.7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008306036, 0.00015856417, 'Once')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010046318, -0.013684281, 'access,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008288975, -0.0034358827, 'purchasing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008974765, -0.0040094107, 'resolution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009248967, -0.0091346605, 'survival')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009222017, -0.008251593, 'prospects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007068504, 0.009807129, 'FAO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011228181, -0.012661953, 'coal,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075650364, 0.008975938, 'Adaptation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010439095, 0.0023412528, 'guidelines,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009032128, 0.019127069, 'Park')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010085374, -0.0066281897, 'biofuel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009551419, -0.008543421, 'spring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008787296, 0.001370624, 'Variability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009321564, 0.0051822015, 'ha/year.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066143367, 0.015727807, 'S.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008614088, 0.0024548438, 'pipeline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008839913, -0.008165644, 'median')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008074257, 0.013186698, '(3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009556666, -0.0048462646, 'productions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009568037, -0.009792874, 'consumer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00935393, -0.002481268, 'participative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007881413, 0.002381175, 'Issues')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010739408, -0.0077604135, 'vulnerable.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010975926, -0.012797757, 'tourism.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010552565, -0.015098747, 'farming,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011938168, -0.015078283, 'services;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009647197, -0.005047412, 'varies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009273788, -0.0008395913, 'Droughts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010263006, -0.009064111, 'encourages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00838247, -0.0062832907, 'pertinent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008351306, -0.0024105175, 'diagramme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075452593, 0.0065045455, "l'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008236491, -0.0035497549, 'Sahelian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008446867, -0.008476166, 'extending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00565568, -0.0007656898, '!')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008759516, -0.0012384267, 'officials')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011794397, 0.0024134566, 'States,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009362831, 0.013617804, 'Agriculture:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008396276, -0.00089751603, 'sludge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008790222, -0.0018759262, 'switch')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095786555, -0.010616649, 'belt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008483096, 0.008565227, 'KAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008301743, 0.0006506396, 'Mapping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009056284, 0.022042619, '2014:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008794046, -0.0077687562, 'alliances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009823292, -0.009743998, 'oil,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008761233, 0.005988979, 'JNAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010202481, -0.0045316885, 'occurs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009966885, -0.010463599, 'schemes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008869645, -0.010182387, 'choose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011251802, -0.011175169, 'protection;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009080763, 0.00435713, 'Mangrove')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010574293, -0.0056973347, 'house')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010215724, -0.011158476, 'proofing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008777322, -0.0070253774, 'appropriately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00748763, -7.966767e-05, 'Black')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086178705, -0.010080411, 'associate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009037178, -0.012100132, 'matter.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097164, -0.008838088, 'systemes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007523889, 0.011160714, 'PNIA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848159, 0.015927725, '2011)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008911163, 0.009833934, '(GES)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007902836, 0.015700772, 'C02')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009950017, -0.011511321, 'constrained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009717749, 0.012554789, '150,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012038269, 0.014191358, 'Environment.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009249632, 0.0042368677, "Tunisia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010778592, -0.004673671, 'processes;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00819482, -0.0030708187, 'got')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010168466, -0.013756718, 'health;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010052064, 0.016456703, 'Sectorial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012349447, 0.007194233, 'inventories.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006411912, 0.008994472, '--')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011043199, -0.014210189, 'engaging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009440985, 0.006684072, 'scenario:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009558429, -0.0074112667, 'relations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008463473, -0.0038067047, 'refugees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009736206, -0.005762098, 'part,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008854296, 0.011336269, 'Pillar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010124773, 0.0019928098, 'LDC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008541889, 0.017886184, 'Breakdown')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008972127, -0.004106665, 'encompasses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010064609, -0.008181001, 'climatological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008723445, 0.013796263, 'MINISTRY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009482917, -0.006761342, 'Women')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008310502, 0.014490026, 'Team')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008543734, 0.008314851, 'Consistent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008836842, -0.0027967517, 'doubling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008824016, -0.0078204535, 'silvopastoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014075186, 0.02083092, '(CO2);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011089554, -0.009735811, 'cultivation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010054485, -0.00980116, 'lighting,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010558272, -0.011639089, 'vulnerabilities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010733092, 0.021276308, '(NAMA)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008921984, -0.012347169, 'rates,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01087496, -0.015033906, 'threatening')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00839062, -0.007844585, 'behind')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011081247, -0.0063087456, 'work,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009803564, 0.014369428, 'Nature')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009517627, -0.011145123, 'diminishing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007726028, 0.009002944, '88')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008916331, -0.009075314, 'pace')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008771931, -0.0036667592, 'draw')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007538562, 0.0030073978, '(I)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009383034, -0.012578069, 'character')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008534975, -0.005288855, 'acquisition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009083804, -0.006056101, 'stakes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009742124, -0.016527582, 'socially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008417798, -0.008599168, 'workers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010991715, -0.021611596, 'so,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009626965, -0.007997825, 'necessarily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009709162, -0.0014659835, 'oversight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008869618, -0.003951697, 'whole.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009385264, -0.0048525245, 'fed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007869741, 0.008185644, '%).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109450305, -0.011651718, 'saline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008514283, -0.004948806, 'architecture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009686889, -0.012185113, 'engine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010885211, 0.0035812042, 'invited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008567374, -0.005881856, 'began')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009832267, -0.0077556544, 'aggressive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008384066, -0.0012537135, 'study,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007881694, 0.017425606, '3rd')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009420589, -0.008238268, 'devices')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008898603, 0.01540707, '2014).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007739862, 0.0024844978, 'phased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009631257, -0.007523133, 'settled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075487965, 0.0045037568, '92')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012259594, 0.017727017, 'ACTIONS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094723925, -0.010479224, 'interests')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010239971, -0.013841371, 'losses,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009953166, 0.007285666, 'Photovoltaic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009507577, -0.006735257, 'states,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007728957, 0.0072424863, 'Geographic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009661536, -0.013949767, 'houses,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007900988, 0.007296537, 'Gulf')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009865745, -0.0029475512, 'understood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009686729, -0.0043469, 'harvested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010308874, -0.014308033, 'centres,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009791145, -0.008899249, 'market.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010193648, -0.0075998846, 'synergy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100224, -0.01004698, 'oceans')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009317325, 0.0036580944, 'Eastern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008246709, 0.013051608, '2010;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010275857, -0.011805491, 'gaps,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009001255, -0.0025913743, 'pending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009104452, -0.007981118, 'sovereign')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007739763, -0.0004344901, 'Cuban')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008761617, 0.01676689, 'Plan;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009266381, 0.0037560712, 'Accordingly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008732007, 0.005061642, 'project,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007909912, -0.0047449702, 'composed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010780864, 0.015657056, '2,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009553332, 0.0011893134, 'verified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010673197, -0.0116335405, 'impacts;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095174685, -0.005741928, 'installations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008791184, 0.00088708586, 'Theme/sector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010983136, -0.011655765, 'waterborne')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009504699, -0.0055687306, 'recovery.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009636538, 0.007952941, "Nam's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009897563, -0.008790297, 'decisive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008800559, 0.0066822795, 'Fishing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009506646, -0.007904074, 'installing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00857728, 0.017799176, 'Post')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009759879, 0.010570665, 'Trust')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008301333, 0.007072899, 'Gaps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008745692, 0.008974221, 'Territory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007921595, 0.0076177735, 'Rio')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007988231, 0.002497975, 'Secondly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072547, 0.0023013027, 'la')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010297858, 0.015340656, 'ktCO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007983256, 0.0068669626, 'Note')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01156453, -0.0102573065, 'conservation;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008939588, 0.015569691, 'Plants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009949835, -0.009746861, 'uncertainties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008428296, 0.0011036147, 'months')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010028953, 0.0028622518, "Kenya's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008391532, 0.009538687, '(Figure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072734253, 0.0131712435, '3.3.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010245786, 0.0050600083, '1,000,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01018444, -0.008086827, 'participation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062928763, 0.004656372, 'support')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822657, 0.007786407, '0.9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0059977346, 0.009172272, 'sectors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010936842, 0.005260778, 'preparatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008571352, -0.0048769196, 'helps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092298705, -0.009844028, 'strives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009026421, -0.0085783275, 'diagnosis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010708169, 0.019896014, 'ktCO2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008094332, 0.000650406, 'Outcomes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009402989, 0.017939515, 'UNEP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00927837, 0.0030952403, 'land')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008532249, 0.0024375618, 'scheduled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009489559, 0.013298538, 'eq-CO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009526064, 0.014811889, 'Business-As-Usual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009276661, 0.01391118, 'Waste.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009463346, -0.0100499755, 'linkages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011516225, -0.009915028, 'academia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010310196, 0.0061657997, 'Science,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008639819, -0.0008351939, 'enshrined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008187743, 0.0034853143, 'Put')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011961028, -0.006362885, 'transference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073903073, 0.00901522, 'Avoid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013366329, 0.0050267843, 'clarity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007843793, 0.0006094531, 'shortlived')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010309091, 0.018462757, '(2014),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010642814, -5.6486362e-05, 'west')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010572393, 0.006643761, 'revisions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009450435, -0.0015146204, 'comparable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009727042, -0.005549854, 'issue.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00882755, 0.016481379, 'Coal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009396068, -0.012102404, 'citizen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008246294, -0.0016919731, 'Botswana')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013060965, -0.0052891113, 'funding.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007835495, 0.0039570406, 'Before')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009219133, -0.0058613317, 'expenditures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008437603, -0.0067330496, 'indexes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006186378, 0.009971858, 'IV.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427316, 0.0012362842, 'summarized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092436755, 0.000524857, 'kilometres')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010323121, -0.016155776, 'stresses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008815718, -0.0004210422, 'extrapolation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009280202, 0.00879081, '34%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009756715, -0.009539316, 'history')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079609975, -0.0039859503, 'unavoidable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008186251, -0.002722276, 'ethanol')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086369375, -0.001635658, 'appear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096954405, -0.008501735, 'risk,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00861634, -0.006060988, 'mini')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009621428, 0.012694072, '2015-2019')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008609764, 0.008508674, '84')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007346448, 0.0019135738, 'Capital')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008444972, 0.0065858644, 'came')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010689183, -0.012609067, 'damage,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010817372, -0.012921626, 'sustainability.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066449856, 0.0070161875, 'PND')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009382596, -0.007710049, 'benefiting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085196365, -0.0041850503, 'chart')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009084798, 0.015569605, 'Affairs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009914474, -0.0053653135, 'articulate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008805486, 0.013988272, '2016).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00977287, 0.009947646, 'annex')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071907667, 0.0042255223, 'Zero')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010432413, 0.019289795, 'December,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010071433, 0.0048177186, 'Tourism,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008195763, -0.0062411935, 'adds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009310095, 0.0019526008, 'Incentives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010702096, -0.016580602, 'winds,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008417998, 0.0021592805, 'tendencial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009222728, 0.0131587675, '20th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008624926, 0.0056720707, '78')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011210135, 0.021372175, 'Mark')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010323415, -0.004584128, 'achieved.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011140935, 0.014482023, '200,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00820255, -0.0008835451, 'nearterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184793, -0.0064527825, 'swamps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00688583, 0.004214027, 'He')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012457452, -0.01846926, 'sure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008928063, -0.010011245, 'qualified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009080463, -0.0068857167, 'realistic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00951876, 0.016479578, 'Statistics,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649592, -0.0077021793, 'intensities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008141879, 0.016375156, 'Mega')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009000135, -0.011064553, 'depletion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008246044, -0.009346391, 'combining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089323, 0.01690052, '(2014')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009631017, 0.0043673995, 'requested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649767, -0.0055507645, 'terms.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010771653, 0.005821484, 'NAP.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008785698, 0.001604356, 'accessed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009785101, -0.0020000988, 'analysis.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008204852, 0.0011716823, 'Poor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098338425, 0.017926337, '1996,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008868647, 0.0088873785, 'totals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184504, 0.004560548, '°C')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00882844, -0.0050741956, 'ensured')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008880873, 0.008587506, 'Commercial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008885292, 0.010539467, '0.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009809256, -0.0066486434, 'indicators,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011403315, 0.009326536, 'Europe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011168248, -0.016210651, 'sustainability,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009204148, 0.008301479, '1960')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011194439, -0.0106017785, 'incidents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009036017, -0.008831828, 'feature')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00854305, -0.002515882, 'center')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008368602, 0.0052152434, 'PPCR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008428406, 0.007354013, 'illustrated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009733148, -0.012734554, 'soils,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009402892, -0.008453275, 'concern.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010474611, 0.011815268, '50,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010043154, -0.009676827, 'plant,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009702289, 0.01685661, '(2010')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008134368, -0.0049769655, 'charged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009924023, -0.0020173397, 'interministerial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009351881, 0.005120525, '48%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010131241, 0.017048256, '1994,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008923883, 0.015043453, 'Details')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009193214, -0.0021751216, 'Explore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007988501, -0.00013932375, 'items')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009851256, -0.005056987, 'have,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01159568, 0.008768546, 'dioxide,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008581556, 0.019036999, 'Trends')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008673258, 0.0009118187, 'ceuvre')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009891904, 0.007930427, 'finalised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097171115, -0.0069142436, 'residents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010951916, 0.0163504, '12,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008533902, -0.0043465253, 'drip')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008231459, 0.02014653, 'Project,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077762525, 0.013820606, '188')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01077766, 0.0014914377, 'hydrocarbons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086387275, -0.00525638, 'hydroagricultural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009642337, -0.008574725, 'crises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092931865, -0.011139416, 'temporal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009331021, -0.0073643993, 'so.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063968585, 0.010418637, 'Nord;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00851296, 0.010706941, 'Models')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008754207, -0.005289794, 'cornerstone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010192398, -0.019627927, 'stress,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096440315, 0.003532641, 'Zones')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054640532, 0.0025780958, 'Ethiopia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01100989, -0.009771711, 'finances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010165172, -0.008929189, 'systemic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068702684, 0.007061287, 'iv.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009727988, -0.009248336, 'advancing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008907933, -0.007407011, 'quick')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097127985, -0.0038763974, 'lowlands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009015093, 0.014961655, '(2007)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097410055, -0.003341423, 'projects;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009251429, -0.008759276, 'acute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008811128, -0.0049657486, 'feedstock')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008276461, 0.003564563, 'francs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00876363, 0.0069829407, 'non-CO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009791012, -0.0023360332, 'peaking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009244782, -0.012641416, 'relief')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00921262, 0.0042504477, 'Hydropower')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107029965, 0.00025236202, 'rule')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010005213, 0.014734397, '(2009)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009499918, 0.008999392, '180,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00898632, 0.006779279, 'Decline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007721335, 0.0073853475, 'page')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008019736, -0.00031357972, 'reclamation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008798006, 0.0060380367, 'Organisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008477832, -0.008126069, 'norms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00842324, -0.005687376, 'gold')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008839574, -0.0066862446, 'turned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008127125, -0.00022582259, 'occupies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076861447, 0.010224293, 'Durban')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009018144, -0.009593476, 'partially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008866008, -0.0075258464, 'one.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009303324, -0.0009993319, 'performed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012441986, -0.0038782516, 'transparency.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010990383, -0.00094366434, 'commitment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100714825, 0.0036562986, '10,000,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008721829, -0.004943189, 'aforementioned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427113, -0.008689764, 'situations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010690999, -0.00832606, 'forward.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008355257, -0.006035715, 'taxes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009593822, -0.005670709, 'administration,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175746, -0.00427983, 'consistently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011198642, -0.007898454, 'agroforestry,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009142396, 0.011588998, 'drafted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01184172, -0.009707161, 'precipitation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009946907, 0.0053553274, 'Arrangements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008076653, -0.0040148767, 'mobile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010918209, -0.014562003, 'quality.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098369885, 0.006145422, 'below,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074953935, -0.0016465016, 'ahead')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074747484, 0.0059255366, 'Commonwealth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074768737, 0.0022067968, '63%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008531528, 0.011320415, 'Strip')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009451823, 0.024819462, 'Manage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008275527, 0.009592534, '0.03')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008559922, 0.0048316233, 'Independent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009239544, -0.007254893, 'farmer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010185421, -0.012126966, 'funds,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008074415, 0.005611553, '(PV)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008687357, 0.016357383, 'Need')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00574304, 0.0073117395, 'power')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009364831, -0.007975881, 'task')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007231976, 0.0075940206, '73')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008647463, 0.013285583, '61')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067166286, 0.01379989, '5.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009558525, -0.0085909385, 'charcoal,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009805866, 0.0033263094, 'sections')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009041046, -0.001623849, 'presently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090510305, 0.015903931, '(2013).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009981682, -0.0054960316, 'sequestration.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007731851, 0.0135262385, 'Please')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00937214, -0.008572484, 'controlling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102247, -0.0002898432, 'discussion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0116082085, -0.00958164, 'season,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007848854, 0.013400671, 'Forum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009386613, -0.009109454, 'renewal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009263889, 0.0044544395, 'Livestock,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009230315, -0.0018472048, 'indication')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009407766, -0.0069284234, 'climateinduced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00906404, 0.0069867373, 'Rational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006693632, 0.0076466147, 'achieve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013617057, -0.015742114, 'integrity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010230585, 0.0069253864, 'Productivity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008000162, 0.007903127, '0.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008039678, 0.00036252904, 'plateau')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008084341, 0.008355966, 'Delta')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011021149, 0.00280263, 'percent.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009255738, -0.0017288991, 'translate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00967205, -0.004183899, 'program.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008536684, 0.013920596, 'B.E.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007177073, 0.017101752, '4.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008898933, -0.0047854683, 'costbenefit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010095493, -0.01033914, 'influenced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009822809, -0.0024524045, 'exported')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009887647, -0.0060370313, 'confidence);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008760711, -0.0059942063, 'planet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074601755, -0.0014904633, 'Much')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010439493, 0.025675425, 'Gases:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009229369, 0.0067118825, '(AFOLU)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01014374, -0.0045544766, 'considered,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008698649, -0.0033727959, 'Earth.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008640525, -0.0038145683, 'volumes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009296942, 0.01653974, 'Law,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008787386, 0.009922703, '0.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009214603, 0.0012267139, 'Ecological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009803139, -0.0067047644, 'fairly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00992144, -0.0033851187, 'determines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009120676, -0.003999659, 'benefited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009218539, -0.008410827, 'coastline,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008366288, -0.0034027314, 'refrigeration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011028503, -0.014012034, 'harvesting,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010024031, -0.0122486595, 'well,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010267239, -0.0022773615, 'vision,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073959865, 0.015172711, '3.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011094702, -0.01084846, 'affected,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113028195, 0.013170983, 'Disasters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008494266, -0.0008177805, 'length')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008208841, 0.018266302, 'Status')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009865883, 0.0079818815, 'AFOLU)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007843627, 0.012090276, '6.1.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010292957, 0.023582453, 'CO2e)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008970308, -0.010702549, 'designs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010000394, -0.0020879526, 'hurricane')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009606774, -0.012717652, 'media')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008748749, -0.00794595, 'Recognizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008421535, 0.0029659555, 'Youth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008933721, -0.008439846, 'measuring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008407882, -0.00048662038, 'Habitat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010694349, -0.019021362, 'wild')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007916054, 0.0046433485, 'TSDF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00840479, -0.004649296, 'wooded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069818078, 0.0026173124, 'change.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010409659, -0.012716761, 'networks,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009660229, -0.010626996, 'prominent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007922654, 0.009364659, '$US;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010603437, -0.0113655785, 'settlement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009460889, 0.004768216, 'contribution:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008442377, 0.0067710355, '2018,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008441321, -0.005428855, 'find')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00790004, 0.012978333, '9:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009197441, 0.00452481, 'Papua')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009705429, -0.0074734483, 'testing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007461906, 0.009998941, 'His')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010481631, -0.0055676117, 'outcomes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009201383, -0.007438462, 'mix,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009616263, -0.009273592, 'moisture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008677637, -0.007909792, 'neither')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013062664, -0.017998463, 'surges,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0041673467, 0.010418329, 'per')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010721297, 0.016923854, '2028')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008587946, 0.0075196563, 'weight)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010890497, 0.020433847, 'Amendment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009494286, 0.017779594, 'PROJECT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00805416, -0.0060230475, 'beneficial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00864529, 0.00076554273, 'follows')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009451937, -0.005127145, 'program,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010107267, -0.0061351634, 'wetlands,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008769996, -0.0036555522, 'abroad')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085553955, -0.0076157106, 'wooden')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011123063, 0.013254633, 'Assessments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009501143, -0.012330753, 'models,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011258717, -0.011359764, 'lowcarbon,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066790604, 0.0008254501, 'impacts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011796597, 0.0022651206, 'accounting.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011806149, 0.0119619435, 'Contribution,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010304471, 0.0030705745, "Verde's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00977516, -0.0057723527, 'atmosphere,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069414405, 0.014164565, 'D')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095287785, 0.00020276417, "it's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008853053, -0.010035054, 'arranging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010525418, 0.0029964736, 'adopted.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012235793, -0.016050473, 'rains,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00986597, 0.009987935, 'th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009333751, -0.0067199045, 'optimization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011300795, 0.012614152, 'Management.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009502813, -0.007136226, 'willingness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007287204, 0.0035239437, '51')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009183104, 0.007666591, '(Section')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01056903, -0.0064425273, 'effect.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010971166, 0.019333119, '(GWP-100;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01187163, 0.009347097, 'Strategies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011476499, -0.0046842275, 'public,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010658522, -0.017039988, 'citizens,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010239731, -0.00046509347, 'arrangement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009251444, -0.0052001663, 'sewage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008900986, -0.0049432316, 'highlands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008717985, -0.0077822995, 'artisanal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010428104, -0.010747234, 'conducive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008366986, -0.001855821, 'for:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009177824, 0.017924177, '5th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008254579, 0.011565875, '2020-2030.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088269515, 0.013104609, '(Relative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008780474, -0.0012013975, 'upward')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0055407197, 0.013262286, 'total')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009499392, -0.012223162, 'inherent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009402811, 0.016425641, '1987')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007552921, 0.009306022, 'Bureau')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010945435, -0.012100555, 'poses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00970024, 0.00024713395, 'sequester')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010656103, -0.012930447, 'losses.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008860123, -0.0038804503, 'foible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010699296, -0.013028808, 'optimize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007648688, 0.00063832937, 'Mogadishu')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010647328, -0.006773395, 'regulating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009054068, 0.016413938, '1st')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00973714, 0.013075874, '2021.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010331772, -0.014282249, 'incentives,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008901513, 0.012403034, 'Transport:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009772564, 0.0008191618, 'supplemented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0047849743, 0.014108009, 'year')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009327153, -0.002817114, 'faster')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012119616, 0.015519982, 'Framework,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010310002, -0.0053000404, 'management:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008635945, 0.004281333, 'Rights')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077283275, 0.02239107, 'Start')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011223716, -0.020407256, 'train')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006815161, 0.0062192054, 'potential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0040869326, 0.011979999, 'also')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069272206, 0.005479072, 'increase')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008945337, -0.00281408, 'Pakistan.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107168155, 0.010088781, 'Committee,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009724092, 0.0095328465, 'Decrease')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012790086, 0.014491473, '(INDC),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010126195, -0.01673522, 'trees,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007985438, 0.004023215, 'Double')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076582097, 0.0024984316, '(currently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006341961, 0.0012894602, 'country')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009062995, -0.006318877, 'changed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010632776, 0.0028457376, 'Application')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009130891, -0.008282727, 'dryness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067810253, 0.0021733423, '2-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007406391, 0.012262248, 'Organic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009359171, -0.0014739718, 'alleviation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069411206, 0.019201193, "Palau's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009127436, -0.006590283, 'foreseeable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00823697, 0.0070337583, '47%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009398676, -0.012927642, 'bringing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0039118645, 0.0038173927, '\u202c')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01047902, -0.007567452, 'generation;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008974276, 0.0015592909, 'definitions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008738943, -0.0072276304, 'glacial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072453846, 0.013105194, 'CCNUCC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008174393, 0.00616983, 'MW,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009288427, -0.00025677567, 'Guinea.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009382787, 0.015978226, 'Assumption:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081352405, -0.005118793, 'earnings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011204458, -0.010398175, 'progress.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096347, 0.017188959, '9,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008126945, -0.0023747112, 'heads')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008541342, -0.0052272105, 'measurable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0114154555, -0.0085762255, 'integrated,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007159645, 0.009982431, '2.5.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010922406, -0.015571277, 'stability,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009568293, -0.0070817876, 'encouraged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010777812, -0.0040204735, 'rises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008894058, 0.002630355, 'Recycling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008521676, -0.0054728016, 'obvious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010389893, -0.00180052, 'evaluated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009419623, -0.00022426259, 'cropland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008982942, -0.0068580364, 'tasks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011430924, -0.0012501081, 'ambition.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011795475, -0.006090388, 'agencies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009464607, -0.0056359996, 'costeffective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010232613, -0.009447819, 'financially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062631443, 0.00989252, 'pp.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009554303, -0.00982108, 'research.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009778813, -0.011474949, "women's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008979182, -0.0073114815, 'deemed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008473068, 0.01224233, 'Consumption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009126889, -0.007575239, 'choices')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112452535, -0.007856074, 'governance.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01247803, 0.024391556, 'Nation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009978511, -0.0023150444, 'northeast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010987802, -0.0016966655, 'protocol,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009707599, -0.013892663, 'nature.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074832058, -0.0058892313, 'steel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010146771, -0.0020330187, 'Lanka,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009084397, -0.010778171, 'outbreaks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009428695, -0.00829611, 'engines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009065196, 0.0062314337, 'million)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007898119, 0.006348972, 'Focus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843847, -0.004519966, 'necessary,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008254346, 0.008545032, 'GACMO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010374871, -0.0053215115, 'varied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009866653, -0.008746692, 'insufficiency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010243689, -0.008614248, 'suffered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010868114, 0.01255091, 'Policies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008913541, -0.0049103796, 'exclusively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008771197, 0.0005806198, 'CSA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011360082, -0.0027458898, 'facilitated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00906939, 0.0030118343, 'Cyclone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008781045, -0.008549229, 'transhumance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008938435, -0.005040464, 'notable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01078674, -0.014357824, 'actors,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007929252, 0.016326914, 'Forecasted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008685363, 0.0043293303, "project's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009246817, -0.0064279367, 'mountains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010539598, -0.0065889256, 'partner')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01125105, -0.00074651913, 'ambition,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01111602, -0.0058143903, 'malaria,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010851256, 0.0012254374, 'protocol')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008861523, -0.0051674056, 'deprived')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007662534, -0.0015438881, 'Every')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080806585, -0.00015968461, "UAE's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009562004, 0.0035431231, 'twenty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008222159, 0.00033119277, 'Thermal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00904671, -0.0037110038, 'development:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008401562, 0.002926154, 'Lower')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010964059, -0.01503973, 'watering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007866412, 0.0068275207, 'Against')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008049938, 0.005676929, 'U.S.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009217432, -0.0078080078, 'car')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080281, -0.001985011, 'mediumsized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010751917, 0.01628493, '19th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009049, 0.00022440488, 'serves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100093465, -0.010655879, 'centres.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009938827, 0.0039058984, 'processes:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009591365, -0.0018925049, 'energyefficiency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009171619, 0.0089840405, '(conditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009126384, -0.0073078666, 'neighbouring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010601475, 0.0063568265, '(LDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170919, -0.010626962, 'easily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008390134, 0.0077997237, '(World')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008680304, -0.0015395663, 'formally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00880317, 0.010944594, 'Techniques')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077582076, 1.3090148e-05, 'CPND')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011070747, -0.0081659565, 'urgency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007702988, 0.018260347, 'M.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067932513, 0.008562136, 'CURRENT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008210614, -0.0010151679, 'suggested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011842802, 0.027201537, '(N')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073962514, 0.014183057, '8.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008322466, -0.005351149, 'leaves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009341999, -0.00829388, 'mark')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008344431, -0.0074447053, 'deaths')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00936344, -0.00971136, 'transverse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010700832, 0.001121661, 'Lanka.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009608283, -0.007130598, 'significance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097919125, -0.013848921, 'difficulty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009808326, 0.0069141574, 'American')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007958281, 0.0035357564, '(around')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010766379, -0.016267411, 'pollution.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008428662, -0.00675643, 'cut')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264578, 0.008244942, '40,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009208032, 0.015694909, 'Forested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010519049, -0.010900736, 'plays')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008954259, 0.010322689, '(Climate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011620867, -0.017732792, 'waves,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075011384, 0.0010643016, 'Ouagadougou')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006777287, 0.010268332, 'LIST')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082465, 0.01155289, '2008.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008295204, -0.006061121, 'accurately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009770775, -0.010308962, 'lay')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010293668, 0.000381651, 'Islands,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008009265, 0.0010783316, 'Along')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092922775, -0.01312236, 'hard')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088774115, -0.009389811, 'lines,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009265575, 0.013182281, 'Min.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010748842, -0.016766213, 'pollution,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080170045, 0.01078146, 'GWh')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007611585, 0.0074021947, '650')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009792549, -0.005721181, 'grid,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009788887, 0.0077740103, 'documented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008880598, 0.02051188, 'Gap')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008925331, 0.0065971124, "Rwanda's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009278432, -0.011162054, 'guarantees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00854903, 0.000996773, 'normative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009062537, -0.0044595255, 'attempt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007881668, 0.012829979, 'MCG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00972369, -0.009382287, 'learning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008405392, -0.0031047377, 'milestones')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074444884, 0.008619708, 'Heat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01106553, -0.009249852, 'periods,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009500635, 0.0052175983, '13%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0123698665, 0.0010798249, 'Clarity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006012649, 0.007229506, 'L')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008741727, -0.0031014273, 'panels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009771985, -0.009243319, 'risk.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008121117, 0.008003245, 'Balance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009087201, 0.006367889, 'Hydroelectric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010388219, -0.0038585367, 'implements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006606598, 0.009890492, '7.3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008970677, 0.0078022047, 'Address')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011477759, -0.017611407, 'rights,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009913776, -0.0016290533, 'recently,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008839281, -0.006088565, 'happen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007465926, 0.00918315, 'Tendencial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009641585, -0.009153437, 'predictions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011071057, 0.01592167, '4,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008319422, -0.0058434685, 'choice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013106394, 0.01758235, '(N2O);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010876922, 0.011025518, "Republic's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009585133, -0.0056453953, 'today.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008755554, -0.005111841, 'periurban')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010314013, -0.011383806, 'developing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00968613, 0.006950165, 'COP21,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008045262, 0.010435662, '48')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077834446, 0.008143044, '(on')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010001519, 0.018869624, 'Reductions:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010727463, 0.023349825, '2015-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068955007, 0.002569426, 'INDC-Honduras')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009153984, 0.0058641573, 'name')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010844132, -0.007062664, 'responsibilities.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009804384, -0.00877294, 'undermine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008525476, 0.011847254, 'Scheme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008841946, -0.0066376436, 'sewerage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008705851, -0.002965515, 'hierarchy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094260955, -0.0034276491, 'edge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011923903, -0.012148505, 'events;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008146582, -0.0018089025, 'constituted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008023606, -0.0049320185, 'artificial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008405332, 0.0011113113, 'before;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00891513, -0.004564552, 'counts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009439965, -0.007113177, 'creates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008769717, 0.0016948414, '(M&E)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075530256, 0.0018651811, 'Three')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007949628, 0.012117225, '$)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009289279, -0.0029610395, 'articulates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010300358, -0.015304491, 'mining,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008442477, -0.008149476, 'runoff')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008828387, 0.0024860054, '(Art.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008186392, 0.003749545, 'IWRM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011374497, -0.012099455, 'strengthening,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009784144, -0.011797176, 'income.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101621635, -0.0018111627, 'aspire')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009783616, -0.007600132, 'economy;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009134551, -0.0055589215, 'north,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008286136, -0.0029153258, 'Himalayan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008577802, 0.01366756, 'Prepare')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008839294, -0.0006829734, 'wasteto-energy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007952271, 0.0123710185, 'l')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008979376, 0.002146879, 'Achievement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009732362, -0.0026184956, 'countrywide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010417703, -0.013810434, 'turns')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010628191, -0.009645695, 'chain.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011164152, -0.001233975, 'cent.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008532238, -0.0064012287, 'fastest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008956923, -0.006569815, 'hydraulic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010316087, 0.01053549, 'approximate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104531245, -0.0037721037, 'Algeria,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010827096, 0.008372458, '30,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077555566, -0.001261302, 'Nigeria.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088673, 0.015171176, 'Combined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008195228, 0.0073285936, 'Household')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009516196, 0.01619675, 'Coverage:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009499466, -0.007958502, 'catchments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010027125, -0.009471057, 'exploration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00925872, 0.009402584, '600,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010011894, 0.022968445, 'GgCO2-eq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011802453, -0.0140704475, 'landslides.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008594734, 0.004257339, 'Carry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010123556, 0.006677834, 'Cabinet.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008196112, 0.001357246, 'lowemission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009672552, -0.013337094, 'stronger')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008232109, 0.0130617, 'Effect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008949596, 0.009224454, '160,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008479589, -0.003633903, 'Yet,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010589723, 0.0009919378, 'India,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008841171, 0.015060508, 'kTeq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009650571, -0.004668936, 'atmosphere.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009471162, -0.009296796, 'atoll')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007269191, 0.0023177576, 'Upgrade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008264659, -0.00012169667, 'Kwajalein')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010984422, -0.010967616, 'uses,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009941796, -0.007305838, 'public.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081009455, -0.0025875957, 'compromised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010274529, -0.0086246645, 'decisionmakers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008296427, 0.0022463668, 'versus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009627719, -0.0004183049, 'pillar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096698925, 0.0029585382, 'Rehabilitate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00920547, 0.002366646, 'pillars:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009671036, -0.0014649797, 'bioenergy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006261873, 0.008938971, 'ENERGY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009169377, 0.0019902615, 'mandated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009519663, -0.0088948775, 'allocations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076381867, 0.025312042, 'Prior')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009973869, -0.006150028, 'develop,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010258229, 0.008231412, 'GDP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007824114, 0.0018679131, 'blend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009673354, -0.008048716, 'nevertheless,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105177825, -0.0018192935, 'unilateral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008931074, 0.003982723, 'executive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009040193, 0.013770238, 'eq,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008573754, -0.0074963095, 'episodes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01179081, 0.01223264, 'Contribute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011127563, -0.007930247, 'shall,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010261699, -0.0058454047, 'warm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009964498, -0.012930092, 'ancestral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00884075, -0.0052308063, 'sales')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00983345, 0.0008670909, "Kingdom's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011670244, -0.016243286, 'suffer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010889426, 0.018405613, '2029')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096738, -0.007902664, 'driver')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009173631, -0.01283805, 'distribute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009048554, -0.009424652, 'specialized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009598371, -0.003769912, 'out.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009171846, 0.0062194206, 'Incorporate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004827567, 0.008318377, 'would')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008064676, 0.012364311, '(LEAP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087679485, -0.0003490141, 'Barriers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009884092, -0.012672726, 'requiring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008802065, -0.0071044285, 'past,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007939949, 0.017662145, 'Assembly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009002793, -0.0022127274, 'stored')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013066339, -0.009590244, 'understanding,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008628524, -0.007304892, 'soil.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007925681, 0.011901598, 'Home')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011734715, -0.013524294, 'erosion;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0002546099, -0.0063562784, 'In')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008335185, 0.0005979801, 'Eritrea.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008989062, -0.0033694233, 'exceeds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091058845, -0.007773349, 'test')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009045522, 0.0126315765, 'Commerce,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009229714, -0.007020928, 'moves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010764603, 0.016910449, 'CO2e.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012204712, -0.008371747, 'academia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009964853, 0.019217068, '(2015),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009855832, -0.012115778, 'favouring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009113566, -0.0075312206, 'proliferation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009016183, 0.0010668302, 'Aral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009302894, -0.00841832, 'overcoming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008470127, 0.013494778, 'Low-Carbon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577635, -0.008768682, 'evidenced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008520427, 0.0098210545, 'Designated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010215355, 0.017163713, 'Assumption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012205421, 0.020276101, '(PFCs),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010307232, -0.012041166, 'small,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009651272, 0.0073012346, 'Watershed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008998382, -0.00022501046, 'operated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066502597, 0.0069530546, 'Strip)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008526468, 2.7771015e-05, 'Dominican')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009182867, -0.006060067, 'Belize,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009199478, 0.0018113544, 'Temperature')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009096657, -0.010089154, 'elderly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008731959, -0.006501352, 'elimination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009723063, -0.007726035, 'connecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068264445, 0.0111969765, '1.4.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0053326497, 0.013146583, 'ee')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009537397, 0.00858841, "Somalia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009288356, -0.0023946469, 'ultimately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008667985, -0.01033511, 'pools')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008668541, 0.009714476, 'Demographic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009741429, -0.008344822, 'situation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010107864, 0.0046372083, 'FCFA-US')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006930471, 0.0050178748, 'Torchage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009046493, 0.012554009, '2003,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009906604, -0.0015318539, 'Northern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009072823, -0.0032688845, 'Nonetheless,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008918416, 0.0073001357, 'km2,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009898764, -0.0055826386, 'promises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007870641, -0.00204674, 'metro')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009200431, 0.008751142, 'BAU.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009705163, 0.012179666, 'LULUCF.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009957564, -0.011318269, 'emergent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009336689, -0.009640926, 'maximise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008502039, -0.0022424038, 'feet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009880398, -0.007972146, 'noting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009185517, -0.0014139272, 'prospective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00917689, -0.011233816, 'reservoir')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009753946, -0.01565819, 'pay')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076552154, 0.010889004, 'English)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008306526, -0.0033344664, 'g.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010554389, -0.0067168996, 'eradicate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00841202, 0.013033325, 'LEVEL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075939368, 0.010054077, '5.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090480475, -0.0014650791, "state's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072582816, 0.00072301907, 'level')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080216555, 0.0024043624, 'plus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009844673, -0.008995407, 'solely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00799119, 0.013604331, 'Census')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008068434, -0.007618553, 'rebuild')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006981556, 0.006620188, '550')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008083473, 0.0067615374, 'Shortterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00918181, -0.007980143, 'felling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010578855, -0.012222174, 'creation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01063892, -0.005895341, 'mention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008131694, 0.0045999987, 'Depending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010243262, 0.0032752736, 'subjected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009236903, -0.0010092516, 'fuelled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010298227, -0.016504066, 'youth,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011494757, 0.013090525, 'IPCC.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009726523, -0.007317246, 'responds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008417814, -0.0030445952, 'GSDS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009551235, -0.0037233206, 'achieved,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079070395, 0.00492347, '85')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011446898, -0.0020395254, 'frameworks.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004842705, 0.004435049, 'due')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009900886, -0.0018883764, 'metres')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007946312, 0.005623251, 'MOECAF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008101346, 0.005878793, 'Village')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006511539, 0.0020422766, 'private')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089286305, 0.014946672, '2010),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009215592, -0.007500637, 'generates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106846625, -0.0076871044, 'confidence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009767345, -0.014709235, 'disturbances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008238366, 0.0042840904, 'TNA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009022953, 0.01330739, 'INC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010398629, -0.013296125, 'decent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009897504, 0.000503779, 'prioritisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089787785, 0.010458968, '(emissions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011171135, -0.012560461, 'flood,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004771999, 0.0077085327, 'well')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009599386, -0.0023209034, 'stays')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007917839, 0.0017092355, 'Around')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009955486, 0.013510085, 'Consultation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011372484, 0.025749197, 'GgCO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009297986, -0.008213985, 'highlands,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008308314, -0.0014173958, 'shaped')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008972904, 0.00670469, 'Trading')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00868613, -0.010346299, 'irreversible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007380042, 0.0030138595, 'am')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577813, -0.015458449, 'supplies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00864744, 0.0005535881, 'reveals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01046992, -0.013494143, 'efficient,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00881388, 0.0009121383, 'Salvador,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012457555, 0.01542499, 'perfluorocarbons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01003265, 0.0015747376, 'Differentiated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069790455, -0.0042217863, 'climdTe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008734277, -0.010134312, 'justice,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010524928, -0.006956721, 'consumption;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009357484, -0.0017748637, 'reviewing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008485629, -0.007929855, 'malnutrition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069972547, 0.009944863, '18.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011344111, -0.016757876, 'societies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170355, 0.011534799, '(equivalent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009575989, 0.003928514, 'Entity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009262919, 0.0109845875, '21,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009330576, 0.01606881, '(2013);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008292067, 0.007299545, 'LUCF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008764104, -0.00588981, 'feedback')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009010356, -0.005481489, 'hydrographic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010117885, -0.009267673, 'generations.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009192844, 0.017675111, 'PROJECTS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00973745, 0.010109782, 'excluded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010601306, -0.010752601, 'developments,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009783755, 0.008618467, 'Scientific')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005613546, -0.0030267206, 'cumul')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008420623, -0.00083909306, 'MOA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009031145, -0.001615566, 'office')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009963298, -0.008697488, 'proactively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009676702, -0.01134051, 'capital,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008147237, 0.0013906605, 'Moroccan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099383565, 0.0017138583, 'costed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009907035, -0.00022951038, 'analytical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008510733, -0.0031455096, 'association')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100158835, 0.0023921856, 'Capacities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009855095, 0.0021261575, 'baseline,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011159547, -0.01833222, 'scarcity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010193491, -0.009118801, 'explored')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110424245, -0.014314469, 'location,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072097224, 0.0026587907, '(between')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006029706, 0.0113465525, 'waste')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00841833, -0.0031393606, 'surveys')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00913984, -0.0035989422, 'budget,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009826481, 0.0004909594, 'Strengthened')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250345, 0.015152025, 'Rise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010707469, -0.012368866, 'topics,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010049462, -0.0064223385, 'methods.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008190469, -0.0014132088, 'effluent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009630545, -0.009567059, 'streams')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010145081, -0.0065208897, 'smallest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008661806, -0.0036138846, 'latter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011111849, -0.006669387, 'monitoring.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007978771, -0.00040144677, 'broadcasting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0061843824, 0.0056174244, 'fuel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008615688, 0.008412767, '(GEI)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008677636, -0.0043932293, 'ice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007949126, -0.00048753773, 'kept')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008913652, 0.017105304, 'Option')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008620164, -0.0027630078, 'ricegrowing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088148, 0.0042070337, 'Operational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008401399, 0.0012389814, 'Morocco,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008035562, -0.0005434189, 'stone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009040699, 0.016538199, 'Conversion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00932669, 0.0008894643, 'representative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010981517, -0.012969456, 'seasons,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010697156, -0.009048338, 'tackling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008651589, 0.004215994, '1,500')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009363653, -0.00060503045, 'produced.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009398267, 0.0072772955, '18%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008975934, -0.00548189, 'Egyptian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060033994, 0.0021681865, 'Ethiopia.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010115995, -0.014569486, 'felt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009709267, -0.009680711, 'modal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009598963, -0.004837028, 'systems:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009049601, -0.004320072, 'energysaving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011204529, -0.014401345, 'challenging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078188935, 0.010483661, 'BiH')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008332647, -0.0038658914, 'modified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078019574, 0.008733988, 'ECOWAS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008381097, 0.0027471895, 'Setting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008785974, -0.007763642, 'derive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010192112, 0.0040911552, 'Mining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077875084, 0.0059391023, 'PAGE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009531681, -0.008118525, 'coC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008388301, 0.009965459, '2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006589836, 0.0015908787, 'pour')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007985755, 0.005170998, '17%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010410902, -0.0020773667, 'implementation;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007385316, 0.003210456, 'GIS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007814995, 0.0019534212, 'Saving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010156333, 0.013060059, 'Germany')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009226814, -0.013701326, 'ports,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009391575, 0.0035520564, 'Korean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009022856, 0.00888887, 'Timing:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845478, -0.008989717, 'true')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01019594, 0.00894359, '(GCF),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010460042, -0.0068493285, 'conservative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009861858, 0.0006987959, 'cover.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008809985, 0.014418285, '2012).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009638173, -0.011549283, 'naturally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009674175, -0.010392139, 'has,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009002704, -0.0025398575, 'degasification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098382365, -0.0021240618, 'landfills.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008938165, -0.003964214, 'Though')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010701909, 0.0030801932, 'framed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01111489, -0.017806297, 'equality,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009340641, 0.007657754, '140,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009655317, -0.008331703, 'visible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010068906, -0.009186712, 'consuming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010781266, 0.007967874, 'Ministerial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007924055, -0.009480428, 'invasive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074255955, -0.00051706645, '3-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086561525, -0.00974849, 'disappearance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009284433, -0.00077850505, 'sourced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00828974, 0.0025560737, 'Safety')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011139056, -0.014676811, 'communities;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075512957, 0.0045437263, 'only.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011776353, -0.0057483274, 'bilateral,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008622334, -8.303885e-05, 'finally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009448773, -0.0067515117, 'communes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011274589, 0.008839888, 'Communications,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010857272, -0.0138595635, 'reliable,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00947797, -0.0039303633, 'containing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009893194, 0.010058535, 'Republic.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007461219, -0.0026548558, 'monsoon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010556947, -0.006708899, 'plans;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011741619, -0.009190608, 'island,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073336717, -0.0076728575, 'grassroots')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075197336, 0.008032165, 'NOx')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008770617, -0.008727463, 'toll')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009096212, 0.0018259771, 'broadbased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009066088, -0.006990848, 'stabilize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008466478, 0.01476198, 'PARTY:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010013992, -0.005040275, 'cultivated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009616909, -0.0072788796, 'falling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010640004, -0.0151032, 'barriers,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008309335, 0.005133332, 'CPDN.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009573637, -0.010861047, 'agro-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009090339, -0.0061785975, 'stage,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007286398, 0.0014319047, 'v.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009279568, -0.008623892, 'clearing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008532562, 0.0044535347, 'Phasing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006837096, 0.010198119, '8.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010099494, -0.0067502386, 'cooking.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068793227, 0.011779787, '7.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008253973, -0.00065578404, 'valley')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008648981, -0.007005535, 'adjacent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00853706, -0.006795901, 'elevated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009659382, -0.008256238, 'agronomic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009379734, -0.0007755261, 'Flooding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011505508, -0.014391886, 'gender,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012511326, 0.010825639, 'Parliament.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009999139, -0.011869999, 'limited,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008768607, -0.0058479505, 'biodigesters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007793932, 0.011726607, '2017,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008544577, -0.007910756, 'backup')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008899678, 0.0008847432, 'Lasting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011126524, -0.011341147, 'industrial,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00940553, -0.009484038, 'drying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010186937, -0.004524313, 'activity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010303288, -0.012186672, 'regional,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007663378, 0.011938071, 'CAIT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008549397, 0.025128279, 'Produce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007936608, 0.0019853811, "Israel's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011297431, -0.0133533515, 'restoration,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010053932, -0.008935496, 'performance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067926864, 0.014506485, 'Light')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009519586, -0.010436109, 'insects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008197295, -0.006246032, 'with,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072875507, 0.005626597, '(MW)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008568375, 0.004889382, '(RCP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00760813, -0.0030938599, 'What')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008192351, 0.003771941, 'arboriculture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01096285, -0.009519493, 'changes;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008590768, 0.0030610254, 'dolo')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008790782, -0.011276078, 'emphasize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007469045, 0.011840742, 'ème')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009599137, 0.00899974, 'Brief')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007802121, -0.0018802984, 'GoTL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008976469, -0.008323861, 'passengers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008367376, 0.0012195066, 'occupied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010064475, -0.008289734, 'allocating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008150417, 0.013165182, '1.9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01010476, -0.013421356, 'important,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01009747, -0.012280383, 'important.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008661665, 0.015943227, '2004.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004978362, 0.005153138, 'growth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00892974, -0.0013021299, 'gasoline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008784993, -0.0072795083, 'commercialization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009978508, -0.010108379, 'including,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085612, -0.004689192, 'parallel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007792925, 0.008260638, '56')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00883338, -0.0032642959, 'Maintain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01025043, -0.01308005, 'feeding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008268867, -0.006162262, 'endangered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011399209, -0.0028202771, 'communication.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0046184286, 0.007032776, 'EXECUTIVE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008239239, -0.0030751838, 'whole,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009263247, 0.012270479, 'Determined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009000532, 0.015900645, 'N2O,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008070641, 0.006257753, 'Job')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009351107, 0.010015146, '2025).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076093064, -0.0051433383, 'welcomes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008831711, -0.0077156397, 'shape')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006403852, 0.0038213842, 'between')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010155708, -0.0035385927, 'undergoing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01080917, -0.015505103, 'recurring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100812595, -0.0031349475, 'qualitative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008052354, -0.0014409485, 'LNG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010421785, -0.010302798, 'experts,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009047267, 0.015811466, 'Costed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007990575, 0.0005533252, '(through')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00983879, -0.015554585, 'dense')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00811233, -0.0031764053, 'corridors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008011835, -0.0050306027, 'simplified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008712274, 0.011754532, 'Advisory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091755735, 0.021215733, 'Internal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008104717, -0.0022036352, 'nurseries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107868565, 0.0141934045, 'Group,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008240984, -0.00017084593, 'rough')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009130563, -0.0039928616, 'NDCs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008660716, -0.0045974255, 'whereby')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008998267, 0.014275782, 'Nationally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010534353, 0.0055610184, '(Article')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0123576, -0.0014896968, 'land;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008427364, 0.009093728, 'Horn')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008487552, -0.0029101383, 'peach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097923875, 0.009847869, 'Disease')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076930444, 0.012527377, 'Diesel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009173226, -0.0057517635, 'appropriate.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009380418, 0.010864337, 'Transition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009422278, 0.007826853, 'Formulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008676475, -0.0022362499, 'purpose,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011543771, -0.010932732, 'stoves,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00823984, 0.005248182, 'cm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097351335, -0.006190321, 'urbanisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009453917, -0.0074363546, 'anticipate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092167985, -0.004290582, 'verify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010513893, -0.0057646716, 'information;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007651495, 0.0029385416, 'Individual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010565272, 0.018861583, 'Mean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011093352, -0.0056027286, 'communications,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009362991, -0.0073677963, 'exceeding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010379136, 0.0075394455, 'Forests,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009771512, -0.0064048483, 'canal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010350247, -0.002856715, 'enables')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008206926, -0.006204017, 'catastrophic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009045886, 0.011425617, 'Parks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008869954, 0.0028338796, 'undertook')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010254011, -0.007981048, 'trained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0044558356, 0.0060931444, '2030,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009812832, -0.0021053676, 'businesses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006659607, 0.009121964, '(-)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008352671, 0.004212434, 'sources:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010052473, 0.0039937426, 'Development.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008959698, -0.006639351, 'seem')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01161486, 0.016090631, 'Secretary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007895762, -0.0069157975, 'walking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009898856, 0.014658936, 'Act.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004742816, 0.007249555, 'order')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009131671, -0.013070786, 'infectious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008909393, 0.017571263, 'Used')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007335888, 0.014870167, 'INGEI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009527809, 0.014083825, 'Transport;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009031682, 0.016370246, 'Appendix')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0053527746, 0.009115568, 'solar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009178185, 0.017475368, 'Regions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009019953, -0.004397158, 'Rainwater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008432875, -0.0029879976, 'standalone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170983, -0.003371237, 'tendencies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0041712625, -0.0012102822, 'Ibid,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00868019, 0.011858315, 'Starting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011595888, -0.0131259635, 'education.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008972203, -0.0023199583, 'Settlements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009623211, -0.006323145, 'requirements.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010074788, -0.009429459, 'on,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075565763, 0.009686571, '6,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008803742, 0.021813229, '2013:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010682633, 0.009948313, 'equivalent,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072249426, 0.012934496, '3.7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008247493, -0.000422879, 'waste)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010166169, -0.012903212, 'supplies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008787239, -0.0016904174, 'inhabited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063238693, 0.010580843, 'SECTORS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008620963, 0.0066157654, '52%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007265531, 0.0059537482, 'bound')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009672006, 0.002796558, 'Gambia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091819335, 0.0016184018, 'tends')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0041235182, 0.00011943267, 'such')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010002193, 0.00075479515, 'commissioned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009932948, -0.008387946, 'geological')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009209283, -0.0031947095, 'exceeded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009647069, -0.008857781, 'intermediate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721639, -0.0075466894, 'declines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008176982, 0.008050353, 'Beef')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010558037, -0.0068596415, 'highlighting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538947, -0.008110375, 'acceleration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105593745, -0.002933189, 'finalizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006745604, 0.0034939765, 'DIRECT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009398266, 0.0061014523, 'absorbed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00913947, 0.0024225414, 'Panamanian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008988546, -0.0010105034, 'rotation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010158997, -0.014662244, 'thing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00959483, -0.011320376, 'instability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007718275, 0.011090274, 'USA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008980753, 0.020772386, 'Communal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007364236, -0.003273158, 'developing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008071994, 0.011517004, '(EE)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009383019, 0.00040732344, 'studied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008752676, 0.011978768, '10-year')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008084247, 0.0044171666, 'admirer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010300368, -0.004756625, 'contingency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010391009, 0.022767132, '(MtCO2e)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093454765, 0.007868364, '(TNA)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009200928, -0.0016116296, 'mainland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004341098, 0.008783008, 'not')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009999724, -0.006147106, 'organize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010683552, -0.0060253157, 'authorities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007065299, 0.0002208356, '•!')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01026243, 0.013290311, 'People')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009603583, -0.007978133, 'surfaces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010033701, -0.007740385, 'strengthened.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008923024, -0.0051207957, 'conditioners')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088082515, 0.0039438517, '21%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00910777, 0.018849703, '2005)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0053559504, 0.005813829, 'Republic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076289973, 0.008440853, 'Wood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010243322, 0.00037474424, 'grouped')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009765162, 0.019109035, 'Installed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076818145, 0.010260581, 'Secondary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070113605, 0.012479828, 'Outputs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01397053, 0.017524952, '(CH4);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009836068, -0.006969205, 'strides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008764362, -0.015995998, 'especially,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007540871, -0.0031745043, 'satellite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009038945, -0.0104374755, 'chronic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008828694, -0.000934657, 'discounted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009931916, -0.011241951, 'concerns.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009395967, -0.0142229665, 'scales,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009459642, -0.0071236305, 'preexisting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007092035, 0.00848874, '27%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009897264, -0.011236167, 'adequate,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008441175, 0.009993172, '110')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009256093, 0.003936135, 'Performance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008378231, 0.0047815396, 'Surface')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012769823, 0.022139797, 'CO2)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073124664, 0.0070342314, 'HFCs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010039597, -0.008756056, 'considerations.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009433349, 0.016439946, 'Nationwide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008493604, -0.007515494, 'compounded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008198892, 0.004060247, '3,500')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109687885, 0.010538226, 'fluorinated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008287191, -0.0091078095, 'vi.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009885368, -0.0016751002, 'scaled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843687, 0.014964495, '(NCSA)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010133354, -0.009304151, 'plantations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008795468, -0.0051579596, 'measurement,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008612009, 0.012801585, 'Summit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008664457, -0.0071836365, 'supply;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004401203, 0.007978133, '-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009736948, -0.00054051814, 'regulative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008872066, 0.0072114575, 'cabinet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009383427, -0.0074537615, 'helping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006909928, 0.011896056, 'NF3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006601447, 0.011323045, 'U')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012534042, 0.00084102125, 'Security,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010122019, -0.008047136, 'mobility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008381369, 0.0058328793, 'twentyfirst')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010048626, -0.010519485, 'pastures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073462576, 0.01151055, '6.2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00997608, 0.012701112, 'US.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008117241, 0.0065007336, 'Justification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008539069, 0.00050581555, 'depicted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075568887, 0.009079504, 'UNFCCC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010100822, -0.007994561, 'plantations.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008751829, -0.0111698685, 'compensate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01056711, -0.009041182, 'actors.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009164069, 0.0052549727, 'Scaling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008576057, -0.0015178481, 'regarded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070850397, 0.0058510094, 'SLR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010099964, -0.009086896, 'fuel,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009637215, -0.0036951005, 'overview')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010081458, -0.0076827593, 'private,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008306507, 0.00062670466, 'comprised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008648546, 0.008497048, 'Conditions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577648, -0.008355034, 'geothermal,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01028739, -0.010201421, 'sold')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007677054, 0.013723901, 'GOE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010302309, -0.0100901555, 'cycling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010127404, 0.015618909, 'Programs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011786845, -0.0053590597, 'temperature.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008179543, -0.0003777241, 'fixation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009809915, -0.007943748, 'large.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0120077925, 0.0059059625, 'Nations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011233729, -0.017396292, 'youth.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008115136, -0.00572452, 'tariffs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008842875, -0.0098495595, 'indoor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005617195, 0.0122105125, 'Plan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010782475, 0.008478999, 'Plans,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009428318, -0.002826713, 'connectivity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009358494, -0.007652934, 'intermittent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008491048, 0.0021620218, 'NCCAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008050946, -0.0015584361, 'Marshallese')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010443836, -0.0112861125, 'limited.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00903224, 0.01659275, '2000)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070983777, 0.0013776202, 'NGOs/associations:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010265541, 0.000995517, 'democratic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0055289553, 0.012954396, 'emission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009396599, 0.0125950435, '0.7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008706255, 0.003006486, 'includes:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083895, 0.0035936732, 'GHG,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006815129, 0.010127831, 'than')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102571305, -0.013625851, 'assuring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010924085, 0.0025361422, 'invite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009122549, -0.0049012154, 'bear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010316173, -0.011156757, 'line,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009414582, 0.0074979933, 'Fossil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075914464, 0.009716116, '7,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009222558, -0.0032246718, 'intersectorial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00878212, 0.016366096, 'GWP100')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008879207, 0.0038806268, 'attained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009319972, -0.0037863054, 'entails')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010138557, -0.0027545611, 'Livelihoods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008657988, 0.011211026, 'Cattle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008787919, 0.003844391, 'Ocean,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108829, 0.009980937, 'Contributing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009944682, -0.0067263264, 'lighting.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009145502, 0.0063987477, 'Storm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008141074, -0.0050715264, 'convert')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011144941, -0.015290139, 'inundation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00857365, 0.011947272, 'Income')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073947236, 0.0046605854, 'RM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008647971, 0.00030190466, 'attached')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00948529, 0.013289529, 'System,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01110761, 0.0014961453, 'agencies:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008011448, -0.0035260606, 'dumping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010020774, 0.011865393, '(ZINDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009699604, 0.0042233807, "Lucia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008321227, 0.0041746236, "Barbados'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008980356, -0.0067790337, 'ideal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006321415, 0.010975773, 'Provinces:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111699775, -0.0053841597, "island's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075304015, 0.009905486, 'Replace')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010140477, 0.00869482, 'Technology,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102203265, -0.0016927661, 'Tarawa,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009402945, 0.0074754576, '1,500,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009247509, -0.0057365014, 'lights')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088089015, -0.0009797646, 'labeling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011364877, -0.015344636, 'diversity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009578071, 0.004236314, 'Development;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009168944, -0.0075242934, 'regard.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009680429, -0.008484701, 'tourists')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007496116, -0.007300054, 'country´s')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010626946, -0.0027065363, 'undertaken.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008915949, 0.011102663, 'ZAMBIA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538994, 0.008160886, '300,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013012796, 0.025027271, 'Communicated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110086715, -0.009497428, 'responsibilities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009168596, 0.011606413, '1995.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008718184, 0.009394235, 'Modeling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008476168, 0.009127496, '31%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089691905, -0.008415861, 'dispositions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008878765, -0.0015138382, 'Jordanian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009503948, -0.00021413343, 'presentation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010159927, 0.010169272, 'Responsibility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009179893, -0.0062752236, 'lowcost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007912211, 0.001765913, 'Raise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008399016, 0.002408043, 'Venezuelan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008194329, -0.007785216, 'debt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009281409, -0.008520243, 'south,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008982303, -0.0030890943, 'absorb')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008058888, 0.016122412, '10:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009416608, -0.0042838682, 'respecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008306488, -0.008034732, 'vibrant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010389125, -0.0013557046, 'included.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009573168, 0.005417398, 'State.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008430357, 0.00639606, '1200')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009767102, -0.00048644375, 'Niño')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008036909, 0.00021188644, 'iv)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008418677, 0.0107697835, 'Element')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007917963, 0.0137475245, 'Standard')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012947561, 0.011529934, 'Landuse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010476426, -0.007932093, 'conventions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007835081, 0.0003079919, 'DSM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092520695, -0.0060310024, 'recovering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010606577, -0.00643774, 'appliances.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095098475, 0.01676866, '4),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008459128, -0.0019989498, 'destined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008244697, -0.0050743376, 'crude')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090186875, 0.014323234, 'Adaptation:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00858963, -0.004692596, 'broadly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071959323, 0.014190215, 'O.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009091283, 0.005503023, 'approaches:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068064276, 0.00545902, 'Sao')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008522252, -0.001359685, 'Evaluate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00879832, -0.00020817258, 'ete')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009472521, 0.009679717, 'eq)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008580661, -0.00038430723, 'closed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010533833, -0.0058906097, 'user')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010503891, 0.018678376, '2027')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010224213, -0.010425089, 'needs;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009110249, -0.009682644, 'destination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010911315, 0.005932309, 'Communities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00749166, -0.0014769294, 'ethnic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009163614, 0.014585181, '2030),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009476176, -0.001978225, 'sink,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009320433, -0.010608878, 'outbreak')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009835485, 0.021474931, '(IPCC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075195776, 0.0033482593, 'Banjul')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007777564, 0.005329232, 'Apart')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008451855, -0.011329905, 'sharp')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008531099, 0.0024348854, 'pledged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008693443, -0.0012603847, 'out:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092155235, -0.008969613, 'households,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008461788, -0.004826581, 'archipelago.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008451918, 0.00060631026, 'sell')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112239905, 0.0004936564, 'Celsius.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087911645, -0.009277913, 'offering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010872183, -0.01677806, 'local,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008326247, 0.004115015, 'Similar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008661751, -0.0016799801, 'ends')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093838265, 0.0013667122, 'summarises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010272072, 0.0069386484, "INDC's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007814766, 0.0046822485, '%),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008791498, 0.007501733, 'enactment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009938611, 0.004892866, "Zealand's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008736012, -0.009366425, 'bleaching')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009136601, -0.009960217, 'terrain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007130439, 0.000766179, 'otherwise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009599412, 0.0011163891, 'articles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009973533, -0.009208826, 'alia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01133099, -0.0071218954, 'evaluating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009195153, 0.02420469, '2016-2021')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007613911, 0.00937038, 'Peruvian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081687, -0.009529624, 'meat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009198746, -0.012509396, 'producers,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012146051, 0.0064910515, 'report.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090391515, -0.0034057703, 'Guarantee')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095028505, 0.0094186915, 'Managing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01060283, 0.018918833, '1990-2012)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007816101, -0.0030736206, 'senior')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009546247, -0.013556223, "communities'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008591209, 0.00827691, 'June,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067750076, 0.014503598, '2.8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00836294, -0.0019449583, 'hit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072564096, 0.013297619, '11:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009294425, 0.00513416, 'Designing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009990937, -0.00756083, 'mechanical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00851054, 0.015036702, 'Reform')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010422854, -0.0006054234, 'reduction;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008134734, 0.004836478, 'SLM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008476155, 0.0015094886, 'Salvadoran')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008587427, 0.004374858, 'Across')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00992784, -0.015419135, 'destructive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008712426, 0.014053344, '2013).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011710739, 0.0055081192, 'Resources,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008862137, -0.0008481746, 'noticed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075629954, 0.0027100965, '(10')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009095908, -0.008998756, 'tremendous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010538445, -0.009666827, 'playing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007505269, 0.010362736, '$US.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008722178, 0.020265589, 'Way')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009792558, -0.008087137, 'industrialized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008619692, -0.0072809663, 'devastating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007781475, 0.0034161843, 'MoT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670204, 0.012187016, '"National')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00801998, -0.004854219, 'labor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085443305, 0.009380437, 'Experts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008969504, 0.007922814, 'missions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009063841, 0.00010315703, 'tracked')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010150774, -0.0018380894, 'strategie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00906122, 0.02134195, '(Source:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010217367, -0.007701372, 'changeinduced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008337761, -0.0069237687, 'satisfy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009886726, -0.00740025, 'increased.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008154716, 0.004070336, 'Atmospheric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00806982, -0.0013432462, 'axis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077493587, 0.009427542, 'N20')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008964609, 0.00018038828, 'ease')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078010364, 0.011113022, 'kT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008671702, -0.0032286278, 'total,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008075982, -0.00010516539, 'kits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008226211, -0.00067782286, 'modules')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009294922, -0.0100745475, 'detrimental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008132224, 0.003010635, 'gained')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00968302, -0.0097660255, 'desertification.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009804265, -0.011642416, 'tools,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009600905, -0.008716583, 'salinization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089380555, 0.015213241, 'Programme.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008374112, 0.0063648075, 'Bay')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008538333, 0.012909799, 'Code;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007329477, 0.006149335, '59')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009518768, -0.009922553, 'exports,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096970415, 0.015767507, 'Waste;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008080547, 0.013199929, 'Nacional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009465964, 0.0063041723, 'Farming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010943321, -0.011018971, 'event,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007962423, -0.005847513, 'coOt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009087149, -0.0030470376, 'hold')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008928857, -0.00728563, 'overexploitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008440863, -0.0036183824, 'keys')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008918618, -0.0050340816, 'Better')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008116026, 0.009248815, 'Pags.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009345135, -0.00816752, 'filling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086400835, 0.0040055644, 'target:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011148381, -0.008831042, 'uses.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009765585, -0.0073883007, 'Creating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009821365, -0.01231348, 'precocious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007972075, 0.018308803, 'Chapter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100270435, 0.0013032751, 'uncontrolled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00945591, -0.007044345, 'droughtresistant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009166997, -0.011781802, 'intensifying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008665542, 0.00068155804, 'earth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009176527, 0.005484633, 'baseline.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010010393, -0.0023845737, 'Nigeria,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008926415, -0.0073340205, 'recharge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009979992, -0.0006151328, 'millions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071885446, 0.00096383895, 'donnees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008444187, -0.0035153674, 'holding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090789, -0.0012881344, 'woodenergy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00951031, -0.010128165, 'results,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008473373, -0.011843976, 'unpredictable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010409529, -0.0011449106, 'finding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008015463, 0.0018445103, 'fossil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010931551, -0.007482557, 'prove')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009653176, -0.012917131, 'parks,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071652858, -0.0010822444, '(notably')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010506294, -0.0047360193, 'applicability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00985924, -0.012041887, 'profitable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008312916, -0.0074239024, 'low-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009252283, -0.005802946, 'additional,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00978386, 0.010694968, 'Biofuels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008488532, -0.006803898, 'themes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009633619, -0.008940145, 'stations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01032795, -0.014291424, 'optimizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008761624, -0.009488623, 'accommodate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010452221, -0.004626604, 'cookstoves,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011195117, 0.010802199, 'Processes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010156405, -0.00750669, 'distance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008768277, -0.0056202323, 'inches')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007225667, 0.0063364604, '9.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007958933, 0.00075634173, 'ozone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071806777, 0.0056615546, 'ISO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090060495, -0.009545514, 'melting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008448332, 0.007040171, '3000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008554246, 0.0007883059, 'lesson')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008633747, -0.00787613, 'forefront')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008820169, -0.008958372, 'array')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008554741, -0.005032935, 'producer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006806296, 0.0038544512, 'Boucle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006645454, 0.0056811436, '67')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007923195, -0.010334045, 'root')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009476075, -0.008949642, 'relocation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009481847, -0.010682208, 'utilities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008747884, -0.0057169423, 'investment)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008390649, -0.0054053008, 'crossborder')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091500785, -0.006401429, 'network.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068544573, 0.0010123954, 'has!')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009024475, 0.018318158, 'Project.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008314464, 0.00076445966, 'Congo,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008370999, 0.008282822, 'Information')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010905442, -0.000998386, 'account.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008862369, 0.0021794906, 'prices)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008681106, -0.0041446793, 'arrive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009009874, -0.009234275, 'removing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009429586, -0.0033689523, 'landfill,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008855851, -0.0073082144, 'mines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008672804, 0.0051336265, 'Territorial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009104061, -0.006738958, 'agriculture)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008529544, -0.004926614, 'owing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071102018, 0.004398795, 'da')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008095381, -0.002212118, 'benchmark')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008698696, 0.0020714472, 'validate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075544277, -0.0031378777, 'beings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009355414, -0.009799529, 'capturing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010271052, 0.00016227436, "Lanka's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092290575, -0.008111141, 'growth;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00876992, 0.0030540717, 'Struggle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008956493, -0.0072836066, 'longterm,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00884984, 0.015410018, 'Units')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008085106, 0.0082126055, '0.01')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008361223, -0.0018327193, 'sub-Saharan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007573755, -0.0006858604, 'paddy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008054172, 0.002421384, 'WTE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009976582, 0.005999179, 'Country,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011073881, 0.0182695, '(IPCC),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008957858, -0.014040505, 'sites,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008813928, -0.008120653, 'remove')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009640254, -0.0059870565, 'addressed.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082744025, 0.015782224, 'Yearbook')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0012004551, 0.0010777072, '----------------------------------------------------------------------------------------------------------------')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008215783, 0.008570013, '(reduction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007626362, 0.0047276635, 'GEI.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845216, 0.0004867655, 'Examples')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009840191, 0.01886457, 'gases:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00786506, -0.0019481459, 'background')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009366961, 0.014406208, '2010).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083972495, 0.0019031836, 'hypotheses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009482253, -0.008340769, 'desire')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007894852, 0.008482876, '1,600')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085257385, 0.0036146997, 'Firstly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008340704, 0.00027876312, 'Utilization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009235778, 0.010327713, "Faso's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009046636, -0.00415734, 'meaning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721752, -0.00443954, 'financiers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010249373, 0.016977176, '(PFCs);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264622, 0.0032775316, 'sequestered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007167672, 0.01052466, 'x')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822675, -0.0038985447, 'stabilisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010355367, -0.012039221, 'exact')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009519285, -0.006549021, 'recovery,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00880964, -0.008029674, 'ecotourism')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00893454, -0.0026693046, 'vulnerability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008922912, 0.007759686, '45,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008663659, 0.009775386, 'Climatic,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010397791, -0.009806878, 'uncertain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008079298, 0.0071488977, "Chad's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00992821, 0.007984363, 'baselines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008469644, 0.0011309459, 'carbon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008731152, -0.008261334, 'defense')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009761949, -0.011741971, 'ones.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010680012, -0.012848339, 'methods,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008674933, -0.0044136113, 'Extensive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009701828, -0.007054109, 'out,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007176413, -0.0021598085, 'RAC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009936686, -0.006749978, 'deficiencies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822196, -0.003227312, 'Arabian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009477578, -0.00672979, 'pertaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065285065, 0.010780215, 'CARIBSAVE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008903451, -0.004289686, 'banana')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008925434, 0.0069678775, 'Regulations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00921845, -0.00017780074, 'premised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065724305, 0.008693179, 'EQUITY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00845338, -0.00019379164, 'Gaps,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012588692, -0.0195319, 're')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008154075, -0.002304983, '(high')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00832923, -0.0051347814, 'meaningful')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010350778, 0.003905334, 'finalize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008475144, -0.0011091782, 'reaches')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007472987, -0.007980107, 'phosphate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010351267, 0.00984478, 'tonne')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010376918, -0.012257521, 'cobenefits,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009016343, -0.005913176, 'exhibition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010354158, -0.012676102, 'biological,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009586677, -0.011594995, 'benefits,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0053075776, 0.0060729627, 'have')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009623326, -0.0004535439, 'review,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008013653, 0.011245907, 'Bus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00960434, -0.0041285437, 'warmer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007737134, -0.0008598978, 'Earth,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011119317, -0.010978308, 'integrates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008715501, -0.0073145395, 'commensurate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008082155, 0.013128872, 'Mitigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01098231, -0.006743829, 'reporting,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009913043, -0.00443755, 'sectoral,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00885283, -0.006758758, 'long-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008567805, -0.001908936, 'reveal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009079176, 0.009468163, 'Fluorinated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006599619, 0.008564912, 'School')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00981246, -0.007083625, 'circular')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009405051, -0.0073491307, 'agrarian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007968608, 0.0014251521, 'mixed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008627693, 0.008069399, 'these')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427213, -0.008551525, 'resolve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010249696, 0.00479775, 'years;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009519314, -0.0041718353, 'source.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008472099, 0.002013755, '(a')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010260524, -0.0013757896, 'forests:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008629432, -0.0062391, 'tariff')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009488037, -0.0031307212, 'applies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008791067, -0.0032770692, 'encompass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008607736, 0.0030983957, 'LEDS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013353268, -0.0029609068, 'legislation;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008265718, -0.004610576, 'things')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011998004, 0.012380242, 'Contribution.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008467237, -0.0022121812, 'inspection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009587859, -0.0050757932, 'embarking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721068, 0.015436133, 'Figures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099482555, 0.01775075, 'SFG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008592744, 0.009951099, '19.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009101029, -0.010079209, 'flows.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009670615, -0.010826049, 'stabilizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082488265, 0.009598047, '68')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00912776, -0.003544837, 'firmly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010098081, 0.0012696298, 'fulfilment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070702047, 0.0023758702, 'SDG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008754132, -0.013212539, 'lakes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009386371, -0.01676469, 'seeds,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009716691, -0.008675305, 'relates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009891563, 0.0049277474, 'conclusion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01078726, -0.011292479, 'mobilizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010045332, 0.014316089, 'Revision')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0064314776, 0.010935741, 'FR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077857273, 0.0012002764, 'Nuclear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009193583, 0.0047225542, 'Agroforestry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011470424, 0.01731427, 'Inform,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009080858, 0.01437135, '2015-2030.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010655281, -0.014346544, 'phenomena,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007520546, 0.000689213, 'value:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009196525, -0.008473409, 'bodies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012329121, -0.024497472, 'lives,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009797645, -0.002287387, 'adaptationrelated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009123123, -0.005071208, 'alleviate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008802, -0.0068379333, 'structured')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009665474, -0.005748341, "countries'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009244856, -0.002544517, 'regulates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010322119, -0.008864241, 'consideration,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007675896, 0.0075142263, 'Rationale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085542705, 0.0152484495, '1980')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072311834, 0.0030017176, '8)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011142317, -0.0059932237, 'institute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010135803, 0.020713959, '(2013')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01069577, -0.018789029, 'assets,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008772089, 0.008394379, 'Spatial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008647476, 0.008579902, 'Types')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011745392, -0.0060381573, 'age')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009367354, 0.009577547, '750,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008802551, 0.008375378, 'validated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00785148, 0.001395011, 'Moringa')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009168783, -0.011068483, 'displaced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012556279, 0.006070408, 'inventories,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062699397, 0.009562403, 'F')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011519799, -0.018706253, 'reefs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01020828, -0.008090751, 'ban')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008525469, 0.009460328, 'Landfill')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009522197, 0.013838896, 'Non-Annex')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088031925, 0.010267875, '1,200,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010335727, -0.017020907, 'structures,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00795151, 0.0038730993, 'Including')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008261166, 0.004411379, 'online')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010145176, 0.0012235781, 'NDCs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008013944, 0.006358755, '3).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250331, -0.00989564, 'payments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009228814, -0.0017169128, 'adjustment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100306915, 0.004222225, 'stipulate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008149418, -0.00400689, 'peace')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088798115, 0.011430002, 'Direct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007637973, 0.0032407108, 'Bolivariana')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006020652, 0.0077247554, 'G.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008851575, 0.007625909, 'Federation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010224222, -0.01175086, 'knowledges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009506313, -0.001304907, "today's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068691373, 0.0029596915, 'MSW')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008507322, -0.008781158, 'battery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007564699, 0.009605722, '0.02')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008531653, -0.0023162165, 'domain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(3.0599556e-06, 5.0699407e-05, './')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009072915, 0.008181672, '(CSA)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009234667, 0.0060011223, 'ambition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008676941, 0.0038563127, 'Constitution,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009961645, -0.003515049, 'university')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010715353, -0.0066401926, 'arrangements,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00797417, -0.002881281, 'cattle,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009032693, -0.0032699364, 'domains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010687166, -0.0036917194, 'facilitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092825955, -0.00032714225, 'Terrestrial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009180606, -0.0011547783, 'Drinking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009788095, -0.0070547746, 'prevented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008983965, -0.0063357335, 'initially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010029494, 0.007401283, '2050;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009996114, -0.0047809337, 'departmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008088598, -0.0018634528, 'enterprises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008811161, -0.008970417, '(roads,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010600395, -0.0024186498, 'protocols')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011203191, -0.011295318, 'affected.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008069532, 0.01271589, 'Analytics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008455339, 0.0022205866, 'Situation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009111601, 0.00526399, '98%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007578426, 0.005988398, 'Maximum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010808873, -0.0047512064, 'renewable,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008607898, -0.008527813, 'flora')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008677036, 0.0081056245, '2500')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008924598, -0.0054432666, 'accompany')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008872534, 0.012103073, '1999,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010165283, 0.005251729, '5,000,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011328336, 0.0067723794, 'guideline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009161064, -0.00040126126, 'voluntarily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008667721, -0.00076833187, 'level)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009639114, -0.012933974, 'shore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008915588, -0.0012640902, 'firm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007463497, 0.0024252457, '%;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009251037, -0.005804054, 'execute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00801425, 0.0011302863, "Seychelles'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011337455, -0.010715678, 'equity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008981836, -0.004157053, 'aside')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008838115, -0.012106951, 'commodities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009042339, -0.0021353646, 'granted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008571009, 0.01515689, 'Self')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008692524, -0.0047009196, 'mountainsides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008717508, 0.012862545, 'NATURAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010667862, -0.009926155, 'principles,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008602677, 0.011450292, 'First,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00845483, 0.0015121263, 'cartography')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009618926, 0.0037562165, 'Located')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009487219, -0.011705174, 'guaranteeing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009807128, -0.0077928826, 'increased,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012688564, 0.022895247, 'Inventory,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011807031, -0.008239585, 'effective,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008133966, -0.0015861631, 'setup')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009214549, -0.0004898715, 'Seychelles.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075097056, 0.0007570286, 'belongs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074105603, 0.003176644, 'Bharat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008792659, -0.0057429196, 'seed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094506685, 0.019909177, 'Mitigation:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0040943655, 0.0016138152, 'Tuvalu')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077880397, 0.0017533295, 'Modernization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008257572, -0.003115244, 'roof')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010902875, 0.004338369, 'formulated,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009378049, -0.0077098194, 'poverty;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008177492, 0.003523504, 'accepted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010217194, 0.005503178, 'Responsibilities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008662241, -0.008501849, 'bigger')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010096966, 0.016331537, 'UNDER')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009327954, 0.0032929352, 'rolled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077588074, 0.008632517, 'REDD+,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007551503, 0.011685057, 'Town')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008489042, -0.0060858913, 'archipelagic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00928589, 0.02146106, 'Energie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077244593, -0.004162615, 'behavior')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009258379, 0.0052245506, 'Impacts,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009697493, 0.0003994443, 'Livelihood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008429054, -0.005589024, 'concepts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008825544, 0.0056380834, 'Society')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090564415, 0.004819948, 'emissions).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075563467, 0.010238276, 'UT-CUTS,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010009524, 0.002504128, 'verifiable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009490829, -0.005762692, 'accountability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009630722, -0.0024231847, 'guides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008866401, 0.0008379128, 'NAMAs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071403277, 0.003790321, '7)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008694641, -0.0032635205, 'Upgrading')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009226266, -0.006565376, 'results.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078937905, 0.0113612125, 'Out')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009818543, -0.012063695, 'emphasise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009993894, -0.010741459, 'supplying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060386118, 0.0087619675, 'H.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094369035, 0.014010373, 'LULUCF,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008253142, 0.0011636799, 'default')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010176399, 0.015274719, '2045')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008335058, 0.012679957, 'Flows')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010198782, 0.0017789672, 'references')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008458843, 0.0003192632, 'Take')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009163853, -0.008016562, 'silting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00864114, 0.0044175996, "Tobago's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008823365, 0.01037765, '0.5%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009429418, -0.0068466105, 'intentions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008699308, -0.0053665903, 'upstream')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009825384, -0.010366698, 'collecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008400192, 0.0072413706, 'Liquid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102860555, -0.011699112, 'improves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008189193, -0.006625717, 'fewer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007638315, -0.0015376186, 'soft')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011197251, -0.016718425, 'infrastructures.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010404666, -0.009253558, 'skills.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009081852, -0.010404352, 'lake')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009144921, -0.010587883, 'efficacy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009146574, 0.018752256, 'Adapt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007922555, -0.0041965754, 'Besides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008276831, -0.003952759, 'ponds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007081292, 0.0052473242, '21.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009618743, -0.008147729, 'presence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010888252, -0.006164107, 'visions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010253543, -0.011771099, 'sea,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008628921, 0.011285901, '36,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009141495, 0.009653501, "Korea's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008010353, 0.009849452, 'éq.)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008631409, -0.009415769, 'curb')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01082773, -0.013359278, 'are,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010174863, -0.012251249, 'crops.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008374862, 0.018453564, 'Renewal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012217573, -0.015512591, 'insecurity,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009850024, -0.013783396, 'units,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010627424, -0.011971067, 'touristic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079092, 0.0065067704, 'Liquefied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009584719, 0.0076975785, 'below).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00904738, 0.016508909, 'Transit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111727845, -0.010203776, 'response.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077260034, 0.01202429, 'eq/capita')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007293776, 0.007969256, '89')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008960736, 0.00016935631, 'produced,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009740968, -0.0045984434, 'signing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010356202, 0.0016061839, 'removals.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01067073, 0.00337666, 'Conservation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009471591, 0.0049786526, 'Systematic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010804651, -0.018025542, 'constraints,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007749136, 0.008884299, 'Copenhagen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011906961, 0.010121866, '(GCF)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010620765, 0.004234959, 'objectives:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009463357, -0.0033725724, 'historically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008587507, -0.0035056497, 'carbonlean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008478257, 0.015009445, 'UNEP,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008454728, 0.0033453892, 'Permanent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008534976, -0.005148209, 'gasoline,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009052482, -0.0067613553, 'smallholder')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009845525, 0.02113506, '(GgCO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008813206, -0.011298207, 'etc.),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008759134, -0.0008206017, 'validity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00924979, 0.021361748, 'GgCO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0061648507, 0.009614448, 'ii')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075859306, -0.0020187655, 'behalf')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008940038, -0.008974359, 'control;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008622665, 0.0015059424, 'funded)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00889751, -0.0035012024, 'questions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088465875, 0.017838141, 'Wall')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009383024, 0.008744592, '1992,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008687715, -0.00809663, 'shallow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004891779, 0.0061649075, 'UC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008866786, 0.012714693, 'CO2/2005')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009493889, -0.013008906, 'fields,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008256798, 0.006327288, 'refers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008451045, 0.002169623, 'piled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011316911, -0.01480957, 'training.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009525133, -0.008514909, 'instances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007643131, -0.001351337, 'calendars')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086100465, -0.005592967, 'other,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009818387, -0.010937002, 'reduce,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007885828, -0.0061880327, 'retention')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009752368, -0.007516496, 'significant.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010014692, 0.019582404, 'Install')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00519535, 0.005899669, 'CR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010197709, 0.014853979, '(NAPA,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010289294, -0.009814654, 'organisations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010457603, 8.887085e-05, 'department')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078024003, -0.0017911323, 'heart')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099605955, 0.008269191, 'Cabinet,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010745951, 0.01972606, '1990-2012')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0048672655, 0.00579387, 'TR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087963035, -0.0060550543, 'postharvest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008169074, 0.0017433141, 'twice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00975061, -0.009955602, 'preventive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008845502, 0.007427618, 'Corporation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088042645, -0.0101571595, 'trying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008889412, 0.0017389341, 'NCCAMS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008668799, 0.008047108, '25,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00908386, -0.0054850644, 'evidencebased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008707424, -0.0086585255, 'maize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00923321, -0.0008690686, 'estimates,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009062378, 0.0005875985, 'fired')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009472849, -0.010189472, 'reason,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010113098, -0.014046028, 'yields,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075828005, 0.0044082035, 'Chilean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008896071, -0.0042266054, 'vocation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009640846, 0.009205564, 'Prioritized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538028, 0.008391092, 'Affairs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008593074, -0.0043028705, 'annually,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091298185, 0.0025769982, 'month')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009508586, -0.0061689215, 'erratic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101138055, -0.007911384, 'technology;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008052715, -0.003061055, 'ENSO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100417575, -0.0105590345, 'affectations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009498347, -0.010307926, 'stocks,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008366924, 0.0043292036, 'Administrative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008385902, -0.010538018, 'lifestyle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004076034, 0.004971214, 'WASTE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007990334, -0.0014184027, 'Specifically,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013455173, -0.0033280528, 'red')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010593175, -0.01472614, 'phenomenon,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009798645, 0.0034632455, 'America,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008582667, -0.009410503, 'employs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008260385, 0.0059713623, 'Cumulative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009595396, 0.019727675, '(Phase')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011159904, -0.015416367, 'threats.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008485047, 0.004534794, 'Lighting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009759421, -0.00899056, 'foodborne')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009207208, 0.0020589982, 'signatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009694081, -0.01109117, 'stringent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008262185, -0.009386864, 'walls')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010228283, 0.008018648, '2,000,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096763875, -0.010125619, 'protein')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009466303, 0.010121863, '10000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009739612, 0.0044460343, 'averaged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008548035, -0.0070360554, 'specialists')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008541771, 0.0068721296, '36%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009911714, -0.0028696104, 'programmes;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009396, -0.0096214935, 'shocks.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007568854, -0.0016501092, 'Congolese')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008838951, -0.0016967786, 'simulation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010933503, -0.010851286, 'vulnerable,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01035714, 0.018887434, 'Port')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087182345, -0.0026645726, 'model.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008596995, -0.008679806, 'plastic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078108488, 0.0025693125, '(6)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009320527, -0.007818145, 'substantive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008061579, -0.005713178, 'snow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008954059, -0.008423032, 'biodegradable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009786047, 0.012811153, '2030).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008749645, -0.006718843, 'prejudice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007839709, 0.00407515, 'Variable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008162249, -0.0030268666, 'builtup')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011308223, -0.0006969902, 'prioritise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010508169, -0.0044962214, 'received.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00985971, 0.0037944256, 'dollars.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008707248, 0.008654311, '120,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010095645, 0.011710296, 'tCO2e,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00855957, 0.0034015528, 'gathered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009238754, -0.010693582, 'sometimes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008755502, -0.006351703, 'shorelines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008645534, -0.0043503204, 'underway.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008523071, -0.0019700406, 'exhaustive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848809, 0.0062186266, 'Comoros.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010196564, 0.0020479786, 'capita,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076105343, 0.005916907, '56%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008050095, -0.004014496, 'gain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009253682, -0.01588998, 'wells,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008699532, -0.003312442, '(public')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009239025, -0.0074332757, 'speeds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008792062, -0.0020901272, 'participants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008642222, 0.006892833, 'Yes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009272638, 0.004211211, 'Sustainability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008937202, 0.0055187186, '"business')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008970351, -0.0058529624, 'explicitly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010046844, -0.0027435822, 'Sealevel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009419747, -0.0043880944, 'older')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01018524, 0.0128375655, '(NAP).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011999618, -0.011352659, 'precipitation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072694523, -0.003036485, 'h)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009597008, -0.013484589, 'dominate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073154625, -0.00018824759, 'impacts.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008508113, 0.0060299356, 'Board')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091268085, -0.0034999354, 'existed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009081337, 0.0034018338, 'Pacific.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102452915, -0.00869209, 'decide')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010081329, 0.017224155, 'Sector.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008800174, -0.0018349764, 'designated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008899528, -0.0014141797, 'exceptional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076921056, -0.0033332948, 'teams')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011149588, -0.0037980548, 'guidance.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008555718, -0.007393323, 'rates.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006053428, 0.004611077, 'Santiago')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009369645, -0.004367484, 'low,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009115181, -0.0020358877, 'landfill.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010614683, -0.011988233, 'islands;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007763725, 0.013831415, 'Politique')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008963883, 0.0023427904, 'reached,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008167069, -0.0029142725, 'moved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007771809, -0.0027777988, 'refrigerators')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008644958, -0.0049921605, 'fixing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010919719, -0.011512909, 'protection.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081817685, 0.004122465, 'law.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011077683, 0.007674205, 'Coordinating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007562236, 0.0126194395, 'Preamble')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00974893, -0.008238944, 'recreation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010779309, -0.01301172, 'wildlife,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009093964, -0.0038101934, 'Littoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009569353, -0.012168765, 'inevitable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009728391, 0.0023634848, 'credible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008673313, 0.015549612, '(Mt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084344, -0.003922324, 'Numerous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007536301, 0.0056002582, '81')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008613257, -0.00037558514, 'proposing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008788772, -0.0023543723, 'production:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00894366, -0.0031716705, 'Aquaculture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077425744, 0.0081442585, '6.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006803333, 0.004286141, 'Santa')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097293025, -0.008891591, 'atolls.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008935978, -0.0020107063, 'Weather')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008459284, -0.0051899743, 'Examine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0057654344, 0.005887943, '---')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011448926, -0.0123669, 'zones;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009463167, -0.005205915, 'stemming')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010244764, -0.007405413, 'timing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009172981, -0.008780433, 'minimization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008343982, 0.014493316, '11th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009825234, -0.005191292, 'discuss')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009749024, -0.0022587085, 'dialogues')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009150529, -0.0019770244, 'Kiribati,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009721172, -0.013037895, 'competitiveness.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00910301, 0.005889359, 'Cement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077244886, 0.004671533, 'illustrative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009160818, -0.01497124, 'jobs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008321228, 0.0053487797, 'period:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008102902, 0.005884727, 'blended')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095857605, 0.011484976, 'Presentation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009946297, 0.0013617846, "PDR's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010028578, -0.0035548338, 'comanagement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009186508, 0.002119648, 'proposed,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008840995, -0.0048273643, 'low.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008693971, -0.0017194777, 'tier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010235016, -0.008440325, 'regulation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009365854, -3.3845063e-05, 'taken.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649911, 0.00048114778, 'Surveillance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009763655, 0.0009987717, 'defined.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009643654, -0.0038646217, 'interinstitutional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009106813, -0.0065613165, 'forage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007780425, -0.007284907, 'leguminous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097580645, 0.0026488847, 'categorized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008316217, 0.002107381, 'latest,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009554847, 0.008327474, 'INDC|')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0108640455, -0.01362169, 'waves.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090376325, -0.001439227, 'oceanbased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009405368, -0.0057765236, 'indications')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007977737, -0.00667894, 'paradigm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011323407, -0.015278749, 'resilient,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072944816, 0.0015214157, 'my')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008146037, 0.008513402, '-200')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010591099, -0.012929416, 'ad')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008610594, 0.004937168, 'ha).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011685208, 0.020948641, 'Businessas-usual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008519326, 0.0013030649, 'underpinned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077636074, 0.0053140153, 'NAMAs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009920183, -0.0035172254, 'organizational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009812297, -0.0022201913, 'nonforest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009824688, 0.017345421, '(2011),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008885266, -0.0050197886, 'solidarity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008060508, -0.0019391158, 'endowed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010169635, -0.007980759, 'plant.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076610027, 0.009133715, 'Capture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008881996, -0.010591252, 'expedite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009353796, 0.0034545837, 'Coral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085378075, 0.012568429, 'Fight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009160939, -0.013140169, 'economically,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008215482, 0.0054389485, 'Laboratory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007120516, 0.0061676456, 'Partnership,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009187801, -0.0021808082, 'interpretation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009804839, -0.0081427945, 'full,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009306874, -0.009269529, 'transformations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091087455, -0.007742261, 'minerals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008813476, -5.0491388e-05, 'kilometers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010071518, -0.0059896135, 'aspects.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009531407, -0.006956586, 'industrialization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009473682, 0.0009642632, 'Governmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008916617, -0.001998705, 'establishments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008146486, 0.004813221, 'Haitian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184686, 0.0014861469, 'estimates.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009285982, -0.006613382, 'localized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008327674, 0.015616773, '22nd')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008028526, 0.010180816, '_')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011105191, -0.012132341, 'prevents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009544603, 0.0118490355, 'sulphur')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008913977, -0.0067584743, 'adequacy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010132497, -0.0073843948, 'procure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008558508, -0.008052704, 'deployed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009559441, -0.008658367, 'universities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076299636, 0.003738629, '0,1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009623034, -0.013979945, 'income,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009849328, -0.008187897, 'reuse,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009238067, 0.007907494, "Country's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008536355, 0.0013626167, 'NSDS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112031, 0.013055645, "UNFCCC's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00912873, 0.018014545, 'House')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009709161, 0.015999196, '(2010).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008319225, -0.0060058227, 'work.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098919505, 0.008571425, 'billion)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010157889, -0.0053538145, 'agents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010825447, -0.007981179, 'transparent,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009278916, -0.0020279991, 'tied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006997767, 0.008966133, 'GIZ')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010217749, -0.009376662, 'cobenefit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009972589, -0.010595548, 'subsidies,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008166815, 0.0018291706, 'promulgation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075693526, 0.009971595, 'ADB')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00799253, -0.0016584881, 'witnessed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009764199, 0.019205775, '(20')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008874387, -0.0060792263, 'phasing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009654924, -0.0070043835, 'transferred')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074359206, -0.0021762773, 'beneficiary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009032214, -0.013011127, 'aggravate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008233824, 0.0032755139, 'embedded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009063382, 0.0074287187, 'Meeting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538062, -0.006463181, 'proven')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008847011, 0.008608183, 'Climate,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009387917, 0.0028244986, 'laboratories')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009974852, -0.0062031173, 'issue,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00947761, -0.001748846, 'peat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098054465, -0.0055731847, 'concessional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008650907, 0.0148439305, '(2013),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010196913, -0.00062587, '(energy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007208765, 0.012657999, '18th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009447051, -0.0020226652, 'absorbing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008412142, 0.018082378, '2015;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00825003, 0.013697101, '2015);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082557285, -0.003438163, 'South-South')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008107472, -0.001758656, 'up.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007121289, 0.01100812, 'Tile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008589086, -0.001046488, 'Making')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009570377, -0.012027054, 'water)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009959658, -0.016040249, 'homes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084353965, 0.014491367, 'PROGRAMMES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00990126, 0.013094925, 'Energies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00839477, 0.016017888, 'Til')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009437298, -0.0021799242, 'coal.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00783647, -0.002212763, 'onshore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007766086, 0.008657342, '25,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009855633, -0.013649018, 'unemployment,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008878859, -0.0016887347, 'Upscale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008137683, -0.008376799, '(vi)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005123975, 0.0031474726, 'VI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009840825, 0.0037330207, "Mongolia's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069177323, 0.013213462, 'FAO,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008054092, -0.0016675472, 'duration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008404599, 0.00039419712, '(30%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008416263, 0.0062980778, 'Engagement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0049954364, 0.0109195635, 'gas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008801363, -0.008141392, 'buffer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070964997, 0.0008254904, 'rise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008660942, -0.012085864, 'etc.,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008819738, 0.0025192013, 'Steering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009858342, 0.0063507175, 'projection.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010141878, 0.0064374986, 'Unilateral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008342601, -0.0065888986, 'bears')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008924982, 0.0087541, 'PANA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010294368, 0.017689493, 'Millions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010310002, -0.012324517, 'equitable,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008631516, -0.001475709, 'Upscaling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009070528, -0.0033748755, 'arrange')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088987155, -0.0037403216, 'register')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008597393, 0.009253484, '1998,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007925258, -0.0074047684, 'superficial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008867679, -0.003206911, 'Crosscutting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073655955, 0.008218781, 'II)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009378033, 0.0048215785, 'iNDC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012346215, -0.013438507, 'surge,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097342795, -0.011149845, 'safeguarding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008542418, 0.007396927, 'Cooking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007819142, 0.00415728, 'Anticipated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0052207913, 0.0053382036, 'Risk')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011473353, -0.011797832, 'innovation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010409766, -0.014251063, 'natural,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010312787, -0.01017509, 'biogas,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008793952, 0.006781792, 'Justice')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009661046, 0.0028024872, 'exclude')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008816234, 0.00024815806, 'literature')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008776869, 0.0024449984, 'Mountain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009431497, -0.0059733614, 'longterm.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01208644, -0.013468874, 'seas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088955965, -0.0066414857, 'ports')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009358288, -0.0038537802, 'financings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007133523, 0.010845572, 'au')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010063973, -0.005942976, 'commenced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010010565, -0.012995501, 'schemes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010719726, 0.015606173, 'Framework.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008328707, -0.0008228489, 'minigrids')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008165326, -0.0051706354, 'temporary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072423457, 0.0110001, 'Cotonou')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009132749, -0.0070218714, 'optimistic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010818057, -0.0138942525, 'environments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008294098, -0.0034589549, 'Java')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009725233, -0.0065183016, 'struggles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.003968521, 0.009670026, '2030')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009349696, -0.009377343, 'particular.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00825229, 0.00076437806, 'mm.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010150985, -0.007063622, 'sequestration,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096342815, 0.01809356, 'November,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009196575, 0.0028035855, 'entered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066830115, 0.00815973, 'emissions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00907095, 0.0033436331, '(NIE)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009952516, -0.013014084, 'affordable,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107558565, -0.01335762, 'terrestrial,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008750511, 0.0076083415, '4000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075876005, 0.0039502317, 'Like')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008779451, -0.0018842675, 'MCCA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008834544, -0.008396185, 'individuals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009024827, -0.0035811856, 'globally.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009098212, -0.0035775232, 'base.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010326336, 0.010303282, 'Mines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007902133, 0.0102047995, 'Efficiency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008571793, -0.004916957, 'shorter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009005156, -0.010192871, 'indispensable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008441731, -0.0061917873, 'purposes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00852738, 0.010986399, 'USD)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009243199, -0.009303811, 'straight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009580053, 0.014752259, 'Quantified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007978079, -0.0031023857, 'kilns')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009575497, -0.016519377, 'polluting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008670637, -0.008979515, 'precarious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008028502, -0.002957205, 'farmlands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00832272, 0.00010494949, 'NCCPSAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009057303, 0.009459432, 'Subsectoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008021625, 0.0049279854, 'PPP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007790419, 0.006182447, 'Continuation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0057462296, 0.0046133148, 'already')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010548865, -0.015218154, 'constraints.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065607214, -0.00011766935, 'future')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009518437, -0.0016083128, 'Niña')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008882571, 0.0052597364, 'latitudes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011167794, -0.009074562, 'manufacturing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009695007, -0.0011168359, 'participated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073412433, 0.0033592018, '(more')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009538725, -0.009067184, 'marketing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008105705, -0.0023952003, 'criteria.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006174586, 0.0026750113, 'totalling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007377694, 0.007218338, 'information')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009518929, -0.005113771, 'lays')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010554864, -0.0076876814, 'keen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007711748, 0.018057242, '(US$')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004875163, 0.004599795, 'meet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0033297096, 0.0037745177, 'Funafuti')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093076015, -0.008118065, 'demonstrating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008294786, 0.009123807, '22.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009171023, -0.006923184, 'planners')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01035535, 0.009702356, 'contracted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008595475, -0.00079540216, "'agriculture")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010322264, -0.0114468485, 'diversification,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010846667, 0.0004169662, 'preparations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009552838, 0.013597456, '1994.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054559587, 0.004547817, 'been')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010313999, -0.00020954301, 'analysed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067036767, 0.009267203, '53')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083659915, 0.005330385, 'SE4ALL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070810197, 0.0016690905, 'sources')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075172777, 0.009248648, '2.0%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008727228, 0.015367075, 'Plan)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009365601, -0.0072037694, 'gaps.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008996273, 0.009822575, '8.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007844624, 0.002742073, 'Continued')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008533254, -0.00060698047, 'Uganda.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009843972, -0.0010149186, 'subsectors.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087511, -0.004990363, 'GHGs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063076373, 0.010415477, 'BARRIERS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012482005, -0.015070312, 'en')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096997935, -0.00041468156, 'identified:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084992675, -0.0017037237, 'energie,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010149276, -0.008774745, 'indices')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010916813, 0.013906208, 'Controlled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0056501385, 0.008010838, 'including')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008184096, 0.0033783677, 'LDCs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009383911, -0.008809452, 'hydrogen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009479776, -0.006113681, 'economie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006349862, 0.004343626, 'N/A')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008932834, -0.005256336, 'superior')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008370793, 0.0030146611, 'Overall,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007881904, 0.004742948, 'Ouémé')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009320598, -0.009855459, 'mentioning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090737315, -0.0043689758, 'value.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009398423, -0.0077633006, 'areas)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008585073, -0.0025026042, 'arises')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070098396, 0.00453613, '58')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009019461, 0.0018939407, 'approach:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009717313, -0.007867365, 'decarbonize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007936052, -0.0029038417, 'selfsufficiency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080844285, 0.004393754, 'French')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008697888, -0.0044244453, 'enrichment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009191022, 0.0016278492, 'included:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007136201, 0.014515618, 'Tool')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010877343, -0.009051001, 'storms.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009017474, -0.008488768, 'producers;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009068118, 0.0037288023, 'Zealand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007916191, 0.00944184, 'Climate-Smart')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007936472, 0.0073905853, 'SF-SLM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007391748, 0.0029632787, 'White')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007908874, 0.00560065, 'sq.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073888167, -0.0022668263, 'airconditioning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071579437, -0.0032144398, 'different')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009942023, -0.009151671, 'rivers.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009006948, -0.009876262, 'fees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008014917, -0.004075762, 'hospitals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009204369, -0.0029903923, 'power;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011097535, -0.0059962673, 'non')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01215039, -0.012971676, 'fisheries.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010307831, 0.010078314, 'Environmentally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100303665, -0.0038087652, 'enter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007957754, 0.00371727, 'Humanitarian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010592498, -0.020055104, 'codes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010922293, -0.008431878, 'supplied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007701155, 0.004678953, 'Ozone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011086757, 0.002143999, 'Fisheries,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009408169, -0.008228084, 'explicit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009740293, -0.008268328, 'utilization.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008337271, 0.009082567, 'Pathway')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012056037, -0.014325502, 'ecosystems;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009118913, -0.003106845, 'utilisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112739215, -0.011183998, 'preservation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068330453, 0.00069499115, 'reducing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0049661696, 0.008811618, '2015.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008610998, 0.0037459778, 'Africain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010340064, -0.01110889, 'imperatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008941012, 0.004563931, 'Convergence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007182308, 0.0031729052, 'priority')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0057582576, 0.010729405, 'include')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010897827, 0.0021617792, 'Integrating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008149189, 0.00019963842, 'Nicaragua,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112726325, 0.012826109, 'CP.19')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008142036, 0.0019874591, 'stood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008496443, -0.00560334, 'will:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090535255, 0.000104525585, 'coverage,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010162806, -0.011861774, 'all.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008026113, 0.010875609, '(BaU)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009371989, -0.0039645946, 'dimensions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009385062, 0.009088004, '(based')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009149097, -0.010936773, 'basins,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009219899, 0.014201573, 'CARIBSAVE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009316687, 0.0052954033, 'definite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008721079, 0.002797295, 'Inclusive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008681614, -0.0010696761, 'founded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010540652, 0.010536068, 'billions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007047435, 0.008594709, 'NO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01101551, -0.00871267, 'departments,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00890479, 0.018928643, '(2005)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008852708, -0.0013523808, 'Handling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066533587, 0.005603581, 'sectors.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010065684, -0.0118782, 'knowledge.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008321164, -0.0048684473, 'conceptual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014934743, -0.019903436, 'pre')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0052207396, 0.003601759, 'both')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0041926815, 0.01611378, 'or')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009397528, -0.0037132674, 'consolidated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00864897, -0.006828072, 'officially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009494438, -0.011433491, 'environmentfriendly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008541024, -0.0031180698, 'highlevel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009998013, -0.016113898, 'real,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0041756863, 0.011524733, '2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089502195, -0.008354005, 'landscapes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011210252, -0.01209385, 'nation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009799175, -0.009276184, 'front')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075997906, 0.010897911, 'SUSTAINABLE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007898998, 0.006819264, 'GDP:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009608343, -0.00540063, 'carbonization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010910636, -0.0075204065, 'plants;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009631088, -0.0094418675, 'pastoralists')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01050896, 0.01515711, 'INSTITUTIONAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008445281, -0.004668041, 'refrigerants')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010561195, -0.00981974, 'storage.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008319402, 0.010268947, "'horizon")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010021598, -0.005306935, 'committees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079257535, 0.010683264, 'MINEPDED')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008355866, 0.014651279, 'Estimate:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010290281, 0.021849692, 'Updated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009748084, -0.007242582, 'source,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009073037, -0.007637516, 'footprint,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008750241, -0.01364792, 'employ')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00747364, 0.009230639, '\uf03e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010071718, -0.0020956788, 'directives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092978, -0.00613638, 'steering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069397977, 0.0057726195, 'Tome')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009173233, -0.0067422884, 'sees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008471098, -0.004647764, 'purposes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009235893, -0.0018888088, 'owes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010069829, 0.0058729816, 'inventory:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010613293, 0.01860002, '(SNC),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103183305, -0.013185449, 'proof')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009320918, -0.0051323846, 'permits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102554895, 0.010270002, 'RES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008409214, -0.010111547, 'regime,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930966, -0.00014117446, 'complemented')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006193071, 0.007969661, 'diesel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010895193, 0.013655817, 'TOP.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079532135, 0.0009700818, 'Traditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00920729, 0.0051768306, 'Sea,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009301527, -0.00555493, 'congestion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008482044, -0.005083892, 'retrofitting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008962508, -0.0052535506, 'agroclimatic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007839808, 6.22114e-05, 'NGO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008022245, -0.008480999, 'steep')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010411621, -0.008379673, 'natives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008328004, -0.0028753881, 'robust,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008249822, -0.0010560622, 'rank')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007893916, -0.007136199, 'impulse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012352056, -0.010542267, 'fertility,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069788736, 0.011467867, '10.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009392925, 0.015916087, '(2015).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00905716, 0.00089350884, 'then,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010398866, -0.0068503376, 'confronted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010049025, -0.007300406, 'evolving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009563918, -0.00071703567, 'invitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00769787, -0.011144935, 'excessive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010054463, 0.009433584, 'concluded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010172249, -0.009950698, 'operation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011313286, 0.020347169, 'Metrics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009480837, -0.006059124, 'cane')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649201, 0.00074934965, 'negligible.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010080338, -0.010658122, 'obstacle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009531231, -0.0023632888, 'Nevertheless')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067191613, 0.0032872227, 'efforts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007087954, -0.0010773257, 'which:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008654753, -0.0060955198, 'leans')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009781104, -0.010571603, 'ground.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009392232, -0.00044032134, 'contents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085111065, 0.010806248, 'Measurements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008838674, -0.005930864, 'torrential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075985263, 0.00582011, '(HDI)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074329623, -0.00148352, "Egypt's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008223018, -0.0070733046, 'entrepreneurs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007954039, -0.0020267006, 'tenure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012134893, -0.013211638, 'diseases.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009447031, -0.006991375, 'suited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009667057, -0.0083549805, 'skill')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097437175, 0.00759182, 'Forestsland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01051507, -0.0037383835, 'vision.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008209498, 0.0099428035, 'Accumulated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008805523, 0.0075209546, 'Coastline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175161, -0.0036312833, 'theme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008514321, 0.001780933, 'Uganda,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009050853, -0.005957375, 'channel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010451434, -0.01443706, 'oceans,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008933311, -0.010924332, 'harmonious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010273282, -0.010631603, 'damages.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009517171, -0.006613478, 'interior')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008477444, -0.0022853564, 'Structural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010511542, -0.0051275445, 'realizes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010025558, -0.016850444, 'extra')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00895301, -0.0019324437, 'expectation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009888334, -0.014091383, 'manages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076151607, -0.003909552, 'earthquake')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010672694, -0.014846056, 'phenomenon.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009888259, -0.009749126, 'ecology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008237597, -0.0029847764, 'Important')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009659564, -0.0123707745, 'mining.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010560063, -0.009643621, 'transfer;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009604458, -0.010955232, 'practice,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010381411, -0.012582977, 'protect,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009798689, 0.0045731817, 'Housing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012059084, -0.005515842, 'le')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009116861, 0.009510514, '(IWRM)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092769135, -0.008352474, 'death')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105874175, 0.008807697, 'dioxide.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072458596, 0.00669794, '54')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009677238, -0.0050854366, 'pathway,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009917105, -0.0039403527, 'longest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075894035, 0.003420855, 'titled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008288374, 0.008200725, 'GEF,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007574051, 0.008077576, 'EU,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007492972, 0.010879968, 'Million/Year')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010312575, -0.004983429, 'electrification,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008680481, -0.008246096, 'sites.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009348872, -0.0062302784, 'nontimber')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009608387, -0.008543943, 'sites;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008823085, -0.0028817172, 'energy)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084424745, 0.012693971, '4.8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008462237, 0.0074586784, 'Maritime')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085536055, 0.0034893218, 'NAPs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008545404, 0.0006356826, 'inhabitants.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009495924, -0.01370756, 'specially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007171816, -0.00072788383, 'h.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005955991, 0.009242112, 'Action')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083001675, 0.016387375, 'MAPS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006708689, 0.009269437, 'Province')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009317517, 0.0028130657, 'Rehabilitating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008593098, -0.0069010244, 'eleve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.003696961, 0.00688735, 'new')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009019144, -0.0073122066, 'high,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008940822, 0.0063812463, 'Inclusion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008059983, 0.0066932365, '61%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092479, -0.009963841, 'improved,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00838203, -0.006319163, 'type,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008592457, -0.0076987087, 'composition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00893664, -0.0051176986, 'lighting;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008145451, -0.0056923, 'turbines,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109942, -0.008520512, 'response,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008710498, -0.00518084, 'regenerative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009759554, -0.0014952625, 'agenda,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00888659, -0.009830986, 'prime')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0041943016, 0.0058547994, 'more')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010495048, 0.0031414034, 'Stakeholders')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007627009, 0.008498688, 'b')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008152274, -0.00044299866, 'Gambian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008878538, 0.0035420796, 'starts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065115076, 0.004583614, 'Mr.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008508581, 0.0045383084, 'administered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008061271, -0.008696403, 'semi')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008309007, 0.004174696, 'brief')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00979283, -0.011970761, 'consumers.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010076501, -0.009703112, 'fishermen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009016619, -0.009163312, 'dominates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009634326, 0.009672601, '250,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00968162, -0.0031207365, 'nonfossil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009537322, 0.004454628, 'launched,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076821595, -0.0060368157, 'milk')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010134085, -0.00051194814, 'recession')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066712336, 0.0023436372, 'for!')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008530684, -0.0085476795, 'varying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0057500447, 0.010309306, 'projects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009610624, 0.0028727516, '(energy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007168141, 0.010237732, 'Range')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008398629, 0.019593362, 'Compact')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01098923, -0.014690219, 'treat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009816273, 0.0067631816, 'Union,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008869967, 0.004127137, '82%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01212937, 0.011494657, 'Forestry.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008507195, -0.0061076465, 'Their')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009527519, -0.003113195, 'indicators.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008364257, 0.012533272, 'Soils')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008482711, 0.0090002185, 'Coast,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008976866, -0.010760265, 'co-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076739895, 0.0031497923, 'census')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009817703, 0.015447353, 'System;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009898018, 0.013752588, 'Tables')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006971674, 0.013729577, 'million')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008805007, -0.0029714932, 'isolation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009036352, -0.0066620437, 'this.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009359473, -0.009780712, 'salinity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008427564, 0.0013352224, 'fifty')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008151228, -0.0020710006, 'devastated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007725075, -0.0028159919, 'storage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006264361, 0.010973752, '24.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00835528, 0.005427291, 'fifth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00806191, -0.0036408887, 'herds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007217394, 0.0027562699, '25.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00921077, 0.0054319706, 'Intensify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007783231, 0.009475823, 'estimated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008260227, -0.005012204, 'spirit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077979155, 0.0044008107, 'over')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009221232, -0.0042536356, 'attaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009191351, -0.009782428, 'lifetime')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009495896, -0.0022265022, 'quantifying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007679346, 0.014554262, 'August,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009184058, -0.00063153805, 'cited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008664304, -0.008772009, 'enjoy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008732508, 0.0019299627, 'modelled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008754402, -0.008847472, 'far,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010451527, -0.014573018, 'prevent,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009648143, 0.008927778, 'Politics,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008193579, 0.011164999, 'Corporate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088045895, -0.011306826, 'say')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008242847, 0.0018077038, 'unit)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008660767, -0.006439269, 'banking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008743796, -0.01049895, 'middle,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076624393, 0.006912944, '22.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009398474, -0.0005904136, 'purification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011395738, -0.0011310339, 'preparation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009074546, -0.0089417845, 'jobs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009323874, -0.005969302, 'county')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008907346, -0.013236127, 'disadvantaged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092957895, 0.019961912, 'Waste:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010166512, -0.009317943, 'store')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010233195, -0.010122219, 'wildres')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010987681, -0.007279881, 'cater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009015007, -0.003315248, 'Minimise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075068697, 0.0012428446, 'dunes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010897822, -0.0019482549, 'intend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008526633, -0.0023351037, 'restricted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009200569, -0.014324696, 'persons,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008962073, -0.00903217, 'culturally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009205468, 0.00038643586, 'point.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0064724204, -0.0030501343, 'rural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009645339, 0.0064108116, 'PDR.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011067622, 0.008822602, '(GCF).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009517353, -0.007363729, 'economy:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009002104, -0.011268005, 'conscious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077925003, 0.0017693074, 'Mekong')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009442079, 0.016626466, '2012),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009840057, 0.007528921, '(LDC),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009051781, -0.0047716037, 'sucos')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008037286, -0.0034540752, 'correct')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008783447, -0.009809273, 'acquiring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008585672, -0.0004739501, 'exclusive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008742673, 0.006691602, '28%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008421134, 0.013720581, '31st,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00899476, 0.013982547, '(NAMAs),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077701807, -0.0049861353, 'field.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011841236, -0.012266541, 'facility,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008903613, -0.003148734, 'others:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009285019, 0.0062592197, 'emissions),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083357245, -0.01045849, 'permanent,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008805713, 0.00018143459, 'accredited')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007407808, 0.013741407, '12:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007912058, 0.0047999555, 'statement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007991602, -0.0071988483, 'country"s')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011167811, -0.020578843, 'property,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00896976, -0.0029760161, 'simple')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009811064, -0.014844647, 'inequalities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006926495, 0.011203102, '01')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009793828, 0.015887119, '(2009')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004761795, 0.004992862, 'Fotografía:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008504783, -0.0005595106, 'claimed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090164775, -0.01622177, 'cycles,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00999847, -0.0023682038, 'enforced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009969281, -0.0069838786, 'building;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008455918, -0.0036233552, 'matiere')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083666565, 0.003421177, 'projects:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011367127, -0.0064164037, 'landing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008821893, 0.0056077214, 'Perspectives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005793371, 0.009996149, 'CAPACITY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008237283, 0.001751697, '97%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007630925, -0.0016060981, 'Napier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009103685, -0.01593475, 'exploit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008584682, -0.0060568685, 'endemic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009671851, -0.004759995, 'wetlands.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0115197785, -0.007977536, 'resiliency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008886716, 0.01360149, '2015-2030,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00847726, 0.0070791463, 'Challenge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008701432, -0.0057221693, 'actually')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008795626, -0.0026248316, 'carbon)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007684104, -0.0069931992, 'teachers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00913535, 0.017383777, '2021-2025')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010624178, -0.014983896, 'damages,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005490754, 0.0106556695, 'approx.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012286783, 0.028466022, 'Method')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009403775, -0.01104827, 'profitability')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010012342, -0.0097007835, 'prerequisite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264919, 0.0065686083, '2100,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008961669, -0.004956498, 'modernisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008468951, -0.001215423, '(climate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0064326082, 0.006625753, '144')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006964461, 0.0038926161, 'areas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008361294, -0.00083342125, 'juliflora')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008912643, -0.0041028936, 'namely,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007394279, -0.0036881159, 'vii.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011238149, -0.011159525, 'challenge,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065706205, 0.003967892, 'towards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075808563, 0.0009938563, 'Acquisition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009167048, 0.015391042, '(MtCO2eq/yr).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008376532, -0.0028728717, 'rooted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009482762, -0.007873278, 'costly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009532705, -0.007239314, 'restored')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008153694, 0.00028429666, 'volatile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011213787, -0.0128070945, 'productive,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008801439, 0.0027358641, 'Advance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069315666, 0.011378178, '2.6.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01022538, 0.017520344, 'MtCO2e.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01010157, -0.0116238, 'fostering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010047798, 0.0009924865, 'coverage.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069462094, 0.009539925, '4.9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012965735, -0.0055753146, 'burning,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009025209, 0.0101467855, 'Moldova,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009642674, -0.013645025, 'flows,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093493825, -0.0069299773, 'unable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072805835, 0.0014631884, 'HDI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008952184, -0.0009414955, 'accreditation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009007188, -0.006891655, 'gaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007584224, -0.001399756, 'labour')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010904377, -0.006224924, 'instrument,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008407733, 0.0107430415, 'Analytical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008245836, -0.0039641485, 'rose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008944929, -0.0056555076, 'quantities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071071363, 0.0022938296, 'Favour')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008120894, -0.007663226, 'minor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009520273, 0.0028505784, 'actions)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008727895, -0.0045727696, 'carefully')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0116407275, 0.009819229, 'Land,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054527707, 0.006154856, 'iii')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008902634, 0.0012728967, 'Strong')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009307735, -0.0030919705, 'strategically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085032135, -0.0011432006, '(less')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010019132, -0.017131204, 'safe,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009640271, -0.0046756687, 'Rising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073979306, 0.013828431, '(Millions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007738866, 0.011391688, 'Zanzibar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010144147, -0.01507974, 'ecological,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011424678, -0.012405767, 'tres')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094796205, 0.00041880892, 'Faso,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011960451, -0.007915399, 'coordination.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010207504, -0.011494159, 'mapping,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011381453, 0.011909323, 'Puntland;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008733755, -0.0076043545, 'drives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008705233, -0.0078367265, 'adult')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074509513, 0.0131252855, 'Sixth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010632041, -0.0046787667, 'sent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065708384, 0.011522887, '7.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008635482, -0.002517896, 'neutrality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010295855, -0.012568508, 'recognize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00983106, 0.0025815777, '(MRV),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086664, -0.00882643, 'loads')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008951775, 0.0030308508, 'latitude')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008793851, -0.0055660056, 'threshold')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009118788, 0.005522707, 'enacting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009702533, -0.012142237, 'danger')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009145445, -0.009699503, 'select')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011162014, 0.015552345, 'CO2-equivalent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008730829, 0.008206317, 'scenario)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075957663, 0.01102961, 'O)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009344349, -0.0051612603, 'efficiency:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010190809, -0.009991738, 'consolidating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.025480488, 0.022457734, '...............................................................................')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010268386, -0.011472174, 'balance.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008433227, -0.0033999414, 'multiplied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010043349, -0.0024934013, 'went')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009246278, 0.0063778926, 'horizon.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010263636, -0.013528172, 'heating,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009942505, -0.011859293, 'path.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070943534, 0.015485679, '3.2.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076177525, 0.0045922934, 'Utility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009544803, -0.008421237, 'pumping,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010242085, -0.012197765, 'disseminating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006963856, 0.0059625036, 'kW')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010446999, -0.0058462517, 'agroforesterie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073557068, 0.0074793035, 'II,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008281509, -0.0068526696, 'worsen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071832184, 0.010767529, 'AT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054640584, 0.0071594007, 'H')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009783258, -0.0033069893, 'shaded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010032698, -0.0044509373, 'orientations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009891588, -0.007755864, 'industry;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071344716, 0.012897874, '298')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008462587, -0.007483265, 'wildfires')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009886025, -0.008305667, 'regulations.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010367926, -0.0056864284, 'confident')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008133379, 0.0042651654, 'NDC;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00921711, -0.010421441, 'waterways')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008188392, 0.003038703, '88%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008305082, -0.0032698836, 'digesters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010239125, -0.00338062, 'forests).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006938256, 9.292582e-05, 'indepth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010809553, -0.006964724, 'evaluation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008873014, -0.00065530336, 'question')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008571161, -0.00094014494, 'Historically,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007742287, 0.0077383327, 'NEPA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009464663, -0.0034834745, 'prioritized.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009271966, -0.0085386615, 'predominant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008656723, 0.006347657, 'COP20')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007119769, 0.0060257763, '63')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007902597, -0.0020147448, '(mainly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008066266, 0.0075901817, 'Bet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008872522, -0.0070248316, "Qatar's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009534363, 0.017652249, 'Renewables')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008829968, 0.009414576, 'Authors,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008662995, 0.014285044, '2007)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009383363, -0.009310249, 'attracting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009035981, -0.0064295777, 'hope')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009628116, -0.0041989535, 'support;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008970489, -0.0074614994, 'side,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009274669, -0.00498188, 'anticipates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01012737, -0.013647586, 'concerns,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01080779, 0.009183019, 'Department,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008185755, 0.0135935, '2001,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008972644, -0.0057715112, 'scales')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010108752, -0.0015784856, 'para')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009970175, -0.013346788, 'competing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009992469, 0.011518132, '1.5%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009343739, -0.008347711, 'believed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075878776, 0.008745097, 'Peach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008811352, 0.0050655035, 'Train')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008973289, -0.0062596435, 'recycled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008453215, -0.0022681493, 'revolution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00995559, -0.013363735, 'disturbance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0128737725, -0.021717187, 'te')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010276896, -0.014818421, 'safety,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071220286, 0.005659273, 'Airport')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008864336, 0.011507456, 'Developpement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009419278, -0.0033677132, 'counters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089665195, 0.00071581226, 'cast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427877, -0.010492663, 'ecologically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008627148, 0.0044140713, 'Demonstration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008526366, -0.010877185, 'unequal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012440596, 0.0043735406, 'Ministries,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008990311, -0.0030568915, 'registry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011396806, 0.010159119, 'National,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008833832, 0.006043785, 'statistics,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007348148, 0.008789023, '(under')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009805593, -0.006299795, 'partnerships,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00858903, -0.0031595456, 'Indonesian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113566825, -0.013439314, 'ecosystem,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009832859, -0.0013078696, 'viewed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074851494, 0.011971283, '(USD)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009225889, -0.0032561752, 'Brazilian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008322796, -0.0026400706, 'attitudes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007870368, 0.011588416, 'Assisted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076967813, 0.0073940703, '(BREADED)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008124378, -0.013109272, 'beaches,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009703154, -0.008808365, 'greening')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010622282, -0.0036783621, 'undertakes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008972421, -0.011080661, 'hotels,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009714759, -0.0012142308, 'tend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085425805, -0.0036412338, 'Hence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007549639, -0.005839343, 'data;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00863534, -0.0059341607, 'think')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011633237, 0.0041128932, 'INDCs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00832522, 0.010085626, 'software.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008028528, 0.004838868, 'NSDP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009411598, 0.016696084, '(2010),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007932996, -0.006277089, 'leaving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010203406, -0.0049691754, 'upgraded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010622882, 0.0046020104, 'Updating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009214324, 0.0024413252, 'delayed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010338603, -0.0034207886, 'decision-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01040547, -0.0050286152, 'range.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009752279, -0.008529678, 'coasts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074871317, 0.008867403, '0.75')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01010948, 0.02120796, 'Fish')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009032246, -0.0063476562, 'advocates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009226312, -0.011895412, 'competition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008124502, 0.014094583, '(2020')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009039015, 0.0027930075, 'Undertaking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082060965, -0.001912154, 'GOI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008279692, -0.000383572, 'repercussions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077317497, 0.007999723, '128')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007185818, 0.009183005, '57')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00950218, -0.0123448465, 'placing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074999053, 0.005153667, 'Gilbert')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087723965, 0.0033440609, 'stationary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01045254, -0.00977145, 'cooking,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009066889, -0.007419619, 'strenghtening')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008346207, 0.0031038888, '(covering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078709535, 0.0106604025, '7.9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007970047, -0.0042937174, 'black')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008347724, 0.003108392, 'Kiritimati')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007948622, 0.005662122, 'Independence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008909779, -0.00947617, 'manifest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010319426, -0.0075108954, 'proportional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009190956, 0.012144701, '2022.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008726874, -0.0009982818, 'Moving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009003939, -0.0030013386, 'resultant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009213252, -0.010413234, 'CSOs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008364187, -0.0050343913, 'perhaps')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008895117, 0.0055594915, 'elabore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011938951, -0.008992543, 'rainfalls')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008850626, -0.003191332, 'stock,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006408407, 0.010056494, '30,801')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010060311, -0.011714475, 'relocate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010161325, -0.015008679, 'maximizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010236179, 0.017408658, 'Degraded')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009596648, 0.013655545, '(scenario')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007844755, 0.0048371754, 'NOAA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008319862, -0.0017286439, 'databases')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008408372, -0.0077602803, 'regimes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009676185, 0.0033970522, 'projecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009955965, -0.0034348844, 'implied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075786687, 0.00035015322, 'Engineering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073909056, 0.0042941, 'Soviet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011373963, -0.010770229, 'irrigate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00960271, -0.0064740875, 'cement,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073855654, 0.0010041422, 'axles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007983639, -0.0031358008, 'fell')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009656123, 0.0038282454, 'agreement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822523, -0.00691012, 'compiling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089279115, 0.0029021588, '89%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007838976, 0.009208496, 'Export')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084000705, -0.0011673829, 'compilation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007800226, 0.015189975, '05')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010423473, -0.0060783178, 'committee,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009053176, -0.015414849, 'space,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008500149, -0.0006243352, 'inhabitant,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101721035, -0.00547633, 'traditionally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006812747, 0.010831104, '2.9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072589274, -0.0022866814, 'etc).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007530381, 0.0077941595, 'chapters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074941823, 0.004168192, 'relevant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007734775, 0.014271055, 'Forecast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009497193, -0.0052746315, '(hydro,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069619548, 0.00096130586, '(incl.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010760579, -0.0095050335, 'surveillance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009389206, -0.007353568, 'awarenessraising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011227366, 0.004614913, 'tonnes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007973578, 0.006473539, '83')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009693629, 0.014623595, '(INC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011153919, 0.0005280546, 'substitute')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0056716762, 0.008801385, 'V')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068292846, 0.0063365623, 'h')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075310227, -0.0060098697, 'behaviour')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008272293, 0.0018159434, 'Timor-Leste.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010021611, -0.007215395, 'allocate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009739496, -0.00994688, 'linkage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009456558, -0.0020176563, 'dried')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010093739, 0.009216686, '80,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007226655, 0.0058130836, "Barbuda's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007069838, 0.0010802301, 'claim')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008264527, 0.0038937866, 'Evolution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076660495, 0.0014795203, 'She')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009039127, 0.014852254, 'Presidency')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009666576, -0.01227466, 'reinforcing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006701001, 0.00611, 'HCFC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009879596, -0.0068868496, 'accompaniment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009580994, -0.0052372664, 'actions;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01050785, 0.0055433814, 'Agency,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00899214, -0.0030071114, 'glacier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073457765, 0.0102634905, 'u')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007803875, 0.004067206, 'Lesotho.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008474183, 0.014832577, 'Conclusion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009704283, 0.008169033, '900,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094663715, 0.0055774404, '20%.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095496625, -0.005641717, 'models.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010781364, -0.013694835, 'dire')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008650372, -0.007449366, 'destroyed.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009057503, -0.00039146602, 'torchage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074887304, 0.005568406, 'Norwegian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071559916, 0.0038885672, 'usual"')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010982566, -0.01618516, 'extremes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009348383, -0.009746716, 'humanity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009008076, 0.0060776523, 'horizon,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009259128, -0.008392008, 'humanity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008729476, -0.0058771432, 'sensitisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068777446, 0.014085007, '3.1:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0047622873, 0.0036774604, 'PSGE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009016848, 0.0025168355, 'envisions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008867112, -0.005686935, 'rebuilding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007912136, 0.007394294, '4.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009737827, 0.00872992, '2055')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00954971, 0.00027576482, 'operationalize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071341177, 0.013523093, 'Farm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00866911, -0.006764064, 'sizeable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009444167, 0.0133065665, 'Economics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010102329, 0.0051738815, 'Stakeholder')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008576631, -0.007557827, 'knowhow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009303772, -0.006110388, 'control.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009321727, -0.00845029, 'overriding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010547936, -0.015210688, 'entities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00913765, -0.002221127, 'consecutive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008263041, -0.0068566417, 'virtually')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009480468, -0.0036056514, 'resources:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008474542, 0.0018370028, 'Plurinational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009084273, 0.0025583361, 'bars')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081428485, -0.004464471, 'regardless')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010256459, 0.00054190453, 'fulfils')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00918649, -0.0064952476, 'retaining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010012536, -0.011690908, 'increases,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009132858, 0.003720371, 'actionbased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008279088, -0.0026296, 'grew')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006932955, 0.007980435, 'Life')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008624438, 0.0045072413, 'Hashemite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011543931, 0.007203772, 'States.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0025392151, 0.0023940227, 'may')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010548567, -0.009734448, 'exporting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009029125, -0.0029860125, 'Going')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009131589, 0.003735793, 'Foundation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011039849, -0.010889052, 'acidification,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009831573, -0.0027464342, 'hydrocarbon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062857536, 0.011449278, 'METHODOLOGICAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075983307, 0.0010471671, '(7)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008397897, -0.0008367502, 'electricity)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009780323, -0.0060212673, 'pillars,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008553647, -0.0062323865, 'seems')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010601699, -0.0032541433, 'prioritizes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009569609, -0.010358691, 'readily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009851551, -0.0061194953, 'made.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100741135, 0.02932267, 'Approved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00937742, 0.026162555, 'GgCO2e;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00945068, 0.011652712, '450,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009579622, -0.00671386, 'resident')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009262487, 0.014349659, 'Producing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008265465, -0.0052412134, 'southsouth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0105354, 0.010551597, 'Puntland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010100422, -0.0090121105, 'originating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011583479, 0.004326793, 'methodologies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009149909, -0.0032262015, 'platforms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00893911, -0.0020675655, 'point,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008301425, 0.0018426678, '(40%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010134567, -0.012110898, 'barriers.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076847123, 0.003143584, 'gas)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009006833, -0.0075838855, 'movements')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00770698, -0.00084903603, 'blockade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007471746, 0.0059162336, 'Durable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008473029, -0.0043778773, 'Recognising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00794977, 0.009609931, '10,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008179729, -0.0058819344, 'seedlings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009260117, -0.0091386745, 'steadily')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007899393, 0.013885168, '2011-2015')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008277308, -0.0022920098, 'fuelwood')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007859188, 0.0053290273, '1/3')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007495106, -0.0020038267, 'unplanned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086865425, 0.004420412, '2090')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008352995, 0.00016746842, 'release')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009240632, -0.009497788, 'recycle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063059344, 0.0102491, 'PPA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011575196, -0.013430757, 'capability,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009464581, -0.0060568363, 'reforms.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010420034, 0.021721827, '1990-2025')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085985605, 0.013920086, '(SNC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008190429, 0.0054452466, 'Vector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009853472, -0.005415095, 'nongovernment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01032269, 0.018304512, 'Apply')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010055653, -0.0046800887, 'transport),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007924745, -0.0063083144, 'violent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010024849, 0.013097468, '(Global')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009525749, -0.0055700825, 'reason')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009401539, -0.007800782, 'attending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008196892, 0.0037207364, '0,6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008664868, 0.008307235, 'CMNUCC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0097129, -0.005630596, 'relocated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00789797, 0.0037122655, 'GOB')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008321501, -0.0041043353, 'besides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008338788, -0.0037190532, 'extracted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008202137, 0.0040924074, 'Argentine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010768741, 0.021553475, '1990-2015')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009568717, -0.009287002, 'complying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008132512, 0.00862518, '2030*.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008238263, -0.004714915, 'septic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011238358, 0.016125374, 'Methods')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00814252, -0.0062028538, 'competent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009833193, -0.0128186215, 'specializing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065948674, 0.0071360986, 'Ha)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004974184, 0.00738364, 'full')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010777125, 0.017439965, 'Removals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009440017, -0.01504894, 'display')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098571675, -0.003503703, 'tides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008786671, 0.0031893316, '(SONABEL)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008974976, -0.0039215647, '(including,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008145177, -0.0077501805, 'convergence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008592254, 0.00930649, '0.05')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010290797, -0.0054932213, 'internationally,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008914556, 0.007077505, 'Malaria')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00928364, -0.002276572, 'Reinforcement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007959502, 0.007900036, '16%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01023093, -0.005313979, 'perspective,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007505606, 0.0035589342, 'Modal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010701224, -0.006758709, 'turning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009195354, -0.00633248, 'disposition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011306389, -0.011916173, 'relied')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009537806, 0.0077681346, '800,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072750566, 0.009023244, '(MDP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008168832, 0.00923585, 'SNC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005930859, 0.011692887, 'MGAP.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008320359, -0.0014564979, 'pioneering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010617289, 0.012193502, 'UNFCCC:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008645489, -0.0040759295, 'possesses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008613208, -1.8801817e-05, 'totaling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007471351, -0.00018353201, 'palms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00852844, 0.013553958, 'Biofuel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011175946, -0.019749638, 'experiences,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008795031, 0.006997597, 'Dedicated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007370821, -0.0011785533, 'Illegal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008559284, -0.00023750679, "Kiribati's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007858992, 0.004889737, 'Garbage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072640097, 0.0065162457, 'm2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008740492, -0.00035965408, 'Mobility')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007270493, 0.013004075, '1.8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010567116, 0.023016434, 'Meter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077099814, -0.0021614165, 'Where')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007155649, 0.0058994396, 'MW;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076814867, 0.003032697, 'Almost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010273782, -0.0020037822, 'northeastern')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008900735, -0.007833971, 'genuine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007604288, -0.003003351, 'labelling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009902705, -0.011656949, 'accelerating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008237205, 0.0076609, 'Principe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004027974, 0.011818842, '2020,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00969908, 0.011849203, '2021-2030.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086137885, -0.0015120775, 'energyrelated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011102456, -0.00033524862, 'parity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068940097, 0.010428882, 'Foreword')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00930498, -0.0045360113, 'sub-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00952594, 0.0018886852, 'Others')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008453898, 0.0053631687, 'Saneamento')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00905071, 0.011310299, 'Fishery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075092968, -0.0030380718, 'nascent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006174958, 0.008191478, 'Tierra')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008417856, -0.0046572722, 'clinker')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098073585, -0.0012910337, 'domestically,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008581894, -0.0020210533, 'utmost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007053449, 0.010829411, 'Eo')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009819087, 0.017570758, '2014),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009741088, -0.004405276, 'parameters.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009362767, -0.0023051973, 'afforestation/reforestation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008242366, 0.013423526, '2013),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008822334, -0.0065695257, 'tanks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009851351, -0.00782573, 'resources)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006131291, 0.0037055952, 'food')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010312995, -0.0056806346, 'monitoring;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008382977, -0.0018573739, 'fraction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0103599485, -0.0004789381, 'Infrastructure,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010120391, -0.012198547, 'impact.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008113288, 0.003523471, 'Socionaturales')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010414579, -0.0052686906, 'components,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009742488, 0.01045442, 'Partial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009253869, -0.011428158, 'urban,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099313725, -0.0011965908, 'policy;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096986955, -0.0049074846, 'inclusion.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009600505, -0.014585021, 'physical,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008911906, -0.0007823508, 'outlining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096648205, -0.00970878, 'by,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007916382, -0.00092079636, 'building')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007657604, 0.012501469, 'District')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006670238, 0.0011229729, 'PTF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010829321, 0.015266711, '2021,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080054775, 9.763889e-05, 'blending')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00860178, 0.010635723, 'Definitions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008593287, -0.008571347, 'say,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008621332, -0.007813094, 'maintains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008963449, -0.010350313, 'feedin')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008914544, 0.011374332, 'Transmission')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009165289, -0.0016943781, 'underpinning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009105048, 0.013534637, '2009).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009161271, 0.0145841865, 'November')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012224279, 0.011381538, 'Transparency,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007551144, 0.00963726, 'Longrange')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009753595, 0.020635001, 'Sector;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089175925, 0.0019746246, 'Organisations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067080483, 0.010576838, 'AGRICULTURE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01185502, -0.0041345954, 'temperature;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006495005, 0.0068654944, '**')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008740527, 0.014648187, '2003.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008537179, 0.014726961, 'Inside')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008963906, 0.0144470185, 'WATER')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008079133, 0.0024569267, 'Below')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088337, -0.007712114, 'duties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009016024, -0.003378842, 'proceed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008439273, -0.0035289526, 'example.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089090625, 0.0019182144, 'Enforcement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077005834, -0.004349774, 'conviction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010617559, 0.018476496, 'MtCO2eq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087016085, 0.0016861164, 'Observatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006589398, 0.010299545, 'sectorial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072680083, 0.002756485, 'distribution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008029284, 0.007415415, 'statistics.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080142375, 0.0042168205, 'Advanced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006282089, 0.008532763, 'CO2e,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074355593, -0.006399054, 'tidal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070658294, 0.008043677, "2030-'50:")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008528344, 0.009771554, 'Presidential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009540179, -0.008680002, 'vigorously')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010052144, -0.0056257825, 'sequestration;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009669118, 0.005638956, 'ta')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008913667, -0.004865645, 'Bahamas,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007886579, 0.016431414, 'Emissions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010735536, -0.011703725, 'species;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009342317, -0.010954067, 'dispersed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083601, 0.0024585305, 'non-GHG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008900793, 0.01570056, 'Cambridge')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077425432, 0.0067144386, 'Exclusive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007826512, 0.0013481646, 'Yojana')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010668291, -0.006452022, 'network,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009101559, -0.0030371267, 'minigrid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009927693, -0.01109043, 'donors,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010059706, -0.0036474217, 'indicating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007864684, 0.00014900131, 'Ebeye')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008147393, 0.0075224, '(corresponding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01036109, 0.0055105323, '3,000,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009875119, 0.009933081, '),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007802919, 0.010644762, 'Timor-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009201357, 0.0091589065, '6000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008567585, -0.0029642489, 'pilots')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007975823, -0.0029161712, 'noteworthy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008025157, 0.0016742371, 'Majuro.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007319567, 0.004449969, 'Open')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0058235563, 0.0057016136, '2030**.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009695755, 0.013056467, 'EUR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009885518, 0.015149958, 'MtCO2eq.)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008328412, -0.006653028, 'optimum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009497734, -0.006174725, 'placement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077286856, -0.0059630303, 'everything')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010333614, -0.006319477, 'rise;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008088497, 0.0014811628, 'longitudes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078001707, 0.011448173, '(ADP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092541445, -0.0116304755, 'impelling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073856195, 0.008088836, '10.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007251705, -0.001178511, 'beneficiaries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007995196, -0.0055925488, 'curriculum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010312306, -0.003000509, 'prioritising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011521016, -0.0067714835, 'consultations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008938601, -0.0064413575, 'self')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009007061, 0.0056558065, 'Ocean.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009330021, 0.008297266, 'Codes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009281504, -0.005339657, 'usage.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008410496, -0.0037607583, 'operative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00962738, -0.00022154451, 'join')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010017106, -0.000106202635, 'propose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086665545, -0.0045671877, 'recovery;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009509677, -0.013826696, 'poor,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091178, 0.018069087, '2015-2025')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008645712, -0.0014049513, 'Honduras,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008288088, 0.0018679503, 'tested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010156328, -0.010559029, 'risks;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009028836, -0.012396752, 'copra')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009744261, -0.0037259317, 'clinical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010477505, 0.0068664253, 'Nonbinding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008087295, 0.0093559185, '(Law')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010267953, -0.009553655, 'south.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009814476, -0.009898959, 'ask')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010277991, -0.010766192, 'come.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008033383, -0.0016497952, 'sustainable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010898649, -0.0024306779, 'package')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078952275, -0.005369418, 'juridical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008358144, -0.00026187187, 'Raising;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009839752, -0.0026164635, 'international.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009640115, -0.0041310773, 'created,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008667577, -0.010523184, 'permanence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010349381, -0.01017174, 'stability.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008387693, -0.002557394, 'extraordinary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009096547, -0.003951161, 'played')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008086405, 0.010802882, '(Decree')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009629424, -0.008311506, 'history.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008185218, 0.0047306614, 'MDG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00646334, 0.009756646, 'Gg/Billions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01115438, -0.010171563, 'issues;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009009127, 0.009978988, 'Nonquantified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008291675, -0.0010460347, 'taxation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008919361, -0.006612792, 'deficits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009347924, 0.013077625, 'Hydro')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009975301, -0.006857016, 'capacity;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010681154, 0.017719567, '(NDCs)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010082338, -0.0039357934, 'South.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006617872, 0.009969482, '11,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113751665, -0.004444737, 'coordinates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101167485, -0.012944036, 'adapt,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00975558, -0.0028496254, 'organisms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007051491, 0.015436157, "2013-'20:")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008150247, 0.0042384057, 'km2.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010362879, 0.00886405, 'Adaptation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010510037, -0.017988825, 'ones,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082903905, -0.0073313634, 'vessels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008439335, -0.006401853, 'attaches')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109422915, -0.0060786456, 'departments.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009621572, 0.014095122, '205')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009208603, -0.0005602161, 'operationalization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009924987, -0.0030036469, 'attended')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010489899, 0.013569498, 'Economy,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009991543, -0.007649179, 'funds.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008802949, -0.003208237, 'round')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010304194, -0.00045626546, 'initiative.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060962117, 0.0099131325, '6.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009465705, 0.0039133755, 'iNDC.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009882914, 0.01904209, 'Components')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069647185, 0.0022824265, 'Freight')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006738297, 0.009340203, 'EINDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008209814, -0.00033554723, 'valued')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008142349, 0.006111402, '(over')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009641763, -0.0012518205, 'accession')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008275849, 0.013378528, '125')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066819857, 0.009571986, 'Key:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010323622, 0.008383077, 'Markets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008052631, -0.009329526, 'personal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009245664, -0.010377412, 'heritage,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008834638, -0.0076292995, 'stations;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009028526, -0.004614953, 'savings.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008919966, 0.0061833076, 'Additionally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007954693, -0.00487869, 'hoc')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008275297, -0.0023299463, 'midterm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008028003, 0.01075051, '240')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012614916, -0.0007706975, 'conference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010097422, -0.0074406643, 'hurricanes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009929917, -0.00563434, 'adaptation)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009027806, -0.00010218762, 'needs:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008622114, -0.0072857984, 'decomposition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009819074, -0.009377214, 'upgrades')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008266183, -0.0052776746, 'closure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008221903, 0.007779056, 'Force')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010024106, -0.006535576, 'ovens')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010850479, 0.017216025, 'LULUCF),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009825584, 0.008122927, 'Preserve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009736066, -0.01427175, 'materials,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009512276, -0.0006658149, '(construction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008886299, 0.0017978552, 'Offgrid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011603805, -0.0017957952, 'les')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063740606, 0.008843628, 'used')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009768404, 0.009709071, 'ha/year')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011048391, -0.012124774, 'importing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076094912, 0.0044970685, 'Chad,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009880776, 0.0073448643, "Grenadines'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076845977, 0.011723263, '2040,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010014958, 0.0035664046, 'domestically.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074567837, 0.0070398827, 'Água')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009283843, 0.010293623, 'Assessment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005259366, 0.008103851, 'REFERENCES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096407095, -0.0064311023, 'adding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080532525, -0.0015928529, 'forums')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008998951, 0.005939251, 'las')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008230069, 0.010664585, 'Naciones')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010799032, 0.0059870784, 'Island,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009189721, -0.0039705164, 'fine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011206245, 0.013840876, 'CO2-equivalent.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081744995, -0.00033872257, 'Sharing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00787526, 0.006646805, '(MDGs)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009546194, -0.01405303, 'restructuring')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093282545, -0.004705581, 'planned.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009016641, -0.0050033317, 'current,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010827781, 0.022274056, 'Comparison')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077288654, 0.0016622099, '(of')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009787685, -0.011263075, 'planting,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075019267, 0.006966349, 'Shown')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010333226, 0.0012786874, 'assumptions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009608451, -0.0026672848, 'intergenerational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010573177, -0.0066264807, 'provisions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007834159, 0.007417569, 'Mass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013403159, -0.015708445, 'warning,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009027606, -0.003285463, 'forest:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010544642, 0.004140599, 'translation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006557217, 0.011619885, '2.1.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072347573, 0.0024475579, '(LPG)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008221485, -0.0035208995, 'dykes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074509457, 0.005260955, '51%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008095316, -0.0020195798, 'abandoned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0115249455, 0.0039651375, "Convention's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008020813, 0.005399402, 'Marginal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008309438, 0.010431013, 'totalled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008057509, 0.008070611, '(SE4ALL)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007916429, 0.015281741, '2020"')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009385798, -0.0050309612, 'intersectoral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072492757, 0.007173162, '+,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009442188, -0.003647108, 'expected.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010982202, -0.01787481, 'consequence,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006923849, 0.013117, '6.0')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009525861, -0.008458618, 'expect')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008279093, 0.016953442, '(Metric')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010807899, -0.009969236, 'cultures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008084012, 0.009202609, '-100')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007820041, 0.0010251642, 'onto')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008558622, 0.011058632, '1961')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099181505, -0.010411355, 'aggressively')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008830303, 0.0017107546, 'sectors)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009049151, 0.011999085, '(iNDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086377505, -0.010896203, 'also,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008342217, 0.011164333, '(INDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008919773, 0.014928479, '(2012);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009932226, 0.018113773, '(UNEP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009680782, -0.003978803, 'beyond.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010414616, -0.011610195, 'economical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009092572, 0.008220548, 'used:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113106, 0.026132332, 'Compared')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008120334, 0.01504933, '(draft)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009763796, 0.007931714, 'Productive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008991731, -0.0030994932, 'Nutrition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009379737, 0.0042851265, 'Incorporation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010064986, -0.0122374445, 'safeguards')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007823119, 0.00324828, '67%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009896839, -0.0035402407, 'achieves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008341267, 0.0030534647, 'Specifically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007098911, 0.008098546, '187')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008893913, -0.0068704206, 'decentralised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009887388, -0.007475631, 'analyses,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008498111, -0.0046046586, 'catastrophes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010987226, -0.004121357, 'agree')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009931956, 0.0018254755, 'summarizes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009689197, -0.0062789745, 'verifying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008178833, 0.0020304513, 'outdated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008093596, 0.008064159, 'enacted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076304763, 0.010732295, '9,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009923648, -0.012285164, 'grain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250256, 0.011089718, 'Category')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010236305, 0.016799586, 'Strategie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005937937, 0.014658218, 'includes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00741034, 0.010858542, 'MONITORING')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00782597, -0.0012768578, 'output.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008068526, -0.0036405805, 'compressed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071906713, 0.003926796, 'let')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009609842, -0.006860691, 'utilising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008016685, 0.008641861, '1500')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008475514, -0.0015223835, 'Majuro,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009364154, -0.0074170325, 'farms.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010264788, -0.011998944, 'incentives.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085164085, -0.005290487, 'tangible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009578592, 0.0033526644, 'account:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008983244, -0.006060448, 'commuters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077349045, 0.007977959, 'Energy/IP-US')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010444273, -0.010655161, 'promotion,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00957803, 0.009209294, 'Secure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00806134, 0.005715874, 'Arboriculture')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096241925, -0.000116504234, 'nonformal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007500115, 0.0148906065, 'scenario')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008195274, -0.0023414637, 'rugged')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00929727, 0.0011171667, 'deductions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009554949, -0.011858953, 'experimental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008330446, -0.001555026, 'coalfired')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006219419, 0.009748317, 'ACRONYMS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010502714, -0.010381579, 'appliances,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010253787, -0.01305621, 'balance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009266707, 0.0054973215, 'stipulates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006766339, 0.0045669177, '15%.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008766243, 0.012614294, 'Timor')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009370218, 0.0011404278, 'Enabling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009191411, -0.004386825, 'impelled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01050191, -0.010761009, 'requisite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069591664, 0.0015974134, 'You')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009561309, -0.005881025, 'arise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008452955, 0.005172641, 'Sea.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0055451207, 0.006818013, 'wind')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008626596, -0.006745887, 'supreme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009944827, 0.01046805, 'Agriculture.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0106919315, -0.008378492, 'governments.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009727158, -0.0018101312, 'revisit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007764927, -0.0012777024, '"A')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0050187465, 0.0034394804, 'output')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008221295, -8.574201e-06, 'Dominica.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009164506, -0.006213741, 'handle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009474614, 0.013618983, '(NAP),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008982532, -0.018112656, 'tradition')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011642787, -0.012027174, 'degradation;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007689335, -0.0029299702, 'outreach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010107064, -0.010548148, 'consumes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081742685, 0.013369408, 'Proclamation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007049175, 0.010329986, 'Peak')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070928503, 0.0036416245, 'LFG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008509027, 0.00303598, 'gridconnected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006350828, 0.011649567, 'APPROACHES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009383669, -0.005051626, 'encompassing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009637502, -0.0024295785, 'disaggregated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009041051, 0.00040791478, 'zones:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0005428871, 0.0022782227, 'CRGE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009341198, 0.0148202935, '(tCO')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010612546, -0.008723191, 'international,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110713765, -0.008733835, 'polices')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008444248, 0.0165761, 'Marco')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008920458, -0.0059702722, 'interested')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104759345, -0.0111345025, 'cities;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009442969, 0.00836724, 'year).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009575348, -0.0010788547, 'agendas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008006974, 0.0087378025, 'Battle')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008652779, -0.0058926083, 'possess')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077629522, 0.008302615, '(Energy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0059565483, 0.005632959, 'F.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008775447, 0.000769005, "Burundi's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010055468, -0.010754986, 'mountains,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008950502, -0.009177551, 'incountry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054958574, 0.0024744407, '100%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009830078, -0.009220041, 'war,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006887075, 0.004925487, '(that')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008647045, -0.008902971, 'route')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008197683, -0.0014002038, '(table')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013178282, -0.0026510525, 'legislation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00843402, -0.0022916056, 'Equitable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008102975, -0.007075021, '(dryness,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062131677, 0.008467604, '7.4')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010285572, 0.012197699, 'Community.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009168085, -0.005755027, 'step,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008668979, -0.009777369, 'constituting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010382627, -0.0039641038, 'analyse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071479264, 0.0055340654, '-4%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008028666, 0.012570447, '(August')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069997287, 0.0027955614, '(In')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005906008, 0.0011205119, 'Buenos')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010473533, -0.00093935634, 'diversion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008306604, 0.009331814, '22,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009456014, 0.0033118722, 'Reversing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085244095, -0.010457008, 'teaching')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080136405, 0.02330619, 'Sources:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008405538, -0.0036172972, 'energy-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008575377, -0.0006156617, 'developped')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009614329, 0.0051723053, 'herein.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008625476, 0.001906668, 'Possible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01104669, -0.013977643, 'importance.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008791803, -0.0046222904, 'résilientes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069589247, 0.016203523, '3.2:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066862353, 0.011398792, '1.1:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073057404, 0.010072246, 't-CO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010027295, -0.0039446894, 'estate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008858046, 0.008708317, 'Oceanic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009368077, -0.009934109, 'displacement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008605019, 0.012082937, 'Grand')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250035, 0.0016135699, '(grid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011282306, 0.015289158, 'Industry.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009970911, -0.009576633, 'regeneration,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071860706, -0.00073082955, 'draws')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009582999, -0.00927301, 'waterefficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008798515, -0.0024488866, 'thorough')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010090596, -0.009841188, 'processing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010217536, -0.0014220432, 'later,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008799642, 6.075389e-05, 'signal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009782768, 0.006269427, 'documentation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010125393, -0.005634772, 'floating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008976615, 0.001055313, 'Eritrean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00836194, -0.00476646, 'leakage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009587154, -0.0015958297, 'electricity;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060528265, 0.011567624, '1.2:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00843997, -4.8452315e-05, 'Ebeye.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007847754, 0.00068056607, 'Chinese')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00865175, -0.0022688373, 'tie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009859191, -0.010643642, 'characteristics,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010017125, -0.0126810055, 'commercial,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008035332, -0.0063453205, 'streamlining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011520018, 0.01347601, 'Secretariat.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008730471, -0.009411835, 'form,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0134280445, 0.014210972, 'INDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008498641, -0.01024254, 'supercritical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009545037, 0.0005154539, 'Changing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010461095, 0.0072216, 'Combating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086179, -0.0072143944, "vulnerable'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006263851, 0.009484551, 'ANNEXES')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008206529, -0.0043629957, 'Thanks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008115091, 0.011076542, '523')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007602802, 0.00097381475, 'Benefits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010797601, -0.0012541177, 'internationally.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009413964, -0.0033957826, 'expected,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007290102, -0.0060206554, 'micro-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008810768, 0.012256246, 'Cambridge,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010655472, -0.013287976, 'resource,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010849159, -0.0068759904, 'bill,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009428631, -0.0031032606, 'eligible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009240693, 0.0013479975, 'sectorbased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008692569, -0.0053604227, 'stabilized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008708086, 0.009569143, 'US$,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012732584, -0.013155506, 'men,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065049734, 0.006307279, '230')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083884625, -0.0053593433, 'lie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008066045, -0.0052934, 'settings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009885398, -0.008880421, 'expenditures.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010968125, -0.012850613, 'responses,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008750577, -0.011307771, 'disproportionately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007888874, 0.0055203256, 'Consider')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009066996, -0.005291922, 'marginalized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008858218, -0.0068221157, 'hamper')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009029145, -0.0032842539, 'mandates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00795492, -0.004510678, 'bordering')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008516839, 0.0065043382, 'SNC.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010044532, -0.007368849, 'upscale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007610466, 0.0046620322, 'GoJ')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008900767, -0.005145444, 'significantly.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010185721, -0.012453444, 'expertise,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006952375, 0.008415256, '270')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079257935, -0.007062417, 'mosquitoes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009478402, 0.004311502, 'dates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011684234, -0.015342464, 'incidences')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008622025, 0.010675149, '5.5%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007851407, -0.0050673084, 'air,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008684244, 0.013226235, '2015-2025.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008183884, -0.0016653149, 'former')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081441235, -0.009234672, 'bad')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077199014, 0.0133366855, '(until')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009809151, 0.00040373203, 'preference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011261774, -0.015237458, 'environments.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008294642, 0.0075505525, '(unconditional)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264595, 0.004440547, "Argentina's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010756264, -0.013085791, 'elements,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008294515, -0.0050109224, 'bridges,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00826922, 0.0069957348, 'Water:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011246192, 0.01288169, 'German')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009362493, -0.0065305186, 'critical.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008268947, 0.00477765, 'envisaged:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074720145, 0.00966424, '5.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060743014, 0.0043673487, 'GNP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011850674, 0.01394406, '(COP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009772603, -0.012201757, 'interests,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00599416, 0.001913364, 'ONACC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011329009, -0.013122645, 'ecosystem.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008089087, 0.0064815413, 'oC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00904457, 0.0017399024, 'egalement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010322292, -0.009739629, 'population;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010309811, -0.009661148, 'creation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008454428, -0.0063117216, 'certainly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008287344, -0.00463733, 'demarcation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075246342, 0.0072556753, 'Nargis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012321002, -0.019598268, 'lives.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008421828, -0.0065435544, 'similarly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010336947, 0.012522957, '(Business')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009570124, -0.0048319083, 'Maldives.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010200081, -0.009000294, 'programming,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009637127, -0.0063750576, 'lowlands.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094850045, 0.00786094, '(unconditional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009347812, -0.0103586, 'predicts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008672071, -0.008336952, 'specify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008368278, -0.006081268, 'earnings.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008636212, -0.008682785, 'displayed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010359676, -0.012015389, 'war.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008859518, -0.0047159903, 'hotels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009164831, 0.001860589, 'conditional.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00790668, 0.00079283724, 'measure:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008471874, -0.0024997378, 'level:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008505838, -0.0022779764, 'compact')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009309921, -0.0055786525, 'weakness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007949494, 0.010843265, 'Excluding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009540893, -0.012501087, 'necessitate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094666, -0.00056336983, 'support)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009164884, -0.0020723315, 'Myanmar.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066789845, 0.014156747, 'CO2-Equivalent)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00901184, -0.0015034131, 'hydroelectric,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078516165, 0.007508123, 'Serbia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009272116, 0.007386855, 'Goals.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009692453, 0.008473365, '(GDP),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011519015, -0.008801433, 'awareness.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010161233, 0.013332185, '(NCCC),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008789288, -0.0042025917, 'Unfortunately,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009982292, -0.005471348, 'relevant.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070714885, -0.0011236743, 'Tons,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010120813, 0.005505739, 'contraction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008574909, 0.01360219, 'Reserves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008510909, -0.0034843588, 'capital.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077182753, 0.005938385, '"Sustainable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009811622, -0.011829408, 'advantages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00932457, -0.010828162, 'immediately,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009341586, -0.0029238604, 'methane.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092718685, -0.009957403, 'measuring,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006315287, 0.002509721, 'A1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008395031, 0.003394758, 'lowemissions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007967124, -0.0030716902, 'Djibouti,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009725485, -0.011027264, 'words,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006885485, 0.0016478387, 'RDF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008260442, -0.011333162, 'sake')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010324082, 0.0040037623, 'trajectories')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008749056, -0.0053503066, 'Importantly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01064153, 0.01659524, 'Carbon,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008575555, -0.005260107, 'coastline.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009164633, -0.0033191605, 'trend.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009363238, -0.0045965016, 'precautionary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008880806, 0.0008235618, 'savannahs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008965275, -0.0061946735, 'coercive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0102214785, -0.0039324267, 'funding;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008904756, -0.003698, 'saturation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080763, -0.00096866355, 'aragonite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077484124, -0.0009008415, 'Likewise,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008749276, 0.00089468877, 'hindered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01003925, 0.014691654, '1996.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008230205, 0.0008622625, 'Beyond')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010632466, -0.0068406765, 'appliances;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008986926, 0.02312331, '2016-2024')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008158541, -0.0021404526, "Djibouti's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072877053, -0.006656999, 'respectful')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004680022, 0.005847431, 'Y')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010851645, -0.008068661, 'adaptations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010166147, 0.008502463, '(GDP).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009884029, 0.0141448965, 'Detail')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010339427, -0.008294686, 'observation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009031605, 0.016492361, '2013;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079779215, -0.00083499216, 'phase,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007570833, 0.0014172713, 'broken')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008162951, 0.000182467, 'weakwilled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009553951, 0.013259461, 'Preparatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009240594, 0.008740286, 'millions)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009655505, -0.006970561, 'collectors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007522466, -0.008998172, 'dumps,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010568018, -0.010773913, 'food.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008106736, 0.005848719, 'Rebuilding')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077341106, -0.0022017045, 'rooftop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009649967, -0.003879157, 'studies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00847664, 0.014503882, '(UNEP,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009591048, 0.012338122, 'Instrument')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009003573, -0.0073384754, 'contour')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008621112, -0.0053629857, 'railways')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009071804, 0.0036420913, '(electricity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170793, 0.009795762, 'Launched')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096667055, -0.010052135, 'immediate,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008983804, 0.006086203, 'Innovative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007070772, 0.007865243, '3.9%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076718396, 0.0016398107, 'Rules')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009580781, 0.006117459, 'Union.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008210721, 0.0036062787, 'Mexico´s')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104686655, 0.010823309, 'Regulatory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009886482, -0.01014321, 'consume')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008623718, -0.00060150697, 'monthly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005526255, 0.0065084742, 'sulfur')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009324773, -0.0019137063, 'curve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008313661, 0.002971886, 'cm,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010840874, 0.0030605637, 'conditionally')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007732581, 0.005666002, 'BUR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008426122, 0.0059825866, 'submersion')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010471579, -0.011978556, 'technological,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007087191, -0.004611733, 'tuna')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00962405, 0.0032109185, 'waste:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010660362, 0.0059539424, 'visions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009087024, -0.00076243404, 'declarations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009152466, -0.00055123825, 'changes:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009224561, 0.0025979776, 'use:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009212963, -0.0030977344, 'crosssector')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069708913, -0.0031005535, 'peach.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009123742, 0.005410469, 'pointed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006967874, -0.0041581234, 'poultry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010525907, 0.0056592356, 'Protection,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008703904, -0.005866344, 'expresses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008781085, -0.0029428806, 'drawing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009323642, -0.0043834783, 'case.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009610312, -0.008131826, 'supportive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007239441, 0.005475738, 'Bosnia')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008274975, -0.0048224125, 'cocoa')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010853288, 0.0029811724, 'prepared.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007657293, -0.00064081873, 'bets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009953145, -0.0020729674, 'approaches.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094043845, -0.008360043, 'stressed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008672142, -0.00834729, 'combines')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074176136, 0.0070203836, 'Phoenix')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008704891, -0.004211677, 'receipt')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008546059, -0.0024514718, 'reuvre')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008736086, 0.005270574, 'Effects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009833437, -0.008447376, 'identity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008094867, -0.0037985782, "regrets'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006691718, 0.01585993, '18,780')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008197232, 0.00891229, '55%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008449428, -0.007896691, 'happens')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009391607, 0.015236543, 'Convert')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008737523, -0.0065075853, 'associations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00844056, 0.004113162, '(solar')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008404777, 0.003472713, '50%.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.013613787, 0.020734506, 'Inventories.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006746628, 0.010467636, '21,600')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074265, -0.001243311, "'no")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009410891, -0.008694534, 'livestock;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009760329, -0.0030107659, 'ship')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083963005, -0.0012795932, 'cereals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00852935, 0.005111486, 'totals.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008402916, 0.005991013, 'Considered')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007741577, -0.0029716578, 'beneficiaries.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078109982, 0.0025826115, 'Crisis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009037051, 0.008138579, '8000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071032634, 0.009764972, '225')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008934098, 0.00052524696, 'centred')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010051003, -0.015304898, 'difficult.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007864835, -0.0050456505, 'cities)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009397692, -0.0066960035, 'particular:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007012985, 0.014260051, 'Y.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009951921, -0.006601479, 'enforcement,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008776953, 0.0030608813, 'External')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008055245, -0.0003067976, 'catalytic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0064032525, 0.0030749682, 'Olive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070063905, 0.0041428753, '23.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0080025075, 0.0040244497, 'Launch')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085578915, -0.008083665, 'examining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076206457, -0.004781068, 'sostenibilidad')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093498975, 0.012143832, 'LULUCF:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011041149, 8.1494814e-05, 'Adopting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008529566, -0.0005424309, 'division')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008058856, 0.008033382, '(Note:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009267091, -0.004854388, 'governance;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008318725, 0.010571155, ');')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009828962, 0.010020216, 'A-INDC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075817807, 0.016137812, 'DC:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009264063, -0.010922598, 'ambiences')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010235275, -0.0051413383, 'up,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009462379, -0.004805782, 'grade')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008960587, 0.008674034, '1),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0064382344, 0.014065923, 'P.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008896517, 0.004692424, '(Green')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007999457, 0.010543461, 'US$.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008504116, -0.004990832, 'revitalisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005956902, 0.009193178, 'ADP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054648053, 0.009309912, 'TECHNOLOGY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010304856, 0.0009020145, 'framework;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0059087407, 0.007611582, 'G')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008689298, -0.004135048, 'favoured')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076757385, -0.003107394, 'Nigerians')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009480302, 0.001013686, 'Constructing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010946334, 0.00073806423, 'Mongolia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008958612, -0.008431535, 'charges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008070086, -0.00029014965, 'Artificial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010125549, -0.011570261, 'maintenance,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007307188, 0.0014536981, 'Nicaragua.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009879231, -0.0064591807, 'transnational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009776231, -0.005103195, 'agriculture:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008219482, -0.007832551, 'interim')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010256004, -0.00769803, 'heater,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008349971, 0.011833541, 'Workshop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008218213, -0.009713981, 'multi-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009071904, -0.012616805, 'impose')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008232399, 0.01314349, '1st,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096247345, -0.007329467, 'abundance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010019107, -0.01049976, 'rice,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008849475, -0.0022467598, 'exception')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0079587065, 0.0020580888, 'Have')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008838143, -0.007737041, 'facets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007833745, -0.008500853, 'germplasm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009427704, 0.018072838, 'Scenario:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009381883, -0.006238078, 'exponentially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008189009, -0.00036964763, "s'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068399203, 0.0029228837, 'Nurseries')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073244306, 0.006998444, '7.8%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007195207, 0.0050534415, '27.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010641948, -0.011216045, 'thing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007318393, 0.02276142, 'Projet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011192233, 0.015445231, 'Non')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085047325, -0.0072595584, 'quickly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175713, -0.004077917, 'crop,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075559295, 0.001156293, 'delayed)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00672425, 0.013444431, '2026-2030')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010510039, -0.0015755057, 'renewable.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010599438, -0.01580141, 'inundations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010973773, 0.01951283, 'Products')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009314976, -0.0018371143, 'row')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008021778, 0.0009651121, '(time')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009022888, -0.001709314, 'firms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109626865, -0.0030452635, 'agreed,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009231246, -0.0073785703, 'commerce,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008724878, 0.0034348546, 'SPC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069359313, 0.0042623444, 'Islamic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012786509, -0.005996341, 'legislations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008010816, 0.0110849505, '2010);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009289875, -0.015295903, 'banks,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010144624, -0.008813733, '(water')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011208732, -0.008526836, 'warnings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008940385, -0.0041511543, 'woody')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008127853, -0.003406899, 'purpose.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110001415, 0.0057641757, '20.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01059452, -0.015666096, 'makers,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065781977, 0.00036067225, '720')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008328341, 0.00042846464, 'Pursuit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009151837, 0.017964276, 'STRATEGY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008143249, -0.0033770113, 'holds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006959462, -0.0031454128, 'bauxite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010711102, -0.010674971, 'diversity.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0101685915, -0.011112649, 'reserves.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0118993055, -0.016319616, 'exacerbating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009423361, -0.0088619795, 'wetter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010817474, -0.010471219, 'losses;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009889294, 5.2962525e-05, 'finalising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008938742, -0.011841389, 'religious')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008019632, 0.011128955, '2032')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008988201, -0.0012368686, 'Saharan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0035388914, 0.0013409468, 'MCVDD,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00955604, -0.0076151667, 'inflation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00679116, 0.0017573329, '"Fukuoka"')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086250035, -0.010102052, 'hunger')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012189464, 0.0152196335, 'Timescale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009078649, -0.003493694, 'ideas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007626517, -0.0063304934, 'worldclass')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077408184, -0.004681608, 'springs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073542967, 0.010017877, 'ADB,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010966264, 0.008323503, 'Parliamentary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011234594, -0.010277698, 'cooperate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008702853, -0.005771698, 'bare')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074199736, 0.013444216, 'Cell')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011048824, -0.017438108, 'trade,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005583764, 0.0022291418, 'impact')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010433437, -0.0048455196, 'initiatives;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092763845, -0.0010112232, 'certified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009767816, 0.0015202615, 'Incorporating')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008311575, -0.007381479, 'incentivize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009269157, -0.004802992, 'returning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011307407, -0.018577779, 'alter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010612825, 0.011417771, '(LUCF)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007059128, 0.013178873, '6.6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014714139, 0.021647489, '(CO2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077852006, 0.007289119, '10.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007977428, -0.0075470284, 'fastgrowing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009485418, -0.010865409, 'expensive.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069757984, 0.0016175159, 'Guadalcanal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009418034, -0.0058996147, 'opening')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009191202, 0.011228275, 'Uncontrolled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008079049, 0.010124968, 'Index,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008172302, -0.004896288, 'groundwork')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007881134, 0.0038028134, 'BCCSAP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008732666, -0.006460373, 'watercourses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073872297, 0.006778867, 'Wadi')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088335015, 0.004859365, 'Enable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008631304, -0.0027933614, 'dual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008520026, -0.0070249797, 'cost-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007559415, 0.0018854281, 'olive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076081106, -0.008119796, 'advocacy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848769, -0.007470583, 'knowing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008116164, -0.0030951232, 'loan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010598331, -0.008874856, 'engender')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008192309, -0.004762301, 'ascent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00825098, -0.0060791387, 'echo')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009424237, -0.011774533, 'balances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577164, 0.013140849, 'March,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010083414, -0.008777685, 'investment;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010197393, -0.0024905452, 'components.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0122143375, -0.012326093, 'disease,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011319448, -0.018357215, 'induce')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00875937, -0.0006626314, 'levels)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010330297, 0.02905858, 'In:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066326065, 0.00890881, 'R.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006128789, 0.008389579, 'N.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00889788, 0.01108775, '2025)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009454307, 0.01824054, '(MtCO2eq)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096197305, -0.00073783094, 'aligning')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009939825, -0.008096029, 'programs;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008819794, 0.012297844, '(GEF),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009583867, -0.008229854, 'optimise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009685587, -0.003143548, 'provided.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010591189, -0.012317096, 'gendersensitive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074775224, 0.0014354014, 'SFM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071159457, 0.004434263, 'Mali,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008240613, 0.020442665, '2016-2030')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007996728, 8.429737e-05, 'example:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009858918, 0.02511389, 'Proposal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010929692, -0.010313023, 'lands;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011211977, -0.018583177, 'pressure,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085096415, 0.0067260843, 'Census,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009500648, -0.006608817, 'practice.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008283346, 0.011825929, 'Directorate-General')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009598815, 0.0033954682, 'Slow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008873148, 0.008875205, 'Connection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011331645, -0.010278318, 'electronic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095788, -0.0063992226, "industries'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010369487, -0.003637129, 'packages')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062630717, -0.003921977, 'on!')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008750996, 0.0124274865, '2004,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004936735, 0.0019013607, 'PM')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010899099, 0.016073672, 'Resilience:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009558804, -0.006483119, 'highefficient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007582221, -0.0048728096, 'undoubtedly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010806951, -0.013953612, 'marine,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008813861, -0.004684657, 'workshops,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007992752, 6.1807325e-05, 'board')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0099981, -0.007982593, 'performance.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008245316, -0.0078475075, 'communautes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008393957, -0.00882404, 'thriving')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007525422, 0.011482721, '104')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008855446, 0.008031878, 'targets:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074930266, 0.008213221, 'Tax')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009082262, -0.00828642, 'high.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008570655, 0.011111934, 'Entre')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0052393335, 0.003080587, 'Córdoba,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094055375, -0.0106903715, 'dangers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007578479, -0.0018358793, 'ZAE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01058047, -0.012005231, 'organizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0107884435, -0.006122305, 'dictates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010235741, -0.0022464565, 'residues)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074731256, -0.0037951986, 'Multiple')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005666323, 0.005679416, 'CABA,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009452669, 0.016386287, 'GWPs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074883685, -0.0027175876, '(f)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100387605, -0.010770642, 'phenomena.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007909662, 0.015556302, 'Trend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010129096, -0.004699874, 'rehabilitated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006190511, 0.006827724, 'Fuego,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01182714, -0.0048633153, 'strategies;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082102455, 0.011407623, '2014-2018')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008198583, -0.002083814, 'contemplates')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008364193, -0.004512938, 'mere')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008713338, -0.008162898, 'origin,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008533591, -0.0055015124, 'housings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010846717, -0.015548894, 'increasing,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073700766, 0.009457581, 'Do')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008179417, 0.009787938, 'Coconut')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008657427, -0.0015084774, 'extrapolated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009349916, -0.00579044, 'diesel,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012473963, 0.00964468, 'Ministry.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008020917, 0.00802534, '(INGC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0085311895, 0.007666319, '18,500,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010073335, -0.013005093, 'code,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006322485, 0.009531704, '31.8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007896295, -0.007042853, 'flowers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077595483, -0.006667809, 'health')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010169158, 0.016472628, '(SNC).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066086734, 0.010098146, 'T.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010009131, 0.011119353, 'Press,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009396813, -0.011778975, 'clever')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008567687, -0.002937911, 'semiurban')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009005243, -0.002925684, 'Niue.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077108555, -0.0013357913, 'automatic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00976418, -0.0056231846, 'greener')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008061619, 0.009884991, 'Andorra,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010983934, -0.009216389, 'reservations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008118924, -0.005003888, 'language')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009739695, -0.0026520449, 'straightline')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077905683, 0.0032056412, '390')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007037883, 0.0030811448, '(8)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072244564, -0.0010219876, 'lagoon')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008351308, -0.0016925245, 'linear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007995973, -0.0018255184, 'toe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008471306, 0.0030858053, 'Nearly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005777194, 0.005127963, 'AFAT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008016395, -0.00034224617, 'OTEC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008562824, -0.006556156, 'behavioural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010281458, -0.013566739, 'improvements,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008226578, 0.00029999088, 'PMU')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010334352, -0.0069903308, 'agroforesterie,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009049638, -0.0013950965, 'recommendations;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009943384, 0.016045772, 'Est')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0051376126, 0.0034917898, 'Mouhoun;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010721282, 0.021196585, 'Cover')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0090799, 0.008099442, 'Procurement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005945472, -0.00013778571, 'Sahel;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00943794, -0.007992374, 'geography,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009211852, -0.00057684095, 'update,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010645013, -0.007934245, 'lean')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009840906, -0.012078676, 'moral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011716249, -0.01635337, 'tides,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066750366, 0.011370586, 'Centre-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009272053, -0.012481032, 'destinations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012101311, 0.014241187, 'EMISSIONS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009108123, -0.004026482, 'geology')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008933102, -0.00595706, 'households.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010045738, -0.002204007, 'unconventional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008792167, -0.0019495353, 'Largescale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009713318, -0.007066052, 'forecasting,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076680756, 0.0016803469, 'Ranking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008122588, 0.011645482, '2007;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008179964, -0.006148866, 'computer')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009768698, -0.005211446, 'economique')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007801342, 0.00816725, 'Dry')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008692922, -0.003316106, 'joining')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012171323, 0.010212276, 'Warsaw,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009848565, 0.010675964, '2018)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009372296, -0.007877106, 'Identifying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007995213, 0.005367545, 'webpage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008552632, 0.00946141, 'goals/targets')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00916581, 0.016273389, '2006).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008294023, -0.0015728639, 'contemplated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009986232, -0.003076738, 'progressed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010268699, -0.004666003, 'consumptions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077331346, -0.006274801, 'airports,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075892494, -0.0054784073, 'shortcomings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011134624, 0.011698588, "Minister's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075167893, 0.0075432975, 'MEC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007988725, -0.0030714863, 'multidisciplinary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010800308, 0.0114555815, '(LULUCF).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009873884, 0.014090083, 'tCO2e.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008442868, 0.01330247, 'Power,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008156439, 0.0017460291, 'projects)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010068811, -0.004183689, 'organisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010395126, 0.008121789, 'contracts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011245891, -0.006503578, "stakeholders'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009763068, -0.008780953, 'subsidies.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007835033, -0.0019436654, 'format')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010352013, -0.009826638, 'tolerance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00780466, -0.0033517533, 'alongside')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010337072, -0.0012395233, 'capitals')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010021217, 0.00076701277, 'attenuation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008188941, 0.003075735, 'Malawi.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009065384, -0.0071731806, 'introduces')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00831176, -0.0051598283, 'retrofit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010339018, -0.01179534, 'coast.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070826733, 0.009609571, 'Kilogramme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005933773, 0.0057161883, '69')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005371749, 0.008264384, '325')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007856416, -0.0056678667, 'index,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008130522, 0.0047378377, 'Homes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010238957, -0.008578761, 'substances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.014292044, -0.000905303, 'landuse,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008616165, -0.0018189128, 'dramatically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006497107, 0.0034133433, 'Km')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075635742, 0.0014756358, '(NGOs),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010269429, -0.012607933, 'societal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010938765, -0.0023601723, 'manufactured')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009104621, 0.009654838, '1975')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011330248, -0.020290332, 'goods,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577373, -0.008736411, 'clash')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008779839, 0.015233017, '(GTP-100;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008770792, 0.007951858, 'Quantification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009845762, -0.0034020604, 'financier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010264653, -0.00560828, 'fund,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008038023, 0.0072080605, '330,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091196075, 0.005406139, 'Barbados.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009058258, -0.009478367, 'impossible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009242691, -0.0033126995, 'fallow')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009629687, -0.010417628, 'conditioning,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007721407, -0.002569281, 'journey')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005461781, 0.0056594824, 'Acronyms')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010565477, -0.014429327, 'enhances')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009097138, -0.0023536999, 'gasses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074173748, -0.00025221764, 'fifteen')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011467375, -0.014263409, 'integration,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007846689, 0.0025699227, '94%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007249646, 0.0040112403, 'SHS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010211213, 0.0129124615, '(CCCRA)-St.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009770426, 0.006137993, 'Country.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00886062, -0.009211268, 'vegetable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008564773, 0.0070405197, 'Irrigated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009103811, -0.0042875744, 'gather')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009417768, 0.017695159, '(2000)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007470557, 0.003586648, 'quo')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010610743, -0.00620264, 'implement,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007993492, -0.0040610046, 'argan')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010623308, 0.0186993, 'Native')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008322432, 0.013102335, 'Law.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005786995, 0.011970313, 'GAPS,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008770396, -0.004410189, 'completing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01009513, -0.011401026, 'importantly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007962805, 0.016056482, '(CCNUCC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010385095, -0.011860851, 'quality;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006299831, -0.005693137, 'protégées')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010305856, -0.014598562, 'predictable,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008953202, -0.007975033, 'moist')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008049444, 0.0065362942, 'Municipality')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009760218, -0.008188652, 'decouple')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109253945, -0.016225168, 'properties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007867574, 0.011456074, 'Concerned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006251184, 0.0012787177, 'brick')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00943011, -0.007979149, 'detriment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01096293, -0.013130558, 'loss.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010226583, -0.004688065, 'tackled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007577573, -0.004721438, 'failure')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009624332, -0.007766705, 'scientific,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008512146, 0.006539981, 'Croissance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010576846, 0.0143156545, 'Communication)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010996304, 0.005889726, 'Mauritania,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006330437, 0.012967956, '(eds.)].')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008031664, 0.0109058395, '2020-2030,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072011277, 0.007749525, 'TCN')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008553786, -0.006025869, 'reasonable.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010426269, -0.015927952, 'inequality.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008861466, -0.009524826, 'geophysical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009823129, 0.015504477, 'Partner')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008903481, -0.0045837, 'firewood.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0052401875, 0.011111836, "2020-'30:")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00978368, -0.00743172, "region's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009640327, 0.00080513745, 'Mexico,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076711616, 0.0036372358, 'Task')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008564826, 0.0135006085, 'Indefinite')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010677009, -0.0097466735, 'techniques;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068451315, 0.01198582, '5.7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008998059, 0.016135376, 'MANAGEMENT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008493145, -0.0032675224, 'Emphasis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00966443, -0.0087803025, 'prerequisites')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011054417, -0.009303016, 'irrigation;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006698759, 0.001901348, 'LesoTho')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009353061, 0.0106157055, 'Estimated,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074825864, -0.0013126143, 'lagoons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008764004, -0.0074794977, 'atrisk')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009477184, 0.00079995167, 'saved')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009175309, 0.009343744, 'Standing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01136429, -0.0026946124, 'assessment.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011034869, -0.008916106, 'products;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009704922, -0.005514462, 'sequestrations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01025044, -0.012100447, 'intrusion.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00916184, -0.0066559887, 'civilization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010523438, -0.0074076573, 'means.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010039062, -0.011993939, 'eradication,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008623339, -0.0015003374, 'facilitate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076692253, 0.0076194094, '2eq')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007602308, 0.008152064, '(SLM)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009750087, 0.008837909, 'Instruments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009271705, -0.0051362654, 'further,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009070219, -0.0033076038, 'elements:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087516485, -0.008079956, 'behavioral')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009818273, 0.008951628, 'Formulate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006541562, 0.0057928613, 'Abbreviations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009654823, 0.0070888093, '"Lima')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010276947, -0.012215674, 'rural,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084810825, -0.004154818, 'restrictions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008224201, -0.008187145, 'freshwater')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005811441, 0.009722782, '93.9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009115718, 0.002933066, 'Species')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009144743, 0.013486818, '2020-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007578039, 0.0035386768, 'protected')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010208969, 0.00014648933, 'ministerial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008956537, 0.009647479, 'Chamber')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009054171, -0.0025341944, 'adaptation/mitigation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066983807, 0.0073238574, '11.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008219264, 0.0063978983, 'were:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008149466, -0.0062469933, 'plots')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008123282, 0.0073937397, 'rate:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009633259, -0.005651167, 'offsetting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009381156, -0.010205564, 'persons.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009372648, -0.010921616, 'ends,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076874145, 0.003426895, 'related')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009535145, -0.0025194245, 'falls')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066722357, 0.012439181, '6.8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008626698, -0.005148236, 'production)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-2.5311745e-06, 3.151149e-05, '5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009716817, 0.011690149, 'Committee;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007574461, 0.005963842, 'Enlightenment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009279741, -0.011289005, 'dead')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008960521, 0.009657925, '(UNDP')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092087565, 0.0037685954, 'recommendation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006903789, 0.0068549737, 'B')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009071456, 0.016531112, '2003)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008430911, -0.007734573, 'road,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089244945, 0.010975131, '24/CP.19')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007383604, 0.008410373, 'Emirate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007859259, 0.006714215, 'initiatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01068972, -0.0041477904, 'arrangements.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010224832, -0.0118609, 'decarbonizing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009170083, -0.010143487, 'banks.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007974437, 0.003952644, 'appointed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009951065, -0.012312902, 'functions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009975152, -0.008209343, 'resistance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010214523, 0.019034564, 'Relative')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0011533565, 0.00053910975, '1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077375052, 0.009820761, '5.4.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009472943, -0.009967419, 'particularly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0063467147, 0.004730807, 'above')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008919559, 0.01157973, '1997.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0112474365, 0.023458088, 'Residues')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007548341, -0.0064989924, 'machinery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0058319843, 0.0065595345, 'HEALTH')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009965261, -0.0066139004, 'participation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010639164, -0.009882828, 'imports.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008714535, -0.00060670543, 'Tonga,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074223094, 0.0023150542, 'Colombian')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008961315, -0.009147509, 'exchanges')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00969295, -0.0036713637, 'forestieres')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00831869, -0.00798135, 'constantly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00839557, -0.010359254, 'modify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007725592, -0.0011063354, 'Skills')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007921438, -0.0014154076, 'resources')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007566871, 0.00028493023, 'Higher')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008657389, -0.006320386, 'communitylevel')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011115504, -0.020202698, 'inequality,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007404599, 0.011223145, 'f')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009354928, 0.000263575, 'metrics,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076226327, 0.015684934, '2010-2015')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009292885, -0.003904026, 'try')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250841, -0.003320016, 'preferential')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.025270412, 0.022237457, '..............................................................')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005233339, -7.2337934e-05, 'risk')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008000346, 0.0035032323, '5%,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010508852, -0.009713469, 'efforts;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009102143, -0.00480892, 'Nauru.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010862592, 0.0063028354, 'Articles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075997887, -0.0019080427, 'democracy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008859047, -0.0065820226, 'pristine')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009104945, -0.009042556, 'large,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060787504, 0.010991539, '1.6.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008288007, -0.006659478, 'survival.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009866881, -0.013631896, 'solutions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088970335, 0.00028784256, 'gigawatts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009053524, -0.001252352, 'ongrid')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095106205, -0.008833186, 'etc')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009306191, -0.009672226, 'characteristics.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010648166, -0.020107003, 'strain')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008176624, -0.0037213718, 'wettest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084454175, 0.006839783, 'is:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008583029, 0.004060535, 'Limit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009717334, -0.009174166, 'heritage.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076000383, 0.003145101, '(power')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008848156, -0.010793548, 'strip')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008502627, 0.009334877, 'Annexes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075220065, 0.0069418843, '41%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007630142, -0.0035604956, 'Elimination')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009410237, 0.004188107, 'subsection')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096384715, 0.016483134, '(2014);')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009458055, -0.00968892, 'resource;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010239415, -0.0025956037, 'united')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009237196, -0.0062650032, 'derivatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00935484, 0.00060716335, 'indicators:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009708881, -0.0056318813, 'run.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010137574, -0.005395661, 'delay')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011703818, 0.005411504, 'Agreement;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007975973, 0.008698902, 'approximately')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008232621, 0.014842936, '3.9')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011978889, -0.0022291564, 'solvents')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008736339, 0.008733959, '(estimated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00949315, -0.0061776917, 'specifications')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009015388, -0.006698942, 'era')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0060473266, 0.005495342, '2,355')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008952145, 0.0032490252, 'Intensification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081479885, 0.0036576148, '15,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010113221, 0.0058717523, 'Educational')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009912668, -0.009199653, 'improved.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0088271815, 0.014975238, '(revised')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009293732, -0.0040959204, 'logistics')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076581906, 0.0066496544, '(PPP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076554, 0.00080730626, 'PANA-ASA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011297192, -0.014251703, 'reefs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008658274, 0.011028678, 'Quarter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008794521, -0.008592163, 'decentralisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084387995, -0.0036125567, 'abroad.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006575347, 0.012615633, 'Subtotal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008441836, 0.0062877196, 'fluorescent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007681283, -0.0049852855, 'surplus')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008397612, 0.007625641, 'Highways')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008100478, 0.006743296, '0.003%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071584773, 0.0104925595, 'Feed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010149875, 0.021552, 'Invest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01001917, 0.01568048, 'Change:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0110174585, -0.0032125062, 'reforestation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010203583, -0.0061308434, 'focus.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009668489, 0.019453142, '(tCO2e)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0043196226, 0.010001851, '2012.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008820474, 0.0062317206, 'weighted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009523929, 0.012582048, 'Tenth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073886313, -0.0027699654, 'smooth')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111283455, -0.0070841056, 'difference')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008735786, -0.0028038407, 'Pakistan,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008676197, 0.007905121, 'Pathways')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007865808, -0.00079619, "Bahamas'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007795492, 0.009592608, 'commitment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0100241685, -0.0062157433, 'campaigns.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0083493665, -0.0078638885, 'realtime')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008094959, 0.0115376795, '(REDD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009638556, -0.010565094, 'em')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00879811, 0.003085694, 'Sequestration')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008396027, 0.018266002, 'Real')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.003928373, 0.0020095846, 'Barbuda.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009484883, -0.005683465, 'Reinforcing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009102512, 0.0010635398, 'laboratory')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010233444, -0.008044822, 'political,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069782315, -0.0020276485, '"We')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009301038, -0.008616643, 'regulations;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00898691, -0.008110424, 'retreat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009365368, -0.006904925, 'industry)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008206061, 0.011659895, '1982')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01132572, -0.009084299, 'event.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00942585, -0.008181285, 'persistent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009852169, -0.009672333, 'attend')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010546189, 0.010636665, 'Committee.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009972335, -0.00093635125, 'orientation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009891733, -0.012235355, 'sufficiently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010484221, 0.0034979195, 'updated,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008270213, -0.0057685687, 'boats')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008354627, -0.00949742, 'rescue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007162742, 0.0044552716, '3,1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009462056, 0.0012659502, 'finalization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008554553, -0.0063280216, 'scientists')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008165543, 0.016740689, 'Palau')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008843412, -0.007695818, 'revenues.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009121103, 0.00906976, 'Centers')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008167846, 0.0037775098, 'Accompanying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073441686, 0.0043519484, '0,2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009851143, -0.0045891427, 'reaffirm')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008512492, -0.006177206, 'resolutely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077482443, -0.004997911, 'hardware')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077398065, 0.010484803, 'Tier')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009588776, 0.00081546215, 'owed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00738841, 0.009255223, '1989.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0019981754, 0.0060294424, 'PV')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092725055, 0.012618966, '(Second')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009559692, -0.00440756, 'adjusted,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0087115625, -0.004217059, 'express')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0042145676, 0.0076210652, 'two')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007446885, 0.0014446318, 'Railways')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010325096, -0.012762896, 'imports,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006652298, 0.009635805, 'USA.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009868576, 0.0103216255, 'Art.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008854948, -0.0021558309, 'legitimate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074040787, -0.0024206392, 'spectrum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007981994, -0.006804358, 'transboundary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009148229, -0.004526535, 'environmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009576829, 0.0037119938, 'Areas,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008902735, 0.0028678724, 'international')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008393547, -0.006589261, 'plains')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009737948, -0.0049535194, 'concerted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072970623, 0.008733725, 'Policies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010147263, -0.0084166955, 'outcomes,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094517395, -0.006913954, 'worst')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009947284, 0.01810874, 'Policy;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012272905, 0.0038262731, 'Convention;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009797459, -0.0070758206, 'distribution,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007921064, -0.0021594842, 'joins')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005820735, 0.009850948, 'oil')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009944027, 0.013664919, 'Wastes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009459116, -0.0055999677, 'shelters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00890582, -0.005656998, 'habits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012109212, 0.007911662, 'Nations.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006497606, 0.00035865675, 'existing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010952654, -0.009479906, '(water,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010252119, -0.011193881, 'mind,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008952268, 0.01490817, 'Side')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009537236, -0.008393631, 'harmonized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0050208243, 0.006403883, '2020.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010562603, 0.003651433, 'adopted,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012012058, -0.014262138, 'resilient.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004502674, 0.017285645, 'end')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009553767, -0.009688858, 'techniques.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009275785, 0.0136141395, '2009)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010462838, -0.014545162, 'chains,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009312066, -0.0072774943, 'accommodation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009609959, -0.00714071, 'done,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010374013, -0.009795273, 'focus,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0095353, -0.0003581652, "Madagascar's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0045744427, 0.007377537, '2025,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008028581, 0.011529921, 'Contribution')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01000595, 0.008966903, 'Consultations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010860764, 0.017857112, 'January,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007798993, 0.007874696, 'objective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0056452057, 0.01049865, 'three')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011060267, -0.001484879, 'account,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092728585, -0.011077528, 'corn')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009174081, 0.008816908, 'Calculation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008239034, 0.0020824177, 'Cultural')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008235078, 0.00018311541, 'Synergies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054391385, 0.009654492, 'sector.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008591033, 0.009997403, 'greenhouse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011245162, -0.0067013004, 'residues.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00789782, -0.00020522793, 'cardinal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00873178, 0.01505952, 'Joined')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008193458, -0.0066394447, 'autonomous')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008024372, 0.011258575, 'UN-REDD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008756638, -0.0041795764, 'stewardship')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009789075, -0.008275221, 'option.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009872623, 0.0114457905, 'Interministerial')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008662669, 0.0009040661, 'Augment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008271919, 0.0131036015, 'GWP100).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010005291, -0.0056740483, 'belief')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007923834, 0.012055455, "MINAE's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006964429, 0.007027666, 'policies')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012155342, -0.001108395, 'decisions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011378834, -0.005298872, 'wastewater;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007552225, 0.012780809, '04')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009991375, -0.012568307, 'growing.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009471695, -0.00613675, 'thought')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009867636, -0.006309586, 'soils.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007909097, 0.0017848086, 'Footprint')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010732737, -0.01445376, 'confront')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009482589, -0.008794969, 'balancing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007235018, -0.0022192167, 'country.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010182986, -0.004852913, 'advise')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008066623, -0.0052571665, 'area)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0057558957, 0.0031739506, '-300')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008189035, 0.009358861, 'Sinks')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010731054, -0.004330243, 'energies;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008083254, -0.009054332, 'stop')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009526642, 0.019838855, '(2011')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009959157, 0.010071768, 'Forestry:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010466863, -0.0048572747, 'predicated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010368668, -0.0068030716, 'Minimize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008296868, -0.00038565788, 'fiduciary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008626737, -0.0028982435, 'occupy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006429397, -0.0007444529, 'continue')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00938087, -0.010255517, 'intercity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005669573, 0.005920127, 'additional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0058321645, 0.013617972, 'our')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007011149, 0.010058696, '2030-2050')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008704092, -0.0009968362, 'forum')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008475946, -0.0052771736, 'signs')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007192411, 0.0106324535, 'Unidas')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008435397, 0.0001807289, 'tune')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008573192, 0.0006997963, 'available')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009925362, 0.0027207693, 'summary,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008614986, 0.00017666051, 'profiles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007926696, 0.0017839592, 'quadrupled')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008786627, -0.00720014, 'multimodal')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010584092, -0.0099681, 'cooperatives')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010066493, -0.0056755324, 'grasslands),')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00446741, 0.0023511916, 'Barbuda,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004160149, 0.014845282, '2025')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0081581855, 0.017471164, '2010:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00926814, 0.012646655, 'Absorptions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009097109, 0.012822936, 'tons)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094524, -0.0089705065, 'modest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076778377, -0.0008907066, 'Heritage')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093419, -0.00927682, 'inherently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008153181, -0.0024576203, 'CPEC')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062734564, 0.009903251, '2014.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010308528, -0.0074507073, 'forest.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010158843, -0.011298178, 'reserve')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008463891, -0.0022301828, 'standardized')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009410251, -0.0053369408, 'legend:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075892233, 0.0061238655, 'axes:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006577253, 0.00025739358, 'piece')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006738639, 0.01098913, 'Free')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011307685, -0.007296864, 'engagement.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008308868, -0.010289548, 'favors')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007140013, -0.002084715, 'paper')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010189018, 0.01128325, 'Inland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008242365, -0.0037438418, 'garbage,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00844399, 0.0012107686, 'clusters')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065436014, 0.007829825, '4.3.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074271876, 0.0102056945, 'Provides')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009145533, 0.016971685, 'CO2:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009818408, -0.012829676, 'sensing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0086149555, 0.015896747, 'Respective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010776303, 0.009688489, 'Sweden')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008729034, -0.0025022845, 'Severe')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076998933, 0.0034140232, 'RDC,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008881178, -0.008768168, 'decentralization')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009152193, 0.008866832, 'Office.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076946607, -0.0024250755, 'nearby')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0096892, -0.009446728, 'making.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008444325, 0.007176351, 'Review,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009458693, -0.009527636, 'mountainsides,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008636966, 0.010670875, '4.5%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008702936, -0.0073808855, 'roots')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009064964, -0.012754786, 'know')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009553954, -0.009472414, 'supervising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010912155, -0.016229136, 'nations,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011020471, -0.01330692, 'settlements.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072048153, -0.002741694, '(i.e.,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0072433394, 0.0025572197, 'progress')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069731683, 0.007269099, 'component')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009066209, -0.010869424, 'force,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010162206, -0.01596505, 'wellbeing.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.003953116, 0.0063141133, 'v')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00986541, 0.0068365303, 'Water.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076384577, -0.0037068957, 'hotspots')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008602534, -0.00020502132, 'Friendly')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011670582, 0.013956958, 'NDC)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.025527757, 0.022499193, '....................................................................................')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010361115, -0.014777034, 'intra')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006176712, 0.0021590183, 'change,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008586377, 0.0050066197, 'Health:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010468605, -0.013875267, 'citizens.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008200094, 0.0015199119, 'Erika')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078075076, 0.019307595, '12th')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006330035, 0.0065861763, 'KT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006499043, 0.00079742435, 'current')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0098444875, -0.0005544614, 'absolutely')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010095698, 0.0004715995, 'reviewed,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009520366, 0.0017392889, 'Governments')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006115273, 0.009336459, '3.4.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010347112, 0.02785825, 'Approval')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010515389, -0.007237869, 'imported.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078124385, 0.012563947, 'CH4:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005261582, 0.013133064, 'project')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009230969, 0.0025778774, 'Goals,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0061699194, 0.006637571, '4.4.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0065360176, 0.011699319, 'Until')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009152341, -0.009103669, 'calling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008121219, 0.008186388, 'chapter')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071909577, -0.0041651702, 'important')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006113161, 0.0030048944, '0,7')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010103646, -0.0032074405, 'present.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006272009, -0.0007051545, 'build')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008777029, -0.004400879, 'Keeping')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009120209, -0.012674187, 'expanse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00822364, 0.00059590564, 'tenyear')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008892609, 3.0173844e-05, 'nonelectrified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0092465, 0.001962696, 'PDR,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009303365, -0.0034820172, 'resilient')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010340166, -0.009953288, 'abate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010126349, -0.003203377, 'perspective.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00874413, 0.009130609, '1950')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008536493, 0.003876419, 'illustrate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008237481, 0.00833396, '1,2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076808976, -0.0028562467, 'limiting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008719706, 0.0031273186, 'action:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011086543, -0.0068641473, 'afforestation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010110527, -0.016245885, 'property.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069276798, -0.0029308943, 'losses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0048513957, 0.003447156, 'place')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005873524, 0.011557751, '0.001')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010021401, -0.0046957205, 'disposed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0109684095, -0.013441236, 'frequent,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010577023, -0.017433861, 'loss,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009145972, -0.008875681, 'position,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.025740808, 0.022707839, '........................................................................................................................')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070518027, 0.011386432, 'COMPONENT')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075558396, 0.0024505565, 'government')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062083947, 0.010992002, 'PRIORITY')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008147664, 0.012502375, '(AR2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00924557, -0.006766774, 'potentialities')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008288773, 0.01665314, '2012:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009692927, -0.013159707, 'strong,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008458342, -0.0093829315, 'compromising')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008604176, -0.00429106, 'practically')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007934126, 0.011688789, 'MINAE')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004560597, 0.011382971, 'it')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005816388, 0.011277371, 'IV')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0043389057, 0.009385888, '2010')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010264799, -0.012041874, 'frequently')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011449957, -0.014894589, 'livelihood.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010208272, 0.010837987, 'Committees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010224152, 0.007911868, 'Departmental')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008610984, 0.0011552669, 'Certification')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009367173, -0.01042502, 'posing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010708596, -0.014330259, 'common,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069343545, -0.0023539306, 'pipes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008644793, 0.008340227, 'Recovery,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010511607, 0.009405566, 'Reduction,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00891044, 0.015738677, 'Absorption')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007898309, 0.0023007977, 'annees')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077032107, -0.0019201896, 'status;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011782333, 0.006663716, "Parties'")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008440592, 0.016104264, '2014;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008191678, 0.0012956819, '50%,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008240866, 0.011843218, 'Relief')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012065754, -0.0021780422, 'fairness,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008395078, 0.002891775, 'endorsement')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009084156, -0.00500107, 'generators.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010687428, -0.009883783, 'sustainable.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007447101, 0.005802798, '3.5MW')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009862916, -0.004998332, 'prevalent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082205655, -0.0054905484, 'thresholds')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008889858, -0.007455128, 'modifications')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008800344, 0.0017727013, 'Southeast')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010601772, 0.008095277, 'Authority.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0037908568, 0.005264721, 'MW')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011362393, -0.0076348884, 'times,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004229361, 5.132291e-05, '60%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008839757, -0.005066971, 'household,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007359251, -0.0019192578, 'less')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009899875, -0.00868328, 'investigation,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00822824, -0.0075569456, 'modernize')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007112995, 0.006089567, 'developed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008940709, 0.0027004243, 'issues:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010929593, -0.015106832, 'protects')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00727031, 0.014328187, '3.2.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00756402, -0.00080631947, 'airport')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007566009, -0.0031084977, 'cuts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008663727, -0.007955013, 'interregional')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009001174, -0.0035551118, 'Urgent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010399815, -0.006789204, 'directing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0091749495, 0.007857984, 'Fund;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00805357, -0.0046493085, 'bosses')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008072036, -0.0007464411, 'unsupported')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.025701065, 0.022665177, '...............................................................................................................')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010127521, -0.014208083, 'service,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008965161, -0.004354554, 'Belize.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008518663, -0.005140366, 'miles')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009874402, -0.0070558605, 'governing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0074535166, -0.0018685622, 'milestone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0052435566, 0.0071622874, 'Equité')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011585211, 0.0071737263, 'Asia,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010004128, -0.00754506, 'significantly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009202764, -0.006895587, 'resolutions')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008973806, 0.007904869, 'horizons')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008665106, -0.0044079134, 'closing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010053963, 0.0019463873, 'clarify')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007576913, 0.012445378, 'Concept')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010529025, -0.012293121, 'saving,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0094469385, -0.012893019, 'leveraging')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006001266, 0.008186139, 'VI.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009826229, -0.0064203897, 'capacites')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00942486, 0.011093559, '"Business')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008546436, -0.0067065745, 'restrict')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007404566, 0.0052519003, '116')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009442907, -0.0105144745, 'expands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009243207, -0.0073209093, 'waterrelated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009310441, -0.012167489, 'expensive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009033862, -0.001831373, 'Rica,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00738998, -0.0019456752, 'extreme')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0054804916, 0.008274092, 'cost')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009001066, -0.0058637965, 'underway,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009665176, 0.012221701, 'Directive')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009799674, 0.0273873, 'Emissions:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011743101, 0.011707798, 'Bulgaria')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00466542, 0.0051748054, '➢')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009795392, -0.012298818, 'universities,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009031361, -0.0047768382, 'pronounced')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010602429, 0.012022604, 'Lima,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008374932, -0.005799919, 'state.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007922731, -0.004845519, 'block')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008020632, 0.004268348, 'Chile,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007685876, 0.011690245, '14.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009729601, 0.0090973545, 'Production,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007325383, -0.0029412056, 'standby')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010502739, -0.006965209, 'impacting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007359591, 0.008260215, '(REDD+)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010018729, -0.010535667, 'trainings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075765937, -0.0055143773, '(vii)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006030439, 0.008139004, 'UTCATF')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008737438, 0.002488075, 'Observation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011023142, 0.010083188, 'Facilitation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009374933, -0.008699868, 'selecting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084038, 0.014097805, '(ktCO2)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009753581, 0.015145396, '(NEP)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011602817, -0.012110141, 'disasters;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0067161974, 0.008646491, '20,6')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012018425, 0.012806097, '(INDC).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009250462, -0.009759343, 'past.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009319047, 0.0014864841, 'burned')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009839421, -0.008959218, 'north.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0104968725, -0.010056651, 'interventions,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008453884, 0.0052261543, '20%,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009290285, 0.010435959, '8,000')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009400496, 0.01157057, 'Prospective')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009400513, 0.002999086, 'established,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010469422, -0.012481169, 'raising,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010206936, 0.017364616, 'Station')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.025443954, 0.02241127, '...........................................................................')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009763258, -0.011961294, 'pastoralist')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007990366, -0.006524919, 'morbidity')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075445324, -0.004849829, 'irregular')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009504014, -0.0064614336, 'industrialisation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009354279, -0.009653798, 'mild')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008700252, 0.0066197505, 'April,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009723332, -0.009142471, 'disasterprone')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009125172, 0.013707523, '(GEF)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009026019, -0.0036490818, 'ranking')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011556074, -0.018854031, 'threats,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070775715, 0.0038055293, 'Togo,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010485788, -0.014293709, 'reserves,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008370897, -0.010170956, 'elderly,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00850455, -0.0046318946, 'born')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008697784, -0.00894335, 'returns')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008390681, -0.0070200935, 'multiuse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062799067, 0.008277217, 'Analysis')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010271215, -0.004704438, 'analysing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0082604755, 0.006281349, 'Implementation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008797943, 0.008132472, 'Populations')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008441075, -0.006478082, 'knowledgebased')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062033455, 0.0017205513, 'j.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008468891, 0.0062086503, 'MW).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009399794, -0.0009967824, 'Effectiveness')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010484431, 0.002405736, 'invites')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011060625, -0.0053515825, 'consulted')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0075919167, -0.00547865, 'siltingup')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0093072355, -0.0032596947, 'logistical')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009575574, 0.019553186, 'Spanish)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078422725, -0.0035336982, 'medium-')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008898152, 0.010406015, 'Restore')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008457713, 0.013614806, '(Base')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006972139, 0.0026176537, 'Southwest')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076775462, 9.088189e-05, 'height')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007168171, 0.010395148, '5.1.2')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008300491, 0.00037364132, 'counterfactual')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005456216, 0.0035036854, "Tuvalu's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009629655, -0.011815769, 'reservoirs,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0113945585, -0.01580059, 'coastal,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009729021, -0.012211766, 'advocate')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008811105, 0.0011947751, 'Myanmar,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009587907, 0.011297491, 'UNFCCC;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009826281, -0.0036799388, 'adherence')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008894702, 0.0021255491, 'membership')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009799544, 0.009165948, 'years:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006806456, 0.010928797, '5.1.1')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009914969, -0.010571249, 'functions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008713062, 0.010054883, '2040.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008340181, -0.008336033, 'pollutant')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008766258, 0.001292624, 'separation')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008579138, -0.00028580774, 'Uncertainties')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008039693, 0.0008297281, 'Carrying')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0111360755, -0.00713345, 'stoves.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010244023, -0.007197649, 'sorting')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009642524, -0.0055981055, 'flat')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076362733, 0.002507352, 'Venezuela,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007969387, -3.1211104e-05, '(development')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0066403938, 0.010732286, 'FAIRNESS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009095028, 0.010809767, '1988')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009271485, 0.015855858, '(2012).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008435906, -0.002917606, 'reduire')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00886661, -0.0020773432, "Kuwait's")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009026321, -0.004604808, 'vulnerable')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007932641, 0.0062983073, 'INCR')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004545213, 0.006217853, 'FINANCIAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009501686, 0.002721862, 'envisaged,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009584909, -0.012313049, 'city.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008381279, 0.003360438, 'fuels')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009083909, -0.006005828, 'axes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009523524, 0.009639947, 'Supported')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010434429, -0.016039982, 'consequent')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009056603, 0.0008551123, 'approach;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009413373, 0.017994136, 'STRATEGIES,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006346633, 0.012775467, 'Profile')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007517021, 0.01148487, '123')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010474727, -0.012255709, 'farming.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077913348, -0.00025331072, '(buildings')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0117910355, 0.013492518, 'France')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010081068, -0.00991237, 'popular')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006125988, 0.015268276, 'CO2e')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00955751, -0.004163559, 'participatory,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.004707383, 0.0074700858, '2025.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009006276, -0.0060642576, 'microfinance')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009494134, 0.00026120045, 'mitigation:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008546302, -0.0073773307, 'gardens')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009456278, -0.009609979, 'themes.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010180589, -0.014503752, 'prevention,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008925202, 0.008907192, '38.5')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0084262425, 0.003569652, 'surveyed')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071285754, 0.009886802, 'GPG')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005611619, 0.0057476773, 'Gesellschaft')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010212011, -0.0009413222, 'section.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011834162, -0.004136853, 'effort.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011074696, -0.0062575038, 'understands')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008941758, 0.01243139, 'Internationale')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0041292286, 0.0048737833, "'€)")
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00970267, -0.014314052, 'streams,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00539908, 0.0040386454, 'Zusammenarbeit')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010164703, -0.0051289736, 'technologies:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0070035276, 0.006116527, 'Well')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010240401, 0.009190312, 'Somaliland;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010183199, 0.005242288, 'Institutions.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008411481, -0.006446547, 'vegetables')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00911076, -0.00062158285, 'Academic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009088083, -0.0059472225, 'executing')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0062273717, 0.008813927, 'DIEA')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0078151375, 0.008265887, 'Strategy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009336732, -0.00018741238, 'GHGs.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008202661, -0.006219982, 'country)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00888508, -0.00705364, 'climatecompatible')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0061994595, 0.0012501916, 'Green')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009799039, 0.00045955795, 'emits')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008183974, -0.008387248, 'buy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008833796, -0.010714901, 'crisis.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008727564, -0.0016371451, 'strategy/policy')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008641874, -0.004336721, 'nonetheless')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01078382, -0.005036926, 'direction,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009156814, -0.008638499, 'lasting.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006269535, 0.008785407, 'HAITI')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009791627, 0.01605603, 'Name')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.011453102, 0.017676739, 'Delivery')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073980596, -0.00014903204, 'ESD')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010672415, -0.012636675, 'occurrences')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008447554, 0.0039258157, 'EU-ETS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073014726, 0.010440718, '5.8')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007303111, 0.002042411, 'EWS')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0058921496, 0.003207588, '74')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009474294, -0.007858725, 'selling')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009348364, -0.008966908, 'emphasizes')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071954965, 0.007966559, 'one')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00936658, -0.0045838305, 'concerned,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0089968145, -0.011038036, 'commercially')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073600025, 0.013512784, 'Reach')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089363, -0.004709512, 'reduced.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076003247, 0.0054390426, 'GEI,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0068791313, -0.0081658205, 'etc.;')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009581019, -0.0005168782, 'regulated')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008920555, -0.008995324, 'planet,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007952833, 0.0042830687, 'Adjustment')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008625635, -0.0063572237, 'extinction')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007604327, 0.0046558636, 'netnet')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010298004, 0.005805176, '58%')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008609595, -0.0064633084, 'inorganic')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009741344, -0.00073451444, 'component.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009502279, -0.012069009, 'aquifers.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0048996047, 0.00770577, 'SUBTOTAL')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008295816, 0.012729745, 'Developped')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009126719, 0.015817357, '(NF3).')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.006095595, 0.004034895, '66')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0073482366, -0.0033162537, 'bagasse')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0071523758, 0.008748596, 'Peace')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010753123, -0.003715426, 'forestry)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00996254, -0.0077789067, 'rehabilitation.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.01143282, -0.017929088, 'consequences.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076634362, 0.008854751, 'Cancun')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008755938, 0.014486183, '(2008)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009907455, -0.0010204507, 'electrified')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008034838, -0.0036783214, 'farmland')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008619741, 0.010053664, 'Cookstoves')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0069485316, 0.012113806, 'Cost:')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010089762, -0.008018279, 'enhanced.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010843481, -0.0035970272, 'reporting.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00828411, -0.010349166, 'walking,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0077620023, 0.0055416934, 'pluviometrie')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009099358, -0.012269539, 'beings,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010209567, -0.011709766, 'assures')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008455727, -0.006469641, 'intermediary')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009676974, -0.0046908427, 'strategic,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0076354765, -0.010571249, 'grave')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.007814321, 0.0027418714, 'm)')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008787043, -0.0061108484, 'belts')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008583077, 0.008385262, '1991,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.009504019, -0.004705283, 'want')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.012485097, -0.02618212, 'co')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.010843135, -0.01146382, 'strengthens')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.005007688, 0.0052478546, 'i.e.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008810761, -0.001721482, 'seasurface')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.00945124, -0.010817381, 'breeds,')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.008630217, -0.0055299457, 'villages.')
## (-0.03, 0.03)
## (-0.025, 0.025)
## Text(-0.0023853495, 0.009504753, 'total;')
## (-0.03, 0.03)
## (-0.025, 0.025)
plt.savefig('/home/lmdose/Transnorms/fastText.png')
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61623 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61623 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61607 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61607 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 1 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:180: RuntimeWarning: Glyph 1 missing from current font.
## font.set_text(s, 0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61599 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61599 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61656 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61656 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61692 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61692 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61472 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61472 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61485 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61485 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61459 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61459 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61558 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61558 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61502 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61502 missing from current font.
## font.load_char(ord(s), flags=flags)
NOTE: there is a little Problem with displaying the plot on the RMD (see code)
The shown grafic is not the best way to represent our data ## FastText via Gensim: First we need to prepare the data we want to use for the fastText embedding, therefore we need to create a corpus and then split this corpus into training and testing data (2:1).
library(reticulate)
library(countrycode)
library(quanteda)
library(quanteda.corpora)
library(quanteda.textmodels)
load("data_ndc_reduced.RData",.GlobalEnv)
frameNDC <- data.frame(data_ndc)
cleanNDC <-subset(frameNDC,select = c(NDCISO3,Title,Body, NDCSubmissionDate))
#this step makes the process very slow but is necessary to create a well structures corpus
cleanNDC$Body<-as.character(cleanNDC$Body)
corp_NDC <- corpus(cleanNDC,docid_field = "NDCISO3",text_field = "Body")
#sepeate corpus in training and testing-samples 2:1
corp_Train<-corpus(corp_NDC[1:120])
corp_Test <- corpus(corp_NDC[121:184])
writeLines(as.character(corp_Train), con="corpTrain.txt")
Now we can load the prepared corpus into the python-environment.
from pprint import pprint as print
from gensim.models.fasttext import FastText as FT_gensim
from gensim.test.utils import datapath
# set file names for train and test data
corp = datapath("/home/lmdose/Transnorms/corpTrain.txt")
model = FT_gensim(size=100)
# build vocabulary
model.build_vocab(corpus_file=corp)
#train the model
model.train(corpus_file=corp, epochs=model.epochs, total_examples=model.corpus_count,total_words=model.corpus_total_words)
#look at some output
print(model)
## <gensim.models.fasttext.FastText object at 0x7f5e14560438>
print("Check fo simular words")
## 'Check fo simular words'
print(model.most_similar("economics"))
## [('macroeconomic', 0.9878569841384888),
## ('economic', 0.9851830005645752),
## ('economic,', 0.9829789996147156),
## ('socioeconomic', 0.9804332852363586),
## ('Socioeconomic', 0.9751245379447937),
## ('economical', 0.9730471968650818),
## ('economy,', 0.9590572714805603),
## ('economy.', 0.9551132917404175),
## ('economies,', 0.9494825005531311),
## ('economy', 0.9464066624641418)]
print("Check if word exists in vocabulary")
## 'Check if word exists in vocabulary'
print('environment'in model.wv.vocab)
## True
print("Word-Vector for environment")
## 'Word-Vector for environment'
print(model['environment'])
## array([ 0.6684226 , -0.38954315, -0.86345524, -0.59464794, 0.5849606 ,
## 0.24094912, -1.3956097 , -0.7401601 , 0.01144994, -0.08440552,
## -0.15832719, 0.6940373 , 1.025852 , 0.1264736 , -0.6220975 ,
## -0.37759387, -0.6257516 , 0.33762693, -0.95832336, -0.9705698 ,
## -0.5096641 , -0.22269955, -0.13973846, -0.42870697, 0.12197725,
## -0.10135181, 0.3596381 , 0.4096358 , -0.5548627 , 0.09845883,
## -0.46539736, 0.7889102 , 0.09467782, -0.11030037, -0.72843665,
## -0.91983914, 1.4102228 , -0.08040582, -0.8215884 , 1.0984464 ,
## -0.11488249, -0.27643517, -0.22898388, 1.3973621 , 0.27478477,
## 1.3200115 , -0.38581842, -0.7161611 , -0.13524905, 0.30556566,
## 0.4825264 , 0.26163545, -0.58032686, -0.17776023, 1.7992221 ,
## 0.9232696 , 0.22940244, 0.7654077 , -0.05533785, 0.13080607,
## 0.37130007, 0.8267616 , -0.48336142, 0.36035043, -0.25388387,
## 0.04431292, -0.2012794 , -1.0238471 , -0.12463484, 0.9703847 ,
## 0.00896698, 1.1625745 , 0.19268672, 0.14814949, 0.0126444 ,
## -0.26615298, -0.15603177, -0.15322566, 0.98572034, 0.5041556 ,
## 0.09203632, 0.03826423, -0.12751816, 0.11952019, -0.06623898,
## 0.24111015, -1.3900124 , 0.13698085, 0.04011773, 0.4168396 ,
## -0.05823421, 0.7848763 , 0.16685578, 0.5038112 , 0.33025545,
## -0.96188754, -0.95493346, 1.1063718 , -0.06949168, -0.5039558 ],
## dtype=float32)
model.save("/home/lmdose/Transnorms/wordvec.model")
import gensim
from gensim.models.fasttext import FastText
from sklearn.decomposition import PCA
import matplotlib.pyplot as plt
model = FastText.load("/home/lmdose/Transnorms/wordvec.model")
X = model[model.wv.vocab]
pca = PCA(n_components=2)
result=pca.fit_transform(X)
plt.scatter(result[:, 0], result[:, 1])
words = list(model.wv.vocab)
#for i, word in enumerate(words):
#plt.annotate(word, xy=(result[i, 0], result[i, 1]))
plt.savefig("/home/lmdose/Transnorms/Test.png")
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61623 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61623 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61607 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61607 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 1 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:180: RuntimeWarning: Glyph 1 missing from current font.
## font.set_text(s, 0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61599 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61599 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61656 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61656 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61692 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61692 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61472 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61472 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61485 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61485 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61459 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61459 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61558 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61558 missing from current font.
## font.load_char(ord(s), flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:211: RuntimeWarning: Glyph 61502 missing from current font.
## font.set_text(s, 0.0, flags=flags)
## /home/lmdose/.local/share/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/matplotlib/backends/backend_agg.py:176: RuntimeWarning: Glyph 61502 missing from current font.
## font.load_char(ord(s), flags=flags)
### for more information: Please check out:
https://radimrehurek.com/gensim/auto_examples/tutorials/run_fasttext.html
https://kite.com/python/docs/gensim.models.wrappers.fasttext