Bibliography Report

Author
Affiliation

Rainer M. Krug

Abstract

Reports analysing the IPBES Libraries on Zotero.

Introduction

This report assesses the ECA Bibliography in regards to different measures and shows some information of the content. It does not assess the content of the sources but rather the bibliometric data.

Bibliographic analysis

In most cases, the bibliographic analysis is done on the OpenAlex library. In some cases, we can also do it using the Zenodo data. This is mentioned in the beginning of each subsection

Publication types

Analysis: Zenodo and OpenAlex

OpenAlex and Zotero use different tyoes. These are not directly compable, which is whu=y both are shown.

Show the code
bib_data$figure_types_data |>
  dplyr::arrange(
    from,
    desc(count)
  ) |>
  knitr::kable(
    caption = "Types of documents from the Zotero bibliography as well as from OpenApex."
  )
Types of documents from the Zotero bibliography as well as from OpenApex.
type count from
article 6572 OpenAlex
review 570 OpenAlex
book-chapter 44 OpenAlex
letter 38 OpenAlex
preprint 30 OpenAlex
book 18 OpenAlex
erratum 8 OpenAlex
dataset 4 OpenAlex
other 4 OpenAlex
editorial 2 OpenAlex
paratext 1 OpenAlex
report 1 OpenAlex
journalArticle 9235 Zotero
book 1334 Zotero
report 761 Zotero
bookSection 504 Zotero
conferencePaper 76 Zotero
manuscript 44 Zotero
thesis 37 Zotero
Show the code
bib_data$figure_types

Zenodo versus OpenAlex Types

Analysis: Zenodo and OpenAlex

The types entered in the Zenodo library and the types as retrieved from OpenAlex are not linked, therefore they can differ. This can indicate faulty data entering in Zenodo but not necessarily has to. These cases need to be carefully evaluated and here only given as a starting point.

NA in OpenAlex is likely caused by the doi not found in OpenAlex (not in there, not valid, non-standard DOI in Zenodo). NA in Zotero is linked to non-standard DOI entries (i.e. with http) which can therefore not be linked to OpenAlex data. If all DOIs are in standard format, there should be no NAs in this Table in the column Ferom Zenodo.

TODO: Improvements should be done after feedback.

Show the code
bib_data$metrics$types$comparison |>
  knitr::kable(
    col.names = c("Type from Zenodo", "Type from [OpenAlex](https://OpenAlex.org){target='_blank'}", "count"),
    caption = "Table giving the combination of types from Zenodo as well as [OpenAlex](https://OpenAlex.org){target='_blank'} and their frequency"
  )
Table giving the combination of types from Zenodo as well as OpenAlex and their frequency
Type from Zenodo Type from OpenAlex count
journalArticle article 7704
journalArticle NA 2513
book NA 1334
journalArticle review 794
report NA 761
NA article 537
bookSection NA 504
conferencePaper NA 66
manuscript NA 44
journalArticle letter 44
thesis NA 37
journalArticle book-chapter 35
journalArticle preprint 33
NA review 28
journalArticle book 18
journalArticle erratum 14
NA book-chapter 10
conferencePaper article 9
journalArticle other 6
NA dataset 3
conferencePaper book-chapter 1
journalArticle paratext 1
journalArticle dataset 1
journalArticle editorial 1
journalArticle report 1
NA preprint 1
NA editorial 1

Year of Publication

Analysis: Zenodo and OpenAlex

The following ranges of publication years can be found in the data.

Show the code
bib_data$figure_pub_year_data |>
  dplyr::summarize(
    min = min(publication_year, na.rm = TRUE),
    max = max(publication_year, na.rm = TRUE),
    .by = c(from)
  ) |>
  knitr::kable()
from min max
Zenodo 1849 7815
OpenAlex 1921 2023
Show the code
bib_data$figure_pub_year
Warning: Removed 1 row containing missing values or values outside the scale range
(`geom_col()`).

Access Status of References

Analysis: OpenAlex

Show the code
bib_data$figure_oa_status

50 Most often cited Journals

Analysis: Zenodo

TODO: OpenAlex should be added

Show the code
bib_data$figure_top_journals

This table contains all Journals as specified in the Zotero database.

Show the code
bib_data$figure_top_journals_data |>
  IPBES.R::table_dt("cited_journals")

Coutries of Institutes of all authors

Analysis: OpenAlex

In this section we will take a closer look at the countries from which ih the authors ot the publication come. THe data includes all authoirs without weighting.

Show the code
#|
#| fig-height: 10
#| fig-width: 10

bib_data$figure_top_country_map

This plot only contains the countries with more than 10 references.

Show the code
#|
#| fig-height: 10
#| fig-width: 10

bib_data$figure_top_country

This table contains all countries and the number of authorship.

Show the code
bib_data$figure_top_country_data |>
  IPBES.R::table_dt("top_countries")

Cleanliness of the Bibliography

Cleanliness of a bibliography is defined here as the quality of the bibliografic data in the bibliography. It does not concern any topical measures, only measures related to the bibliografic data in the bibliography.

The analysis is at the moment only done for DOIs as corresponding measures are not available at the moment for ISBNs and ISSNs and duplicate ISBNs and ISSNs can be rcorrect as different chapters of a book might be in the bibliography.

Entries with DOIs, ISBNs or ISSNs in Zotero

To identify a reference, the most widely used identifier is the DOI. The following table shows the number of references with a DOI and the number of unique DOIs.

To consider duplicate ISBNs or ISSNs as duplicates entries in the library is not waranted as e.g. differenc chapters of a book can be separate entries in the library and therefore lead to duplicates.

  • DOIs: 7617 (63.52%) - 1577 duplicates
  • ISBNss: 774 (6.45%)
  • ISBNss: 7310 (60.96%)

DOIs in Zotero

The following sections provide some more detailed analysis of the bibliography in Zenodo. The tables all contain clickable links which, shwen clicked, show the respective article in the Zotero bibliograpohy.

Duplicates

The following DOIs are duplicates in the bibliography. This table should be empty.

