factbook.getNews().add(nn);
}
Map<String, String> countryids = new HashMap<String, String>();
Map<String, String> countrynames = new HashMap<String, String>();
Map<String, List<String>> countryAliases = new HashMap<String, List<String>>();
ParsedCountries ctries = parse(dir, "countries.html", "countries", lastupdate, ParsedCountries.class);
for (ParsedCountries.Country country : ctries.getCountry()) {
countryids.put(country.getName(), country.getId());
countrynames.put(country.getId(), country.getName());
List<String> aliases = countryAliases.get(country.getId());
if (aliases == null) {
aliases = new ArrayList<String>();