diff --git a/DESCRIPTION b/DESCRIPTION index 09a56025..08a4e372 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: AMR -Version: 1.8.1.9004 -Date: 2022-05-09 +Version: 1.8.1.9005 +Date: 2022-05-10 Title: Antimicrobial Resistance Data Analysis Description: Functions to simplify and standardise antimicrobial resistance (AMR) data analysis and to work with microbial and antimicrobial properties by diff --git a/NEWS.md b/NEWS.md index 3a626846..517d7ee4 100755 --- a/NEWS.md +++ b/NEWS.md @@ -1,7 +1,8 @@ -# `AMR` 1.8.1.9004 -## Last updated: 9 May 2022 +# `AMR` 1.8.1.9005 +## Last updated: 10 May 2022 ### Changed +* Fix for `as.rsi()` on certain EUCAST breakpoints for MIC values * Removed `as.integer()` for MIC values, since MIC are not integer values and running `table()` on MIC values consequently failed for not being able to retrieve the level position (as that's how normally `as.integer()` on `factor`s work) * `droplevels()` on MIC will now return a common `factor` at default and will lose the `` class. Use `droplevels(..., as.mic = TRUE)` to keep the `` class. * Small fix for using `ab_from_text()` diff --git a/R/rsi.R b/R/rsi.R index a80326cb..cb097f58 100755 --- a/R/rsi.R +++ b/R/rsi.R @@ -818,18 +818,20 @@ exec_as.rsi <- function(method, if (is.na(x[i]) | (is.na(get_record$breakpoint_S) & is.na(get_record$breakpoint_R))) { new_rsi[i] <- NA_character_ } else if (method == "mic") { - new_rsi[i] <- quick_case_when(isTRUE(conserve_capped_values) & x[i] %like% "^<[0-9]" ~ "S", - isTRUE(conserve_capped_values) & x[i] %like% "^>[0-9]" ~ "R", + new_rsi[i] <- quick_case_when(isTRUE(conserve_capped_values) & isTRUE(x[i] %like% "^<[0-9]") ~ "S", + isTRUE(conserve_capped_values) & isTRUE(x[i] %like% "^>[0-9]") ~ "R", # these basically call `<=.mic()` and `>=.mic()`: - x[i] <= get_record$breakpoint_S ~ "S", - x[i] >= get_record$breakpoint_R ~ "R", + isTRUE(x[i] <= get_record$breakpoint_S) ~ "S", + guideline_coerced %like% "EUCAST" & isTRUE(x[i] > get_record$breakpoint_R) ~ "R", + guideline_coerced %like% "CLSI" & isTRUE(x[i] >= get_record$breakpoint_R) ~ "R", # return "I" when not match the bottom or top !is.na(get_record$breakpoint_S) & !is.na(get_record$breakpoint_R) ~ "I", # and NA otherwise TRUE ~ NA_character_) } else if (method == "disk") { new_rsi[i] <- quick_case_when(isTRUE(as.double(x[i]) >= as.double(get_record$breakpoint_S)) ~ "S", - isTRUE(as.double(x[i]) <= as.double(get_record$breakpoint_R)) ~ "R", + guideline_coerced %like% "EUCAST" & isTRUE(as.double(x[i]) < as.double(get_record$breakpoint_R)) ~ "R", + guideline_coerced %like% "CLSI" & isTRUE(as.double(x[i]) <= as.double(get_record$breakpoint_R)) ~ "R", # return "I" when not match the bottom or top !is.na(get_record$breakpoint_S) & !is.na(get_record$breakpoint_R) ~ "I", # and NA otherwise diff --git a/data-raw/AMR_latest.tar.gz b/data-raw/AMR_latest.tar.gz index 7739bac9..6f50b74a 100644 Binary files a/data-raw/AMR_latest.tar.gz and b/data-raw/AMR_latest.tar.gz differ diff --git a/data-raw/reproduction_of_rsi_translation.R b/data-raw/reproduction_of_rsi_translation.R index 39fd3b2c..e4695a7f 100644 --- a/data-raw/reproduction_of_rsi_translation.R +++ b/data-raw/reproduction_of_rsi_translation.R @@ -128,11 +128,24 @@ rsi_translation[which(rsi_translation$breakpoint_R == 257), "breakpoint_R"] <- m rsi_translation[which(rsi_translation$breakpoint_R == 513), "breakpoint_R"] <- m[which(m == 512) + 1] rsi_translation[which(rsi_translation$breakpoint_R == 1025), "breakpoint_R"] <- m[which(m == 1024) + 1] +# WHONET adds one log2 level to the R breakpoint for their software, e.g. in AMC in Enterobacterales: +# EUCAST 2021 guideline: S <= 8 and R > 8 +# WHONET file: S <= 8 and R >= 16 +# this will make an MIC of 12 I, which should be R, so: +eucast_mics <- which(rsi_translation$guideline %like% "EUCAST" & + rsi_translation$method == "MIC" & + log2(as.double(rsi_translation$breakpoint_R)) - log2(as.double(rsi_translation$breakpoint_S)) != 0) +rsi_translation[eucast_mics, "breakpoint_R"] <- 2 ^ (log2(as.double(rsi_translation[eucast_mics, "breakpoint_R", drop = TRUE])) - 1) +eucast_disks <- which(rsi_translation$guideline %like% "EUCAST" & + rsi_translation$method == "DISK" & + rsi_translation$breakpoint_S - rsi_translation$breakpoint_R != 0) +rsi_translation[eucast_disks, "breakpoint_R"] <- rsi_translation[eucast_disks, "breakpoint_R", drop = TRUE] + 1 + # Greek symbols and EM dash symbols are not allowed by CRAN, so replace them with ASCII: rsi_translation$disk_dose <- gsub("μ", "u", rsi_translation$disk_dose, fixed = TRUE) rsi_translation$disk_dose <- gsub("–", "-", rsi_translation$disk_dose, fixed = TRUE) # save to package -usethis::use_data(rsi_translation, overwrite = TRUE) +usethis::use_data(rsi_translation, overwrite = TRUE, compress = "xz") rm(rsi_translation) devtools::load_all(".") diff --git a/data-raw/rsi.md5 b/data-raw/rsi.md5 index e2d6b112..8dce952c 100644 --- a/data-raw/rsi.md5 +++ b/data-raw/rsi.md5 @@ -1 +1 @@ -d8083b68d4e492ea8e87c1eae4da4196 +657a743283954b40bb68fd3b965462a2 diff --git a/data-raw/rsi_translation.dta b/data-raw/rsi_translation.dta index 8cb4c0cf..532a1e41 100644 Binary files a/data-raw/rsi_translation.dta and b/data-raw/rsi_translation.dta differ diff --git a/data-raw/rsi_translation.rds b/data-raw/rsi_translation.rds index 3fc5e284..e2970acf 100644 Binary files a/data-raw/rsi_translation.rds and b/data-raw/rsi_translation.rds differ diff --git a/data-raw/rsi_translation.sas b/data-raw/rsi_translation.sas index 4a99f14a..6c91ff20 100644 Binary files a/data-raw/rsi_translation.sas and b/data-raw/rsi_translation.sas differ diff --git a/data-raw/rsi_translation.sav b/data-raw/rsi_translation.sav index c1769665..16d7fa45 100644 Binary files a/data-raw/rsi_translation.sav and b/data-raw/rsi_translation.sav differ diff --git a/data-raw/rsi_translation.txt b/data-raw/rsi_translation.txt index 35de5f95..4afd62ce 100644 --- a/data-raw/rsi_translation.txt +++ b/data-raw/rsi_translation.txt @@ -1,7438 +1,7438 @@ "guideline" "method" "site" "mo" "rank_index" "ab" "ref_tbl" "disk_dose" "breakpoint_S" "breakpoint_R" "uti" -"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2021" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2021" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2021" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2021" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2021" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20ug/10ug" 50 21 FALSE -"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" 0.001 16 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2021" "DISK" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE -"EUCAST 2021" "DISK" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 50 14 FALSE -"EUCAST 2021" "MIC" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE -"EUCAST 2021" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 0.001 4 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 18 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE -"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "S. pneumoniae" 0.5 2 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 17 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 18 FALSE -"EUCAST 2021" "DISK" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 18 TRUE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE -"EUCAST 2021" "MIC" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 TRUE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 14 FALSE -"EUCAST 2021" "DISK" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 14 TRUE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 32 FALSE -"EUCAST 2021" "MIC" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 32 TRUE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 21 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Amikacin" "Staphs" "30" 18 17 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Amikacin" "Staphs" 8 16 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 1 2 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 25 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Haemophilus" 3 "Ampicillin" "H. influenzae" "2" 18 17 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 2 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "IV" "Listeria monocytogenes" 2 "Ampicillin" "L. monocytogenes" "2" 16 15 FALSE -"EUCAST 2021" "MIC" "IV" "Listeria monocytogenes" 2 "Ampicillin" "L. monocytogenes" 1 2 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2021" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ampicillin" "S. pneumoniae" "2" 22 15 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ampicillin" "S. pneumoniae" 0.5 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ampicillin" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2021" "MIC" "Oral" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 4 FALSE -"EUCAST 2021" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 0.001 4 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin" "S. pneumoniae" 0.5 2 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2021" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2021" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 20 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 17 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 0.001 32 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 8 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "S. pneumoniae" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Mycobacterium tuberculosis" 2 "Bedaquiline" "M. tuberculosis" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 22 FALSE +"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2021" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2021" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2021" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2021" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2021" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20ug/10ug" 50 22 FALSE +"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" 0.001 8 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2021" "DISK" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 15 FALSE +"EUCAST 2021" "DISK" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 50 15 FALSE +"EUCAST 2021" "MIC" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 2 FALSE +"EUCAST 2021" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 0.001 2 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 19 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 1 FALSE +"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "S. pneumoniae" 0.5 1 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 18 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 19 FALSE +"EUCAST 2021" "DISK" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 19 TRUE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 8 FALSE +"EUCAST 2021" "MIC" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 8 TRUE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 15 FALSE +"EUCAST 2021" "DISK" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 15 TRUE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 16 FALSE +"EUCAST 2021" "MIC" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 16 TRUE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 22 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 8 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Amikacin" "Staphs" "30" 18 18 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Amikacin" "Staphs" 8 8 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 1 1 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 26 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Haemophilus" 3 "Ampicillin" "H. influenzae" "2" 18 18 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 1 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "IV" "Listeria monocytogenes" 2 "Ampicillin" "L. monocytogenes" "2" 16 16 FALSE +"EUCAST 2021" "MIC" "IV" "Listeria monocytogenes" 2 "Ampicillin" "L. monocytogenes" 1 1 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2021" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ampicillin" "S. pneumoniae" "2" 22 16 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ampicillin" "S. pneumoniae" 0.5 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ampicillin" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2021" "MIC" "Oral" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 2 FALSE +"EUCAST 2021" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 0.001 2 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Amoxicillin" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin" "S. pneumoniae" 0.5 1 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2021" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2021" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 21 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 18 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 0.001 16 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 4 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "S. pneumoniae" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Mycobacterium tuberculosis" 2 "Bedaquiline" "M. tuberculosis" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 23 FALSE "EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftobiprole" "Staphs" "5" 17 17 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftobiprole" "Staphs" 2 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE -"EUCAST 2021" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10ug" 50 17 FALSE -"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" 0.001 16 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 50 16 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 0.001 16 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "S. pneumoniae" "30" 50 27 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "S. pneumoniae" 0.001 1 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefixime" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 17 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30ug" 50 21 FALSE -"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" 0.001 16 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "S. pneumoniae" "30" 21 20 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "S. pneumoniae" 8 16 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 25 21 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 50 20 FALSE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.001 2 FALSE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2021" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Ciprofloxacin" "Bacillus sp." "5ug" 50 22 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Ciprofloxacin" "Bacillus sp." 0.001 1 FALSE -"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "C. jejuni, C. coli" "5ug" 50 25 FALSE -"EUCAST 2021" "MIC" "Campylobacter coli" 2 "Ciprofloxacin" "C. jejuni, C. coli" 0.001 1 FALSE -"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "C. jejuni, C. coli" "5ug" 50 25 FALSE -"EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "C. jejuni, C. coli" 0.001 1 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 50 24 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 0.001 2 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 30 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 50 25 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.001 1 FALSE -"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 50 23 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ciprofloxacin" "Staphs" "5" 50 20 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ciprofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Clindamycin" "Bacillus sp." "2ug" 17 16 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Clindamycin" "Bacillus sp." 1 2 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "S. pneumoniae" "2" 19 18 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 64 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "S. pneumoniae" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 2 4 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" "10" 26 25 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "S. pneumoniae" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE -"EUCAST 2021" "DISK" "Pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2021" "DISK" "Non-pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" "5" 20 16 FALSE -"EUCAST 2021" "MIC" "Pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2021" "MIC" "Non-pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" 1 4 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "S. pneumoniae" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 21 FALSE -"EUCAST 2021" "DISK" "Meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 24 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" "30" 32 31 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 29 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 20 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 4 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "S. pneumoniae" 0.5 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Ceftibuten" "H. influenzae" "30" 25 24 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 2 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2021" "DISK" "Meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 19 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefotaxime" "H. influenzae" "5" 27 26 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 26 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 16 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 4 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "S. pneumoniae" 0.5 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2021" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 50 18 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 18 TRUE -"EUCAST 2021" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 0.001 16 FALSE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 27 24 FALSE -"EUCAST 2021" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 50 26 FALSE -"EUCAST 2021" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 4 FALSE -"EUCAST 2021" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.001 2 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 28 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 1 FALSE -"EUCAST 2021" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 17 FALSE -"EUCAST 2021" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 20 FALSE -"EUCAST 2021" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 16 FALSE -"EUCAST 2021" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.001 8 FALSE -"EUCAST 2021" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "S. pneumoniae" 0.5 2 FALSE -"EUCAST 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "S. pneumoniae" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 12 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" "10-4" 17 16 FALSE -"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 16 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefazolin" "Enterobacteriaceae" "30" 50 19 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefazolin" "Enterobacteriaceae" 0.001 8 TRUE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 22 21 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "DISK" "Pneumonia" "Haemophilus" 3 "Ceftolozane/tazobactam" "H. influenzae" "30-10" 23 22 FALSE -"EUCAST 2021" "MIC" "Pneumonia" "Haemophilus" 3 "Ceftolozane/tazobactam" "H. influenzae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" "30-10" 23 22 FALSE -"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 8 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2021" "MIC" "Escherichia coli" 2 "Delafloxacin" "Enterobacteriaceae" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Delafloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Delafloxacin" "Strep A, B, C, G" 0.032 0.06 FALSE -"EUCAST 2021" "MIC" "Streptococcus anginosus" 2 "Delafloxacin" "Viridans strept" 0.032 0.06 FALSE -"EUCAST 2021" "MIC" "Streptococcus constellatus" 2 "Delafloxacin" "Viridans strept" 0.032 0.06 FALSE -"EUCAST 2021" "MIC" "Streptococcus intermedius" 2 "Delafloxacin" "Viridans strept" 0.032 0.06 FALSE -"EUCAST 2021" "MIC" "Mycobacterium tuberculosis" 2 "Delamanid" "M. tuberculosis" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "30" 24 20 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 50 21 FALSE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 0.001 4 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Doripenem" "H. influenzae" "10ug" 23 22 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 2 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10ug" 30 29 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 2 FALSE -"EUCAST 2021" "DISK" "UTI" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 50 21 TRUE -"EUCAST 2021" "MIC" "UTI" "Pseudomonas" 3 "Doripenem" "Pseudo" 0.001 4 TRUE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "S. pneumoniae" 1 2 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE -"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "B. pseudomallei" 0.001 4 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 4 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "S. pneumoniae" 1 4 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" "20" 24 23 FALSE -"EUCAST 2021" "MIC" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" "20" 22 21 FALSE -"EUCAST 2021" "MIC" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20ug" 17 16 FALSE -"EUCAST 2021" "MIC" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" "20ug" 20 19 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20ug" 17 16 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Erythromycin" "Bacillus sp." "15ug" 24 23 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Erythromycin" "Bacillus sp." 0.5 1 FALSE -"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Erythromycin" "C. jejuni, C. coli" "15" 24 23 FALSE -"EUCAST 2021" "MIC" "Campylobacter coli" 2 "Erythromycin" "C. jejuni, C. coli" 8 16 FALSE -"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "C. jejuni, C. coli" "15ug" 20 19 FALSE -"EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "C. jejuni, C. coli" 4 8 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 32 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 19 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "L. monocytogenes" "15" 25 24 FALSE -"EUCAST 2021" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "L. monocytogenes" 1 2 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "S. pneumoniae" "15" 22 18 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "S. pneumoniae" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 24 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Ertapenem" "H. influenzae" "10" 23 22 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Cefiderocol" "Enterobacteriaceae" "30" 22 21 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Cefiderocol" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Pseudo" "30" 22 21 FALSE -"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Pseudo" 2 4 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE -"EUCAST 2021" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 19 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 8 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 50 20 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 0.001 16 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "S. pneumoniae" 1 4 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2021" "MIC" "Candida" 3 "Fluconazole" "Candida" 0.002 64 FALSE -"EUCAST 2021" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Fluconazole" "PK/PD" 2 8 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" "200" 21 20 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2021" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 FALSE -"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 TRUE -"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2021" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2021" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2021" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2021" "DISK" "Screen" "Staphylococcus epidermidis" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 16 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 16 TRUE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 TRUE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2021" "DISK" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 TRUE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2021" "MIC" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 TRUE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Imipenem/relebactam" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Imipenem/relebactam" "Acinetobacter spp." "10-25" 24 23 FALSE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Imipenem/relebactam" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Pseudo" "10-25" 22 21 FALSE -"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Pseudo" 2 4 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem/relebactam" "Viridans strept" 2 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Imipenem/relebactam" "PK/PD" 2 4 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 20 FALSE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Imipenem" "Bacillus sp." "10ug" 30 29 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Imipenem" "Bacillus sp." 0.5 1 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10ug" 29 28 FALSE -"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" 2 4 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 50 20 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Imipenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 4 FALSE -"EUCAST 2021" "DISK" "Morganella" 3 "Imipenem" "Enterobacteriaceae" "10" 50 18 FALSE -"EUCAST 2021" "MIC" "Morganella" 3 "Imipenem" "Enterobacteriaceae" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2021" "MIC" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2021" "DISK" "Proteus" 3 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2021" "MIC" "Proteus" 3 "Imipenem" "Enterobacteriaceae" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Providencia" 3 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2021" "MIC" "Providencia" 3 "Imipenem" "Enterobacteriaceae" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 50 19 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 0.001 8 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "S. pneumoniae" 2 4 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Isavuconazole" "Aspergillus" 1 2 FALSE -"EUCAST 2021" "MIC" "Aspergillus nidulans" 2 "Isavuconazole" "Aspergillus" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Aspergillus terreus" 2 "Isavuconazole" "Aspergillus" 1 2 FALSE -"EUCAST 2021" "MIC" "Aspergillus flavus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2021" "MIC" "Aspergillus nidulans" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2021" "MIC" "Aspergillus terreus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2021" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Candida dubliniensis" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 16 FALSE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 21 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Kanamycin" "Staphs" "30" 18 17 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Staphs" "5ug" 23 22 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Lefamulin" "S. pneumoniae" "5ug" 12 11 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Lefamulin" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Linezolid" "Bacillus sp." "10ug" 22 21 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Linezolid" "Bacillus sp." 2 4 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 20 19 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 20 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 18 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "S. pneumoniae" "10" 22 21 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "S. pneumoniae" 2 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 18 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2021" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Levofloxacin" "Bacillus sp." "5ug" 50 22 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Levofloxacin" "Bacillus sp." 0.001 2 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Levofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 28 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 50 21 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 0.001 2 FALSE -"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 50 23 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Levofloxacin" "Staphs" "5" 50 21 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Levofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 50 16 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 0.001 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "S. pneumoniae" "5" 50 15 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "S. pneumoniae" 0.001 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 1 FALSE -"EUCAST 2021" "DISK" "UTI" "Citrobacter" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Citrobacter" 3 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "UTI" "Enterobacter" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacter" 3 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella" 3 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "UTI" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "UTI" "Raoultella" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Raoultella" 3 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2021" "DISK" "Non-meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2021" "DISK" "Meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 21 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Meropenem" "A. xylosoxidans" "10ug" 26 19 FALSE -"EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Meropenem" "A. xylosoxidans" 1 8 FALSE -"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Meropenem" "A. xylosoxidans" "10ug" 26 19 FALSE -"EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Meropenem" "A. xylosoxidans" 1 8 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2021" "DISK" "Meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 20 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 30 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Meropenem" "Bacillus sp." "10ug" 25 24 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Meropenem" "Bacillus sp." 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10ug" 24 23 FALSE -"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" 2 4 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 29 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.06 FALSE -"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Meropenem" "L. monocytogenes" "10" 26 25 FALSE -"EUCAST 2021" "MIC" "Listeria monocytogenes" 2 "Meropenem" "L. monocytogenes" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 32 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2021" "DISK" "Meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 23 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 4 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "S. pneumoniae" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "S. pneumoniae" 2 4 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem/vaborbactam" "Pseudo" 8 16 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "PK/PD" 8 16 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 21 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" "5" 28 27 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 27 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Moxifloxacin" "Staphs" "5" 25 24 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 18 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "S. pneumoniae" "5" 22 21 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2021" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Minocycline" "H. influenzae" "30" 24 23 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 2 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 24 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 2 FALSE -"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 22 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 22 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "S. pneumoniae" "30" 24 23 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "S. pneumoniae" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2021" "DISK" "Screen" "Haemophilus" 3 "Nalidixic acid" "H. influenzae" "30" 23 6 FALSE -"EUCAST 2021" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 6 FALSE -"EUCAST 2021" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 15 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 32 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2021" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2021" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2021" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 21 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 TRUE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 16 FALSE -"EUCAST 2021" "DISK" "Screen" "Bacillus" 3 "Norfloxacin" "Bacillus sp." "10ug" 21 20 FALSE -"EUCAST 2021" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2021" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2021" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2021" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "S. pneumoniae" "10" 10 6 FALSE -"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 21 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Ofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 27 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oritavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Staphs" "1 unit" 20 19 FALSE -"EUCAST 2021" "DISK" "Screen" "Staphylococcus schleiferi" 2 "Oxacillin" "Staphs" "1 unit" 20 19 FALSE -"EUCAST 2021" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "S. pneumoniae" "1" 20 6 FALSE -"EUCAST 2021" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 20 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Screen" "Haemophilus" 3 "Benzylpenicillin" "H. influenzae" "1 unit" 12 6 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 24 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.06 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Listeria monocytogenes" 2 "Benzylpenicillin" "L. monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Listeria monocytogenes" 2 "Benzylpenicillin" "L. monocytogenes" 1 2 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "P. multocida" "1 unit" 17 16 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "P. multocida" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2021" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Non-meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2021" "DISK" "Meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 19 18 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "S. pneumoniae" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "S. pneumoniae" 0.064 4 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2021" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2021" "MIC" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2048 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 19 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 50 17 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 0.001 32 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2021" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2021" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Candida dubliniensis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 24 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2021" "DISK" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" "5" 18 17 FALSE -"EUCAST 2021" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 2 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 19 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 1 FALSE -"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "S. pneumoniae" "5" 22 16 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "S. pneumoniae" 0.125 1 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "S. pneumoniae" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25ug/23.75ug" 26 25 FALSE -"EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25ug/23.75ug" 26 25 FALSE -"EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2021" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE -"EUCAST 2021" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25ug/23.75ug" 50 16 FALSE -"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "L. monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2021" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "L. monocytogenes" 0.064 0.12 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 50 15 FALSE -"EUCAST 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 0.001 8 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "S. pneumoniae" "1.25ug/23.75ug" 13 9 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "S. pneumoniae" 1 4 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 50 17 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 0.001 32 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2021" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30ug" 50 22 FALSE -"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Tetracycline" "C. jejuni, C. coli" "30ug" 30 29 FALSE -"EUCAST 2021" "MIC" "Campylobacter coli" 2 "Tetracycline" "C. jejuni, C. coli" 2 4 FALSE -"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "C. jejuni, C. coli" "30ug" 30 29 FALSE -"EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Tetracycline" "C. jejuni, C. coli" 2 4 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Tetracycline" "H. influenzae" "30" 25 21 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 4 FALSE -"EUCAST 2021" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 27 FALSE -"EUCAST 2021" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 24 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 2 4 FALSE -"EUCAST 2021" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "S. pneumoniae" "30" 25 21 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "S. pneumoniae" 1 4 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "S. pneumoniae" "30" 17 16 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "S. pneumoniae" 2 4 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella" 3 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella" 3 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella granulomatis" 2 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella granulomatis" 2 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella oxytoca" 2 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella oxytoca" 2 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella pneumoniae ozaenae" 1 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella pneumoniae ozaenae" 1 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella pneumoniae pneumoniae" 1 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella pneumoniae pneumoniae" 1 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella pneumoniae rhinoscleromatis" 1 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella pneumoniae rhinoscleromatis" 1 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella quasipneumoniae" 2 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella quasipneumoniae" 2 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Klebsiella variicola" 2 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Klebsiella variicola" 2 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "DISK" "UTI" "Proteus mirabilis" 2 "Temocillin" "Enterobacteriaceae" "30" 50 16 TRUE -"EUCAST 2021" "MIC" "UTI" "Proteus mirabilis" 2 "Temocillin" "Enterobacteriaceae" 0.001 32 TRUE -"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2021" "DISK" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 17 FALSE -"EUCAST 2021" "MIC" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 17 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" "15" 22 21 FALSE -"EUCAST 2021" "MIC" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" "15" 20 19 FALSE -"EUCAST 2021" "MIC" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 17 FALSE -"EUCAST 2021" "MIC" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 19 18 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 18 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 19 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 50 17 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 0.001 32 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 16 FALSE -"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "S. pneumoniae" "15" 23 19 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "S. pneumoniae" 0.25 1 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Telavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 15 14 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 4 8 TRUE -"EUCAST 2021" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2021" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2021" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 14 13 TRUE -"EUCAST 2021" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 4 8 TRUE -"EUCAST 2021" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 16 15 FALSE -"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 16 15 TRUE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 TRUE -"EUCAST 2021" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2021" "DISK" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 TRUE -"EUCAST 2021" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2021" "MIC" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 TRUE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 17 FALSE -"EUCAST 2021" "DISK" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 17 TRUE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 4 FALSE -"EUCAST 2021" "MIC" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 4 TRUE -"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2ug" 21 20 FALSE -"EUCAST 2021" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2ug" 18 17 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE -"EUCAST 2021" "MIC" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE -"EUCAST 2021" "MIC" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE -"EUCAST 2021" "MIC" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" 0.5 1 FALSE -"EUCAST 2021" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 19 FALSE -"EUCAST 2021" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" "30-6" 26 25 FALSE -"EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" 4 8 FALSE -"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" "30-6" 26 25 FALSE -"EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" 4 8 FALSE -"EUCAST 2021" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" "30-6" 27 26 FALSE -"EUCAST 2021" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2021" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 50 17 FALSE -"EUCAST 2021" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 0.001 32 FALSE -"EUCAST 2021" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2021" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 15 FALSE -"EUCAST 2021" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 2 FALSE -"EUCAST 2021" "DISK" "Bacillus" 3 "Vancomycin" "Bacillus sp." "5ug" 10 9 FALSE -"EUCAST 2021" "MIC" "Bacillus" 3 "Vancomycin" "Bacillus sp." 2 4 FALSE -"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2021" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2021" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2021" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2021" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2021" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "S. pneumoniae" "5" 16 15 FALSE -"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "S. pneumoniae" 2 4 FALSE -"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2021" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.064 0.5 FALSE -"EUCAST 2021" "MIC" "Candida dubliniensis" 2 "Voriconazole" "Candida" 0.064 0.5 FALSE -"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.5 FALSE -"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.5 FALSE -"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2020" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2020" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2020" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2020" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2020" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20ug/10ug" 50 21 FALSE -"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" 0.001 16 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2020" "DISK" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE -"EUCAST 2020" "DISK" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 50 14 FALSE -"EUCAST 2020" "MIC" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE -"EUCAST 2020" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 0.001 4 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 18 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE -"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Pneumo" 0.5 2 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 17 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 18 FALSE -"EUCAST 2020" "DISK" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 18 TRUE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE -"EUCAST 2020" "MIC" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 TRUE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 14 FALSE -"EUCAST 2020" "DISK" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 14 TRUE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 32 FALSE -"EUCAST 2020" "MIC" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 32 TRUE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 21 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 1 2 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 25 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Ampicillin" "H. influenzae" "2" 18 17 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 2 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "IV" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 15 FALSE -"EUCAST 2020" "MIC" "IV" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2020" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" "2" 22 15 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2020" "MIC" "Oral" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "IV" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 4 FALSE -"EUCAST 2020" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 0.001 4 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin" "Pneumo" 0.5 2 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2020" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2020" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 20 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 17 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 0.001 32 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 8 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Mycobacterium tuberculosis" 2 "Bedaquiline" "M. tuberculosis" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 22 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftobiprole" "Staphs" 2 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 4 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 21 FALSE +"EUCAST 2021" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 4 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10ug" 50 18 FALSE +"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" 0.001 8 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 50 17 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 0.001 8 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "S. pneumoniae" "30" 50 28 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "S. pneumoniae" 0.001 0.5 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefixime" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 18 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30ug" 50 22 FALSE +"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" 0.001 8 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 2 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "S. pneumoniae" "30" 21 21 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "S. pneumoniae" 8 8 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 25 22 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 50 21 FALSE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.001 1 FALSE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 21 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2021" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Ciprofloxacin" "Bacillus sp." "5ug" 50 23 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Ciprofloxacin" "Bacillus sp." 0.001 0.5 FALSE +"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "C. jejuni, C. coli" "5ug" 50 26 FALSE +"EUCAST 2021" "MIC" "Campylobacter coli" 2 "Ciprofloxacin" "C. jejuni, C. coli" 0.001 0.5 FALSE +"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "C. jejuni, C. coli" "5ug" 50 26 FALSE +"EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "C. jejuni, C. coli" 0.001 0.5 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 50 25 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 0.001 1 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 31 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.03 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 50 26 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.001 0.5 FALSE +"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 50 24 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ciprofloxacin" "Staphs" "5" 50 21 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ciprofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Clindamycin" "Bacillus sp." "2ug" 17 17 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Clindamycin" "Bacillus sp." 1 1 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "S. pneumoniae" "2" 19 19 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 32 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "S. pneumoniae" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 2 2 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" "10" 26 26 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "S. pneumoniae" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.03 FALSE +"EUCAST 2021" "DISK" "Pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2021" "DISK" "Non-pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" "5" 20 17 FALSE +"EUCAST 2021" "MIC" "Pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2021" "MIC" "Non-pneumonia" "Coagulase-positive Staphylococcus (CoPS)" 2 "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "S. pneumoniae" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 22 FALSE +"EUCAST 2021" "DISK" "Meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 25 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 1 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" "30" 32 32 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 30 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 21 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 2 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "S. pneumoniae" 0.5 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Ceftriaxone" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Ceftibuten" "H. influenzae" "30" 25 25 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 1 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2021" "DISK" "Meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 20 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 1 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefotaxime" "H. influenzae" "5" 27 27 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 27 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 17 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 2 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "S. pneumoniae" 0.5 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Cefotaxime" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2021" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 50 19 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 19 TRUE +"EUCAST 2021" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 0.001 8 FALSE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 27 25 FALSE +"EUCAST 2021" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 50 27 FALSE +"EUCAST 2021" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 2 FALSE +"EUCAST 2021" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.001 1 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 29 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 18 FALSE +"EUCAST 2021" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 21 FALSE +"EUCAST 2021" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2021" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.001 4 FALSE +"EUCAST 2021" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "S. pneumoniae" 0.5 1 FALSE +"EUCAST 2021" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "S. pneumoniae" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 13 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" "10-4" 17 17 FALSE +"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" 8 8 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 8 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cefazolin" "Enterobacteriaceae" "30" 50 20 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cefazolin" "Enterobacteriaceae" 0.001 4 TRUE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 22 22 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2021" "DISK" "Pneumonia" "Haemophilus" 3 "Ceftolozane/tazobactam" "H. influenzae" "30-10" 23 23 FALSE +"EUCAST 2021" "MIC" "Pneumonia" "Haemophilus" 3 "Ceftolozane/tazobactam" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" "30-10" 23 23 FALSE +"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 4 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 4 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2021" "MIC" "Escherichia coli" 2 "Delafloxacin" "Enterobacteriaceae" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Delafloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Delafloxacin" "Strep A, B, C, G" 0.032 0.03 FALSE +"EUCAST 2021" "MIC" "Streptococcus anginosus" 2 "Delafloxacin" "Viridans strept" 0.032 0.03 FALSE +"EUCAST 2021" "MIC" "Streptococcus constellatus" 2 "Delafloxacin" "Viridans strept" 0.032 0.03 FALSE +"EUCAST 2021" "MIC" "Streptococcus intermedius" 2 "Delafloxacin" "Viridans strept" 0.032 0.03 FALSE +"EUCAST 2021" "MIC" "Mycobacterium tuberculosis" 2 "Delamanid" "M. tuberculosis" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "30" 24 21 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 50 22 FALSE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 0.001 2 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Doripenem" "H. influenzae" "10ug" 23 23 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 1 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10ug" 30 30 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 1 FALSE +"EUCAST 2021" "DISK" "UTI" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 50 22 TRUE +"EUCAST 2021" "MIC" "UTI" "Pseudomonas" 3 "Doripenem" "Pseudo" 0.001 2 TRUE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "S. pneumoniae" 1 1 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 1 FALSE +"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "B. pseudomallei" 0.001 2 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 2 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "S. pneumoniae" 1 2 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" "20" 24 24 FALSE +"EUCAST 2021" "MIC" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" "20" 22 22 FALSE +"EUCAST 2021" "MIC" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20ug" 17 17 FALSE +"EUCAST 2021" "MIC" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" "20ug" 20 20 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20ug" 17 17 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Erythromycin" "Bacillus sp." "15ug" 24 24 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Erythromycin" "Bacillus sp." 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Erythromycin" "C. jejuni, C. coli" "15" 24 24 FALSE +"EUCAST 2021" "MIC" "Campylobacter coli" 2 "Erythromycin" "C. jejuni, C. coli" 8 8 FALSE +"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "C. jejuni, C. coli" "15ug" 20 20 FALSE +"EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "C. jejuni, C. coli" 4 4 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 16 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 20 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "L. monocytogenes" "15" 25 25 FALSE +"EUCAST 2021" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "L. monocytogenes" 1 1 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "S. pneumoniae" "15" 22 19 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "S. pneumoniae" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 25 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Ertapenem" "H. influenzae" "10" 23 23 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Cefiderocol" "Enterobacteriaceae" "30" 22 22 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Cefiderocol" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Pseudo" "30" 22 22 FALSE +"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Cefiderocol" "Pseudo" 2 2 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 24 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 24 FALSE +"EUCAST 2021" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 4 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 20 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 4 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 50 21 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 0.001 8 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "S. pneumoniae" 1 2 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2021" "MIC" "Candida" 3 "Fluconazole" "Candida" 0.002 32 FALSE +"EUCAST 2021" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Fluconazole" "PK/PD" 2 4 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" "200" 21 21 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2021" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 FALSE +"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 TRUE +"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2021" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2021" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2021" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2021" "DISK" "Screen" "Staphylococcus epidermidis" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 17 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 17 TRUE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 2 TRUE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2021" "DISK" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 TRUE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2021" "MIC" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 TRUE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Imipenem/relebactam" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Imipenem/relebactam" "Acinetobacter spp." "10-25" 24 24 FALSE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Imipenem/relebactam" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2021" "DISK" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Pseudo" "10-25" 22 22 FALSE +"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Pseudo" 2 2 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem/relebactam" "Viridans strept" 2 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Imipenem/relebactam" "PK/PD" 2 2 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 21 FALSE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Imipenem" "Bacillus sp." "10ug" 30 30 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Imipenem" "Bacillus sp." 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10ug" 29 29 FALSE +"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" 2 2 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 50 21 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 0.001 4 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Imipenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 2 FALSE +"EUCAST 2021" "DISK" "Morganella" 3 "Imipenem" "Enterobacteriaceae" "10" 50 19 FALSE +"EUCAST 2021" "MIC" "Morganella" 3 "Imipenem" "Enterobacteriaceae" 0.001 4 FALSE +"EUCAST 2021" "DISK" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2021" "MIC" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" 0.001 4 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2021" "DISK" "Proteus" 3 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2021" "MIC" "Proteus" 3 "Imipenem" "Enterobacteriaceae" 0.001 4 FALSE +"EUCAST 2021" "DISK" "Providencia" 3 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2021" "MIC" "Providencia" 3 "Imipenem" "Enterobacteriaceae" 0.001 4 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 50 20 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 0.001 4 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "S. pneumoniae" 2 2 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Isavuconazole" "Aspergillus" 1 1 FALSE +"EUCAST 2021" "MIC" "Aspergillus nidulans" 2 "Isavuconazole" "Aspergillus" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Aspergillus terreus" 2 "Isavuconazole" "Aspergillus" 1 1 FALSE +"EUCAST 2021" "MIC" "Aspergillus flavus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2021" "MIC" "Aspergillus nidulans" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2021" "MIC" "Aspergillus terreus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2021" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Candida dubliniensis" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 8 FALSE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 22 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Kanamycin" "Staphs" "30" 18 18 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Staphs" "5ug" 23 23 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Lefamulin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Lefamulin" "S. pneumoniae" "5ug" 12 12 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Lefamulin" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Linezolid" "Bacillus sp." "10ug" 22 22 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Linezolid" "Bacillus sp." 2 2 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 20 20 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 21 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 19 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "S. pneumoniae" "10" 22 22 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "S. pneumoniae" 2 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 2 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 19 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 20 FALSE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 1 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2021" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 1 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Levofloxacin" "Bacillus sp." "5ug" 50 23 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Levofloxacin" "Bacillus sp." 0.001 1 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Levofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 29 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 50 22 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 0.001 1 FALSE +"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 50 24 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Levofloxacin" "Staphs" "5" 50 22 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Levofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 50 17 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 0.001 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "S. pneumoniae" "5" 50 16 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "S. pneumoniae" 0.001 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "UTI" "Citrobacter" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Citrobacter" 3 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "UTI" "Enterobacter" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacter" 3 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella" 3 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "UTI" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "UTI" "Raoultella" 3 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Raoultella" 3 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2021" "DISK" "Non-meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2021" "DISK" "Meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 22 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Meropenem" "A. xylosoxidans" "10ug" 26 20 FALSE +"EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Meropenem" "A. xylosoxidans" 1 4 FALSE +"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Meropenem" "A. xylosoxidans" "10ug" 26 20 FALSE +"EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Meropenem" "A. xylosoxidans" 1 4 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2021" "DISK" "Meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 21 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 31 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Meropenem" "Bacillus sp." "10ug" 25 25 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Meropenem" "Bacillus sp." 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10ug" 24 24 FALSE +"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" 2 2 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 30 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.03 FALSE +"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Meropenem" "L. monocytogenes" "10" 26 26 FALSE +"EUCAST 2021" "MIC" "Listeria monocytogenes" 2 "Meropenem" "L. monocytogenes" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 33 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2021" "DISK" "Meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 24 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 2 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "S. pneumoniae" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "S. pneumoniae" 2 2 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem/vaborbactam" "Pseudo" 8 8 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "PK/PD" 8 8 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 22 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" "5" 28 28 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 28 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Moxifloxacin" "Staphs" "5" 25 25 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 19 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "S. pneumoniae" "5" 22 22 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2021" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Minocycline" "H. influenzae" "30" 24 24 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 1 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 25 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 1 FALSE +"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 1 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 23 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 23 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "S. pneumoniae" "30" 24 24 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "S. pneumoniae" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2021" "DISK" "Screen" "Haemophilus" 3 "Nalidixic acid" "H. influenzae" "30" 23 7 FALSE +"EUCAST 2021" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 7 FALSE +"EUCAST 2021" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2021" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2021" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2021" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 22 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 0.5 TRUE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 17 FALSE +"EUCAST 2021" "DISK" "Screen" "Bacillus" 3 "Norfloxacin" "Bacillus sp." "10ug" 21 21 FALSE +"EUCAST 2021" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2021" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2021" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2021" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "S. pneumoniae" "10" 10 7 FALSE +"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 22 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Ofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 28 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Oritavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Oxacillin" "Staphs" "1 unit" 20 20 FALSE +"EUCAST 2021" "DISK" "Screen" "Staphylococcus schleiferi" 2 "Oxacillin" "Staphs" "1 unit" 20 20 FALSE +"EUCAST 2021" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "S. pneumoniae" "1" 20 7 FALSE +"EUCAST 2021" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 21 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Screen" "Haemophilus" 3 "Benzylpenicillin" "H. influenzae" "1 unit" 12 7 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 25 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.03 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Listeria monocytogenes" 2 "Benzylpenicillin" "L. monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Listeria monocytogenes" 2 "Benzylpenicillin" "L. monocytogenes" 1 1 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "P. multocida" "1 unit" 17 17 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "P. multocida" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2021" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Non-meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2021" "DISK" "Meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 19 19 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "S. pneumoniae" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "S. pneumoniae" 0.064 2 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2021" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2021" "MIC" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 1024 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 20 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 50 18 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 0.001 16 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2021" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2021" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Candida dubliniensis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 25 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2021" "DISK" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" "5" 18 18 FALSE +"EUCAST 2021" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 1 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 20 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "S. pneumoniae" "5" 22 17 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "S. pneumoniae" 0.125 0.5 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "S. pneumoniae" 0.5 1 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 1 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 1 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 512 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 512 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25ug/23.75ug" 26 26 FALSE +"EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" "1.25ug/23.75ug" 26 26 FALSE +"EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Trimethoprim/sulfamethoxazole" "A. xylosoxidans" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2021" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 16 FALSE +"EUCAST 2021" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 4 FALSE +"EUCAST 2021" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25ug/23.75ug" 50 17 FALSE +"EUCAST 2021" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" 0.001 4 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 1 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 28 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "L. monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2021" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "L. monocytogenes" 0.064 0.06 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2021" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2021" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 50 16 FALSE +"EUCAST 2021" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 0.001 4 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "S. pneumoniae" "1.25ug/23.75ug" 13 10 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "S. pneumoniae" 1 2 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 20 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 50 18 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 0.001 16 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2021" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30ug" 50 23 FALSE +"EUCAST 2021" "DISK" "Campylobacter coli" 2 "Tetracycline" "C. jejuni, C. coli" "30ug" 30 30 FALSE +"EUCAST 2021" "MIC" "Campylobacter coli" 2 "Tetracycline" "C. jejuni, C. coli" 2 2 FALSE +"EUCAST 2021" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "C. jejuni, C. coli" "30ug" 30 30 FALSE +"EUCAST 2021" "MIC" "Campylobacter jejuni jejuni" 1 "Tetracycline" "C. jejuni, C. coli" 2 2 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2021" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Tetracycline" "H. influenzae" "30" 25 22 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 2 FALSE +"EUCAST 2021" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 28 FALSE +"EUCAST 2021" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 25 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2021" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2021" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 2 2 FALSE +"EUCAST 2021" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "S. pneumoniae" "30" 25 22 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "S. pneumoniae" 1 2 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "S. pneumoniae" "30" 17 17 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "S. pneumoniae" 2 2 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2021" "DISK" "UTI" "Escherichia coli" 2 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Escherichia coli" 2 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella" 3 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella" 3 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella granulomatis" 2 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella granulomatis" 2 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella oxytoca" 2 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella oxytoca" 2 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella pneumoniae ozaenae" 1 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella pneumoniae ozaenae" 1 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella pneumoniae pneumoniae" 1 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella pneumoniae pneumoniae" 1 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella pneumoniae rhinoscleromatis" 1 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella pneumoniae rhinoscleromatis" 1 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella quasipneumoniae" 2 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella quasipneumoniae" 2 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Klebsiella variicola" 2 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Klebsiella variicola" 2 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "DISK" "UTI" "Proteus mirabilis" 2 "Temocillin" "Enterobacteriaceae" "30" 50 17 TRUE +"EUCAST 2021" "MIC" "UTI" "Proteus mirabilis" 2 "Temocillin" "Enterobacteriaceae" 0.001 16 TRUE +"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2021" "DISK" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 18 FALSE +"EUCAST 2021" "MIC" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 18 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" "15" 22 22 FALSE +"EUCAST 2021" "MIC" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" "15" 20 20 FALSE +"EUCAST 2021" "MIC" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 18 FALSE +"EUCAST 2021" "MIC" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 19 19 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 19 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 20 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 50 18 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 0.001 16 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 8 FALSE +"EUCAST 2021" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2021" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "S. pneumoniae" "15" 23 20 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "S. pneumoniae" 0.25 0.5 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Telavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 15 15 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 4 4 TRUE +"EUCAST 2021" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2021" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2021" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 14 14 TRUE +"EUCAST 2021" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 4 4 TRUE +"EUCAST 2021" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 16 16 FALSE +"EUCAST 2021" "DISK" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 16 16 TRUE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2021" "MIC" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 2 TRUE +"EUCAST 2021" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2021" "DISK" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 TRUE +"EUCAST 2021" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2021" "MIC" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 TRUE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 18 FALSE +"EUCAST 2021" "DISK" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 18 TRUE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 2 FALSE +"EUCAST 2021" "MIC" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 2 TRUE +"EUCAST 2021" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2021" "DISK" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2ug" 21 21 FALSE +"EUCAST 2021" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2ug" 18 18 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2ug" 18 18 FALSE +"EUCAST 2021" "MIC" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2ug" 18 18 FALSE +"EUCAST 2021" "MIC" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2ug" 18 18 FALSE +"EUCAST 2021" "MIC" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2021" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 20 FALSE +"EUCAST 2021" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2021" "DISK" "Achromobacter denitrificans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" "30-6" 26 26 FALSE +"EUCAST 2021" "MIC" "Achromobacter denitrificans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" 4 4 FALSE +"EUCAST 2021" "DISK" "Achromobacter xylosoxidans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" "30-6" 26 26 FALSE +"EUCAST 2021" "MIC" "Achromobacter xylosoxidans" 2 "Piperacillin/tazobactam" "A. xylosoxidans" 4 4 FALSE +"EUCAST 2021" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" "30-6" 27 27 FALSE +"EUCAST 2021" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2021" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 50 18 FALSE +"EUCAST 2021" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 0.001 16 FALSE +"EUCAST 2021" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2021" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 16 FALSE +"EUCAST 2021" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 1 FALSE +"EUCAST 2021" "DISK" "Bacillus" 3 "Vancomycin" "Bacillus sp." "5ug" 10 10 FALSE +"EUCAST 2021" "MIC" "Bacillus" 3 "Vancomycin" "Bacillus sp." 2 2 FALSE +"EUCAST 2021" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2021" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2021" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2021" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2021" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2021" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2021" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2021" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2021" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "S. pneumoniae" "5" 16 16 FALSE +"EUCAST 2021" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "S. pneumoniae" 2 2 FALSE +"EUCAST 2021" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2021" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2021" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2021" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.064 0.25 FALSE +"EUCAST 2021" "MIC" "Candida dubliniensis" 2 "Voriconazole" "Candida" 0.064 0.25 FALSE +"EUCAST 2021" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2021" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2020" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2020" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2020" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2020" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2020" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" "20ug/10ug" 50 22 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Amoxicillin/clavulanic acid" "B. pseudomallei" 0.001 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "DISK" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 15 FALSE +"EUCAST 2020" "DISK" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 50 15 FALSE +"EUCAST 2020" "MIC" "IV" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 2 FALSE +"EUCAST 2020" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 19 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 1 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Pneumo" 0.5 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 18 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 19 TRUE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 8 TRUE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 15 FALSE +"EUCAST 2020" "DISK" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 15 15 TRUE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 16 FALSE +"EUCAST 2020" "MIC" "UTI" "Pseudomonas" 3 "Amikacin" "Pseudo" 16 16 TRUE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 8 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 22 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 1 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 26 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Ampicillin" "H. influenzae" "2" 18 18 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 1 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "IV" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 16 FALSE +"EUCAST 2020" "MIC" "IV" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" "2" 22 16 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "MIC" "Oral" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "IV" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 2 FALSE +"EUCAST 2020" "MIC" "Oral" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 0.001 2 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin" "Pneumo" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2020" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2020" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 21 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 0.001 16 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 4 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Mycobacterium tuberculosis" 2 "Bedaquiline" "M. tuberculosis" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 23 FALSE "EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" "5" 17 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE -"EUCAST 2020" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10ug" 50 17 FALSE -"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" 0.001 16 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 50 16 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 0.001 16 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 27 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.001 1 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefixime" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 17 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30ug" 50 21 FALSE -"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" 0.001 16 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 29 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 4 FALSE -"EUCAST 2020" "MIC" "Meningitis" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 20 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 25 21 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 50 20 FALSE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.001 2 FALSE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2020" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE -"EUCAST 2020" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "Campylobacter jejuni and coli" "5ug" 26 25 FALSE -"EUCAST 2020" "MIC" "Campylobacter coli" 2 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "Campylobacter jejuni and coli" "5ug" 26 25 FALSE -"EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 30 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 50 25 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.001 1 FALSE -"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 50 20 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 50 23 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 18 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 64 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 2 4 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" "10" 26 25 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE -"EUCAST 2020" "DISK" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2020" "DISK" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 16 FALSE -"EUCAST 2020" "MIC" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2020" "MIC" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 4 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 21 FALSE -"EUCAST 2020" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" "30" 32 31 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 29 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 20 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 4 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Ceftibuten" "H. influenzae" "30" 25 24 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 2 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefotaxime" "H. influenzae" "5" 27 26 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 26 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 16 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 4 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2020" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 50 18 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 18 TRUE -"EUCAST 2020" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 0.001 16 FALSE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2020" "DISK" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 27 24 FALSE -"EUCAST 2020" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 50 26 FALSE -"EUCAST 2020" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 4 FALSE -"EUCAST 2020" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.001 2 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 28 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 1 FALSE -"EUCAST 2020" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 17 FALSE -"EUCAST 2020" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 20 FALSE -"EUCAST 2020" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 16 FALSE -"EUCAST 2020" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.001 8 FALSE -"EUCAST 2020" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 12 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" "10-4" 17 16 FALSE -"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 16 FALSE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefazolin" "Enterobacteriaceae" 0.001 8 TRUE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 22 21 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2020" "MIC" "Pneumonia" "Haemophilus" 3 "Ceftolozane/tazobactam" "H. influenzae" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" "30-10" 24 23 FALSE -"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 8 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2020" "MIC" "Escherichia coli" 2 "Delafloxacin" "Enterobacteriaceae" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Delafloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Delafloxacin" "Strep A, B, C, G" 0.032 0.06 FALSE -"EUCAST 2020" "MIC" "Streptococcus anginosus" 2 "Delafloxacin" "Viridans strept" 0.032 0.06 FALSE -"EUCAST 2020" "MIC" "Streptococcus constellatus" 2 "Delafloxacin" "Viridans strept" 0.032 0.06 FALSE -"EUCAST 2020" "MIC" "Streptococcus intermedius" 2 "Delafloxacin" "Viridans strept" 0.032 0.06 FALSE -"EUCAST 2020" "MIC" "Mycobacterium tuberculosis" 2 "Delamanid" "M. tuberculosis" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "B. pseudomallei" 0.001 4 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 4 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" "20" 24 23 FALSE -"EUCAST 2020" "MIC" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" "20" 22 21 FALSE -"EUCAST 2020" "MIC" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20ug" 17 16 FALSE -"EUCAST 2020" "MIC" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" "20ug" 20 19 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20ug" 17 16 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE -"EUCAST 2020" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15ug" 20 19 FALSE -"EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 32 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 19 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 24 FALSE -"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 18 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 24 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Ertapenem" "H. influenzae" "10" 23 22 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE -"EUCAST 2020" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 19 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 8 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 50 20 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 0.001 16 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2020" "MIC" "Candida" 3 "Fluconazole" "Candida" 0.002 64 FALSE -"EUCAST 2020" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Fluconazole" "PK/PD" 2 8 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2020" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 FALSE -"EUCAST 2020" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 TRUE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2020" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2020" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2020" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2020" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2020" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 19 FALSE -"EUCAST 2020" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 21 FALSE -"EUCAST 2020" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 16 FALSE -"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 16 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 16 TRUE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 TRUE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2020" "DISK" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 TRUE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2020" "MIC" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 TRUE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Imipenem/relebactam" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Imipenem/relebactam" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Pseudo" 2 4 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem/relebactam" "Viridans strept" 2 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Imipenem/relebactam" "PK/PD" 2 4 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 16 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 20 FALSE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10ug" 29 28 FALSE -"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" 2 4 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 50 20 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Imipenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 4 FALSE -"EUCAST 2020" "DISK" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2020" "MIC" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2020" "DISK" "Proteus" 3 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2020" "MIC" "Proteus" 3 "Imipenem" "Enterobacteriaceae" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Providencia" 3 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2020" "MIC" "Providencia" 3 "Imipenem" "Enterobacteriaceae" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 50 19 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 0.001 8 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Isavuconazole" "Aspergillus" 1 2 FALSE -"EUCAST 2020" "MIC" "Aspergillus nidulans" 2 "Isavuconazole" "Aspergillus" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Aspergillus terreus" 2 "Isavuconazole" "Aspergillus" 1 2 FALSE -"EUCAST 2020" "MIC" "Aspergillus flavus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2020" "MIC" "Aspergillus nidulans" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2020" "MIC" "Aspergillus terreus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2020" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Candida dubliniensis" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 16 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 17 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 21 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 20 19 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 20 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 18 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 21 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 18 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2020" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Levofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 28 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 50 21 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 0.001 2 FALSE -"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 50 21 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 50 23 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 50 16 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 0.001 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 50 15 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 0.001 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 1 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 30 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10ug" 24 23 FALSE -"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" 2 4 FALSE -"EUCAST 2020" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2020" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE -"EUCAST 2020" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 29 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.06 FALSE -"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 25 FALSE -"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 32 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2020" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem/vaborbactam" "Pseudo" 8 16 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "PK/PD" 8 16 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 21 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" "5" 28 27 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 24 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 27 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 18 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 21 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2020" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Minocycline" "H. influenzae" "30" 24 23 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 2 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 24 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 2 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 22 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 22 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 23 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2020" "DISK" "Screen" "Haemophilus" 3 "Nalidixic acid" "H. influenzae" "30" 23 6 FALSE -"EUCAST 2020" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 6 FALSE -"EUCAST 2020" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 15 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 32 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2020" "DISK" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2020" "MIC" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2020" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2020" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2020" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2020" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 21 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 TRUE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 16 FALSE -"EUCAST 2020" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2020" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2020" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2020" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 10 6 FALSE -"EUCAST 2020" "DISK" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 15 14 TRUE -"EUCAST 2020" "MIC" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 21 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Ofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 27 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 50 19 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 50 23 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 0.001 2 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2020" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2020" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 6 FALSE -"EUCAST 2020" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 20 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Screen" "Haemophilus" 3 "Benzylpenicillin" "H. influenzae" "1 unit" 12 6 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 24 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.06 FALSE -"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.5 FALSE -"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 16 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2020" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2020" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 16 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 50 17 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 0.001 32 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2020" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2020" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Candida dubliniensis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 24 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2020" "DISK" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" "5" 18 17 FALSE -"EUCAST 2020" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 2 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 19 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 1 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 16 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.125 1 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2020" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE -"EUCAST 2020" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25ug/23.75ug" 50 16 FALSE -"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 50 15 FALSE -"EUCAST 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 0.001 8 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 13 9 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 50 17 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 0.001 32 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2020" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30ug" 50 22 FALSE -"EUCAST 2020" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE -"EUCAST 2020" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Tetracycline" "Campylobacter jejuni and coli" "30ug" 30 29 FALSE -"EUCAST 2020" "MIC" "Campylobacter coli" 2 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "Campylobacter jejuni and coli" "30ug" 30 29 FALSE -"EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Tetracycline" "H. influenzae" "30" 25 21 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 4 FALSE -"EUCAST 2020" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 27 FALSE -"EUCAST 2020" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 24 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 2 4 FALSE -"EUCAST 2020" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 21 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 16 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2020" "DISK" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 17 FALSE -"EUCAST 2020" "MIC" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 17 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" "15" 22 21 FALSE -"EUCAST 2020" "MIC" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" "15" 20 19 FALSE -"EUCAST 2020" "MIC" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 17 FALSE -"EUCAST 2020" "MIC" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 19 18 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 18 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 19 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 50 17 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 0.001 32 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 16 FALSE -"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 19 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 15 14 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 4 8 TRUE -"EUCAST 2020" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2020" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2020" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 14 13 TRUE -"EUCAST 2020" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 4 8 TRUE -"EUCAST 2020" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 16 FALSE -"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 16 TRUE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 TRUE -"EUCAST 2020" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2020" "DISK" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 TRUE -"EUCAST 2020" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2020" "MIC" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 TRUE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 17 FALSE -"EUCAST 2020" "DISK" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 17 TRUE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 4 FALSE -"EUCAST 2020" "MIC" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 4 TRUE -"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2ug" 21 20 FALSE -"EUCAST 2020" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2ug" 18 17 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2020" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE -"EUCAST 2020" "MIC" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE -"EUCAST 2020" "MIC" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2ug" 18 17 FALSE -"EUCAST 2020" "MIC" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE -"EUCAST 2020" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2020" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" "30-6" 27 26 FALSE -"EUCAST 2020" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2020" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 50 17 FALSE -"EUCAST 2020" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 0.001 32 FALSE -"EUCAST 2020" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2020" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 15 FALSE -"EUCAST 2020" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 2 FALSE -"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2020" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2020" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2020" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2020" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2020" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2020" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2020" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.064 0.5 FALSE -"EUCAST 2020" "MIC" "Candida dubliniensis" 2 "Voriconazole" "Candida" 0.064 0.5 FALSE -"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.5 FALSE -"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.5 FALSE -"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2019" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2019" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2019" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2019" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2019" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 18 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE -"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Pneumo" 0.5 2 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 14 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 16 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 32 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 14 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 32 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 15 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 18 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 32 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 25 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Ampicillin" "H. influenzae" "2" 16 15 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 2 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 15 FALSE -"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2019" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" "2" 22 15 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 4 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin" "Pneumo" 0.5 2 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2019" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2019" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 20 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 18 17 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 16 32 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 8 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 4 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 21 FALSE +"EUCAST 2020" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 4 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" "10ug" 50 18 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Ceftazidime" "B. pseudomallei" 0.001 8 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 50 17 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 0.001 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 28 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.001 0.5 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefixime" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 18 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" "30ug" 50 22 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Chloramphenicol" "B. pseudomallei" 0.001 8 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 2 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 30 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 2 FALSE +"EUCAST 2020" "MIC" "Meningitis" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 2 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 21 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 25 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 50 21 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.001 1 FALSE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 21 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2020" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 26 FALSE +"EUCAST 2020" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Ciprofloxacin" "Campylobacter jejuni and coli" "5ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Campylobacter coli" 2 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "Campylobacter jejuni and coli" "5ug" 26 26 FALSE +"EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 31 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.03 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 50 26 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.001 0.5 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 50 21 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 50 24 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 32 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 2 2 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" "10" 26 26 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.03 FALSE +"EUCAST 2020" "DISK" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2020" "DISK" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 17 FALSE +"EUCAST 2020" "MIC" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2020" "MIC" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 22 FALSE +"EUCAST 2020" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" "30" 32 32 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 30 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 21 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Ceftibuten" "H. influenzae" "30" 25 25 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefotaxime" "H. influenzae" "5" 27 27 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 27 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 17 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2020" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 50 19 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 19 TRUE +"EUCAST 2020" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 0.001 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2020" "DISK" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 27 25 FALSE +"EUCAST 2020" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 50 27 FALSE +"EUCAST 2020" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 2 FALSE +"EUCAST 2020" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 29 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 18 FALSE +"EUCAST 2020" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 21 FALSE +"EUCAST 2020" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2020" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.001 4 FALSE +"EUCAST 2020" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 13 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" "10-4" 17 17 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ceftazidime/avibactam" "Pseudo" 8 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 8 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cefazolin" "Enterobacteriaceae" 0.001 4 TRUE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2020" "MIC" "Pneumonia" "Haemophilus" 3 "Ceftolozane/tazobactam" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" "30-10" 24 24 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 4 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 4 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2020" "MIC" "Escherichia coli" 2 "Delafloxacin" "Enterobacteriaceae" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Delafloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Delafloxacin" "Strep A, B, C, G" 0.032 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" 2 "Delafloxacin" "Viridans strept" 0.032 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus constellatus" 2 "Delafloxacin" "Viridans strept" 0.032 0.03 FALSE +"EUCAST 2020" "MIC" "Streptococcus intermedius" 2 "Delafloxacin" "Viridans strept" 0.032 0.03 FALSE +"EUCAST 2020" "MIC" "Mycobacterium tuberculosis" 2 "Delamanid" "M. tuberculosis" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Doxycycline" "B. pseudomallei" 0.001 2 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 2 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" "20" 24 24 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecium" 2 "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" "20" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecalis" 2 "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" "20ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Escherichia coli" 2 "Eravacycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" "20ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" "20ug" 17 17 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 24 FALSE +"EUCAST 2020" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 8 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15ug" 20 20 FALSE +"EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 4 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 16 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 20 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 25 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 25 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Ertapenem" "H. influenzae" "10" 23 23 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 24 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 24 FALSE +"EUCAST 2020" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 4 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 20 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 4 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 50 21 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 0.001 8 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2020" "MIC" "Candida" 3 "Fluconazole" "Candida" 0.002 32 FALSE +"EUCAST 2020" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Fluconazole" "PK/PD" 2 4 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2020" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 FALSE +"EUCAST 2020" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 TRUE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2020" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2020" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2020" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2020" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2020" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 20 FALSE +"EUCAST 2020" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 8 FALSE +"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 17 TRUE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 2 TRUE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 TRUE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2020" "MIC" "UTI" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 TRUE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Imipenem/relebactam" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Imipenem/relebactam" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Imipenem/relebactam" "Pseudo" 2 2 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem/relebactam" "Viridans strept" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Imipenem/relebactam" "PK/PD" 2 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 21 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" "10ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Imipenem" "B. pseudomallei" 2 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 50 21 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Imipenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 2 FALSE +"EUCAST 2020" "DISK" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2020" "MIC" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2020" "DISK" "Proteus" 3 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2020" "MIC" "Proteus" 3 "Imipenem" "Enterobacteriaceae" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Providencia" 3 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2020" "MIC" "Providencia" 3 "Imipenem" "Enterobacteriaceae" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 50 20 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 0.001 4 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Isavuconazole" "Aspergillus" 1 1 FALSE +"EUCAST 2020" "MIC" "Aspergillus nidulans" 2 "Isavuconazole" "Aspergillus" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Aspergillus terreus" 2 "Isavuconazole" "Aspergillus" 1 1 FALSE +"EUCAST 2020" "MIC" "Aspergillus flavus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2020" "MIC" "Aspergillus nidulans" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2020" "MIC" "Aspergillus terreus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2020" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Candida dubliniensis" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 8 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 18 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 22 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 20 20 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 21 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 22 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 19 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 20 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 1 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2020" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 1 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Levofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 29 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 50 22 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 50 22 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 50 24 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 50 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 0.001 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 50 16 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 0.001 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 31 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" "10ug" 24 24 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Meropenem" "B. pseudomallei" 2 2 FALSE +"EUCAST 2020" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2020" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 2 FALSE +"EUCAST 2020" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 30 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.03 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 26 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 33 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2020" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "MIC" "Pseudomonas aeruginosa" 2 "Meropenem/vaborbactam" "Pseudo" 8 8 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "PK/PD" 8 8 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" "5" 28 28 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 25 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 28 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 22 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2020" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Minocycline" "H. influenzae" "30" 24 24 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 1 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 25 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 1 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 23 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 23 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 24 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2020" "DISK" "Screen" "Haemophilus" 3 "Nalidixic acid" "H. influenzae" "30" 23 7 FALSE +"EUCAST 2020" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 7 FALSE +"EUCAST 2020" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2020" "DISK" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2020" "MIC" "UTI" "Escherichia coli" 2 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2020" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2020" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2020" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 22 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 0.5 TRUE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 17 FALSE +"EUCAST 2020" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2020" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2020" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2020" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 10 7 FALSE +"EUCAST 2020" "DISK" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Escherichia coli" 2 "Nitroxoline" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 22 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Ofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 28 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 50 20 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 50 24 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 0.001 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2020" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2020" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 7 FALSE +"EUCAST 2020" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 21 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Screen" "Haemophilus" 3 "Benzylpenicillin" "H. influenzae" "1 unit" 12 7 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 25 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.03 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.25 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 17 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2020" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2020" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 0.001 16 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2020" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2020" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Candida dubliniensis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 25 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2020" "DISK" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" "5" 18 18 FALSE +"EUCAST 2020" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 1 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 20 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.125 0.5 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 1 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 512 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 512 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2020" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 16 FALSE +"EUCAST 2020" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 4 FALSE +"EUCAST 2020" "DISK" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" "1.25ug/23.75ug" 50 17 FALSE +"EUCAST 2020" "MIC" "Burkholderia pseudomallei" 2 "Trimethoprim/sulfamethoxazole" "B. pseudomallei" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2020" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.06 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2020" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2020" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 50 16 FALSE +"EUCAST 2020" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 0.001 4 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 13 10 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 20 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 0.001 16 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2020" "DISK" "Screen" "Burkholderia pseudomallei" 2 "Tetracycline" "B. pseudomallei" "30ug" 50 23 FALSE +"EUCAST 2020" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 30 FALSE +"EUCAST 2020" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2020" "DISK" "Campylobacter coli" 2 "Tetracycline" "Campylobacter jejuni and coli" "30ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Campylobacter coli" 2 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2020" "DISK" "Campylobacter jejuni jejuni" 1 "Tetracycline" "Campylobacter jejuni and coli" "30ug" 30 30 FALSE +"EUCAST 2020" "MIC" "Campylobacter jejuni jejuni" 1 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2020" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Tetracycline" "H. influenzae" "30" 25 22 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 2 FALSE +"EUCAST 2020" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 28 FALSE +"EUCAST 2020" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 25 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2020" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2020" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 2 2 FALSE +"EUCAST 2020" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 22 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2020" "DISK" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 18 FALSE +"EUCAST 2020" "MIC" "Citrobacter koseri" 2 "Tigecycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 18 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" "15" 22 22 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecium" 2 "Tigecycline" "Enterococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" "15" 20 20 FALSE +"EUCAST 2020" "MIC" "Enterococcus faecalis" 2 "Tigecycline" "Enterococcus" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" "15" 18 18 FALSE +"EUCAST 2020" "MIC" "Escherichia coli" 2 "Tigecycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 19 19 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 19 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 20 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 0.001 16 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 8 FALSE +"EUCAST 2020" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2020" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 20 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 15 15 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 4 4 TRUE +"EUCAST 2020" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2020" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2020" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 14 14 TRUE +"EUCAST 2020" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 4 4 TRUE +"EUCAST 2020" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 17 TRUE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2020" "MIC" "UTI" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 2 TRUE +"EUCAST 2020" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2020" "DISK" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 TRUE +"EUCAST 2020" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2020" "MIC" "UTI" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 TRUE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 18 FALSE +"EUCAST 2020" "DISK" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 18 18 TRUE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 2 FALSE +"EUCAST 2020" "MIC" "UTI" "Pseudomonas" 3 "Tobramycin" "Pseudo" 2 2 TRUE +"EUCAST 2020" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2020" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Staphylococcus" 3 "Tedizolid" "Staphs" "2ug" 21 21 FALSE +"EUCAST 2020" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2020" "DISK" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus anginosus" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus constellatus" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" "2ug" 18 18 FALSE +"EUCAST 2020" "MIC" "Streptococcus intermedius" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 17 FALSE +"EUCAST 2020" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2020" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" "30-6" 27 27 FALSE +"EUCAST 2020" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2020" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 50 18 FALSE +"EUCAST 2020" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 0.001 16 FALSE +"EUCAST 2020" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2020" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 16 FALSE +"EUCAST 2020" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 1 FALSE +"EUCAST 2020" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2020" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2020" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2020" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2020" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2020" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2020" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2020" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2020" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2020" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2020" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2020" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2020" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2020" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2020" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.064 0.25 FALSE +"EUCAST 2020" "MIC" "Candida dubliniensis" 2 "Voriconazole" "Candida" 0.064 0.25 FALSE +"EUCAST 2020" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2020" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2019" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2019" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2019" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 15 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 2 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 19 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 1 FALSE +"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin/clavulanic acid" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 15 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 17 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 15 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 16 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 16 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 19 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 16 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 26 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Ampicillin" "H. influenzae" "2" 16 16 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 1 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 16 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2019" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" "2" 22 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 2 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Amoxicillin" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2019" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2019" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 21 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 18 18 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 16 16 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 4 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 23 FALSE "EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" "5" 17 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 4 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE -"EUCAST 2019" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 16 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 27 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefixime" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 17 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 29 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 4 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 20 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 25 21 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 50 20 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.064 2 FALSE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2019" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE -"EUCAST 2019" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 30 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 26 25 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 21 20 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 18 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 64 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 8 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" "10" 26 25 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE -"EUCAST 2019" "DISK" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2019" "DISK" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 16 FALSE -"EUCAST 2019" "MIC" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2019" "MIC" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 4 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 21 FALSE -"EUCAST 2019" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" "30" 32 31 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 29 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 20 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 4 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Ceftibuten" "H. influenzae" "30" 25 24 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 2 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefotaxime" "H. influenzae" "5" 27 26 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 26 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 16 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 4 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2019" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2019" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2019" "DISK" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 27 24 FALSE -"EUCAST 2019" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 50 26 FALSE -"EUCAST 2019" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 4 FALSE -"EUCAST 2019" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 2 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 28 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 1 FALSE -"EUCAST 2019" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 17 FALSE -"EUCAST 2019" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 20 FALSE -"EUCAST 2019" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 16 FALSE -"EUCAST 2019" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE -"EUCAST 2019" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 12 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 17 16 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 16 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 22 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE -"EUCAST 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 24 23 FALSE -"EUCAST 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 8 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 4 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Eravacycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Eravacycline" "Enterococcus" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE -"EUCAST 2019" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2019" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 19 FALSE -"EUCAST 2019" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 32 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 19 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 24 FALSE -"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 18 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 24 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Ertapenem" "H. influenzae" "10" 23 22 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE -"EUCAST 2019" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 19 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 8 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 21 20 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 16 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2019" "MIC" "Candida" 3 "Fluconazole" "Candida" 0.002 64 FALSE -"EUCAST 2019" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Fluconazole" "PK/PD" 2 8 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2019" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 FALSE -"EUCAST 2019" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 TRUE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2019" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2019" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2019" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2019" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 19 FALSE -"EUCAST 2019" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 21 FALSE -"EUCAST 2019" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 16 FALSE -"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 8 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 16 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 20 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 17 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Imipenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 4 FALSE -"EUCAST 2019" "DISK" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2019" "MIC" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" 0.125 8 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2019" "DISK" "Proteus" 3 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2019" "MIC" "Proteus" 3 "Imipenem" "Enterobacteriaceae" 0.125 8 FALSE -"EUCAST 2019" "DISK" "Providencia" 3 "Imipenem" "Enterobacteriaceae" "10" 50 16 FALSE -"EUCAST 2019" "MIC" "Providencia" 3 "Imipenem" "Enterobacteriaceae" 0.125 8 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 19 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 8 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Isavuconazole" "Aspergillus" 1 2 FALSE -"EUCAST 2019" "MIC" "Aspergillus nidulans" 2 "Isavuconazole" "Aspergillus" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Aspergillus terreus" 2 "Isavuconazole" "Aspergillus" 1 2 FALSE -"EUCAST 2019" "MIC" "Aspergillus flavus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2019" "MIC" "Aspergillus nidulans" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2019" "MIC" "Aspergillus terreus" 2 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2019" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Candida dubliniensis" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 16 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 17 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 21 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 18 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 20 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 15 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 8 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 18 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 8 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 18 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2019" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Levofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 28 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 22 21 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 2 FALSE -"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 22 21 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 17 16 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 1 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 30 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2019" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE -"EUCAST 2019" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 29 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.06 FALSE -"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 25 FALSE -"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 32 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Meropenem/vaborbactam" "Pseudo" 8 16 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "PK/PD" 8 16 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 21 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" "5" 28 27 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 24 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 27 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 18 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 21 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2019" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Minocycline" "H. influenzae" "30" 24 20 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 4 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 21 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 19 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 20 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE -"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2019" "DISK" "Screen" "Haemophilus" 3 "Nalidixic acid" "H. influenzae" "30" 23 6 FALSE -"EUCAST 2019" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 6 FALSE -"EUCAST 2019" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 11 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 15 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 11 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 8 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 15 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 32 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2019" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2019" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2019" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2019" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 16 FALSE -"EUCAST 2019" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2019" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2019" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2019" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 10 6 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 15 14 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 21 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Ofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 27 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2019" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2019" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 6 FALSE -"EUCAST 2019" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 20 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Screen" "Haemophilus" 3 "Benzylpenicillin" "H. influenzae" "1 unit" 12 6 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 24 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.06 FALSE -"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.5 FALSE -"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 16 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2019" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 16 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 17 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 32 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2019" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2019" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Candida dubliniensis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 24 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2019" "DISK" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" "5" 18 17 FALSE -"EUCAST 2019" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 2 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 19 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 16 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2019" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE -"EUCAST 2019" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 13 9 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 17 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2019" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE -"EUCAST 2019" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Tetracycline" "H. influenzae" "30" 25 21 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 4 FALSE -"EUCAST 2019" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 27 FALSE -"EUCAST 2019" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 24 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2019" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 21 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 16 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 17 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 17 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 18 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.5 1 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 19 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 17 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 32 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 16 FALSE -"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 19 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 14 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2019" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2019" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2019" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 13 TRUE -"EUCAST 2019" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE -"EUCAST 2019" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2019" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2019" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 15 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 8 FALSE -"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 8 FALSE -"EUCAST 2019" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE -"EUCAST 2019" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2019" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" "30-6" 27 26 FALSE -"EUCAST 2019" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2019" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 17 FALSE -"EUCAST 2019" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE -"EUCAST 2019" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2019" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 15 FALSE -"EUCAST 2019" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 2 FALSE -"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2019" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2019" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2019" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2019" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2019" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2019" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2019" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.064 0.5 FALSE -"EUCAST 2019" "MIC" "Candida dubliniensis" 2 "Voriconazole" "Candida" 0.064 0.5 FALSE -"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.5 FALSE -"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.5 FALSE -"EUCAST 2018" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2018" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2018" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2018" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2018" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2018" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 18 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE -"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 14 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 16 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 32 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 14 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 32 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 15 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 18 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 32 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 25 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 2 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenzae" "2" 16 15 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 15 FALSE -"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2018" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 4 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2018" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2018" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 20 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 15 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 32 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 8 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 22 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 2 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 4 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 21 FALSE +"EUCAST 2019" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 4 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 17 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 8 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 28 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 0.5 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefixime" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 18 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 2 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 30 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 2 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 2 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 21 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 25 22 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 50 21 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 0.064 1 FALSE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 21 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2019" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 26 FALSE +"EUCAST 2019" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 31 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.03 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 26 26 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 21 21 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 19 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 32 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 4 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" "10" 26 26 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.03 FALSE +"EUCAST 2019" "DISK" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2019" "DISK" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 17 FALSE +"EUCAST 2019" "MIC" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2019" "MIC" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 22 FALSE +"EUCAST 2019" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" "30" 32 32 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 30 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 21 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 2 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Ceftibuten" "H. influenzae" "30" 25 25 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 1 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefotaxime" "H. influenzae" "5" 27 27 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 27 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 17 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 2 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2019" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2019" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2019" "DISK" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 27 25 FALSE +"EUCAST 2019" "DISK" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" "30" 50 27 FALSE +"EUCAST 2019" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 1 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 29 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 18 FALSE +"EUCAST 2019" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 21 FALSE +"EUCAST 2019" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2019" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 4 FALSE +"EUCAST 2019" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 13 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 17 17 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 8 8 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 8 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 23 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 1 FALSE +"EUCAST 2019" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 24 24 FALSE +"EUCAST 2019" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 4 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Eravacycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Eravacycline" "Enterococcus" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Eravacycline" "Staphs" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Coagulase-positive Staphylococcus (CoPS)" 2 "Eravacycline" "Staphs" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Eravacycline" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 24 FALSE +"EUCAST 2019" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 8 FALSE +"EUCAST 2019" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 20 FALSE +"EUCAST 2019" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 4 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 16 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 20 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 25 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 19 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 25 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Ertapenem" "H. influenzae" "10" 23 23 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 24 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 24 FALSE +"EUCAST 2019" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 4 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Cefepime" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 20 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 4 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 21 21 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 8 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2019" "MIC" "Candida" 3 "Fluconazole" "Candida" 0.002 32 FALSE +"EUCAST 2019" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Fluconazole" "PK/PD" 2 4 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2019" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 FALSE +"EUCAST 2019" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 TRUE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2019" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2019" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2019" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2019" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 20 FALSE +"EUCAST 2019" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 22 FALSE +"EUCAST 2019" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 8 FALSE +"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 23 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 15 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 4 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 4 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 17 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 24 21 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 18 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 8 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Imipenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 2 FALSE +"EUCAST 2019" "DISK" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2019" "MIC" "Morganella morganii morganii" 1 "Imipenem" "Enterobacteriaceae" 0.125 4 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2019" "DISK" "Proteus" 3 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2019" "MIC" "Proteus" 3 "Imipenem" "Enterobacteriaceae" 0.125 4 FALSE +"EUCAST 2019" "DISK" "Providencia" 3 "Imipenem" "Enterobacteriaceae" "10" 50 17 FALSE +"EUCAST 2019" "MIC" "Providencia" 3 "Imipenem" "Enterobacteriaceae" 0.125 4 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 20 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 4 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Isavuconazole" "Aspergillus" 1 1 FALSE +"EUCAST 2019" "MIC" "Aspergillus nidulans" 2 "Isavuconazole" "Aspergillus" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Aspergillus terreus" 2 "Isavuconazole" "Aspergillus" 1 1 FALSE +"EUCAST 2019" "MIC" "Aspergillus flavus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus nidulans" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus terreus" 2 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Candida dubliniensis" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 8 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 18 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 22 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 19 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 21 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 19 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 19 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 20 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 1 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2019" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 1 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Levofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 29 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 22 22 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 1 FALSE +"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 22 22 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 17 17 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 2 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 31 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2019" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 2 FALSE +"EUCAST 2019" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 30 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.03 FALSE +"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 26 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 33 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Meropenem/vaborbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Meropenem/vaborbactam" "Pseudo" 8 8 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Meropenem/vaborbactam" "PK/PD" 8 8 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 22 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" "5" 28 28 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 25 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 28 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 19 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 22 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2019" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Minocycline" "H. influenzae" "30" 24 21 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 22 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 20 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 21 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2019" "DISK" "Screen" "Haemophilus" 3 "Nalidixic acid" "H. influenzae" "30" 23 7 FALSE +"EUCAST 2019" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 7 FALSE +"EUCAST 2019" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 12 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 16 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 12 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 4 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2019" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2019" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2019" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2019" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 17 FALSE +"EUCAST 2019" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2019" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2019" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2019" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 10 7 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 15 15 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 22 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Ofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 28 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2019" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2019" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 7 FALSE +"EUCAST 2019" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 21 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Screen" "Haemophilus" 3 "Benzylpenicillin" "H. influenzae" "1 unit" 12 7 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 25 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.03 FALSE +"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.25 FALSE +"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 17 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2019" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2019" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2019" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2019" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 17 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 18 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 16 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Candida dubliniensis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 25 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2019" "DISK" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" "5" 18 18 FALSE +"EUCAST 2019" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 1 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 20 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 17 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 0.5 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 1 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 1 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 512 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 512 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2019" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 16 FALSE +"EUCAST 2019" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 4 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 28 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2019" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.06 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2019" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2019" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2019" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 4 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 13 10 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 20 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 18 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 16 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2019" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 30 FALSE +"EUCAST 2019" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2019" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Tetracycline" "H. influenzae" "30" 25 22 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 2 FALSE +"EUCAST 2019" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 28 FALSE +"EUCAST 2019" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 25 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2019" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2019" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2019" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 22 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 17 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 18 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 18 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 18 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 19 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 20 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 18 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 16 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 8 FALSE +"EUCAST 2019" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2019" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 20 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2019" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 15 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 4 TRUE +"EUCAST 2019" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2019" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2019" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 14 TRUE +"EUCAST 2019" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 4 TRUE +"EUCAST 2019" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2019" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2019" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 16 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 4 FALSE +"EUCAST 2019" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2019" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 17 FALSE +"EUCAST 2019" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2019" "DISK" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" "30-6" 27 27 FALSE +"EUCAST 2019" "MIC" "Haemophilus" 3 "Piperacillin/tazobactam" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2019" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 18 FALSE +"EUCAST 2019" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 16 FALSE +"EUCAST 2019" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2019" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 16 FALSE +"EUCAST 2019" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 1 FALSE +"EUCAST 2019" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2019" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2019" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2019" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2019" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2019" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2019" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2019" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2019" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2019" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2019" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2019" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2019" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2019" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2019" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.064 0.25 FALSE +"EUCAST 2019" "MIC" "Candida dubliniensis" 2 "Voriconazole" "Candida" 0.064 0.25 FALSE +"EUCAST 2019" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2019" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2018" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2018" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2018" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2018" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2018" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 2 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 15 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 19 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 1 FALSE +"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 15 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 17 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 15 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 16 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 16 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 19 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 16 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 26 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 1 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenzae" "2" 16 16 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 16 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2018" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 2 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2018" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2018" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 21 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 16 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 16 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 4 4 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 23 FALSE "EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" "5" 17 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 4 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 20 FALSE -"EUCAST 2018" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 8 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 16 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 27 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 17 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 29 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 4 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 20 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 26 23 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 20 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2018" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE -"EUCAST 2018" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 30 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 26 25 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2018" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 21 20 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 18 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 64 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 8 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenzae" "10" 26 22 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE -"EUCAST 2018" "DISK" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2018" "DISK" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 16 FALSE -"EUCAST 2018" "MIC" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2018" "MIC" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 4 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 21 FALSE -"EUCAST 2018" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenzae" "30" 31 30 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 29 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 20 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 4 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 2 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenzae" "30" 25 24 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenzae" "5" 27 26 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 26 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 16 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 4 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2018" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2018" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2018" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 4 FALSE -"EUCAST 2018" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 2 FALSE -"EUCAST 2018" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 26 24 FALSE -"EUCAST 2018" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 50 25 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 28 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 1 FALSE -"EUCAST 2018" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 17 FALSE -"EUCAST 2018" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 20 FALSE -"EUCAST 2018" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 16 FALSE -"EUCAST 2018" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE -"EUCAST 2018" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2018" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 12 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 17 16 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 16 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 22 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE -"EUCAST 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 24 23 FALSE -"EUCAST 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 8 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 20 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 24 20 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 2 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10" 30 29 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 2 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 21 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 4 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 2 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 4 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 4 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2018" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE -"EUCAST 2018" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2018" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 19 FALSE -"EUCAST 2018" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 32 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 19 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 24 FALSE -"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 18 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 21 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 23 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 23 FALSE -"EUCAST 2018" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 8 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 19 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 8 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 21 20 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 16 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2018" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2018" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2018" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 FALSE -"EUCAST 2018" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 TRUE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2018" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2018" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2018" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2018" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 19 FALSE -"EUCAST 2018" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 21 FALSE -"EUCAST 2018" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 16 FALSE -"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 8 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 16 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 17 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 4 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 16 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 16 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2018" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 16 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 17 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 21 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 18 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 20 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 15 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 8 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 18 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 8 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 18 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 23 FALSE -"EUCAST 2018" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 2 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 28 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 22 21 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 2 FALSE -"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 22 21 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 17 16 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 1 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 30 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE -"EUCAST 2018" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 2 FALSE -"EUCAST 2018" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 29 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.06 FALSE -"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 25 FALSE -"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 32 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 2 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 21 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenzae" "5" 28 27 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 24 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 27 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 18 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 21 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2018" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 4 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenzae" "30" 24 20 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 21 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 19 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 20 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE -"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2018" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenzae" "30" 23 6 FALSE -"EUCAST 2018" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 6 FALSE -"EUCAST 2018" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 11 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 15 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 11 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 15 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 32 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2018" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2018" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2018" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2018" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 16 FALSE -"EUCAST 2018" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2018" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2018" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2018" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 11 6 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 15 14 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 21 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 27 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2018" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2018" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 6 FALSE -"EUCAST 2018" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 20 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenzae" "1 unit" 12 6 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 24 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.06 FALSE -"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.5 FALSE -"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 16 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2018" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 16 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 17 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 32 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2018" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2018" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 24 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2018" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 2 FALSE -"EUCAST 2018" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenzae" "5" 18 17 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 19 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 16 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2018" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 15 FALSE -"EUCAST 2018" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 8 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 19 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 17 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2018" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE -"EUCAST 2018" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 4 FALSE -"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenzae" "30" 25 21 FALSE -"EUCAST 2018" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 27 FALSE -"EUCAST 2018" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 24 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2018" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 21 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 16 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 14 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 14 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 15 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 19 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 17 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 32 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2018" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 16 FALSE -"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 19 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 14 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2018" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2018" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2018" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 13 TRUE -"EUCAST 2018" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE -"EUCAST 2018" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2018" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2018" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 15 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 8 FALSE -"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 8 FALSE -"EUCAST 2018" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2018" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE -"EUCAST 2018" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2018" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 17 FALSE -"EUCAST 2018" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE -"EUCAST 2018" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2018" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 15 FALSE -"EUCAST 2018" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 2 FALSE -"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2018" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2018" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2018" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2018" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2018" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2018" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2018" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2018" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2017" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2017" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2017" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2017" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2017" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 18 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE -"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 14 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 16 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 32 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 14 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 32 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 15 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 18 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 32 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 25 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 2 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenzae" "2" 16 15 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 15 FALSE -"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2017" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 4 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2017" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2017" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 20 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 15 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 32 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 0.125 8 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 22 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 2 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 4 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Ceftazidime" "Aeromonas" "10ug" 24 21 FALSE +"EUCAST 2018" "MIC" "Aeromonas" 3 "Ceftazidime" "Aeromonas" 1 4 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 17 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 8 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 28 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 0.5 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 18 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 2 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 30 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 2 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 21 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 26 24 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 21 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 1 FALSE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 21 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2018" "MIC" "Aeromonas" 3 "Ciprofloxacin" "Aeromonas" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 26 FALSE +"EUCAST 2018" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 31 31 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.03 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 26 26 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2018" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 21 21 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 19 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 32 32 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 4 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenzae" "10" 26 23 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.03 FALSE +"EUCAST 2018" "DISK" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2018" "DISK" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 17 FALSE +"EUCAST 2018" "MIC" "Pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2018" "MIC" "Non-pneumonia" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 22 FALSE +"EUCAST 2018" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenzae" "30" 31 31 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 30 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 21 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 1 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenzae" "30" 25 25 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenzae" "5" 27 27 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 27 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 17 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2018" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2018" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2018" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 1 FALSE +"EUCAST 2018" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 26 25 FALSE +"EUCAST 2018" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 50 26 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 29 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 18 FALSE +"EUCAST 2018" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 21 FALSE +"EUCAST 2018" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2018" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 4 FALSE +"EUCAST 2018" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 13 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 17 17 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 8 8 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 8 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 23 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 1 FALSE +"EUCAST 2018" "DISK" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 24 24 FALSE +"EUCAST 2018" "MIC" "Pseudomonas aeruginosa" 2 "Ceftolozane/tazobactam" "Pseudo" 4 4 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 21 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 24 21 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 1 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10" 30 30 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 1 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 22 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 1 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2018" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 24 FALSE +"EUCAST 2018" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 8 FALSE +"EUCAST 2018" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 20 FALSE +"EUCAST 2018" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 4 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 16 16 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 20 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 25 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 19 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 22 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 24 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Cefepime" "Aeromonas" "30ug" 27 24 FALSE +"EUCAST 2018" "MIC" "Aeromonas" 3 "Cefepime" "Aeromonas" 1 4 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 20 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 4 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 21 21 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 8 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2018" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2018" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2018" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 FALSE +"EUCAST 2018" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 TRUE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2018" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2018" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2018" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2018" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 20 FALSE +"EUCAST 2018" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 22 FALSE +"EUCAST 2018" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 8 FALSE +"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 23 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 15 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 4 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 4 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 17 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 18 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 2 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 17 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 8 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2018" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 8 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 18 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 22 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 19 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 21 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 19 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 19 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 20 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 1 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Levofloxacin" "Aeromonas" "5ug" 27 24 FALSE +"EUCAST 2018" "MIC" "Aeromonas" 3 "Levofloxacin" "Aeromonas" 0.5 1 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 29 29 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 22 22 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 1 FALSE +"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 22 22 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 17 17 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 2 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 31 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 2 FALSE +"EUCAST 2018" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 1 FALSE +"EUCAST 2018" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 30 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.03 FALSE +"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 26 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 33 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 1 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 22 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenzae" "5" 28 28 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 25 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 28 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 19 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 22 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2018" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenzae" "30" 24 21 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 22 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 20 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 21 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2018" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenzae" "30" 23 7 FALSE +"EUCAST 2018" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 7 FALSE +"EUCAST 2018" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 12 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 16 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 12 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 4 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2018" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2018" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2018" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2018" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 17 FALSE +"EUCAST 2018" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2018" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2018" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2018" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 11 7 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 15 15 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 22 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 28 28 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2018" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2018" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 7 FALSE +"EUCAST 2018" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 21 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenzae" "1 unit" 12 7 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 25 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.03 FALSE +"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.25 FALSE +"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 17 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2018" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2018" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2018" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2018" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 17 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 18 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 16 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2018" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2018" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 25 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2018" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 1 FALSE +"EUCAST 2018" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenzae" "5" 18 18 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 20 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 17 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 0.5 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 1 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 1 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 512 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 512 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2018" "DISK" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" "1.25ug/23.75ug" 19 16 FALSE +"EUCAST 2018" "MIC" "Aeromonas" 3 "Trimethoprim/sulfamethoxazole" "Aeromonas" 2 4 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 28 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2018" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.06 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2018" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2018" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2018" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 4 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 20 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 18 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 16 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2018" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 30 FALSE +"EUCAST 2018" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2018" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 2 FALSE +"EUCAST 2018" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenzae" "30" 25 22 FALSE +"EUCAST 2018" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 28 FALSE +"EUCAST 2018" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 25 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2018" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2018" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2018" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 22 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 17 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 15 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 15 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 18 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 20 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 18 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 16 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2018" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 8 8 FALSE +"EUCAST 2018" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2018" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 20 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2018" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 15 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 4 TRUE +"EUCAST 2018" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2018" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2018" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 14 TRUE +"EUCAST 2018" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 4 TRUE +"EUCAST 2018" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2018" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2018" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 16 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 4 FALSE +"EUCAST 2018" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2018" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2018" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 17 FALSE +"EUCAST 2018" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2018" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 18 FALSE +"EUCAST 2018" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 16 FALSE +"EUCAST 2018" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2018" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 16 FALSE +"EUCAST 2018" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 1 FALSE +"EUCAST 2018" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2018" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2018" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2018" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2018" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2018" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2018" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2018" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2018" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2018" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2018" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2018" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2018" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2018" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2018" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2018" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2017" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2017" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2017" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2017" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2017" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 2 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 15 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 19 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 1 FALSE +"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 15 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 19 17 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 15 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 16 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 16 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 19 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 16 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Ampicillin" "Aerococcus" 26 26 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Ampicillin" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 1 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenzae" "2" 16 16 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Ampicillin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 16 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2017" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 2 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Amoxicillin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2017" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2017" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 26 21 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 16 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 16 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 0.125 4 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Azithromycin" "Kingella" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 23 FALSE "EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" "5" 17 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 4 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 16 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 27 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 17 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 29 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 4 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 20 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 26 23 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 20 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 20 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2017" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE -"EUCAST 2017" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 26 25 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2017" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 21 20 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 18 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 1 64 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 8 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenzae" "10" 26 22 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 21 FALSE -"EUCAST 2017" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenzae" "30" 31 30 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 29 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 20 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 4 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 2 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenzae" "30" 25 24 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenzae" "5" 27 26 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 26 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 16 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 4 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2017" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2017" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2017" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 4 FALSE -"EUCAST 2017" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 2 FALSE -"EUCAST 2017" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 26 24 FALSE -"EUCAST 2017" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 50 25 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 28 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 1 FALSE -"EUCAST 2017" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 17 FALSE -"EUCAST 2017" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 20 FALSE -"EUCAST 2017" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 16 FALSE -"EUCAST 2017" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE -"EUCAST 2017" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2017" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 12 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 17 16 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 8 16 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 16 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 22 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 8 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 20 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 24 20 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 2 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10" 30 29 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 2 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 21 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 4 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 2 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 4 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 4 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2017" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE -"EUCAST 2017" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2017" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 19 FALSE -"EUCAST 2017" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 0.5 32 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenzae" "15" 50 9 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 19 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 24 FALSE -"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 18 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 21 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 20 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 19 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 8 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 18 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 16 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2017" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2017" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2017" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 FALSE -"EUCAST 2017" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 23 TRUE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2017" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2017" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2017" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2017" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 19 FALSE -"EUCAST 2017" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 21 FALSE -"EUCAST 2017" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 16 FALSE -"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 8 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 16 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 17 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 4 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 16 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 16 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2017" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 16 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 17 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 21 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 18 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 20 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 15 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 8 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 18 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 8 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 18 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 19 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 2 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 4 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 27 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 1 2 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 22 21 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 2 FALSE -"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 22 21 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 17 16 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 1 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 30 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE -"EUCAST 2017" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 2 FALSE -"EUCAST 2017" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 29 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.06 FALSE -"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 25 FALSE -"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 32 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 2 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 21 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenzae" "5" 28 27 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 23 22 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 24 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 27 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 18 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 21 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2017" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 4 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenzae" "30" 24 20 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 21 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 19 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 20 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE -"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2017" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenzae" "30" 23 6 FALSE -"EUCAST 2017" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 6 FALSE -"EUCAST 2017" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 11 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 15 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 11 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 15 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 32 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2017" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2017" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2017" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2017" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 16 FALSE -"EUCAST 2017" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2017" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2017" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2017" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 11 6 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 15 14 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 21 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenzae" "5" 30 29 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 25 24 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 24 23 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2017" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2017" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 6 FALSE -"EUCAST 2017" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 20 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenzae" "1 unit" 12 6 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 24 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.06 FALSE -"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.5 FALSE -"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 16 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2017" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 16 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 17 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 32 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2017" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2017" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 24 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2017" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 2 FALSE -"EUCAST 2017" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenzae" "5" 18 17 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 19 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 16 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Roxithromycin" "H. influenzae" 1 32 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 10 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 27 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 17 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2017" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE -"EUCAST 2017" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 4 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenzae" "30" 25 21 FALSE -"EUCAST 2017" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 27 FALSE -"EUCAST 2017" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 24 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2017" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 21 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 16 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 14 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 14 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 15 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 22 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 17 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 32 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2017" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 0.125 16 FALSE -"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenzae" "15" 50 11 FALSE -"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 19 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 14 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2017" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2017" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2017" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 13 TRUE -"EUCAST 2017" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE -"EUCAST 2017" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2017" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2017" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 15 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 8 FALSE -"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 8 FALSE -"EUCAST 2017" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2017" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE -"EUCAST 2017" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2017" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 17 FALSE -"EUCAST 2017" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE -"EUCAST 2017" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2017" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 15 FALSE -"EUCAST 2017" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 2 FALSE -"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2017" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2017" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2017" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2017" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2017" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2017" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2017" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2017" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2016" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2016" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2016" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2016" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2016" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 4 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 14 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 18 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 2 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 14 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 18 14 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 32 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 14 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 32 FALSE -"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 15 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 18 FALSE -"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 32 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 2 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenzae" "2" 16 15 FALSE -"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 15 FALSE -"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" "2" 17 16 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2016" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 4 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2016" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2016" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 24 20 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 15 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 32 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 0.125 8 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 22 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 2 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 4 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 17 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 8 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 28 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 0.5 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 18 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 2 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 30 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 2 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 21 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 26 24 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 21 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 1 FALSE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 21 21 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Ciprofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2017" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 26 FALSE +"EUCAST 2017" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Ciprofloxacin" "Kingella" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.03 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 26 26 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2017" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" "5" 21 21 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 19 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 1 32 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Clarithromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 4 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenzae" "10" 26 23 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.03 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 25 22 FALSE +"EUCAST 2017" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenzae" "30" 31 31 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 30 30 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Ceftriaxone" "Kingella" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 21 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 1 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenzae" "30" 25 25 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenzae" "5" 27 27 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Cefotaxime" "Kingella" 27 27 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Cefotaxime" "Kingella" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 17 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2017" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2017" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2017" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 1 FALSE +"EUCAST 2017" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 26 25 FALSE +"EUCAST 2017" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 50 26 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Cefuroxime" "Kingella" 29 29 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Cefuroxime" "Kingella" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 18 FALSE +"EUCAST 2017" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 21 FALSE +"EUCAST 2017" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2017" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 4 FALSE +"EUCAST 2017" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 13 13 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftazidime/avibactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 17 17 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ceftazidime/avibactam" "Pseudo" 8 8 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftazidime/avibactam" "PK/PD" 8 8 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 23 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 1 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ceftolozane/tazobactam" "Pseudo" 4 4 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ceftolozane/tazobactam" "PK/PD" 4 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Dalbavancin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 21 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 24 21 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 1 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10" 30 30 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 1 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 22 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 1 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Doxycycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2017" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 24 FALSE +"EUCAST 2017" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 8 FALSE +"EUCAST 2017" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 20 FALSE +"EUCAST 2017" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 4 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 0.5 16 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenzae" "15" 50 10 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Erythromycin" "Kingella" 20 20 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Erythromycin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 25 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 19 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 22 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 27 21 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 20 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 4 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 19 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 8 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2017" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2017" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2017" "DISK" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 FALSE +"EUCAST 2017" "DISK" "UTI" "Escherichia coli" 2 "Fosfomycin" "Enterobacteriaceae" 24 24 TRUE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2017" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2017" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2017" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2017" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 20 20 FALSE +"EUCAST 2017" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 22 22 FALSE +"EUCAST 2017" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" 8 8 FALSE +"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 23 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 15 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 4 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 4 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 17 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 18 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 2 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 17 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 8 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2017" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 8 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Kanamycin" "Staphs" "30" 18 18 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Kanamycin" "Staphs" 22 22 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 19 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 21 21 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 19 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 23 19 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 23 20 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 0.5 1 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Levofloxacin" "Aerococcus" 2 2 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Levofloxacin" "Kingella" 28 28 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Levofloxacin" "Kingella" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 1 1 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 22 22 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 1 FALSE +"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" "5" 22 22 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Levofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Levofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 17 17 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 2 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Meropenem" "Aerococcus" 31 31 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Meropenem" "Aerococcus" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 2 FALSE +"EUCAST 2017" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 1 FALSE +"EUCAST 2017" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Meropenem" "Kingella" 30 30 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Meropenem" "Kingella" 0.032 0.03 FALSE +"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 26 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 33 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 1 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 22 22 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenzae" "5" 28 28 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 23 23 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" "5" 25 25 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 28 28 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Moxifloxacin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 19 19 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 22 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2017" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenzae" "30" 24 21 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 22 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 20 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 21 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2017" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenzae" "30" 23 7 FALSE +"EUCAST 2017" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 7 FALSE +"EUCAST 2017" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 12 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 16 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 12 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 4 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Nitrofurantoin" "Aerococcus" 16 16 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2017" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2017" "DISK" "UTI" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2017" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2017" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Norfloxacin" "Aerococcus" 17 17 FALSE +"EUCAST 2017" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2017" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2017" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2017" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 11 7 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 15 15 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Nitroxoline" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 24 22 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenzae" "5" 30 30 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 25 25 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 24 24 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Oritavancin" "PK/PD" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Staphylococcus epidermidis" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2017" "MIC" "Staphylococcus saprophyticus saprophyticus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2017" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 7 FALSE +"EUCAST 2017" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 21 21 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Benzylpenicillin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenzae" "1 unit" 12 7 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 25 25 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Benzylpenicillin" "Kingella" 0.032 0.03 FALSE +"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.25 FALSE +"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 17 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2017" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2017" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2017" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2017" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 17 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 18 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 16 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2017" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2017" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Rifampicin" "Aerococcus" 25 25 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Rifampicin" "Aerococcus" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2017" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 1 FALSE +"EUCAST 2017" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenzae" "5" 18 18 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Rifampicin" "Kingella" 20 20 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Rifampicin" "Kingella" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 17 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 0.5 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Roxithromycin" "H. influenzae" 1 16 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 1 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 1 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 512 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 512 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 14 11 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 28 28 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Trimethoprim/sulfamethoxazole" "Kingella" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2017" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.06 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2017" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2017" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2017" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 4 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 23 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 18 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 16 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2017" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 30 FALSE +"EUCAST 2017" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2017" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 2 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenzae" "30" 25 22 FALSE +"EUCAST 2017" "DISK" "Kingella kingae" 2 "Tetracycline" "Kingella" 28 28 FALSE +"EUCAST 2017" "MIC" "Kingella kingae" 2 "Tetracycline" "Kingella" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 25 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2017" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2017" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2017" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 22 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 17 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 15 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 15 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 18 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 23 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 18 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 16 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2017" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 0.125 8 FALSE +"EUCAST 2017" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenzae" "15" 50 12 FALSE +"EUCAST 2017" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2017" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 20 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2017" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 15 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 4 TRUE +"EUCAST 2017" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2017" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2017" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 14 TRUE +"EUCAST 2017" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 4 TRUE +"EUCAST 2017" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2017" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2017" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 16 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 4 FALSE +"EUCAST 2017" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2017" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2017" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 17 FALSE +"EUCAST 2017" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2017" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 18 FALSE +"EUCAST 2017" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 16 FALSE +"EUCAST 2017" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2017" "DISK" "Aerococcus" 3 "Vancomycin" "Aerococcus" 16 16 FALSE +"EUCAST 2017" "MIC" "Aerococcus" 3 "Vancomycin" "Aerococcus" 1 1 FALSE +"EUCAST 2017" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2017" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2017" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2017" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2017" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2017" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2017" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2017" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2017" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2017" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2017" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2017" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2017" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2017" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2017" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2017" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2016" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2016" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2016" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2016" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2016" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Amoxicillin/clavulanic acid" "H. influenzae" 2 2 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenzae" "2-1" 15 15 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" "2-1" 19 19 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. catarrhalis" 1 1 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 15 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 18 15 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 15 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 16 FALSE +"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 16 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 19 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 16 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ampicillin" "H. influenzae" 1 1 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenzae" "2" 16 16 FALSE +"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 16 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" "2" 17 17 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2016" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Amoxicillin" "H. influenzae" 2 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2016" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2016" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 24 21 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 16 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 16 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Azithromycin" "H. influenzae" 0.125 4 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftobiprole" "Enterobacteriaceae" 23 23 FALSE "EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" "5" 17 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 16 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 27 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenzae" "5" 25 24 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 17 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 4 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenzae" "30" 28 27 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 29 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 4 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 20 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 20 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE -"EUCAST 2016" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE -"EUCAST 2016" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 25 21 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2016" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5" 50 15 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 18 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 1 64 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 8 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenzae" "10" 26 22 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.06 FALSE -"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 23 19 FALSE -"EUCAST 2016" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenzae" "30" 30 29 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 20 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 4 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 2 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenzae" "30" 25 24 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 16 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 4 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2016" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2016" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2016" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 4 FALSE -"EUCAST 2016" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 2 FALSE -"EUCAST 2016" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 26 24 FALSE -"EUCAST 2016" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 50 25 FALSE -"EUCAST 2016" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 17 FALSE -"EUCAST 2016" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 20 FALSE -"EUCAST 2016" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 16 FALSE -"EUCAST 2016" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 8 FALSE -"EUCAST 2016" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 22 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 2 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ceftolozane/tazobactam" "Pseudo" 4 8 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Ceftolozane/tazobactam" "PK/PD" 4 8 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 20 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 23 19 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 2 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10" 30 29 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 2 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 21 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 4 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 2 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 4 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 4 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2016" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE -"EUCAST 2016" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2016" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 19 FALSE -"EUCAST 2016" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 0.5 32 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenzae" "15" 50 9 FALSE -"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 24 FALSE -"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 18 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 21 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 24 20 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenzae" "30" 27 26 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 19 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 8 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 18 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 16 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2016" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2016" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2016" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2016" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2016" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2016" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 35 34 FALSE -"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 8 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 16 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 17 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 4 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 28 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 16 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 16 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2016" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Kanamycin" "Staphs" "30" 18 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 16 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 18 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 19 18 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 15 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 8 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 18 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 8 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 21 17 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 14 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 1 2 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenzae" "5" 26 25 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 26 25 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 1 2 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 20 16 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 4 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5" 22 18 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 18 14 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 17 16 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 1 4 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2016" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 4 FALSE -"EUCAST 2016" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 2 FALSE -"EUCAST 2016" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenzae" "10" 20 19 FALSE -"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 25 FALSE -"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 32 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 4 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 2 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenzae" "5" 25 24 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 23 22 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5" 24 20 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 18 14 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 21 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2016" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 4 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenzae" "30" 24 20 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 21 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 19 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 20 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200" 30 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 512 FALSE -"EUCAST 2016" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenzae" "30" 23 6 FALSE -"EUCAST 2016" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 6 FALSE -"EUCAST 2016" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 11 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 15 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 11 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2016" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2016" "DISK" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2016" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2016" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2016" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2016" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2016" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2016" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 12 6 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Norfloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenzae" "5" 23 22 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 25 24 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5" 50 12 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 8 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 6 FALSE -"EUCAST 2016" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenzae" "1 unit" 12 6 FALSE -"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.5 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 16 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2016" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2016" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 16 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 17 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 32 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2016" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2016" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2016" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 2 FALSE -"EUCAST 2016" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenzae" "5" 18 17 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 16 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Roxithromycin" "H. influenzae" 1 32 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 2 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 2 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 1024 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 13 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 1024 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 2 FALSE -"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 17 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2016" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE -"EUCAST 2016" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 4 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenzae" "30" 25 21 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 24 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 4 FALSE -"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2016" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 21 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 16 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 14 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 14 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 15 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 22 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 17 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 32 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2016" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 0.125 16 FALSE -"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenzae" "15" 50 11 FALSE -"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 19 FALSE -"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 19 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 14 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2016" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2016" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2016" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 13 TRUE -"EUCAST 2016" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE -"EUCAST 2016" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2016" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2016" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 15 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 8 FALSE -"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 8 FALSE -"EUCAST 2016" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.5 FALSE -"EUCAST 2016" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE -"EUCAST 2016" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2016" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 17 FALSE -"EUCAST 2016" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE -"EUCAST 2016" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2016" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2016" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2016" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2016" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2016" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2016" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2016" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2016" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2015" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2015" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2015" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2015" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2015" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" "2-1" 15 14 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" 2 4 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" "2-1" 19 18 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" 1 2 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 15 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 18 14 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 32 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 14 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 32 FALSE -"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 15 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 18 FALSE -"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 32 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" "2" 16 15 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" 1 2 FALSE -"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 15 FALSE -"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" "2" 17 16 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2015" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" "H. influenaza" 2 4 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2015" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2015" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 24 20 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 15 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 32 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Azithromycin" "H. influenaza" 0.125 8 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 8 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 16 15 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 27 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" "5" 25 24 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" "5" 21 17 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" "30" 28 27 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" 2 4 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" "30" 30 29 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" 2 4 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 20 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 20 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE -"EUCAST 2015" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE -"EUCAST 2015" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2015" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" "5" 26 25 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" "5" 23 22 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 25 21 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2015" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5" 50 15 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 4 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 18 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" "H. influenaza" 1 64 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 8 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" "10" 26 22 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "H. influenaza" 0.032 0.06 FALSE -"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 23 19 FALSE -"EUCAST 2015" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" "30" 30 29 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" "30" 24 20 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" 1 4 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" "30" 25 24 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" 1 2 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" "5" 26 25 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" "5" 20 16 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" 1 4 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2015" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2015" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2015" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 26 24 FALSE -"EUCAST 2015" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 50 25 FALSE -"EUCAST 2015" "MIC" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 1 4 FALSE -"EUCAST 2015" "MIC" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 0.125 2 FALSE -"EUCAST 2015" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 21 17 FALSE -"EUCAST 2015" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 50 20 FALSE -"EUCAST 2015" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 4 16 FALSE -"EUCAST 2015" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 0.125 8 FALSE -"EUCAST 2015" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 20 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 23 19 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" 1 2 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" "10" 30 29 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" 1 2 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 21 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 4 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 2 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 4 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Doxycycline" "H. influenaza" 1 4 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. cattharalis" 1 4 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2015" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE -"EUCAST 2015" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2015" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 19 FALSE -"EUCAST 2015" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" "15" 50 9 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" 0.5 32 FALSE -"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 24 FALSE -"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" "15" 23 19 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 18 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 21 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" "10" 29 28 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 24 20 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" "30" 27 26 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" 0.25 0.5 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" "30" 20 19 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" 4 8 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 18 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 16 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2015" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2015" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2015" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2015" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2015" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2015" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 35 34 FALSE -"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 8 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 16 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 17 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" 2 4 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" "10" 29 28 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" 2 4 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 16 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 16 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2015" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 18 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 19 18 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 15 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 8 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 18 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 8 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 21 17 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2015" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" "5" 26 25 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" 1 2 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" "5" 23 22 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" 1 2 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 20 16 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 4 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5" 22 18 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 18 14 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 17 16 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 1 4 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2015" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2015" "MIC" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 2 4 FALSE -"EUCAST 2015" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 0.25 2 FALSE -"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 25 FALSE -"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" "10" 33 32 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" 2 4 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 2 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" "5" 25 24 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" "5" 23 22 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5" 24 20 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 18 14 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 21 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2015" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" "30" 24 20 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" 1 4 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" "30" 25 21 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" 1 4 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 19 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 20 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200" 30 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 512 FALSE -"EUCAST 2015" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenaza" "30" 23 6 FALSE -"EUCAST 2015" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. cattharalis" "30" 23 6 FALSE -"EUCAST 2015" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 11 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 15 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 11 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2015" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2015" "DISK" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2015" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2015" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2015" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2015" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2015" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2015" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 12 6 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Norfloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" "5" 23 22 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" "5" 25 24 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5" 50 12 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 8 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 6 FALSE -"EUCAST 2015" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenaza" "1 unit" 12 6 FALSE -"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.5 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 16 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2015" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2015" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 16 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 17 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 32 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2015" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2015" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2015" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" "5" 18 17 FALSE -"EUCAST 2015" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" 1 2 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 16 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" "H. influenaza" 1 32 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" "H. influenaza" 1 2 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. cattharalis" 1 2 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 17 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2015" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE -"EUCAST 2015" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" "30" 25 21 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" 1 4 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" "30" 28 24 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" 1 4 FALSE -"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2015" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 21 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 16 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 14 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 14 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 15 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 22 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 17 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 32 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" "15" 50 11 FALSE -"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" 0.125 16 FALSE -"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" "15" 23 19 FALSE -"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 19 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 14 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2015" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2015" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2015" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 13 TRUE -"EUCAST 2015" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE -"EUCAST 2015" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2015" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2015" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 15 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 8 FALSE -"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 8 FALSE -"EUCAST 2015" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE -"EUCAST 2015" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2015" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 17 FALSE -"EUCAST 2015" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE -"EUCAST 2015" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2015" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2015" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2015" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2015" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2015" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2015" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2015" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2015" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2014" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2014" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2014" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2014" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2014" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 18 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 15 TRUE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" "2-1" 15 14 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" 2 4 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" "2-1" 19 18 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" 1 2 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 14 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 16 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 16 12 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 18 14 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 32 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 14 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 32 FALSE -"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 15 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 18 FALSE -"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 32 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 13 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 7 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" "2" 16 15 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" 1 2 FALSE -"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 15 FALSE -"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" "2" 17 16 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2014" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 17 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 14 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 16 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" "H. influenaza" 2 4 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 2 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 16 FALSE -"EUCAST 2014" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2014" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2014" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 8 FALSE -"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2014" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 24 20 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 15 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 32 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 16 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Azithromycin" "H. influenaza" 0.125 8 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 16 15 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 16 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 16 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 27 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 16 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" "5" 25 24 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" "5" 21 17 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 11 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 16 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" "30" 28 27 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" 2 4 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" "30" 30 29 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" 2 4 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 18 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 16 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 20 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 20 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 2 FALSE -"EUCAST 2014" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 25 FALSE -"EUCAST 2014" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2014" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" "5" 26 25 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" "5" 23 22 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.12 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 25 21 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2014" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.12 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5" 50 15 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 4 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 19 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 18 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 16 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 18 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 18 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" "H. influenaza" 1 64 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 4 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 8 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 20 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" "10" 26 22 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 22 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "H. influenaza" 0.032 0.06 FALSE -"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 19 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 23 19 FALSE -"EUCAST 2014" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" "30" 30 29 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" "30" 24 20 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" 1 4 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 26 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 4 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 22 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" "30" 25 24 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" 1 2 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" "5" 26 25 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" "5" 20 16 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" 1 4 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 25 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.06 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 22 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 4 FALSE -"EUCAST 2014" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 17 TRUE -"EUCAST 2014" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2014" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 26 24 FALSE -"EUCAST 2014" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 50 25 FALSE -"EUCAST 2014" "MIC" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 1 4 FALSE -"EUCAST 2014" "MIC" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 0.125 2 FALSE -"EUCAST 2014" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 21 17 FALSE -"EUCAST 2014" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 50 20 FALSE -"EUCAST 2014" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 4 16 FALSE -"EUCAST 2014" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 0.125 8 FALSE -"EUCAST 2014" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 25 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 16 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 4 FALSE -"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 2048 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 2 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 20 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 23 19 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" 1 2 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" "10" 30 29 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" 1 2 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 21 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 4 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 2 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 4 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Doxycycline" "H. influenaza" 1 4 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. cattharalis" 1 4 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 2 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2014" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 23 FALSE -"EUCAST 2014" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 16 FALSE -"EUCAST 2014" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 19 FALSE -"EUCAST 2014" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 8 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" "15" 50 9 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" 0.5 32 FALSE -"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 24 FALSE -"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" "15" 23 19 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 17 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 18 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 21 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" "10" 29 28 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 24 20 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" "30" 27 26 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" 0.25 0.5 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" "30" 20 19 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" 4 8 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 18 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 16 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 24 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 16 FALSE -"EUCAST 2014" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2014" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 TRUE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2014" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 18 FALSE -"EUCAST 2014" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 21 FALSE -"EUCAST 2014" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 24 FALSE -"EUCAST 2014" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 35 34 FALSE -"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 2048 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 23 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 160 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 22 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 2 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 14 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 160 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 8 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 16 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 17 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" 2 4 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" "10" 29 28 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" 2 4 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 16 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 16 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 16 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 13 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 24 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 18 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 19 18 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 15 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 8 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 18 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 8 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 21 17 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 1 4 FALSE -"EUCAST 2014" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 8 TRUE -"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 2 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" "5" 26 25 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" 1 2 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" "5" 23 22 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" 1 2 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 20 16 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 4 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 26 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.12 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5" 22 18 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 18 14 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 17 16 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 1 4 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 14 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 15 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 14 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 16 FALSE -"EUCAST 2014" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" "10" 20 19 FALSE -"EUCAST 2014" "MIC" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 2 4 FALSE -"EUCAST 2014" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 0.25 2 FALSE -"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 25 FALSE -"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.5 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" "10" 33 32 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" 2 4 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 17 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 16 FALSE -"EUCAST 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 2 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 16 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 20 16 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 2048 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 24 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 1 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" "5" 25 24 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" "5" 23 22 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5" 24 20 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 18 14 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 21 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2014" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.03 FALSE -"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 4 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" "30" 24 20 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" 1 4 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" "30" 25 21 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" 1 4 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 19 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 20 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 4 FALSE -"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 16 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200" 30 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 512 FALSE -"EUCAST 2014" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenaza" "30" 23 6 FALSE -"EUCAST 2014" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. cattharalis" "30" 23 6 FALSE -"EUCAST 2014" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 6 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 11 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 15 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 11 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 21 FALSE -"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 8 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 10 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2014" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 14 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2014" "DISK" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" "100" 13 12 TRUE -"EUCAST 2014" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2014" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 14 TRUE -"EUCAST 2014" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 128 TRUE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 18 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 11 FALSE -"EUCAST 2014" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 6 FALSE -"EUCAST 2014" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 6 FALSE -"EUCAST 2014" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 12 6 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Norfloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 22 18 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" "5" 23 22 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" "5" 25 24 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" 0.5 1 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5" 20 19 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5" 50 12 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 8 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 6 FALSE -"EUCAST 2014" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 23 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 28 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenaza" "1 unit" 12 6 FALSE -"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 12 FALSE -"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 2 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 2 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.5 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 16 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 25 FALSE -"EUCAST 2014" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 17 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.5 FALSE -"EUCAST 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 11 FALSE -"EUCAST 2014" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 6 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 4 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 16 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 17 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 32 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 32 FALSE -"EUCAST 2014" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.5 FALSE -"EUCAST 2014" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 19 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 2048 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 24 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 1 FALSE -"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 2 FALSE -"EUCAST 2014" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" "5" 18 17 FALSE -"EUCAST 2014" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" 1 2 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.5 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 22 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 14 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 16 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" "H. influenaza" 1 32 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 13 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" "H. influenaza" 1 2 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. cattharalis" 1 2 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 16 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 128 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 8 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.12 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 2 FALSE -"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.5 FALSE -"EUCAST 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 22 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 17 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 32 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 32 FALSE -"EUCAST 2014" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 29 FALSE -"EUCAST 2014" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 4 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 23 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 2 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" "30" 25 21 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" 1 4 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" "30" 28 24 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" 1 4 FALSE -"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 2 FALSE -"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 4 FALSE -"EUCAST 2014" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 23 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 18 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 19 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 21 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 15 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 14 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 16 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 15 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 14 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 2048 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 14 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 15 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 22 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 17 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 32 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 32 FALSE -"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" "15" 50 11 FALSE -"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" 0.125 16 FALSE -"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" "15" 23 19 FALSE -"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 16 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 1 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 19 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 14 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2014" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 20 TRUE -"EUCAST 2014" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2014" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 13 TRUE -"EUCAST 2014" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE -"EUCAST 2014" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 4 TRUE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 13 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2014" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 16 FALSE -"EUCAST 2014" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 8 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 15 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 8 FALSE -"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 17 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 21 FALSE -"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 8 FALSE -"EUCAST 2014" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 16 FALSE -"EUCAST 2014" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2014" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 17 FALSE -"EUCAST 2014" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 32 FALSE -"EUCAST 2014" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 32 FALSE -"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 4 FALSE -"EUCAST 2014" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 16 FALSE -"EUCAST 2014" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 4 FALSE -"EUCAST 2014" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 11 FALSE -"EUCAST 2014" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2014" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 12 FALSE -"EUCAST 2014" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 4 FALSE -"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 15 FALSE -"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 14 FALSE -"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2014" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2014" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Aspergillus" 3 "Amphotericin B" "Aspergillus" 1 4 FALSE -"EUCAST 2013" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2013" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2013" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2013" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20/10ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H.influenzae" "2/1ug" 15 14 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M.catarrhalis" "2/1ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M.catarrhalis" 1 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella" "2/1ug" 15 14 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella" 1 2 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" 2 16 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30ug" 16 12 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetob" "30ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetob" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Amikacin" "Pseud" "30ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Amikacin" "Pseud" 8 32 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30ug" 18 15 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 32 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Amikacin" 8 32 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10ug" 14 13 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2ug" 10 7 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H.influenzae" "2ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ampicillin" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria" "2ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria" 1 2 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N.meningitidis" 0.125 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella" "2ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella" 1 2 FALSE -"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2ug" 15 14 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2ug" 21 14 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ampicillin" 2 16 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H.pylori" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N.meningitidis" 0.125 2 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella" 1 2 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 4 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Amoxicillin" 2 16 FALSE -"EUCAST 2013" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.06 FALSE -"EUCAST 2013" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30ug" 24 20 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseud" "30ug" 50 15 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseud" 1 32 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Aztreonam" 4 16 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Azithromycin" "H.influenzae" 0.125 8 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M.catarrhalis" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N.gonorrhoeae" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 4 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Azithromycin" "Strept A,B,C,G" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseud" "10ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseud" 8 16 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftazidime" 4 16 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefaclor" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M.catarrhalis" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30ug" 50 27 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 1 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5ug" 17 16 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H.influenzae" "5ug" 25 24 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefixime" "H.influenzae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M.catarrhalis" "5ug" 21 17 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M.catarrhalis" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N.gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30ug" 12 11 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H.influenzae" "30ug" 28 27 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M.catarrhalis" "30ug" 30 29 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M.catarrhalis" 2 4 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N.meningitidis" 2 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30ug" 18 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 16 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strept A,B,C,G" "30ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strept A,B,C,G" 8 16 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30ug" 21 20 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 16 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetob" "5ug" 21 20 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetob" 1 2 FALSE -"EUCAST 2013" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter" "5ug" 26 25 FALSE -"EUCAST 2013" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H.influenzae" "5ug" 26 25 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M.catarrhalis" "5ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M.catarrhalis" 0.5 1 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N.gonorrhoeae" 0.032 0.12 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N.meningitidis" 0.032 0.12 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseud" "5ug" 25 21 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseud" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella" "5ug" 27 26 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5ug" 50 15 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 4 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ciprofloxacin" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Clindamycin" "Strept A,B,C,G" "2ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Clindamycin" "Strept A,B,C,G" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H.pylori" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" "H.influenzae" 1 64 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M.catarrhalis" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 4 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Clarithromycin" "Strept A,B,C,G" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 4 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Colistin" "Acinetob" 2 4 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Colistin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10ug" 21 20 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H.influenzae" "10ug" 26 22 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" "H.influenzae" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 1 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "H.influenzae" 0.032 0.06 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 2 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.5 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftaroline" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H.influenzae" "30ug" 30 29 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" "H.influenzae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M.catarrhalis" "30ug" 24 20 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M.catarrhalis" 1 4 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N.gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N.meningitidis" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30ug" 27 26 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftriaxone" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30ug" 23 22 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 2 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H.influenzae" "30ug" 25 24 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H.influenzae" "5ug" 26 25 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" "H.influenzae" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M.catarrhalis" "5ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M.catarrhalis" 1 4 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N.gonorrhoeae" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N.meningitidis" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella" "5ug" 26 25 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella" 0.032 0.06 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefotaxime" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime axetil" "Enterobacteriaceae" "30ug" 18 17 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime axetil" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "H.influenzae" "30ug" 50 25 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" "H.influenzae" 0.125 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "M.catarrhalis" "30ug" 50 20 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "M.catarrhalis" 0.125 8 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30ug" 18 17 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30ug" 18 17 TRUE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "H.influenzae" "30ug" 26 24 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" "H.influenzae" 1 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "M.catarrhalis" "30ug" 21 17 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M.catarrhalis" 4 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30ug" 26 25 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefuroxime" 4 16 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefazolin" 1 4 FALSE -"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C.difficile" 4 2048 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 2 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Daptomycin" "Strept A,B,C,G" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10ug" 24 17 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetob" "10ug" 21 14 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetob" 1 8 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H.influenzae" "10ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Doripenem" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M.catarrhalis" "10ug" 30 29 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M.catarrhalis" 1 2 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Doripenem" "Pseud" "10ug" 25 18 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Doripenem" "Pseud" 1 8 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 2 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 2 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Doripenem" 1 8 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Doxycycline" "H.influenzae" 1 4 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M.catarrhalis" 1 4 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella" 1 2 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 4 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Doxycycline" "Strept A,B,C,G" 1 4 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter" "15ug" 24 23 FALSE -"EUCAST 2013" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter" 8 16 FALSE -"EUCAST 2013" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter" "15ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter" 4 8 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H.influenzae" "15ug" 50 9 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Erythromycin" "H.influenzae" 0.5 32 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria" "15ug" 25 24 FALSE -"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria" 1 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M.catarrhalis" "15ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M.catarrhalis" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15ug" 21 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Erythromycin" "Strept A,B,C,G" "15ug" 21 17 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Erythromycin" "Strept A,B,C,G" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10ug" 25 21 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H.influenzae" "10ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ertapenem" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M.catarrhalis" "10ug" 29 28 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M.catarrhalis" 0.5 1 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 1 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ertapenem" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30ug" 24 20 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 8 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H.influenzae" "30ug" 27 26 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefepime" "H.influenzae" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M.catarrhalis" "30ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M.catarrhalis" 4 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Cefepime" "Pseud" "30ug" 18 17 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Cefepime" "Pseud" 8 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30ug" 25 24 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefepime" 4 16 FALSE -"EUCAST 2013" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 8 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 64 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 64 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" 8 2048 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" "30ug" 22 21 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30ug" 25 24 FALSE -"EUCAST 2013" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" "30ug" 22 21 FALSE -"EUCAST 2013" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" "30ug" 22 21 FALSE -"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C.difficile" 2 2048 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10ug" 24 23 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 160 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10ug" 17 13 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetob" "10ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetob" 4 8 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 7 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 160 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseud" "10ug" 15 14 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10ug" 18 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10ug" 22 21 FALSE -"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 2 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Gentamicin" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10ug" 22 15 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetob" "10ug" 23 16 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetob" 2 16 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10ug" 21 17 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H.influenzae" "10ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Imipenem" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M.catarrhalis" "10ug" 29 28 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M.catarrhalis" 2 4 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Imipenem" "Pseud" "10ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Imipenem" "Pseud" 4 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 4 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 4 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Imipenem" 2 16 FALSE -"EUCAST 2013" "MIC" "Aspergillus" 3 "Itraconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30ug" 14 13 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 32 TRUE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Linezolid" "Strept A,B,C,G" "10ug" 19 15 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Linezolid" "Strept A,B,C,G" 2 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 8 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Linezolid" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetob" "5ug" 21 17 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetob" 1 4 FALSE -"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H.pylori" 1 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H.influenzae" "5ug" 26 25 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M.catarrhalis" "5ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M.catarrhalis" 1 2 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseud" "5ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseud" 1 4 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella" "5ug" 27 26 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Levofloxacin" "Strept A,B,C,G" "5ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Levofloxacin" "Strept A,B,C,G" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 4 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Levofloxacin" 1 4 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" "10ug" 15 14 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Klebsiella pneumoniae pneumoniae" 1 "Mecillinam" "Enterobacteriaceae" "10ug" 15 14 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Klebsiella pneumoniae pneumoniae" 1 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" "10ug" 15 14 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" 8 16 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10ug" 22 15 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 16 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetob" "10ug" 21 14 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetob" 2 16 FALSE -"EUCAST 2013" "DISK" "Nonmeningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" "10ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Nonmeningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" 2 4 FALSE -"EUCAST 2013" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" 0.25 2 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria" "10ug" 26 25 FALSE -"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M.catarrhalis" "10ug" 33 32 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M.catarrhalis" 2 4 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N.meningitidis" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Meropenem" "Pseud" "10ug" 24 17 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Meropenem" "Pseud" 2 16 FALSE -"EUCAST 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 2 FALSE -"EUCAST 2013" "MIC" "Nonmeningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 4 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 4 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Meropenem" 2 16 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C.difficile" 4 2048 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H.influenzae" "5ug" 25 24 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M.catarrhalis" "5ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M.catarrhalis" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5ug" 24 20 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strept A,B,C,G" "5ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strept A,B,C,G" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5ug" 22 21 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H.influenzae" "30ug" 24 20 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Minocycline" "H.influenzae" 1 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M.catarrhalis" "30ug" 25 21 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M.catarrhalis" 1 4 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N.meningitidis" 1 4 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Minocycline" "Strept A,B,C,G" "30ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Minocycline" "Strept A,B,C,G" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30ug" 24 20 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C.difficile" 2 4 FALSE -"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H.pylori" 8 16 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200ug" 30 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 512 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "H.influenzae" "30ug" 23 6 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "M.catarrhalis" "30ug" 23 6 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella" "30ug" 23 6 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10ug" 15 11 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetob" "10ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetob" 4 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseud" "10ug" 12 11 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10ug" 18 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10ug" 22 21 FALSE -"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 2 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Netilmicin" 2 8 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100ug" 11 10 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 128 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100ug" 15 14 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 128 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100ug" 13 12 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" 64 128 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Streptococcus group B" 2 "Nitrofurantoin" "Strept A,B,C,G" "100ug" 15 14 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" 2 "Nitrofurantoin" "Strept A,B,C,G" 64 128 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10ug" 17 6 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Norfloxacin" "Strept A,B,C,G" "10ug" 12 6 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10ug" 12 6 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Norfloxacin" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H.influenzae" "5ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" "H.influenzae" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M.catarrhalis" "5ug" 25 24 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M.catarrhalis" 0.5 1 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N.gonorrhoeae" 0.125 0.5 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5ug" 20 19 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5ug" 50 12 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 8 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ofloxacin" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.5 FALSE -"EUCAST 2013" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1ug" 20 6 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Benzylpenicillin" "H.influenzae" "1unit" 12 6 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria" "1unit" 13 12 FALSE -"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria" 1 2 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N.gonorrhoeae" 0.064 2 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N.meningitidis" 0.064 0.5 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella" "1unit" 17 16 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1unit" 26 25 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.25 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strept A,B,C,G" "1unit" 18 17 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strept A,B,C,G" 0.25 0.5 FALSE -"EUCAST 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.12 FALSE -"EUCAST 2013" "MIC" "Nonmeningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1unit" 18 11 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 4 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Benzylpenicillin" 0.25 4 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseud" "30ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseud" 16 32 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Piperacillin" 4 32 FALSE -"EUCAST 2013" "MIC" "Aspergillus" 3 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" "Enterococcus" "15ug" 22 19 FALSE -"EUCAST 2013" "MIC" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" "Enterococcus" 1 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15ug" 21 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 4 FALSE -"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C.difficile" 0.004 2048 FALSE -"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H.pylori" 1 2 FALSE -"EUCAST 2013" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H.influenzae" "5ug" 18 17 FALSE -"EUCAST 2013" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N.meningitidis" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5ug" 26 22 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Rifampicin" "Strept A,B,C,G" "5ug" 21 14 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Rifampicin" "Strept A,B,C,G" 0.064 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5ug" 22 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 1 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" "H.influenzae" 1 32 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M.catarrhalis" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 4 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Roxithromycin" "Strept A,B,C,G" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10/10ug" 14 13 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 16 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 16 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" "H.influenzae" 1 2 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M.catarrhalis" 1 2 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" 2 16 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N.gonorrhoeae" 64 128 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 560 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 560 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetob" "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetob" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H.influenzae" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H.influenzae" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria" 0.064 0.12 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M.catarrhalis" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M.catarrhalis" 0.5 2 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella" "1.25ug/23.75ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella" 0.25 0.5 FALSE -"EUCAST 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "S.maltophilia" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "S.maltophilia" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75/10ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseud" "75/10ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseud" 16 32 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" 8 32 FALSE -"EUCAST 2013" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter" "30ug" 30 29 FALSE -"EUCAST 2013" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter" 2 4 FALSE -"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H.pylori" 1 2 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H.influenzae" "30ug" 25 21 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Tetracycline" "H.influenzae" 1 4 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M.catarrhalis" "30ug" 28 24 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M.catarrhalis" 1 4 FALSE -"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N.gonorrhoeae" 0.5 2 FALSE -"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N.meningitidis" 1 4 FALSE -"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella" "30ug" 24 23 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30ug" 22 18 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Tetracycline" "Strept A,B,C,G" "30ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Tetracycline" "Strept A,B,C,G" 1 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30ug" 25 21 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 4 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 4 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 4 FALSE -"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Teicoplanin" "Strept A,B,C,G" "30ug" 15 14 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Teicoplanin" "Strept A,B,C,G" 2 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 4 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 4 FALSE -"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C.difficile" 0.25 2048 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15ug" 18 14 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15ug" 18 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Tigecycline" "Strept A,B,C,G" "15ug" 19 15 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Tigecycline" "Strept A,B,C,G" 0.25 1 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Tigecycline" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75ug" 23 22 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseud" "75ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseud" 16 32 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Ticarcillin" 8 32 FALSE -"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H.influenzae" "15ug" 50 11 FALSE -"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Telithromycin" "H.influenzae" 0.125 16 FALSE -"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M.catarrhalis" "15ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M.catarrhalis" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Telithromycin" "Strept A,B,C,G" "15ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Telithromycin" "Strept A,B,C,G" 0.25 1 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15ug" 23 19 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 1 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5ug" 18 14 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 8 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5ug" 50 20 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 2 TRUE -"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5ug" 17 13 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 8 TRUE -"EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" 2 "Trimethoprim" "Strept A,B,C,G" 2 4 TRUE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10ug" 17 13 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 8 FALSE -"EUCAST 2013" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetob" "10ug" 17 16 FALSE -"EUCAST 2013" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetob" 4 8 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseud" "10ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseud" 4 8 FALSE -"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10ug" 18 17 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10ug" 22 21 FALSE -"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 2 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Tobramycin" 2 8 FALSE -"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30/6ug" 20 16 FALSE -"EUCAST 2013" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 32 FALSE -"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseud" "30/6ug" 19 18 FALSE -"EUCAST 2013" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseud" 16 32 FALSE -"EUCAST 2013" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" 4 32 FALSE -"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C.difficile" 2 4 FALSE -"EUCAST 2013" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5ug" 12 11 FALSE -"EUCAST 2013" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 8 FALSE -"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 4 FALSE -"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 8 FALSE -"EUCAST 2013" "DISK" "Streptococcus" 3 "Vancomycin" "Strept A,B,C,G" "5ug" 13 12 FALSE -"EUCAST 2013" "MIC" "Streptococcus" 3 "Vancomycin" "Strept A,B,C,G" 2 4 FALSE -"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5ug" 16 15 FALSE -"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 4 FALSE -"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5ug" 15 14 FALSE -"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 4 FALSE -"EUCAST 2013" "MIC" "Aspergillus" 3 "Voriconazole" "Aspergillus" 1 4 FALSE -"EUCAST 2013" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.25 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" 4 16 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "2ug/1ug" 17 16 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" 2 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "2ug/1ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" 1 2 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Amikacin" "30ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Amikacin" "30ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "30ug" 18 15 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "30ug" 22 18 FALSE -"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" 8 32 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Ampicillin" "2ug" 10 7 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Ampicillin" 4 16 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ampicillin" 1 2 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "2ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Ampicillin" 1 2 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ampicillin" 0.125 2 FALSE -"EUCAST 2012" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "2ug" 15 14 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "2ug" 21 14 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" 0.5 4 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Amoxicillin" 4 16 FALSE -"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Amoxicillin" 0.125 0.25 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" 2 4 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" 0.125 2 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Aztreonam" "30ug" 50 15 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Aztreonam" 1 32 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Azithromycin" 0.125 8 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Azithromycin" 1 4 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ceftazidime" "10ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ceftazidime" 8 16 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefaclor" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30ug" 50 27 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" 0.032 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefadroxil" "5ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefadroxil" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefadroxil" "5ug" 21 17 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefadroxil" 0.5 2 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefadroxil" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30ug" 28 27 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" 2 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "30ug" 30 29 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" 2 4 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" 2 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Chloramphenicol" 8 16 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" "30ug" 21 20 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30ug" 21 20 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5ug" 21 20 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Ciprofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5ug" 26 25 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5ug" 23 22 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" 0.032 0.12 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" 0.032 0.12 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5ug" 25 21 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ciprofloxacin" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5ug" 20 19 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Ciprofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "5ug" 50 17 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" 0.125 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Clindamycin" "2ug" 22 18 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Clindamycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2ug" 17 16 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Clindamycin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "2ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" 1 64 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Clarithromycin" 1 4 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Colistin" 2 4 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Colistin" 4 8 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10ug" 26 22 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30ug" 30 29 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "30ug" 24 20 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" 1 4 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "30ug" 27 26 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" 1 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5ug" 26 25 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "5ug" 20 16 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" 1 4 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" 0.5 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "5ug" 23 22 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30ug" 50 25 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" 0.125 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "30ug" 50 20 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" 0.125 8 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30ug" 26 24 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" 1 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "30ug" 21 17 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" 4 16 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "30ug" 26 25 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Daptomycin" 4 2048 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Daptomycin" 1 2 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Doripenem" "10ug" 21 14 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Doripenem" 1 8 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10ug" 20 19 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Doripenem" 1 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "10ug" 30 29 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Doripenem" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Doripenem" "10ug" 25 18 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Doripenem" 1 8 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" 1 2 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "10ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" 1 2 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Doxycycline" 1 4 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15ug" 50 9 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Erythromycin" 0.5 32 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "15ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Erythromycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Erythromycin" 1 4 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15ug" 22 18 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10ug" 20 19 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "10ug" 29 28 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "10ug" 22 21 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30ug" 27 26 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefepime" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "30ug" 20 19 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefepime" 4 8 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Cefepime" "30ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Cefepime" 8 16 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" 1 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "30ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Fosfomycin" 32 64 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30ug" 22 21 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" 4 8 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "30ug" 25 24 FALSE -"EUCAST 2012" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30ug" 22 21 FALSE -"EUCAST 2012" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" 4 8 FALSE -"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Fusidic acid" 2 2048 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Fusidic acid" "10ug" 24 23 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Fusidic acid" 1 2 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin-high" "30ug" 8 7 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Gentamicin-high" 128 160 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Gentamicin" "10ug" 17 16 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin" "30ug" 8 7 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Gentamicin" 128 160 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Gentamicin" "10ug" 15 14 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Gentamicin" "10ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Gentamicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "10ug" 22 21 FALSE -"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Imipenem" "10ug" 23 16 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Imipenem" 2 16 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Imipenem" "10ug" 21 17 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Imipenem" 4 16 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10ug" 20 19 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "10ug" 29 28 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Imipenem" "10ug" 20 16 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Imipenem" 4 16 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "10ug" 30 29 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" 2 4 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Linezolid" "10ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Linezolid" "10ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10ug" 19 15 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Linezolid" 2 8 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10ug" 22 18 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" 2 8 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Levofloxacin" "5ug" 21 17 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5ug" 26 25 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "5ug" 23 22 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Levofloxacin" "5ug" 20 16 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Levofloxacin" "5ug" 22 18 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" 2 4 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Meropenem" "10ug" 21 14 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Meropenem" 2 16 FALSE -"EUCAST 2012" "DISK" "Other infections" "Haemophilus influenzae" 2 "Meropenem" "10ug" 20 19 FALSE -"EUCAST 2012" "MIC" "Other infections" "Haemophilus influenzae" 2 "Meropenem" 2 4 FALSE -"EUCAST 2012" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" 0.25 2 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Meropenem" "10ug" 26 25 FALSE -"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Meropenem" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "10ug" 33 32 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Meropenem" 2 4 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Meropenem" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Meropenem" "10ug" 24 17 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Meropenem" 2 16 FALSE -"EUCAST 2012" "MIC" "Other infections" "Streptococcus pneumoniae" 2 "Meropenem" 2 4 FALSE -"EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" 0.25 2 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "10ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" 2 4 FALSE -"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" 4 2048 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "5ug" 23 22 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5ug" 24 20 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5ug" 22 21 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Minocycline" "30ug" 24 20 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Minocycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "30ug" 25 21 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Minocycline" 1 4 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Minocycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Minocycline" "30ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Minocycline" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Minocycline" "30ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "30ug" 24 20 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Metronidazole" 2 4 FALSE -"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Metronidazole" 8 16 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Mupirocin" "200ug" 30 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Mupirocin" 1 512 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30ug" 23 22 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "30ug" 23 22 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Netilmicin" "10ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Netilmicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Netilmicin" "10ug" 12 11 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Netilmicin" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "10ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "10ug" 22 21 FALSE -"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" 1 2 FALSE -"EUCAST 2012" "DISK" "UTI only" "Enterococcus faecalis" 2 "Nitrofurantoin" "100ug" 15 14 TRUE -"EUCAST 2012" "MIC" "UTI only" "Enterococcus faecalis" 2 "Nitrofurantoin" 64 128 TRUE -"EUCAST 2012" "DISK" "UTI only" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "100ug" 13 12 TRUE -"EUCAST 2012" "MIC" "UTI only" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" 64 128 TRUE -"EUCAST 2012" "DISK" "UTI only" "Streptococcus group B" 2 "Nitrofurantoin" "100ug" 15 14 TRUE -"EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" 2 "Nitrofurantoin" 64 128 TRUE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Norfloxacin" "10ug" 17 16 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Norfloxacin" "10ug" 12 11 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10ug" 12 11 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5ug" 23 22 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "5ug" 25 24 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" 0.5 1 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" 0.125 0.5 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ofloxacin" "5ug" 20 19 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Ofloxacin" 1 2 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5ug" 50 14 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" 0.125 8 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Oxacillin" 0.25 0.5 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" 2 4 FALSE -"EUCAST 2012" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" 2 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1ug" 20 19 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Benzylpenicillin" "1 unit" 12 11 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "1 unit" 13 12 FALSE -"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" 1 2 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" 0.064 2 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" 0.064 0.5 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "1 unit" 26 25 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Benzylpenicillin" 0.125 0.25 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" "1 unit" 18 17 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2012" "MIC" "Other infections" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 4 FALSE -"EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 0.12 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "1 unit" 18 11 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" 0.25 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin" "30ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Piperacillin" 16 32 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "15ug" 22 19 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" 1 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "15ug" 21 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" 1 4 FALSE -"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Rifampicin" 0.004 2048 FALSE -"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Rifampicin" 1 2 FALSE -"EUCAST 2012" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "5ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" 1 2 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Rifampicin" 0.25 0.5 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Rifampicin" "5ug" 26 22 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Rifampicin" 0.064 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5ug" 21 14 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5ug" 22 16 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" 1 32 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Roxithromycin" 1 4 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" 4 16 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" 1 2 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" 1 2 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" 64 128 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Streptomycin-high" 512 560 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Streptoduocin" "300ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Streptoduocin" 512 560 FALSE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" 0.032 2 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 29 28 FALSE -"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" 0.064 0.12 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE -"EUCAST 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "75ug/10ug" 17 16 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" 16 32 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30ug" 25 21 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30ug" 28 24 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" 0.5 2 FALSE -"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tetracycline" "30ug" 22 18 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Teicoplanin" "30ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Teicoplanin" 2 4 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" 2 4 FALSE -"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" 4 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" "30ug" 15 14 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "30ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "30ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Tigecycline" 0.25 2048 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Tigecycline" "15ug" 18 14 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Tigecycline" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tigecycline" "15ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus" 3 "Tigecycline" 0.5 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15ug" 19 15 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Ticarcillin" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin" "75ug" 17 16 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ticarcillin" 16 32 FALSE -"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "15ug" 50 11 FALSE -"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Telithromycin" 0.125 16 FALSE -"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "15ug" 23 19 FALSE -"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Telithromycin" "15ug" 22 18 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "15ug" 25 21 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" 1 2 FALSE -"EUCAST 2012" "DISK" "UTI only" "Enterococcus" 3 "Trimethoprim" "5ug" 50 20 TRUE -"EUCAST 2012" "MIC" "UTI only" "Enterococcus" 3 "Trimethoprim" 0.032 2 TRUE -"EUCAST 2012" "DISK" "UTI only" "Staphylococcus" 3 "Trimethoprim" "5ug" 17 13 TRUE -"EUCAST 2012" "MIC" "UTI only" "Staphylococcus" 3 "Trimethoprim" 2 8 TRUE -"EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" 2 "Trimethoprim" 2 4 TRUE -"EUCAST 2012" "DISK" "Acinetobacter" 3 "Tobramycin" "10ug" 17 16 FALSE -"EUCAST 2012" "MIC" "Acinetobacter" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Tobramycin" "10ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "10ug" 18 17 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "10ug" 22 21 FALSE -"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" 1 2 FALSE -"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30ug/6ug" 19 18 FALSE -"EUCAST 2012" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" 16 32 FALSE -"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2012" "DISK" "Enterococcus" 3 "Vancomycin" "5ug" 12 11 FALSE -"EUCAST 2012" "MIC" "Enterococcus" 3 "Vancomycin" 4 8 FALSE -"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" 2 4 FALSE -"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" 4 8 FALSE -"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Vancomycin" "5ug" 13 12 FALSE -"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5ug" 16 15 FALSE -"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "5ug" 15 14 FALSE -"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" 4 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "20ug" 20 19 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" 1 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 12 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 16 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Amikacin" "30ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Amikacin" 8 32 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Amikacin" "30ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Amikacin" 8 32 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Amikacin" "30ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Amikacin" 8 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 12 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 8 32 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Ampicillin" "2ug" 10 7 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Ampicillin" 4 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2ug" 16 15 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ampicillin" 1 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ampicillin" 1 2 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ampicillin" 0.125 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Ampicillin" "2ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Ampicillin" 0.5 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2ug" 28 21 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" 0.5 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 12 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 16 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Amoxicillin" 4 16 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" 1 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin" 1 2 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" 0.125 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Amoxicillin" 0.5 4 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin" "Generic rules" "10ug" 8 16 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Aztreonam" "30ug" 50 15 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Aztreonam" 1 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 25 20 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 1 16 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Azithromycin" 0.125 8 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Azithromycin" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Azithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ceftazidime" 8 16 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10ug" 20 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10ug" 1 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefaclor" "30ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefaclor" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30ug" 50 27 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" 0.032 1 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefixime" "5ug" 22 21 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefixime" 0.125 0.25 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefixime" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 17 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30ug" 12 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30ug" 16 32 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30ug" 28 24 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" 1 4 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" 1 4 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30ug" 20 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Chloramphenicol" 8 16 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 17 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 16 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5ug" 21 20 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Ciprofloxacin" 1 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5ug" 23 22 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5ug" 23 22 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" 0.032 0.06 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" 0.032 0.06 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5ug" 25 21 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ciprofloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Ciprofloxacin" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" 0.125 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Clindamycin" "2ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Clindamycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Clindamycin" "2ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Clindamycin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Clindamycin" "2ug" 17 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Clindamycin" "2ug" 17 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Clindamycin" "2ug" 17 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Clindamycin" "2ug" 17 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2ug" 17 16 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Clindamycin" "2ug" 17 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Clindamycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" 1 64 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Clarithromycin" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Clarithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Colistin" 2 4 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Colistin" 2 8 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Colistin" 2 4 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10ug" 24 20 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefpodoxime" "10ug" 28 24 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" 0.25 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 20 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 1 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30ug" 27 26 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" 1 4 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Ceftriaxone" "30ug" 27 26 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Ceftriaxone" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" 0.5 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30ug" 24 23 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" 1 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftibuten" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 20 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 1 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5ug" 22 21 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" 1 4 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefotaxime" "5ug" 23 22 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefotaxime" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" 0.5 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5ug" 21 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5ug" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30ug" 50 24 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" 0.125 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" 0.125 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" 0.25 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 18 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 8 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30ug" 25 21 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" 1 4 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefuroxime" "30ug" 26 25 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefuroxime" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" 0.5 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefazolin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Daptomycin" 1 2 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Doripenem" "10ug" 21 15 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Doripenem" 1 8 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10ug" 20 19 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Doripenem" "10ug" 22 16 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Doripenem" 1 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Doripenem" "10ug" 25 24 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Doripenem" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 24 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 8 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Doxycycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15ug" 50 11 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Erythromycin" 0.5 32 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Erythromycin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15ug" 22 18 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Erythromycin" "15ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Erythromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10ug" 20 19 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Ertapenem" "10ug" 22 21 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Ertapenem" 0.5 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 25 21 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30ug" 25 24 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefepime" 0.25 0.5 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefepime" 0.25 0.5 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Cefepime" 8 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefepime" "30ug" 25 24 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefepime" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefepime" "30ug" 32 28 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 24 17 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 1 16 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Fosfomycin" 32 64 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Fosfomycin" 32 64 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 32 64 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Cefoxitin" "30ug" 25 24 FALSE -"EUCAST 2011" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30ug" 22 21 FALSE -"EUCAST 2011" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30ug" 22 21 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Fusidic acid" "10ug" 22 21 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Fusidic acid" 1 2 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin-high" "30ug" 8 7 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Gentamicin" "10ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin" "30ug" 8 7 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Gentamicin" 128 256 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Gentamicin" "10ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Gentamicin" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Gentamicin" "10ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Gentamicin" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 17 13 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 2 8 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Imipenem" "10ug" 23 16 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Imipenem" 2 16 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Imipenem" "10ug" 21 17 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Imipenem" 4 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10ug" 16 15 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Imipenem" "10ug" 20 16 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Imipenem" 4 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Imipenem" "10ug" 30 29 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Imipenem" 2 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 21 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 2 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Cephalexin" "Generic rules" "30ug" 16 32 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Linezolid" "10ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Linezolid" "10ug" 17 16 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Linezolid" 4 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Linezolid" "10ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Linezolid" "10ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Linezolid" "10ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Linezolid" "10ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10ug" 20 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" 4 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Linezolid" "10ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Linezolid" 2 8 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Levofloxacin" "5ug" 21 20 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5ug" 21 20 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" 1 2 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Levofloxacin" "5ug" 20 16 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Levofloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Levofloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Levofloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Levofloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" 2 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Levofloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Levofloxacin" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 16 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Meropenem" "10ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Meropenem" 2 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Meropenem" "10ug" 20 19 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Meropenem" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Meropenem" "10ug" 24 17 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Meropenem" 2 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Meropenem" "10ug" 25 24 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Meropenem" 2 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 22 15 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 2 16 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5ug" 23 22 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5ug" 22 18 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Moxifloxacin" "30ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Moxifloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Moxifloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Moxifloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5ug" 22 21 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Moxifloxacin" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Moxifloxacin" 0.5 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 20 16 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Minocycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Minocycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Minocycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Minocycline" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30ug" 23 22 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 15 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 32 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Netilmicin" "10ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Netilmicin" 4 8 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Netilmicin" "10ug" 10 9 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Netilmicin" 4 8 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Netilmicin" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "10ug" 15 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "10ug" 2 8 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Nitrofurantoin" "100ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "100ug" 13 12 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Nitrofurantoin" "100ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Nitrofurantoin" "100ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Nitrofurantoin" "100ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Nitrofurantoin" "100ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Nitrofurantoin" "100ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Nitrofurantoin" "100ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Nitrofurantoin" 64 128 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 11 10 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 64 128 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Norfloxacin" "10ug" 17 16 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10ug" 12 11 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5ug" 21 20 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" 0.125 0.5 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Ofloxacin" 1 2 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5ug" 50 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" 0.125 8 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 22 18 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Oxacillin" 0.25 0.5 FALSE -"EUCAST 2011" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" 2 4 FALSE -"EUCAST 2011" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" 2 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" 0.064 2 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" 0.064 0.5 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "1ug" 26 25 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Benzylpenicillin" 0.125 0.25 FALSE -"EUCAST 2011" "DISK" "Streptococcus" 3 "Benzylpenicillin" "1ug" 18 11 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Benzylpenicillin" 0.25 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Benzylpenicillin" "1ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Benzylpenicillin" "1ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Benzylpenicillin" "1ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Benzylpenicillin" "1ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" "1ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Benzylpenicillin" "1ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Benzylpenicillin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Phenoxymethylpenicillin" "10" 15 14 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin" "30ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Piperacillin" 16 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "30ug" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "30ug" 8 32 FALSE -"EUCAST 2011" "MIC" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" 1 8 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" 1 4 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Rifampicin" "5ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Rifampicin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" 0.5 1 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Rifampicin" 0.25 0.5 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Rifampicin" "5ug" 25 21 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Rifampicin" 0.064 0.5 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Rifampicin" "5ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Rifampicin" "5ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Rifampicin" "5ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Rifampicin" "5ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5ug" 22 16 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Rifampicin" "5ug" 21 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Rifampicin" 0.064 1 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Roxithromycin" 1 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Roxithromycin" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" 4 16 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" 1 2 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" 1 2 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 16 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" 64 128 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 12 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 50 20 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" 0.32 2 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Trimethoprim/sulfamethoxazole" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 17 13 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" 2 8 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Trimethoprim/sulfamethoxazole" 1 4 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 12 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 8 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" 16 32 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 8 32 FALSE -"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30ug" 24 20 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30ug" 28 24 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" 0.5 2 FALSE -"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tetracycline" "30ug" 22 18 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tetracycline" "30ug" 23 19 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Tetracycline" 1 4 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Teicoplanin" "30ug" 16 15 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Teicoplanin" 4 8 FALSE -"EUCAST 2011" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Staphylococcus lugdunensis" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Teicoplanin" 2 4 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Tigecycline" "15ug" 18 14 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tigecycline" "15ug" 18 17 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Tigecycline" 0.5 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tigecycline" "15ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tigecycline" "15ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tigecycline" "15ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tigecycline" "15ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tigecycline" "15ug" 19 15 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Tigecycline" 0.25 1 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Tigecycline" "Generic rules" "15ug" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Tigecycline" "Generic rules" "15ug" 1 4 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ticarcillin" 16 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 23 21 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 8 32 FALSE -"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Telithromycin" 0.125 16 FALSE -"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Telithromycin" 0.25 1 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim" "5ug" 50 20 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Trimethoprim" 0.32 2 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim" "5ug" 17 13 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Trimethoprim" 2 8 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 2 8 FALSE -"EUCAST 2011" "DISK" "Acinetobacter" 3 "Tobramycin" "10ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Acinetobacter" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Tobramycin" "10ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Tobramycin" 4 8 FALSE -"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tobramycin" "10ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Tobramycin" 1 2 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 11 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 2 8 FALSE -"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30ug" 19 18 FALSE -"EUCAST 2011" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" 16 32 FALSE -"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6ug" 18 14 FALSE -"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6ug" 8 32 FALSE -"EUCAST 2011" "DISK" "Enterococcus" 3 "Vancomycin" "5ug" 12 11 FALSE -"EUCAST 2011" "MIC" "Enterococcus" 3 "Vancomycin" 4 8 FALSE -"EUCAST 2011" "MIC" "Staphylococcus" 3 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus" 3 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5ug" 15 14 FALSE -"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" 2 4 FALSE -"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Vancomycin" 2 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Ceftobiprole" "Staphs" 2 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 4 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 17 17 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 8 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 28 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 0.5 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefixime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenzae" "5" 25 25 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" "5" 21 18 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Chloramphenicol" "H. influenzae" 2 2 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenzae" "30" 28 28 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" "30" 30 30 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. catarrhalis" 2 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 21 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 21 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 1 FALSE +"EUCAST 2016" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 26 FALSE +"EUCAST 2016" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ciprofloxacin" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.03 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 25 22 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2016" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5" 50 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 19 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Clarithromycin" "H. influenzae" 1 32 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 4 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefpodoxime" "H. influenzae" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenzae" "10" 26 23 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ceftaroline" "H. influenzae" 0.032 0.03 FALSE +"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 23 20 FALSE +"EUCAST 2016" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ceftriaxone" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenzae" "30" 30 30 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" "30" 24 21 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ceftibuten" "H. influenzae" 1 1 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenzae" "30" 25 25 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefotaxime" "H. influenzae" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" "5" 20 17 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2016" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2016" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2016" "MIC" "IV" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Oral" "Haemophilus" 3 "Cefuroxime" "H. influenzae" 0.125 1 FALSE +"EUCAST 2016" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 26 25 FALSE +"EUCAST 2016" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenzae" "30" 50 26 FALSE +"EUCAST 2016" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 21 18 FALSE +"EUCAST 2016" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" "30" 50 21 FALSE +"EUCAST 2016" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 4 8 FALSE +"EUCAST 2016" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. catarrhalis" 0.125 4 FALSE +"EUCAST 2016" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 23 23 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ceftolozane/tazobactam" "Enterobacteriaceae" 1 1 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ceftolozane/tazobactam" "Pseudo" 4 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Ceftolozane/tazobactam" "PK/PD" 4 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Dalbavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Dalbavancin" "Strep A, B, C, G" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Dalbavancin" "Viridans strept" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 21 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 23 20 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Doripenem" "H. influenzae" 1 1 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" "10" 30 30 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. catarrhalis" 1 1 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 22 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 1 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Doxycycline" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2016" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 24 FALSE +"EUCAST 2016" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 8 FALSE +"EUCAST 2016" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 20 FALSE +"EUCAST 2016" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 4 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Erythromycin" "H. influenzae" 0.5 16 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenzae" "15" 50 10 FALSE +"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 25 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 19 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 22 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ertapenem" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 24 21 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Cefepime" "H. influenzae" 0.25 0.25 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenzae" "30" 27 27 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" "30" 20 20 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. catarrhalis" 4 4 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 19 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 8 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2016" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2016" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2016" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2016" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2016" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2016" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 35 35 FALSE +"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 23 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 15 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 4 FALSE +"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 4 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 17 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 18 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Imipenem" "H. influenzae" 2 2 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" "10" 29 29 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 17 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 8 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2016" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Kanamycin" "Staphs" "30" 18 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Kanamycin" "Staphs" 8 8 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 19 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 19 19 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 19 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 21 18 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" "5" 15 15 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Levofloxacin" "H. influenzae" 1 1 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenzae" "5" 26 26 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" "5" 26 26 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. catarrhalis" 1 1 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 20 17 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 2 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5" 22 19 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 18 15 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 17 17 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 1 2 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2016" "MIC" "Non-meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 2 2 FALSE +"EUCAST 2016" "MIC" "Meningitis" "Haemophilus" 3 "Meropenem" "H. influenzae" 0.25 1 FALSE +"EUCAST 2016" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenzae" "10" 20 20 FALSE +"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 26 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.25 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" "10" 33 33 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. catarrhalis" 2 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 1 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Moxifloxacin" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenzae" "5" 25 25 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" "5" 23 23 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5" 24 21 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 18 15 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 22 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2016" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Minocycline" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenzae" "30" 24 21 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" "30" 25 22 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 20 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 21 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200" 30 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 256 FALSE +"EUCAST 2016" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenzae" "30" 23 7 FALSE +"EUCAST 2016" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. catarrhalis" "30" 23 7 FALSE +"EUCAST 2016" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 12 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 16 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 12 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 4 FALSE +"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2016" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2016" "DISK" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2016" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2016" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2016" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2016" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2016" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2016" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 12 7 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Norfloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ofloxacin" "H. influenzae" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenzae" "5" 23 23 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" "5" 25 25 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. catarrhalis" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5" 50 13 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Oritavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Oritavancin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Oritavancin" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2016" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 7 FALSE +"EUCAST 2016" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenzae" "1 unit" 12 7 FALSE +"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.25 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 17 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2016" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2016" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2016" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2016" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 17 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 18 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 16 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2016" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2016" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2016" "MIC" "Prophylaxis" "Haemophilus" 3 "Rifampicin" "H. influenzae" 1 1 FALSE +"EUCAST 2016" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenzae" "5" 18 18 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 17 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 0.5 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Roxithromycin" "H. influenzae" 1 16 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Ampicillin/sulbactam" "H. influenzae" 1 1 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. catarrhalis" 1 1 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 512 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 14 14 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 512 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Trimethoprim/sulfamethoxazole" "H. influenzae" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenzae" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2016" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2016" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.06 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. catarrhalis" 0.5 1 FALSE +"EUCAST 2016" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2016" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2016" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2016" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 4 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 23 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 18 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 16 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2016" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 30 FALSE +"EUCAST 2016" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2016" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Tetracycline" "H. influenzae" 1 2 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenzae" "30" 25 22 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" "30" 28 25 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. catarrhalis" 1 2 FALSE +"EUCAST 2016" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2016" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2016" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 22 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 17 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 15 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 15 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 23 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 18 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 16 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2016" "MIC" "Haemophilus" 3 "Telithromycin" "H. influenzae" 0.125 8 FALSE +"EUCAST 2016" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenzae" "15" 50 12 FALSE +"EUCAST 2016" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" "15" 23 20 FALSE +"EUCAST 2016" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. catarrhalis" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 20 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2016" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 15 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 4 TRUE +"EUCAST 2016" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2016" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2016" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 14 TRUE +"EUCAST 2016" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 4 TRUE +"EUCAST 2016" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2016" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2016" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 16 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 4 FALSE +"EUCAST 2016" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2016" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus" 3 "Tedizolid" "Staphs" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Tedizolid" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Tedizolid" "Viridans strept" 0.25 0.25 FALSE +"EUCAST 2016" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 17 FALSE +"EUCAST 2016" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2016" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 18 FALSE +"EUCAST 2016" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 16 FALSE +"EUCAST 2016" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2016" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2016" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2016" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2016" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2016" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2016" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2016" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2016" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2016" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2016" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2016" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2016" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2016" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2016" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2016" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2016" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2015" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2015" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2015" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2015" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2015" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" "2-1" 15 15 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" 2 2 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" "2-1" 19 19 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" 1 1 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 18 16 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 18 15 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 15 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 16 FALSE +"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 16 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 19 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 16 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" "2" 16 16 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" 1 1 FALSE +"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 16 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" "2" 17 17 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2015" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" "H. influenaza" 2 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2015" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2015" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 24 21 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 16 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 16 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Azithromycin" "H. influenaza" 0.125 4 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftobiprole" "PK/PD" 4 4 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 16 16 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 8 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 28 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 0.5 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" "5" 25 25 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" "5" 21 18 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" "30" 28 28 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" 2 2 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" "30" 30 30 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" 2 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 21 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 21 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 1 FALSE +"EUCAST 2015" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 26 FALSE +"EUCAST 2015" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" "5" 26 26 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" "5" 23 23 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.03 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 25 22 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2015" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5" 50 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 2 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 19 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" "H. influenaza" 1 32 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 4 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" "10" 26 23 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "H. influenaza" 0.032 0.03 FALSE +"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 23 20 FALSE +"EUCAST 2015" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" "30" 30 30 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" "30" 24 21 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" "30" 25 25 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" 1 1 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" "5" 26 26 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" "5" 20 17 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2015" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2015" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2015" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 26 25 FALSE +"EUCAST 2015" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 50 26 FALSE +"EUCAST 2015" "MIC" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 0.125 1 FALSE +"EUCAST 2015" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 21 18 FALSE +"EUCAST 2015" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 50 21 FALSE +"EUCAST 2015" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 4 8 FALSE +"EUCAST 2015" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 0.125 4 FALSE +"EUCAST 2015" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 21 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 23 20 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" 1 1 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" "10" 30 30 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" 1 1 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 22 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 1 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 2 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Doxycycline" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2015" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 24 FALSE +"EUCAST 2015" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 8 FALSE +"EUCAST 2015" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 20 FALSE +"EUCAST 2015" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 4 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" "15" 50 10 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" 0.5 16 FALSE +"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 25 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" "15" 23 20 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 19 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 22 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" "10" 29 29 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 24 21 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" "30" 27 27 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" 0.25 0.25 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" "30" 20 20 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" 4 4 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 19 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 8 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2015" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2015" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2015" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2015" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2015" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2015" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 35 35 FALSE +"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 23 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 15 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 4 FALSE +"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 4 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 17 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 18 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 8 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" 2 2 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" "10" 29 29 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" 2 2 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 17 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 8 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2015" "MIC" "Candida albicans" 2 "Itraconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Itraconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 19 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 19 19 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 19 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 21 18 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2015" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" "5" 26 26 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" 1 1 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" "5" 23 23 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" 1 1 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 20 17 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 2 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5" 22 19 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 18 15 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 17 17 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 2 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 1 2 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2015" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2015" "MIC" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 2 2 FALSE +"EUCAST 2015" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 0.25 1 FALSE +"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 26 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.25 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" "10" 33 33 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" 2 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 1 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" "5" 25 25 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" "5" 23 23 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5" 24 21 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 18 15 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 22 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2015" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" "30" 24 21 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" "30" 25 22 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 20 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 21 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200" 30 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 256 FALSE +"EUCAST 2015" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenaza" "30" 23 7 FALSE +"EUCAST 2015" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. cattharalis" "30" 23 7 FALSE +"EUCAST 2015" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 12 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 16 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 12 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 4 FALSE +"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2015" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2015" "DISK" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2015" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2015" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2015" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2015" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2015" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2015" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 12 7 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Norfloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" "5" 23 23 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" "5" 25 25 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5" 50 13 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 7 FALSE +"EUCAST 2015" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenaza" "1 unit" 12 7 FALSE +"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.25 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 17 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2015" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2015" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2015" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2015" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 17 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 18 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 16 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2015" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2015" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2015" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" "5" 18 18 FALSE +"EUCAST 2015" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" 1 1 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 17 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 0.5 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" "H. influenaza" 1 16 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" "H. influenaza" 1 1 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. cattharalis" 1 1 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2015" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.06 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2015" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2015" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2015" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2015" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 4 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 23 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 18 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 16 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2015" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 30 FALSE +"EUCAST 2015" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2015" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" "30" 25 22 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" 1 2 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" "30" 28 25 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" 1 2 FALSE +"EUCAST 2015" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2015" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2015" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 22 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 17 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 15 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 15 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 23 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 18 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 16 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2015" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" "15" 50 12 FALSE +"EUCAST 2015" "MIC" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" 0.125 8 FALSE +"EUCAST 2015" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" "15" 23 20 FALSE +"EUCAST 2015" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 20 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2015" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 15 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 4 TRUE +"EUCAST 2015" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2015" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2015" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 14 TRUE +"EUCAST 2015" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 4 TRUE +"EUCAST 2015" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2015" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2015" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 16 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 4 FALSE +"EUCAST 2015" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2015" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 4 FALSE +"EUCAST 2015" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 17 FALSE +"EUCAST 2015" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2015" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 18 FALSE +"EUCAST 2015" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 16 FALSE +"EUCAST 2015" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2015" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2015" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2015" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2015" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2015" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2015" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2015" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2015" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2015" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2015" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2015" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2015" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2015" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2015" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2015" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2015" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Aspergillus fumigatus" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2014" "MIC" "Aspergillus niger" 2 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2014" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2014" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2014" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2014" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 19 19 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20-10" 16 16 TRUE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" "2-1" 15 15 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H. influenaza" 2 2 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" "2-1" 19 19 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M. cattharalis" 1 1 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" "2-1" 15 15 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "PK/PD" 2 8 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30" 16 13 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." "30" 18 15 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetobacter spp." 8 16 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Amikacin" "Pseudo" "30" 18 15 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Amikacin" "Pseudo" 8 16 FALSE +"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30" 18 16 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30" 22 19 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Amikacin" "PK/PD" 8 16 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10" 14 14 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2" 10 8 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" "2" 16 16 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ampicillin" "H. influenaza" 1 1 FALSE +"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" "2" 16 16 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" "2" 17 17 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2014" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2" 18 18 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2" 21 15 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ampicillin" "PK/PD" 2 8 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H. pylori" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" "H. influenaza" 2 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N. meningitidis" 0.125 1 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Amoxicillin" "PK/PD" 2 8 FALSE +"EUCAST 2014" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2014" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2014" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Anidulafungin" "Candida" 0.002 4 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2014" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30" 24 21 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseudo" "30" 50 16 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseudo" 1 16 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Aztreonam" "PK/PD" 4 8 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Azithromycin" "H. influenaza" 0.125 4 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N. gonorrhoeae" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Azithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseudo" "10" 16 16 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseudo" 8 8 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ceftazidime" "PK/PD" 4 8 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30" 50 28 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 0.5 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5" 17 17 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" "5" 25 25 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefixime" "H. influenaza" 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" "5" 21 18 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30" 12 12 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30" 17 17 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" "30" 28 28 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" "H. influenaza" 2 2 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" "30" 30 30 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M. cattharalis" 2 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N. meningitidis" 2 4 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30" 18 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" "30" 19 19 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strep A, B, C, G" 8 8 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30" 21 21 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." "5" 21 21 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetobacter spp." 1 1 FALSE +"EUCAST 2014" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" "5" 26 26 FALSE +"EUCAST 2014" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter jejuni and coli" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Ciprofloxacin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterococcus" 3 "Ciprofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" "5" 26 26 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" "5" 23 23 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N. gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N. meningitidis" 0.032 0.06 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" "5" 25 22 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseudo" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2014" "MIC" "Salmonella" 3 "Ciprofloxacin" "Enterobacteriaceae" 0.064 0.06 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5" 50 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 2 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ciprofloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." "2" 20 20 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Clindamycin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2" 22 19 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" "2" 17 17 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Clindamycin" "Strep A, B, C, G" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2" 19 19 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2" 19 19 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H. pylori" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" "H. influenaza" 1 32 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Clarithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Colistin" "Acinetobacter spp." 2 2 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Colistin" "Pseudo" 4 4 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10" 21 21 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" "10" 26 23 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" "H. influenaza" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5" 23 23 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "H. influenaza" 0.032 0.03 FALSE +"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5" 20 20 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ceftaroline" "PK/PD" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30" 23 20 FALSE +"EUCAST 2014" "MIC" "Oral" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" "30" 30 30 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" "H. influenaza" 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" "30" 24 21 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30" 27 27 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ceftriaxone" "PK/PD" 1 2 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30" 23 23 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" "30" 25 25 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" "H. influenaza" 1 1 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" "5" 26 26 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" "H. influenaza" 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" "5" 20 17 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N. gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N. meningitidis" 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" "5" 26 26 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella multocida" 0.032 0.03 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5" 23 23 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefotaxime" "PK/PD" 1 2 FALSE +"EUCAST 2014" "DISK" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30" 18 18 TRUE +"EUCAST 2014" "MIC" "IV" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2014" "DISK" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 26 25 FALSE +"EUCAST 2014" "DISK" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" "30" 50 26 FALSE +"EUCAST 2014" "MIC" "IV" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Oral" "Haemophilus influenzae" 2 "Cefuroxime" "H. influenaza" 0.125 1 FALSE +"EUCAST 2014" "DISK" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 21 18 FALSE +"EUCAST 2014" "DISK" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" "30" 50 21 FALSE +"EUCAST 2014" "MIC" "IV" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 4 8 FALSE +"EUCAST 2014" "MIC" "Oral" "Moraxella catarrhalis" 2 "Cefuroxime" "M. cattharalis" 0.125 4 FALSE +"EUCAST 2014" "MIC" "IV" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30" 26 26 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefuroxime" "PK/PD" 4 8 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefazolin" "PK/PD" 1 2 FALSE +"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C. difficile" 4 1024 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Daptomycin" "Strep A, B, C, G" 1 1 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10" 24 21 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." "10" 23 20 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Doripenem" "H. influenaza" 1 1 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" "10" 30 30 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M. cattharalis" 1 1 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Doripenem" "Pseudo" "10" 25 22 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Doripenem" "Pseudo" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 1 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Doripenem" "PK/PD" 1 2 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Doxycycline" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella multocida" 1 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Doxycycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2014" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" "15" 24 24 FALSE +"EUCAST 2014" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter jejuni and coli" 8 8 FALSE +"EUCAST 2014" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" "15" 20 20 FALSE +"EUCAST 2014" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter jejuni and coli" 4 4 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" "15" 50 10 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Erythromycin" "H. influenaza" 0.5 16 FALSE +"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" "15" 25 25 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" "15" 23 20 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15" 21 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" "15" 21 18 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Erythromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15" 22 19 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10" 25 22 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ertapenem" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" "10" 29 29 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ertapenem" "PK/PD" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30" 24 21 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" "30" 27 27 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Cefepime" "H. influenaza" 0.25 0.25 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" "30" 20 20 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M. cattharalis" 4 4 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Cefepime" "Pseudo" "30" 19 19 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Cefepime" "Pseudo" 8 8 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30" 25 25 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Cefepime" "PK/PD" 4 8 FALSE +"EUCAST 2014" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2014" "MIC" "Candida albicans" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 TRUE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2014" "DISK" "Screen" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30" 19 19 FALSE +"EUCAST 2014" "DISK" "Screen" "Staphylococcus" 3 "Cefoxitin" "Staphs" "30" 22 22 FALSE +"EUCAST 2014" "DISK" "Screen" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30" 25 25 FALSE +"EUCAST 2014" "DISK" "Screen" "Staphylococcus pseudintermedius" 2 "Cefoxitin" "Staphs" "30" 35 35 FALSE +"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C. difficile" 2 1024 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10" 24 24 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin-high" "Viridans strept" 128 80 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." "10" 23 23 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Gentamicin" "Corynebacterium spp." 1 1 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseudo" "10" 15 15 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseudo" 4 4 FALSE +"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Gentamicin" "Viridans strept" 128 80 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Gentamicin" "PK/PD" 2 4 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." "10" 23 17 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10" 21 18 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 8 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Imipenem" "H. influenaza" 2 2 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" "10" 29 29 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M. cattharalis" 2 2 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Imipenem" "Pseudo" "10" 20 17 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Imipenem" "Pseudo" 4 8 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Imipenem" "PK/PD" 2 8 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30" 14 14 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." "10" 25 25 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Linezolid" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10" 19 19 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10" 19 19 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" "10" 19 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Linezolid" "Strep A, B, C, G" 2 4 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10" 22 19 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Linezolid" "PK/PD" 2 4 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." "5" 21 18 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetobacter spp." 1 2 FALSE +"EUCAST 2014" "MIC" "UTI" "Enterococcus" 3 "Levofloxacin" "Enterococcus" 4 4 TRUE +"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H. pylori" 1 1 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" "5" 26 26 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" "H. influenaza" 1 1 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" "5" 23 23 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M. cattharalis" 1 1 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseudo" "5" 20 17 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseudo" 1 2 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" "5" 27 27 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella multocida" 0.064 0.06 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5" 22 19 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" "5" 18 15 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Levofloxacin" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5" 17 17 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 2 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Levofloxacin" "PK/PD" 1 2 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" "10" 15 15 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10" 22 16 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." "10" 21 15 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetobacter spp." 2 8 FALSE +"EUCAST 2014" "DISK" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" "10" 20 20 FALSE +"EUCAST 2014" "MIC" "Non-meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 2 2 FALSE +"EUCAST 2014" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" "H. influenaza" 0.25 1 FALSE +"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" "10" 26 26 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria monocytogenes" 0.25 0.25 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" "10" 33 33 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M. cattharalis" 2 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Meropenem" "Pseudo" "10" 24 18 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Meropenem" "Pseudo" 2 8 FALSE +"EUCAST 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 1 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Meropenem" "PK/PD" 2 8 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5" 20 17 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C. difficile" 4 1024 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." "5" 25 25 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Moxifloxacin" "Corynebacterium spp." 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" "5" 25 25 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" "5" 23 23 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5" 24 21 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" "5" 18 15 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5" 22 22 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Moxifloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Candida" 3 "Micafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2014" "MIC" "Candida albicans" 2 "Micafungin" "Candida" 0.016 0.015 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Micafungin" "Candida" 0.002 2 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" "30" 24 21 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Minocycline" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" "30" 25 22 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30" 23 20 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Minocycline" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30" 24 21 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C. difficile" 2 2 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H. pylori" 8 8 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200" 30 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 256 FALSE +"EUCAST 2014" "DISK" "Screen" "Haemophilus influenzae" 2 "Nalidixic acid" "H. influenaza" "30" 23 7 FALSE +"EUCAST 2014" "DISK" "Screen" "Moraxella catarrhalis" 2 "Nalidixic acid" "M. cattharalis" "30" 23 7 FALSE +"EUCAST 2014" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella multocida" "30" 23 7 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10" 15 12 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." "10" 16 16 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseudo" "10" 12 12 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseudo" 4 4 FALSE +"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10" 18 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10" 22 22 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Netilmicin" "PK/PD" 2 4 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100" 11 11 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2014" "DISK" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100" 15 15 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2014" "DISK" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" "100" 13 13 TRUE +"EUCAST 2014" "MIC" "UTI" "Staphylococcus" 3 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2014" "DISK" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" "100" 15 15 TRUE +"EUCAST 2014" "MIC" "UTI" "Streptococcus group B" 2 "Nitrofurantoin" "Strep A, B, C, G" 64 64 TRUE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10" 22 19 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Screen" "Enterococcus" 3 "Norfloxacin" "Enterococcus" "10" 12 12 FALSE +"EUCAST 2014" "DISK" "Screen" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10" 17 7 FALSE +"EUCAST 2014" "DISK" "Screen" "Streptococcus" 3 "Norfloxacin" "Strep A, B, C, G" "10" 12 7 FALSE +"EUCAST 2014" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10" 12 7 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Norfloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5" 22 19 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" "5" 23 23 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" "H. influenaza" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" "5" 25 25 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M. cattharalis" 0.5 0.5 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N. gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5" 20 20 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5" 50 13 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ofloxacin" "PK/PD" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Screen" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1" 20 7 FALSE +"EUCAST 2014" "DISK" "Screen" "Salmonella" 3 "Pefloxacin" "Enterobacteriaceae" "5" 24 24 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." "1 unit" 29 29 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Benzylpenicillin" "Corynebacterium spp." 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "Screen" "Haemophilus influenzae" 2 "Benzylpenicillin" "H. influenaza" "1 unit" 12 7 FALSE +"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" "1 unit" 13 13 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria monocytogenes" 1 1 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N. gonorrhoeae" 0.064 1 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N. meningitidis" 0.064 0.25 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" "1 unit" 17 17 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella multocida" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" "1 unit" 26 26 FALSE +"EUCAST 2014" "MIC" "Staphylococcus lugdunensis" 2 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" "1 unit" 18 18 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strep A, B, C, G" 0.25 0.25 FALSE +"EUCAST 2014" "MIC" "Non-meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2014" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 12 FALSE +"EUCAST 2014" "DISK" "Screen" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1 unit" 18 7 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Benzylpenicillin" "PK/PD" 0.25 2 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30" 20 17 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseudo" "30" 18 18 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseudo" 16 16 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Piperacillin" "PK/PD" 4 16 FALSE +"EUCAST 2014" "MIC" "Aspergillus fumigatus" 2 "Posaconazole" "Aspergillus" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Aspergillus terreus" 2 "Posaconazole" "Aspergillus" 0.125 0.25 FALSE +"EUCAST 2014" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" "15" 22 20 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15" 21 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C. difficile" 0.004 1024 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." "5" 30 25 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Rifampicin" "Corynebacterium spp." 0.064 0.5 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H. pylori" 1 1 FALSE +"EUCAST 2014" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" "5" 18 18 FALSE +"EUCAST 2014" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H. influenaza" 1 1 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N. meningitidis" 0.25 0.25 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5" 26 23 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" "5" 21 15 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Rifampicin" "Strep A, B, C, G" 0.064 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5" 22 17 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 0.5 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" "H. influenaza" 1 16 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Roxithromycin" "Strep A, B, C, G" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10-10" 14 14 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" "H. influenaza" 1 1 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M. cattharalis" 1 1 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "PK/PD" 2 8 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N. gonorrhoeae" 64 64 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetobacter spp." 2 4 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H. influenaza" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2014" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria monocytogenes" 0.064 0.06 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M. cattharalis" 0.5 1 FALSE +"EUCAST 2014" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2014" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella multocida" 0.25 0.25 FALSE +"EUCAST 2014" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2014" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "Stenotrophomonas maltophilia" 4 4 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75-10" 23 23 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" "75-10" 18 18 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseudo" 16 16 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "PK/PD" 8 16 FALSE +"EUCAST 2014" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" "30" 30 30 FALSE +"EUCAST 2014" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter jejuni and coli" 2 2 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." "30" 24 24 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Tetracycline" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2014" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H. pylori" 1 1 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" "30" 25 22 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Tetracycline" "H. influenaza" 1 2 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" "30" 28 25 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M. cattharalis" 1 2 FALSE +"EUCAST 2014" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N. gonorrhoeae" 0.5 1 FALSE +"EUCAST 2014" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N. meningitidis" 1 2 FALSE +"EUCAST 2014" "DISK" "Screen" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella multocida" "30" 24 24 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30" 22 19 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" "30" 23 20 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Tetracycline" "Strep A, B, C, G" 1 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30" 25 22 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30" 16 16 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" "30" 15 15 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Teicoplanin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30" 17 17 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30" 16 16 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15" 18 15 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C. difficile" 0.25 1024 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15" 18 15 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15" 18 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" "15" 19 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Tigecycline" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Tigecycline" "PK/PD" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75" 23 23 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseudo" "75" 18 18 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseudo" 16 16 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Ticarcillin" "PK/PD" 8 16 FALSE +"EUCAST 2014" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" "15" 50 12 FALSE +"EUCAST 2014" "MIC" "Haemophilus influenzae" 2 "Telithromycin" "H. influenaza" 0.125 8 FALSE +"EUCAST 2014" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" "15" 23 20 FALSE +"EUCAST 2014" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M. cattharalis" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" "15" 20 17 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Telithromycin" "Strep A, B, C, G" 0.25 0.5 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15" 23 20 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 1 1 FALSE +"EUCAST 2014" "DISK" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5" 18 15 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 4 TRUE +"EUCAST 2014" "DISK" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5" 50 21 TRUE +"EUCAST 2014" "MIC" "UTI" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2014" "DISK" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5" 17 14 TRUE +"EUCAST 2014" "MIC" "UTI" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 4 TRUE +"EUCAST 2014" "MIC" "UTI" "Streptococcus group B" 2 "Trimethoprim" "Strep A, B, C, G" 2 2 TRUE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10" 17 14 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2014" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." "10" 17 17 FALSE +"EUCAST 2014" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetobacter spp." 4 4 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseudo" "10" 16 16 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseudo" 4 4 FALSE +"EUCAST 2014" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10" 18 18 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2014" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10" 22 22 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Tobramycin" "PK/PD" 2 4 FALSE +"EUCAST 2014" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30-6" 20 17 FALSE +"EUCAST 2014" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2014" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" "30-6" 18 18 FALSE +"EUCAST 2014" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseudo" 16 16 FALSE +"EUCAST 2014" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "PK/PD" 4 16 FALSE +"EUCAST 2014" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C. difficile" 2 2 FALSE +"EUCAST 2014" "DISK" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." "5" 17 17 FALSE +"EUCAST 2014" "MIC" "Corynebacterium" 3 "Vancomycin" "Corynebacterium spp." 2 2 FALSE +"EUCAST 2014" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5" 12 12 FALSE +"EUCAST 2014" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2014" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2014" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2014" "DISK" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" "5" 13 13 FALSE +"EUCAST 2014" "MIC" "Streptococcus" 3 "Vancomycin" "Strep A, B, C, G" 2 2 FALSE +"EUCAST 2014" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5" 16 16 FALSE +"EUCAST 2014" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2014" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5" 15 15 FALSE +"EUCAST 2014" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2014" "MIC" "Aspergillus fumigatus" 2 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2014" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2014" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Aspergillus" 3 "Amphotericin B" "Aspergillus" 1 2 FALSE +"EUCAST 2013" "MIC" "Candida" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2013" "MIC" "Candida albicans" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2013" "MIC" "Candida krusei" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2013" "MIC" "Pichia" 3 "Amphotericin B" "Candida" 1 1 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" "20/10ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" "Enterococcus" 4 8 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H.influenzae" "2/1ug" 15 15 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "H.influenzae" 2 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M.catarrhalis" "2/1ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "M.catarrhalis" 1 1 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella" "2/1ug" 15 15 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin/clavulanic acid" "Pasteurella" 1 1 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" 2 8 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" "30ug" 16 13 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Amikacin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Amikacin" "Acinetob" "30ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Amikacin" "Acinetob" 8 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Amikacin" "Pseud" "30ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Amikacin" "Pseud" 8 16 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" "30ug" 18 16 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" "30ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "Staphs" 8 16 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Amikacin" 8 16 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" "10ug" 14 14 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ampicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Ampicillin" "Enterococcus" "2ug" 10 8 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Ampicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "H.influenzae" "2ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ampicillin" "H.influenzae" 1 1 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "Listeria" "2ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Ampicillin" "Listeria" 1 1 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ampicillin" "N.meningitidis" 0.125 1 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella" "2ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Ampicillin" "Pasteurella" 1 1 FALSE +"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "Staphs" "2ug" 15 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" "Pneumo" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" "2ug" 21 15 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ampicillin" 2 8 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Amoxicillin" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Amoxicillin" "Enterococcus" 4 8 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Amoxicillin" "H.pylori" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" "H.influenzae" 2 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" "N.meningitidis" 0.125 1 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Amoxicillin" "Pasteurella" 1 1 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" "Viridans strept" 0.5 2 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Amoxicillin" 2 8 FALSE +"EUCAST 2013" "MIC" "Candida" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2013" "MIC" "Candida albicans" 2 "Anidulafungin" "Candida" 0.032 0.03 FALSE +"EUCAST 2013" "MIC" "Candida krusei" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2013" "MIC" "Pichia" 3 "Anidulafungin" "Candida" 0.064 0.06 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" "30ug" 24 21 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Aztreonam" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Aztreonam" "Pseud" "30ug" 50 16 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Aztreonam" "Pseud" 1 16 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Aztreonam" 4 8 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Azithromycin" "H.influenzae" 0.125 4 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" "N.gonorrhoeae" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Azithromycin" "Staphs" 1 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Azithromycin" "Strept A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" "10ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftazidime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ceftazidime" "Pseud" "10ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ceftazidime" "Pseud" 8 8 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftazidime" 4 8 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefaclor" "H.influenzae" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" "M.catarrhalis" 0.125 0.125 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" "30ug" 50 28 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" "Pneumo" 0.032 0.5 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" "5ug" 17 17 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefixime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefixime" "H.influenzae" "5ug" 25 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefixime" "H.influenzae" 0.125 0.125 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefixime" "M.catarrhalis" "5ug" 21 18 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefixime" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" "N.gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" "30ug" 12 12 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefadroxil" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" "30ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Chloramphenicol" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "H.influenzae" "30ug" 28 28 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" "H.influenzae" 2 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "M.catarrhalis" "30ug" 30 30 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" "M.catarrhalis" 2 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" "N.meningitidis" 2 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Chloramphenicol" "Staphs" "30ug" 18 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Chloramphenicol" "Staphs" 8 8 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Chloramphenicol" "Strept A,B,C,G" "30ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Chloramphenicol" "Strept A,B,C,G" 8 8 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" "30ug" 21 21 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" "Pneumo" 8 8 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" "5ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ciprofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "Acinetob" "5ug" 21 21 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Ciprofloxacin" "Acinetob" 1 1 FALSE +"EUCAST 2013" "DISK" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter" "5ug" 26 26 FALSE +"EUCAST 2013" "MIC" "Campylobacter" 3 "Ciprofloxacin" "Campylobacter" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "H.influenzae" "5ug" 26 26 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" "H.influenzae" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M.catarrhalis" "5ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" "M.catarrhalis" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" "N.gonorrhoeae" 0.032 0.06 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" "N.meningitidis" 0.032 0.06 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "Pseud" "5ug" 25 22 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ciprofloxacin" "Pseud" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella" "5ug" 27 27 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Ciprofloxacin" "Pasteurella" 0.064 0.06 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" "5ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Ciprofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" "5ug" 50 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "Pneumo" 0.125 2 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ciprofloxacin" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Clindamycin" "Staphs" "2ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Clindamycin" "Staphs" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Clindamycin" "Strept A,B,C,G" "2ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Clindamycin" "Strept A,B,C,G" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" "2ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" "2ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Clarithromycin" "H.pylori" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" "H.influenzae" 1 32 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Clarithromycin" "Staphs" 1 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Clarithromycin" "Strept A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Colistin" "Enterobacteriaceae" 2 2 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Colistin" "Acinetob" 2 2 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Colistin" "Pseud" 4 4 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" "10ug" 21 21 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefpodoxime" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "H.influenzae" "10ug" 26 23 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" "H.influenzae" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" "5ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftaroline" "Enterobacteriaceae" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftaroline" "H.influenzae" 0.032 0.03 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" "5ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Ceftaroline" "Staphs" 1 1 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ceftaroline" "Pneumo" 0.25 0.25 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftaroline" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" "30ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ceftriaxone" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "H.influenzae" "30ug" 30 30 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" "H.influenzae" 0.125 0.125 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "M.catarrhalis" "30ug" 24 21 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" "N.gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" "N.meningitidis" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" "Pneumo" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" "30ug" 27 27 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ceftriaxone" 1 2 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" "30ug" 23 23 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Ceftibuten" "Enterobacteriaceae" 1 1 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "H.influenzae" "30ug" 25 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" "H.influenzae" 1 1 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" "5ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefotaxime" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "H.influenzae" "5ug" 26 26 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" "H.influenzae" 0.125 0.125 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "M.catarrhalis" "5ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" "N.gonorrhoeae" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" "N.meningitidis" 0.125 0.125 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella" "5ug" 26 26 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Cefotaxime" "Pasteurella" 0.032 0.03 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" "Pneumo" 0.5 2 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" "5ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefotaxime" 1 2 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime axetil" "Enterobacteriaceae" "30ug" 18 18 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime axetil" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "H.influenzae" "30ug" 50 26 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" "H.influenzae" 0.125 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "M.catarrhalis" "30ug" 50 21 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "M.catarrhalis" 0.125 4 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30ug" 18 18 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" "30ug" 18 18 TRUE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cefuroxime" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "H.influenzae" "30ug" 26 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "M.catarrhalis" "30ug" 21 18 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" "M.catarrhalis" 4 8 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Oral" "Streptococcus pneumoniae" 2 "Cefuroxime" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" "30ug" 26 26 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefuroxime" 4 8 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefazolin" 1 2 FALSE +"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Daptomycin" "C.difficile" 4 1024 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Daptomycin" "Staphs" 1 1 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Daptomycin" "Strept A,B,C,G" 1 1 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" "10ug" 24 18 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Doripenem" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Doripenem" "Acinetob" "10ug" 21 15 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Doripenem" "Acinetob" 1 4 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Doripenem" "H.influenzae" "10ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Doripenem" "H.influenzae" 1 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "M.catarrhalis" "10ug" 30 30 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Doripenem" "M.catarrhalis" 1 1 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Doripenem" "Pseud" "10ug" 25 19 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Doripenem" "Pseud" 1 4 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" "Pneumo" 1 1 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "Viridans strept" 1 1 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Doripenem" 1 4 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Doxycycline" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Doxycycline" "Pasteurella" 1 1 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Doxycycline" "Staphs" 1 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Doxycycline" "Strept A,B,C,G" 1 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" "Pneumo" 1 2 FALSE +"EUCAST 2013" "DISK" "Campylobacter coli" 2 "Erythromycin" "Campylobacter" "15ug" 24 24 FALSE +"EUCAST 2013" "MIC" "Campylobacter coli" 2 "Erythromycin" "Campylobacter" 8 8 FALSE +"EUCAST 2013" "DISK" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter" "15ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Campylobacter jejuni jejuni" 1 "Erythromycin" "Campylobacter" 4 4 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "H.influenzae" "15ug" 50 10 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Erythromycin" "H.influenzae" 0.5 16 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "Listeria" "15ug" 25 25 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Erythromycin" "Listeria" 1 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "M.catarrhalis" "15ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Erythromycin" "Staphs" "15ug" 21 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Erythromycin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Erythromycin" "Strept A,B,C,G" "15ug" 21 18 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Erythromycin" "Strept A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" "15ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" "10ug" 25 22 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ertapenem" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "H.influenzae" "10ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ertapenem" "H.influenzae" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "M.catarrhalis" "10ug" 29 29 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" "M.catarrhalis" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ertapenem" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" "30ug" 24 21 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefepime" "Enterobacteriaceae" 1 4 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Cefepime" "H.influenzae" "30ug" 27 27 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Cefepime" "H.influenzae" 0.25 0.25 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "M.catarrhalis" "30ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Cefepime" "M.catarrhalis" 4 4 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Cefepime" "Pseud" "30ug" 18 18 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Cefepime" "Pseud" 8 8 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" "Pneumo" 1 2 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" "30ug" 25 25 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "Viridans strept" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Cefepime" 4 8 FALSE +"EUCAST 2013" "MIC" "Candida" 3 "Fluconazole" "Candida" 2 4 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Fosfomycin" "Enterobacteriaceae" 32 32 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Fosfomycin" "Staphs" 32 32 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" "30ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Cefoxitin" "Enterobacteriaceae" 8 1024 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" "30ug" 22 22 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "Staphs" "30ug" 25 25 FALSE +"EUCAST 2013" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" "30ug" 22 22 FALSE +"EUCAST 2013" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" "Staphs" 4 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Cefoxitin" "Staphs" "30ug" 22 22 FALSE +"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Fusidic acid" "C.difficile" 2 1024 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Fusidic acid" "Staphs" "10ug" 24 24 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Fusidic acid" "Staphs" 1 1 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Gentamicin-high" "Enterococcus" 128 80 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" "10ug" 17 14 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Gentamicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Gentamicin" "Acinetob" "10ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Gentamicin" "Acinetob" 4 4 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Gentamicin" "Enterococcus" "30ug" 8 8 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Gentamicin" "Enterococcus" 128 80 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Gentamicin" "Pseud" "10ug" 15 15 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Gentamicin" "Pseud" 4 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" "10ug" 18 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" "10ug" 22 22 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "Staphs" 1 1 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Gentamicin" 2 4 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" "10ug" 22 16 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Imipenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Imipenem" "Acinetob" "10ug" 23 17 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Imipenem" "Acinetob" 2 8 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Imipenem" "Enterococcus" "10ug" 21 18 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Imipenem" "Enterococcus" 4 8 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Imipenem" "H.influenzae" "10ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Imipenem" "H.influenzae" 2 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "M.catarrhalis" "10ug" 29 29 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Imipenem" "M.catarrhalis" 2 2 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Imipenem" "Pseud" "10ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Imipenem" "Pseud" 4 8 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" "Pneumo" 2 2 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "Viridans strept" 2 2 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Imipenem" 2 8 FALSE +"EUCAST 2013" "MIC" "Aspergillus" 3 "Itraconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" "30ug" 14 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Cephalexin" "Enterobacteriaceae" 16 16 TRUE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Linezolid" "Enterococcus" "10ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Linezolid" "Enterococcus" 4 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Linezolid" "Staphs" "10ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Linezolid" "Staphs" 4 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Linezolid" "Strept A,B,C,G" "10ug" 19 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Linezolid" "Strept A,B,C,G" 2 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" "10ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" "Pneumo" 2 4 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Linezolid" 2 4 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" "5ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Levofloxacin" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Levofloxacin" "Acinetob" "5ug" 21 18 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Levofloxacin" "Acinetob" 1 2 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Levofloxacin" "H.pylori" 1 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "H.influenzae" "5ug" 26 26 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" "H.influenzae" 1 1 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "M.catarrhalis" "5ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" "M.catarrhalis" 1 1 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Levofloxacin" "Pseud" "5ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Levofloxacin" "Pseud" 1 2 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella" "5ug" 27 27 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Levofloxacin" "Pasteurella" 0.064 0.06 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Levofloxacin" "Staphs" "5ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Levofloxacin" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Levofloxacin" "Strept A,B,C,G" "5ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Levofloxacin" "Strept A,B,C,G" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" "5ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" "Pneumo" 2 2 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Levofloxacin" 1 2 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" "10ug" 15 15 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Escherichia coli" 2 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Klebsiella pneumoniae pneumoniae" 1 "Mecillinam" "Enterobacteriaceae" "10ug" 15 15 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Klebsiella pneumoniae pneumoniae" 1 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" "10ug" 15 15 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Proteus mirabilis" 2 "Mecillinam" "Enterobacteriaceae" 8 8 TRUE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" "10ug" 22 16 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Meropenem" "Enterobacteriaceae" 2 8 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Meropenem" "Acinetob" "10ug" 21 15 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Meropenem" "Acinetob" 2 8 FALSE +"EUCAST 2013" "DISK" "Nonmeningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" "10ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Nonmeningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" 2 2 FALSE +"EUCAST 2013" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" "H.influenzae" 0.25 1 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Meropenem" "Listeria" "10ug" 26 26 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Meropenem" "Listeria" 0.25 0.25 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "M.catarrhalis" "10ug" 33 33 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Meropenem" "M.catarrhalis" 2 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Meropenem" "N.meningitidis" 0.25 0.25 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Meropenem" "Pseud" "10ug" 24 18 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Meropenem" "Pseud" 2 8 FALSE +"EUCAST 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 0.25 1 FALSE +"EUCAST 2013" "MIC" "Nonmeningitis" "Streptococcus pneumoniae" 2 "Meropenem" "Pneumo" 2 2 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "Viridans strept" 2 2 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Meropenem" 2 8 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" "5ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Moxifloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" "C.difficile" 4 1024 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "H.influenzae" "5ug" 25 25 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" "H.influenzae" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "M.catarrhalis" "5ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" "M.catarrhalis" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Moxifloxacin" "Staphs" "5ug" 24 21 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Moxifloxacin" "Staphs" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Moxifloxacin" "Strept A,B,C,G" "5ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Moxifloxacin" "Strept A,B,C,G" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" "5ug" 22 22 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" "Pneumo" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Minocycline" "H.influenzae" "30ug" 24 21 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Minocycline" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "M.catarrhalis" "30ug" 25 22 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Minocycline" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Minocycline" "N.meningitidis" 1 2 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Minocycline" "Staphs" "30ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Minocycline" "Staphs" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Minocycline" "Strept A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Minocycline" "Strept A,B,C,G" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" "30ug" 24 21 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" "Pneumo" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Metronidazole" "C.difficile" 2 2 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Metronidazole" "H.pylori" 8 8 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Mupirocin" "Staphs" "200ug" 30 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Mupirocin" "Staphs" 1 256 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "H.influenzae" "30ug" 23 7 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "M.catarrhalis" "30ug" 23 7 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Nalidixic acid" "Pasteurella" "30ug" 23 7 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" "10ug" 15 12 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Netilmicin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Netilmicin" "Acinetob" "10ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Netilmicin" "Acinetob" 4 4 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Netilmicin" "Pseud" "10ug" 12 12 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Netilmicin" "Pseud" 4 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" "10ug" 18 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" "10ug" 22 22 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "Staphs" 1 1 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Netilmicin" 2 4 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" "100ug" 11 11 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Nitrofurantoin" "Enterobacteriaceae" 64 64 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" "100ug" 15 15 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus faecalis" 2 "Nitrofurantoin" "Enterococcus" 64 64 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" "100ug" 13 13 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "Staphs" 64 64 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Streptococcus group B" 2 "Nitrofurantoin" "Strept A,B,C,G" "100ug" 15 15 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" 2 "Nitrofurantoin" "Strept A,B,C,G" 64 64 TRUE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" "10ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Norfloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Norfloxacin" "Staphs" "10ug" 17 7 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Norfloxacin" "Strept A,B,C,G" "10ug" 12 7 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "Pneumo" "10ug" 12 7 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Norfloxacin" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" "5ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ofloxacin" "Enterobacteriaceae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "H.influenzae" "5ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" "H.influenzae" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "M.catarrhalis" "5ug" 25 25 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" "M.catarrhalis" 0.5 0.5 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" "N.gonorrhoeae" 0.125 0.25 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Ofloxacin" "Staphs" "5ug" 20 20 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Ofloxacin" "Staphs" 1 1 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" "5ug" 50 13 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" "Pneumo" 0.125 4 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ofloxacin" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Oxacillin" "Staphs" 0.25 0.25 FALSE +"EUCAST 2013" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" "Staphs" 2 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "Pneumo" "1ug" 20 7 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Benzylpenicillin" "H.influenzae" "1unit" 12 7 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria" "1unit" 13 13 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" "Listeria" 1 1 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" "N.gonorrhoeae" 0.064 1 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" "N.meningitidis" 0.064 0.25 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella" "1unit" 17 17 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Benzylpenicillin" "Pasteurella" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" "1unit" 26 26 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Benzylpenicillin" "Staphs" 0.125 0.125 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Benzylpenicillin" "Strept A,B,C,G" "1unit" 18 18 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Benzylpenicillin" "Strept A,B,C,G" 0.25 0.25 FALSE +"EUCAST 2013" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 0.06 FALSE +"EUCAST 2013" "MIC" "Nonmeningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" "Pneumo" 0.064 2 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" "1unit" 18 12 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "Viridans strept" 0.25 2 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Benzylpenicillin" 0.25 2 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" "30ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Piperacillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin" "Pseud" "30ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Piperacillin" "Pseud" 16 16 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Piperacillin" 4 16 FALSE +"EUCAST 2013" "MIC" "Aspergillus" 3 "Posaconazole" "Aspergillus" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Candida albicans" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Posaconazole" "Candida" 0.064 0.06 FALSE +"EUCAST 2013" "DISK" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" "Enterococcus" "15ug" 22 20 FALSE +"EUCAST 2013" "MIC" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" "Enterococcus" 1 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" "15ug" 21 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" "Staphs" 1 2 FALSE +"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Rifampicin" "C.difficile" 0.004 1024 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Rifampicin" "H.pylori" 1 1 FALSE +"EUCAST 2013" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H.influenzae" "5ug" 18 18 FALSE +"EUCAST 2013" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "H.influenzae" 1 1 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Rifampicin" "N.meningitidis" 0.25 0.25 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Rifampicin" "Staphs" "5ug" 26 23 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Rifampicin" "Staphs" 0.064 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Rifampicin" "Strept A,B,C,G" "5ug" 21 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Rifampicin" "Strept A,B,C,G" 0.064 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" "5ug" 22 17 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" "Pneumo" 0.064 0.5 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" "H.influenzae" 1 16 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Roxithromycin" "Staphs" 1 2 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Roxithromycin" "Strept A,B,C,G" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" "Pneumo" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" "10/10ug" 14 14 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ampicillin/sulbactam" "Enterobacteriaceae" 8 8 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" "Enterococcus" 4 8 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" "H.influenzae" 1 1 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" "M.catarrhalis" 1 1 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" 2 8 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" "N.gonorrhoeae" 64 64 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" "300ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Streptomycin-high" "Enterococcus" 512 280 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Streptoduocin" "Enterococcus" "300ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Streptoduocin" "Enterococcus" 512 280 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Trimethoprim/sulfamethoxazole" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetob" "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "Acinetob" 2 4 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "Enterococcus" 0.032 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H.influenzae" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "H.influenzae" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2013" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "Listeria" 0.064 0.06 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M.catarrhalis" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "M.catarrhalis" 0.5 1 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella" "1.25ug/23.75ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Pasteurella multocida multocida" 1 "Trimethoprim/sulfamethoxazole" "Pasteurella" 0.25 0.25 FALSE +"EUCAST 2013" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "S.maltophilia" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "S.maltophilia" 4 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "Staphs" 2 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Trimethoprim/sulfamethoxazole" "Strept A,B,C,G" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "Pneumo" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" "75/10ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ticarcillin/clavulanic acid" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseud" "75/10ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "Pseud" 16 16 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" 8 16 FALSE +"EUCAST 2013" "DISK" "Campylobacter" 3 "Tetracycline" "Campylobacter" "30ug" 30 30 FALSE +"EUCAST 2013" "MIC" "Campylobacter" 3 "Tetracycline" "Campylobacter" 2 2 FALSE +"EUCAST 2013" "MIC" "Helicobacter pylori" 2 "Tetracycline" "H.pylori" 1 1 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "H.influenzae" "30ug" 25 22 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Tetracycline" "H.influenzae" 1 2 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "M.catarrhalis" "30ug" 28 25 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" "M.catarrhalis" 1 2 FALSE +"EUCAST 2013" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" "N.gonorrhoeae" 0.5 1 FALSE +"EUCAST 2013" "MIC" "Neisseria meningitidis" 2 "Tetracycline" "N.meningitidis" 1 2 FALSE +"EUCAST 2013" "DISK" "Pasteurella multocida multocida" 1 "Tetracycline" "Pasteurella" "30ug" 24 24 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tetracycline" "Staphs" "30ug" 22 19 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Tetracycline" "Staphs" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Tetracycline" "Strept A,B,C,G" "30ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Tetracycline" "Strept A,B,C,G" 1 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" "30ug" 25 22 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" "Pneumo" 1 2 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Teicoplanin" "Enterococcus" "30ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Teicoplanin" "Enterococcus" 2 2 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" "Staphs" 2 2 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" "Staphs" 4 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Teicoplanin" "Strept A,B,C,G" "30ug" 15 15 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Teicoplanin" "Strept A,B,C,G" 2 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" "30ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" "Pneumo" 2 2 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" "30ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "Viridans strept" 2 2 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" "15ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Tigecycline" "Enterobacteriaceae" 1 2 FALSE +"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Tigecycline" "C.difficile" 0.25 1024 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Tigecycline" "Enterococcus" "15ug" 18 15 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Tigecycline" "Enterococcus" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Staphylococcus" 3 "Tigecycline" "Staphs" "15ug" 18 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus" 3 "Tigecycline" "Staphs" 0.5 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Tigecycline" "Strept A,B,C,G" "15ug" 19 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Tigecycline" "Strept A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" "75ug" 23 23 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Ticarcillin" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Ticarcillin" "Pseud" "75ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Ticarcillin" "Pseud" 16 16 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Ticarcillin" 8 16 FALSE +"EUCAST 2013" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "H.influenzae" "15ug" 50 12 FALSE +"EUCAST 2013" "MIC" "Haemophilus influenzae" 2 "Telithromycin" "H.influenzae" 0.125 8 FALSE +"EUCAST 2013" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "M.catarrhalis" "15ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" "M.catarrhalis" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Telithromycin" "Strept A,B,C,G" "15ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Telithromycin" "Strept A,B,C,G" 0.25 0.5 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" "15ug" 23 20 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" "Pneumo" 0.25 0.5 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" "Staphs" 1 1 FALSE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" "5ug" 18 15 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterobacterales" 5 "Trimethoprim" "Enterobacteriaceae" 2 4 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Enterococcus" 3 "Trimethoprim" "Enterococcus" "5ug" 50 21 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Enterococcus" 3 "Trimethoprim" "Enterococcus" 0.032 1 TRUE +"EUCAST 2013" "DISK" "Urinary tract infect" "Staphylococcus" 3 "Trimethoprim" "Staphs" "5ug" 17 14 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Staphylococcus" 3 "Trimethoprim" "Staphs" 2 4 TRUE +"EUCAST 2013" "MIC" "Urinary tract infect" "Streptococcus group B" 2 "Trimethoprim" "Strept A,B,C,G" 2 2 TRUE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" "10ug" 17 14 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Tobramycin" "Enterobacteriaceae" 2 4 FALSE +"EUCAST 2013" "DISK" "Acinetobacter" 3 "Tobramycin" "Acinetob" "10ug" 17 17 FALSE +"EUCAST 2013" "MIC" "Acinetobacter" 3 "Tobramycin" "Acinetob" 4 4 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Tobramycin" "Pseud" "10ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Tobramycin" "Pseud" 4 4 FALSE +"EUCAST 2013" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" "10ug" 18 18 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2013" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" "10ug" 22 22 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "Staphs" 1 1 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Tobramycin" 2 4 FALSE +"EUCAST 2013" "DISK" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" "30/6ug" 20 17 FALSE +"EUCAST 2013" "MIC" "Enterobacterales" 5 "Piperacillin/tazobactam" "Enterobacteriaceae" 8 16 FALSE +"EUCAST 2013" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseud" "30/6ug" 19 19 FALSE +"EUCAST 2013" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" "Pseud" 16 16 FALSE +"EUCAST 2013" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" 4 16 FALSE +"EUCAST 2013" "MIC" "Clostridioides difficile" 2 "Vancomycin" "C.difficile" 2 2 FALSE +"EUCAST 2013" "DISK" "Enterococcus" 3 "Vancomycin" "Enterococcus" "5ug" 12 12 FALSE +"EUCAST 2013" "MIC" "Enterococcus" 3 "Vancomycin" "Enterococcus" 4 4 FALSE +"EUCAST 2013" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" "Staphs" 2 2 FALSE +"EUCAST 2013" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" "Staphs" 4 4 FALSE +"EUCAST 2013" "DISK" "Streptococcus" 3 "Vancomycin" "Strept A,B,C,G" "5ug" 13 13 FALSE +"EUCAST 2013" "MIC" "Streptococcus" 3 "Vancomycin" "Strept A,B,C,G" 2 2 FALSE +"EUCAST 2013" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" "5ug" 16 16 FALSE +"EUCAST 2013" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" "Pneumo" 2 2 FALSE +"EUCAST 2013" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" "5ug" 15 15 FALSE +"EUCAST 2013" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "Viridans strept" 2 2 FALSE +"EUCAST 2013" "MIC" "Aspergillus" 3 "Voriconazole" "Aspergillus" 1 2 FALSE +"EUCAST 2013" "MIC" "Candida albicans" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Candida parapsilosis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2013" "MIC" "Candida tropicalis" 2 "Voriconazole" "Candida" 0.125 0.125 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" 4 8 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "2ug/1ug" 17 17 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" 2 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" "2ug/1ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" 1 1 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Amikacin" "30ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Amikacin" 8 16 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Amikacin" "30ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Amikacin" 8 16 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Amikacin" "30ug" 18 16 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Amikacin" 8 16 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" "30ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Amikacin" 8 16 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Ampicillin" "2ug" 10 8 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Ampicillin" 4 8 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ampicillin" 1 1 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Ampicillin" "2ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Ampicillin" 1 1 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ampicillin" 0.125 1 FALSE +"EUCAST 2012" "DISK" "Staphylococcus saprophyticus saprophyticus" 1 "Ampicillin" "2ug" 15 15 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" "2ug" 21 15 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ampicillin" 0.5 2 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Amoxicillin" 4 8 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Amoxicillin" 0.125 0.125 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" 2 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" 0.125 1 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Amoxicillin" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Aztreonam" "30ug" 50 16 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Aztreonam" 1 16 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Azithromycin" 0.125 4 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Azithromycin" 1 2 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ceftazidime" "10ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ceftazidime" 8 8 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefaclor" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" 0.125 0.125 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30ug" 50 28 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" 0.032 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefadroxil" "5ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefadroxil" 0.125 0.125 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefadroxil" "5ug" 21 18 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefadroxil" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefadroxil" 0.125 0.125 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30ug" 28 28 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" 2 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Chloramphenicol" "30ug" 30 30 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" 2 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Chloramphenicol" 2 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Chloramphenicol" 8 8 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" "30ug" 21 21 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30ug" 21 21 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5ug" 21 21 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Ciprofloxacin" 1 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5ug" 26 26 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5ug" 23 23 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" 0.032 0.06 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" 0.032 0.06 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5ug" 25 22 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ciprofloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5ug" 20 20 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Ciprofloxacin" 1 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ciprofloxacin" "5ug" 50 18 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" 0.125 2 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Clindamycin" "2ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Clindamycin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2ug" 17 17 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Clindamycin" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" "2ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Clindamycin" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" 1 32 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Clarithromycin" 1 2 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Colistin" 2 2 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Colistin" 4 4 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10ug" 26 23 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30ug" 30 30 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" 0.125 0.125 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ceftriaxone" "30ug" 24 21 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" 0.125 0.125 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" 0.125 0.125 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" "30ug" 27 27 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ceftriaxone" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" 1 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5ug" 26 26 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" 0.125 0.125 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefotaxime" "5ug" 20 17 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" 0.125 0.125 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" 0.125 0.125 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" 0.5 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" "5ug" 23 23 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefotaxime" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30ug" 50 26 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" 0.125 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime axetil" "30ug" 50 21 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" 0.125 4 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30ug" 26 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" 1 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefuroxime" "30ug" 21 18 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" 4 8 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" "30ug" 26 26 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefuroxime" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefazolin" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Daptomycin" 4 1024 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Daptomycin" 1 1 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Daptomycin" 1 1 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Doripenem" "10ug" 21 15 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Doripenem" 1 4 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10ug" 20 20 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Doripenem" 1 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Doripenem" "10ug" 30 30 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Doripenem" 1 1 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Doripenem" "10ug" 25 19 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Doripenem" 1 4 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" 1 1 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" "10ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Doripenem" 1 1 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Doxycycline" 1 2 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15ug" 50 10 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Erythromycin" 0.5 16 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Erythromycin" "15ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Erythromycin" 1 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Erythromycin" 1 2 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10ug" 20 20 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ertapenem" "10ug" 29 29 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" "10ug" 22 22 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30ug" 27 27 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Cefepime" 0.25 0.25 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Cefepime" "30ug" 20 20 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Cefepime" 4 4 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Cefepime" "30ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Cefepime" 8 8 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" 1 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" "30ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Cefepime" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Fosfomycin" 32 32 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30ug" 22 22 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Cefoxitin" 4 4 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Cefoxitin" "30ug" 25 25 FALSE +"EUCAST 2012" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30ug" 22 22 FALSE +"EUCAST 2012" "MIC" "Staphylococcus lugdunensis" 2 "Cefoxitin" 4 4 FALSE +"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Fusidic acid" 2 1024 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Fusidic acid" "10ug" 24 24 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Fusidic acid" 1 1 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin-high" "30ug" 8 8 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Gentamicin-high" 128 80 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Gentamicin" "10ug" 17 17 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Gentamicin" 4 4 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Gentamicin" "30ug" 8 8 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Gentamicin" 128 80 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Gentamicin" "10ug" 15 15 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Gentamicin" 4 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Gentamicin" "10ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Gentamicin" 1 1 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" "10ug" 22 22 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Gentamicin" 1 1 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Imipenem" "10ug" 23 17 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Imipenem" 2 8 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Imipenem" "10ug" 21 18 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Imipenem" 4 8 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10ug" 20 20 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Imipenem" 2 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Imipenem" "10ug" 29 29 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Imipenem" 2 2 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Imipenem" "10ug" 20 17 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Imipenem" 4 8 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" 2 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" "10ug" 30 30 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Imipenem" 2 2 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Linezolid" "10ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Linezolid" 4 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Linezolid" "10ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Linezolid" 4 4 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10ug" 19 16 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Linezolid" 2 4 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" 2 4 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Levofloxacin" "5ug" 21 18 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Levofloxacin" 1 2 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Levofloxacin" 1 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5ug" 26 26 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" 1 1 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Levofloxacin" "5ug" 23 23 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" 1 1 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Levofloxacin" "5ug" 20 17 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Levofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Levofloxacin" "5ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Levofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" 1 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" 2 2 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Meropenem" "10ug" 21 15 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Meropenem" 2 8 FALSE +"EUCAST 2012" "DISK" "Other infections" "Haemophilus influenzae" 2 "Meropenem" "10ug" 20 20 FALSE +"EUCAST 2012" "MIC" "Other infections" "Haemophilus influenzae" 2 "Meropenem" 2 2 FALSE +"EUCAST 2012" "MIC" "Meningitis" "Haemophilus influenzae" 2 "Meropenem" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Meropenem" "10ug" 26 26 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Meropenem" 0.25 0.25 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Meropenem" "10ug" 33 33 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Meropenem" 2 2 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Meropenem" 0.25 0.25 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Meropenem" "10ug" 24 18 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Meropenem" 2 8 FALSE +"EUCAST 2012" "MIC" "Other infections" "Streptococcus pneumoniae" 2 "Meropenem" 2 2 FALSE +"EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Meropenem" 0.25 1 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" "10ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Meropenem" 2 2 FALSE +"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Moxifloxacin" 4 1024 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Moxifloxacin" "5ug" 23 23 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5ug" 24 21 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5ug" 22 22 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Minocycline" "30ug" 24 21 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Minocycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Minocycline" "30ug" 25 22 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Minocycline" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Minocycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Minocycline" "30ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Minocycline" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Minocycline" "30ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Minocycline" "30ug" 24 21 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Metronidazole" 2 2 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Metronidazole" 8 8 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Mupirocin" "200ug" 30 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Mupirocin" 1 256 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30ug" 23 23 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Nalidixic acid" "30ug" 23 23 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Netilmicin" "10ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Netilmicin" 4 4 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Netilmicin" "10ug" 12 12 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Netilmicin" 4 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Netilmicin" "10ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Netilmicin" 1 1 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" "10ug" 22 22 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Netilmicin" 1 1 FALSE +"EUCAST 2012" "DISK" "UTI only" "Enterococcus faecalis" 2 "Nitrofurantoin" "100ug" 15 15 TRUE +"EUCAST 2012" "MIC" "UTI only" "Enterococcus faecalis" 2 "Nitrofurantoin" 64 64 TRUE +"EUCAST 2012" "DISK" "UTI only" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" "100ug" 13 13 TRUE +"EUCAST 2012" "MIC" "UTI only" "Staphylococcus saprophyticus saprophyticus" 1 "Nitrofurantoin" 64 64 TRUE +"EUCAST 2012" "DISK" "UTI only" "Streptococcus group B" 2 "Nitrofurantoin" "100ug" 15 15 TRUE +"EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" 2 "Nitrofurantoin" 64 64 TRUE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Norfloxacin" "10ug" 17 17 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Norfloxacin" "10ug" 12 12 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10ug" 12 12 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5ug" 23 23 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Ofloxacin" "5ug" 25 25 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" 0.5 0.5 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" 0.125 0.25 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Ofloxacin" "5ug" 20 20 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Ofloxacin" 1 1 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5ug" 50 15 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" 0.125 4 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Oxacillin" 0.25 0.25 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" 2 2 FALSE +"EUCAST 2012" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" 2 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1ug" 20 20 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Benzylpenicillin" "1 unit" 12 12 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Benzylpenicillin" "1 unit" 13 13 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Benzylpenicillin" 1 1 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" 0.064 1 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" 0.064 0.25 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "1 unit" 26 26 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Benzylpenicillin" 0.125 0.125 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" "1 unit" 18 18 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" 0.25 0.25 FALSE +"EUCAST 2012" "MIC" "Other infections" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 2 FALSE +"EUCAST 2012" "MIC" "Meningitis" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 0.06 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" "1 unit" 18 12 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Benzylpenicillin" 0.25 2 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin" "30ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Piperacillin" 16 16 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Quinupristin/dalfopristin" "15ug" 22 20 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Quinupristin/dalfopristin" 1 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Quinupristin/dalfopristin" "15ug" 21 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" 1 2 FALSE +"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Rifampicin" 0.004 1024 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Rifampicin" 1 1 FALSE +"EUCAST 2012" "DISK" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" "5ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Prophylaxis" "Haemophilus influenzae" 2 "Rifampicin" 1 1 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Rifampicin" 0.25 0.25 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Rifampicin" "5ug" 26 23 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5ug" 21 15 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5ug" 22 17 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Roxithromycin" 1 16 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Roxithromycin" 1 2 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" 4 8 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" 1 1 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" 1 1 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" 64 64 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Streptomycin-high" 512 280 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Streptoduocin" "300ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Streptoduocin" 512 280 FALSE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" 0.032 1 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 29 29 FALSE +"EUCAST 2012" "MIC" "Listeria monocytogenes" 2 "Trimethoprim/sulfamethoxazole" 0.064 0.06 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" 0.5 1 FALSE +"EUCAST 2012" "DISK" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Stenotrophomonas maltophilia" 2 "Trimethoprim/sulfamethoxazole" 4 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" "75ug/10ug" 17 17 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" 16 16 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30ug" 25 22 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30ug" 28 25 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2012" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" 0.5 1 FALSE +"EUCAST 2012" "MIC" "Neisseria meningitidis" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tetracycline" "30ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Tetracycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Teicoplanin" "30ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Teicoplanin" 2 2 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" 2 2 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Teicoplanin" 4 4 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" "30ug" 15 15 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Teicoplanin" "30ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" "30ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Tigecycline" 0.25 1024 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Tigecycline" "15ug" 18 15 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Staphylococcus" 3 "Tigecycline" "15ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus" 3 "Tigecycline" 0.5 0.5 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15ug" 19 16 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Helicobacter pylori" 2 "Ticarcillin" 1 1 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Ticarcillin" "75ug" 17 17 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Ticarcillin" 16 16 FALSE +"EUCAST 2012" "DISK" "Haemophilus influenzae" 2 "Telithromycin" "15ug" 50 12 FALSE +"EUCAST 2012" "MIC" "Haemophilus influenzae" 2 "Telithromycin" 0.125 8 FALSE +"EUCAST 2012" "DISK" "Moraxella catarrhalis" 2 "Telithromycin" "15ug" 23 20 FALSE +"EUCAST 2012" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Telithromycin" "15ug" 22 19 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Telithromycin" "15ug" 25 22 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Telavancin" 1 1 FALSE +"EUCAST 2012" "DISK" "UTI only" "Enterococcus" 3 "Trimethoprim" "5ug" 50 21 TRUE +"EUCAST 2012" "MIC" "UTI only" "Enterococcus" 3 "Trimethoprim" 0.032 1 TRUE +"EUCAST 2012" "DISK" "UTI only" "Staphylococcus" 3 "Trimethoprim" "5ug" 17 14 TRUE +"EUCAST 2012" "MIC" "UTI only" "Staphylococcus" 3 "Trimethoprim" 2 4 TRUE +"EUCAST 2012" "MIC" "UTI only" "Streptococcus group B" 2 "Trimethoprim" 2 2 TRUE +"EUCAST 2012" "DISK" "Acinetobacter" 3 "Tobramycin" "10ug" 17 17 FALSE +"EUCAST 2012" "MIC" "Acinetobacter" 3 "Tobramycin" 4 4 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Tobramycin" "10ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Tobramycin" 4 4 FALSE +"EUCAST 2012" "DISK" "Staphylococcus aureus aureus" 1 "Tobramycin" "10ug" 18 18 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Tobramycin" 1 1 FALSE +"EUCAST 2012" "DISK" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" "10ug" 22 22 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Tobramycin" 1 1 FALSE +"EUCAST 2012" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30ug/6ug" 19 19 FALSE +"EUCAST 2012" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" 16 16 FALSE +"EUCAST 2012" "MIC" "Clostridioides difficile" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2012" "DISK" "Enterococcus" 3 "Vancomycin" "5ug" 12 12 FALSE +"EUCAST 2012" "MIC" "Enterococcus" 3 "Vancomycin" 4 4 FALSE +"EUCAST 2012" "MIC" "Staphylococcus aureus aureus" 1 "Vancomycin" 2 2 FALSE +"EUCAST 2012" "MIC" "Coagulase-negative Staphylococcus (CoNS)" 2 "Vancomycin" 4 4 FALSE +"EUCAST 2012" "DISK" "Beta-haemolytic Streptococcus" 2 "Vancomycin" "5ug" 13 13 FALSE +"EUCAST 2012" "MIC" "Beta-haemolytic Streptococcus" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2012" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5ug" 16 16 FALSE +"EUCAST 2012" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2012" "DISK" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" "5ug" 15 15 FALSE +"EUCAST 2012" "MIC" "Viridans Group Streptococcus (VGS)" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Amoxicillin/clavulanic acid" 4 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" "20ug" 20 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Amoxicillin/clavulanic acid" 1 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin/clavulanic acid" 1 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 12 12 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin/clavulanic acid" "Generic rules" "20/10ug" 8 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Amikacin" "30ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Amikacin" 8 16 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Amikacin" "30ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Amikacin" 8 16 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Amikacin" "30ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Amikacin" 8 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 16 13 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Amikacin" "Generic rules" "30ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Ampicillin" "2ug" 10 8 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Ampicillin" 4 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ampicillin" "2ug" 16 16 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ampicillin" 1 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ampicillin" 1 1 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ampicillin" 0.125 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Ampicillin" "2ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Ampicillin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ampicillin" "2ug" 28 22 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ampicillin" 0.5 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ampicillin" "Generic rules" "10ug" 12 12 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin" "Generic rules" "2ug" 8 8 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Amoxicillin" 4 8 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Amoxicillin" 1 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Amoxicillin" 1 1 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Amoxicillin" 0.125 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Amoxicillin" 0.5 2 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Amoxicillin" "Generic rules" "10ug" 8 8 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Aztreonam" "30ug" 50 16 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Aztreonam" 1 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 25 21 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Aztreonam" "Generic rules" "30ug" 1 8 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Azithromycin" 0.125 4 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Azithromycin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Azithromycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Azithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ceftazidime" 8 8 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10ug" 20 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftazidime" "Generic rules" "10ug" 1 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefaclor" "30ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefaclor" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefaclor" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefaclor" "30ug" 50 28 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefaclor" 0.032 0.5 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefixime" "5ug" 22 22 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefixime" 0.125 0.125 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefixime" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefixime" 0.125 0.125 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 17 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefixime" "Generic rules" "5ug" 1 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30ug" 12 12 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefadroxil" "Generic rules" "30ug" 16 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Chloramphenicol" "30ug" 28 25 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Chloramphenicol" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Chloramphenicol" 1 2 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Chloramphenicol" "30ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Chloramphenicol" "30ug" 20 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Chloramphenicol" 8 8 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 17 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Chloramphenicol" "Generic rules" "30ug" 8 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Ciprofloxacin" "5ug" 21 21 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Ciprofloxacin" 1 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ciprofloxacin" "5ug" 23 23 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ciprofloxacin" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Ciprofloxacin" "5ug" 23 23 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ciprofloxacin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ciprofloxacin" 0.032 0.03 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ciprofloxacin" 0.032 0.03 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Ciprofloxacin" "5ug" 25 22 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ciprofloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Ciprofloxacin" "5ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Ciprofloxacin" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ciprofloxacin" 0.125 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 22 19 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ciprofloxacin" "Generic rules" "5ug" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Clindamycin" "2ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Clindamycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Clindamycin" "2ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Clindamycin" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Clindamycin" "2ug" 17 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Clindamycin" "2ug" 17 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Clindamycin" "2ug" 17 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Clindamycin" "2ug" 17 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Clindamycin" "2ug" 17 17 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Clindamycin" "2ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Clindamycin" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Clindamycin" "2ug" 17 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Clindamycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Clarithromycin" 1 32 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Clarithromycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Clarithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Colistin" 2 2 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Colistin" 2 4 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Colistin" 2 2 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Colistin" "Generic rules" "10ug" 2 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefpodoxime" "10ug" 24 21 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefpodoxime" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefpodoxime" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefpodoxime" "10ug" 28 25 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefpodoxime" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 21 21 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefpodoxime" "Generic rules" "10ug" 1 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftriaxone" "30ug" 27 27 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ceftriaxone" 0.125 0.125 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftriaxone" 1 2 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ceftriaxone" 0.125 0.125 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Ceftriaxone" 0.125 0.125 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Ceftriaxone" "30ug" 27 27 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Ceftriaxone" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ceftriaxone" 0.5 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftriaxone" "Generic rules" "30ug" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ceftibuten" "30ug" 24 24 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ceftibuten" 1 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ceftibuten" 1 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 21 21 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ceftibuten" "Generic rules" "30ug" 1 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefotaxime" "5ug" 22 22 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefotaxime" 0.125 0.125 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefotaxime" 1 2 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Cefotaxime" 0.125 0.125 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Cefotaxime" 0.125 0.125 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefotaxime" "5ug" 23 23 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefotaxime" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefotaxime" 0.5 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5ug" 21 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefotaxime" "Generic rules" "5ug" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime axetil" "30ug" 50 25 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefuroxime axetil" 0.125 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime axetil" 0.125 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime axetil" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 18 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime axetil" "Generic rules" "30ug" 8 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefuroxime" "30ug" 25 22 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefuroxime" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefuroxime" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefuroxime" "30ug" 26 26 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefuroxime" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefuroxime" 0.5 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 18 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefuroxime" "Generic rules" "30ug" 8 8 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefazolin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Daptomycin" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Daptomycin" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Daptomycin" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Daptomycin" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Daptomycin" 1 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Daptomycin" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Daptomycin" 1 1 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Doripenem" "10ug" 21 16 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Doripenem" 1 4 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Doripenem" "10ug" 20 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Doripenem" "10ug" 22 17 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Doripenem" 1 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Doripenem" "10ug" 25 25 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Doripenem" 1 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 24 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Doripenem" "Generic rules" "10ug" 1 4 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Doxycycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Erythromycin" "15ug" 50 12 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Erythromycin" 0.5 16 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Erythromycin" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Erythromycin" "15ug" 22 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Erythromycin" "15ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Erythromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ertapenem" "10ug" 20 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Ertapenem" "10ug" 22 22 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Ertapenem" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 25 22 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ertapenem" "Generic rules" "10ug" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Cefepime" "30ug" 25 25 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Cefepime" 0.25 0.25 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Cefepime" 0.25 0.25 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Cefepime" 8 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Cefepime" "30ug" 25 25 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Cefepime" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Cefepime" "30ug" 32 29 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Cefepime" 1 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 24 18 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cefepime" "Generic rules" "30ug" 1 8 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Fosfomycin" 32 32 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Fosfomycin" 32 32 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Fosfomycin" "Generic rules" "200ug" 32 32 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Cefoxitin" "30ug" 25 25 FALSE +"EUCAST 2011" "DISK" "Staphylococcus aureus aureus" 1 "Cefoxitin" "30ug" 22 22 FALSE +"EUCAST 2011" "DISK" "Staphylococcus lugdunensis" 2 "Cefoxitin" "30ug" 22 22 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Fusidic acid" "10ug" 22 22 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Fusidic acid" 1 1 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin-high" "30ug" 8 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Gentamicin" "10ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Gentamicin" 4 4 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Gentamicin" "30ug" 8 8 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Gentamicin" 128 128 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Gentamicin" "10ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Gentamicin" 4 4 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Gentamicin" "10ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Gentamicin" 1 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 17 14 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Gentamicin" "Generic rules" "10ug" 2 4 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Imipenem" "10ug" 23 17 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Imipenem" 2 8 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Imipenem" "10ug" 21 18 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Imipenem" 4 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Imipenem" "10ug" 16 16 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Imipenem" "10ug" 20 17 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Imipenem" 4 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Imipenem" "10ug" 30 30 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Imipenem" 2 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 21 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Imipenem" "Generic rules" "10ug" 2 8 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Cephalexin" "Generic rules" "30ug" 16 16 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Linezolid" "10ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Linezolid" 4 4 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Linezolid" "10ug" 17 17 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Linezolid" 4 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Linezolid" "10ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Linezolid" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Linezolid" "10ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Linezolid" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Linezolid" "10ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Linezolid" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Linezolid" "10ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Linezolid" 2 4 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Linezolid" "10ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Linezolid" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Linezolid" "10ug" 20 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Linezolid" 4 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Linezolid" "10ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Linezolid" 2 4 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Levofloxacin" "5ug" 21 21 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Levofloxacin" "5ug" 21 21 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Levofloxacin" 1 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Levofloxacin" 1 1 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Levofloxacin" "5ug" 20 17 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Levofloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Levofloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Levofloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Levofloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Levofloxacin" "5ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Levofloxacin" 2 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Levofloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Levofloxacin" 1 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 22 19 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Levofloxacin" "Generic rules" "5ug" 1 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 15 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Mecillinam" "Generic rules" "10ug" 8 8 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Meropenem" "10ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Meropenem" 2 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Meropenem" "10ug" 20 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Meropenem" 0.25 0.25 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Meropenem" "10ug" 24 18 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Meropenem" 2 8 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Meropenem" "10ug" 25 25 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Meropenem" 2 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 22 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Meropenem" "Generic rules" "10ug" 2 8 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Moxifloxacin" "5ug" 23 23 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Moxifloxacin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Moxifloxacin" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Moxifloxacin" "5ug" 22 19 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Moxifloxacin" "30ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Moxifloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Moxifloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Moxifloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Moxifloxacin" "5ug" 22 22 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Moxifloxacin" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Moxifloxacin" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Moxifloxacin" 0.5 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 20 17 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Moxifloxacin" "Generic rules" "5ug" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Minocycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Minocycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Minocycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Minocycline" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Nalidixic acid" "30ug" 23 23 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Nalidixic acid" "Generic rules" "30ug" 16 16 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Netilmicin" "10ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Netilmicin" 4 4 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Netilmicin" "10ug" 10 10 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Netilmicin" 4 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Netilmicin" 1 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Netilmicin" "Generic rules" "10ug" 15 12 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Netilmicin" "Generic rules" "10ug" 2 4 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Nitrofurantoin" "100ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Nitrofurantoin" "100ug" 13 13 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Nitrofurantoin" "100ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Nitrofurantoin" "100ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Nitrofurantoin" "100ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Nitrofurantoin" "100ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Nitrofurantoin" "100ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Nitrofurantoin" "100ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Nitrofurantoin" 64 64 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 11 11 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Nitrofurantoin" "Generic rules" "100ug" 64 64 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Norfloxacin" "10ug" 17 17 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Norfloxacin" "10ug" 12 12 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 22 19 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Norfloxacin" "Generic rules" "10ug" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Ofloxacin" "5ug" 21 21 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ofloxacin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ofloxacin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Ofloxacin" 0.125 0.25 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Ofloxacin" 1 1 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Ofloxacin" "5ug" 50 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Ofloxacin" 0.125 4 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 22 19 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ofloxacin" "Generic rules" "5ug" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Oxacillin" 0.25 0.25 FALSE +"EUCAST 2011" "MIC" "Staphylococcus aureus aureus" 1 "Oxacillin" 2 2 FALSE +"EUCAST 2011" "MIC" "Staphylococcus lugdunensis" 2 "Oxacillin" 2 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Oxacillin" "1ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Benzylpenicillin" 0.064 1 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Benzylpenicillin" 0.064 0.25 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Benzylpenicillin" "1ug" 26 26 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Benzylpenicillin" 0.125 0.125 FALSE +"EUCAST 2011" "DISK" "Streptococcus" 3 "Benzylpenicillin" "1ug" 18 12 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Benzylpenicillin" 0.25 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Benzylpenicillin" "1ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Benzylpenicillin" 0.25 0.25 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Benzylpenicillin" "1ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Benzylpenicillin" 0.25 0.25 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Benzylpenicillin" "1ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Benzylpenicillin" 0.25 0.25 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Benzylpenicillin" "1ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Benzylpenicillin" 0.25 0.25 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" "1ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Benzylpenicillin" 0.25 0.25 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Benzylpenicillin" 0.064 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Benzylpenicillin" "1ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Benzylpenicillin" 0.25 0.25 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Phenoxymethylpenicillin" "10" 15 15 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin" "30ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Piperacillin" 16 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin" "Generic rules" "30ug" 18 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin" "Generic rules" "30ug" 8 16 FALSE +"EUCAST 2011" "MIC" "Enterococcus faecium" 2 "Quinupristin/dalfopristin" 1 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Quinupristin/dalfopristin" 1 2 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Rifampicin" "5ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Rifampicin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Rifampicin" 0.5 0.5 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Rifampicin" 0.25 0.25 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Rifampicin" "5ug" 25 22 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Rifampicin" 0.064 0.25 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Rifampicin" "5ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Rifampicin" "5ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Rifampicin" "5ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Rifampicin" "5ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Rifampicin" "5ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Rifampicin" "5ug" 22 17 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Rifampicin" "5ug" 21 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Rifampicin" 0.064 0.5 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Roxithromycin" 1 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Roxithromycin" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Ampicillin/sulbactam" 4 8 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Ampicillin/sulbactam" 1 1 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Ampicillin/sulbactam" 1 1 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ampicillin/sulbactam" "Generic rules" "10/10ug" 8 8 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Spectinomycin" 64 64 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 16 13 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 50 21 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Trimethoprim/sulfamethoxazole" 0.32 1 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Trimethoprim/sulfamethoxazole" 0.5 1 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Trimethoprim/sulfamethoxazole" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Trimethoprim/sulfamethoxazole" 4 4 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 17 14 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Trimethoprim/sulfamethoxazole" 2 4 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Trimethoprim/sulfamethoxazole" "1.25ug/23.75ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Trimethoprim/sulfamethoxazole" 1 2 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 16 13 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim/sulfamethoxazole" "Generic rules" "1.25/23.75ug" 2 4 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ticarcillin/clavulanic acid" 16 16 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin/clavulanic acid" "Generic rules" "75/10-15ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Haemophilus influenzae" 2 "Tetracycline" "30ug" 24 21 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Moraxella catarrhalis" 2 "Tetracycline" "30ug" 28 25 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "MIC" "Neisseria gonorrhoeae" 2 "Tetracycline" 0.5 1 FALSE +"EUCAST 2011" "MIC" "Neisseria meningitidis" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tetracycline" "30ug" 22 19 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tetracycline" "30ug" 23 20 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Tetracycline" 1 2 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Teicoplanin" "30ug" 16 16 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Teicoplanin" 4 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus aureus aureus" 1 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Staphylococcus lugdunensis" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Teicoplanin" 2 2 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Tigecycline" "15ug" 18 15 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tigecycline" "15ug" 18 18 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Tigecycline" 0.5 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group A" 2 "Tigecycline" "15ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group B" 2 "Tigecycline" "15ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group C" 2 "Tigecycline" "15ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus group G" 2 "Tigecycline" "15ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Beta-haemolytic Streptococcus" 2 "Tigecycline" "15ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Streptococcus pyogenes" 2 "Tigecycline" "15ug" 19 16 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Tigecycline" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Tigecycline" "Generic rules" "15ug" 18 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Tigecycline" "Generic rules" "15ug" 1 2 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Ticarcillin" 16 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 23 22 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Ticarcillin" "Generic rules" "75ug" 8 16 FALSE +"EUCAST 2011" "MIC" "Haemophilus influenzae" 2 "Telithromycin" 0.125 8 FALSE +"EUCAST 2011" "MIC" "Moraxella catarrhalis" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Telithromycin" 0.25 0.5 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Trimethoprim" "5ug" 50 21 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Trimethoprim" 0.32 1 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Trimethoprim" "5ug" 17 14 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Trimethoprim" 2 4 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 18 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Trimethoprim" "Generic rules" "5ug" 2 4 FALSE +"EUCAST 2011" "DISK" "Acinetobacter" 3 "Tobramycin" "10ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Acinetobacter" 3 "Tobramycin" 4 4 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Tobramycin" "10ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Tobramycin" 4 4 FALSE +"EUCAST 2011" "DISK" "Staphylococcus" 3 "Tobramycin" "10ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Tobramycin" 1 1 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 15 12 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Tobramycin" "Generic rules" "10ug" 2 4 FALSE +"EUCAST 2011" "DISK" "Pseudomonas" 3 "Piperacillin/tazobactam" "30ug" 19 19 FALSE +"EUCAST 2011" "MIC" "Pseudomonas" 3 "Piperacillin/tazobactam" 16 16 FALSE +"EUCAST 2011" "DISK" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6ug" 18 15 FALSE +"EUCAST 2011" "MIC" "(unknown name)" 6 "Piperacillin/tazobactam" "Generic rules" "30/6ug" 8 16 FALSE +"EUCAST 2011" "DISK" "Enterococcus" 3 "Vancomycin" "5ug" 12 12 FALSE +"EUCAST 2011" "MIC" "Enterococcus" 3 "Vancomycin" 4 4 FALSE +"EUCAST 2011" "MIC" "Staphylococcus" 3 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus" 3 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group A" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group B" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group C" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus group G" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Beta-haemolytic Streptococcus" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "DISK" "Streptococcus pneumoniae" 2 "Vancomycin" "5ug" 15 15 FALSE +"EUCAST 2011" "MIC" "Streptococcus pneumoniae" 2 "Vancomycin" 2 2 FALSE +"EUCAST 2011" "MIC" "Streptococcus pyogenes" 2 "Vancomycin" 2 2 FALSE "CLSI 2021" "DISK" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" "20ug/10ug" 18 13 FALSE "CLSI 2021" "MIC" "Enterobacterales" 5 "Amoxicillin/clavulanic acid" "Table 2A" 8 32 FALSE "CLSI 2021" "DISK" "Aeromonas" 3 "Amoxicillin/clavulanic acid" "M45 Table 2" "20ug" 18 13 FALSE diff --git a/data-raw/rsi_translation.xlsx b/data-raw/rsi_translation.xlsx index 0b25c4ca..cbe301f4 100644 Binary files a/data-raw/rsi_translation.xlsx and b/data-raw/rsi_translation.xlsx differ diff --git a/data/rsi_translation.rda b/data/rsi_translation.rda index cbd72a76..472c4ff0 100644 Binary files a/data/rsi_translation.rda and b/data/rsi_translation.rda differ diff --git a/docs/404.html b/docs/404.html index 38bd6720..bc5b0f4c 100644 --- a/docs/404.html +++ b/docs/404.html @@ -43,7 +43,7 @@ AMR (for R) - 1.8.1.9004 + 1.8.1.9005 diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 1ab18143..02bfcf98 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -17,7 +17,7 @@ AMR (for R) - 1.8.1.9004 + 1.8.1.9005 diff --git a/docs/articles/datasets.html b/docs/articles/datasets.html index ee823ef9..f992dd58 100644 --- a/docs/articles/datasets.html +++ b/docs/articles/datasets.html @@ -44,7 +44,7 @@ AMR (for R) - 1.8.1.9004 + 1.8.1.9005 @@ -190,7 +190,7 @@ diff --git a/docs/index.html b/docs/index.html index 76d7b387..b8ea4137 100644 --- a/docs/index.html +++ b/docs/index.html @@ -47,7 +47,7 @@ AMR (for R) - 1.8.1.9004 + 1.8.1.9005 diff --git a/docs/news/index.html b/docs/news/index.html index 44c34afc..b25855ef 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -17,7 +17,7 @@ AMR (for R) - 1.8.1.9004 + 1.8.1.9005 @@ -157,13 +157,14 @@
- +
-