Show the code
if (length(bib_data$metrics$zotero_dois$duplicate) > 0) {
  data.frame(
    doi = bib_data$metrics$zotero_dois$duplicate,
    link = paste0(bib_data$bibliography$url, "/items/", names(bib_data$metrics$zotero_dois$duplicate))
  ) |>
    dplyr::mutate(
      sort = doi,
      doi = paste0('<a href="', link, '" target="_blank">', doi, "</a>"),
    ) |>
    dplyr::arrange(
      sort
    ) |>
    dplyr::mutate(
      sort = NULL
    ) |>
    knitr::kable(
      caption = "DOIs in Zenodo which are duplicated",
      escape = FALSE
    )
}
DOIs in Zenodo which are duplicated
doi link
2QBMNK5M 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z https://www.zotero.org/groups/2345951/items/2QBMNK5M
2SP7P7RB 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z https://www.zotero.org/groups/2345951/items/2SP7P7RB
7TKIZ3B9 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z https://www.zotero.org/groups/2345951/items/7TKIZ3B9
5GVWFSZY 10.1002/2013GB004654 https://www.zotero.org/groups/2345951/items/5GVWFSZY
WKLM5Y45 10.1002/2013GB004654 https://www.zotero.org/groups/2345951/items/WKLM5Y45
24IBFJ4W 10.1002/2013GB004654 https://www.zotero.org/groups/2345951/items/24IBFJ4W
KT7YJ577 10.1002/2013GB004654 https://www.zotero.org/groups/2345951/items/KT7YJ577
TL9Q39RE 10.1002/2013GB004654 https://www.zotero.org/groups/2345951/items/TL9Q39RE
EDP8ESGI 10.1002/2013GB004654 https://www.zotero.org/groups/2345951/items/EDP8ESGI
AKEGCB74 10.1002/2013GB004654 https://www.zotero.org/groups/2345951/items/AKEGCB74
4YXMGVWR 10.1002/9781118930717.ch29 https://www.zotero.org/groups/2345951/items/4YXMGVWR
K4CGYFNC 10.1002/9781118930717.ch29 https://www.zotero.org/groups/2345951/items/K4CGYFNC
LGK37NYK 10.1002/ece3.774 https://www.zotero.org/groups/2345951/items/LGK37NYK
P7862N67 10.1002/ece3.774 https://www.zotero.org/groups/2345951/items/P7862N67
7AEJEQDN 10.1002/eet.1760 https://www.zotero.org/groups/2345951/items/7AEJEQDN
9KTLHTZK 10.1002/eet.1760 https://www.zotero.org/groups/2345951/items/9KTLHTZK
EPT2T2X6 10.1002/ehs2.1210 https://www.zotero.org/groups/2345951/items/EPT2T2X6
WYHI3KXW 10.1002/ehs2.1210 https://www.zotero.org/groups/2345951/items/WYHI3KXW
ZRZPXUM6 10.1002/ehs2.1215 https://www.zotero.org/groups/2345951/items/ZRZPXUM6
MTFSQ6EW 10.1002/ehs2.1215 https://www.zotero.org/groups/2345951/items/MTFSQ6EW
SV24KU8M 10.1002/ehs2.1215 https://www.zotero.org/groups/2345951/items/SV24KU8M
C6YQLDG3 10.1002/ehs2.1215 https://www.zotero.org/groups/2345951/items/C6YQLDG3
9VTWYTRQ 10.1002/hyp.9540 https://www.zotero.org/groups/2345951/items/9VTWYTRQ
NUJBI32U 10.1002/hyp.9540 https://www.zotero.org/groups/2345951/items/NUJBI32U
3AY2XVLM 10.1002/ieam.1782 https://www.zotero.org/groups/2345951/items/3AY2XVLM
ALW3DG8S 10.1002/ieam.1782 https://www.zotero.org/groups/2345951/items/ALW3DG8S
7S59DA2U 10.1002/ieam.1797 https://www.zotero.org/groups/2345951/items/7S59DA2U
Q7G4B3PW 10.1002/ieam.1797 https://www.zotero.org/groups/2345951/items/Q7G4B3PW
Q5GQWYYI 10.1002/jwmg.424 https://www.zotero.org/groups/2345951/items/Q5GQWYYI
87YHQGQC 10.1002/jwmg.424 https://www.zotero.org/groups/2345951/items/87YHQGQC
4TNRC9RZ 10.1002/lob.10036 https://www.zotero.org/groups/2345951/items/4TNRC9RZ
AKAIA32Q 10.1002/lob.10036 https://www.zotero.org/groups/2345951/items/AKAIA32Q
I52P5QF2 10.1002/rra.2645 https://www.zotero.org/groups/2345951/items/I52P5QF2
BJRR5NZN 10.1002/rra.2645 https://www.zotero.org/groups/2345951/items/BJRR5NZN
62TPRJPA 10.1002/rse2.4 https://www.zotero.org/groups/2345951/items/62TPRJPA
RZHH3MN7 10.1002/rse2.4 https://www.zotero.org/groups/2345951/items/RZHH3MN7
BJZQMW4H 10.1006/jema.1999.0335 https://www.zotero.org/groups/2345951/items/BJZQMW4H
XGEFQDS3 10.1006/jema.1999.0335 https://www.zotero.org/groups/2345951/items/XGEFQDS3
SVUXHKI7 10.1006/jema.2001.0473 https://www.zotero.org/groups/2345951/items/SVUXHKI7
A9766HTD 10.1006/jema.2001.0473 https://www.zotero.org/groups/2345951/items/A9766HTD
CJD4TPHK 10.1007/978-3-319-12039-3_1 https://www.zotero.org/groups/2345951/items/CJD4TPHK
9IG9RSK6 10.1007/978-3-319-12039-3_1 https://www.zotero.org/groups/2345951/items/9IG9RSK6
QNHA8VUZ 10.1007/s00027-011-0233-4 https://www.zotero.org/groups/2345951/items/QNHA8VUZ
7DMRBTKS 10.1007/s00027-011-0233-4 https://www.zotero.org/groups/2345951/items/7DMRBTKS
MQEZJJPU 10.1007/s00027-011-0233-4 https://www.zotero.org/groups/2345951/items/MQEZJJPU
8DSYB3WR 10.1007/s00035-011-0094-4 https://www.zotero.org/groups/2345951/items/8DSYB3WR
N3CZXUTZ 10.1007/s00035-011-0094-4 https://www.zotero.org/groups/2345951/items/N3CZXUTZ
W54HCJLS 10.1007/s00035-011-0094-4 https://www.zotero.org/groups/2345951/items/W54HCJLS
NTIT2AI3 10.1007/s00267-002-2749-9 https://www.zotero.org/groups/2345951/items/NTIT2AI3
8Y5IX2W5 10.1007/s00267-002-2749-9 https://www.zotero.org/groups/2345951/items/8Y5IX2W5
2LF5FNP8 10.1007/s00267-005-0342-8 https://www.zotero.org/groups/2345951/items/2LF5FNP8
XR2CH54A 10.1007/s00267-005-0342-8 https://www.zotero.org/groups/2345951/items/XR2CH54A
BC88IAPH 10.1007/s00267-010-9455-9 https://www.zotero.org/groups/2345951/items/BC88IAPH
7UT7ZLHR 10.1007/s00267-010-9455-9 https://www.zotero.org/groups/2345951/items/7UT7ZLHR
2IL85SGX 10.1007/s00267-015-0496-y https://www.zotero.org/groups/2345951/items/2IL85SGX
KUHQ6H5R 10.1007/s00267-015-0496-y https://www.zotero.org/groups/2345951/items/KUHQ6H5R
GDYV8DFK 10.1007/s00267-016-0724-0 https://www.zotero.org/groups/2345951/items/GDYV8DFK
G39VJVRH 10.1007/s00267-016-0724-0 https://www.zotero.org/groups/2345951/items/G39VJVRH
GZ6DDHGP 10.1007/s004420050035 https://www.zotero.org/groups/2345951/items/GZ6DDHGP
JBGF8K5E 10.1007/s004420050035 https://www.zotero.org/groups/2345951/items/JBGF8K5E
5E4EZ34W 10.1007/s00506-016-0324-5 https://www.zotero.org/groups/2345951/items/5E4EZ34W
GAAB5CXM 10.1007/s00506-016-0324-5 https://www.zotero.org/groups/2345951/items/GAAB5CXM
U9PVJH7M 10.1007/s10021-009-9229-5 https://www.zotero.org/groups/2345951/items/U9PVJH7M
W8MM934Z 10.1007/s10021-009-9229-5 https://www.zotero.org/groups/2345951/items/W8MM934Z
4SMYEYIZ 10.1007/s10021-014-9766-4 https://www.zotero.org/groups/2345951/items/4SMYEYIZ
JZ8PADPN 10.1007/s10021-014-9766-4 https://www.zotero.org/groups/2345951/items/JZ8PADPN
24QBHGJY 10.1007/s10113-010-0192-7 https://www.zotero.org/groups/2345951/items/24QBHGJY
KYUEZM2S 10.1007/s10113-010-0192-7 https://www.zotero.org/groups/2345951/items/KYUEZM2S
6PMCRXH4 10.1007/s10113-012-0326-1 https://www.zotero.org/groups/2345951/items/6PMCRXH4
Y8KDGIET 10.1007/s10113-012-0326-1 https://www.zotero.org/groups/2345951/items/Y8KDGIET
A7GEK5WK 10.1007/s10113-012-0361-y https://www.zotero.org/groups/2345951/items/A7GEK5WK
HRUJ57AH 10.1007/s10113-012-0361-y https://www.zotero.org/groups/2345951/items/HRUJ57AH
VIZMCNB7 10.1007/s10113-013-0414-x https://www.zotero.org/groups/2345951/items/VIZMCNB7
TYURQT6P 10.1007/s10113-013-0414-x https://www.zotero.org/groups/2345951/items/TYURQT6P
LHFNH2DK 10.1007/s10113-013-0571-y https://www.zotero.org/groups/2345951/items/LHFNH2DK
8RYPUMJ6 10.1007/s10113-013-0571-y https://www.zotero.org/groups/2345951/items/8RYPUMJ6
W5PDG5N8 10.1007/s10113-014-0635-7 https://www.zotero.org/groups/2345951/items/W5PDG5N8
93BDAWR5 10.1007/s10113-014-0635-7 https://www.zotero.org/groups/2345951/items/93BDAWR5
E62DRSRV 10.1007/s10113-014-0679-8 https://www.zotero.org/groups/2345951/items/E62DRSRV
JF9MW89U 10.1007/s10113-014-0679-8 https://www.zotero.org/groups/2345951/items/JF9MW89U
KRNQFUWZ 10.1007/s10236-013-0661-x https://www.zotero.org/groups/2345951/items/KRNQFUWZ
NPTKLNZ4 10.1007/s10236-013-0661-x https://www.zotero.org/groups/2345951/items/NPTKLNZ4
ZPH3WDAF 10.1007/s10344-005-0018-y https://www.zotero.org/groups/2345951/items/ZPH3WDAF
FHD8UDXG 10.1007/s10344-005-0018-y https://www.zotero.org/groups/2345951/items/FHD8UDXG
63GXG7RJ 10.1007/s10344-008-0236-1 https://www.zotero.org/groups/2345951/items/63GXG7RJ
V3FQ6VLM 10.1007/s10344-008-0236-1 https://www.zotero.org/groups/2345951/items/V3FQ6VLM
8WR5GYRX 10.1007/s10344-011-0606-y https://www.zotero.org/groups/2345951/items/8WR5GYRX
GGI38XNB 10.1007/s10344-011-0606-y https://www.zotero.org/groups/2345951/items/GGI38XNB
SH9QA7ED 10.1007/s10344-013-0754-3 https://www.zotero.org/groups/2345951/items/SH9QA7ED
JEWWHM2G 10.1007/s10344-013-0754-3 https://www.zotero.org/groups/2345951/items/JEWWHM2G
NUUN64VR 10.1007/s10344-014-0845-9 https://www.zotero.org/groups/2345951/items/NUUN64VR
Q5AEMGE6 10.1007/s10344-014-0845-9 https://www.zotero.org/groups/2345951/items/Q5AEMGE6
HCU9UCY9 10.1007/s10344-015-0940-6 https://www.zotero.org/groups/2345951/items/HCU9UCY9
R5VPQQVF 10.1007/s10344-015-0940-6 https://www.zotero.org/groups/2345951/items/R5VPQQVF
6CTBH8RR 10.1007/s10457-012-9516-6 https://www.zotero.org/groups/2345951/items/6CTBH8RR
KF8P3SH9 10.1007/s10457-012-9516-6 https://www.zotero.org/groups/2345951/items/KF8P3SH9
RD54Z4RW 10.1007/s10499-015-9949-9 https://www.zotero.org/groups/2345951/items/RD54Z4RW
FZK74Z9W 10.1007/s10499-015-9949-9 https://www.zotero.org/groups/2345951/items/FZK74Z9W
FHZ4YKAI 10.1007/s10499-015-9949-9 https://www.zotero.org/groups/2345951/items/FHZ4YKAI
33PLZPBZ 10.1007/s10530-013-0502-3 https://www.zotero.org/groups/2345951/items/33PLZPBZ
KSRLV49S 10.1007/s10530-013-0502-3 https://www.zotero.org/groups/2345951/items/KSRLV49S
9YL6U4S4 10.1007/s10530-014-0817-8 https://www.zotero.org/groups/2345951/items/9YL6U4S4
884UP5TM 10.1007/s10530-014-0817-8 https://www.zotero.org/groups/2345951/items/884UP5TM
I7DBTIT6 10.1007/s10530-016-1278-z https://www.zotero.org/groups/2345951/items/I7DBTIT6
B9RSBACG 10.1007/s10530-016-1278-z https://www.zotero.org/groups/2345951/items/B9RSBACG
EBRF8J7D 10.1007/s10531-009-9657-8 https://www.zotero.org/groups/2345951/items/EBRF8J7D
NVDAF4BV 10.1007/s10531-009-9657-8 https://www.zotero.org/groups/2345951/items/NVDAF4BV
3X5SX2XK 10.1007/s10531-010-9838-5 https://www.zotero.org/groups/2345951/items/3X5SX2XK
Q2R9LT2E 10.1007/s10531-010-9838-5 https://www.zotero.org/groups/2345951/items/Q2R9LT2E
CQXMX5EW 10.1007/s10531-010-9872-3 https://www.zotero.org/groups/2345951/items/CQXMX5EW
RB8M5ZDW 10.1007/s10531-010-9872-3 https://www.zotero.org/groups/2345951/items/RB8M5ZDW
4T2Y44FR 10.1007/s10531-011-0141-x https://www.zotero.org/groups/2345951/items/4T2Y44FR
AK29WHGR 10.1007/s10531-011-0141-x https://www.zotero.org/groups/2345951/items/AK29WHGR
9RT6GHKJ 10.1007/s10531-011-0156-3 https://www.zotero.org/groups/2345951/items/9RT6GHKJ
E9A6JA5G 10.1007/s10531-011-0156-3 https://www.zotero.org/groups/2345951/items/E9A6JA5G
X58ERX2H 10.1007/s10531-013-0582-5 https://www.zotero.org/groups/2345951/items/X58ERX2H
RUVYZXW7 10.1007/s10531-013-0582-5 https://www.zotero.org/groups/2345951/items/RUVYZXW7
JUNXFZ43 10.1007/s10531-015-0971-z https://www.zotero.org/groups/2345951/items/JUNXFZ43
UQQTS9F4 10.1007/s10531-015-0971-z https://www.zotero.org/groups/2345951/items/UQQTS9F4
2KB3EN8V 10.1007/s10531-016-1117-7 https://www.zotero.org/groups/2345951/items/2KB3EN8V
4S4K69L5 10.1007/s10531-016-1117-7 https://www.zotero.org/groups/2345951/items/4S4K69L5
LAP9BWNL 10.1007/s10531-016-1131-9 https://www.zotero.org/groups/2345951/items/LAP9BWNL
H6IXK5T4 10.1007/s10531-016-1131-9 https://www.zotero.org/groups/2345951/items/H6IXK5T4
SVPUX6YI 10.1007/s10531-016-1131-9 https://www.zotero.org/groups/2345951/items/SVPUX6YI
DJ75RFQB 10.1007/s10531-016-1141-7 https://www.zotero.org/groups/2345951/items/DJ75RFQB
G8AI5DK2 10.1007/s10531-016-1141-7 https://www.zotero.org/groups/2345951/items/G8AI5DK2
RP9TVIUH 10.1007/s10584-006-9106-6 https://www.zotero.org/groups/2345951/items/RP9TVIUH
V8NJV4TS 10.1007/s10584-006-9106-6 https://www.zotero.org/groups/2345951/items/V8NJV4TS
VI9I5DYY 10.1007/s10584-010-9977-4 https://www.zotero.org/groups/2345951/items/VI9I5DYY
9Q5SDRZ7 10.1007/s10584-010-9977-4 https://www.zotero.org/groups/2345951/items/9Q5SDRZ7
FTZR834I 10.1007/s10584-011-0148-z https://www.zotero.org/groups/2345951/items/FTZR834I
MQ7EMUBW 10.1007/s10584-011-0148-z https://www.zotero.org/groups/2345951/items/MQ7EMUBW
XVLJ5GF7 10.1007/s10584-011-0369-1 https://www.zotero.org/groups/2345951/items/XVLJ5GF7
WDS6X7KT 10.1007/s10584-011-0369-1 https://www.zotero.org/groups/2345951/items/WDS6X7KT
ABNTML6Q 10.1007/s10584-011-0369-1 https://www.zotero.org/groups/2345951/items/ABNTML6Q
HYM7XDTT 10.1007/s10584-014-1133-0 https://www.zotero.org/groups/2345951/items/HYM7XDTT
E4PS6PAR 10.1007/s10584-014-1133-0 https://www.zotero.org/groups/2345951/items/E4PS6PAR
XLXI7ETD 10.1007/s10584-014-1143-y https://www.zotero.org/groups/2345951/items/XLXI7ETD
Z55L4PTZ 10.1007/s10584-014-1143-y https://www.zotero.org/groups/2345951/items/Z55L4PTZ
NMWLBA7E 10.1007/s10584-014-1143-y https://www.zotero.org/groups/2345951/items/NMWLBA7E
2W529CWG 10.1007/s10584-014-1211-3 https://www.zotero.org/groups/2345951/items/2W529CWG
G43TVJG2 10.1007/s10584-014-1211-3 https://www.zotero.org/groups/2345951/items/G43TVJG2
SRQKNQ3X 10.1007/s10584-014-1225-x https://www.zotero.org/groups/2345951/items/SRQKNQ3X
LQ8C6ER8 10.1007/s10584-014-1225-x https://www.zotero.org/groups/2345951/items/LQ8C6ER8
TIANMDQ8 10.1007/s10584-014-1239-4 https://www.zotero.org/groups/2345951/items/TIANMDQ8
2T7MGPHL 10.1007/s10584-014-1239-4 https://www.zotero.org/groups/2345951/items/2T7MGPHL
6TPM7KY8 10.1007/s10584-014-1240-y https://www.zotero.org/groups/2345951/items/6TPM7KY8
L2JBFGPH 10.1007/s10584-014-1240-y https://www.zotero.org/groups/2345951/items/L2JBFGPH
W4FX2HAJ 10.1007/s10584-014-1298-6 https://www.zotero.org/groups/2345951/items/W4FX2HAJ
XBQ9Z2YU 10.1007/s10584-014-1298-6 https://www.zotero.org/groups/2345951/items/XBQ9Z2YU
Q8T3F6PE 10.1007/s10722-014-0185-3 https://www.zotero.org/groups/2345951/items/Q8T3F6PE
CXB6EPW2 10.1007/s10722-014-0185-3 https://www.zotero.org/groups/2345951/items/CXB6EPW2
GS5YVKGH 10.1007/s10745-010-9326-2 https://www.zotero.org/groups/2345951/items/GS5YVKGH
3BIZJEJX 10.1007/s10745-010-9326-2 https://www.zotero.org/groups/2345951/items/3BIZJEJX
A343P68V 10.1007/s10745-011-9427-6 https://www.zotero.org/groups/2345951/items/A343P68V
G4Q4P7R6 10.1007/s10745-011-9427-6 https://www.zotero.org/groups/2345951/items/G4Q4P7R6
PWVVR6TI 10.1007/s10750-007-0600-2 https://www.zotero.org/groups/2345951/items/PWVVR6TI
9PVE2DWF 10.1007/s10750-007-0600-2 https://www.zotero.org/groups/2345951/items/9PVE2DWF
UYIYEYUI 10.1007/s10841-006-6293-4 https://www.zotero.org/groups/2345951/items/UYIYEYUI
B3LNNESB 10.1007/s10841-006-6293-4 https://www.zotero.org/groups/2345951/items/B3LNNESB
AADIG6XI 10.1007/s10980-005-0245-3 https://www.zotero.org/groups/2345951/items/AADIG6XI
8NA4NDDE 10.1007/s10980-005-0245-3 https://www.zotero.org/groups/2345951/items/8NA4NDDE
ASHP3RZN 10.1007/s10980-012-9818-0 https://www.zotero.org/groups/2345951/items/ASHP3RZN
HFPZQFWJ 10.1007/s10980-012-9818-0 https://www.zotero.org/groups/2345951/items/HFPZQFWJ
T5M7Z4YM 10.1007/s10980-014-0048-5 https://www.zotero.org/groups/2345951/items/T5M7Z4YM
UA3VCNU2 10.1007/s10980-014-0048-5 https://www.zotero.org/groups/2345951/items/UA3VCNU2
2EUNUJ8V 10.1007/s10980-014-0085-0 https://www.zotero.org/groups/2345951/items/2EUNUJ8V
KVDXRFGT 10.1007/s10980-014-0085-0 https://www.zotero.org/groups/2345951/items/KVDXRFGT
BWG9D2EQ 10.1007/s10980-014-0148-2 https://www.zotero.org/groups/2345951/items/BWG9D2EQ
M6JSQLE6 10.1007/s10980-014-0148-2 https://www.zotero.org/groups/2345951/items/M6JSQLE6
M27NKB8S 10.1007/s11104-010-0479-y https://www.zotero.org/groups/2345951/items/M27NKB8S
BDZA6IL6 10.1007/s11104-010-0479-y https://www.zotero.org/groups/2345951/items/BDZA6IL6
86UXJXFF 10.1007/s11252-007-0045-4 https://www.zotero.org/groups/2345951/items/86UXJXFF
RSU7JLBD 10.1007/s11252-007-0045-4 https://www.zotero.org/groups/2345951/items/RSU7JLBD
XW4G6WTR 10.1007/s11258-007-9335-4 https://www.zotero.org/groups/2345951/items/XW4G6WTR
9C3J3XBJ 10.1007/s11258-007-9335-4 https://www.zotero.org/groups/2345951/items/9C3J3XBJ
LVCN8F2M 10.1007/s11625-014-0286-0 https://www.zotero.org/groups/2345951/items/LVCN8F2M
F9GTR4A3 10.1007/s11625-014-0286-0 https://www.zotero.org/groups/2345951/items/F9GTR4A3
25DR4NWT 10.1007/s11852-013-0235-6 https://www.zotero.org/groups/2345951/items/25DR4NWT
2EYVV6L9 10.1007/s11852-013-0235-6 https://www.zotero.org/groups/2345951/items/2EYVV6L9
GJAL6XV6 10.1007/s11852-013-0235-6 https://www.zotero.org/groups/2345951/items/GJAL6XV6
LNAYDG37 10.1007/s12155-008-9030-x https://www.zotero.org/groups/2345951/items/LNAYDG37
7JQXYQIJ 10.1007/s12155-008-9030-x https://www.zotero.org/groups/2345951/items/7JQXYQIJ
ADD2QKPU 10.1007/s12231-008-9037-4 https://www.zotero.org/groups/2345951/items/ADD2QKPU
ENBNA8ZB 10.1007/s12231-008-9037-4 https://www.zotero.org/groups/2345951/items/ENBNA8ZB
LC5IP8BJ 10.1007/s12520-016-0446-5 https://www.zotero.org/groups/2345951/items/LC5IP8BJ
F5E63FRK 10.1007/s12520-016-0446-5 https://www.zotero.org/groups/2345951/items/F5E63FRK
GXWMA9HG 10.1007/s12665-016-5753-8 https://www.zotero.org/groups/2345951/items/GXWMA9HG
8SM4KINK 10.1007/s12665-016-5753-8 https://www.zotero.org/groups/2345951/items/8SM4KINK
FCWT9CNJ 10.1007/s12665-016-5753-8 https://www.zotero.org/groups/2345951/items/FCWT9CNJ
RN2V3ZJ2 10.1007/s12665-016-5753-8 https://www.zotero.org/groups/2345951/items/RN2V3ZJ2
2UMXFNI7 10.1007/s12665-016-5753-8 https://www.zotero.org/groups/2345951/items/2UMXFNI7
8RTWKB8A 10.1007/s13157-009-0003-4 https://www.zotero.org/groups/2345951/items/8RTWKB8A
VQXPIZ37 10.1007/s13157-009-0003-4 https://www.zotero.org/groups/2345951/items/VQXPIZ37
NTTT6J8L 10.1007/s13280-011-0186-9 https://www.zotero.org/groups/2345951/items/NTTT6J8L
T9YIWUDP 10.1007/s13280-011-0186-9 https://www.zotero.org/groups/2345951/items/T9YIWUDP
9ULDI4SM 10.1007/s13280-012-0367-1 https://www.zotero.org/groups/2345951/items/9ULDI4SM
QRQLF2SP 10.1007/s13280-012-0367-1 https://www.zotero.org/groups/2345951/items/QRQLF2SP
RCRJPS6Q 10.1007/s13280-012-0371-5 https://www.zotero.org/groups/2345951/items/RCRJPS6Q
MMA5NJUK 10.1007/s13280-012-0371-5 https://www.zotero.org/groups/2345951/items/MMA5NJUK
YBJPJQSQ 10.1007/s13280-012-0373-3 https://www.zotero.org/groups/2345951/items/YBJPJQSQ
TH94EMSB 10.1007/s13280-012-0373-3 https://www.zotero.org/groups/2345951/items/TH94EMSB
5RKRK8NU 10.1007/s13280-014-0505-z https://www.zotero.org/groups/2345951/items/5RKRK8NU
TY3RWNK5 10.1007/s13280-014-0505-z https://www.zotero.org/groups/2345951/items/TY3RWNK5
Z8X2TSI6 10.1007/s13280-014-0556-1 https://www.zotero.org/groups/2345951/items/Z8X2TSI6
AKDIGQJS 10.1007/s13280-014-0556-1 https://www.zotero.org/groups/2345951/items/AKDIGQJS
GJ5XND9Z 10.1007/s13280-015-0674-4 https://www.zotero.org/groups/2345951/items/GJ5XND9Z
VTL9PLD7 10.1007/s13280-015-0674-4 https://www.zotero.org/groups/2345951/items/VTL9PLD7
FDB2MG9Q 10.1007/s13280-015-0674-4 https://www.zotero.org/groups/2345951/items/FDB2MG9Q
HCGYTDUY 10.1007/s13280-015-0759-0 https://www.zotero.org/groups/2345951/items/HCGYTDUY
PHD4XC3U 10.1007/s13280-015-0759-0 https://www.zotero.org/groups/2345951/items/PHD4XC3U
C4IWBIJ3 10.1007/s13280-015-0760-7 https://www.zotero.org/groups/2345951/items/C4IWBIJ3
CBGL4DSP 10.1007/s13280-015-0760-7 https://www.zotero.org/groups/2345951/items/CBGL4DSP
AC5KCBPZ 10.1007/s13364-015-0250-0 https://www.zotero.org/groups/2345951/items/AC5KCBPZ
H8VK5UXE 10.1007/s13364-015-0250-0 https://www.zotero.org/groups/2345951/items/H8VK5UXE
CQLL2BF8 10.1007/s13398-014-0173-7.2 https://www.zotero.org/groups/2345951/items/CQLL2BF8
42CIB73Z 10.1007/s13398-014-0173-7.2 https://www.zotero.org/groups/2345951/items/42CIB73Z
7LLMKLIP 10.1007/s13593-013-0183-4 https://www.zotero.org/groups/2345951/items/7LLMKLIP
Q2RAMWD5 10.1007/s13593-013-0183-4 https://www.zotero.org/groups/2345951/items/Q2RAMWD5
3AIHUIHI 10.1016/0006-3207(92)91201-3 https://www.zotero.org/groups/2345951/items/3AIHUIHI
2CJ3JZH7 10.1016/0006-3207(92)91201-3 https://www.zotero.org/groups/2345951/items/2CJ3JZH7
N5VGF58L 10.1016/0006-3207(92)91201-3 https://www.zotero.org/groups/2345951/items/N5VGF58L
ZA7BU8M5 10.1016/0341-8162(95)00018-N https://www.zotero.org/groups/2345951/items/ZA7BU8M5
T6QY6HJU 10.1016/0341-8162(95)00018-N https://www.zotero.org/groups/2345951/items/T6QY6HJU
BTCEVB8V 10.1016/S0006-3207(01)00054-4 https://www.zotero.org/groups/2345951/items/BTCEVB8V
6ITC6778 10.1016/S0006-3207(01)00054-4 https://www.zotero.org/groups/2345951/items/6ITC6778
8N27PZ74 10.1016/S0044-8486(03)00474-5 https://www.zotero.org/groups/2345951/items/8N27PZ74
RYL88T3D 10.1016/S0044-8486(03)00474-5 https://www.zotero.org/groups/2345951/items/RYL88T3D
QEG6BYBT 10.1016/S0044-8486(03)00474-5 https://www.zotero.org/groups/2345951/items/QEG6BYBT
VHXQH74D 10.1016/S0044-8486(03)00474-5 https://www.zotero.org/groups/2345951/items/VHXQH74D
KGX63AYV 10.1016/S0140-6736(09)61711-6 https://www.zotero.org/groups/2345951/items/KGX63AYV
X4VMVXPT 10.1016/S0140-6736(09)61711-6 https://www.zotero.org/groups/2345951/items/X4VMVXPT
ERK22J79 10.1016/S0261-2194(01)00123-5 https://www.zotero.org/groups/2345951/items/ERK22J79
4FDBHSQT 10.1016/S0261-2194(01)00123-5 https://www.zotero.org/groups/2345951/items/4FDBHSQT
IER87XR2 10.1016/S0921-8009(99)00013-0 https://www.zotero.org/groups/2345951/items/IER87XR2
E7JJCNHG 10.1016/S0921-8009(99)00013-0 https://www.zotero.org/groups/2345951/items/E7JJCNHG
3ZEYEPDT 10.1016/S1464-1909(01)00052-1 https://www.zotero.org/groups/2345951/items/3ZEYEPDT
5IMNCQZY 10.1016/S1464-1909(01)00052-1 https://www.zotero.org/groups/2345951/items/5IMNCQZY
V8PC94DN 10.1016/j.aaspro.2016.02.017 https://www.zotero.org/groups/2345951/items/V8PC94DN
ZPR2ZW8Q 10.1016/j.aaspro.2016.02.017 https://www.zotero.org/groups/2345951/items/ZPR2ZW8Q
RL6KA6Q9 10.1016/j.aaspro.2016.02.017 https://www.zotero.org/groups/2345951/items/RL6KA6Q9
ZA4FXH2F 10.1016/j.aaspro.2016.02.017 https://www.zotero.org/groups/2345951/items/ZA4FXH2F
483Q6V8C 10.1016/j.agee.2005.11.005 https://www.zotero.org/groups/2345951/items/483Q6V8C
CTXW366D 10.1016/j.agee.2005.11.005 https://www.zotero.org/groups/2345951/items/CTXW366D
3RXPUJ69 10.1016/j.agee.2005.11.006 https://www.zotero.org/groups/2345951/items/3RXPUJ69
TJQIFMBF 10.1016/j.agee.2005.11.006 https://www.zotero.org/groups/2345951/items/TJQIFMBF
XMRP9FZR 10.1016/j.agee.2005.11.026 https://www.zotero.org/groups/2345951/items/XMRP9FZR
4YAUDZ5G 10.1016/j.agee.2005.11.026 https://www.zotero.org/groups/2345951/items/4YAUDZ5G
3FW5JC3V 10.1016/j.agee.2007.09.005 https://www.zotero.org/groups/2345951/items/3FW5JC3V
D5SAT5UX 10.1016/j.agee.2007.09.005 https://www.zotero.org/groups/2345951/items/D5SAT5UX
AALLT2QE 10.1016/j.agee.2008.04.010 https://www.zotero.org/groups/2345951/items/AALLT2QE
GKHTJ5Z3 10.1016/j.agee.2008.04.010 https://www.zotero.org/groups/2345951/items/GKHTJ5Z3
9WDILZBQ 10.1016/j.agee.2013.01.015 https://www.zotero.org/groups/2345951/items/9WDILZBQ
9PP3I7TD 10.1016/j.agee.2013.01.015 https://www.zotero.org/groups/2345951/items/9PP3I7TD
2S3UZL9V 10.1016/j.agee.2013.08.018 https://www.zotero.org/groups/2345951/items/2S3UZL9V
LII5UY47 10.1016/j.agee.2013.08.018 https://www.zotero.org/groups/2345951/items/LII5UY47
3B3EUAP2 10.1016/j.agee.2013.08.018 https://www.zotero.org/groups/2345951/items/3B3EUAP2
285C923C 10.1016/j.agee.2013.08.018 https://www.zotero.org/groups/2345951/items/285C923C
IML4VJML 10.1016/j.agee.2013.08.018 https://www.zotero.org/groups/2345951/items/IML4VJML
N76793QV 10.1016/j.agee.2013.12.013 https://www.zotero.org/groups/2345951/items/N76793QV
FWRQQLHK 10.1016/j.agee.2013.12.013 https://www.zotero.org/groups/2345951/items/FWRQQLHK
IPIT54PW 10.1016/j.agee.2013.12.015 https://www.zotero.org/groups/2345951/items/IPIT54PW
NJI9KX8F 10.1016/j.agee.2013.12.015 https://www.zotero.org/groups/2345951/items/NJI9KX8F
PGZKXZYU 10.1016/j.agee.2014.02.033 https://www.zotero.org/groups/2345951/items/PGZKXZYU
G3GVRY7E 10.1016/j.agee.2014.02.033 https://www.zotero.org/groups/2345951/items/G3GVRY7E
77FSJANL 10.1016/j.agee.2016.05.018 https://www.zotero.org/groups/2345951/items/77FSJANL
QSCRLXUU 10.1016/j.agee.2016.05.018 https://www.zotero.org/groups/2345951/items/QSCRLXUU
SRF97YPX 10.1016/j.agee.2016.05.018 https://www.zotero.org/groups/2345951/items/SRF97YPX
WY43QZPT 10.1016/j.agrformet.2009.08.006 https://www.zotero.org/groups/2345951/items/WY43QZPT
XVHM3VFY 10.1016/j.agrformet.2009.08.006 https://www.zotero.org/groups/2345951/items/XVHM3VFY
7D2WPGGC 10.1016/j.agwat.2011.12.019 https://www.zotero.org/groups/2345951/items/7D2WPGGC
V9AV7DC5 10.1016/j.agwat.2011.12.019 https://www.zotero.org/groups/2345951/items/V9AV7DC5
NIIEHQEG 10.1016/j.apgeog.2009.07.003 https://www.zotero.org/groups/2345951/items/NIIEHQEG
NDUD6I3L 10.1016/j.apgeog.2009.07.003 https://www.zotero.org/groups/2345951/items/NDUD6I3L
I5QUQRKN 10.1016/j.apsoil.2015.08.005 https://www.zotero.org/groups/2345951/items/I5QUQRKN
IN2DXMXI 10.1016/j.apsoil.2015.08.005 https://www.zotero.org/groups/2345951/items/IN2DXMXI
56P9UPCS 10.1016/j.aquaeng.2010.09.002 https://www.zotero.org/groups/2345951/items/56P9UPCS
66HMBIW7 10.1016/j.aquaeng.2010.09.002 https://www.zotero.org/groups/2345951/items/66HMBIW7
KMM6PACD 10.1016/j.baae.2009.12.001 https://www.zotero.org/groups/2345951/items/KMM6PACD
IMS2PY3S 10.1016/j.baae.2009.12.001 https://www.zotero.org/groups/2345951/items/IMS2PY3S
3TJHVB7E 10.1016/j.biocon.2003.10.015 https://www.zotero.org/groups/2345951/items/3TJHVB7E
TNPP678D 10.1016/j.biocon.2003.10.015 https://www.zotero.org/groups/2345951/items/TNPP678D
L76WAG78 10.1016/j.biocon.2005.10.040 https://www.zotero.org/groups/2345951/items/L76WAG78
GVS68RD5 10.1016/j.biocon.2005.10.040 https://www.zotero.org/groups/2345951/items/GVS68RD5
XU38D3FI 10.1016/j.biocon.2006.02.008 https://www.zotero.org/groups/2345951/items/XU38D3FI
BAHPD2PG 10.1016/j.biocon.2006.02.008 https://www.zotero.org/groups/2345951/items/BAHPD2PG
FATWSLCB 10.1016/j.biocon.2007.06.005 https://www.zotero.org/groups/2345951/items/FATWSLCB
7EN2PMYS 10.1016/j.biocon.2007.06.005 https://www.zotero.org/groups/2345951/items/7EN2PMYS
Q98FLHBN 10.1016/j.biocon.2008.03.007 https://www.zotero.org/groups/2345951/items/Q98FLHBN
TLEF33A9 10.1016/j.biocon.2008.03.007 https://www.zotero.org/groups/2345951/items/TLEF33A9
AZ89P4CJ 10.1016/j.biocon.2008.03.007 https://www.zotero.org/groups/2345951/items/AZ89P4CJ
ZQUUXAUS 10.1016/j.biocon.2010.11.004 https://www.zotero.org/groups/2345951/items/ZQUUXAUS
378PZ6LS 10.1016/j.biocon.2010.11.004 https://www.zotero.org/groups/2345951/items/378PZ6LS
N9SIZGEE 10.1016/j.biocon.2011.07.010 https://www.zotero.org/groups/2345951/items/N9SIZGEE
KXRQ9A7C 10.1016/j.biocon.2011.07.010 https://www.zotero.org/groups/2345951/items/KXRQ9A7C
S3VYSIQR 10.1016/j.biocon.2011.07.010 https://www.zotero.org/groups/2345951/items/S3VYSIQR
BIVSFJCD 10.1016/j.biocon.2012.02.015 https://www.zotero.org/groups/2345951/items/BIVSFJCD
2F6KYC5Z 10.1016/j.biocon.2012.02.015 https://www.zotero.org/groups/2345951/items/2F6KYC5Z
MUVN236W 10.1016/j.biocon.2012.06.016 https://www.zotero.org/groups/2345951/items/MUVN236W
PBWWQ4BL 10.1016/j.biocon.2012.06.016 https://www.zotero.org/groups/2345951/items/PBWWQ4BL
3GNPXL4R 10.1016/j.biocon.2014.02.013 https://www.zotero.org/groups/2345951/items/3GNPXL4R
L3RCGEWP 10.1016/j.biocon.2014.02.013 https://www.zotero.org/groups/2345951/items/L3RCGEWP
MDVIWH8M 10.1016/j.biocon.2015.02.034 https://www.zotero.org/groups/2345951/items/MDVIWH8M
Z4Q7XQ7Z 10.1016/j.biocon.2015.02.034 https://www.zotero.org/groups/2345951/items/Z4Q7XQ7Z
6JZKB2JG 10.1016/j.biocon.2016.02.027 https://www.zotero.org/groups/2345951/items/6JZKB2JG
KTXGWCGQ 10.1016/j.biocon.2016.02.027 https://www.zotero.org/groups/2345951/items/KTXGWCGQ
SA3RR6JE 10.1016/j.biocon.2016.04.027 https://www.zotero.org/groups/2345951/items/SA3RR6JE
ST396MI4 10.1016/j.biocon.2016.04.027 https://www.zotero.org/groups/2345951/items/ST396MI4
MJ8S67Q5 10.1016/j.biocon.2016.05.007 https://www.zotero.org/groups/2345951/items/MJ8S67Q5
D9NBJ8ST 10.1016/j.biocon.2016.05.007 https://www.zotero.org/groups/2345951/items/D9NBJ8ST
YKM97RKT 10.1016/j.biocon.2016.08.041 https://www.zotero.org/groups/2345951/items/YKM97RKT
5357AABI 10.1016/j.biocon.2016.08.041 https://www.zotero.org/groups/2345951/items/5357AABI
2R96MGQX 10.1016/j.biombioe.2008.09.003 https://www.zotero.org/groups/2345951/items/2R96MGQX
3M6RKCAI 10.1016/j.biombioe.2008.09.003 https://www.zotero.org/groups/2345951/items/3M6RKCAI
YA5YQW8N 10.1016/j.bse.2014.01.012 https://www.zotero.org/groups/2345951/items/YA5YQW8N
U6IVS3JU 10.1016/j.bse.2014.01.012 https://www.zotero.org/groups/2345951/items/U6IVS3JU
4AEL3L7M 10.1016/j.catena.2015.06.002 https://www.zotero.org/groups/2345951/items/4AEL3L7M
SWCSS6E4 10.1016/j.catena.2015.06.002 https://www.zotero.org/groups/2345951/items/SWCSS6E4
6GW5PE4E 10.1016/j.catena.2015.06.002 https://www.zotero.org/groups/2345951/items/6GW5PE4E
GVDF2NSU 10.1016/j.clipol.2003.10.004 https://www.zotero.org/groups/2345951/items/GVDF2NSU
99IIV54F 10.1016/j.clipol.2003.10.004 https://www.zotero.org/groups/2345951/items/99IIV54F
RV2235F4 10.1016/j.cosust.2012.12.005 https://www.zotero.org/groups/2345951/items/RV2235F4
447KMDCQ 10.1016/j.cosust.2012.12.005 https://www.zotero.org/groups/2345951/items/447KMDCQ
3JAPYBXC 10.1016/j.cosust.2013.01.001 https://www.zotero.org/groups/2345951/items/3JAPYBXC
3F98ZZKL 10.1016/j.cosust.2013.01.001 https://www.zotero.org/groups/2345951/items/3F98ZZKL
4NI54J4A 10.1016/j.cosust.2013.01.002 https://www.zotero.org/groups/2345951/items/4NI54J4A
VALGSMUG 10.1016/j.cosust.2013.01.002 https://www.zotero.org/groups/2345951/items/VALGSMUG
GPZFML5D 10.1016/j.cosust.2014.11.002 https://www.zotero.org/groups/2345951/items/GPZFML5D
CQQW49HS 10.1016/j.cosust.2014.11.002 https://www.zotero.org/groups/2345951/items/CQQW49HS
XHAM6F53 10.1016/j.cosust.2014.11.002 https://www.zotero.org/groups/2345951/items/XHAM6F53
6GFA2V5J 10.1016/j.cosust.2014.11.002 https://www.zotero.org/groups/2345951/items/6GFA2V5J
TIVLDWT3 10.1016/j.cosust.2014.11.002 https://www.zotero.org/groups/2345951/items/TIVLDWT3
5XLV5S67 10.1016/j.cosust.2014.11.002 https://www.zotero.org/groups/2345951/items/5XLV5S67
RF6AIXRQ 10.1016/j.cosust.2015.03.007 https://www.zotero.org/groups/2345951/items/RF6AIXRQ
IUA7IY9Z 10.1016/j.cosust.2015.03.007 https://www.zotero.org/groups/2345951/items/IUA7IY9Z
ZTXUEGSX 10.1016/j.cosust.2015.03.007 https://www.zotero.org/groups/2345951/items/ZTXUEGSX
6YUNDHG2 10.1016/j.cosust.2016.12.006 https://www.zotero.org/groups/2345951/items/6YUNDHG2
4Q2FWD4K 10.1016/j.cosust.2016.12.006 https://www.zotero.org/groups/2345951/items/4Q2FWD4K
CEFPQGJP 10.1016/j.cosust.2016.12.006 https://www.zotero.org/groups/2345951/items/CEFPQGJP
KFFCEFRR 10.1016/j.crvi.2010.11.007 https://www.zotero.org/groups/2345951/items/KFFCEFRR
KUQTG79V 10.1016/j.crvi.2010.11.007 https://www.zotero.org/groups/2345951/items/KUQTG79V
WGCQABG7 10.1016/j.ecocom.2013.07.004 https://www.zotero.org/groups/2345951/items/WGCQABG7
6DZZZA9I 10.1016/j.ecocom.2013.07.004 https://www.zotero.org/groups/2345951/items/6DZZZA9I
L94K52Y9 10.1016/j.ecolecon.2009.11.001 https://www.zotero.org/groups/2345951/items/L94K52Y9
EE2XMU3H 10.1016/j.ecolecon.2009.11.001 https://www.zotero.org/groups/2345951/items/EE2XMU3H
3Z33WZF6 10.1016/j.ecolecon.2010.02.011 https://www.zotero.org/groups/2345951/items/3Z33WZF6
4SKA8SQG 10.1016/j.ecolecon.2010.02.011 https://www.zotero.org/groups/2345951/items/4SKA8SQG
8V534AB3 10.1016/j.ecolecon.2010.02.011 https://www.zotero.org/groups/2345951/items/8V534AB3
DYX2R6NJ 10.1016/j.ecolecon.2010.04.017 https://www.zotero.org/groups/2345951/items/DYX2R6NJ
UQYQ3BSK 10.1016/j.ecolecon.2010.04.017 https://www.zotero.org/groups/2345951/items/UQYQ3BSK
VRKMSY68 10.1016/j.ecolecon.2010.05.003 https://www.zotero.org/groups/2345951/items/VRKMSY68
TD3NYGCR 10.1016/j.ecolecon.2010.05.003 https://www.zotero.org/groups/2345951/items/TD3NYGCR
NPERHR3T 10.1016/j.ecolecon.2011.12.011 https://www.zotero.org/groups/2345951/items/NPERHR3T
JKB6NRWX 10.1016/j.ecolecon.2011.12.011 https://www.zotero.org/groups/2345951/items/JKB6NRWX
YAH2GXC9 10.1016/j.ecolecon.2012.08.017 https://www.zotero.org/groups/2345951/items/YAH2GXC9
TZ4JEWKB 10.1016/j.ecolecon.2012.08.017 https://www.zotero.org/groups/2345951/items/TZ4JEWKB
4HVRMMIW 10.1016/j.ecolecon.2013.04.019 https://www.zotero.org/groups/2345951/items/4HVRMMIW
9DKCGR9Z 10.1016/j.ecolecon.2013.04.019 https://www.zotero.org/groups/2345951/items/9DKCGR9Z
VIM7L7JX 10.1016/j.ecolecon.2013.06.008 https://www.zotero.org/groups/2345951/items/VIM7L7JX
N5C3BFGD 10.1016/j.ecolecon.2013.06.008 https://www.zotero.org/groups/2345951/items/N5C3BFGD
54C7RY28 10.1016/j.ecolecon.2014.09.028 https://www.zotero.org/groups/2345951/items/54C7RY28
2DNGJSM2 10.1016/j.ecolecon.2014.09.028 https://www.zotero.org/groups/2345951/items/2DNGJSM2
6CCITMMV 10.1016/j.ecolecon.2014.09.028 https://www.zotero.org/groups/2345951/items/6CCITMMV
GJNVAZRC 10.1016/j.ecolecon.2014.09.029 https://www.zotero.org/groups/2345951/items/GJNVAZRC
S376AUZR 10.1016/j.ecolecon.2014.09.029 https://www.zotero.org/groups/2345951/items/S376AUZR
3B74VRQI 10.1016/j.ecolecon.2014.11.005 https://www.zotero.org/groups/2345951/items/3B74VRQI
IEE9P6TU 10.1016/j.ecolecon.2014.11.005 https://www.zotero.org/groups/2345951/items/IEE9P6TU
B4D5NZZR 10.1016/j.ecolecon.2014.11.005 https://www.zotero.org/groups/2345951/items/B4D5NZZR
Z74W8T8A 10.1016/j.ecolecon.2015.01.006 https://www.zotero.org/groups/2345951/items/Z74W8T8A
5CBYWUVT 10.1016/j.ecolecon.2015.01.006 https://www.zotero.org/groups/2345951/items/5CBYWUVT
ZFEAMCHE 10.1016/j.ecolecon.2015.01.006 https://www.zotero.org/groups/2345951/items/ZFEAMCHE
7L26WPMS 10.1016/j.ecolecon.2015.10.011 https://www.zotero.org/groups/2345951/items/7L26WPMS
WSAA3ALQ 10.1016/j.ecolecon.2015.10.011 https://www.zotero.org/groups/2345951/items/WSAA3ALQ
WNSBKY87 10.1016/j.ecolecon.2015.11.003 https://www.zotero.org/groups/2345951/items/WNSBKY87
RMCGPWXL 10.1016/j.ecolecon.2015.11.003 https://www.zotero.org/groups/2345951/items/RMCGPWXL
HPEFEZPV 10.1016/j.ecolind.2009.08.002 https://www.zotero.org/groups/2345951/items/HPEFEZPV
9YVUZBHS 10.1016/j.ecolind.2009.08.002 https://www.zotero.org/groups/2345951/items/9YVUZBHS
J5GL7MC7 10.1016/j.ecolind.2010.03.006 https://www.zotero.org/groups/2345951/items/J5GL7MC7
HCHVGU7L 10.1016/j.ecolind.2010.03.006 https://www.zotero.org/groups/2345951/items/HCHVGU7L
7NZNV4EL 10.1016/j.ecolind.2011.04.025 https://www.zotero.org/groups/2345951/items/7NZNV4EL
SP69F7LC 10.1016/j.ecolind.2011.04.025 https://www.zotero.org/groups/2345951/items/SP69F7LC
3P8UPRGZ 10.1016/j.ecolind.2011.04.025 https://www.zotero.org/groups/2345951/items/3P8UPRGZ
IPAASUL3 10.1016/j.ecolind.2011.06.019 https://www.zotero.org/groups/2345951/items/IPAASUL3
VSIEQLIV 10.1016/j.ecolind.2011.06.019 https://www.zotero.org/groups/2345951/items/VSIEQLIV
MKC5M4MD 10.1016/j.ecolind.2012.01.012 https://www.zotero.org/groups/2345951/items/MKC5M4MD
W5GWDLRP 10.1016/j.ecolind.2012.01.012 https://www.zotero.org/groups/2345951/items/W5GWDLRP
JSBCYEKK 10.1016/j.ecolind.2012.06.025 https://www.zotero.org/groups/2345951/items/JSBCYEKK
CC59C8DJ 10.1016/j.ecolind.2012.06.025 https://www.zotero.org/groups/2345951/items/CC59C8DJ
N8QUSSW3 10.1016/j.ecolind.2012.08.005 https://www.zotero.org/groups/2345951/items/N8QUSSW3
44MV6G6Z 10.1016/j.ecolind.2012.08.005 https://www.zotero.org/groups/2345951/items/44MV6G6Z
54UDKA4J 10.1016/j.ecolind.2013.01.016 https://www.zotero.org/groups/2345951/items/54UDKA4J
STIX3XXZ 10.1016/j.ecolind.2013.01.016 https://www.zotero.org/groups/2345951/items/STIX3XXZ
8MQADN47 10.1016/j.ecolind.2013.02.013 https://www.zotero.org/groups/2345951/items/8MQADN47
DASSKIY7 10.1016/j.ecolind.2013.02.013 https://www.zotero.org/groups/2345951/items/DASSKIY7
KCPZZPRV 10.1016/j.ecolind.2013.03.003 https://www.zotero.org/groups/2345951/items/KCPZZPRV
B6HZD4JP 10.1016/j.ecolind.2013.03.003 https://www.zotero.org/groups/2345951/items/B6HZD4JP
MAUWNYYQ 10.1016/j.ecolind.2013.03.003 https://www.zotero.org/groups/2345951/items/MAUWNYYQ
YVJS9BBR 10.1016/j.ecolind.2013.07.014 https://www.zotero.org/groups/2345951/items/YVJS9BBR
48NSQYGX 10.1016/j.ecolind.2013.07.014 https://www.zotero.org/groups/2345951/items/48NSQYGX
TGKQ65WR 10.1016/j.ecolind.2013.09.018 https://www.zotero.org/groups/2345951/items/TGKQ65WR
D2JF4EHM 10.1016/j.ecolind.2013.09.018 https://www.zotero.org/groups/2345951/items/D2JF4EHM
DBIBN7I3 10.1016/j.ecolind.2013.11.010 https://www.zotero.org/groups/2345951/items/DBIBN7I3
FN79DF93 10.1016/j.ecolind.2013.11.010 https://www.zotero.org/groups/2345951/items/FN79DF93
ILLHFU5X 10.1016/j.ecolind.2013.11.010 https://www.zotero.org/groups/2345951/items/ILLHFU5X
3X5F7BUL 10.1016/j.ecolind.2013.11.010 https://www.zotero.org/groups/2345951/items/3X5F7BUL
LAPRJLKA 10.1016/j.ecolind.2013.11.010 https://www.zotero.org/groups/2345951/items/LAPRJLKA
85ZMZHFL 10.1016/j.ecolind.2014.04.018 https://www.zotero.org/groups/2345951/items/85ZMZHFL
DH78PWV8 10.1016/j.ecolind.2014.04.018 https://www.zotero.org/groups/2345951/items/DH78PWV8
IZZPEEXX 10.1016/j.ecolind.2014.09.004 https://www.zotero.org/groups/2345951/items/IZZPEEXX
565NKDUI 10.1016/j.ecolind.2014.09.004 https://www.zotero.org/groups/2345951/items/565NKDUI
F3J4NKRZ 10.1016/j.ecolind.2014.12.016 https://www.zotero.org/groups/2345951/items/F3J4NKRZ
NJ7RTHNQ 10.1016/j.ecolind.2014.12.016 https://www.zotero.org/groups/2345951/items/NJ7RTHNQ
SNUK4EUB 10.1016/j.ecolind.2015.03.029 https://www.zotero.org/groups/2345951/items/SNUK4EUB
RX6H3PG2 10.1016/j.ecolind.2015.03.029 https://www.zotero.org/groups/2345951/items/RX6H3PG2
NPXVJKDR 10.1016/j.ecolind.2015.05.009 https://www.zotero.org/groups/2345951/items/NPXVJKDR
VNW6GQ8M 10.1016/j.ecolind.2015.05.009 https://www.zotero.org/groups/2345951/items/VNW6GQ8M
8AIMH9AX 10.1016/j.ecolind.2015.06.043 https://www.zotero.org/groups/2345951/items/8AIMH9AX
7X867384 10.1016/j.ecolind.2015.06.043 https://www.zotero.org/groups/2345951/items/7X867384
PHCX36M9 10.1016/j.ecolind.2015.08.048 https://www.zotero.org/groups/2345951/items/PHCX36M9
B8AVCH4M 10.1016/j.ecolind.2015.08.048 https://www.zotero.org/groups/2345951/items/B8AVCH4M
IZHUTBMV 10.1016/j.ecolind.2015.08.050 https://www.zotero.org/groups/2345951/items/IZHUTBMV
W68E9SYM 10.1016/j.ecolind.2015.08.050 https://www.zotero.org/groups/2345951/items/W68E9SYM
ELT6V9ND 10.1016/j.ecolind.2015.08.050 https://www.zotero.org/groups/2345951/items/ELT6V9ND
M553Q8N2 10.1016/j.ecolind.2015.08.050 https://www.zotero.org/groups/2345951/items/M553Q8N2
QU6IIZGT 10.1016/j.ecolind.2015.10.023 https://www.zotero.org/groups/2345951/items/QU6IIZGT
6P7QYSVH 10.1016/j.ecolind.2015.10.023 https://www.zotero.org/groups/2345951/items/6P7QYSVH
RG89TTZD 10.1016/j.ecolind.2015.10.023 https://www.zotero.org/groups/2345951/items/RG89TTZD
SZM2B5JU 10.1016/j.ecolind.2015.11.032 https://www.zotero.org/groups/2345951/items/SZM2B5JU
JF58VPQW 10.1016/j.ecolind.2015.11.032 https://www.zotero.org/groups/2345951/items/JF58VPQW
BC5LPSYP 10.1016/j.ecolind.2016.02.004 https://www.zotero.org/groups/2345951/items/BC5LPSYP
AZPSNNY7 10.1016/j.ecolind.2016.02.004 https://www.zotero.org/groups/2345951/items/AZPSNNY7
38G6NTDH 10.1016/j.ecolind.2017.03.005 https://www.zotero.org/groups/2345951/items/38G6NTDH
ANP3X5IZ 10.1016/j.ecolind.2017.03.005 https://www.zotero.org/groups/2345951/items/ANP3X5IZ
CCHIAF25 10.1016/j.ecolmodel.2010.11.009 https://www.zotero.org/groups/2345951/items/CCHIAF25
GD94KJHS 10.1016/j.ecolmodel.2010.11.009 https://www.zotero.org/groups/2345951/items/GD94KJHS
SKHFQ33R 10.1016/j.ecolmodel.2013.09.005 https://www.zotero.org/groups/2345951/items/SKHFQ33R
9SSAJUQJ 10.1016/j.ecolmodel.2013.09.005 https://www.zotero.org/groups/2345951/items/9SSAJUQJ
SNHF8J3D 10.1016/j.ecolmodel.2014.10.003 https://www.zotero.org/groups/2345951/items/SNHF8J3D
IYCRE6YI 10.1016/j.ecolmodel.2014.10.003 https://www.zotero.org/groups/2345951/items/IYCRE6YI
L3ZMKQFL 10.1016/j.ecolmodel.2015.12.018 https://www.zotero.org/groups/2345951/items/L3ZMKQFL
RLR6NCGM 10.1016/j.ecolmodel.2015.12.018 https://www.zotero.org/groups/2345951/items/RLR6NCGM
V442I34X 10.1016/j.ecoser.2012.06.004 https://www.zotero.org/groups/2345951/items/V442I34X
QB4HVDEZ 10.1016/j.ecoser.2012.06.004 https://www.zotero.org/groups/2345951/items/QB4HVDEZ
FVRK4P3P 10.1016/j.ecoser.2012.06.004 https://www.zotero.org/groups/2345951/items/FVRK4P3P
N94KNCX7 10.1016/j.ecoser.2012.06.004 https://www.zotero.org/groups/2345951/items/N94KNCX7
68GG9DRV 10.1016/j.ecoser.2012.07.003 https://www.zotero.org/groups/2345951/items/68GG9DRV
928G6V8U 10.1016/j.ecoser.2012.07.003 https://www.zotero.org/groups/2345951/items/928G6V8U
UQG9EYFX 10.1016/j.ecoser.2012.07.006 https://www.zotero.org/groups/2345951/items/UQG9EYFX
WR3QWGEW 10.1016/j.ecoser.2012.07.006 https://www.zotero.org/groups/2345951/items/WR3QWGEW
5KMLI2MW 10.1016/j.ecoser.2012.07.012 https://www.zotero.org/groups/2345951/items/5KMLI2MW
QEIXAP74 10.1016/j.ecoser.2012.07.012 https://www.zotero.org/groups/2345951/items/QEIXAP74
URHRHTT8 10.1016/j.ecoser.2012.12.002 https://www.zotero.org/groups/2345951/items/URHRHTT8
NRNIAK98 10.1016/j.ecoser.2012.12.002 https://www.zotero.org/groups/2345951/items/NRNIAK98
PRVG2PZY 10.1016/j.ecoser.2013.02.001 https://www.zotero.org/groups/2345951/items/PRVG2PZY
CMXMQ4H4 10.1016/j.ecoser.2013.02.001 https://www.zotero.org/groups/2345951/items/CMXMQ4H4
GZUPSX3K 10.1016/j.ecoser.2013.02.001 https://www.zotero.org/groups/2345951/items/GZUPSX3K
MVBDW7YP 10.1016/j.ecoser.2013.04.002 https://www.zotero.org/groups/2345951/items/MVBDW7YP
RFA2597H 10.1016/j.ecoser.2013.04.002 https://www.zotero.org/groups/2345951/items/RFA2597H
SXEQDXAI 10.1016/j.ecoser.2013.04.002 https://www.zotero.org/groups/2345951/items/SXEQDXAI
G2R45HY9 10.1016/j.ecoser.2013.06.003 https://www.zotero.org/groups/2345951/items/G2R45HY9
U8JSBMLR 10.1016/j.ecoser.2013.06.003 https://www.zotero.org/groups/2345951/items/U8JSBMLR
6G3EWPYJ 10.1016/j.ecoser.2013.07.004 https://www.zotero.org/groups/2345951/items/6G3EWPYJ
3N9SNGM5 10.1016/j.ecoser.2013.07.004 https://www.zotero.org/groups/2345951/items/3N9SNGM5
XLY2PVYY 10.1016/j.ecoser.2013.09.001 https://www.zotero.org/groups/2345951/items/XLY2PVYY
QE5A5B9L 10.1016/j.ecoser.2013.09.001 https://www.zotero.org/groups/2345951/items/QE5A5B9L
QMQW8K62 10.1016/j.ecoser.2013.09.001 https://www.zotero.org/groups/2345951/items/QMQW8K62
JASTH4C8 10.1016/j.ecoser.2013.09.001 https://www.zotero.org/groups/2345951/items/JASTH4C8
9QI6GGX6 10.1016/j.ecoser.2014.04.002 https://www.zotero.org/groups/2345951/items/9QI6GGX6
HLVE9D8E 10.1016/j.ecoser.2014.04.002 https://www.zotero.org/groups/2345951/items/HLVE9D8E
IQ7LDMWQ 10.1016/j.ecoser.2014.05.006 https://www.zotero.org/groups/2345951/items/IQ7LDMWQ
DUSHQ76F 10.1016/j.ecoser.2014.05.006 https://www.zotero.org/groups/2345951/items/DUSHQ76F
DFYCZEAV 10.1016/j.ecoser.2014.05.006 https://www.zotero.org/groups/2345951/items/DFYCZEAV
UF878CHD 10.1016/j.ecoser.2014.05.006 https://www.zotero.org/groups/2345951/items/UF878CHD
2CV8WL44 10.1016/j.ecoser.2014.06.004 https://www.zotero.org/groups/2345951/items/2CV8WL44
X24UE2YZ 10.1016/j.ecoser.2014.06.004 https://www.zotero.org/groups/2345951/items/X24UE2YZ
MDM7W9W6 10.1016/j.ecoser.2014.06.004 https://www.zotero.org/groups/2345951/items/MDM7W9W6
Y8J39UTL 10.1016/j.ecoser.2014.06.004 https://www.zotero.org/groups/2345951/items/Y8J39UTL
2CA4GD6C 10.1016/j.ecoser.2014.06.004 https://www.zotero.org/groups/2345951/items/2CA4GD6C
CUH2YB7S 10.1016/j.ecoser.2014.06.004 https://www.zotero.org/groups/2345951/items/CUH2YB7S
I2GMDMZM 10.1016/j.ecoser.2014.07.006 https://www.zotero.org/groups/2345951/items/I2GMDMZM
WYID79B2 10.1016/j.ecoser.2014.07.006 https://www.zotero.org/groups/2345951/items/WYID79B2
GVPXNTLZ 10.1016/j.ecoser.2014.09.006 https://www.zotero.org/groups/2345951/items/GVPXNTLZ
BAAA9669 10.1016/j.ecoser.2014.09.006 https://www.zotero.org/groups/2345951/items/BAAA9669
K2RPDV8J 10.1016/j.ecoser.2014.09.012 https://www.zotero.org/groups/2345951/items/K2RPDV8J
DE8IL3K6 10.1016/j.ecoser.2014.09.012 https://www.zotero.org/groups/2345951/items/DE8IL3K6
J9G7HAPE 10.1016/j.ecoser.2014.10.013 https://www.zotero.org/groups/2345951/items/J9G7HAPE
TK52GBHY 10.1016/j.ecoser.2014.10.013 https://www.zotero.org/groups/2345951/items/TK52GBHY
6Q956S3H 10.1016/j.ecoser.2014.12.007 https://www.zotero.org/groups/2345951/items/6Q956S3H
GPFHZ2WU 10.1016/j.ecoser.2014.12.007 https://www.zotero.org/groups/2345951/items/GPFHZ2WU
AD3R4QTA 10.1016/j.ecoser.2015.07.007 https://www.zotero.org/groups/2345951/items/AD3R4QTA
LN7RTKCA 10.1016/j.ecoser.2015.07.007 https://www.zotero.org/groups/2345951/items/LN7RTKCA
Y3HT3SSH 10.1016/j.ecoser.2015.08.002 https://www.zotero.org/groups/2345951/items/Y3HT3SSH
9LV6SQS3 10.1016/j.ecoser.2015.08.002 https://www.zotero.org/groups/2345951/items/9LV6SQS3
MSRSJYJS 10.1016/j.ecoser.2015.08.002 https://www.zotero.org/groups/2345951/items/MSRSJYJS
TEBGCTA6 10.1016/j.ecoser.2015.10.014 https://www.zotero.org/groups/2345951/items/TEBGCTA6
F5GRMS73 10.1016/j.ecoser.2015.10.014 https://www.zotero.org/groups/2345951/items/F5GRMS73
IT695W6Q 10.1016/j.ecoser.2015.10.023 https://www.zotero.org/groups/2345951/items/IT695W6Q
J575UM5W 10.1016/j.ecoser.2015.10.023 https://www.zotero.org/groups/2345951/items/J575UM5W
VQPFK8PW 10.1016/j.ecoser.2015.10.023 https://www.zotero.org/groups/2345951/items/VQPFK8PW
23AV2Q8T 10.1016/j.ecoser.2015.10.023 https://www.zotero.org/groups/2345951/items/23AV2Q8T
8YGRLWWV 10.1016/j.ecoser.2016.06.006 https://www.zotero.org/groups/2345951/items/8YGRLWWV
4669PLP8 10.1016/j.ecoser.2016.06.006 https://www.zotero.org/groups/2345951/items/4669PLP8
VHF67F8B 10.1016/j.ecoser.2016.06.010 https://www.zotero.org/groups/2345951/items/VHF67F8B
22YZYHCJ 10.1016/j.ecoser.2016.06.010 https://www.zotero.org/groups/2345951/items/22YZYHCJ
JTYP4Q4U 10.1016/j.ecoser.2016.07.012 https://www.zotero.org/groups/2345951/items/JTYP4Q4U
SF9SUNDV 10.1016/j.ecoser.2016.07.012 https://www.zotero.org/groups/2345951/items/SF9SUNDV
F3QWYADY 10.1016/j.ecoser.2016.08.001 https://www.zotero.org/groups/2345951/items/F3QWYADY
5VDYWGI5 10.1016/j.ecoser.2016.08.001 https://www.zotero.org/groups/2345951/items/5VDYWGI5
ECJMZAQA 10.1016/j.ecoser.2016.09.018 https://www.zotero.org/groups/2345951/items/ECJMZAQA
HGNNNXEF 10.1016/j.ecoser.2016.09.018 https://www.zotero.org/groups/2345951/items/HGNNNXEF
7B6YZH74 10.1016/j.ecoser.2016.10.006 https://www.zotero.org/groups/2345951/items/7B6YZH74
4NM89L86 10.1016/j.ecoser.2016.10.006 https://www.zotero.org/groups/2345951/items/4NM89L86
9SSTRISF 10.1016/j.ecoser.2016.11.007 https://www.zotero.org/groups/2345951/items/9SSTRISF
KYYMFWJJ 10.1016/j.ecoser.2016.11.007 https://www.zotero.org/groups/2345951/items/KYYMFWJJ
PCYQ3QH2 10.1016/j.ecoser.2016.11.007 https://www.zotero.org/groups/2345951/items/PCYQ3QH2
CQMYB3EK 10.1016/j.ecoser.2017.02.014 https://www.zotero.org/groups/2345951/items/CQMYB3EK
4X8HHY5E 10.1016/j.ecoser.2017.02.014 https://www.zotero.org/groups/2345951/items/4X8HHY5E
XUR5LD4M 10.1016/j.ecss.2008.01.003 https://www.zotero.org/groups/2345951/items/XUR5LD4M
FSHLJT2I 10.1016/j.ecss.2008.01.003 https://www.zotero.org/groups/2345951/items/FSHLJT2I
BLLKKH5P 10.1016/j.ecss.2011.09.002 https://www.zotero.org/groups/2345951/items/BLLKKH5P
HFVHK9CJ 10.1016/j.ecss.2011.09.002 https://www.zotero.org/groups/2345951/items/HFVHK9CJ
ZCP2PJE7 10.1016/j.ecss.2011.09.002 https://www.zotero.org/groups/2345951/items/ZCP2PJE7
GT4QHAHK 10.1016/j.ecss.2015.12.021 https://www.zotero.org/groups/2345951/items/GT4QHAHK
4CJCKVHA 10.1016/j.ecss.2015.12.021 https://www.zotero.org/groups/2345951/items/4CJCKVHA
DES63HGN 10.1016/j.enpol.2010.03.030 https://www.zotero.org/groups/2345951/items/DES63HGN
N68K7Z2C 10.1016/j.enpol.2010.03.030 https://www.zotero.org/groups/2345951/items/N68K7Z2C
67GKK9N2 10.1016/j.envpol.2012.11.010 https://www.zotero.org/groups/2345951/items/67GKK9N2
9W3BAUYV 10.1016/j.envpol.2012.11.010 https://www.zotero.org/groups/2345951/items/9W3BAUYV
ECS62QNL 10.1016/j.envpol.2013.02.031 https://www.zotero.org/groups/2345951/items/ECS62QNL
CZNRQUJ3 10.1016/j.envpol.2013.02.031 https://www.zotero.org/groups/2345951/items/CZNRQUJ3
NXSBLL88 10.1016/j.envpol.2013.03.012 https://www.zotero.org/groups/2345951/items/NXSBLL88
6JRRYGMK 10.1016/j.envpol.2013.03.012 https://www.zotero.org/groups/2345951/items/6JRRYGMK
DS34XAG6 10.1016/j.envsci.2012.01.006 https://www.zotero.org/groups/2345951/items/DS34XAG6
FN4TIHVT 10.1016/j.envsci.2012.01.006 https://www.zotero.org/groups/2345951/items/FN4TIHVT
D9GUXH6K 10.1016/j.envsci.2012.07.027 https://www.zotero.org/groups/2345951/items/D9GUXH6K
B3EG9G9J 10.1016/j.envsci.2012.07.027 https://www.zotero.org/groups/2345951/items/B3EG9G9J
ZBNTYJGR 10.1016/j.envsci.2012.10.006 https://www.zotero.org/groups/2345951/items/ZBNTYJGR
RPLIJW6I 10.1016/j.envsci.2012.10.006 https://www.zotero.org/groups/2345951/items/RPLIJW6I
4RIH6S4U 10.1016/j.envsci.2013.05.012 https://www.zotero.org/groups/2345951/items/4RIH6S4U
QV4WMKEA 10.1016/j.envsci.2013.05.012 https://www.zotero.org/groups/2345951/items/QV4WMKEA
S3E7J5U6 10.1016/j.envsci.2015.10.001 https://www.zotero.org/groups/2345951/items/S3E7J5U6
TGFXPKUX 10.1016/j.envsci.2015.10.001 https://www.zotero.org/groups/2345951/items/TGFXPKUX
83R3LTWM 10.1016/j.envsci.2015.10.001 https://www.zotero.org/groups/2345951/items/83R3LTWM
ISVWAPGT 10.1016/j.envsci.2015.12.003 https://www.zotero.org/groups/2345951/items/ISVWAPGT
5JV4J9TW 10.1016/j.envsci.2015.12.003 https://www.zotero.org/groups/2345951/items/5JV4J9TW
KUGF8245 10.1016/j.envsci.2016.01.007 https://www.zotero.org/groups/2345951/items/KUGF8245
QNDLYPPV 10.1016/j.envsci.2016.01.007 https://www.zotero.org/groups/2345951/items/QNDLYPPV
PFFQVGPB 10.1016/j.envsci.2016.01.007 https://www.zotero.org/groups/2345951/items/PFFQVGPB
E2UIEYSR 10.1016/j.envsci.2016.09.006 https://www.zotero.org/groups/2345951/items/E2UIEYSR
SB6TIUR9 10.1016/j.envsci.2016.09.006 https://www.zotero.org/groups/2345951/items/SB6TIUR9
ZZCKDYMC 10.1016/j.envsci.2017.04.017 https://www.zotero.org/groups/2345951/items/ZZCKDYMC
RVV572NB 10.1016/j.envsci.2017.04.017 https://www.zotero.org/groups/2345951/items/RVV572NB
XSA98Q3T 10.1016/j.envsci.2017.04.017 https://www.zotero.org/groups/2345951/items/XSA98Q3T
GILK7VMJ 10.1016/j.envsoft.2012.09.006 https://www.zotero.org/groups/2345951/items/GILK7VMJ
WIDYSLI6 10.1016/j.envsoft.2012.09.006 https://www.zotero.org/groups/2345951/items/WIDYSLI6
3F7Y3CMZ 10.1016/j.erss.2016.04.015 https://www.zotero.org/groups/2345951/items/3F7Y3CMZ
Q6UHE8DE 10.1016/j.erss.2016.04.015 https://www.zotero.org/groups/2345951/items/Q6UHE8DE
PJFCCVY9 10.1016/j.foreco.2007.04.049 https://www.zotero.org/groups/2345951/items/PJFCCVY9
K8N6FUJ3 10.1016/j.foreco.2007.04.049 https://www.zotero.org/groups/2345951/items/K8N6FUJ3
B65JRTXP 10.1016/j.foreco.2007.05.030 https://www.zotero.org/groups/2345951/items/B65JRTXP
U5KZ62ZQ 10.1016/j.foreco.2007.05.030 https://www.zotero.org/groups/2345951/items/U5KZ62ZQ
ZQ4QEJRQ 10.1016/j.foreco.2010.01.048 https://www.zotero.org/groups/2345951/items/ZQ4QEJRQ
9925MWQJ 10.1016/j.foreco.2010.01.048 https://www.zotero.org/groups/2345951/items/9925MWQJ
4BIKZC8B 10.1016/j.foreco.2011.08.040 https://www.zotero.org/groups/2345951/items/4BIKZC8B
TM74ISAR 10.1016/j.foreco.2011.08.040 https://www.zotero.org/groups/2345951/items/TM74ISAR
PMNE8QL5 10.1016/j.foreco.2011.08.040 https://www.zotero.org/groups/2345951/items/PMNE8QL5
8JVSZZIY 10.1016/j.foreco.2013.04.012 https://www.zotero.org/groups/2345951/items/8JVSZZIY
ITG6C5Z5 10.1016/j.foreco.2013.04.012 https://www.zotero.org/groups/2345951/items/ITG6C5Z5
TGF58XJ9 10.1016/j.foreco.2013.08.042 https://www.zotero.org/groups/2345951/items/TGF58XJ9
MPBKNG9W 10.1016/j.foreco.2013.08.042 https://www.zotero.org/groups/2345951/items/MPBKNG9W
DMITNJWQ 10.1016/j.foreco.2015.03.039 https://www.zotero.org/groups/2345951/items/DMITNJWQ
Z8492UL9 10.1016/j.foreco.2015.03.039 https://www.zotero.org/groups/2345951/items/Z8492UL9
JF28SLPN 10.1016/j.foreco.2015.03.039 https://www.zotero.org/groups/2345951/items/JF28SLPN
33W7CXLR 10.1016/j.foreco.2016.02.007 https://www.zotero.org/groups/2345951/items/33W7CXLR
W6AE4QM9 10.1016/j.foreco.2016.02.007 https://www.zotero.org/groups/2345951/items/W6AE4QM9
AEMM997F 10.1016/j.forpol.2004.04.005 https://www.zotero.org/groups/2345951/items/AEMM997F
HXCREFQ2 10.1016/j.forpol.2004.04.005 https://www.zotero.org/groups/2345951/items/HXCREFQ2
GSXLEP6W 10.1016/j.forpol.2010.06.003 https://www.zotero.org/groups/2345951/items/GSXLEP6W
ZHYP3GF6 10.1016/j.forpol.2010.06.003 https://www.zotero.org/groups/2345951/items/ZHYP3GF6
7UI8GSSX 10.1016/j.forpol.2015.07.002 https://www.zotero.org/groups/2345951/items/7UI8GSSX
LKW7QMEF 10.1016/j.forpol.2015.07.002 https://www.zotero.org/groups/2345951/items/LKW7QMEF
9S9ARZCA 10.1016/j.forpol.2015.12.002 https://www.zotero.org/groups/2345951/items/9S9ARZCA
4CCYE5H2 10.1016/j.forpol.2015.12.002 https://www.zotero.org/groups/2345951/items/4CCYE5H2
4B496ZQY 10.1016/j.forpol.2016.02.003 https://www.zotero.org/groups/2345951/items/4B496ZQY
B45EW5D9 10.1016/j.forpol.2016.02.003 https://www.zotero.org/groups/2345951/items/B45EW5D9
2UXN3B3L 10.1016/j.forpol.2016.10.008 https://www.zotero.org/groups/2345951/items/2UXN3B3L
W3N2Y89Z 10.1016/j.forpol.2016.10.008 https://www.zotero.org/groups/2345951/items/W3N2Y89Z
2N5XFD7K 10.1016/j.forpol.2017.03.013 https://www.zotero.org/groups/2345951/items/2N5XFD7K
474H2Z9G 10.1016/j.forpol.2017.03.013 https://www.zotero.org/groups/2345951/items/474H2Z9G
SPLTLGMT 10.1016/j.futures.2015.03.007 https://www.zotero.org/groups/2345951/items/SPLTLGMT
N6ZLBADG 10.1016/j.futures.2015.03.007 https://www.zotero.org/groups/2345951/items/N6ZLBADG
4ZJUXPCJ 10.1016/j.geoforum.2015.03.004 https://www.zotero.org/groups/2345951/items/4ZJUXPCJ
7CRKH5AB 10.1016/j.geoforum.2015.03.004 https://www.zotero.org/groups/2345951/items/7CRKH5AB
JAHVIHJ8 10.1016/j.gloenvcha.2011.09.013 https://www.zotero.org/groups/2345951/items/JAHVIHJ8
Q3MG6LTM 10.1016/j.gloenvcha.2011.09.013 https://www.zotero.org/groups/2345951/items/Q3MG6LTM
56EGP8NR 10.1016/j.gloenvcha.2012.04.001 https://www.zotero.org/groups/2345951/items/56EGP8NR
KBF95FBA 10.1016/j.gloenvcha.2012.04.001 https://www.zotero.org/groups/2345951/items/KBF95FBA
N7QTS2SH 10.1016/j.gloenvcha.2012.06.001 https://www.zotero.org/groups/2345951/items/N7QTS2SH
6BBS3Q3X 10.1016/j.gloenvcha.2012.06.001 https://www.zotero.org/groups/2345951/items/6BBS3Q3X
VUYLE3SJ 10.1016/j.gloenvcha.2013.05.001 https://www.zotero.org/groups/2345951/items/VUYLE3SJ
XS2GQ8QA 10.1016/j.gloenvcha.2013.05.001 https://www.zotero.org/groups/2345951/items/XS2GQ8QA
AIENHFU9 10.1016/j.gloenvcha.2013.11.022 https://www.zotero.org/groups/2345951/items/AIENHFU9
Y8PJB2EM 10.1016/j.gloenvcha.2013.11.022 https://www.zotero.org/groups/2345951/items/Y8PJB2EM
ZPTY5B7H 10.1016/j.gloenvcha.2014.04.002 https://www.zotero.org/groups/2345951/items/ZPTY5B7H
2VCGMEBQ 10.1016/j.gloenvcha.2014.04.002 https://www.zotero.org/groups/2345951/items/2VCGMEBQ
FXESXU2T 10.1016/j.gloenvcha.2014.04.008 https://www.zotero.org/groups/2345951/items/FXESXU2T
IVS52E8Q 10.1016/j.gloenvcha.2014.04.008 https://www.zotero.org/groups/2345951/items/IVS52E8Q
5WREW3T2 10.1016/j.gloenvcha.2014.07.005 https://www.zotero.org/groups/2345951/items/5WREW3T2
EJS4YFNH 10.1016/j.gloenvcha.2014.07.005 https://www.zotero.org/groups/2345951/items/EJS4YFNH
YK86K4BN 10.1016/j.gloenvcha.2015.04.013 https://www.zotero.org/groups/2345951/items/YK86K4BN
LFLYM5AG 10.1016/j.gloenvcha.2015.04.013 https://www.zotero.org/groups/2345951/items/LFLYM5AG
ZWE3WC37 10.1016/j.gloenvcha.2016.01.003 https://www.zotero.org/groups/2345951/items/ZWE3WC37
UQNF7F9S 10.1016/j.gloenvcha.2016.01.003 https://www.zotero.org/groups/2345951/items/UQNF7F9S
V6WG3PFL 10.1016/j.gloenvcha.2016.01.003 https://www.zotero.org/groups/2345951/items/V6WG3PFL
2H86G7XC 10.1016/j.gloenvcha.2016.09.005 https://www.zotero.org/groups/2345951/items/2H86G7XC
L9F9S32A 10.1016/j.gloenvcha.2016.09.005 https://www.zotero.org/groups/2345951/items/L9F9S32A
TNGTMCLR 10.1016/j.gloenvcha.2016.09.005 https://www.zotero.org/groups/2345951/items/TNGTMCLR
R5ZZLHE6 10.1016/j.gloplacha.2013.05.007 https://www.zotero.org/groups/2345951/items/R5ZZLHE6
CMCWGWI6 10.1016/j.gloplacha.2013.05.007 https://www.zotero.org/groups/2345951/items/CMCWGWI6
HPD7EY8Q 10.1016/j.gloplacha.2013.09.002 https://www.zotero.org/groups/2345951/items/HPD7EY8Q
KPH5DKNB 10.1016/j.gloplacha.2013.09.002 https://www.zotero.org/groups/2345951/items/KPH5DKNB
Z9RFAQBT 10.1016/j.gnr.2010.11.009 https://www.zotero.org/groups/2345951/items/Z9RFAQBT
L62RNPEQ 10.1016/j.gnr.2010.11.009 https://www.zotero.org/groups/2345951/items/L62RNPEQ
WNICG229 10.1016/j.indcrop.2016.02.035 https://www.zotero.org/groups/2345951/items/WNICG229
HMB4KFYF 10.1016/j.indcrop.2016.02.035 https://www.zotero.org/groups/2345951/items/HMB4KFYF
5VJFUVGK 10.1016/j.indcrop.2016.02.035 https://www.zotero.org/groups/2345951/items/5VJFUVGK
7CCA7B7X 10.1016/j.jaridenv.2008.11.013 https://www.zotero.org/groups/2345951/items/7CCA7B7X
3RNAT7LY 10.1016/j.jaridenv.2008.11.013 https://www.zotero.org/groups/2345951/items/3RNAT7LY
P73GDFU2 10.1016/j.jaridenv.2009.04.022 https://www.zotero.org/groups/2345951/items/P73GDFU2
MCTN82T7 10.1016/j.jaridenv.2009.04.022 https://www.zotero.org/groups/2345951/items/MCTN82T7
YDXZBSHA 10.1016/j.jaridenv.2009.04.022 https://www.zotero.org/groups/2345951/items/YDXZBSHA
NGQSBV7I 10.1016/j.jaridenv.2015.11.003 https://www.zotero.org/groups/2345951/items/NGQSBV7I
3ABIR8DD 10.1016/j.jaridenv.2015.11.003 https://www.zotero.org/groups/2345951/items/3ABIR8DD
2KGPT5TP 10.1016/j.jembe.2011.02.023 https://www.zotero.org/groups/2345951/items/2KGPT5TP
9AU7QN8R 10.1016/j.jembe.2011.02.023 https://www.zotero.org/groups/2345951/items/9AU7QN8R
PLWFAPC7 10.1016/j.jenvman.2009.07.005 https://www.zotero.org/groups/2345951/items/PLWFAPC7
P9QB7BFV 10.1016/j.jenvman.2009.07.005 https://www.zotero.org/groups/2345951/items/P9QB7BFV
ZGGHEY5R 10.1016/j.jenvman.2009.07.005 https://www.zotero.org/groups/2345951/items/ZGGHEY5R
PAUP8G3L 10.1016/j.jenvman.2009.07.005 https://www.zotero.org/groups/2345951/items/PAUP8G3L
PIHZK5MX 10.1016/j.jenvman.2011.06.028 https://www.zotero.org/groups/2345951/items/PIHZK5MX
GQ9E87AP 10.1016/j.jenvman.2011.06.028 https://www.zotero.org/groups/2345951/items/GQ9E87AP
KDD3E22H 10.1016/j.jep.2012.01.058 https://www.zotero.org/groups/2345951/items/KDD3E22H
GY3J86NP 10.1016/j.jep.2012.01.058 https://www.zotero.org/groups/2345951/items/GY3J86NP
DV79V96K 10.1016/j.jep.2015.07.042 https://www.zotero.org/groups/2345951/items/DV79V96K
FM5ZRH3P 10.1016/j.jep.2015.07.042 https://www.zotero.org/groups/2345951/items/FM5ZRH3P
4IY9SLQQ 10.1016/j.jglr.2009.11.007 https://www.zotero.org/groups/2345951/items/4IY9SLQQ
B6CD547M 10.1016/j.jglr.2009.11.007 https://www.zotero.org/groups/2345951/items/B6CD547M
QFGF93NU 10.1016/j.jmarsys.2009.12.014 https://www.zotero.org/groups/2345951/items/QFGF93NU
PMPTWIAZ 10.1016/j.jmarsys.2009.12.014 https://www.zotero.org/groups/2345951/items/PMPTWIAZ
XQBEXKVG 10.1016/j.jmarsys.2013.06.005 https://www.zotero.org/groups/2345951/items/XQBEXKVG
42EGXGRD 10.1016/j.jmarsys.2013.06.005 https://www.zotero.org/groups/2345951/items/42EGXGRD
BJFSPKTN 10.1016/j.jmarsys.2013.06.005 https://www.zotero.org/groups/2345951/items/BJFSPKTN
7WFCIYZP 10.1016/j.jnc.2005.02.006 https://www.zotero.org/groups/2345951/items/7WFCIYZP
J4QX74L2 10.1016/j.jnc.2005.02.006 https://www.zotero.org/groups/2345951/items/J4QX74L2
QZGU8T4K 10.1016/j.jnc.2008.09.007 https://www.zotero.org/groups/2345951/items/QZGU8T4K
8DGWXMIB 10.1016/j.jnc.2008.09.007 https://www.zotero.org/groups/2345951/items/8DGWXMIB
7UPMFZI8 10.1016/j.jnc.2015.03.007 https://www.zotero.org/groups/2345951/items/7UPMFZI8
92VEZV8T 10.1016/j.jnc.2015.03.007 https://www.zotero.org/groups/2345951/items/92VEZV8T
EWEAEDKX 10.1016/j.jnc.2015.11.002 https://www.zotero.org/groups/2345951/items/EWEAEDKX
LSZR5A9I 10.1016/j.jnc.2015.11.002 https://www.zotero.org/groups/2345951/items/LSZR5A9I
96SH8968 10.1016/j.jnc.2015.11.002 https://www.zotero.org/groups/2345951/items/96SH8968
PYF9T867 10.1016/j.jnc.2016.03.001 https://www.zotero.org/groups/2345951/items/PYF9T867
W9W2TIS4 10.1016/j.jnc.2016.03.001 https://www.zotero.org/groups/2345951/items/W9W2TIS4
2S8C9XGW 10.1016/j.landurbplan.2007.02.001 https://www.zotero.org/groups/2345951/items/2S8C9XGW
DYGQ26WT 10.1016/j.landurbplan.2007.02.001 https://www.zotero.org/groups/2345951/items/DYGQ26WT
MS8D3ST8 10.1016/j.landurbplan.2012.10.017 https://www.zotero.org/groups/2345951/items/MS8D3ST8
5ZBMN9US 10.1016/j.landurbplan.2012.10.017 https://www.zotero.org/groups/2345951/items/5ZBMN9US
WYTG7S5E 10.1016/j.landurbplan.2013.03.012 https://www.zotero.org/groups/2345951/items/WYTG7S5E
32F3QFFA 10.1016/j.landurbplan.2013.03.012 https://www.zotero.org/groups/2345951/items/32F3QFFA
L4TPAH6C 10.1016/j.landurbplan.2013.09.002 https://www.zotero.org/groups/2345951/items/L4TPAH6C
UY6ZHA52 10.1016/j.landurbplan.2013.09.002 https://www.zotero.org/groups/2345951/items/UY6ZHA52
93Q4VRBK 10.1016/j.landurbplan.2015.08.008 https://www.zotero.org/groups/2345951/items/93Q4VRBK
P2HVIM98 10.1016/j.landurbplan.2015.08.008 https://www.zotero.org/groups/2345951/items/P2HVIM98
QHNB8WVS 10.1016/j.landurbplan.2016.08.018 https://www.zotero.org/groups/2345951/items/QHNB8WVS
IBR9ZE7K 10.1016/j.landurbplan.2016.08.018 https://www.zotero.org/groups/2345951/items/IBR9ZE7K
KT6YC5JQ 10.1016/j.landusepol.2006.01.004 https://www.zotero.org/groups/2345951/items/KT6YC5JQ
DRJVLX5J 10.1016/j.landusepol.2006.01.004 https://www.zotero.org/groups/2345951/items/DRJVLX5J
HNVQYE7A 10.1016/j.landusepol.2008.08.011 https://www.zotero.org/groups/2345951/items/HNVQYE7A
VYZMBVNJ 10.1016/j.landusepol.2008.08.011 https://www.zotero.org/groups/2345951/items/VYZMBVNJ
RJ8U94CJ 10.1016/j.landusepol.2009.09.005 https://www.zotero.org/groups/2345951/items/RJ8U94CJ
22RIFDKD 10.1016/j.landusepol.2009.09.005 https://www.zotero.org/groups/2345951/items/22RIFDKD
Q4NKFVD2 10.1016/j.landusepol.2009.09.016 https://www.zotero.org/groups/2345951/items/Q4NKFVD2
JZ2I88I5 10.1016/j.landusepol.2009.09.016 https://www.zotero.org/groups/2345951/items/JZ2I88I5
A72UVNL3 10.1016/j.landusepol.2011.06.011 https://www.zotero.org/groups/2345951/items/A72UVNL3
HBGR6QD2 10.1016/j.landusepol.2011.06.011 https://www.zotero.org/groups/2345951/items/HBGR6QD2
BJJLFZ33 10.1016/j.landusepol.2012.06.011 https://www.zotero.org/groups/2345951/items/BJJLFZ33
PCGQ2NMR 10.1016/j.landusepol.2012.06.011 https://www.zotero.org/groups/2345951/items/PCGQ2NMR
2XT8JA5P 10.1016/j.landusepol.2012.12.012 https://www.zotero.org/groups/2345951/items/2XT8JA5P
B9VMG7TW 10.1016/j.landusepol.2012.12.012 https://www.zotero.org/groups/2345951/items/B9VMG7TW
V427XFYM 10.1016/j.landusepol.2012.12.012 https://www.zotero.org/groups/2345951/items/V427XFYM
JAQL6E8L 10.1016/j.landusepol.2012.12.012 https://www.zotero.org/groups/2345951/items/JAQL6E8L
8CKD6IY5 10.1016/j.landusepol.2012.12.012 https://www.zotero.org/groups/2345951/items/8CKD6IY5
IBAH4TRQ 10.1016/j.landusepol.2012.12.013 https://www.zotero.org/groups/2345951/items/IBAH4TRQ
YZ9U79AN 10.1016/j.landusepol.2012.12.013 https://www.zotero.org/groups/2345951/items/YZ9U79AN
WTEVAES9 10.1016/j.landusepol.2013.06.005 https://www.zotero.org/groups/2345951/items/WTEVAES9
ND85EKAS 10.1016/j.landusepol.2013.06.005 https://www.zotero.org/groups/2345951/items/ND85EKAS
L58W32R3 10.1016/j.landusepol.2013.07.003 https://www.zotero.org/groups/2345951/items/L58W32R3
DZZ3E4QP 10.1016/j.landusepol.2013.07.003 https://www.zotero.org/groups/2345951/items/DZZ3E4QP
NZBYUVUW 10.1016/j.landusepol.2014.01.012 https://www.zotero.org/groups/2345951/items/NZBYUVUW
LSARDS6Z 10.1016/j.landusepol.2014.01.012 https://www.zotero.org/groups/2345951/items/LSARDS6Z
L5TCP6RB 10.1016/j.landusepol.2014.12.012 https://www.zotero.org/groups/2345951/items/L5TCP6RB
Y4AGKQSV 10.1016/j.landusepol.2014.12.012 https://www.zotero.org/groups/2345951/items/Y4AGKQSV
EJXVP9RV 10.1016/j.landusepol.2015.04.027 https://www.zotero.org/groups/2345951/items/EJXVP9RV
KSDM949N 10.1016/j.landusepol.2015.04.027 https://www.zotero.org/groups/2345951/items/KSDM949N
R89H6MGE 10.1016/j.landusepol.2015.05.021 https://www.zotero.org/groups/2345951/items/R89H6MGE
FTCYU55M 10.1016/j.landusepol.2015.05.021 https://www.zotero.org/groups/2345951/items/FTCYU55M
BIBAE7UI 10.1016/j.landusepol.2015.07.003 https://www.zotero.org/groups/2345951/items/BIBAE7UI
IAR99RWK 10.1016/j.landusepol.2015.07.003 https://www.zotero.org/groups/2345951/items/IAR99RWK
NYQW37TK 10.1016/j.landusepol.2016.03.011 https://www.zotero.org/groups/2345951/items/NYQW37TK
BUAJ6AZ6 10.1016/j.landusepol.2016.03.011 https://www.zotero.org/groups/2345951/items/BUAJ6AZ6
4F2UYRBE 10.1016/j.landusepol.2016.04.040 https://www.zotero.org/groups/2345951/items/4F2UYRBE
MNDSDJ58 10.1016/j.landusepol.2016.04.040 https://www.zotero.org/groups/2345951/items/MNDSDJ58
ZGRI28VB 10.1016/j.landusepol.2016.10.022 https://www.zotero.org/groups/2345951/items/ZGRI28VB
WXLHHDTB 10.1016/j.landusepol.2016.10.022 https://www.zotero.org/groups/2345951/items/WXLHHDTB
9NNPHUFW 10.1016/j.landusepol.2016.11.006 https://www.zotero.org/groups/2345951/items/9NNPHUFW
KQY24HRC 10.1016/j.landusepol.2016.11.006 https://www.zotero.org/groups/2345951/items/KQY24HRC
I4V2ZYUF 10.1016/j.marpolbul.2006.12.003 https://www.zotero.org/groups/2345951/items/I4V2ZYUF
S59SKGGJ 10.1016/j.marpolbul.2006.12.003 https://www.zotero.org/groups/2345951/items/S59SKGGJ
MD2WNKMK 10.1016/j.marpolbul.2015.09.054 https://www.zotero.org/groups/2345951/items/MD2WNKMK
7IHDEWTB 10.1016/j.marpolbul.2015.09.054 https://www.zotero.org/groups/2345951/items/7IHDEWTB
CYUZ8B36 10.1016/j.micpath.2015.04.001 https://www.zotero.org/groups/2345951/items/CYUZ8B36
QRJLLYJ6 10.1016/j.micpath.2015.04.001 https://www.zotero.org/groups/2345951/items/QRJLLYJ6
ZCY748WW 10.1016/j.mrgentox.2010.10.009 https://www.zotero.org/groups/2345951/items/ZCY748WW
SBJ2LV5F 10.1016/j.mrgentox.2010.10.009 https://www.zotero.org/groups/2345951/items/SBJ2LV5F
9AUY9ID7 10.1016/j.nbt.2016.02.002 https://www.zotero.org/groups/2345951/items/9AUY9ID7
IZ29CID5 10.1016/j.nbt.2016.02.002 https://www.zotero.org/groups/2345951/items/IZ29CID5
AL2T3S2J 10.1016/j.ocecoaman.2015.07.032 https://www.zotero.org/groups/2345951/items/AL2T3S2J
VC4XBKQZ 10.1016/j.ocecoaman.2015.07.032 https://www.zotero.org/groups/2345951/items/VC4XBKQZ
YFM4P35U 10.1016/j.ocecoaman.2016.07.005 https://www.zotero.org/groups/2345951/items/YFM4P35U
HM28MVYU 10.1016/j.ocecoaman.2016.07.005 https://www.zotero.org/groups/2345951/items/HM28MVYU
QDCLIU5A 10.1016/j.phymed.2015.12.006 https://www.zotero.org/groups/2345951/items/QDCLIU5A
4AZD9XGD 10.1016/j.phymed.2015.12.006 https://www.zotero.org/groups/2345951/items/4AZD9XGD
CQRAUSB7 10.1016/j.phymed.2015.12.006 https://www.zotero.org/groups/2345951/items/CQRAUSB7
5BS3U646 10.1016/j.pocean.2011.02.003 https://www.zotero.org/groups/2345951/items/5BS3U646
LTK54TXQ 10.1016/j.pocean.2011.02.003 https://www.zotero.org/groups/2345951/items/LTK54TXQ
7YEAYZ6J 10.1016/j.pocean.2011.02.003 https://www.zotero.org/groups/2345951/items/7YEAYZ6J
ZUJUJQCF 10.1016/j.pocean.2012.11.002 https://www.zotero.org/groups/2345951/items/ZUJUJQCF
D4RC96PQ 10.1016/j.pocean.2012.11.002 https://www.zotero.org/groups/2345951/items/D4RC96PQ
WV983N6J 10.1016/j.rse.2012.05.019 https://www.zotero.org/groups/2345951/items/WV983N6J
WJFNL75K 10.1016/j.rse.2012.05.019 https://www.zotero.org/groups/2345951/items/WJFNL75K
3CMG48N8 10.1016/j.rse.2015.03.028 https://www.zotero.org/groups/2345951/items/3CMG48N8
KAJYVRN5 10.1016/j.rse.2015.03.028 https://www.zotero.org/groups/2345951/items/KAJYVRN5
EW5IFJUV 10.1016/j.scitotenv.2006.08.021 https://www.zotero.org/groups/2345951/items/EW5IFJUV
B322QPHN 10.1016/j.scitotenv.2006.08.021 https://www.zotero.org/groups/2345951/items/B322QPHN
AXRSAU6C 10.1016/j.scitotenv.2009.05.002 https://www.zotero.org/groups/2345951/items/AXRSAU6C
6MCY29RG 10.1016/j.scitotenv.2009.05.002 https://www.zotero.org/groups/2345951/items/6MCY29RG
QTUTKQUQ 10.1016/j.scitotenv.2009.05.002 https://www.zotero.org/groups/2345951/items/QTUTKQUQ
QQ65SA67 10.1016/j.scitotenv.2011.05.058 https://www.zotero.org/groups/2345951/items/QQ65SA67
WNR7Z7VS 10.1016/j.scitotenv.2011.05.058 https://www.zotero.org/groups/2345951/items/WNR7Z7VS
2YNEQSG4 10.1016/j.scitotenv.2012.04.035 https://www.zotero.org/groups/2345951/items/2YNEQSG4
9QWDPQ6K 10.1016/j.scitotenv.2012.04.035 https://www.zotero.org/groups/2345951/items/9QWDPQ6K
2SEQQHHX 10.1016/j.scitotenv.2013.04.025 https://www.zotero.org/groups/2345951/items/2SEQQHHX
5MBTV3BN 10.1016/j.scitotenv.2013.04.025 https://www.zotero.org/groups/2345951/items/5MBTV3BN
GT237KDF 10.1016/j.scitotenv.2013.08.061 https://www.zotero.org/groups/2345951/items/GT237KDF
TINIJ6ZG 10.1016/j.scitotenv.2013.08.061 https://www.zotero.org/groups/2345951/items/TINIJ6ZG
CC3BP3AB 10.1016/j.scitotenv.2014.01.030 https://www.zotero.org/groups/2345951/items/CC3BP3AB
WZ2JLLQJ 10.1016/j.scitotenv.2014.01.030 https://www.zotero.org/groups/2345951/items/WZ2JLLQJ
9X4PG6WQ 10.1016/j.scitotenv.2015.09.073 https://www.zotero.org/groups/2345951/items/9X4PG6WQ
25YJNYX5 10.1016/j.scitotenv.2015.09.073 https://www.zotero.org/groups/2345951/items/25YJNYX5
S5UZ6EDB 10.1016/j.scitotenv.2016.06.098 https://www.zotero.org/groups/2345951/items/S5UZ6EDB
DGZM5IRH 10.1016/j.scitotenv.2016.06.098 https://www.zotero.org/groups/2345951/items/DGZM5IRH
Z2RXE8QK 10.1016/j.scitotenv.2016.07.102 https://www.zotero.org/groups/2345951/items/Z2RXE8QK
XVVK5VBL 10.1016/j.scitotenv.2016.07.102 https://www.zotero.org/groups/2345951/items/XVVK5VBL
C9KNK8ME 10.1016/j.scitotenv.2016.10.147 https://www.zotero.org/groups/2345951/items/C9KNK8ME
2W5RUK5F 10.1016/j.scitotenv.2016.10.147 https://www.zotero.org/groups/2345951/items/2W5RUK5F
GDJNP48I 10.1016/j.scitotenv.2016.10.147 https://www.zotero.org/groups/2345951/items/GDJNP48I
QD4NBW3D 10.1016/j.scitotenv.2016.10.147 https://www.zotero.org/groups/2345951/items/QD4NBW3D
2KV99IEK 10.1016/j.scitotenv.2016.11.106 https://www.zotero.org/groups/2345951/items/2KV99IEK
UA4D82Q7 10.1016/j.scitotenv.2016.11.106 https://www.zotero.org/groups/2345951/items/UA4D82Q7
Q2CFA8CL 10.1016/j.swaqe.2015.01.003 https://www.zotero.org/groups/2345951/items/Q2CFA8CL
W72MCDQ7 10.1016/j.swaqe.2015.01.003 https://www.zotero.org/groups/2345951/items/W72MCDQ7
K8N7BAIY 10.1016/j.techfore.2011.01.004 https://www.zotero.org/groups/2345951/items/K8N7BAIY
8MHKW3L8 10.1016/j.techfore.2011.01.004 https://www.zotero.org/groups/2345951/items/8MHKW3L8
MN6G28G6 10.1016/j.techfore.2016.06.009 https://www.zotero.org/groups/2345951/items/MN6G28G6
3R9VG592 10.1016/j.techfore.2016.06.009 https://www.zotero.org/groups/2345951/items/3R9VG592
IRDMQ6X3 10.1016/j.tree.2011.05.009 https://www.zotero.org/groups/2345951/items/IRDMQ6X3
GCI6DTZZ 10.1016/j.tree.2011.05.009 https://www.zotero.org/groups/2345951/items/GCI6DTZZ
55RFJPGG 10.1016/j.tree.2011.08.006 https://www.zotero.org/groups/2345951/items/55RFJPGG
BUMU2VXR 10.1016/j.tree.2011.08.006 https://www.zotero.org/groups/2345951/items/BUMU2VXR
B7DDRMZN 10.1016/j.tree.2012.10.012 https://www.zotero.org/groups/2345951/items/B7DDRMZN
AG5M7PUU 10.1016/j.tree.2012.10.012 https://www.zotero.org/groups/2345951/items/AG5M7PUU
D9MRD9AY 10.1016/j.tree.2014.01.009 https://www.zotero.org/groups/2345951/items/D9MRD9AY
8C4XL9P8 10.1016/j.tree.2014.01.009 https://www.zotero.org/groups/2345951/items/8C4XL9P8
SYWRRFBZ 10.1016/j.tree.2015.06.011 https://www.zotero.org/groups/2345951/items/SYWRRFBZ
WJIY3D3B 10.1016/j.tree.2015.06.011 https://www.zotero.org/groups/2345951/items/WJIY3D3B
Y2ZGFL2L 10.1016/j.tree.2016.02.005 https://www.zotero.org/groups/2345951/items/Y2ZGFL2L
8MCQRI4I 10.1016/j.tree.2016.02.005 https://www.zotero.org/groups/2345951/items/8MCQRI4I
EEEKZS5T 10.1016/j.ufug.2015.07.008 https://www.zotero.org/groups/2345951/items/EEEKZS5T
GZFVSXW6 10.1016/j.ufug.2015.07.008 https://www.zotero.org/groups/2345951/items/GZFVSXW6
KZCMJPHC 10.1016/j.ufug.2016.08.007 https://www.zotero.org/groups/2345951/items/KZCMJPHC
S7JDK83X 10.1016/j.ufug.2016.08.007 https://www.zotero.org/groups/2345951/items/S7JDK83X
9PYRXGJB 10.1016/j.ufug.2016.11.002 https://www.zotero.org/groups/2345951/items/9PYRXGJB
ZBB4K3M5 10.1016/j.ufug.2016.11.002 https://www.zotero.org/groups/2345951/items/ZBB4K3M5
IBQ3Y9IQ 10.1016/j.ufug.2016.11.002 https://www.zotero.org/groups/2345951/items/IBQ3Y9IQ
N364RHRV 10.1016/j.watres.2014.11.036 https://www.zotero.org/groups/2345951/items/N364RHRV
B87LRYNK 10.1016/j.watres.2014.11.036 https://www.zotero.org/groups/2345951/items/B87LRYNK
X9USSER6 10.1016/j.worlddev.2015.11.007 https://www.zotero.org/groups/2345951/items/X9USSER6
TM9RAHCZ 10.1016/j.worlddev.2015.11.007 https://www.zotero.org/groups/2345951/items/TM9RAHCZ
9QWIGXM9 10.1017/CBO9781107415324.004 https://www.zotero.org/groups/2345951/items/9QWIGXM9
AJZF4B79 10.1017/CBO9781107415324.004 https://www.zotero.org/groups/2345951/items/AJZF4B79
E3GHAJKL 10.1017/CBO9781107415324.004 https://www.zotero.org/groups/2345951/items/E3GHAJKL
SPB9NW2U 10.1017/CBO9781107415324.004 https://www.zotero.org/groups/2345951/items/SPB9NW2U
66BM4N9B 10.1017/CBO9781107415324.004 https://www.zotero.org/groups/2345951/items/66BM4N9B
MTT49VSS 10.1017/CBO9781107415324.004 https://www.zotero.org/groups/2345951/items/MTT49VSS
PP9KXECF 10.1017/S0376892914000125 https://www.zotero.org/groups/2345951/items/PP9KXECF
PCLQ9M8E 10.1017/S0376892914000125 https://www.zotero.org/groups/2345951/items/PCLQ9M8E
M5WR3H9W 10.1017/S1464793105006950 https://www.zotero.org/groups/2345951/items/M5WR3H9W
4CDX2DTE 10.1017/S1464793105006950 https://www.zotero.org/groups/2345951/items/4CDX2DTE
KJ76GIW6 10.1017/S1464793105006950 https://www.zotero.org/groups/2345951/items/KJ76GIW6
W5PFRXAH 10.1017/s0030605310001547 https://www.zotero.org/groups/2345951/items/W5PFRXAH
Y7SGAXHA 10.1017/s0030605310001547 https://www.zotero.org/groups/2345951/items/Y7SGAXHA
MFDLVV4C 10.1017/s0031182012000200 https://www.zotero.org/groups/2345951/items/MFDLVV4C
YTJKFQQA 10.1017/s0031182012000200 https://www.zotero.org/groups/2345951/items/YTJKFQQA
7W6GCXAP 10.1025/bio.2009.59.3.7 https://www.zotero.org/groups/2345951/items/7W6GCXAP
LZSKNGTH 10.1025/bio.2009.59.3.7 https://www.zotero.org/groups/2345951/items/LZSKNGTH
YUW96SZC 10.1025/bio.2009.59.3.7 https://www.zotero.org/groups/2345951/items/YUW96SZC
W7RHS2FA 10.1029/2002GL016785 https://www.zotero.org/groups/2345951/items/W7RHS2FA
XJZQ8F2R 10.1029/2002GL016785 https://www.zotero.org/groups/2345951/items/XJZQ8F2R
LA4SWDBH 10.1029/2005JD005965 https://www.zotero.org/groups/2345951/items/LA4SWDBH
5G58E8J7 10.1029/2005JD005965 https://www.zotero.org/groups/2345951/items/5G58E8J7
XM3HTISK 10.1029/2008GB003212 https://www.zotero.org/groups/2345951/items/XM3HTISK
AYDHPG4P 10.1029/2008GB003212 https://www.zotero.org/groups/2345951/items/AYDHPG4P
RURE65T3 10.1029/2008GB003212 https://www.zotero.org/groups/2345951/items/RURE65T3
98EGF456 10.1029/2008GB003212 https://www.zotero.org/groups/2345951/items/98EGF456
TQZN2E37 10.1038/35016500 https://www.zotero.org/groups/2345951/items/TQZN2E37
LMCDI7Z4 10.1038/35016500 https://www.zotero.org/groups/2345951/items/LMCDI7Z4
Y9T7GH6Z 10.1038/387253a0 https://www.zotero.org/groups/2345951/items/Y9T7GH6Z
FKHDCVPD 10.1038/387253a0 https://www.zotero.org/groups/2345951/items/FKHDCVPD
M5HADCXQ 10.1038/461472a https://www.zotero.org/groups/2345951/items/M5HADCXQ
VQZWEN4G 10.1038/461472a https://www.zotero.org/groups/2345951/items/VQZWEN4G
WYW4TFHI 10.1038/495305a https://www.zotero.org/groups/2345951/items/WYW4TFHI
HCBSAT92 10.1038/495305a https://www.zotero.org/groups/2345951/items/HCBSAT92
KR7K48QK 10.1038/495305a https://www.zotero.org/groups/2345951/items/KR7K48QK
G4CARME9 10.1038/536143a https://www.zotero.org/groups/2345951/items/G4CARME9
272ECM74 10.1038/536143a https://www.zotero.org/groups/2345951/items/272ECM74
XD966GEI 10.1038/nature https://www.zotero.org/groups/2345951/items/XD966GEI
KC2ELBRW 10.1038/nature https://www.zotero.org/groups/2345951/items/KC2ELBRW
JRESPXS3 10.1038/nature02175.1. https://www.zotero.org/groups/2345951/items/JRESPXS3
9I6KHVX3 10.1038/nature02175.1. https://www.zotero.org/groups/2345951/items/9I6KHVX3
AIK597NK 10.1038/nature02808 https://www.zotero.org/groups/2345951/items/AIK597NK
SCH4JG5A 10.1038/nature02808 https://www.zotero.org/groups/2345951/items/SCH4JG5A
E54URLAL 10.1038/nature08823 https://www.zotero.org/groups/2345951/items/E54URLAL
U7KGMSGH 10.1038/nature08823 https://www.zotero.org/groups/2345951/items/U7KGMSGH
W2PYL49W 10.1038/nature09549 https://www.zotero.org/groups/2345951/items/W2PYL49W
3ANW7KKG 10.1038/nature09549 https://www.zotero.org/groups/2345951/items/3ANW7KKG
6HSX72TK 10.1038/nature09549 https://www.zotero.org/groups/2345951/items/6HSX72TK
AWQN83I5 10.1038/nature11018 https://www.zotero.org/groups/2345951/items/AWQN83I5
NJA78JXZ 10.1038/nature11018 https://www.zotero.org/groups/2345951/items/NJA78JXZ
V34JY8SL 10.1038/nature14324 https://www.zotero.org/groups/2345951/items/V34JY8SL
US6E5UIS 10.1038/nature14324 https://www.zotero.org/groups/2345951/items/US6E5UIS
Y5QK2WJV 10.1038/nature14324 https://www.zotero.org/groups/2345951/items/Y5QK2WJV
975KQ6D9 10.1038/nature15743 https://www.zotero.org/groups/2345951/items/975KQ6D9
TB43WE2K 10.1038/nature15743 https://www.zotero.org/groups/2345951/items/TB43WE2K
BWBAZUR2 10.1038/nature16986 https://www.zotero.org/groups/2345951/items/BWBAZUR2
SVYLC2MR 10.1038/nature16986 https://www.zotero.org/groups/2345951/items/SVYLC2MR
CDRIDYIM 10.1038/nclimate1347 https://www.zotero.org/groups/2345951/items/CDRIDYIM
GWT3YH45 10.1038/nclimate1347 https://www.zotero.org/groups/2345951/items/GWT3YH45
VRE9AKHI 10.1038/nclimate1514 https://www.zotero.org/groups/2345951/items/VRE9AKHI
46JETZMA 10.1038/nclimate1514 https://www.zotero.org/groups/2345951/items/46JETZMA
R3DSCK6N 10.1038/nclimate1514 https://www.zotero.org/groups/2345951/items/R3DSCK6N
TKY5RZAN 10.1038/nclimate1592 https://www.zotero.org/groups/2345951/items/TKY5RZAN
Y8SAAPQU 10.1038/nclimate1592 https://www.zotero.org/groups/2345951/items/Y8SAAPQU
SADX7MGM 10.1038/nclimate1687 https://www.zotero.org/groups/2345951/items/SADX7MGM
9L5MFIGQ 10.1038/nclimate1687 https://www.zotero.org/groups/2345951/items/9L5MFIGQ
5CIY3ZFK 10.1038/nclimate1753 https://www.zotero.org/groups/2345951/items/5CIY3ZFK
2WD5Z2L4 10.1038/nclimate1753 https://www.zotero.org/groups/2345951/items/2WD5Z2L4
Q2KJ5B9W 10.1038/nclimate1789 https://www.zotero.org/groups/2345951/items/Q2KJ5B9W
EIRI5BDW 10.1038/nclimate1789 https://www.zotero.org/groups/2345951/items/EIRI5BDW
ANF93XEM 10.1038/nclimate1789 https://www.zotero.org/groups/2345951/items/ANF93XEM
EPB263TV 10.1038/nclimate2647 https://www.zotero.org/groups/2345951/items/EPB263TV
HDXW7QIX 10.1038/nclimate2647 https://www.zotero.org/groups/2345951/items/HDXW7QIX
NSWAECXV 10.1038/nclimate2650 https://www.zotero.org/groups/2345951/items/NSWAECXV
5N5TZEGT 10.1038/nclimate2650 https://www.zotero.org/groups/2345951/items/5N5TZEGT
RYTV5FHP 10.1038/nclimate3039 https://www.zotero.org/groups/2345951/items/RYTV5FHP
Q49AQ82W 10.1038/nclimate3039 https://www.zotero.org/groups/2345951/items/Q49AQ82W
8C5D4EWN 10.1038/nclimate3039 https://www.zotero.org/groups/2345951/items/8C5D4EWN
Q89BK649 10.1038/nclimate3039 https://www.zotero.org/groups/2345951/items/Q89BK649
DHR8BRAS 10.1038/ncomms11109 https://www.zotero.org/groups/2345951/items/DHR8BRAS
XQTAFGL6 10.1038/ncomms11109 https://www.zotero.org/groups/2345951/items/XQTAFGL6
4Z6YYZN2 10.1038/ncomms12485 https://www.zotero.org/groups/2345951/items/4Z6YYZN2
CAJH6WIV 10.1038/ncomms12485 https://www.zotero.org/groups/2345951/items/CAJH6WIV
GJRR9ZSW 10.1038/ncomms13603 https://www.zotero.org/groups/2345951/items/GJRR9ZSW
PSZK8K6W 10.1038/ncomms13603 https://www.zotero.org/groups/2345951/items/PSZK8K6W
HMRY377N 10.1038/ncomms4118 https://www.zotero.org/groups/2345951/items/HMRY377N
ALTTJHLV 10.1038/ncomms4118 https://www.zotero.org/groups/2345951/items/ALTTJHLV
GWQL77SV 10.1038/sdata.2016.67 https://www.zotero.org/groups/2345951/items/GWQL77SV
Y8D3ZLZY 10.1038/sdata.2016.67 https://www.zotero.org/groups/2345951/items/Y8D3ZLZY
SLXU7QP9 10.1038/sdata.2016.7 https://www.zotero.org/groups/2345951/items/SLXU7QP9
3HZVJYNE 10.1038/sdata.2016.7 https://www.zotero.org/groups/2345951/items/3HZVJYNE
T4KYXKVQ 10.1038/sdata.2016.7 https://www.zotero.org/groups/2345951/items/T4KYXKVQ
XDPRDTZ8 10.1038/sdata.2016.7 https://www.zotero.org/groups/2345951/items/XDPRDTZ8
ZZNR2NVW 10.1038/sdata.2016.7 https://www.zotero.org/groups/2345951/items/ZZNR2NVW
69A399LG 10.1038/sdata.2016.7 https://www.zotero.org/groups/2345951/items/69A399LG
R788Z6XQ 10.1038/sdata.2016.7 https://www.zotero.org/groups/2345951/items/R788Z6XQ
6693654M 10.1038/srep15395 https://www.zotero.org/groups/2345951/items/6693654M
LXAGA3EA 10.1038/srep15395 https://www.zotero.org/groups/2345951/items/LXAGA3EA
IYHJWVAE 10.1038/srep23198 https://www.zotero.org/groups/2345951/items/IYHJWVAE
ESGQCEBJ 10.1038/srep23198 https://www.zotero.org/groups/2345951/items/ESGQCEBJ
CU7REZUN 10.1038/srep33708 https://www.zotero.org/groups/2345951/items/CU7REZUN
DC6QMHY7 10.1038/srep33708 https://www.zotero.org/groups/2345951/items/DC6QMHY7
9DRJHYYT 10.1046/j.1365-2486.2003.00684.x https://www.zotero.org/groups/2345951/items/9DRJHYYT
7NUABBSC 10.1046/j.1365-2486.2003.00684.x https://www.zotero.org/groups/2345951/items/7NUABBSC
73ABN9YU 10.1046/j.1365-2664.2002.00695.x https://www.zotero.org/groups/2345951/items/73ABN9YU
GUKLX8WQ 10.1046/j.1365-2664.2002.00695.x https://www.zotero.org/groups/2345951/items/GUKLX8WQ
2H7M53N3 10.1046/j.1365-2907.2001.00083.x https://www.zotero.org/groups/2345951/items/2H7M53N3
XFS7ZJWB 10.1046/j.1365-2907.2001.00083.x https://www.zotero.org/groups/2345951/items/XFS7ZJWB
V3LBK8II 10.1046/j.1467-2979.2002.00102.x https://www.zotero.org/groups/2345951/items/V3LBK8II
3KX6AA3U 10.1046/j.1467-2979.2002.00102.x https://www.zotero.org/groups/2345951/items/3KX6AA3U
MR3LEE3V 10.1051/agro https://www.zotero.org/groups/2345951/items/MR3LEE3V
TXFTUR3F 10.1051/agro https://www.zotero.org/groups/2345951/items/TXFTUR3F
JP3NGH3J 10.1051/agro https://www.zotero.org/groups/2345951/items/JP3NGH3J
C88WSFVL 10.1051/agro/2010028 https://www.zotero.org/groups/2345951/items/C88WSFVL
QH6TMIWP 10.1051/agro/2010028 https://www.zotero.org/groups/2345951/items/QH6TMIWP
5WHWTR54 10.1057/ces.2010.24 https://www.zotero.org/groups/2345951/items/5WHWTR54
2S9NWWJU 10.1057/ces.2010.24 https://www.zotero.org/groups/2345951/items/2S9NWWJU
2P6AMMG3 10.1068/c09196 https://www.zotero.org/groups/2345951/items/2P6AMMG3
89SR35RI 10.1068/c09196 https://www.zotero.org/groups/2345951/items/89SR35RI
CAI57BLN 10.1071/RJ12092 https://www.zotero.org/groups/2345951/items/CAI57BLN
V5GZUY2K 10.1071/RJ12092 https://www.zotero.org/groups/2345951/items/V5GZUY2K
NR4R6ZD2 10.1071/WR11077 https://www.zotero.org/groups/2345951/items/NR4R6ZD2
RZEKVQ67 10.1071/WR11077 https://www.zotero.org/groups/2345951/items/RZEKVQ67
AMIVG7VK 10.1071/nb08044 https://www.zotero.org/groups/2345951/items/AMIVG7VK
GWR2KSG4 10.1071/nb08044 https://www.zotero.org/groups/2345951/items/GWR2KSG4
JQ6GDFT2 10.1071/wf07151 https://www.zotero.org/groups/2345951/items/JQ6GDFT2
G2THQKIY 10.1071/wf07151 https://www.zotero.org/groups/2345951/items/G2THQKIY
L9KDSMDT 10.1073/pnas.0509060102 https://www.zotero.org/groups/2345951/items/L9KDSMDT
DCIBETF5 10.1073/pnas.0509060102 https://www.zotero.org/groups/2345951/items/DCIBETF5
YKRI8BBA 10.1073/pnas.0706559105 https://www.zotero.org/groups/2345951/items/YKRI8BBA
QTELQDIC 10.1073/pnas.0706559105 https://www.zotero.org/groups/2345951/items/QTELQDIC
VBBSFKE9 10.1073/pnas.0808772106 https://www.zotero.org/groups/2345951/items/VBBSFKE9
2ZLXCUMT 10.1073/pnas.0808772106 https://www.zotero.org/groups/2345951/items/2ZLXCUMT
HTJ55Z8G 10.1073/pnas.0808772106 https://www.zotero.org/groups/2345951/items/HTJ55Z8G
WLVLMNMX 10.1073/pnas.0902080106 https://www.zotero.org/groups/2345951/items/WLVLMNMX
XE3UF6VW 10.1073/pnas.0902080106 https://www.zotero.org/groups/2345951/items/XE3UF6VW
EFDM64IZ 10.1073/pnas.0905620106 https://www.zotero.org/groups/2345951/items/EFDM64IZ
IPWMY7J4 10.1073/pnas.0905620106 https://www.zotero.org/groups/2345951/items/IPWMY7J4
87CWIAEQ 10.1073/pnas.0913855107 https://www.zotero.org/groups/2345951/items/87CWIAEQ
LUG85C28 10.1073/pnas.0913855107 https://www.zotero.org/groups/2345951/items/LUG85C28
LXMSXCAF 10.1073/pnas.1002314107 https://www.zotero.org/groups/2345951/items/LXMSXCAF
YKIXAUXI 10.1073/pnas.1002314107 https://www.zotero.org/groups/2345951/items/YKIXAUXI
76DJKTUQ 10.1073/pnas.1018989108 https://www.zotero.org/groups/2345951/items/76DJKTUQ
FQEAB826 10.1073/pnas.1018989108 https://www.zotero.org/groups/2345951/items/FQEAB826
VWC4UPW2 10.1073/pnas.1100480108 https://www.zotero.org/groups/2345951/items/VWC4UPW2
UWZSMXNL 10.1073/pnas.1100480108 https://www.zotero.org/groups/2345951/items/UWZSMXNL
DMP5VZWS 10.1073/pnas.1201040109 https://www.zotero.org/groups/2345951/items/DMP5VZWS
M6GI27ED 10.1073/pnas.1201040109 https://www.zotero.org/groups/2345951/items/M6GI27ED
YW85SEYF 10.1073/pnas.1205624109 https://www.zotero.org/groups/2345951/items/YW85SEYF
ENKT6V3F 10.1073/pnas.1205624109 https://www.zotero.org/groups/2345951/items/ENKT6V3F
24ME7JWH 10.1073/pnas.1222477110 https://www.zotero.org/groups/2345951/items/24ME7JWH
7CXIIT3J 10.1073/pnas.1222477110 https://www.zotero.org/groups/2345951/items/7CXIIT3J
4J27EWBL 10.1073/pnas.1231335100 https://www.zotero.org/groups/2345951/items/4J27EWBL
N8KXFMXR 10.1073/pnas.1231335100 https://www.zotero.org/groups/2345951/items/N8KXFMXR
6TCN9V76 10.1073/pnas.1312213111 https://www.zotero.org/groups/2345951/items/6TCN9V76
E8YEXLLF 10.1073/pnas.1312213111 https://www.zotero.org/groups/2345951/items/E8YEXLLF
JSFDT3A5 10.1073/pnas.1321082111 https://www.zotero.org/groups/2345951/items/JSFDT3A5
CS7TQ2XI 10.1073/pnas.1321082111 https://www.zotero.org/groups/2345951/items/CS7TQ2XI
KBKCCTKR 10.1073/pnas.1321082111 https://www.zotero.org/groups/2345951/items/KBKCCTKR
ZMNMAW82 10.1073/pnas.1414900112 https://www.zotero.org/groups/2345951/items/ZMNMAW82
99G9MPQW 10.1073/pnas.1414900112 https://www.zotero.org/groups/2345951/items/99G9MPQW
IASTI3QI 10.1073/pnas.1502452113 https://www.zotero.org/groups/2345951/items/IASTI3QI
UJGFEELP 10.1073/pnas.1502452113 https://www.zotero.org/groups/2345951/items/UJGFEELP
33NSUEJZ 10.1073/pnas.1517903113 https://www.zotero.org/groups/2345951/items/33NSUEJZ
Z4ZF2QW5 10.1073/pnas.1517903113 https://www.zotero.org/groups/2345951/items/Z4ZF2QW5
MU8UQSJE 10.1080/00139157.2014.861673 https://www.zotero.org/groups/2345951/items/MU8UQSJE
S2LSL6E2 10.1080/00139157.2014.861673 https://www.zotero.org/groups/2345951/items/S2LSL6E2
6THCY95S 10.1080/00139157.2014.861673 https://www.zotero.org/groups/2345951/items/6THCY95S
PTKZEQVG 10.1080/00139157.2014.861673 https://www.zotero.org/groups/2345951/items/PTKZEQVG
PANTQVRA 10.1080/01426397.2012.677022 https://www.zotero.org/groups/2345951/items/PANTQVRA
26F9XLTK 10.1080/01426397.2012.677022 https://www.zotero.org/groups/2345951/items/26F9XLTK
6ELQEU2K 10.1080/02255189.2015.1027673 https://www.zotero.org/groups/2345951/items/6ELQEU2K
L2XEYB76 10.1080/02255189.2015.1027673 https://www.zotero.org/groups/2345951/items/L2XEYB76
5NPZBEAR 10.1080/02626667.2011.630317 https://www.zotero.org/groups/2345951/items/5NPZBEAR
4NXXDB5W 10.1080/02626667.2011.630317 https://www.zotero.org/groups/2345951/items/4NXXDB5W
5J9TJG58 10.1080/02626667.2011.631013 https://www.zotero.org/groups/2345951/items/5J9TJG58
S46D4MJ5 10.1080/02626667.2011.631013 https://www.zotero.org/groups/2345951/items/S46D4MJ5
TZWQ3FSJ 10.1080/02626667.2011.631188 https://www.zotero.org/groups/2345951/items/TZWQ3FSJ
L6PABVQ8 10.1080/02626667.2011.631188 https://www.zotero.org/groups/2345951/items/L6PABVQ8
LJX9ES4U 10.1080/02626667.2011.631188 https://www.zotero.org/groups/2345951/items/LJX9ES4U
DWZENH9N 10.1080/02626667.2014.897406 https://www.zotero.org/groups/2345951/items/DWZENH9N
VGJZ8W8H 10.1080/02626667.2014.897406 https://www.zotero.org/groups/2345951/items/VGJZ8W8H
N2ZQ7EQ5 10.1080/02827580701804179 https://www.zotero.org/groups/2345951/items/N2ZQ7EQ5
SRE7FSKK 10.1080/02827580701804179 https://www.zotero.org/groups/2345951/items/SRE7FSKK
64D5I66K 10.1080/02827580903418224 https://www.zotero.org/groups/2345951/items/64D5I66K
PWA8MCK2 10.1080/02827580903418224 https://www.zotero.org/groups/2345951/items/PWA8MCK2
NWUYPMM7 10.1080/02827581.2003.9728293 https://www.zotero.org/groups/2345951/items/NWUYPMM7
SQBEGQXY 10.1080/02827581.2003.9728293 https://www.zotero.org/groups/2345951/items/SQBEGQXY
RFYJJLDE 10.1080/02827581.2015.1089930 https://www.zotero.org/groups/2345951/items/RFYJJLDE
LCLS3KT9 10.1080/02827581.2015.1089930 https://www.zotero.org/groups/2345951/items/LCLS3KT9
FJW5EI9D 10.1080/02827581.2016.1164888 https://www.zotero.org/groups/2345951/items/FJW5EI9D
NK78PKEM 10.1080/02827581.2016.1164888 https://www.zotero.org/groups/2345951/items/NK78PKEM
B4DIW93K 10.1080/02827581.2016.1164888 https://www.zotero.org/groups/2345951/items/B4DIW93K
UTWRC8ZB 10.1080/03066150.2011.559010 https://www.zotero.org/groups/2345951/items/UTWRC8ZB
E6JH5JEC 10.1080/03066150.2011.559010 https://www.zotero.org/groups/2345951/items/E6JH5JEC
9WNTIC9G 10.1080/03066150.2012.675574 https://www.zotero.org/groups/2345951/items/9WNTIC9G
IYZWJZPD 10.1080/03066150.2012.675574 https://www.zotero.org/groups/2345951/items/IYZWJZPD
KK7SPJ7G 10.1080/03949370.2014.897651 https://www.zotero.org/groups/2345951/items/KK7SPJ7G
A62TW6JX 10.1080/03949370.2014.897651 https://www.zotero.org/groups/2345951/items/A62TW6JX
MB9WXN9J 10.1080/03949370.2014.897651 https://www.zotero.org/groups/2345951/items/MB9WXN9J
GM5S9VN7 10.1080/03949370.2014.916352 https://www.zotero.org/groups/2345951/items/GM5S9VN7
KE5IZPAI 10.1080/03949370.2014.916352 https://www.zotero.org/groups/2345951/items/KE5IZPAI
TRBSGI9R 10.1080/03949370.2014.986768 https://www.zotero.org/groups/2345951/items/TRBSGI9R
GIPT8P3Q 10.1080/03949370.2014.986768 https://www.zotero.org/groups/2345951/items/GIPT8P3Q
NSP32ID7 10.1080/08927936.2015.11435399 https://www.zotero.org/groups/2345951/items/NSP32ID7
WG2Q59PA 10.1080/08927936.2015.11435399 https://www.zotero.org/groups/2345951/items/WG2Q59PA
JCZN2H6T 10.1080/09637480701566495 https://www.zotero.org/groups/2345951/items/JCZN2H6T
RHB4DECR 10.1080/09637480701566495 https://www.zotero.org/groups/2345951/items/RHB4DECR
J9SFKV5M 10.1080/09640568.2012.689615 https://www.zotero.org/groups/2345951/items/J9SFKV5M
5ISTWWGK 10.1080/09640568.2012.689615 https://www.zotero.org/groups/2345951/items/5ISTWWGK
75ER4ZS5 10.1080/09669582.2010.524701 https://www.zotero.org/groups/2345951/items/75ER4ZS5
QBX33LJQ 10.1080/09669582.2010.524701 https://www.zotero.org/groups/2345951/items/QBX33LJQ
THDDR4XX 10.1080/10643389.2011.604248 https://www.zotero.org/groups/2345951/items/THDDR4XX
C8W6ATAX 10.1080/10643389.2011.604248 https://www.zotero.org/groups/2345951/items/C8W6ATAX
2NZ7LEG8 10.1080/10871209.2011.535240 https://www.zotero.org/groups/2345951/items/2NZ7LEG8
5NYYQSZY 10.1080/10871209.2011.535240 https://www.zotero.org/groups/2345951/items/5NYYQSZY
M6Q6E47Z 10.1080/13501763.2013.834547 https://www.zotero.org/groups/2345951/items/M6Q6E47Z
LNQH27LT 10.1080/13501763.2013.834547 https://www.zotero.org/groups/2345951/items/LNQH27LT
4LJMXAMR 10.1080/13504622.2010.505442 https://www.zotero.org/groups/2345951/items/4LJMXAMR
JUMYWWT9 10.1080/13504622.2010.505442 https://www.zotero.org/groups/2345951/items/JUMYWWT9
BRFUELEB 10.1080/15387216.2017.1295876 https://www.zotero.org/groups/2345951/items/BRFUELEB
4QX7YJ4J 10.1080/15387216.2017.1295876 https://www.zotero.org/groups/2345951/items/4QX7YJ4J
BIG9W7XJ 10.1080/17445647.2015.1071720 https://www.zotero.org/groups/2345951/items/BIG9W7XJ
ZC8AVD2D 10.1080/17445647.2015.1071720 https://www.zotero.org/groups/2345951/items/ZC8AVD2D
JLQJNB37 10.1080/1747423X.2013.786150 https://www.zotero.org/groups/2345951/items/JLQJNB37
NI5LL8P9 10.1080/1747423X.2013.786150 https://www.zotero.org/groups/2345951/items/NI5LL8P9
LQ5DL7HI 10.1080/1747423X.2015.1096423 https://www.zotero.org/groups/2345951/items/LQ5DL7HI
E8XY433V 10.1080/1747423X.2015.1096423 https://www.zotero.org/groups/2345951/items/E8XY433V
DTFPXQ2A 10.1080/21513732.2012.695229 https://www.zotero.org/groups/2345951/items/DTFPXQ2A
BXNFA756 10.1080/21513732.2012.695229 https://www.zotero.org/groups/2345951/items/BXNFA756
99XEWGYN 10.1080/21513732.2012.751936 https://www.zotero.org/groups/2345951/items/99XEWGYN
TP47SHVJ 10.1080/21513732.2012.751936 https://www.zotero.org/groups/2345951/items/TP47SHVJ
LJ5RY3KZ 10.1080/21553769.2015.1089949 https://www.zotero.org/groups/2345951/items/LJ5RY3KZ
YAAYLFJI 10.1080/21553769.2015.1089949 https://www.zotero.org/groups/2345951/items/YAAYLFJI
WNCUHI6I 10.1088/1748-9326/10/5/054012 https://www.zotero.org/groups/2345951/items/WNCUHI6I
4KM3ZNTZ 10.1088/1748-9326/10/5/054012 https://www.zotero.org/groups/2345951/items/4KM3ZNTZ
M5VU9DAR 10.1088/1748-9326/11/6/064020 https://www.zotero.org/groups/2345951/items/M5VU9DAR
K4NZGRYQ 10.1088/1748-9326/11/6/064020 https://www.zotero.org/groups/2345951/items/K4NZGRYQ
BAQ86UIH 10.1088/1748-9326/4/4/045024 https://www.zotero.org/groups/2345951/items/BAQ86UIH
ETXA3HDJ 10.1088/1748-9326/4/4/045024 https://www.zotero.org/groups/2345951/items/ETXA3HDJ
D256CA6B 10.1088/1748-9326/7/2/024021 https://www.zotero.org/groups/2345951/items/D256CA6B
F7FCI7AC 10.1088/1748-9326/7/2/024021 https://www.zotero.org/groups/2345951/items/F7FCI7AC
27XXQFUF 10.1088/1748-9326/7/2/024021 https://www.zotero.org/groups/2345951/items/27XXQFUF
AB3AKKH7 10.1088/1748-9326/8/1/014026 https://www.zotero.org/groups/2345951/items/AB3AKKH7
AZS5FRZB 10.1088/1748-9326/8/1/014026 https://www.zotero.org/groups/2345951/items/AZS5FRZB
LS25S2BU 10.1088/1748-9326/9/10/105011 https://www.zotero.org/groups/2345951/items/LS25S2BU
HSEY36US 10.1088/1748-9326/9/10/105011 https://www.zotero.org/groups/2345951/items/HSEY36US
DG383KGV 10.1088/1751-8113/44/8/085201 https://www.zotero.org/groups/2345951/items/DG383KGV
ABVS82HY 10.1088/1751-8113/44/8/085201 https://www.zotero.org/groups/2345951/items/ABVS82HY
68A9QYAS 10.1088/1751-8113/44/8/085201 https://www.zotero.org/groups/2345951/items/68A9QYAS
3PXY3CK4 10.1093/biosci/biw101 https://www.zotero.org/groups/2345951/items/3PXY3CK4
C9547ILM 10.1093/biosci/biw101 https://www.zotero.org/groups/2345951/items/C9547ILM
3IGQH67J 10.1093/ecam/nem094 https://www.zotero.org/groups/2345951/items/3IGQH67J
YP5UU8HT 10.1093/ecam/nem094 https://www.zotero.org/groups/2345951/items/YP5UU8HT
KZPFXQ8Z 10.1093/forestry/cpr056 https://www.zotero.org/groups/2345951/items/KZPFXQ8Z
8ZRRSIG2 10.1093/forestry/cpr056 https://www.zotero.org/groups/2345951/items/8ZRRSIG2
794W6Y6K 10.1098/rsbl.2012.0496 https://www.zotero.org/groups/2345951/items/794W6Y6K
8NH4EYUL 10.1098/rsbl.2012.0496 https://www.zotero.org/groups/2345951/items/8NH4EYUL
ZACK3ZMS 10.1098/rspb.2010.1923 https://www.zotero.org/groups/2345951/items/ZACK3ZMS
G9N6V8FA 10.1098/rspb.2010.1923 https://www.zotero.org/groups/2345951/items/G9N6V8FA
WB8F3GNQ 10.1098/rspb.2010.1923 https://www.zotero.org/groups/2345951/items/WB8F3GNQ
JQH7GM96 10.1098/rspb.2011.1686 https://www.zotero.org/groups/2345951/items/JQH7GM96
AFI6C2VU 10.1098/rspb.2011.1686 https://www.zotero.org/groups/2345951/items/AFI6C2VU
CDQ9PEPZ 10.1098/rspb.2011.1686 https://www.zotero.org/groups/2345951/items/CDQ9PEPZ
H7HJKRI5 10.1098/rspb.2013.3350 https://www.zotero.org/groups/2345951/items/H7HJKRI5
GYUGL4SS 10.1098/rspb.2013.3350 https://www.zotero.org/groups/2345951/items/GYUGL4SS
TINMM99J 10.1098/rspb.2014.2809 https://www.zotero.org/groups/2345951/items/TINMM99J
UJZ64IDF 10.1098/rspb.2014.2809 https://www.zotero.org/groups/2345951/items/UJZ64IDF
QGB58CNE 10.1098/rsta.2010.0143 https://www.zotero.org/groups/2345951/items/QGB58CNE
M2BCWHJD 10.1098/rsta.2010.0143 https://www.zotero.org/groups/2345951/items/M2BCWHJD
GT8WVJRW 10.1098/rstb.2012.0231 https://www.zotero.org/groups/2345951/items/GT8WVJRW
8XS88UYV 10.1098/rstb.2012.0231 https://www.zotero.org/groups/2345951/items/8XS88UYV
AWS7HNIY 10.1111/1365-2664.12035 https://www.zotero.org/groups/2345951/items/AWS7HNIY
CVNL5GQ2 10.1111/1365-2664.12035 https://www.zotero.org/groups/2345951/items/CVNL5GQ2
5GVDZNUZ 10.1111/1365-2664.12047 https://www.zotero.org/groups/2345951/items/5GVDZNUZ
YNR63WX4 10.1111/1365-2664.12047 https://www.zotero.org/groups/2345951/items/YNR63WX4
DJDRLN6L 10.1111/1365-2664.12219 https://www.zotero.org/groups/2345951/items/DJDRLN6L
IC826S9K 10.1111/1365-2664.12219 https://www.zotero.org/groups/2345951/items/IC826S9K
4EHF4P5K 10.1111/1365-2664.12219 https://www.zotero.org/groups/2345951/items/4EHF4P5K
5AJ9UYJZ 10.1111/1365-2664.12483 https://www.zotero.org/groups/2345951/items/5AJ9UYJZ
57A7NQUP 10.1111/1365-2664.12483 https://www.zotero.org/groups/2345951/items/57A7NQUP
WMSJ947B 10.1111/1365-2664.12527 https://www.zotero.org/groups/2345951/items/WMSJ947B
T4AG9RL3 10.1111/1365-2664.12527 https://www.zotero.org/groups/2345951/items/T4AG9RL3
2QRVMFCY 10.1111/1365-2664.12696 https://www.zotero.org/groups/2345951/items/2QRVMFCY
GPQ55CLV 10.1111/1365-2664.12696 https://www.zotero.org/groups/2345951/items/GPQ55CLV
ZN29JKFB 10.1111/1365-2664.12696 https://www.zotero.org/groups/2345951/items/ZN29JKFB
3G5FY92I 10.1111/1468-2451.00382 https://www.zotero.org/groups/2345951/items/3G5FY92I
ZPG9HBAT 10.1111/1468-2451.00382 https://www.zotero.org/groups/2345951/items/ZPG9HBAT
NZZG7QJK 10.1111/cobi.12043 https://www.zotero.org/groups/2345951/items/NZZG7QJK
YSTI43TL 10.1111/cobi.12043 https://www.zotero.org/groups/2345951/items/YSTI43TL
Z6NWDH8U 10.1111/cobi.12420 https://www.zotero.org/groups/2345951/items/Z6NWDH8U
DRHM269G 10.1111/cobi.12420 https://www.zotero.org/groups/2345951/items/DRHM269G
RRVGWMQK 10.1111/cobi.12531 https://www.zotero.org/groups/2345951/items/RRVGWMQK
KKUVLDMT 10.1111/cobi.12531 https://www.zotero.org/groups/2345951/items/KKUVLDMT
57NT9BEC 10.1111/cobi.12536 https://www.zotero.org/groups/2345951/items/57NT9BEC
NLFCI2PB 10.1111/cobi.12536 https://www.zotero.org/groups/2345951/items/NLFCI2PB
SV8JSIAH 10.1111/cobi.12536 https://www.zotero.org/groups/2345951/items/SV8JSIAH
UW6S3HLS 10.1111/cobi.12536 https://www.zotero.org/groups/2345951/items/UW6S3HLS
CG7WZVNM 10.1111/conl.12100 https://www.zotero.org/groups/2345951/items/CG7WZVNM
2JBABR83 10.1111/conl.12100 https://www.zotero.org/groups/2345951/items/2JBABR83
CQ6BTL7S 10.1111/conl.12159 https://www.zotero.org/groups/2345951/items/CQ6BTL7S
H9HW57WD 10.1111/conl.12159 https://www.zotero.org/groups/2345951/items/H9HW57WD
DMD3BN78 10.1111/ddi.12002 https://www.zotero.org/groups/2345951/items/DMD3BN78
6RQY5R6A 10.1111/ddi.12002 https://www.zotero.org/groups/2345951/items/6RQY5R6A
GWN3E2GA 10.1111/ddi.12232 https://www.zotero.org/groups/2345951/items/GWN3E2GA
CRUEL9RY 10.1111/ddi.12232 https://www.zotero.org/groups/2345951/items/CRUEL9RY
W5DSKPJD 10.1111/ddi.12288 https://www.zotero.org/groups/2345951/items/W5DSKPJD
GFL6LI3N 10.1111/ddi.12288 https://www.zotero.org/groups/2345951/items/GFL6LI3N
KXXB2YFM 10.1111/ddi.12288 https://www.zotero.org/groups/2345951/items/KXXB2YFM
WV5VR82F 10.1111/ddi.12288 https://www.zotero.org/groups/2345951/items/WV5VR82F
DIXQ3V96 10.1111/ecog.00580 https://www.zotero.org/groups/2345951/items/DIXQ3V96
LXNGBLSD 10.1111/ecog.00580 https://www.zotero.org/groups/2345951/items/LXNGBLSD
8L4GS4XD 10.1111/ecog.00670 https://www.zotero.org/groups/2345951/items/8L4GS4XD
A54R7UNA 10.1111/ecog.00670 https://www.zotero.org/groups/2345951/items/A54R7UNA
9JMU2CYL 10.1111/een.12207 https://www.zotero.org/groups/2345951/items/9JMU2CYL
URFDZQUG 10.1111/een.12207 https://www.zotero.org/groups/2345951/items/URFDZQUG
E4H3XVE7 10.1111/ele.12082 https://www.zotero.org/groups/2345951/items/E4H3XVE7
P8YECZZG 10.1111/ele.12082 https://www.zotero.org/groups/2345951/items/P8YECZZG
4FX6FHXI 10.1111/ele.12121 https://www.zotero.org/groups/2345951/items/4FX6FHXI
7DXF8PS2 10.1111/ele.12121 https://www.zotero.org/groups/2345951/items/7DXF8PS2
M7PFX25P 10.1111/ele.12128 https://www.zotero.org/groups/2345951/items/M7PFX25P
VXTI9MRL 10.1111/ele.12128 https://www.zotero.org/groups/2345951/items/VXTI9MRL
Q3L3BGYR 10.1111/ele.12189 https://www.zotero.org/groups/2345951/items/Q3L3BGYR
D23J3WZL 10.1111/ele.12189 https://www.zotero.org/groups/2345951/items/D23J3WZL
4NV4XBYJ 10.1111/ele.12469 https://www.zotero.org/groups/2345951/items/4NV4XBYJ
5Q8Q4MMD 10.1111/ele.12469 https://www.zotero.org/groups/2345951/items/5Q8Q4MMD
9EX2GJ7G 10.1111/ele.12569 https://www.zotero.org/groups/2345951/items/9EX2GJ7G
2I29ERYI 10.1111/ele.12569 https://www.zotero.org/groups/2345951/items/2I29ERYI
65WJG37B 10.1111/faf.12044 https://www.zotero.org/groups/2345951/items/65WJG37B
IPZ79HY2 10.1111/faf.12044 https://www.zotero.org/groups/2345951/items/IPZ79HY2
2W5ZY4SV 10.1111/faf.12109 https://www.zotero.org/groups/2345951/items/2W5ZY4SV
5ER27LHV 10.1111/faf.12109 https://www.zotero.org/groups/2345951/items/5ER27LHV
UHIKMQZX 10.1111/gcb.12309 https://www.zotero.org/groups/2345951/items/UHIKMQZX
3SCWGIB4 10.1111/gcb.12309 https://www.zotero.org/groups/2345951/items/3SCWGIB4
28UC5BGE 10.1111/gcb.12379 https://www.zotero.org/groups/2345951/items/28UC5BGE
XLEGPGKQ 10.1111/gcb.12379 https://www.zotero.org/groups/2345951/items/XLEGPGKQ
5K238JLG 10.1111/gcb.12551 https://www.zotero.org/groups/2345951/items/5K238JLG
VVUHHKPB 10.1111/gcb.12551 https://www.zotero.org/groups/2345951/items/VVUHHKPB
LJXK5RMY 10.1111/gcb.12577 https://www.zotero.org/groups/2345951/items/LJXK5RMY
GKSY7H5Y 10.1111/gcb.12577 https://www.zotero.org/groups/2345951/items/GKSY7H5Y
G46TC3AL 10.1111/gcb.12603 https://www.zotero.org/groups/2345951/items/G46TC3AL
35G2DSBL 10.1111/gcb.12603 https://www.zotero.org/groups/2345951/items/35G2DSBL
M5AYIZVN 10.1111/gcb.12644 https://www.zotero.org/groups/2345951/items/M5AYIZVN
CFX7JBQY 10.1111/gcb.12644 https://www.zotero.org/groups/2345951/items/CFX7JBQY
4CU5A3WH 10.1111/gcb.12752 https://www.zotero.org/groups/2345951/items/4CU5A3WH
FVAZ2G7T 10.1111/gcb.12752 https://www.zotero.org/groups/2345951/items/FVAZ2G7T
5SGFNYTM 10.1111/gcb.12752 https://www.zotero.org/groups/2345951/items/5SGFNYTM
U75ZCRG2 10.1111/gcb.12833 https://www.zotero.org/groups/2345951/items/U75ZCRG2
I778WHEL 10.1111/gcb.12833 https://www.zotero.org/groups/2345951/items/I778WHEL
BIKNSMTT 10.1111/gcb.12846 https://www.zotero.org/groups/2345951/items/BIKNSMTT
NEY4YQY4 10.1111/gcb.12846 https://www.zotero.org/groups/2345951/items/NEY4YQY4
3QZZSEQC 10.1111/gcb.12846 https://www.zotero.org/groups/2345951/items/3QZZSEQC
CGNPCZ2S 10.1111/gcb.13021 https://www.zotero.org/groups/2345951/items/CGNPCZ2S
BAHISS4Y 10.1111/gcb.13021 https://www.zotero.org/groups/2345951/items/BAHISS4Y
68YA8F6J 10.1111/gcb.13021 https://www.zotero.org/groups/2345951/items/68YA8F6J
CJGW2MGL 10.1111/gcb.13447 https://www.zotero.org/groups/2345951/items/CJGW2MGL
S8GE4VHA 10.1111/gcb.13447 https://www.zotero.org/groups/2345951/items/S8GE4VHA
VJQ7J647 10.1111/gcbb.12179 https://www.zotero.org/groups/2345951/items/VJQ7J647
ATZR6Z8T 10.1111/gcbb.12179 https://www.zotero.org/groups/2345951/items/ATZR6Z8T
Z9SFSTR8 10.1111/geb.12100 https://www.zotero.org/groups/2345951/items/Z9SFSTR8
2F9TZIXH 10.1111/geb.12100 https://www.zotero.org/groups/2345951/items/2F9TZIXH
QKRNHJ2L 10.1111/geb.12291 https://www.zotero.org/groups/2345951/items/QKRNHJ2L
YCZ7JZM3 10.1111/geb.12291 https://www.zotero.org/groups/2345951/items/YCZ7JZM3
QUIX6SU7 10.1111/ibi.12118 https://www.zotero.org/groups/2345951/items/QUIX6SU7
ZLCF6E6M 10.1111/ibi.12118 https://www.zotero.org/groups/2345951/items/ZLCF6E6M
U3SY8YBH 10.1111/ibi.12118 https://www.zotero.org/groups/2345951/items/U3SY8YBH
UNTRQTL8 10.1111/j.1365-2486.2007.01341.x https://www.zotero.org/groups/2345951/items/UNTRQTL8
I3J7GQDM 10.1111/j.1365-2486.2007.01341.x https://www.zotero.org/groups/2345951/items/I3J7GQDM
CHKRUKGW 10.1111/j.1365-2486.2007.01518.x https://www.zotero.org/groups/2345951/items/CHKRUKGW
8K68GL2Z 10.1111/j.1365-2486.2007.01518.x https://www.zotero.org/groups/2345951/items/8K68GL2Z
9FLXS9EH 10.1111/j.1365-2486.2008.01557.x https://www.zotero.org/groups/2345951/items/9FLXS9EH
QLXN7LX3 10.1111/j.1365-2486.2008.01557.x https://www.zotero.org/groups/2345951/items/QLXN7LX3
HZCQXDRL 10.1111/j.1365-2486.2008.01653.x https://www.zotero.org/groups/2345951/items/HZCQXDRL
74XD4RQV 10.1111/j.1365-2486.2008.01653.x https://www.zotero.org/groups/2345951/items/74XD4RQV
SY4J2VIF 10.1111/j.1365-2486.2009.01848.x https://www.zotero.org/groups/2345951/items/SY4J2VIF
BJC5SQKA 10.1111/j.1365-2486.2009.01848.x https://www.zotero.org/groups/2345951/items/BJC5SQKA
YEZ8ZMAQ 10.1111/j.1365-2486.2010.02224.x https://www.zotero.org/groups/2345951/items/YEZ8ZMAQ
JA7ELTFA 10.1111/j.1365-2486.2010.02224.x https://www.zotero.org/groups/2345951/items/JA7ELTFA
ZNAAXWIT 10.1111/j.1365-2486.2010.02266.x https://www.zotero.org/groups/2345951/items/ZNAAXWIT
DWE5HIN2 10.1111/j.1365-2486.2010.02266.x https://www.zotero.org/groups/2345951/items/DWE5HIN2
E2RFXZLY 10.1111/j.1365-2486.2010.02393.x https://www.zotero.org/groups/2345951/items/E2RFXZLY
J6LJ8S5S 10.1111/j.1365-2486.2010.02393.x https://www.zotero.org/groups/2345951/items/J6LJ8S5S
RJQUET6V 10.1111/j.1365-2486.2011.02552.x https://www.zotero.org/groups/2345951/items/RJQUET6V
NBRHYJ4K 10.1111/j.1365-2486.2011.02552.x https://www.zotero.org/groups/2345951/items/NBRHYJ4K
JMLMBNHP 10.1111/j.1365-2486.2011.02576.x https://www.zotero.org/groups/2345951/items/JMLMBNHP
UESTIFCM 10.1111/j.1365-2486.2011.02576.x https://www.zotero.org/groups/2345951/items/UESTIFCM
IKFUGFQP 10.1111/j.1365-2486.2011.02590.x https://www.zotero.org/groups/2345951/items/IKFUGFQP
3SI98WBE 10.1111/j.1365-2486.2011.02590.x https://www.zotero.org/groups/2345951/items/3SI98WBE
GGN7Y98Y 10.1111/j.1365-2486.2011.02593.x https://www.zotero.org/groups/2345951/items/GGN7Y98Y
EFZ74CBX 10.1111/j.1365-2486.2011.02593.x https://www.zotero.org/groups/2345951/items/EFZ74CBX
XGWHCD92 10.1111/j.1365-2486.2011.02636.x https://www.zotero.org/groups/2345951/items/XGWHCD92
6NMN3NSJ 10.1111/j.1365-2486.2011.02636.x https://www.zotero.org/groups/2345951/items/6NMN3NSJ
E84Q66YX 10.1111/j.1365-2486.2012.02791.x https://www.zotero.org/groups/2345951/items/E84Q66YX
MVYK3Y6K 10.1111/j.1365-2486.2012.02791.x https://www.zotero.org/groups/2345951/items/MVYK3Y6K
GRHDVI2X 10.1111/j.1365-2664.2005.01005.x https://www.zotero.org/groups/2345951/items/GRHDVI2X
TMVQLEUI 10.1111/j.1365-2664.2005.01005.x https://www.zotero.org/groups/2345951/items/TMVQLEUI
IBAQ7DR2 10.1111/j.1365-2664.2005.01005.x https://www.zotero.org/groups/2345951/items/IBAQ7DR2
47P92KB5 10.1111/j.1365-2664.2005.01005.x https://www.zotero.org/groups/2345951/items/47P92KB5
HVGEPADH 10.1111/j.1365-2664.2006.01233.x https://www.zotero.org/groups/2345951/items/HVGEPADH
VQWS4JWG 10.1111/j.1365-2664.2006.01233.x https://www.zotero.org/groups/2345951/items/VQWS4JWG
SAKFSPGD 10.1111/j.1365-2664.2007.01306.x https://www.zotero.org/groups/2345951/items/SAKFSPGD
WTTDBGZH 10.1111/j.1365-2664.2007.01306.x https://www.zotero.org/groups/2345951/items/WTTDBGZH
XDYXN6H2 10.1111/j.1365-2664.2007.01393.x https://www.zotero.org/groups/2345951/items/XDYXN6H2
D2CVHMQV 10.1111/j.1365-2664.2007.01393.x https://www.zotero.org/groups/2345951/items/D2CVHMQV
L49ERL6I 10.1111/j.1365-2664.2008.01600.x https://www.zotero.org/groups/2345951/items/L49ERL6I
24Y9THRG 10.1111/j.1365-2664.2008.01600.x https://www.zotero.org/groups/2345951/items/24Y9THRG
6FTU4RD2 10.1111/j.1365-2664.2009.01747.x https://www.zotero.org/groups/2345951/items/6FTU4RD2
INJ4W7MW 10.1111/j.1365-2664.2009.01747.x https://www.zotero.org/groups/2345951/items/INJ4W7MW
PP3CBYZQ 10.1111/j.1365-2664.2010.01869.x https://www.zotero.org/groups/2345951/items/PP3CBYZQ
W8ISNW5C 10.1111/j.1365-2664.2010.01869.x https://www.zotero.org/groups/2345951/items/W8ISNW5C
F9V9KP45 10.1111/j.1365-2664.2011.02069.x https://www.zotero.org/groups/2345951/items/F9V9KP45
KME9RVUC 10.1111/j.1365-2664.2011.02069.x https://www.zotero.org/groups/2345951/items/KME9RVUC
NL2T5MQT 10.1111/j.1365-2664.2012.02119.x https://www.zotero.org/groups/2345951/items/NL2T5MQT
IR29X3KH 10.1111/j.1365-2664.2012.02119.x https://www.zotero.org/groups/2345951/items/IR29X3KH
R6KPVGT9 10.1111/j.1365-2699.2004.01088.x https://www.zotero.org/groups/2345951/items/R6KPVGT9
L2JUHAKP 10.1111/j.1365-2699.2004.01088.x https://www.zotero.org/groups/2345951/items/L2JUHAKP
DEJIBZRG 10.1111/j.1365-2699.2011.02659.x https://www.zotero.org/groups/2345951/items/DEJIBZRG
DP75Y2J7 10.1111/j.1365-2699.2011.02659.x https://www.zotero.org/groups/2345951/items/DP75Y2J7
TQICIPX4 10.1111/j.1461-0248.2005.00869.x https://www.zotero.org/groups/2345951/items/TQICIPX4
EDNIS8ME 10.1111/j.1461-0248.2005.00869.x https://www.zotero.org/groups/2345951/items/EDNIS8ME
TCDZ66YW 10.1111/j.1461-0248.2008.01157.x https://www.zotero.org/groups/2345951/items/TCDZ66YW
8ZGJ7XH5 10.1111/j.1461-0248.2008.01157.x https://www.zotero.org/groups/2345951/items/8ZGJ7XH5
V9HE8K7Q 10.1111/j.1461-0248.2008.01166.x https://www.zotero.org/groups/2345951/items/V9HE8K7Q
CHU2NZLF 10.1111/j.1461-0248.2008.01166.x https://www.zotero.org/groups/2345951/items/CHU2NZLF
TRSRVVSH 10.1111/j.1461-0248.2010.01481.x https://www.zotero.org/groups/2345951/items/TRSRVVSH
9AVXV4FM 10.1111/j.1461-0248.2010.01481.x https://www.zotero.org/groups/2345951/items/9AVXV4FM
AWWHDU58 10.1111/j.1461-0248.2010.01506.x https://www.zotero.org/groups/2345951/items/AWWHDU58
RUZIMHGL 10.1111/j.1461-0248.2010.01506.x https://www.zotero.org/groups/2345951/items/RUZIMHGL
NLG7WRED 10.1111/j.1461-0248.2011.01736.x https://www.zotero.org/groups/2345951/items/NLG7WRED
44AMCE33 10.1111/j.1461-0248.2011.01736.x https://www.zotero.org/groups/2345951/items/44AMCE33
PLAXL5ZC 10.1111/j.1461-0248.2012.01764.x https://www.zotero.org/groups/2345951/items/PLAXL5ZC
BLRH72RS 10.1111/j.1461-0248.2012.01764.x https://www.zotero.org/groups/2345951/items/BLRH72RS
MQ9IUWQM 10.1111/j.1466-8238.2007.00287.x https://www.zotero.org/groups/2345951/items/MQ9IUWQM
7XE74V9Z 10.1111/j.1466-8238.2007.00287.x https://www.zotero.org/groups/2345951/items/7XE74V9Z
NDYGHES5 10.1111/j.1466-8238.2010.00573.x https://www.zotero.org/groups/2345951/items/NDYGHES5
WJSV82TQ 10.1111/j.1466-8238.2010.00573.x https://www.zotero.org/groups/2345951/items/WJSV82TQ
VRBRT7VU 10.1111/j.1466-8238.2010.00573.x https://www.zotero.org/groups/2345951/items/VRBRT7VU
GKL6PSTX 10.1111/j.1466-8238.2010.00607.x https://www.zotero.org/groups/2345951/items/GKL6PSTX
T9W9VN7X 10.1111/j.1466-8238.2010.00607.x https://www.zotero.org/groups/2345951/items/T9W9VN7X
S2RE7JWQ 10.1111/j.1466-8238.2010.00613.x https://www.zotero.org/groups/2345951/items/S2RE7JWQ
LML33H8H 10.1111/j.1466-8238.2010.00613.x https://www.zotero.org/groups/2345951/items/LML33H8H
DUBJ42JR 10.1111/j.1466-8238.2011.00663.x https://www.zotero.org/groups/2345951/items/DUBJ42JR
D4XJ3M2I 10.1111/j.1466-8238.2011.00663.x https://www.zotero.org/groups/2345951/items/D4XJ3M2I
5PKT43UQ 10.1111/j.1466-8238.2011.00697.x https://www.zotero.org/groups/2345951/items/5PKT43UQ
UPN8RT67 10.1111/j.1466-8238.2011.00697.x https://www.zotero.org/groups/2345951/items/UPN8RT67
W5I9RFB5 10.1111/j.1466-8238.2011.00697.x https://www.zotero.org/groups/2345951/items/W5I9RFB5
E44S3ZCQ 10.1111/j.1467-2979.2006.00205.x https://www.zotero.org/groups/2345951/items/E44S3ZCQ
29C6BJEU 10.1111/j.1467-2979.2006.00205.x https://www.zotero.org/groups/2345951/items/29C6BJEU
9CBICI92 10.1111/j.1467-2979.2006.00205.x https://www.zotero.org/groups/2345951/items/9CBICI92
QULD6NQD 10.1111/j.1467-789X.2009.00658.x https://www.zotero.org/groups/2345951/items/QULD6NQD
ZUR9EDFF 10.1111/j.1467-789X.2009.00658.x https://www.zotero.org/groups/2345951/items/ZUR9EDFF
RL9GVLB2 10.1111/j.1467-8276.2007.00999.x https://www.zotero.org/groups/2345951/items/RL9GVLB2
79SNSD7T 10.1111/j.1467-8276.2007.00999.x https://www.zotero.org/groups/2345951/items/79SNSD7T
QXMWRJ7Q 10.1111/j.1474-919X.1992.tb04734.x https://www.zotero.org/groups/2345951/items/QXMWRJ7Q
AKTDGUW4 10.1111/j.1474-919X.1992.tb04734.x https://www.zotero.org/groups/2345951/items/AKTDGUW4
8PNUMMS7 10.1111/j.1474-919X.2007.00698.x https://www.zotero.org/groups/2345951/items/8PNUMMS7
MDNWFRVC 10.1111/j.1474-919X.2007.00698.x https://www.zotero.org/groups/2345951/items/MDNWFRVC
LG32QU7T 10.1111/j.1477-8947.2009.01217.x https://www.zotero.org/groups/2345951/items/LG32QU7T
V8R8PZZC 10.1111/j.1477-8947.2009.01217.x https://www.zotero.org/groups/2345951/items/V8R8PZZC
Y5XASWTA 10.1111/j.1523-1739.2006.00633.x https://www.zotero.org/groups/2345951/items/Y5XASWTA
A5EJNIKW 10.1111/j.1523-1739.2006.00633.x https://www.zotero.org/groups/2345951/items/A5EJNIKW
EWE9LDSR 10.1111/j.1523-1739.2007.00657.x https://www.zotero.org/groups/2345951/items/EWE9LDSR
ZZPQRF59 10.1111/j.1523-1739.2007.00657.x https://www.zotero.org/groups/2345951/items/ZZPQRF59
BWBJM98P 10.1111/j.1523-1739.2008.00921.x https://www.zotero.org/groups/2345951/items/BWBJM98P
4PYBL4XB 10.1111/j.1523-1739.2008.00921.x https://www.zotero.org/groups/2345951/items/4PYBL4XB
SVZWC872 10.1111/j.1523-1739.2008.00950.x https://www.zotero.org/groups/2345951/items/SVZWC872
UMI3I8LV 10.1111/j.1523-1739.2008.00950.x https://www.zotero.org/groups/2345951/items/UMI3I8LV
9MTQ3RXN 10.1111/j.1523-1739.2008.00951.x https://www.zotero.org/groups/2345951/items/9MTQ3RXN
6SKX84WV 10.1111/j.1523-1739.2008.00951.x https://www.zotero.org/groups/2345951/items/6SKX84WV
YJTNMU3K 10.1111/j.1523-1739.2009.01283.x https://www.zotero.org/groups/2345951/items/YJTNMU3K
JL5QCDER 10.1111/j.1523-1739.2009.01283.x https://www.zotero.org/groups/2345951/items/JL5QCDER
XPWUZNV3 10.1111/j.1523-1739.2009.01399.x https://www.zotero.org/groups/2345951/items/XPWUZNV3
PSX2MIN5 10.1111/j.1523-1739.2009.01399.x https://www.zotero.org/groups/2345951/items/PSX2MIN5
7AKUC4SX 10.1111/j.1523-1739.2009.01401.x https://www.zotero.org/groups/2345951/items/7AKUC4SX
SJ2VR8BX 10.1111/j.1523-1739.2009.01401.x https://www.zotero.org/groups/2345951/items/SJ2VR8BX
VBENDRNR 10.1111/j.1523-1739.2010.01646.x https://www.zotero.org/groups/2345951/items/VBENDRNR
CNIMCX4P 10.1111/j.1523-1739.2010.01646.x https://www.zotero.org/groups/2345951/items/CNIMCX4P
4RRKMGPT 10.1111/j.1654-1103.2012.01400.x https://www.zotero.org/groups/2345951/items/4RRKMGPT
MD3TTPUE 10.1111/j.1654-1103.2012.01400.x https://www.zotero.org/groups/2345951/items/MD3TTPUE
8WRTHI7I 10.1111/j.1753-4887.2011.00456.x https://www.zotero.org/groups/2345951/items/8WRTHI7I
MHHR38EF 10.1111/j.1753-4887.2011.00456.x https://www.zotero.org/groups/2345951/items/MHHR38EF
IP9C8SMQ 10.1111/j.1755-263X.2011.00217.x https://www.zotero.org/groups/2345951/items/IP9C8SMQ
7GUZTKCU 10.1111/j.1755-263X.2011.00217.x https://www.zotero.org/groups/2345951/items/7GUZTKCU
FG8LVZ2G 10.1111/jbi.12025 https://www.zotero.org/groups/2345951/items/FG8LVZ2G
B8L8DEV3 10.1111/jbi.12025 https://www.zotero.org/groups/2345951/items/B8L8DEV3
PM3RKHYI 10.1111/jbi.12060 https://www.zotero.org/groups/2345951/items/PM3RKHYI
FTKE4I8Z 10.1111/jbi.12060 https://www.zotero.org/groups/2345951/items/FTKE4I8Z
7R3SGQYL 10.1111/jiec.12238 https://www.zotero.org/groups/2345951/items/7R3SGQYL
Q6XFJB8U 10.1111/jiec.12238 https://www.zotero.org/groups/2345951/items/Q6XFJB8U
HCCS3EEY 10.1111/jzo.12088 https://www.zotero.org/groups/2345951/items/HCCS3EEY
NN9BICRQ 10.1111/jzo.12088 https://www.zotero.org/groups/2345951/items/NN9BICRQ
FQWQU7L2 10.1126/sciadv.1600377 https://www.zotero.org/groups/2345951/items/FQWQU7L2
VXI55G2R 10.1126/sciadv.1600377 https://www.zotero.org/groups/2345951/items/VXI55G2R
SLWCT7RP 10.1126/sciadv.1600377 https://www.zotero.org/groups/2345951/items/SLWCT7RP
2DKH4X4X 10.1126/science.1111322 https://www.zotero.org/groups/2345951/items/2DKH4X4X
UAY9GIKM 10.1126/science.1111322 https://www.zotero.org/groups/2345951/items/UAY9GIKM
VPF533YY 10.1126/science.1115233 https://www.zotero.org/groups/2345951/items/VPF533YY
CFVGEJES 10.1126/science.1115233 https://www.zotero.org/groups/2345951/items/CFVGEJES
S58EVBWI 10.1126/science.1115233 https://www.zotero.org/groups/2345951/items/S58EVBWI
JUYHAH95 10.1126/science.1115233 https://www.zotero.org/groups/2345951/items/JUYHAH95
BY4KTPSV 10.1126/science.1115233 https://www.zotero.org/groups/2345951/items/BY4KTPSV
6GBTRNGP 10.1126/science.1122804 https://www.zotero.org/groups/2345951/items/6GBTRNGP
LHGH5K7C 10.1126/science.1122804 https://www.zotero.org/groups/2345951/items/LHGH5K7C
9AQJGCYK 10.1126/science.1127863 https://www.zotero.org/groups/2345951/items/9AQJGCYK
TVTFFYGC 10.1126/science.1127863 https://www.zotero.org/groups/2345951/items/TVTFFYGC
5YBJNGFB 10.1126/science.1132294 https://www.zotero.org/groups/2345951/items/5YBJNGFB
YPRG9RH3 10.1126/science.1132294 https://www.zotero.org/groups/2345951/items/YPRG9RH3
NI97SY5C 10.1126/science.1146002 https://www.zotero.org/groups/2345951/items/NI97SY5C
B3JKM54Y 10.1126/science.1146002 https://www.zotero.org/groups/2345951/items/B3JKM54Y
3CU5I3R6 10.1126/science.1152509 https://www.zotero.org/groups/2345951/items/3CU5I3R6
59W85QST 10.1126/science.1152509 https://www.zotero.org/groups/2345951/items/59W85QST
82YTDN96 10.1126/science.1187512 https://www.zotero.org/groups/2345951/items/82YTDN96
KJ2Q9S3Z 10.1126/science.1187512 https://www.zotero.org/groups/2345951/items/KJ2Q9S3Z
NBYA8IME 10.1126/science.1187512 https://www.zotero.org/groups/2345951/items/NBYA8IME
G5HVHJEM 10.1126/science.1196624 https://www.zotero.org/groups/2345951/items/G5HVHJEM
HR7ZXGIN 10.1126/science.1196624 https://www.zotero.org/groups/2345951/items/HR7ZXGIN
VFJ3DIEB 10.1126/science.1196624 https://www.zotero.org/groups/2345951/items/VFJ3DIEB
2LCSHS7F 10.1126/science.1196624 https://www.zotero.org/groups/2345951/items/2LCSHS7F
WINIMGLA 10.1126/science.1228992 https://www.zotero.org/groups/2345951/items/WINIMGLA
TMZ23S5T 10.1126/science.1228992 https://www.zotero.org/groups/2345951/items/TMZ23S5T
QX73LBGM 10.1126/science.1234379 https://www.zotero.org/groups/2345951/items/QX73LBGM
GI4K797A 10.1126/science.1234379 https://www.zotero.org/groups/2345951/items/GI4K797A
ALTE64NT 10.1126/science.1234379 https://www.zotero.org/groups/2345951/items/ALTE64NT
EMPQFZKL 10.1126/science.1244693 https://www.zotero.org/groups/2345951/items/EMPQFZKL
WBJ5AKFP 10.1126/science.1244693 https://www.zotero.org/groups/2345951/items/WBJ5AKFP
VMQXIKUI 10.1126/science.1253425 https://www.zotero.org/groups/2345951/items/VMQXIKUI
48WVLR8R 10.1126/science.1253425 https://www.zotero.org/groups/2345951/items/48WVLR8R
BZHBDASN 10.1126/science.1253425 https://www.zotero.org/groups/2345951/items/BZHBDASN
VGIAG8WY 10.1126/science.1257484 https://www.zotero.org/groups/2345951/items/VGIAG8WY
DG6FSIKI 10.1126/science.1257484 https://www.zotero.org/groups/2345951/items/DG6FSIKI
IHMT2RGK 10.1126/science.1257553 https://www.zotero.org/groups/2345951/items/IHMT2RGK
WT44SLQR 10.1126/science.1257553 https://www.zotero.org/groups/2345951/items/WT44SLQR
7JPGIFD9 10.1126/science.1257553 https://www.zotero.org/groups/2345951/items/7JPGIFD9
F3WF33W7 10.1126/science.1257553 https://www.zotero.org/groups/2345951/items/F3WF33W7
5YCWWF23 10.1126/science.287.5459.1770 https://www.zotero.org/groups/2345951/items/5YCWWF23
T5GSFN9F 10.1126/science.287.5459.1770 https://www.zotero.org/groups/2345951/items/T5GSFN9F
6ZVJB6Z2 10.1126/science.287.5459.1770 https://www.zotero.org/groups/2345951/items/6ZVJB6Z2
TJDDKZGT 10.1127/nova https://www.zotero.org/groups/2345951/items/TJDDKZGT
9SVHA9CM 10.1127/nova https://www.zotero.org/groups/2345951/items/9SVHA9CM
RUR3DNET 10.1134/s1064229311070064 https://www.zotero.org/groups/2345951/items/RUR3DNET
L4SG7SCR 10.1134/s1064229311070064 https://www.zotero.org/groups/2345951/items/L4SG7SCR
SFDP9Z3S 10.1136/bmjopen-2014-004951 https://www.zotero.org/groups/2345951/items/SFDP9Z3S
KL98EALR 10.1136/bmjopen-2014-004951 https://www.zotero.org/groups/2345951/items/KL98EALR
XP2PFBEH 10.1139/cjfr-2012-0139 https://www.zotero.org/groups/2345951/items/XP2PFBEH
FI7FSX4X 10.1139/cjfr-2012-0139 https://www.zotero.org/groups/2345951/items/FI7FSX4X
DMKW7UVK 10.1139/x2012-078 https://www.zotero.org/groups/2345951/items/DMKW7UVK
V2CWGBR5 10.1139/x2012-078 https://www.zotero.org/groups/2345951/items/V2CWGBR5
VGXN9JH7 10.1139/x2012-078 https://www.zotero.org/groups/2345951/items/VGXN9JH7
JKHK2AKD 10.1139/x2012-078 https://www.zotero.org/groups/2345951/items/JKHK2AKD
697GAWTU 10.1146/annurev.earth.35.031306.140120 https://www.zotero.org/groups/2345951/items/697GAWTU
UK98MTZ2 10.1146/annurev.earth.35.031306.140120 https://www.zotero.org/groups/2345951/items/UK98MTZ2
RVN5BXQI 10.1146/annurev.ecolsys.110308.120159 https://www.zotero.org/groups/2345951/items/RVN5BXQI
VKH634T8 10.1146/annurev.ecolsys.110308.120159 https://www.zotero.org/groups/2345951/items/VKH634T8
7ZSAJ357 10.1155/2012/156846 https://www.zotero.org/groups/2345951/items/7ZSAJ357
FAIHNSBL 10.1155/2012/156846 https://www.zotero.org/groups/2345951/items/FAIHNSBL
ZTNYPZPI 10.1163/187471611X600369 https://www.zotero.org/groups/2345951/items/ZTNYPZPI
HHBC4NHN 10.1163/187471611X600369 https://www.zotero.org/groups/2345951/items/HHBC4NHN
G4QLWFLC 10.1177/0013916509338147 https://www.zotero.org/groups/2345951/items/G4QLWFLC
8GKULRRX 10.1177/0013916509338147 https://www.zotero.org/groups/2345951/items/8GKULRRX
ANBAR4K2 10.1186/2041-7136-2-11 https://www.zotero.org/groups/2345951/items/ANBAR4K2
8BNSTTCT 10.1186/2041-7136-2-11 https://www.zotero.org/groups/2345951/items/8BNSTTCT
WBN7Y4ZM 10.1186/s13002-015-0036-0 https://www.zotero.org/groups/2345951/items/WBN7Y4ZM
96SNHA2Z 10.1186/s13002-015-0036-0 https://www.zotero.org/groups/2345951/items/96SNHA2Z
THUVEBB4 10.1186/s13705-015-0045-9 https://www.zotero.org/groups/2345951/items/THUVEBB4
3SAQGYUH 10.1186/s13705-015-0045-9 https://www.zotero.org/groups/2345951/items/3SAQGYUH
E7TMSRX8 10.1198/1061860031356 https://www.zotero.org/groups/2345951/items/E7TMSRX8
GA62MQA2 10.1198/1061860031356 https://www.zotero.org/groups/2345951/items/GA62MQA2
5WQNDRTZ 10.12775/eq.2014.008 https://www.zotero.org/groups/2345951/items/5WQNDRTZ
4AC89IR3 10.12775/eq.2014.008 https://www.zotero.org/groups/2345951/items/4AC89IR3
S7ESUSK6 10.12942/lrlr-2007-2 https://www.zotero.org/groups/2345951/items/S7ESUSK6
WTHV7FTH 10.12942/lrlr-2007-2 https://www.zotero.org/groups/2345951/items/WTHV7FTH
H8K4ZPAC 10.13140/RG.2.1.3679.6565 https://www.zotero.org/groups/2345951/items/H8K4ZPAC
TELRXBHF 10.13140/RG.2.1.3679.6565 https://www.zotero.org/groups/2345951/items/TELRXBHF
JEPC6Z6W 10.13140/RG.2.1.3679.6565 https://www.zotero.org/groups/2345951/items/JEPC6Z6W
V2GMAKMP 10.13140/RG.2.1.4312.2807 https://www.zotero.org/groups/2345951/items/V2GMAKMP
ZBQ5GDD3 10.13140/RG.2.1.4312.2807 https://www.zotero.org/groups/2345951/items/ZBQ5GDD3
TEU9U5Q6 10.1371/journal.pbio.1001127 https://www.zotero.org/groups/2345951/items/TEU9U5Q6
LDHJYC4Y 10.1371/journal.pbio.1001127 https://www.zotero.org/groups/2345951/items/LDHJYC4Y
R3CZHDAX 10.1371/journal.pbio.1002074 https://www.zotero.org/groups/2345951/items/R3CZHDAX
Z75YC5PD 10.1371/journal.pbio.1002074 https://www.zotero.org/groups/2345951/items/Z75YC5PD
Q87RZPYE 10.1371/journal.pone.0011842 https://www.zotero.org/groups/2345951/items/Q87RZPYE
XA3Y6AB5 10.1371/journal.pone.0011842 https://www.zotero.org/groups/2345951/items/XA3Y6AB5
TMSQ6HHM 10.1371/journal.pone.0038970 https://www.zotero.org/groups/2345951/items/TMSQ6HHM
VLWLUFFE 10.1371/journal.pone.0038970 https://www.zotero.org/groups/2345951/items/VLWLUFFE
Z236Z3C2 10.1371/journal.pone.0067737 https://www.zotero.org/groups/2345951/items/Z236Z3C2
PLATNDBN 10.1371/journal.pone.0067737 https://www.zotero.org/groups/2345951/items/PLATNDBN
R2AIID9Q 10.1371/journal.pone.0067737 https://www.zotero.org/groups/2345951/items/R2AIID9Q
TCFXKV9H 10.1371/journal.pone.0073249 https://www.zotero.org/groups/2345951/items/TCFXKV9H
AYSLPLA3 10.1371/journal.pone.0073249 https://www.zotero.org/groups/2345951/items/AYSLPLA3
H4TKU4H6 10.1371/journal.pone.0073249 https://www.zotero.org/groups/2345951/items/H4TKU4H6
A9JBN4VB 10.1371/journal.pone.0074989 https://www.zotero.org/groups/2345951/items/A9JBN4VB
TK462BQS 10.1371/journal.pone.0074989 https://www.zotero.org/groups/2345951/items/TK462BQS
Z6H2W3WW 10.1371/journal.pone.0082996 https://www.zotero.org/groups/2345951/items/Z6H2W3WW
P2794G4B 10.1371/journal.pone.0082996 https://www.zotero.org/groups/2345951/items/P2794G4B
WVB3D3F6 10.1371/journal.pone.0082996 https://www.zotero.org/groups/2345951/items/WVB3D3F6
GTJICDZX 10.1371/journal.pone.0091841 https://www.zotero.org/groups/2345951/items/GTJICDZX
95PKRD9Q 10.1371/journal.pone.0091841 https://www.zotero.org/groups/2345951/items/95PKRD9Q
PZYY65FJ 10.1371/journal.pone.0107522 https://www.zotero.org/groups/2345951/items/PZYY65FJ
BJXD5QXJ 10.1371/journal.pone.0107522 https://www.zotero.org/groups/2345951/items/BJXD5QXJ
HUIP936T 10.1371/journal.pone.0107572 https://www.zotero.org/groups/2345951/items/HUIP936T
FA586GPL 10.1371/journal.pone.0107572 https://www.zotero.org/groups/2345951/items/FA586GPL
ZDPLRWF4 10.1371/journal.pone.0107572 https://www.zotero.org/groups/2345951/items/ZDPLRWF4
62EHI86C 10.1371/journal.pone.0159545 https://www.zotero.org/groups/2345951/items/62EHI86C
8BQN47DN 10.1371/journal.pone.0159545 https://www.zotero.org/groups/2345951/items/8BQN47DN
X7K5WC8I 10.14214/sf.446 https://www.zotero.org/groups/2345951/items/X7K5WC8I
2CXIAV3P 10.14214/sf.446 https://www.zotero.org/groups/2345951/items/2CXIAV3P
GMV26WIQ 10.14233/ajchem.2014.15748 https://www.zotero.org/groups/2345951/items/GMV26WIQ
JZG623TA 10.14233/ajchem.2014.15748 https://www.zotero.org/groups/2345951/items/JZG623TA
8LMIYY8L 10.1515/agp-2016-0024 https://www.zotero.org/groups/2345951/items/8LMIYY8L
RW44KUY6 10.1515/agp-2016-0024 https://www.zotero.org/groups/2345951/items/RW44KUY6
JMUNBAEN 10.1515/mammalia-2014-0151 https://www.zotero.org/groups/2345951/items/JMUNBAEN
3553G7I5 10.1515/mammalia-2014-0151 https://www.zotero.org/groups/2345951/items/3553G7I5
7RUZBUTX 10.1525/bio.2010.60.8.4 https://www.zotero.org/groups/2345951/items/7RUZBUTX
W52IID35 10.1525/bio.2010.60.8.4 https://www.zotero.org/groups/2345951/items/W52IID35
IUHV4WI2 10.1525/bio.2012.62.7.8 https://www.zotero.org/groups/2345951/items/IUHV4WI2
CUNET9NX 10.1525/bio.2012.62.7.8 https://www.zotero.org/groups/2345951/items/CUNET9NX
24AMRN7F 10.1560/IJEE.55.3.263 https://www.zotero.org/groups/2345951/items/24AMRN7F
D6TTBDBH 10.1560/IJEE.55.3.263 https://www.zotero.org/groups/2345951/items/D6TTBDBH
NFYBPGET 10.1641/B570306 https://www.zotero.org/groups/2345951/items/NFYBPGET
KKW4VFIC 10.1641/B570306 https://www.zotero.org/groups/2345951/items/KKW4VFIC
8ECLINHE 10.1659/0276-4741(2003)023[0119:spmika]2.0.co;2 https://www.zotero.org/groups/2345951/items/8ECLINHE
UDTAUGGY 10.1659/0276-4741(2003)023[0119:spmika]2.0.co;2 https://www.zotero.org/groups/2345951/items/UDTAUGGY
AUGBMY74 10.17099/jffiu.48603 https://www.zotero.org/groups/2345951/items/AUGBMY74
7AJX92BA 10.17099/jffiu.48603 https://www.zotero.org/groups/2345951/items/7AJX92BA
JCVJZBWV 10.18352/ijc.367 https://www.zotero.org/groups/2345951/items/JCVJZBWV
7WF3XVWJ 10.18352/ijc.367 https://www.zotero.org/groups/2345951/items/7WF3XVWJ
9VWIB9HK 10.1890/06-1661.1 https://www.zotero.org/groups/2345951/items/9VWIB9HK
JVNHJ67J 10.1890/06-1661.1 https://www.zotero.org/groups/2345951/items/JVNHJ67J
TDW5YLEW 10.1890/08-1140.1 https://www.zotero.org/groups/2345951/items/TDW5YLEW
W7ZDYHXF 10.1890/08-1140.1 https://www.zotero.org/groups/2345951/items/W7ZDYHXF
KZ55G3MT 10.1890/08-1140.1 https://www.zotero.org/groups/2345951/items/KZ55G3MT
RVI4NWE4 10.1890/08-2131.1 https://www.zotero.org/groups/2345951/items/RVI4NWE4
S236Z94A 10.1890/08-2131.1 https://www.zotero.org/groups/2345951/items/S236Z94A
L5U3N4KJ 10.1890/080023 https://www.zotero.org/groups/2345951/items/L5U3N4KJ
83KERVZB 10.1890/080023 https://www.zotero.org/groups/2345951/items/83KERVZB
CB68K625 10.1890/080023 https://www.zotero.org/groups/2345951/items/CB68K625
FVN64BW4 10.1890/080023 https://www.zotero.org/groups/2345951/items/FVN64BW4
I9ZUB2GR 10.1890/080023 https://www.zotero.org/groups/2345951/items/I9ZUB2GR
7Z7M6P9I 10.1890/080023 https://www.zotero.org/groups/2345951/items/7Z7M6P9I
WM82VG5G 10.1890/080023 https://www.zotero.org/groups/2345951/items/WM82VG5G
8QWWT83V 10.1890/080083 https://www.zotero.org/groups/2345951/items/8QWWT83V
ICMPDJU2 10.1890/080083 https://www.zotero.org/groups/2345951/items/ICMPDJU2
TYZ9KQU8 10.1890/10-0645.1 https://www.zotero.org/groups/2345951/items/TYZ9KQU8
5ZFNAGSQ 10.1890/10-0645.1 https://www.zotero.org/groups/2345951/items/5ZFNAGSQ
IPYNP6B9 10.1890/10-1245.1 https://www.zotero.org/groups/2345951/items/IPYNP6B9
VI68NP93 10.1890/10-1245.1 https://www.zotero.org/groups/2345951/items/VI68NP93
JDBYXV69 10.1890/15-0016.1 https://www.zotero.org/groups/2345951/items/JDBYXV69
I6C4WZJZ 10.1890/15-0016.1 https://www.zotero.org/groups/2345951/items/I6C4WZJZ
N62UW587 10.1899/08-171.1 https://www.zotero.org/groups/2345951/items/N62UW587
JH6I6RCH 10.1899/08-171.1 https://www.zotero.org/groups/2345951/items/JH6I6RCH
K4L36IE6 10.2111/REM-D-13-00082.1 https://www.zotero.org/groups/2345951/items/K4L36IE6
SGS8I3DP 10.2111/REM-D-13-00082.1 https://www.zotero.org/groups/2345951/items/SGS8I3DP
XRS6IG8G 10.2111/REM-D-13-00082.1 https://www.zotero.org/groups/2345951/items/XRS6IG8G
LEDV4ZY3 10.2111/REM-D-13-00082.1 https://www.zotero.org/groups/2345951/items/LEDV4ZY3
DTU2HNNZ 10.2112/si61-001.14 https://www.zotero.org/groups/2345951/items/DTU2HNNZ
YZ6EAVLN 10.2112/si61-001.14 https://www.zotero.org/groups/2345951/items/YZ6EAVLN
7G9CVU22 10.2134/jeq2011.0439 https://www.zotero.org/groups/2345951/items/7G9CVU22
LS6I74C2 10.2134/jeq2011.0439 https://www.zotero.org/groups/2345951/items/LS6I74C2
M6BI35G5 10.2136/vzj2012.0114 https://www.zotero.org/groups/2345951/items/M6BI35G5
UTTTGX3H 10.2136/vzj2012.0114 https://www.zotero.org/groups/2345951/items/UTTTGX3H
AEVLEBB3 10.2192/1537-6176-19.2.146 https://www.zotero.org/groups/2345951/items/AEVLEBB3
AXIIICVW 10.2192/1537-6176-19.2.146 https://www.zotero.org/groups/2345951/items/AXIIICVW
PEWRXUHZ 10.2192/ursus-d-10-00016.1 https://www.zotero.org/groups/2345951/items/PEWRXUHZ
BNSN3P2T 10.2192/ursus-d-10-00016.1 https://www.zotero.org/groups/2345951/items/BNSN3P2T
CKUZZWGN 10.2192/ursus-d-12-00016.1 https://www.zotero.org/groups/2345951/items/CKUZZWGN
HU7U45JF 10.2192/ursus-d-12-00016.1 https://www.zotero.org/groups/2345951/items/HU7U45JF
GHJAUAEN 10.2192/ursus-d-12-00031r1.1 https://www.zotero.org/groups/2345951/items/GHJAUAEN
8FRMSFXY 10.2192/ursus-d-12-00031r1.1 https://www.zotero.org/groups/2345951/items/8FRMSFXY
62PCPMTA 10.2193/2006-368 https://www.zotero.org/groups/2345951/items/62PCPMTA
YSSQPJ2Z 10.2193/2006-368 https://www.zotero.org/groups/2345951/items/YSSQPJ2Z
TEKI99B7 10.2307/20870195 https://www.zotero.org/groups/2345951/items/TEKI99B7
B56A4YWJ 10.2307/20870195 https://www.zotero.org/groups/2345951/items/B56A4YWJ
FCUBNRAR 10.2307/2987710 https://www.zotero.org/groups/2345951/items/FCUBNRAR
IASUDSRM 10.2307/2987710 https://www.zotero.org/groups/2345951/items/IASUDSRM
4SWFU4EG 10.2307/2999742 https://www.zotero.org/groups/2345951/items/4SWFU4EG
YXWUGUQT 10.2307/2999742 https://www.zotero.org/groups/2345951/items/YXWUGUQT
LKEALVAM 10.2747/1539-7216.53.4.527 https://www.zotero.org/groups/2345951/items/LKEALVAM
EIGHFCNE 10.2747/1539-7216.53.4.527 https://www.zotero.org/groups/2345951/items/EIGHFCNE
3QNJNXKP 10.2750/arp.36.13 https://www.zotero.org/groups/2345951/items/3QNJNXKP
BCB5RQRC 10.2750/arp.36.13 https://www.zotero.org/groups/2345951/items/BCB5RQRC
84CU8UYB 10.2750/arp.36.13 https://www.zotero.org/groups/2345951/items/84CU8UYB
Q6VQ36VJ 10.2750/arp.36.13 https://www.zotero.org/groups/2345951/items/Q6VQ36VJ
7NF7FVD9 10.2779/39229 https://www.zotero.org/groups/2345951/items/7NF7FVD9
E5VZGDGB 10.2779/39229 https://www.zotero.org/groups/2345951/items/E5VZGDGB
J8H8TC2K 10.2981/09-059 https://www.zotero.org/groups/2345951/items/J8H8TC2K
CYZENTGE 10.2981/09-059 https://www.zotero.org/groups/2345951/items/CYZENTGE
PL9YC42S 10.2981/0909-6396(2008)14[188:pebmms]2.0.co;2 https://www.zotero.org/groups/2345951/items/PL9YC42S
T5FCLBCH 10.2981/0909-6396(2008)14[188:pebmms]2.0.co;2 https://www.zotero.org/groups/2345951/items/T5FCLBCH
XXCQXJRX 10.2981/wlb.00011 https://www.zotero.org/groups/2345951/items/XXCQXJRX
URG2C9BR 10.2981/wlb.00011 https://www.zotero.org/groups/2345951/items/URG2C9BR
ER8SM5AC 10.2981/wlb.00013 https://www.zotero.org/groups/2345951/items/ER8SM5AC
ISQHETX7 10.2981/wlb.00013 https://www.zotero.org/groups/2345951/items/ISQHETX7
F3XPRR6N 10.2981/wlb.00068 https://www.zotero.org/groups/2345951/items/F3XPRR6N
PAX7C95J 10.2981/wlb.00068 https://www.zotero.org/groups/2345951/items/PAX7C95J
GJPLM4N5 10.2981/wlb.00098 https://www.zotero.org/groups/2345951/items/GJPLM4N5
F8AZSX9N 10.2981/wlb.00098 https://www.zotero.org/groups/2345951/items/F8AZSX9N
BA2LVM3D 10.2981/wlb.13116 https://www.zotero.org/groups/2345951/items/BA2LVM3D
D5RWMECZ 10.2981/wlb.13116 https://www.zotero.org/groups/2345951/items/D5RWMECZ
6V4S8P3R 10.3000/17252555.L_2009.140.eng https://www.zotero.org/groups/2345951/items/6V4S8P3R
VJ9ICZSL 10.3000/17252555.L_2009.140.eng https://www.zotero.org/groups/2345951/items/VJ9ICZSL
CF88QIBH 10.3000/17252555.L_2009.140.eng https://www.zotero.org/groups/2345951/items/CF88QIBH
TTUJU5NK 10.3167/082279405781826191 https://www.zotero.org/groups/2345951/items/TTUJU5NK
77E8TK4J 10.3167/082279405781826191 https://www.zotero.org/groups/2345951/items/77E8TK4J
4KAZCNDE 10.3170/2008-7-18348 https://www.zotero.org/groups/2345951/items/4KAZCNDE
PGD8EYY4 10.3170/2008-7-18348 https://www.zotero.org/groups/2345951/items/PGD8EYY4
KZ2WHJCY 10.3354/cr01398 https://www.zotero.org/groups/2345951/items/KZ2WHJCY
GB5SG4U4 10.3354/cr01398 https://www.zotero.org/groups/2345951/items/GB5SG4U4
E5EWBDW3 10.3389/fmars.2017.00072 https://www.zotero.org/groups/2345951/items/E5EWBDW3
BYG4JKHS 10.3389/fmars.2017.00072 https://www.zotero.org/groups/2345951/items/BYG4JKHS
VSSQ93Z8 10.3389/fmars.2017.00136 https://www.zotero.org/groups/2345951/items/VSSQ93Z8
HEZDHNZK 10.3389/fmars.2017.00136 https://www.zotero.org/groups/2345951/items/HEZDHNZK
8Y4ZTMSI 10.3389/fmars.2017.00245 https://www.zotero.org/groups/2345951/items/8Y4ZTMSI
WCZYCLEA 10.3389/fmars.2017.00245 https://www.zotero.org/groups/2345951/items/WCZYCLEA
3M6PTHFT 10.3389/fphar.2013.00177 https://www.zotero.org/groups/2345951/items/3M6PTHFT
P238JLGJ 10.3389/fphar.2013.00177 https://www.zotero.org/groups/2345951/items/P238JLGJ
EEFCMHM3 10.3390/su7067644 https://www.zotero.org/groups/2345951/items/EEFCMHM3
E8ZZMKRJ 10.3390/su7067644 https://www.zotero.org/groups/2345951/items/E8ZZMKRJ
WNNAZH2N 10.3390/su9071113 https://www.zotero.org/groups/2345951/items/WNNAZH2N
JJ8MEJ55 10.3390/su9071113 https://www.zotero.org/groups/2345951/items/JJ8MEJ55
HX8HFGWF 10.3390/w7094657 https://www.zotero.org/groups/2345951/items/HX8HFGWF
WWAASUGZ 10.3390/w7094657 https://www.zotero.org/groups/2345951/items/WWAASUGZ
2S2I69XY 10.3391/ai.2014.9.4.01 https://www.zotero.org/groups/2345951/items/2S2I69XY
YCH4HTPG 10.3391/ai.2014.9.4.01 https://www.zotero.org/groups/2345951/items/YCH4HTPG
SELYLHY8 10.3402/iee.v5.30082 https://www.zotero.org/groups/2345951/items/SELYLHY8
QGDFD2UA 10.3402/iee.v5.30082 https://www.zotero.org/groups/2345951/items/QGDFD2UA
HEIZNTWY 10.3402/iee.v5.30082 https://www.zotero.org/groups/2345951/items/HEIZNTWY
G4BW7UTC 10.3897/biorisk.4.42 https://www.zotero.org/groups/2345951/items/G4BW7UTC
EP9GTQFT 10.3897/biorisk.4.42 https://www.zotero.org/groups/2345951/items/EP9GTQFT
M3ZA5UXK 10.3934/agrfood.2016.2.144 https://www.zotero.org/groups/2345951/items/M3ZA5UXK
CAW6SIT7 10.3934/agrfood.2016.2.144 https://www.zotero.org/groups/2345951/items/CAW6SIT7
EU4GX72N 10.4404/hystrix-23.1-4560 https://www.zotero.org/groups/2345951/items/EU4GX72N
MRY65EWW 10.4404/hystrix-23.1-4560 https://www.zotero.org/groups/2345951/items/MRY65EWW
76Z2PADA 10.5194/hess-16-2035-2012 https://www.zotero.org/groups/2345951/items/76Z2PADA
LBEWNVDH 10.5194/hess-16-2035-2012 https://www.zotero.org/groups/2345951/items/LBEWNVDH
QGN7N8BU 10.5194/hess-17-5141-2013 https://www.zotero.org/groups/2345951/items/QGN7N8BU
3LJWK5FI 10.5194/hess-17-5141-2013 https://www.zotero.org/groups/2345951/items/3LJWK5FI
K56LDTAQ 10.5194/soil-2-79-2016 https://www.zotero.org/groups/2345951/items/K56LDTAQ
4C2CRY3N 10.5194/soil-2-79-2016 https://www.zotero.org/groups/2345951/items/4C2CRY3N
ZMAXLXNE 10.5194/we-15-49-2015 https://www.zotero.org/groups/2345951/items/ZMAXLXNE
CISXDYBZ 10.5194/we-15-49-2015 https://www.zotero.org/groups/2345951/items/CISXDYBZ
RAVH5JCL 10.5268/iw-1.2.359 https://www.zotero.org/groups/2345951/items/RAVH5JCL
AMWGAEYA 10.5268/iw-1.2.359 https://www.zotero.org/groups/2345951/items/AMWGAEYA
GM5JGWAY 10.5268/iw-1.2.359 https://www.zotero.org/groups/2345951/items/GM5JGWAY
SMWE9Y5G 10.5586/asbp.3483 https://www.zotero.org/groups/2345951/items/SMWE9Y5G
UL9Y4BVN 10.5586/asbp.3483 https://www.zotero.org/groups/2345951/items/UL9Y4BVN
YIRPMJ2A 10.5751/ES-03476-150318 https://www.zotero.org/groups/2345951/items/YIRPMJ2A
U6JSV7KM 10.5751/ES-03476-150318 https://www.zotero.org/groups/2345951/items/U6JSV7KM
7KKRW884 10.5751/ES-05035-170440 https://www.zotero.org/groups/2345951/items/7KKRW884
EGWGJFXF 10.5751/ES-05035-170440 https://www.zotero.org/groups/2345951/items/EGWGJFXF
V9MPTDEV 10.5751/ES-05480-180242 https://www.zotero.org/groups/2345951/items/V9MPTDEV
38IFPKSJ 10.5751/ES-05480-180242 https://www.zotero.org/groups/2345951/items/38IFPKSJ
V55XBZQK 10.5751/ES-05597-180333 https://www.zotero.org/groups/2345951/items/V55XBZQK
CZZWC6JA 10.5751/ES-05597-180333 https://www.zotero.org/groups/2345951/items/CZZWC6JA
VLW8PW7G 10.5751/ES-05597-180333 https://www.zotero.org/groups/2345951/items/VLW8PW7G
J6V7BDG8 10.5751/ES-05619-180307 https://www.zotero.org/groups/2345951/items/J6V7BDG8
AW6JIMAP 10.5751/ES-05619-180307 https://www.zotero.org/groups/2345951/items/AW6JIMAP
QA4HDI4P 10.5751/ES-06401-190227 https://www.zotero.org/groups/2345951/items/QA4HDI4P
H9LZNEUQ 10.5751/ES-06401-190227 https://www.zotero.org/groups/2345951/items/H9LZNEUQ
ZSNV4Q9F 10.5751/ES-06915-190432 https://www.zotero.org/groups/2345951/items/ZSNV4Q9F
D4PSH9CK 10.5751/ES-06915-190432 https://www.zotero.org/groups/2345951/items/D4PSH9CK
8NT3HZZQ 10.5751/ES-07607-200332 https://www.zotero.org/groups/2345951/items/8NT3HZZQ
YCI8ZTUV 10.5751/ES-07607-200332 https://www.zotero.org/groups/2345951/items/YCI8ZTUV
M6BIDFIC 10.5751/ES-07607-200332 https://www.zotero.org/groups/2345951/items/M6BIDFIC
NCRJFFM5 10.5751/ES-07868-200344 https://www.zotero.org/groups/2345951/items/NCRJFFM5
SRDSKWMY 10.5751/ES-07868-200344 https://www.zotero.org/groups/2345951/items/SRDSKWMY
7UMGYR8E 10.5751/ES-08964-210446 https://www.zotero.org/groups/2345951/items/7UMGYR8E
J3JKGGPA 10.5751/ES-08964-210446 https://www.zotero.org/groups/2345951/items/J3JKGGPA
C8TM98VW 10.5751/es-00672-090304 https://www.zotero.org/groups/2345951/items/C8TM98VW
3S98NZ8U 10.5751/es-00672-090304 https://www.zotero.org/groups/2345951/items/3S98NZ8U
8N29THLL 10.7717/peerj.1545 https://www.zotero.org/groups/2345951/items/8N29THLL
3Q8CXE4F 10.7717/peerj.1545 https://www.zotero.org/groups/2345951/items/3Q8CXE4F
3PXQ9JFS 2036 https://www.zotero.org/groups/2345951/items/3PXQ9JFS
WLUNBNQ9 2036 https://www.zotero.org/groups/2345951/items/WLUNBNQ9
IXDDSVDW 23 https://www.zotero.org/groups/2345951/items/IXDDSVDW
HJXCMV2N 23 https://www.zotero.org/groups/2345951/items/HJXCMV2N
S9FKHH8U 23 https://www.zotero.org/groups/2345951/items/S9FKHH8U
SVIP75QG 23 https://www.zotero.org/groups/2345951/items/SVIP75QG
Q54NAX8R citeulike-article-id:4423649 https://www.zotero.org/groups/2345951/items/Q54NAX8R
A8292FHY citeulike-article-id:4423649 https://www.zotero.org/groups/2345951/items/A8292FHY

Non Standard

All DOIs should be given as only the DOI without the resolver, i.e. not starting with http. The following table shows all entries which do have a non-conform DOI:

Show the code
#|

http <- grep("http", bib_data$metrics$zotero_dois$id_raw)
data.frame(
  doi = bib_data$metrics$zotero_dois$id_raw[http],
  link = paste0(bib_data$bibliography$url, "/items/", names(bib_data$metrics$zotero_dois$id_raw)[http])
) |>
  dplyr::mutate(
    doi = paste0('<a href="', link, '" target="_blank">', doi, "</a>"),
    link = NULL
  ) |>
  knitr::kable(
    caption = "DOIs in Zenodo which include a `http`",
    escape = FALSE
  )
DOIs in Zenodo which include a http
doi
R6UYILZI http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32006L0118
JSPVP5K8 http://ec.europa.eu/clima/policies/international/negotiations/paris/index_en.htm
ISVWAPGT http://dx.doi.org/10.1016/j.envsci.2015.12.003
7IJQGZMM http://conventions.coe.int/Treaty/en/Treaties/Html/176.htm
E66G8EJW http://dx.doi.org/10.1016/j.biocon.2011.11.001
DRFUZC4Q http://dx.doi.org/10.1016/j.agee.2009.05.012
IG6R87YI http://dx.doi.org/10.1016/j.jmarsys.2015.07.006
YIMPQGK3 http://dx.doi.org/10.2305/IUCN.UK.2006.RLTS.T61454A12488658.en
BL42AHVL http://www.nature.com/nclimate/journal/v3/n1/abs/nclimate1627.html#supplementary-information
PG5G9R6W http://dx.doi.org/10.2305/IUCN.UK.2009.RLTS.T164583A5910262.en
W4BYUA65 10.1038/nature16144 http://www.nature.com/nature/journal/v528/n7580/abs/nature16144.html#supplementary-information
IV6ZR4VU http://www.nature.com/nature/journal/v475/n7354/abs/475036a.html#supplementary-information
5S28VQ9P http://dx.doi.org/10.1093/femsle/fnv188
VE53T7GJ http://dx.doi.org/10.1016/j.tree.2013.11.004
74TTCPVT http://dx.doi.org/10.1016/j.ecss.2016.03.015
FCE2E5ZU 10.1038/ncomms14435 http://www.nature.com/articles/ncomms14435#supplementary-information
HQBZAVTR https://www.pik-potsdam.de/ateam/avec/paper_russo.pdf
JVDJ3SJF http://dx.doi.org/10.1016/j.biocon.2003.12.008
6ZT4GCDT http://dx.doi.org/10.1016/j.foreco.2006.02.009
H8Y8S7CM http://dx.doi.org/10.1016/S0169-2046(03)00094-X
PMPTWIAZ http://dx.doi.org/10.1016/j.jmarsys.2009.12.014
U24VTIR9 http://dx.doi.org/10.1016/j.pocean.2010.09.005
ZWDQ22WW 10.1038/nature13717 http://www.nature.com/nature/journal/v513/n7517/abs/nature13717.html#supplementary-information
3TM8A3ID http://dx.doi.org/10.1016/j.marenvres.2012.12.008
KKLAXUK4 http://dx.doi.org/10.2305/IUCN.UK.1996.RLTS.T22200A9364253.en
GVG9DK4H http://dx.doi.org/10.1016/j.pocean.2004.02.017
R2I638UU http://dx.doi.org/10.1016/S1146-609X(02)01145-1
M24DS7GT http://dx.doi.org/10.1016/j.tree.2004.10.004
W9M8ZKY3 http://dx.doi.org/10.1016/j.biocon.2011.02.003
WG9LXRZV http://dx.doi.org/10.2305/IUCN.UK.2009.RLTS.T164759A5923724.en
YAF7DQW7 http://dx.doi.org/10.2305/IUCN.UK.2009.RLTS.T164647A5915480.en
ZG5DDSIL http://doi.org/10.1560/IJES.58.1.41
5JV4J9TW http://dx.doi.org/10.1016/j.envsci.2015.12.003
P53IJH2V 10.1016/j.amepre.2015.01.017 LK - http://sfx.aub.aau.dk/sfxaub?sid=EMBASE&issn=18732607&id=doi:10.1016%2Fj.amepre.2015.01.017&atitle=Neighborhood+Environments+and+Socioeconomic+Inequalities+in+Mental+Well-Being&stitle=Am.+J.+Prev.+Med.&title=American+Journal+of+Preventive+Medicine&volume=49&issue=1&spage=80&epage=84&aulast=Mitchell&aufirst=Richard+J.&auinit=R.J.&aufull=Mitchell+R.J.&coden=AJPME&isbn=&pages=80-84&date=2015&auinit1=R&auinitm=J
CRZBIV6W http://dx.doi.org/10.1016/j.landurbplan.2013.09.013
62EHI86C http://dx.doi.org/10.1371/journal.pone.0159545
KKVRCNRU http://dx.doi.org/10.1038/ngeo233
6THCY95S https://doi.org/10.1080/00139157.2014.861673
BUMU2VXR https://doi.org/10.1016/j.tree.2011.08.006
4QX7YJ4J http://dx.doi.org/10.1080/15387216.2017.1295876
SQVQVWVS https://doi.org/10.1016/j.worlddev.2016.12.030
5XG4A7JG http://dx.doi.org/10.1016/j.foreco.2011.04.004
WK392FV5 http://dx.doi.org/10.1016/j.seares.2015.06.020
B74VUUPF http://dx.doi.org/10.1016/j.biocon.2011.12.035