Last updated: 9 May 2022

+

Last updated: 10 May 2022

-

Changed

-
  • Removed as.integer() for MIC values, since MIC are not integer values and running table() on MIC values consequently failed for not being able to retrieve the level position (as that’s how normally as.integer() on factors work)
  • +

    Changed

    +
    • Fix for as.rsi() on certain EUCAST breakpoints for MIC values
    • +
    • Removed as.integer() for MIC values, since MIC are not integer values and running table() on MIC values consequently failed for not being able to retrieve the level position (as that’s how normally as.integer() on factors work)
    • droplevels() on MIC will now return a common factor at default and will lose the <mic> class. Use droplevels(..., as.mic = TRUE) to keep the <mic> class.
    • Small fix for using ab_from_text() diff --git a/docs/survey.html b/docs/survey.html index eef75c52..e43bfc52 100644 --- a/docs/survey.html +++ b/docs/survey.html @@ -17,7 +17,7 @@ AMR (for R) - 1.8.1.9004 + 1.8.1.9005
diff --git a/inst/tinytest/test-rsi.R b/inst/tinytest/test-rsi.R index 5e5421e9..6a41f75a 100644 --- a/inst/tinytest/test-rsi.R +++ b/inst/tinytest/test-rsi.R @@ -23,6 +23,10 @@ # how to conduct AMR data analysis: https://msberends.github.io/AMR/ # # ==================================================================== # +# we must only have EUCAST and CLSI, because otherwise the rules in as.rsi() will fail +expect_identical(unique(gsub("[^A-Z]", "", AMR::rsi_translation$guideline)), + c("EUCAST", "CLSI")) + expect_true(as.rsi("S") < as.rsi("I")) expect_true(as.rsi("I") < as.rsi("R")) expect_true(is.rsi(as.rsi("S")))