Not Valid

Here we do acheck for the structural validity of the dois. This check needs to be improved. Of these 880 are not valid. These are:

Show the code
#|

if (length(bib_data$metrics$zotero_dois$not_valid) > 0) {
  data.frame(
    doi = bib_data$metrics$zotero_dois$not_valid,
    link = paste0(bib_data$bibliography$url, "/items/", names(bib_data$metrics$zotero_dois$not_valid))
  ) |>
    dplyr::mutate(
      doi = paste0('<a href="', link, '" target="_blank">', doi, "</a>"),
      link = NULL
    ) |>
    knitr::kable(
      caption = "DOIs in Zenodo which ar not valid",
      escape = FALSE
    )
} else {
  print("All DOIs in Zenodo are valid.")
}
DOIs in Zenodo which ar not valid
doi
BYWNMBQK 10.1579/0044-7447(2007)36[545:CBBCAH]2.0.CO;2
T7LYLN8M 32
UMSXXJQY 10.1890/1051-0761(2000)010[1251:ROTEKA]2.0.CO;2
4HFNA4BU Available online: www.colorado.edu/journals/cye
R6UYILZI http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32006L0118
JSPVP5K8 http://ec.europa.eu/clima/policies/international/negotiations/paris/index_en.htm
7PBUI9UX 10.1371/journal. pone.0132232
IXDDSVDW 23
ZF4L937H 10.1890/1540-9295(2006)004[0045:TGACET]2.0.CO;2
8ECLINHE 10.1659/0276-4741(2003)023[0119:spmika]2.0.co;2
PL9YC42S 10.2981/0909-6396(2008)14[188:pebmms]2.0.co;2
7IJQGZMM http://conventions.coe.int/Treaty/en/Treaties/Html/176.htm
XZ6MW22W 2004R0726 - v.7 of 05.06.2013
HJXCMV2N 23
BPFB6Z3B 10.1639/0044-7447(2005)034[0513:ICMFNR]2.0.CO;2
H79LMER9 10.2112/1551-5036(2004)020[0424:piosrf]2.0.co;2
TQI68GE9 Article
Q54NAX8R citeulike-article-id:4423649
S9FKHH8U 23
8FXARIG2 8
R6Y4TXW7 10.1641/b571105|issn 0006-3568
3AQFYCSF 10.1016/j.jtbi.2006.08.024|ISSN 0022-5193
PX7P4XEM e81358 10.1371/journal.pone.0081358
QX6TYPSE 10.1579/0044-7447(2007)36[323:asbasd]2.0.co;2
3CKC4HGM 10.1890/1051-0761(2000)010[0689:BICEGC]2.0.CO;2
XQ5T69TN L15715Artn l15715
HWADI6NZ 10.1007/s00334-005-0032-8|ISSN 0939-6314
92C5DKEH 10.1007/s00442-005-0299-6|ISSN 0029-8549
WVQ3K3LE 10.1016/s0065-2504(04)35005-1|issn 0065-2504
XQZW2PS2 10.1007/s00035-007-0797-8|ISSN 0253-1453
RN67WND9 10.1016/j.ecolmodel.2007.08.013|ISSN 0304-3800
BL42AHVL http://www.nature.com/nclimate/journal/v3/n1/abs/nclimate1627.html#supplementary-information
YAEU6VQL 10.1038/nature09705
AF6SGW3Q Doi 10.1614/Ws-09-096.1
5E3NFKJF e6825 10.1371/journal.pone.0006825
W4BYUA65 10.1038/nature16144 http://www.nature.com/nature/journal/v528/n7580/abs/nature16144.html#supplementary-information
DDV8Y9DL 10.1016/j.tree.2004.09.003|ISSN 0169-5347
IV6ZR4VU http://www.nature.com/nature/journal/v475/n7354/abs/475036a.html#supplementary-information
TPTJKKCJ 10.1016/j.tpb.2007.03.009|ISSN 0040-5809
NIWZ3E8T 10.1890/1051-0761(2003)013[0842:DMATOH]2.0.CO;2
YLVWC8M7 10.1641/b571106|issn 0006-3568
5QVV2CEE 10.1093/aob/mcm259|ISSN 0305-7364
VLQTSY6W 10.3170/2007-8-18342|issn 1100-9233
TVB2SYQY 10.1073/pnas.0701424104|ISSN 0027-8424
NJVKS5IW 10.1051/forest:2007086|ISSN 1286-4560
S95REDCQ 10.1016/j.ecolmodel.2006.10.009|ISSN 0304-3800
QXGA7XZ9 10.1016/j.ecolmodel.2003.12.055|ISSN 0304-3800
S3VR973Y 10.1111/j.1461-0248.2004.00720.x|ISSN 1461-023X
3PXQ9JFS 2036
FCE2E5ZU 10.1038/ncomms14435 http://www.nature.com/articles/ncomms14435#supplementary-information
827Y2DDH 10.1093/aob/mcl283|ISSN 0305-7364
ZBTAEM6H 10.1890/1051-0761(2002)012[0927:aamiip]2.0.co;2
RM83APEW e70 10.1371/journal.pgen.0010070
PY6YHZSU 10.1890/0012-9658(2003)084[0777:eafrpa]2.0.co;2
HQBZAVTR https://www.pik-potsdam.de/ateam/avec/paper_russo.pdf
TK5XUQNQ 10.1016/j.tpb.2003.09.002|ISSN 0040-5809
R7DACVFB 10.1890/1540-9295(2003)001[0469:mmritf]2.0.co;2
6ZPT6TKD 10.1672/0277-5212(2001)021[0093:acauop]2.0.co;2
YBNSKUHX 10.1641/0006-3568(2001)051[0933:TEOTWA]2.0.CO;2
97W2I9JC 10.1641/0006-3568(2006)56[987:AGCFSE]2.0.CO;2
G9E68QZN 10.1658/1100-9233(2005)016[0655:fpdisb]2.0.co;2
IJSYNWIQ 10.1111/j.1365-2745.2007.01332.x|ISSN 0022-0477
C69I7I27 citeulike-article-id:287784
XTWNXM2E 10.1111/j.1365-2745.2007.01333.x|ISSN 0022-0477
G7PY7J2I 10.1890/0012-9658(2006)87[1489:TEOPDA]2.0.CO;2
7GD9RDWJ 10.1139/x07-112|issn 0045-5067
VYZDXN2R 10.1007/s11284-006-0168-8|ISSN 0912-3814
492QIUZ4 :10.1016/j.biocon.2008.11.007
R575AA2W L07608 10.1029/2008gl037155
K9F8U3P6 10.1007/s10310-006-0205-z|ISSN 1341-6979
MC432LHX 10.1007/s11258-006-9197-1|ISSN 1385-0237
ZWDQ22WW 10.1038/nature13717 http://www.nature.com/nature/journal/v513/n7517/abs/nature13717.html#supplementary-information
ZXKFNSKX 10.1641/0006-3568(2005)055[0851:potapf]2.0.co;2
7CSE77J5 10.1890/0012-9658(2000)081[0607:EAROMA]2.0.CO;2
WLUNBNQ9 2036
PZQJ5X5T 10.1890/0012-9658(2001)082[1999:bcawpe]2.0.co;2
DAPJ5PXU 10.1554/0014-3820(2002)056[2383:pbwgbt]2.0.co;2
WHLKHTIW 10.1672/0277-5212(2006)26[79:teoalu]2.0.co;2
QS2VCRNR 10.1139/x06-166|issn 0045-5067
FW7B3LPR ICES CM 2014/ACOM:10
799JIWBA 10.1641/0006-3568(2002)052[0473:SEATFB]2.0.CO;2
SVPH8MTN 10.1890/0012-9658(2006)87[1234:TIOPOT]2.0.CO;2
JB36CKJH 10.1890/1051-0761(1999)009[1439:fitcop]2.0.co;2
JFW5MUSU 10.1111/j.1365-2745.2007.01319.x|ISSN 0022-0477
PJ4ES5MB e40205 10.1371/journal.pone.0040205
D5TGBZTX 10.1
Y3CZ5KJV 10.1890/0012-9658(2006)87[1915:HLTCAT]2.0.CO;2
2MBQGC92 10.1890/1540-9295(2004)002[0513:IPIWEM]2.0.CO;2
V39BMJYK e12767 10.1371/journal.pone.0012767
2JUYCMGA 1 10.5751/ace-00521-070201
KHS8DC75 10.1016/s0040-5809(03)00094-7|issn 0040-5809
FU3B3LID 10.1659/0276-4741(2007)27[66:MTBIOG]2.0.CO;2
I3IVJJEN L16710Artn l16710
8BB9MS42 10.1007/s10980-007-9133-3|ISSN 0921-2973
ZWZGUR83 DOI: 10.1126/science.1183506
88P8SW47 10.1890/0012-9615(1998)068[0213:sassor]2.0.co;2
4FMX2PHP 10.1006
WUZ8JRFX 10.1111/j.1365-2745.2007.01219.x|ISSN 0022-0477
J9B67LK9 10.1007/s10530-007-9135-8|ISSN 1387-3547
49E8LKGJ Pii s0025-326x(01)00150-3 10.1016/s0025-326x(01)00150-3
AF696JBD 10.1641/0006-3568(2004)054[0767:TROBIT]2.0.CO;2
7AZRY3M6 10.1890/0012-9615(1999)069[0491:ROTPTE]2.0.CO;2
D6KD9V8S 10.1641/0006-3568(2005)055[1041:ooiw]2.0.co;2
ERKJY945 10.1890/1540-9295(2004)002[0191:ELP]2.0.CO;2
5DUAUDZN 10.1890/1051-0761(2000)010[1590:BRTCE]2.0.CO;2
5JTB9VIT 10.1890/1540-9295(2007)5[199:IASIAE]2.0.CO;2
FT7SKBWY 10.1890/0012-9658(2007)88[465:LFFNLT]2.0.CO;2
NHJUA2PL 10.1016/j.ecolmodel.2004.03.016|ISSN 0304-3800
74BENA8J 10.1175/1520-0442(2003)016<3560:COMAOT>2.0.CO;2
EQ7UIEUK 10.1641/0006-3568(2001)051[0933:teotwa]2.0.co;2
IJ67XAEZ 10.1890/1540-9295(2003)001[0298:RFAWWE]2.0.CO;2
HIHEHYWY 10.1641/0006-3568(2002)052[0143:pcaudf]2.0.co;2
A8292FHY citeulike-article-id:4423649
JYWFGQ5F 10.1890/1051-0761(2006)016[0963:MRRLPI]2.0.CO;2
UDTAUGGY 10.1659/0276-4741(2003)023[0119:spmika]2.0.co;2
NQYCC8EE 10.1579/0044-7447(2007)36[614:TAAHNO]2.0.CO;2
MKSW88P8 10.1175 /2018BAMSStateoftheClimate.1
KUIKGYDT 10.1899/0887-3593(2004)023<0251:eoldoo>2.0.co;2
RR5EUBIQ 10.1641/0006-3568(2001)051[0180:aditnu]2.0.co;2
GNKQQ4ZH 10.1641/0006-3568(2002)052[0143:PCAUDF]2.0.CO;2
T5FCLBCH 10.2981/0909-6396(2008)14[188:pebmms]2.0.co;2
2QBMNK5M 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z
RSYIP7IQ 10.2192/1537-6176(2006)17[67:BBPODS]2.0.CO;2
MG6J7GB8 978-2-8317-1694-7
9MWFXI5Z 10.1641/0006-3568(2001)051[0633:ticamo]2.0.co;2
8FW4LICZ 10.1890/1051-0761(2006)016[2064:DALAWA]2.0.CO;2
P53IJH2V 10.1016/j.amepre.2015.01.017 LK - http://sfx.aub.aau.dk/sfxaub?sid=EMBASE&issn=18732607&id=doi:10.1016%2Fj.amepre.2015.01.017&atitle=Neighborhood+Environments+and+Socioeconomic+Inequalities+in+Mental+Well-Being&stitle=Am.+J.+Prev.+Med.&title=American+Journal+of+Preventive+Medicine&volume=49&issue=1&spage=80&epage=84&aulast=Mitchell&aufirst=Richard+J.&auinit=R.J.&aufull=Mitchell+R.J.&coden=AJPME&isbn=&pages=80-84&date=2015&auinit1=R&auinitm=J
Q5KHHQHF 10.1577/1548-8446(1994)019<0006:uamifm>2.0.co;2
P58C7G8A 10.1663/0013-0001(2005)059[0122:wfptui]2.0.co;2
JQHPEW6H 0272-4944/91/030201 + 30503.00/0
SDQLJD6V 10.1672/0277-5212(2007)27[337:ticwic]2.0.co;2
IUZXSIMY Artn 19
4QCWLHTK 10.1641/0006-3568(2002)052[0891:THFATL]2.0.CO;2
XX3UWJED 10.1890/1051-0761(2006)016[1311:TCOPEF]2.0.CO;2
2CVHJQXU 10.1663/0013-0001(2006)60[130:wgfpit]2.0.co;2
2SP7P7RB 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z
IT5IWD4X 10.1002/(sici)1099-1085(199711)11:14<1797::aid-hyp605>3.0.co;2-7
RKGALAYM 10.1639/0044-7447(2005)034[0131:imwqbm]2.0.co;2
WSYSZWFN 10.145/3/aitex.1603161
7TKIZ3B9 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z
SVIP75QG 23
8C6RDHPN COM(2011) 244 fina
A6GX2QM6 :10.1016/j.jtbi.2010.03.032
F4LL5SQA 10.1007/s00267-003-0017-2|ISSN 0364-152X
8M4J8SED 10.1111/j.1461-0248.2007.01149.x|ISSN 1461-023X
5NI4RSR3 ISBN: 978-92-1-126398-5

Not in OpenAlex

To validate the existence and validity of the DOIs, we check if the DOIs are in the OpenAlex database.

Of the 7617 unique DOIs in the library, 880 (11.55%) are in not in OpenAlex. This includes the non-valid DOIS, which are filtered out in the table below.

Show the code
data.frame(
  doi = bib_data$metrics$zotero_dois$not_in_oa,
  link = paste0(bib_data$bibliography$url, "/items/", names(bib_data$metrics$zotero_dois$not_in_oa))
) |>
  dplyr::mutate(
    doi = paste0('<a href="', link, '" target="_blank">', doi, "</a>"),
    link = NULL
  ) |>
  knitr::kable(
    caption = "DOIs in Zenodo which ar not in [OpenAlex](https://OpenAlex.org){target='_blank'}",
    escape = FALSE
  )
DOIs in Zenodo which ar not in OpenAlex
doi
ZTNYPZPI 10.1163/187471611X600369
2JDIN324 10.5751/ES-08669-210429
WIY43NMJ 10.1016/S1054-3139(03)00010-9
PBZ5E4VK 10.1017/S1355770X10000318
4FLZ5QHD 10.1002/2017JF004219
PRKNASRJ 10.1017/S0376892915000326
WYTDACXV 10.5751/ES-03908-160121
NX7JPXS7 10.5751/ES-05716-190109
8TFZ87HY 10.1023/A:1014475908949
TMV3FD6L 10.1108/AAAJ-03-2013-1255
BYWNMBQK 10.1579/0044-7447(2007)36[545:CBBCAH]2.0.CO;2
DD7DTXI3 10.1016/S0169-2046(97)00061-3
B3YRLKKX 10.1080/1088937X.2015.1056859
QBDPIH8U 10.5751/ES-08812-210425
ULHH6FGC 10.1111/j.1526-100X.2010.00737.x
MR3LEE3V 10.1051/agro
T7LYLN8M 32
YS2KQTXS 10.1103/PhysRevLett.95.258101
HZ8NUBDC 10.1016/S0308-597X(03)00025-3
UG7ZAPVB 10.1332/174426416X14700777371551
UWTMZKPD 10.1017/S0376892915000089
TFW9UAAC 10.1017/S0030605316001423
UMSXXJQY 10.1890/1051-0761(2000)010[1251:ROTEKA]2.0.CO;2
5T3AGC87 10.2779/57220
KDELC82G 10.1016/S0040-1951(96)00188-6
4HFNA4BU Available online: www.colorado.edu/journals/cye
2EYUQ4VD 10.1016/S0921-8009(00)00272-X
YF32R9PE 10.1016/S0921-8009(02)00092-7
GIFADYSS 10.1111/j.15231739.2008.00961.x
CNMM7KDW 10.1177/0263774X15605897
HVNI25PK 10.3197/096327112X13400390125894
R6UYILZI http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32006L0118
XX7H33AD 10.1002/crq
K4L36IE6 10.2111/REM-D-13-00082.1
VFFFEBX4 10.1002/pad
D2Y364HG 10.1016/S0140-6736(12)60685-0
Q5XYBVGH 10.1080/1523908X.2014.993023
JSPVP5K8 http://ec.europa.eu/clima/policies/international/negotiations/paris/index_en.htm
J4AU6EY9 10.5038/1827-806X.46.2.2087
XMD8M6MY 10.5751/ES-08498-210301
QN4VR6VU 10.5751/ES-02893-140201
7PBUI9UX 10.1371/journal. pone.0132232
62SLERIR 10.15779/Z38BN7K
V55XBZQK 10.5751/ES-05597-180333
5F48XGHY 10.1017/S0032247413000284
AU7QIWHB 10.1017/S003060531200172X
I29Q9VBZ 10.1111/j.1755-263X.2012.00227.x
HFUUQY3L 10.2495/ECO-V2-N4-250-257
IXDDSVDW 23
5EJ3MZQE 10.3000/17252555.L_2009.335.eng
XFDUJKXJ 10.5751/ES-04821-170302
GN34IPEB 10.1177/0263774X15605923
TGBU2JQ2 10.1016/j.biocon.2016.05
J5XX48BG 10.2779/28060
9Z4JBRDR 10.1371/Journal
IT894L3D 10.1016/S0169-2046(02)00103-2
Z6SALM9M 10.5751/ES-08411-210219
THGYYH98 10.5751/ES-09048-210447
VIYELSWN 10.1080/1088937X.2014.953620
6QIE22EQ 10.1007/s109800140106z
GDF2FUAC 10.1016/S0723-2020(11)80402-9
QA4HDI4P 10.5751/ES-06401-190227
QZ249YRH 10.1659/MRD-JOURNAL-D-16-00035.1
XXQU4F3W 10.5751/ES-06714-190439
8H89SJZP 10.5751/ES-05022-170412
KEEZZMMX 10.1038/NPLANTS.2016.22
Z9ZU8I7Z 10.1162/GLEP_a_00016
BE8RKLBS 10.1016/S0169-2046(99)00048-1
3BRYXB75 10.1111/j.1755-263X.2012.00240.x
YCG6WKV6 10.1016/S0195-9255(99)00008-6
HL4LH29Q 10.13128/BAE-12179
YAP8V2K6 10.1016/0308-597X(87)90058-3
ZF4L937H 10.1890/1540-9295(2006)004[0045:TGACET]2.0.CO;2
8ECLINHE 10.1659/0276-4741(2003)023[0119:spmika]2.0.co;2
ISVWAPGT 10.1016/j.envsci.2015.12.003
BRMG3MP6 10.1163/187197309X401406
PL9YC42S 10.2981/0909-6396(2008)14[188:pebmms]2.0.co;2
9422HMZT 10.1017/S1755267215000081
QH5P2U29 10.5751/ES-07594-200221
PP9KXECF 10.1017/S0376892914000125
LTNE3U4Z 10.1111/joes.12120
7IJQGZMM http://conventions.coe.int/Treaty/en/Treaties/Html/176.htm
M2PB743R 10.3000/1977091X.C_2012.326.eng
WT8TLHNV 10.1080/1523908X.2015.1076721
VPVFXUDX 10.1080/1523908X.2015.1070334
KZYB4GR6 10.1080/1523908X.2013.769414
HNXXRHA6 10.1162/GLEP_a_00155
IP9C8SMQ 10.1111/j.1755-263X.2011.00217.x
NR4R6ZD2 10.1071/WR11077
XZ6MW22W 2004R0726 - v.7 of 05.06.2013
YIRPMJ2A 10.5751/ES-03476-150318
573TFKQA 10.1007/811111-010-0101-5
7WLN2WGA 10.1016/S1164-5563(01)01088-3
W3N6Q2HV 10.5751/ES-01798-110211
NIQC2HTY 10.1002/esp
JRESPXS3 10.1038/nature02175.1.
ERK22J79 10.1016/S0261-2194(01)00123-5
BTCEVB8V 10.1016/S0006-3207(01)00054-4
CMDQBVYS 10.1108/FS-02-2015-0011
NFYBPGET 10.1641/B570306
Q9PHEQCF 10.1016/S0016-3287(02)00090-3
49BL66W8 10.1016/S1366-7017(99)00013-6
PJEES9N3 10.1177/0734242X16683445
LJGKND75 10.1890/ES12-00178.1
V9MPTDEV 10.5751/ES-05480-180242
65TW9AES 10.1002/2014JG002755
KWBX24VS 10.1111/ele.12104.A
766W5MH6 10.1037//0033-295X.
U2LGTJP4 10.17660/ActaHortic.2010.866.63
Z8VF4I4J 10.3318/and
EAUSRX5T 10.1109/FUZZY.2011.6007655
J2F8NC3Y 10.1002/hyp
Y8LXNFP5 10.1016/S0742-3322(06)23017-1
FE86NURC 10.5751/ES-04394-160427
WXPWBN25 10.15666/aeer/1203
LQ5DL7HI 10.1080/1747423X.2015.1096423
ZSNV4Q9F 10.5751/ES-06915-190432
SBRL7E7H 10.5751/ES-06817-190332
HJXCMV2N 23
2XM8VV7X 10.1017/S0021859612000767
VVMYUAAT 10.5751/ES-05802-180339
HJXDSUPG 10.5751/ES-06168-190112
TEKI99B7 10.2307/20870195
3A7MH2PV 10.1111/j.1467-985X.2007.00499.x
VUJ2V39Y 10.1897/IEAM_2007-063.1
A8BLWZ5N 10.1023/A:1015783803445
LS3B89BB 10.1029/2003GB002199
D3TJ5Z4V 10.2307/23297082
CXWK4YST 10.1016/S1364-8152(03)00024-0
BPFB6Z3B 10.1639/0044-7447(2005)034[0513:ICMFNR]2.0.CO;2
XYVNPTI8 10.5751/ES-05336-180205
L33SQ8FF 10.5751/ES-05487-180241
SWAC9J3W 10.1109/FUZZ-IEEE.2012.6250798
RR8M59Q9 10.5751/ES-05873-180226
92ECLPUA 10.3303/CET1439252
9HA6HKVS 10.1577/1548-8446(2006)31
FWZC7GTN 10.5513/JCEA01/14.2.1240
YAE9JQAC 10.1590/1809-44220003491
S4AJ5R8M 10.1029/2011JF002010
9LC6RFEG 10.1108/IJCCSM-04-2011-0016
SEUMHES2 10.1111/j.1365-294X.2005.02565.x
A7LMS6S8 10.1016/S0016-3287(03)00039-9
H79LMER9 10.2112/1551-5036(2004)020[0424:piosrf]2.0.co;2
8NT3HZZQ 10.5751/ES-07607-200332
TQI68GE9 Article
Q54NAX8R citeulike-article-id:4423649
5NYGKJ6I 10.1029/2009GB003587
S9FKHH8U 23
8FXARIG2 8
6N4EHUNE 10.1111/Ij.1365-2664.2005.01046.x
J6V7BDG8 10.5751/ES-05619-180307
9YLVLD7H 10.1007/1-4020-5488-2-25
CAI57BLN 10.1071/RJ12092
C7R9RAVS 10.1017/S0021859610001140
XKNAX9UW 10.1109/EEM.2011.5953044
IC2NZYMN 10.1111/j.1526-100X.2006.00159.x
2GNU4FH7 10.1177/0734242X16657973
XD966GEI 10.1038/nature
HEH22XKY 10.5751/ES-08748-210341
FYHAQ9YT 10.1017/S0021859610000158
W7SEXEUC 10.2298/TSCI120202128D
8P5K5BXF 10.2298/PAN1101067V
CVBVGVA7 10.2495/RM090271
ALV3BNX4 10.1002/2014JG002802.Received
Z7MZSX2Q 10.1109/EEM.2011.5953118
Q7PTHPQ2 10.2495/ECO070431
HESRE3JB 10.1016/S0306-9192(00)00037-3
L5ARE57C 10.2112/SI
JLQJNB37 10.1080/1747423X.2013.786150
AY5LVZ32 10.1175/2008JCLI1807.1
H6WNIDRI 10.1017/S0959270913000348
QS3EW8YJ 10.1111/j.1755-263X.2009.00086.x
MD5FAF5R 10.1002/asl
7W6GCXAP 10.1025/bio.2009.59.3.7
FCK7UMRS 10.1108/MEQ-05-2013-0060
PTA78AWV 10.1002/joc
AM5Z7WMV 10.1029/2009GB003594
8JTD2W7T 10.1093/jn/133.11.3907S
R6Y4TXW7 10.1641/b571105|issn 0006-3568
UVDXCXT4 10.3989/scimar.04028.25B
3AQFYCSF 10.1016/j.jtbi.2006.08.024|ISSN 0022-5193
G6GDZ4KR 10.1029/2006GL026319
PX7P4XEM e81358 10.1371/journal.pone.0081358
XJLAGIJZ 10.1016/S0075-9511(04)80004-5
QX6TYPSE 10.1579/0044-7447(2007)36[323:asbasd]2.0.co;2
3CKC4HGM 10.1890/1051-0761(2000)010[0689:BICEGC]2.0.CO;2
IUYQBBUR 10.3303/CET1125010
J5X4CHX5 10.5751/ES-07985-200432
MV4K7228 10.1007/BF03325874
PTJ2AMV7 10.1177/0734242X15574563
RKSYXCJP 10.5751/ES-02154-120225
XQ5T69TN L15715Artn l15715
E66G8EJW 10.1016/j.biocon.2011.11.001
57CA25XJ 10.1111/j.1469-185X.2012.00235.x
B6HQZ26L 10.1111/j.1755-263X.2011.00208.x
UKHE8TI8 10.1002/gj
RZX2AQRT 10.1017/S0025315414001453
BY4T2FF9 10.1098/rspb.2009.2104
H8ASNWDW 10.1017/S2078633615000260
HWADI6NZ 10.1007/s00334-005-0032-8|ISSN 0939-6314
S6ZQY8TR 10.1134/S0001437011020196
DRFUZC4Q 10.1016/j.agee.2009.05.012
BEV7DAFY 10.1134/S106741361301013X
IJ7CIJBJ 10.1023/A:1026533418357
Z5YAEJEI 10.1016/S0269-7491(02)00186-0
92C5DKEH 10.1007/s00442-005-0299-6|ISSN 0029-8549
WVQ3K3LE 10.1016/s0065-2504(04)35005-1|issn 0065-2504
XQZW2PS2 10.1007/s00035-007-0797-8|ISSN 0253-1453
XWKF3U2M 10.1016/S0300-9629(76)80006-0
A39ZLXCE 10.1134/S1995425511070058
KL888YSC 10.2307/3450726
IG6R87YI 10.1016/j.jmarsys.2015.07.006
T2DGKRKH 10.1111/j.1365-294X.2006.02890.x
PY7YKDMF 10.1146/annurev.ecolysis.33.010802.150448
RN67WND9 10.1016/j.ecolmodel.2007.08.013|ISSN 0304-3800
YASWD8NN 10.1023/A:1023617117780
YIMPQGK3 10.2305/IUCN.UK.2006.RLTS.T61454A12488658.en
BL42AHVL http://www.nature.com/nclimate/journal/v3/n1/abs/nclimate1627.html#supplementary-information
335ZZ97Y 10.1111/j.1365-294X.2007.03344.x
UUEKHZSK 10.1111/j.1365-294X.2006.02838.x
YG3VESH8 10.1007/s00227-001-0765-6
49DCZHLB 10.1111/j.1365-294X.2008.03970.x
YAEU6VQL 10.1038/nature09705
9QWIGXM9 10.1017/CBO9781107415324.004
ALMSGMGY 10.1139/B07-068
YTNCLYQK 10.3161/000164511X589857
GMPTK2XP 10.1111/j.1469-185X.2011.00216.x
PG5G9R6W 10.2305/IUCN.UK.2009.RLTS.T164583A5910262.en
Y2AMYZ42 10.1560/IJPS.55.1.15
SQ87DQ9V 10.1007/BF03013315
4QP6CZ5Z 10.3103/S1068373913020106
X3CGYPZR 10.1016/S0300-9629(76)80005-9
95YV6T2N 10.1111/j.1755-263X.2008.00030.x
Z7ASVIY8 10.1641/B570707
TWKGJ9Z7 10.1111/j.1654-109X.2010.01120.x
A63W285H 10.4467/16890027AP.12.016.0762
CTDUN9HC 10.1111/j.1469-185X.2009.00106.x
PCAYXLS8 10.1017/S0024282906006207
AF6SGW3Q Doi 10.1614/Ws-09-096.1
K5DLAYDA 10.1111/j.136-294X.2010.04691.x
5E3NFKJF e6825 10.1371/journal.pone.0006825
W4BYUA65 10.1038/nature16144 http://www.nature.com/nature/journal/v528/n7580/abs/nature16144.html#supplementary-information
DDV8Y9DL 10.1016/j.tree.2004.09.003|ISSN 0169-5347
IV6ZR4VU http://www.nature.com/nature/journal/v475/n7354/abs/475036a.html#supplementary-information
3TPVZNXH 10.1146/annurev.ecolsys.110308.120304
HSXNFB4Y 10.1017/S0025315405012506
5S28VQ9P 10.1093/femsle/fnv188
36IESQ2H 10.1134/S1063074007060016
LYCW4A6V 10.1023/A:1008916601121
8SQMRYG8 10.1046/j.1466-822X.2001.t01-1-00256.x
TPTJKKCJ 10.1016/j.tpb.2007.03.009|ISSN 0040-5809
3RWIMBHC 10.1111/j.1474-919X.2001.tb04883.x
NIWZ3E8T 10.1890/1051-0761(2003)013[0842:DMATOH]2.0.CO;2
N6NRBZYL 10.2784/1473
BWSDNM9M 10.3168/jds.S0022-0302(75)84757-6
VE53T7GJ 10.1016/j.tree.2013.11.004
YLVWC8M7 10.1641/b571106|issn 0006-3568
5QVV2CEE 10.1093/aob/mcm259|ISSN 0305-7364
VLQTSY6W 10.3170/2007-8-18342|issn 1100-9233
FK5ELSB8 10.1023/A:1010632015572
UDEBPKCG 10.1146/annurev.energy.31.020105.100235
74TTCPVT 10.1016/j.ecss.2016.03.015
TVB2SYQY 10.1073/pnas.0701424104|ISSN 0027-8424
NJVKS5IW 10.1051/forest:2007086|ISSN 1286-4560
S95REDCQ 10.1016/j.ecolmodel.2006.10.009|ISSN 0304-3800
UXNQU6CG 10.1007/s10221-003-0087-2
M9V7RU74 10.1023/A:1008828704456
QXGA7XZ9 10.1016/j.ecolmodel.2003.12.055|ISSN 0304-3800
S3VR973Y 10.1111/j.1461-0248.2004.00720.x|ISSN 1461-023X
FKIN59LL 10.1890/070046
3PXQ9JFS 2036
VCJQGGRJ 10.1111/j.1526-100X.2010.00724.x
FCE2E5ZU 10.1038/ncomms14435 http://www.nature.com/articles/ncomms14435#supplementary-information
827Y2DDH 10.1093/aob/mcl283|ISSN 0305-7364
XSCKEZRT 10.1111/j.1572-0241.1978.tb00888.x
ZBTAEM6H 10.1890/1051-0761(2002)012[0927:aamiip]2.0.co;2
3CAEIADG 10.1146/annurev.ecolsys.110308.120148
HUD2VYA2 10.1111/j.1365-294X.2006.02907.x
AWDPMB6B 10.1023/A:1022834224257
24AMRN7F 10.1560/IJEE.55.3.263
D6TTBDBH 10.1560/IJEE.55.3.263
RM83APEW e70 10.1371/journal.pgen.0010070
Z98BBRDU 10.1002/2014GL059540
PY6YHZSU 10.1890/0012-9658(2003)084[0777:eafrpa]2.0.co;2
TJDDKZGT 10.1127/nova
FV8RP2FE 10.1023/A:1011372312962
HQBZAVTR https://www.pik-potsdam.de/ateam/avec/paper_russo.pdf
JGQN4NDZ 10.1016/S0006-3207(01)00043-X
NXNYE4R6 10.1146/annurev.ecolysis.33.010802.150429
BXYT4AYA 10.1111/j.1365-294X.2007.03417.x
64X7EMA2 10.1086/605369
TK5XUQNQ 10.1016/j.tpb.2003.09.002|ISSN 0040-5809
CKAXTNB9 10.3161/000164513X669955
ADEVDGT8 10.3161/000164510X516128
QMWMRSPN 10.1111/j.1474-919X.2008.00829.x
R7DACVFB 10.1890/1540-9295(2003)001[0469:mmritf]2.0.co;2
6S68Q6FH 10.1016/S0038-0717(03)00108-1
PVYJZ5E7 10.1016/S1002-0160(15)30033-3
QL49VE6P 10.1016/S0140-1963(03)00087-9
JY3SIACR 10.1023/B:GRES.0000024648.48164.c3
6ZPT6TKD 10.1672/0277-5212(2001)021[0093:acauop]2.0.co;2
C3PZPXHX 10.1111/j.1654-109X.2012.01215.x
27VCCUV9 10.1285/i1825229Xv5n1p50
IGH6YV2J 10.5751/ES-05600-180311
ALPZUVKW 10.1016/0006-3207(95)00015-V
6ZXBDRQQ 10.1017/S0376892908005146
86RVY46D 10.1016/S0169-5347(00)01874-7
LQGADD3M 10.1111/j.1365-294X.2006.03025.x
5GCSYFEJ 10.1007/BF02010435
CHQ4CIM2 10.1890/ES14-00515.1
YBNSKUHX 10.1641/0006-3568(2001)051[0933:TEOTWA]2.0.CO;2
JVDJ3SJF 10.1016/j.biocon.2003.12.008
JJPFDC3H 10.1017/S1755267209001079
I6EXJRNB 10.1890/07-1024.1
7MCFAT7Y 10.1023/A:1023902110224
97W2I9JC 10.1641/0006-3568(2006)56[987:AGCFSE]2.0.CO;2
G9E68QZN 10.1658/1100-9233(2005)016[0655:fpdisb]2.0.co;2
49NGA263 10.1029/2004EO330001
A436WR8Q 10.1029/2007JC004578
CCT8GT4T 10.1086/286203
NV7U2RGS 10.1007/BF00033904
6ZT4GCDT 10.1016/j.foreco.2006.02.009
V4ZMWZNZ 10.2307/annurev.ecolsys.37.091305.30000024
H8Y8S7CM 10.1016/S0169-2046(03)00094-X
QUKSLTT2 10.1111/j.1365-294X.2007.03477.x
DBLY6GWX 10.1017/S037689290900544x
P93IBYRU 10.1016/S1146-609X(97)80031-8
RP3VRCRS 10.14471/2014.34.017
RVRFPN45 10.1016/S0167-8809(00)00148-1
IJSYNWIQ 10.1111/j.1365-2745.2007.01332.x|ISSN 0022-0477
I6ZATRBY 10.19189/MaP.2013.OMB.150
B2CWN8EJ 10.1016/S0367-2530(17)30765-X
ZAGDHHE2 10.1016/0169-5347(93)90039-R
VEB4598V 10.1111/j.1365-294X.2006.02940.x
XYI4JQT6 10.1111/j.1365-294X.2007.03147.x
2QUHKHGK 10.2305/IUCN.UK.2009.RLTS.T61501A12492629.en
C4PRBELN 10.1111/2041-210X.12712
C69I7I27 citeulike-article-id:287784
XTWNXM2E 10.1111/j.1365-2745.2007.01333.x|ISSN 0022-0477
SGS8I3DP 10.2111/REM-D-13-00082.1
G7PY7J2I 10.1890/0012-9658(2006)87[1489:TEOPDA]2.0.CO;2
QKNWIKLW 10.1111/j.1365-294X.2004.02316.x
XPMNHWXV 10.1007/BF00420998
L2US2EXA 10.3097/LO.201023
PWQCQTEY 10.19189/MaP.2015.OMB.217
IPSAQIEW 10.1111/j.1365-294X.2006.03170.x
25Z74RVY 10.7320/FlMedit25SI.185
7GD9RDWJ 10.1139/x07-112|issn 0045-5067
ABMTKS6T 10.1007/BF02891702
VYZDXN2R 10.1007/s11284-006-0168-8|ISSN 0912-3814
UTYCG8JW 10.1111/j.1466-822X.2006.00188.x
QK6JETQ7 10.1016/B978-0-12-803730-0.00008-1
4WR6EFZQ 10.1017/S002428291300011X
6RZ43XB7 10.3289/BIO-C3
BUNHHHSQ 10.1007/BF02891709
9SVHA9CM 10.1127/nova
5JQ8ZAM5 10.1890/14-1977.1.sm
A6FU3RQQ 10.1007/BF03161728
492QIUZ4 :10.1016/j.biocon.2008.11.007
A6KNT3RE 10.1134/S001387381003005X
MYM8DKZ2 10.1016/S0006-3207(03)00294-5
K3QPM6HR 10.1111/j.1466-822x.2006.00252.x
6CIHM9J5 10.1146/annurev-ecolsys-110512-135822
69A2RVQV 10.1016/S0300-9629(76)80023-0
U24VTIR9 10.1016/j.pocean.2010.09.005
R575AA2W L07608 10.1029/2008gl037155
YMK4ECLR 10.1016/S0022-2836(75)80015-5
7KKRW884 10.5751/ES-05035-170440
8RLNQ9FN 10.1016/S0037-0738(96)00028-0
K9F8U3P6 10.1007/s10310-006-0205-z|ISSN 1341-6979
MC432LHX 10.1007/s11258-006-9197-1|ISSN 1385-0237
VK53CZDT 10.1007/BF00832704
CHYZ8FWQ 10.3390/rs40401046
CVHIEINY 10.1111/j.1526-100X.2007.00270.x
TQ5NIEBM 10.1111/j.1365-294X.2010.04808.x
ZWDQ22WW 10.1038/nature13717 http://www.nature.com/nature/journal/v513/n7517/abs/nature13717.html#supplementary-information
DFNSZKRL 10.1016/S0300-9629(76)80018-7
ZXKFNSKX 10.1641/0006-3568(2005)055[0851:potapf]2.0.co;2
7CSE77J5 10.1890/0012-9658(2000)081[0607:EAROMA]2.0.CO;2
Z8IKD484 10.1016/0006-2952(75)90009-X
YT7GKFIE 10.1111/j.1365-294X.2005.02658.x
WTZJBRDJ 10.5038/1827-806X.46.1.2020
LSHUT447 10.1161/CIRCHEARTFAILURE.109.868786
S9T5JAFJ 10.1016/S0169-5347(02)02499-0
AK9JSDXG 10.1016/0024-3205(75)90137-X
E6LMA8M3 10.1127/0340-269X/2004/0034-0521
3DY9CUUI 10.1023/A:1003619631920
RRLE4I2D 10.1071/MF14413
KI32C76J 10.1111/j.1466-822X.2006.00243.x
VZMCJ6VR 10.1590/S0036-46651996000400018
3VNSA49N 10.1007/BF00043031
JBIVG67S 10.1111/j.1469-185X.2008.00060.x
WLUNBNQ9 2036
6G8PFLJZ 10.5751/ES-05149-170453
YLXVJ84U 10.1016/S0006-3207(99)00045-2
PZQJ5X5T 10.1890/0012-9658(2001)082[1999:bcawpe]2.0.co;2
DAPJ5PXU 10.1554/0014-3820(2002)056[2383:pbwgbt]2.0.co;2
NBTTECU3 10.1111/j.1466-822X.2006.00212.x
B56A4YWJ 10.2307/20870195
WGBMGDMW 10.1023/A:1018912114948
VLJFCDTY 10.1890/ES13-00181.1
3VTVHUZS 10.1007/BF00132952
S8QTSRIZ 10.2305/IUCN.UK.2015-4.RLTS.T41673A66991604.en
A5I464WG 10.1016/S0169-555X(01)00187-8
HGIG3MR4 10.1017/S0024282910000654
6J5I2DNE 10.1016/0006-3207(92)90594-D
9M2HD8ZR 10.1198/106186006X133933
WHLKHTIW 10.1672/0277-5212(2006)26[79:teoalu]2.0.co;2
QS2VCRNR 10.1139/x06-166|issn 0045-5067
973EDD3D 10.1016/S0169-5347(99)01764-4
FW7B3LPR ICES CM 2014/ACOM:10
PNEQZU7H 10.1111/j.1365-294X.2005.02750.x
4L6NKZEZ 10.2307/3547152
799JIWBA 10.1641/0006-3568(2002)052[0473:SEATFB]2.0.CO;2
SVPH8MTN 10.1890/0012-9658(2006)87[1234:TIOPOT]2.0.CO;2
3TM8A3ID 10.1016/j.marenvres.2012.12.008
XBKCAJLD 10.1023/A:1008978831068
CDL5SIDU 10.1023/A
N7B6A37S 10.1111/j.1461-0248.2006.00884.x
FFBKZWWK 10.1046/j.1529-8817.2003.00723.x
8PNUMMS7 10.1111/j.1474-919X.2007.00698.x
MDNWFRVC 10.1111/j.1474-919X.2007.00698.x
4A36IZGP 10.2307/24873660
JB36CKJH 10.1890/1051-0761(1999)009[1439:fitcop]2.0.co;2
R6MWDCC4 10.1023/A:1008994122865
VFANB4M6 10.1111/j.1365-294X.2009.04410.x
D4YCREMM 10.5038/1827-806X.43.3.1
QV3SDGPF 10.1016/S0264-8377(03)00003-6
BJ66H724 10.1016/S0269-915X(00)80054-3
YL6LMEJA 10.1016/0378-1097(85)90031-X
3IN4BN4I 10.1111/j.1526-100X.2006.00112.x
KWZVVQN5 10.1023/A:1008000330184
REXMGIRK 10.1016/0169-5347(93)90220-J
JFW5MUSU 10.1111/j.1365-2745.2007.01319.x|ISSN 0022-0477
CX5XJI9F 10.1134/S2079086412030036
2Z234UJA 10.1007/BF00561530
PJ4ES5MB e40205 10.1371/journal.pone.0040205
LFBCGF8P 10.1111/j.1474-919X.2007.00775.x
BKE5784M 10.1016/S0168-6496(03)00281-2
76IRQQGB 10.1111/conl.12292.This
94F57JQQ 10.1007/BF02447520
D5TGBZTX 10.1
8PZNJK7L 10.1111/j.2041-210X.2010.00036.x
63GE2VAX 10.1007/BF00128994
KKLAXUK4 10.2305/IUCN.UK.1996.RLTS.T22200A9364253.en
GVG9DK4H 10.1016/j.pocean.2004.02.017
C7E2NRE6 10.1016/S0169-5347(01)02283-2
KN8LC5PV 10.1111/j.1365-294X.2007.03538.x
VL3I5Y3I 10.1023/B:RUGE.0000048667.39464.54
Y3CZ5KJV 10.1890/0012-9658(2006)87[1915:HLTCAT]2.0.CO;2
BHYKRTMV 10.1016/S0167-8809(01)00244-4
4KKD2ZXY 10.1111/j.1755-263X.2010.00115.x
JLLD6F28 10.1016/S0022-0981(00)00194-5
V47Y923R 10.1016/S0167-8809(99)00029-8
M5WR3H9W 10.1017/S1464793105006950
VR8BMND5 10.1016/S0300-9629(76)80001-1
FHLR2VKP 10.1016/B978-0-12-384719-5.00224-0
QMBJB8G8 10.1023/B:hydr.0000018223.26997.b0
XN8PLKS4 10.1017/S0376892903000109
2MBQGC92 10.1890/1540-9295(2004)002[0513:IPIWEM]2.0.CO;2
2HPWN5NZ 10.1016/S0921-8009(02)00089-7
R2I638UU 10.1016/S1146-609X(02)01145-1
FEQGH6YT 10.1111/j.1654-109X.2011.01181.x
RK4WXLQZ 10.1017/S0376892905001840
V39BMJYK e12767 10.1371/journal.pone.0012767
2JUYCMGA 1 10.5751/ace-00521-070201
KHS8DC75 10.1016/s0040-5809(03)00094-7|issn 0040-5809
48FXB8Z9 10.1023/A:1016136723584
5RTDF7VU 10.1016/S0167-8809(99)00105-X
Q6LJ3ISF 10.3897/SUBTBIOL.18.8648
3SGXAAAH 10.1016/0006-291X(75)90518-5
55A76IBA 10.1023/A:1019234323372
FU3B3LID 10.1659/0276-4741(2007)27[66:MTBIOG]2.0.CO;2
I3IVJJEN L16710Artn l16710
52I4I38A 10.1111/j.1365-2745.2010.016151.x
8BB9MS42 10.1007/s10980-007-9133-3|ISSN 0921-2973
TMV5VUTV 10.1016/S0022-2836(75)80089-1
ZWZGUR83 DOI: 10.1126/science.1183506
88P8SW47 10.1890/0012-9615(1998)068[0213:sassor]2.0.co;2
CGX8FIWL 10.1890/01-0618
R65CNTNG 10.2307/23470549
M24DS7GT 10.1016/j.tree.2004.10.004
Q3FXVGLD 10.1016/0041-008X(75)90174-X
7YH4HFIU 10.1007/BF00026281
4FMX2PHP 10.1006
XEKTUB3R 10.1111/j
ARIAJ3U8 10.1016/S0380-1330(05)70281-1
7QB6E955 10.1007/BF00056743
FYA54K7F 10.1111/j.1365-294X.2007.03503.x
33LL5SK5 10.1016/S0300-9629(76)80008-4
WUZ8JRFX 10.1111/j.1365-2745.2007.01219.x|ISSN 0022-0477
53NILWCJ 10.1016/S0167-8809(99)00046-8
MU6KDEAV 10.1016/S0025-326X(03)00242-X
XUP9FVLX 10.1016/S0367-2530(17)30040-3
RUL53T99 10.1175/2010EI315.1
LTMJ8D4S 10.1016/S0025-326X(00)00027-8
XKCWPS2X 10.1111/j.1365-294X.2008.04064.x
QYJWY27K 10.5751/ES-07246-200140
H2VP9XSF 10.1007/BF00378818
J9B67LK9 10.1007/s10530-007-9135-8|ISSN 1387-3547
XRJIDFCY 10.1016/S0277-3791(00)00002-0
49E8LKGJ Pii s0025-326x(01)00150-3 10.1016/s0025-326x(01)00150-3
RG9UK3A3 10.1515/BOT.2009.057
KKW4VFIC 10.1641/B570306
8Q4KBV8P 10.1023/A:1015248819864
39SRBUCX 10.1023/A:1010933404324
BCSJCMH2 10.1007/BF00051981
3HS5XABT 10.1016/S1146-609X(00)01095-X
AF696JBD 10.1641/0006-3568(2004)054[0767:TROBIT]2.0.CO;2
S3HAEYL6 10.1111/j.1365-294X.2012.05640.x
DRTK754K 10.1161/01.RES.37.5.588
7AZRY3M6 10.1890/0012-9615(1999)069[0491:ROTPTE]2.0.CO;2
Y835TRJI 10.1897/IEAM_2008-034.1
D6KD9V8S 10.1641/0006-3568(2005)055[1041:ooiw]2.0.co;2
4CX6TWXK 10.1111/j.1469-185X.2010.00168.x
FD4LZ9G2 10.1038/nature01309.1.
HXF4LHD3 10.1109/JSTARS.2013.2284006
4EZHR4MY 10.1016/S1146-609X(00)01096-1
ERKJY945 10.1890/1540-9295(2004)002[0191:ELP]2.0.CO;2
5DUAUDZN 10.1890/1051-0761(2000)010[1590:BRTCE]2.0.CO;2
5JTB9VIT 10.1890/1540-9295(2007)5[199:IASIAE]2.0.CO;2
D6DP5EPP 10.5751/ES-05570-190115
WGGVYVK2 10.1016/S0169-5347(98)01554-7
FT7SKBWY 10.1890/0012-9658(2007)88[465:LFFNLT]2.0.CO;2
BLDIEVFS 10.1023/A:1005306001055
LA4SWDBH 10.1029/2005JD005965
UVQ3TJDS 10.1175/2007JCLI1822.1
QYISYHD3 10.1023/B:CLIM.0000018508.94901.9c
GZNT4RQW 10.1111/j.1755-263X.2010.00153.x
EN8VS3BB 10.1641/B580507
W9M8ZKY3 10.1016/j.biocon.2011.02.003
TXFTUR3F 10.1051/agro
EA2T2GI9 10.1046/j.1466-822X.2001.00244.x
WG9LXRZV 10.2305/IUCN.UK.2009.RLTS.T164759A5923724.en
NHJUA2PL 10.1016/j.ecolmodel.2004.03.016|ISSN 0304-3800
YAF7DQW7 10.2305/IUCN.UK.2009.RLTS.T164647A5915480.en
ZG5DDSIL 10.1560/IJES.58.1.41
H996N566 10.1175/2008JCLI2082.1
KDBK76BB 10.1029/2006JG000352
74BENA8J 10.1175/1520-0442(2003)016<3560:COMAOT>2.0.CO;2
4YDFLAS6 10.1029/2005JD006290
6XN6AUQ2 10.1111/j.1474-919X.2008.00899.x
E2TAFJGT 10.1029/2009JC005749
CJ5QUSMV 10.1029/2006GL025734
27UVPJPV 10.1002/2014JC010016
UCMP4HQJ 10.1029/2010JC006162
86FFSQDN 10.1016/0079-6611(95)80003-C
EQ7UIEUK 10.1641/0006-3568(2001)051[0933:teotwa]2.0.co;2
SYW2PP6E 10.1016/S0167-8809(01)00249-3
9CCSU2PJ 10.1029/2011JD017139
L8Q6PJLA 10.1016/S1093-0191(01)00052-1
QJV9XDYU 10.1029/2011JD017187
WRVBHAI7 10.1029/2010RG000345
IJ67XAEZ 10.1890/1540-9295(2003)001[0298:RFAWWE]2.0.CO;2
HIHEHYWY 10.1641/0006-3568(2002)052[0143:pcaudf]2.0.co;2
FARD8US2 10.1023/B:AHUM.0000014020.96820.a1
J89PENCL 10.1016/S0743-0167(99)00027-3
JCZD6HD3 10.1029/98RG02739
VIS9PFBC 10.1029/98GL00724
DE6Q2LDN 10.1016/S0079-6611(99)00033-6
VJ69NGAW 10.1023/A:1009752403216
3CLY9MTW 10.1016/S1161-0301(02)00004-7
K7DHA7KV 10.1016/S0169-2046(03)00026-4
WLJMCP7C 10.1111/j.1466-822X.2005.00190.x
8RIZ2TTV 10.1016/S0169-2046(01)00222-5
CQLL2BF8 10.1007/s13398-014-0173-7.2
PR5C6AMQ 10.5751/ES-07804-200331
KZ7VC8FA 10.1111/j.1466-822X.2006.00204.x
PNQ35342 10.1016/S0167-8809(96)01126-7
A8292FHY citeulike-article-id:4423649
6QD6II4G 10.1659/MRD-JOURNAL-D-15-00071.1
D5R3T47F 10.1029/1999GB900046
V6BRQPWZ 10.1111/j.1469-185X.2011.00205.x
EGWGJFXF 10.5751/ES-05035-170440
7NH29LZG 10.1029/1999GB001232
NCRJFFM5 10.5751/ES-07868-200344
ENLM9L8M 10.1016/S0959-6526(03)00075-1
DCKECPFS 10.1002/2015JF003504
TSYWP25S 10.1016/S0301-4215(00)00137-3
PNNXIL4Y 10.1111/j.1365-294X.2006.02882.x
XNWI7CYE 10.1017/S003060530800046X
6VUIFTFS 10.1023/A:1025410230907
94RG92C8 10.1016/S0264-8377(02)00082-0
TLKSZ5QD 10.1023/A:1021513729205
NWYW9JZP 10.1007/BF00141593
QGYXC9BL 10.1016/S0169-2046(02)00194-9
WPNH5AZZ 10.13140/2.1.1549.9847
JYR22KIE 10.2307/3099993
QZ7B8VVZ 10.3197/096734015X14267043141462
UPCAC2Y4 10.1023/A:1007481206399
JYWFGQ5F 10.1890/1051-0761(2006)016[0963:MRRLPI]2.0.CO;2
6V4S8P3R 10.3000/17252555.L_2009.140.eng
E434ACRC 10.1016/S1389-9341(02)00060-6
3JDV6U9K 10.1659/MRD-JOURNAL-D-11-00132.1
UDTAUGGY 10.1659/0276-4741(2003)023[0119:spmika]2.0.co;2
AJZF4B79 10.1017/CBO9781107415324.004
4CDX2DTE 10.1017/S1464793105006950
IEZG37HZ 10.1016/S0264-8377(00)00017-X
IR8V9BUU 10.1016/S0167-8809(97)00109-6
XRS6IG8G 10.2111/REM-D-13-00082.1
3STHSJI6 10.1016/S1161-0301(00)00067-8
BIPNKVE4 10.1029/2005GL023653
3HXQ323K 10.1111/j.1365-294X.2006.03027.x
KJ76GIW6 10.1017/S1464793105006950
RATAYL32 10.1016/S0378-1127(00)00470-9
VFPCHR9W 10.1016/S0002-9416(77)90394-3
E3GHAJKL 10.1017/CBO9781107415324.004
RNQ4Q5ID 10.1029/2005GL023252
KN2W4KSN 10.3274/JL11-70-2-04
DRUU23IF 10.1029/2003GB002134
Q8YGRWGY 10.1016/S0011-9164(03)00328-X
B4K83DXJ 10.1016/S0011-9164(02)01056-1
5GVWFSZY 10.1002/2013GB004654
NQYCC8EE 10.1579/0044-7447(2007)36[614:TAAHNO]2.0.CO;2
FHCWJTQE 10.1079/PAVSNNR20072057
DPS3W3YQ 10.1002/2014JG002678
4487ZFRU 10.1017/S1464793105006949
PKL2CELG 10.1556/ComEc.11.2010.1.3
HPP6KXTI 10.1890/14-0421.1/suppinfo
5RPPPAJ7 10.1016/S0167-4870(02)00121-6
R7KDUUJB 10.1556/ComEc.9.2008.2.3
4CKTJJ5Q 10.1029/2007EO090001
6TEGY7FS 10.1016/S1389-9341(01)00034-X
MKSW88P8 10.1175 /2018BAMSStateoftheClimate.1
A6ZLWAMX 10.1029/2010JC006251
XCYZ46RV 10.1002/2015GL067254
6EFXQMII 10.1029/2012GL051466
24YZX5R6 10.1029/2004GL020816
7ENUM5XY 10.1175/JCLI3800.1
VW82FLXP 10.2800/296823
QY7HUA9Z 10.1111/j.1526-100X.2009.00638.x
N8DP5XLK 10.1016/S0378-1127(00)00375-3
A4LWCJLN 10.1016/S1389-9341(03)00011-X
BJ2I3ZPC 10.1046/j.1466-822X.2003.00048.x
WKLM5Y45 10.1002/2013GB004654
KUIKGYDT 10.1899/0887-3593(2004)023<0251:eoldoo>2.0.co;2
2W2S8JCW 10.1016/S0045-6535(03)00243-1
VV6996TN 10.1897/04-117R.1
Z3RFS396 10.1016/S0048-9697(02)00634-4
RR5EUBIQ 10.1641/0006-3568(2001)051[0180:aditnu]2.0.co;2
GNKQQ4ZH 10.1641/0006-3568(2002)052[0143:PCAUDF]2.0.CO;2
MS7RYPV4 10.1111/1467-985X.00247
3ZEYEPDT 10.1016/S1464-1909(01)00052-1
QULD6NQD 10.1111/j.1467-789X.2009.00658.x
T5FCLBCH 10.2981/0909-6396(2008)14[188:pebmms]2.0.co;2
W7RHS2FA 10.1029/2002GL016785
PCLQ9M8E 10.1017/S0376892914000125
4FDBHSQT 10.1016/S0261-2194(01)00123-5
UZXF7JB8 10.1016/S0264-8377(00)00047-8
24IBFJ4W 10.1002/2013GB004654
8N27PZ74 10.1016/S0044-8486(03)00474-5
RN9QP8XD 10.1017/S0030605310000074
U6JSV7KM 10.5751/ES-03476-150318
KGX63AYV 10.1016/S0140-6736(09)61711-6
6ITC6778 10.1016/S0006-3207(01)00054-4
2QBMNK5M 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z
RZEKVQ67 10.1071/WR11077
PQC5WRDB 10.1080/2154896X.2014.913917
5JV4J9TW 10.1016/j.envsci.2015.12.003
M7IVNFDG 10.1016/0160-7383(95)00007-S
6HXZLSWU 10.1164/rccm.200802-217OC
4FPQQS6N 10.1163/_q3_SIM_00374
RSYIP7IQ 10.2192/1537-6176(2006)17[67:BBPODS]2.0.CO;2
XJZQ8F2R 10.1029/2002GL016785
3KS6JRXP 10.1007/BF00141590
MG6J7GB8 978-2-8317-1694-7
ZA7BU8M5 10.1016/0341-8162(95)00018-N
KT7YJ577 10.1002/2013GB004654
RYL88T3D 10.1016/S0044-8486(03)00474-5
SADRM9VX 10.1016/S0034-4257(03)00185-8
K7DN43W6 10.1177/0013915609341244
3V5SRN69 10.3197/096327112X13400390126055
IUWXZR9M 10.1017/S037689290200022X
XM3HTISK 10.1029/2008GB003212
9MWFXI5Z 10.1641/0006-3568(2001)051[0633:ticamo]2.0.co;2
TL9Q39RE 10.1002/2013GB004654
4AGDVSER 10.1108/IJCCSM-02-2015-0013
PMVQ5SLQ 10.1023/A:1020289403835
X4VMVXPT 10.1016/S0140-6736(09)61711-6
K6G6EJUY 10.1016/S0140-6736(12)61228-8
SK8GUNFP 10.1016/S0034-4257(03)00075-0
T6QY6HJU 10.1016/0341-8162(95)00018-N
8FW4LICZ 10.1890/1051-0761(2006)016[2064:DALAWA]2.0.CO;2
H8K4ZPAC 10.13140/RG.2.1.3679.6565
TELRXBHF 10.13140/RG.2.1.3679.6565
SPB9NW2U 10.1017/CBO9781107415324.004
JEPC6Z6W 10.13140/RG.2.1.3679.6565
P53IJH2V 10.1016/j.amepre.2015.01.017 LK - http://sfx.aub.aau.dk/sfxaub?sid=EMBASE&issn=18732607&id=doi:10.1016%2Fj.amepre.2015.01.017&atitle=Neighborhood+Environments+and+Socioeconomic+Inequalities+in+Mental+Well-Being&stitle=Am.+J.+Prev.+Med.&title=American+Journal+of+Preventive+Medicine&volume=49&issue=1&spage=80&epage=84&aulast=Mitchell&aufirst=Richard+J.&auinit=R.J.&aufull=Mitchell+R.J.&coden=AJPME&isbn=&pages=80-84&date=2015&auinit1=R&auinitm=J
4ZEBMG36 10.1007/BF00776033
Q5KHHQHF 10.1577/1548-8446(1994)019<0006:uamifm>2.0.co;2
HU85WLK5 10.5751/ES-05367-180228
CRZBIV6W 10.1016/j.landurbplan.2013.09.013
QEG6BYBT 10.1016/S0044-8486(03)00474-5
9I6KHVX3 10.1038/nature02175.1.
HRXKU8HQ 10.1016/S0921-8009(99)00143-3
59GURLCI 10.1029/2009JDO11904
42CIB73Z 10.1007/s13398-014-0173-7.2
5IMNCQZY 10.1016/S1464-1909(01)00052-1
IGR25DJN 10.1017/S0030605311001797
P58C7G8A 10.1663/0013-0001(2005)059[0122:wfptui]2.0.co;2
JQHPEW6H 0272-4944/91/030201 + 30503.00/0
5LG89WZT 10.1371/journal.pone.0008273.s002
DTQIIVFZ 10.1016/S0272-4944(94)80056-1
ZEK4DWQW 10.1061/(ASCE)UP.1943-5444.0000264
SDQLJD6V 10.1672/0277-5212(2007)27[337:ticwic]2.0.co;2
V2GMAKMP 10.13140/RG.2.1.4312.2807
RURIHXXH 10.3986/AGS.895
NCISJE86 10.1016/S0022-1694(01)00494-2
AYDHPG4P 10.1029/2008GB003212
RXMPH34Z 10.1029/2006JD007103
IUZXSIMY Artn 19
QLJIID9A 10.1017/CB09781107415315.026
R6I4SQ2D 10.2307/4414163
66BM4N9B 10.1017/CBO9781107415324.004
CKIR5VVC 10.4232/1.10083
KFIDM2HZ 10.1080/0972060X.2014.1001184
BGJFG9WD 10.3986/AGS.875
QXMWRJ7Q 10.1111/j.1474-919X.1992.tb04734.x
SRDSKWMY 10.5751/ES-07868-200344
LEDV4ZY3 10.2111/REM-D-13-00082.1
VJ9ICZSL 10.3000/17252555.L_2009.140.eng
MKN5QJQG 10.1023/A:1017529816140
VHXQH74D 10.1016/S0044-8486(03)00474-5
N3EZMAQ9 10.1016/S0921-8009(00)00172-5
JP3NGH3J 10.1051/agro
ZUR9EDFF 10.1111/j.1467-789X.2009.00658.x
IV64LA5J 10.5751/ES-06333-190242
JDAGHWGN 10.1103/PhysRevLett.104.235502
WEMCTWUS 10.3986/AGS.3039
N6XLWTJK 10.1177/1420326X9800700404
4QCWLHTK 10.1641/0006-3568(2002)052[0891:THFATL]2.0.CO;2
CYYCRG9X 10.17221/109/2015-SWR
7UMGYR8E 10.5751/ES-08964-210446
TEPH4KG9 10.3986/GV87203
G3IBUNSS 10.5751/ES-04641-170131
HE43PIGB 10.1016/S0743-0167(99)00050-9
ZXCCAGM3 10.5751/ES-07785-200339
XX3UWJED 10.1890/1051-0761(2006)016[1311:TCOPEF]2.0.CO;2
JEB4GWW8 10.1111/j.1526-100X.2005.00025.x
CZZWC6JA 10.5751/ES-05597-180333
VLW8PW7G 10.5751/ES-05597-180333
2CVHJQXU 10.1663/0013-0001(2006)60[130:wgfpit]2.0.co;2
MJFQL5GI 10.1016/S0921-8009(00)00162-2
NAJE83NP 10.3986/AGS54409
QWJI6VTS 10.1016/S0169-2046(01)00208-0
K5DLACXA 10.1657/AAAR0016-042
ZMFYMFPR 10.1016/S0041-624X(99)00131-6
KLJTE5L8 10.1016/S0045-6535(03)00471-5
J3JKGGPA 10.5751/ES-08964-210446
2SP7P7RB 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z
D4PSH9CK 10.5751/ES-06915-190432
7GUZTKCU 10.1111/j.1755-263X.2011.00217.x
YCI8ZTUV 10.5751/ES-07607-200332
HP3IMZSV 10.1016/S0140-6736(10)60785-4
U45CC953 10.1016/S0048-9697(00)00373-9
KKVRCNRU 10.1038/ngeo233
JZFHAMET 10.1029/2009GL037956
IER87XR2 10.1016/S0921-8009(99)00013-0
ZHF7RUUQ 10.1016/S0140-6736(15)60901-1
WK9S4ITE 10.1111/j.1365-2486.2005.01075.x
RURE65T3 10.1029/2008GB003212
5G58E8J7 10.1029/2005JD005965
RNIY7CL2 10.5751/ES-05877-180420
GFMM4IJM 10.1007/978-1-4020-4906-4-15
EDP8ESGI 10.1002/2013GB004654
NX2KX3FM 10.3986/AGS49205
KC2ELBRW 10.1038/nature
QISQ5BQL 10.1073/pnas.XXXXXXXXXX
6GM5L9XX 10.5751/ES-06252-190139
L7QNBYTT 10.1007/BF02471957
MTT49VSS 10.1017/CBO9781107415324.004
AMK77RZB 10.5751/ES-08680-210332
CLPVES3Y 10.2166/nh.2006.001
BGCB926Y 10.5073/JABFQ.2015.088.036
K5RQV8I6 10.1029/2011JC007112
CPF9R7QL 10.3945/an.113.005553.418
VF74T9LI 10.13140/RG.2.2.17532.74881
NKRF3VRY 10.1639/0044-7447(2003)032
27JX37M4 10.1007/s11707-012-0320-4
ZBQ5GDD3 10.13140/RG.2.1.4312.2807
IT5IWD4X 10.1002/(sici)1099-1085(199711)11:14<1797::aid-hyp605>3.0.co;2-7
W7GWUQAS 10.1002/jtr
GHWT4SBG 10.5751/ES-04853-170322
RKGALAYM 10.1639/0044-7447(2005)034[0131:imwqbm]2.0.co;2
TK2EAY6W 10.1007/s11629-1
98EGF456 10.1029/2008GB003212
HHBC4NHN 10.1163/187471611X600369
V5GZUY2K 10.1071/RJ12092
E8XY433V 10.1080/1747423X.2015.1096423
RU7WBMGJ 10.1023/A:1020243304744
EYDHXRJM 10.3097/LO.201434
WSYSZWFN 10.145/3/aitex.1603161
FDI698Q8 10.1097/ACI.0000000000000304
JH6ZMJQA 10.1016/S0921-8009(02)00098-8
X3QD5FFV 10.1016/S0169-2046(01)00138-4
68GUG3QP 10.1016/S0169-2046(03)00150-6
NA9I4P74 10.1016/S1469-0292(01)00038-3
LZKK2Z5V 10.1029/2004GL019836
L6NZCPZ5 10.1186/1476-069X-9-74
ZHYTUA3Y 10.1016/S0378-8741(02)00052-1
YI5FCTSU 10.1111/j.1467-789X.2010.00827.x
VA7YP93V 10.1111/j.1464-410X.2009.08422.x
4SYWDBAC 10.3837/tiis.0000.00.000
NI5LL8P9 10.1080/1747423X.2013.786150
2HKCMQIN 10.5751/ES-02736-140109
2I8WKPPX 10.5897/AJAR10.018
FGIAXHZH 10.1663/0013-0001(2004)058
79NF6MMT 10.5751/ES-08494-210232
787E22AN 10.1029/2008GL035028
CF88QIBH 10.3000/17252555.L_2009.140.eng
H9LZNEUQ 10.5751/ES-06401-190227
7XIWWK5N 10.2495/FRIAR100071
38IFPKSJ 10.5751/ES-05480-180242
JB4BVA2Z 10.1016/B978-012226865-6/00527-4
AKTDGUW4 10.1111/j.1474-919X.1992.tb04734.x
CHBVV2KV 10.1016/S0169-2046(00)00137-7
N3ZSJSAN 10.1029/2007JD009719
H8X8VTPE 10.3390/W8060253
KIQMGLZ2 10.5751/ES-03450-150319
3SAB2ZUN 10.1017/S0376892907004067
M6BIDFIC 10.5751/ES-07607-200332
E7JJCNHG 10.1016/S0921-8009(99)00013-0
VZGBESF2 10.1016/S0169-2046(01)00243-2
8D575RF5 10.3986/AGS53403
2FJ5A2S4 10.1016/S0022-1694(96)03335-5
7TKIZ3B9 10.1002/(SICI)1097-0088(19971115)17:13<1451::AID-JOC201>3.0.CO;2-Z
7NF7FVD9 10.2779/39229
SVIP75QG 23
KN2YFRI9 10.2800/45773
S8NEGK7F 10.1073/pnas.
LZSKNGTH 10.1025/bio.2009.59.3.7
ATGCDNKK 10.5751/ES-08605-210316
8C6RDHPN COM(2011) 244 fina
SQVQVWVS 10.1016/j.worlddev.2016.12.030
ZCUI5ICF 10.1080/1523908X.2014.947922
TQKMJLBP 10.1177/0739456X11410979
CDDKCMVQ 10.1134/S2079970515020021
AKEGCB74 10.1002/2013GB004654
QIDRWXQY 10.1017/S0025315408002476
Z7Z4GKFT 10.5751/ES-06159-190259
AW6JIMAP 10.5751/ES-05619-180307
YYQDY5WH 10.5751/ES-07489-200230
QBVM7769 10.1016/S0022-1694(02)00142-7
76Q58QQZ 10.5751/ES-05790-180344
X8BATCRT 10.1023/A:1022808908500
VF7SZW48 10.1029/2010GL042468
E5VZGDGB 10.2779/39229
S7RAASMB 10.3929/ethz-b-000238666
GRIHRSEB 10.1016/0169-2046(95)93251-J
ZJDUJPNR 10.1007/BF02471975
9X5CJHMQ 10.1016/S0378-1127(01)00496-0
96GYUXZ3 10.1071/AR9580553
3IB5SSZM 10.1016/S0169-2046(03)00100-2
JUWCW66Q 10.1016/S0169-2046(00)00082-7
QT4A5H94 10.1023/A:1008085902053
99B7Z6Z7 10.1016/S0378-1127(97)00026-1
NKIVCBB5 10.1111/j.1654-109X.2009.01060.x
RLP93E3S 10.1016/0167-8809(91)90052-Y
LS62RNUM 10.1023/A:1011115921050
2KS5FZVE 10.1023/B:BINV.0000022140.07404.b7
UA4QFFNF 10.1111/j.1526-100X.2009.00530.x
P9LLHLZU 10.1016/S0300-9629(76)80010-2
M6ZDHBEQ 10.1016/S0167-8809(99)00047-X
A6GX2QM6 :10.1016/j.jtbi.2010.03.032
F4LL5SQA 10.1007/s00267-003-0017-2|ISSN 0364-152X
YUW96SZC 10.1025/bio.2009.59.3.7
8M4J8SED 10.1111/j.1461-0248.2007.01149.x|ISSN 1461-023X
5NI4RSR3 ISBN: 978-92-1-126398-5
5XG4A7JG 10.1016/j.foreco.2011.04.004
WK392FV5 10.1016/j.seares.2015.06.020
RNFHYG35 10.1016/S1290-0796(01)90006-9
B74VUUPF 10.1016/j.biocon.2011.12.035
XM82JY5P 10.2307/27647687
C97Z7PCA 10.1175/JCLI3471.1
U7LZD4GZ 10.5751/ES-05576-180335
6N4BS59M 10.17660/ActaHortic.2007.729.83
NZGLTCB3 10.1515/gospo-2015-26
MY4D56JS 10.1111/j.1467-923X.2010.02133.x
6METTBQ6 10.5751/ES-05927-180237
WUQL85LN 10.1111/j.1755-263X.2012.00270.x

TODO Do Exist

TODO Finally we check, if these dois exist but are not ingested into OpenAlex. This is done using the doi.org resolver This is disabled at the moment and still needs to be implemented.

Reuse

Citation

BibTeX citation:
@report{krug,
  author = {Krug, Rainer M.},
  title = {Bibliography {Report}},
  langid = {en},
  abstract = {Reports analysing the IPBES Libraries on Zotero.}
}
For attribution, please cite this work as:
Krug, Rainer M. n.d. “Bibliography Report.”