diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 7bbc71c..0000000 --- a/.gitignore +++ /dev/null @@ -1,101 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# dotenv -.env - -# virtualenv -.venv -venv/ -ENV/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ diff --git a/code_BigReport.py b/code_BigReport.py index 3ef9e09..531a3e0 100644 --- a/code_BigReport.py +++ b/code_BigReport.py @@ -5,6 +5,7 @@ import code_Individual import code_Lists import code_MapHtml +import code_Stylesheet # import basic Python libraries from copy import deepcopy @@ -48,6 +49,9 @@ class BigReport(QMdiSubWindow, form_BigReport.Ui_frmBigReport): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + + self.setAttribute(Qt.WA_DeleteOnClose,True) + self.mdiParent = "" self.myHtml = "" self.resized.connect(self.resizeMe) @@ -130,6 +134,7 @@ def CreateLocation(self, callingWidget): sub.show() QApplication.restoreOverrideCursor() + def CreateIndividual(self, callingWidget): QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) if callingWidget.objectName() in (["lstSpecies", @@ -158,6 +163,7 @@ def CreateIndividual(self, callingWidget): sub.resizeMe() QApplication.restoreOverrideCursor() + def CreateSpeciesList(self, callingWidget): QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) if callingWidget.objectName() == "lstDates": @@ -175,10 +181,15 @@ def CreateSpeciesList(self, callingWidget): sub.show() QApplication.restoreOverrideCursor() + def FillAnalysisReport(self, filter): # save filter for later use self.filter = filter + # set up a bold font to use in columns as needed + font = QFont() + font.setBold(True) + # create subset of master sightings list for this filter self.filteredSightingList = deepcopy(self.mdiParent.db.GetSightings(filter)) filteredSightingList = self.filteredSightingList @@ -187,15 +198,15 @@ def FillAnalysisReport(self, filter): # get species and first/last date data from db speciesListWithDates = self.mdiParent.db.GetSpeciesWithData(filter, self.filteredSightingList, "Subspecies") - # abort if filter produced no sightings + # abort if filter produced no sightings if len(speciesListWithDates) == 0: return(False) - # set up tblSpecies column headers and widths - self.tblSpecies.setColumnCount(4) + # set up tblSpecies column headers and widths + self.tblSpecies.setColumnCount(5) self.tblSpecies.setRowCount(len(speciesListWithDates)) self.tblSpecies.horizontalHeader().setVisible(True) - self.tblSpecies.setHorizontalHeaderLabels(['Tax', 'Species', 'First', 'Last']) + self.tblSpecies.setHorizontalHeaderLabels(['Tax', 'Species', 'Count', 'First', 'Last']) header = self.tblSpecies.horizontalHeader() header.setSectionResizeMode(1, QHeaderView.Stretch) self.tblSpecies.setShowGrid(False) @@ -207,16 +218,29 @@ def FillAnalysisReport(self, filter): taxItem.setData(Qt.DisplayRole, R+1) speciesItem = QTableWidgetItem() speciesItem.setText(species[0]) - speciesItem.setData(Qt.UserRole, QVariant(species[4])) + speciesItem.setData(Qt.UserRole, QVariant(species[4])) + countItem = QTableWidgetItem() + countItem.setData(Qt.DisplayRole, species[7]) firstDateItem = QTableWidgetItem() firstDateItem.setData(Qt.DisplayRole, species[1]) lastDateItem = QTableWidgetItem() lastDateItem.setData(Qt.DisplayRole, species[2]) self.tblSpecies.setItem(R, 0, taxItem) self.tblSpecies.setItem(R, 1, speciesItem) - self.tblSpecies.setItem(R, 2, firstDateItem) - self.tblSpecies.setItem(R, 3, lastDateItem) - + self.tblSpecies.setItem(R, 2, countItem) + self.tblSpecies.setItem(R, 3, firstDateItem) + self.tblSpecies.setItem(R, 4, lastDateItem) + + # set the species column to bold font (set up above) + self.tblSpecies.item(R, 1).setFont(font) + + # color code the entry. Stylesheet color for full species, gray if not + # set the species to gray if it's not a true species + if " x " in species[0] or "sp." in species[0] or "/" in species[0]: + self.tblSpecies.item(R, 1).setForeground(Qt.gray) + else: + self.tblSpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + self.speciesList.append(species[4]) R = R + 1 @@ -228,6 +252,8 @@ def FillAnalysisReport(self, filter): if len(listDates) > 0: self.lstDates.setCurrentRow(0) self.FillSpeciesForDate() + + self.lblDatesSeen.setText("Dates: " + str(len(listDates))) # ****Setup Locations page**** listLocations = self.mdiParent.db.GetLocations(filter, "OnlyLocations", filteredSightingList) @@ -237,7 +263,9 @@ def FillAnalysisReport(self, filter): if len(listLocations) > 0: self.lstLocations.setCurrentRow(0) self.FillSpeciesForLocation() - self.lblLocations.setText("Locations (" + str(len(listLocations)) + ")") + + self.lblLocations.setText("Locations: " + str(len(listLocations))) + self.lblLocationsVisited.setText("Locations: " + str(len(listLocations))) # ****Setup New Species for Dates page**** speciesListFilter = code_Filter.Filter() @@ -256,8 +284,12 @@ def FillAnalysisReport(self, filter): header.setSectionResizeMode(1, QHeaderView.Stretch) self.tblNewYearSpecies.setShowGrid(False) + count = 0 + nonSpeciesTaxaCount = 0 + if len(yearSpecies) > 0: - R = 1 + + R = 0 for ys in yearSpecies: yearItem = QTableWidgetItem() yearItem.setText(ys[0]) @@ -265,12 +297,27 @@ def FillAnalysisReport(self, filter): newYearSpeciesItem.setText(ys[1]) self.tblNewYearSpecies.setItem(R, 0, yearItem) self.tblNewYearSpecies.setItem(R, 1, newYearSpeciesItem) + self.tblNewYearSpecies.item(R, 1).setFont(font) + + # color code the entry. Stylesheet color for full species, gray if not + # set the species to gray if it's not a true species + if " x " in ys[1] or "sp." in ys[1] or "/" in ys[1]: + self.tblNewYearSpecies.item(R, 1).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + else: + self.tblNewYearSpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + count += 1 + R = R + 1 - self.tblNewYearSpecies.removeRow(0) - - self.lblNewYearSpecies.setText("New year species (" + str(len(yearSpecies)) + ")") + + labelText = "New year species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " other taxa" + + self.lblNewYearSpecies.setText(labelText) - # set up tblNewMonthSpecies column headers and widths + # set up tblNewMonthSpecies column headers and widths self.tblNewMonthSpecies.setColumnCount(2) self.tblNewMonthSpecies.setRowCount(len(monthSpecies)+1) self.tblNewMonthSpecies.horizontalHeader().setVisible(False) @@ -278,8 +325,11 @@ def FillAnalysisReport(self, filter): header.setSectionResizeMode(1, QHeaderView.Stretch) self.tblNewMonthSpecies.setShowGrid(False) + count = 0 + nonSpeciesTaxaCount = 0 + if len(monthSpecies) > 0: - R = 1 + R = 0 for ms in monthSpecies: monthItem = QTableWidgetItem() monthItem.setText(ms[0]) @@ -287,17 +337,55 @@ def FillAnalysisReport(self, filter): newMonthSpeciesItem.setText(ms[1]) self.tblNewMonthSpecies.setItem(R, 0, monthItem) self.tblNewMonthSpecies.setItem(R, 1, newMonthSpeciesItem) - R = R + 1 - self.tblNewMonthSpecies.removeRow(0) - - self.lblNewMonthSpecies.setText("New month species (" + str(len(monthSpecies)) + ")") + self.tblNewMonthSpecies.item(R, 1).setFont(font) + + # color code the entry. Stylesheet color for full species, gray if not + # set the species to gray if it's not a true species + if " x " in ms[1] or "sp." in ms[1] or "/" in ms[1]: + self.tblNewMonthSpecies.item(R, 1).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + else: + self.tblNewMonthSpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + count += 1 + + R += 1 + + labelText = "New month species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " other taxa" + + self.lblNewMonthSpecies.setText(labelText) - # set up lstNewLifeSpecies + # set up lstNewLifeSpecies if len(lifeSpecies) > 0: - self.lstNewLifeSpecies.addItems(lifeSpecies) + + R = 0 + + for ls in lifeSpecies: + + self.lstNewLifeSpecies.addItem(ls) + + self.lstNewLifeSpecies.item(R).setFont(font) + + if "/" in ls or "sp." in ls or " x " in ls: + self.lstNewLifeSpecies.item(R).setForeground(Qt.gray) + + else: + self.lstNewLifeSpecies.item(R).setForeground(code_Stylesheet.speciesColor) + + R += 1 + self.lstNewLifeSpecies.setSpacing(2) - - self.lblNewLifeSpecies.setText("New life species (" + str(len(lifeSpecies)) + ")") + + count = self.mdiParent.db.CountSpecies(lifeSpecies) + nonSpeciesTaxaCount = len(lifeSpecies) - count + + labelText = "New life species: " + str(count) + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " other taxa" + + self.lblNewLifeSpecies.setText(labelText) # ****Setup new Location Species page**** countrySpecies = self.mdiParent.db.GetNewCountrySpecies(filter, filteredSightingList, sightingListForSpeciesSubset, self.speciesList) @@ -313,18 +401,39 @@ def FillAnalysisReport(self, filter): header.setSectionResizeMode(1, QHeaderView.Stretch) self.tblNewCountrySpecies.setShowGrid(False) + count = 0 + nonSpeciesTaxaCount = 0 + if len(countrySpecies) > 0: R = 0 - for ms in countrySpecies: + for cs in countrySpecies: + countryItem = QTableWidgetItem() - countryItem.setText(self.mdiParent.db.GetCountryName(ms[0])) + countryItem.setText(self.mdiParent.db.GetCountryName(cs[0])) newCountrySpeciesItem = QTableWidgetItem() - newCountrySpeciesItem.setText(ms[1]) + newCountrySpeciesItem.setText(cs[1]) self.tblNewCountrySpecies.setItem(R, 0, countryItem) self.tblNewCountrySpecies.setItem(R, 1, newCountrySpeciesItem) + # color code the entry. Stylesheet color for full species, gray if not + # set the species to gray if it's not a true species + + self.tblNewCountrySpecies.item(R, 1).setFont(font) + + if " x " in cs[1] or "sp." in cs[1] or "/" in cs[1]: + self.tblNewCountrySpecies.item(R, 1).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + + else: + self.tblNewCountrySpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + count += 1 + R = R + 1 - - self.lblNewCountrySpecies.setText("New country species (" + str(len(countrySpecies)) + ")") + labelText = "New country species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblNewCountrySpecies.setText(labelText) # set up tblNewStateSpecies column headers and widths self.tblNewStateSpecies.setColumnCount(2) @@ -334,20 +443,43 @@ def FillAnalysisReport(self, filter): header.setSectionResizeMode(1, QHeaderView.Stretch) self.tblNewStateSpecies.setShowGrid(False) + count = 0 + nonSpeciesTaxaCount = 0 + if len(stateSpecies) > 0: R = 0 - for ms in stateSpecies: + for ss in stateSpecies: stateItem = QTableWidgetItem() - stateItem.setText(self.mdiParent.db.GetStateName(ms[0])) + stateItem.setText(self.mdiParent.db.GetStateName(ss[0])) newStateSpeciesItem = QTableWidgetItem() - newStateSpeciesItem.setText(ms[1]) + newStateSpeciesItem.setText(ss[1]) self.tblNewStateSpecies.setItem(R, 0, stateItem) self.tblNewStateSpecies.setItem(R, 1, newStateSpeciesItem) + + self.tblNewStateSpecies.item(R, 1).setFont(font) + + if " x " in ss[1] or "sp." in ss[1] or "/" in ss[1]: + self.tblNewStateSpecies.item(R, 1).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + + else: + self.tblNewStateSpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + count += 1 + R = R + 1 - self.tblNewStateSpecies.sortByColumn(0, Qt.AscendingOrder) - - self.lblNewStateSpecies.setText("New state species (" + str(len(stateSpecies)) + ")") - + + labelText = "New state species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblNewStateSpecies.setText(labelText) + + self.tblNewStateSpecies.sortByColumn(0, Qt.AscendingOrder) + + count = 0 + nonSpeciesTaxaCount = 0 + # set up tblNewCountySpecies column headers and widths self.tblNewCountySpecies.setColumnCount(2) self.tblNewCountySpecies.setRowCount(len(countySpecies)) @@ -358,16 +490,35 @@ def FillAnalysisReport(self, filter): if len(countySpecies) > 0: R = 0 - for ms in countySpecies: + for cs in countySpecies: countyItem = QTableWidgetItem() - countyItem.setText(ms[0]) + countyItem.setText(cs[0]) newCountySpeciesItem = QTableWidgetItem() - newCountySpeciesItem.setText(ms[1]) + newCountySpeciesItem.setText(cs[1]) self.tblNewCountySpecies.setItem(R, 0, countyItem) self.tblNewCountySpecies.setItem(R, 1, newCountySpeciesItem) + + self.tblNewCountySpecies.item(R, 1).setFont(font) + + if " x " in cs[1] or "sp." in cs[1] or "/" in cs[1]: + self.tblNewCountySpecies.item(R, 1).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + + else: + self.tblNewCountySpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + count += 1 + R = R + 1 - - self.lblNewCountySpecies.setText("New county species (" + str(len(countySpecies)) + ")") + + labelText = "New county species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblNewCountySpecies.setText(labelText) + + count = 0 + nonSpeciesTaxaCount = 0 # set up tblNewLocationSpecies column headers and widths self.tblNewLocationSpecies.setColumnCount(2) @@ -379,22 +530,44 @@ def FillAnalysisReport(self, filter): if len(locationSpecies) > 0: R = 0 - for ms in locationSpecies: + for ls in locationSpecies: locationItem = QTableWidgetItem() - locationItem.setText(ms[0]) + locationItem.setText(ls[0]) newLocationSpeciesItem = QTableWidgetItem() - newLocationSpeciesItem.setText(ms[1]) + newLocationSpeciesItem.setText(ls[1]) self.tblNewLocationSpecies.setItem(R, 0, locationItem) self.tblNewLocationSpecies.setItem(R, 1, newLocationSpeciesItem) + + self.tblNewLocationSpecies.item(R, 1).setFont(font) + + if " x " in ls[1] or "sp." in ls[1] or "/" in ls[1]: + self.tblNewLocationSpecies.item(R, 1).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + + else: + self.tblNewLocationSpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + count += 1 + R = R + 1 - - self.lblNewLocationSpecies.setText("New location species (" + str(len(locationSpecies)) + ")") + + labelText = "New location species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblNewLocationSpecies.setText(labelText) # ****Setup window's main labels**** - # set main species seen lable text + # set main species seen label text count = self.mdiParent.db.CountSpecies(self.speciesList) + nonSpeciesTaxaCount = self.tblSpecies.rowCount() - count - self.lblTopSpeciesSeen.setText("Species seen: " + str(count)) + labelText = "Species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblTopSpeciesSeen.setText(labelText) # set main location label, using "All Locations" if none others are selected self.mdiParent.SetChildDetailsLabels(self, filter) @@ -427,7 +600,34 @@ def FillSpeciesForDate(self): self.lstSpecies.addItems(speciesList) self.lstSpecies.setSpacing(2) - self.lblSpeciesSeen.setText("Species seen on selected date (" + str(len(speciesList)) + "):") + count = 0 + nonSpeciesTaxaCount = 0 + + font = QFont() + font.setBold(True) + + for R in range(self.lstSpecies.count()): + + self.lstSpecies.item(R).setFont(font) + + speciesName = self.lstSpecies.item(R).text() + + if " x " in speciesName or "sp." in speciesName or "/" in speciesName: + self.lstSpecies.item(R).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + + else: + self.lstSpecies.item(R).setForeground(code_Stylesheet.speciesColor) + count += 1 + + R = R + 1 + + labelText = "Species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblSpeciesSeen.setText(labelText) def FillMap(self): @@ -480,8 +680,58 @@ def FillSpeciesForLocation(self): self.lstLocationUniqueSpecies.addItems(uniqueSpecies) self.lstLocationUniqueSpecies.setSpacing(2) - self.lblLocationSpecies.setText("Species at selected location (" + str(len(speciesList)) + ")") - self.lblLocationUniqueSpecies.setText("Species seen ONLY at selected location (" + str(len(uniqueSpecies)) + ")") + count = 0 + nonSpeciesTaxaCount = 0 + + # set up a bold font + font = QFont() + font.setBold(True) + + for R in range(self.lstLocationSpecies.count()): + + # set font to bold for all entries + self.lstLocationSpecies.item(R).setFont(font) + + # color code the entry. Stylesheet color for full species, gray if not + # set the species to gray if it's not a true species + if " x " in self.lstLocationSpecies.item(R).text() or "sp." in self.lstLocationSpecies.item(R).text() or "/" in self.lstLocationSpecies.item(R).text(): + self.lstLocationSpecies.item(R).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + else: + self.lstLocationSpecies.item(R).setForeground(code_Stylesheet.speciesColor) + count += 1 + + labelText = "Species: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblLocationSpecies.setText(labelText) + + # reset counts + count = 0 + nonSpeciesTaxaCount = 0 + + for R in range(self.lstLocationUniqueSpecies.count()): + + # set font to bold for all entries + self.lstLocationUniqueSpecies.item(R).setFont(font) + + # color code the entry. Stylesheet color for full species, gray if not + # set the species to gray if it's not a true species + if " x " in self.lstLocationUniqueSpecies.item(R).text() or "sp." in self.lstLocationUniqueSpecies.item(R).text() or "/" in self.lstLocationUniqueSpecies.item(R).text(): + self.lstLocationUniqueSpecies.item(R).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + else: + self.lstLocationUniqueSpecies.item(R).setForeground(code_Stylesheet.speciesColor) + count += 1 + + labelText = "Observed only at location: " + str(count) + + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblLocationUniqueSpecies.setText(labelText) def TblSpeciesClicked(self): @@ -1132,14 +1382,14 @@ def setDateFilter(self): def setFirstDateFilter(self): # get location name and type from focus widget. Varies for tables. if self.focusWidget().objectName() == "tblSpecies": - date = self.focusWidget().item(self.focusWidget().currentRow(), 2).text() + date = self.focusWidget().item(self.focusWidget().currentRow(), 3).text() self.mdiParent.setDateFilter(date) def setLastDateFilter(self): # get location name and type from focus widget. Varies for tables. if self.focusWidget().objectName() == "tblSpecies": - date = self.focusWidget().item(self.focusWidget().currentRow(), 3).text() + date = self.focusWidget().item(self.focusWidget().currentRow(), 4).text() self.mdiParent.setDateFilter(date) @@ -1241,7 +1491,10 @@ def scaleMe(self): self.tblNewCountySpecies ]): header = t.horizontalHeader() - header.resizeSection(0, floor(1.2 * textWidth)) + if t == self.tblNewYearSpecies or t == self.tblNewMonthSpecies: + header.resizeSection(0, floor(.6 * textWidth)) + else: + header.resizeSection(0, floor(textWidth)) for r in range(t.rowCount()): t.setRowHeight(r, textHeight * 1.1) diff --git a/code_Compare.py b/code_Compare.py index 99a6c01..d2b690f 100644 --- a/code_Compare.py +++ b/code_Compare.py @@ -1,6 +1,7 @@ # import the GUI forms that we create with Qt Creator import code_Individual import form_Compare +import code_Stylesheet # import the Qt components we'll use # do this so later we won't have to clutter our code with references to parent Qt classes @@ -10,7 +11,8 @@ ) from PyQt5.QtCore import ( - pyqtSignal + pyqtSignal, + Qt ) from PyQt5.QtWidgets import ( @@ -34,6 +36,7 @@ class Compare(QMdiSubWindow, form_Compare.Ui_frmCompare): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" self.resized.connect(self.resizeMe) self.btnCompare.clicked.connect(self.CompareLists) @@ -43,6 +46,13 @@ def __init__(self): self.webView = QWebEngineView() self.myPrinter = QPrinter(QPrinter.HighResolution) + red = str(code_Stylesheet.speciesColor.red()) + green = str(code_Stylesheet.speciesColor.green()) + blue = str(code_Stylesheet.speciesColor.blue()) + + self.lstLeftOnly.setStyleSheet("QListWidget {color: rgb(" + red + "," + green + "," + blue + "); font-weight: bold}") + self.lstRightOnly.setStyleSheet("QListWidget {color: rgb(" + red + "," + green + "," + blue + "); font-weight: bold}") + self.lstBoth.setStyleSheet("QListWidget {color: rgb(" + red + "," + green + "," + blue + "); font-weight: bold}") def html(self): @@ -198,7 +208,8 @@ def CompareLists(self): for s in window.currentSpeciesList: if "(" in s: s = s.split(" (")[0] - leftListSpecies.append(s) + if "/" not in s and " x " not in s and "sp." not in s: + leftListSpecies.append(s) # get right list species rightListSpecies = [] @@ -209,7 +220,8 @@ def CompareLists(self): for s in window.currentSpeciesList: if "(" in s: s = s.split(" (")[0] - rightListSpecies.append(s) + if "/" not in s and " x " not in s and "sp." not in s: + rightListSpecies.append(s) bothLists = [] leftListOnly = [] @@ -244,9 +256,9 @@ def CompareLists(self): self.lstBoth.setSpacing(2) self.lstRightOnly.addItems(rightListOnly) self.lstRightOnly.setSpacing(2) - self.lblLeftListOnly.setText("Species only on This List (" + str(self.lstLeftOnly.count())+")") - self.lblBothLists.setText("Species on Both Lists (" + str(self.lstBoth.count()) + ")") - self.lblRightListOnly.setText("Species only on This List (" + str(self.lstRightOnly.count()) + ")") + self.lblLeftListOnly.setText("Species only on this list: " + str(self.lstLeftOnly.count())) + self.lblBothLists.setText("Species on both lists: " + str(self.lstBoth.count())) + self.lblRightListOnly.setText("Species only on this list: " + str(self.lstRightOnly.count())) def CreateNewIndividual(self, speciesName): @@ -275,7 +287,7 @@ def resizeMe(self): def scaleMe(self): scaleFactor = self.mdiParent.scaleFactor - windowWidth = 800 * scaleFactor + windowWidth = 900 * scaleFactor windowHeight = 500 * scaleFactor self.resize(windowWidth, windowHeight) diff --git a/code_DataBase.py b/code_DataBase.py index 3dfbc7c..d401ba1 100644 --- a/code_DataBase.py +++ b/code_DataBase.py @@ -3,11 +3,18 @@ import csv import zipfile import io +import sys from copy import deepcopy from collections import defaultdict +import datetime +import code_Filter +import json +import piexif +from math import floor +from natsort import natsorted from PyQt5.QtWidgets import ( - QApplication, + QApplication, QMessageBox ) @@ -22,12 +29,22 @@ def __init__(self): self.orderList = [] self.masterFamilyOrderList = [] self.masterLocationList = [] + self.regionList = [] self.countryList = [] self.stateList = [] self.countyList = [] self.locationList = [] + self.validPhotoSpecies = [] + self.cameraList = [] + self.lensList = [] + self.shutterSpeedList = [] + self.apertureList = [] + self.focalLengthList=[] + self.isoList = [] self.sightingList = [] self.eBirdFileOpenFlag = False + self.photoDataFileOpenFlag = False + self.photosNeedSaving = False self.countryStateCodeFileFound = False self.speciesDict = defaultdict() self.yearDict = defaultdict() @@ -40,51 +57,528 @@ def __init__(self): self.checklistDict = defaultdict() self.familySpeciesDict = defaultdict() self.orderSpeciesDict = defaultdict() + self.bblCodeDict = defaultdict() + self.photoDataFile = "" + self.startupFolder = "" self.monthNameDict = ({ - "01":"Jan", - "02":"Feb", - "03":"Mar", - "04":"Apr", - "05":"May", - "06":"Jun", - "07":"Jul", - "08":"Aug", - "09":"Sep", - "10":"Oct", - "11":"Nov", + "01":"Jan", + "02":"Feb", + "03":"Mar", + "04":"Apr", + "05":"May", + "06":"Jun", + "07":"Jul", + "08":"Aug", + "09":"Sep", + "10":"Oct", + "11":"Nov", "12":"Dec" }) self.monthNumberDict = ({ - "Jan":"01", - "Feb":"02", - "Mar":"03", - "Apr":"04", - "May":"05", - "Jun":"06", - "Jul":"07", - "Aug":"08", - "Sep":"09", - "Oct":"10", - "Nov":"11", + "Jan":"01", + "Feb":"02", + "Mar":"03", + "Apr":"04", + "May":"05", + "Jun":"06", + "Jul":"07", + "Aug":"08", + "Sep":"09", + "Oct":"10", + "Nov":"11", "Dec":"12" }) + self.regionNameDict = ({ + "ABA":"ABA Area", + "AOU":"AOU Area", + "NAM":"North America", + "SAM":"South America", + "AFR":"Africa", + "EUR":"Europe", + "ASI":"Asia", + "SPO":"South Polar", + "WHE":"Western Hemisphere", + "EHE":"Eastern Hemisphere", + "WIN":"West Indies", + "CAM":"Central America", + "USL":"USA Lower 48", + "AUA":"Australasia (ABA)", + "AUE":"Australasia (eBird)", + "AUS":"Australia and Territories" + }) + self.regionCodeDict = ({ + "ABA Area":"ABA", + "AOU Area":"AOU", + "North America":"NAM", + "South America":"SAM", + "Africa":"AFR", + "Europe":"EUR", + "Asia":"ASI", + "South Polar":"SPO", + "Western Hemisphere":"WHE", + "Eastern Hemisphere":"EHE", + "West Indies":"WIN", + "Central America":"CAM", + "USA Lower 48":"USL", + "Australasia (ABA)":"AUA", + "Australasia (eBird)":"AUE", + "Australia and Territories":"AUS" + }) + + # look for json files. They must be in the same directory as the script directory + if getattr(sys, 'frozen', False): + # frozen + scriptDirectory = os.path.dirname(sys.executable) + else: + # unfrozen + scriptDirectory = os.path.dirname(os.path.realpath(__file__)) + + # format file names so we can find them regardless of whether we're frozen + stateJsonFile = os.path.join(scriptDirectory, "us-states.json") + countyJsonFile = os.path.join(scriptDirectory, "us-counties-lower48.json") + countryJsonFile = os.path.join(scriptDirectory, "world-countries.json") + + # load us-states json shape file for later use with choropleths + self.state_geo = json.loads(open(stateJsonFile).read()) + +# # create list of US state abbreviations for later use with choropleths +# self.stateCodeList = set() +# for s in self.state_geo["features"]: +# self.stateCodeList.add(s["id"]) +# self.stateCodeList = list(self.stateCodeList) + + # load us-counties-lower48 json shape file for later use with choropleths + self.county_geo = json.loads(open(countyJsonFile).read()) + + # save county code data for easy lookup when processing eBird data file + self.countyCodeDict = defaultdict() + self.countyCodeList = set() + for c in self.county_geo["features"]: + + # save master list of all US county codes for use with choropleths + self.countyCodeList.add(c["id"]) + + if c["properties"]["name"] not in self.countyCodeDict.keys(): + self.countyCodeDict[c["properties"]["name"]] = [[c["id"],c["properties"]["state"]]] + + else: + self.countyCodeDict[c["properties"]["name"]].append([c["id"],c["properties"]["state"]]) + +# self.countyCodeList = list(self.countyCodeList) + + # load world-countries json shape file for later use with choropleths + self.country_geo = json.loads(open(countryJsonFile).read()) + + + + def matchPhoto(self, file): + + # method to suggest a commonName, date, time, and location for a photo + + # get just the filename portion from the full-path filename + fileName = os.path.basename(file) + + # get the EXIF data from the file, if possible + try: + photoExif = piexif.load(file) + except: + photoExif = "" + + # get photo date from EXIF + try: + photoDateTime = photoExif["Exif"][piexif.ExifIFD.DateTimeOriginal].decode("utf-8") + + # parse EXIF data for date/time components + photoDate = photoDateTime[0:4] + "-" + photoDateTime[5:7] + "-" + photoDateTime[8:10] + photoTime = photoDateTime[11:13] + ":" + photoDateTime[14:16] + except: + photoDate = "" + photoTime = "" + + # use date and time to select a sighting location from db + filter = code_Filter.Filter() + filter.setStartDate(photoDate) + filter.setEndDate(photoDate) + filter.setTime(photoTime) + locations = self.GetLocations(filter, "OnlyLocations") + + # if we find only one location, return it + if len(locations) == 1: + photoLocation = locations[0] + + else: + photoLocation = "" + + # if no single location matched the photo, but we have a date, find which checklist is closest to the photo datetime + if photoLocation == "" and photoDate != "": + # try finding a checklist with the right date + filter = code_Filter.Filter() + filter.setStartDate(photoDate) + filter.setEndDate(photoDate) + locations = self.GetLocations(filter, "OnlyLocations") + + if len(locations) == 1: + photoLocation = locations[0] + possibleStartTimes = self.GetStartTimes(filter) + if len(possibleStartTimes) > 0: + photoTime = possibleStartTimes[0] + + # if more than one location was found, find which was visited closest to the photo time + elif len(locations) > 1 and photoTime != "": + filter = code_Filter.Filter() + filter.setStartDate(photoDate) + filter.setEndDate(photoDate) + checklists = self.GetChecklists(filter) + # create list to store location and checklist time for closest one to our photo's datetime + # third list entry starts with total minutes in a day (most gap possible) + checklistTimeDifference = ["", "", 24 * 60] + photoMinutesSinceMidnight = 60 * int(photoTime[0:2]) + int(photoTime[3:5]) + + for c in checklists: + + checklistTime = c[5] + + checklistDuration = c[7] + if checklistDuration == "": + checklistDuration = "0" + + checklistStartMinSinceMidnight = 60 * int(checklistTime[0:2]) + int(checklistTime[3:5]) + checklistEndMinSinceMidnight = checklistStartMinSinceMidnight + int(checklistDuration) + + # check if this checklist's time is closer to our photo's time than any other checklist looped through so far + # If so, save its data into checklistTimeDifference + if abs(photoMinutesSinceMidnight - checklistStartMinSinceMidnight) < checklistTimeDifference[2]: + checklistTimeDifference = [c[3], c[5], abs(photoMinutesSinceMidnight - checklistStartMinSinceMidnight)] + + if abs(photoMinutesSinceMidnight - checklistEndMinSinceMidnight) < checklistTimeDifference[2]: + checklistTimeDifference = [c[3], c[5], abs(photoMinutesSinceMidnight - checklistEndMinSinceMidnight)] + + if checklistTimeDifference[0] != "": + photoLocation = checklistTimeDifference[0] + photoTime = checklistTimeDifference[1] + + + # try to use file name to match commonName using date, time, and location found already + if photoLocation != "" and photoDate != "" and photoTime != "": + filter = code_Filter.Filter() + filter.setLocationType("Location") + filter.setLocationName(photoLocation) + filter.setStartDate(photoDate) + filter.setEndDate(photoDate) + filter.setTime(photoTime) + possibleCommonNames = self.GetSpecies(filter) + + # set up translation table to remove inconvenient characters from file name + # and possiblecommonNames + translation_table = dict.fromkeys(map(ord, "0123456789-' "), None) + + # make file name lower case and remove inconvenient characters + fileName = str(fileName) + fileName = fileName.lower() + fileName = fileName.translate(translation_table) + + # create list to store most likely commonName and number of matching characters + mostLikelyCommonName = [0, "", ""] + + # cycle through possibleCommonNames, testing them piece by piece + # to find which matches the most number of consecutive characters + + for pcn in possibleCommonNames: + lowerCasePcn = pcn.lower() + lowerCasePcn = lowerCasePcn.translate(translation_table) + possibleCommonNameLength = len(lowerCasePcn) + for i in range(possibleCommonNameLength): + for ii in range(i + 1, possibleCommonNameLength + 1): + if lowerCasePcn[i:ii] in fileName: + if len(lowerCasePcn[i:ii]) > mostLikelyCommonName[0]: + mostLikelyCommonName[0] = len(lowerCasePcn[i:ii]) + mostLikelyCommonName[1] = pcn + mostLikelyCommonName[2] = lowerCasePcn[i:ii] + if len(lowerCasePcn[i:ii]) == len(lowerCasePcn): + # matched the full possible name, so stop checking + break + + photoCommonName = mostLikelyCommonName[1] + + else: + photoCommonName = "" + + photoMatchData = {} + photoMatchData["photoLocation"] = photoLocation + photoMatchData["photoDate"] = photoDate + photoMatchData["photoTime"] = photoTime + photoMatchData["photoCommonName"] = photoCommonName + + return(photoMatchData) + + + def removeUnfoundPhotos(self): + + count = 0 + + # method to remove photos from database + # create filter with no settings to retrieve every photo in db + filter = code_Filter.Filter() + + # get all sightings with photos + sightings = self.GetSightingsWithPhotos(filter) + + for s in sightings: + for p in s["photos"]: + if not os.path.isfile(p): + s["photos"].remove(p) + count += 1 + + # return the number of removed files + return(count) + + + def removePhotoFromDatabase(self, location, date, time, commonName, photoFileName): + + # method to remove photos from database + filter = code_Filter.Filter() + filter.setLocationType("Location") + filter.setLocationName(location) + if date != "": + filter.setStartDate(date) + filter.setEndDate(date) + if time != "": + filter.setTime(time) + filter.setSpeciesName(commonName) + + # get sightings that match the filter. Should only be a single sighting. + sightings = self.GetSightingsWithPhotos(filter) + + for s in sightings: + if "photos" in s.keys(): + for p in s["photos"]: + if p["fileName"] == photoFileName: + s["photos"].remove(p) + + # if we've removed all the photos for this sighting, we need to remove the "photos" entry in the dict + if len(s["photos"]) == 0: + s.pop("photos", None) + + + def getPhotoData(self, fileName): + photoData = {} + + # try to get EXIF data + + try: + exif_dict = piexif.load(fileName) + except: + exif_dict = "" + + try: + photoCamera = exif_dict["0th"][piexif.ImageIFD.Model].decode("utf-8") + except: + photoCamera = "" + try: + photoLens = exif_dict["Exif"][piexif.ExifIFD.LensModel].decode("utf-8") + except: + photoLens = "" + try: + shutterSpeedFraction = exif_dict["Exif"][piexif.ExifIFD.ExposureTime] + photoShutterSpeed = floor(shutterSpeedFraction[1]/shutterSpeedFraction[0]) + photoShutterSpeed = "1/" + str(photoShutterSpeed) + except: + photoShutterSpeed = "" + try: + photoAperture = exif_dict["Exif"][piexif.ExifIFD.FNumber] + photoAperture = round(photoAperture[0] / photoAperture[1], 1) + except: + photoAperture = "" + try: + photoISO = exif_dict["Exif"][piexif.ExifIFD.ISOSpeedRatings] + except: + photoISO = "" + try: + photoFocalLength = exif_dict["Exif"][piexif.ExifIFD.FocalLength] + photoFocalLength = floor(photoFocalLength[0] / photoFocalLength[1]) + photoFocalLength = str(photoFocalLength) + " mm" + except: + photoFocalLength = "" + + # get photo date from EXIF + try: + photoDateTime = exif_dict["Exif"][piexif.ExifIFD.DateTimeOriginal].decode("utf-8") + + #parse EXIF data for date/time components + photoExifDate = photoDateTime[0:4] + "-" + photoDateTime[5:7] + "-" + photoDateTime[8:10] + photoExifTime = photoDateTime[11:13] + ":" + photoDateTime[14:16] + except: + photoExifDate = "Date unknown" + photoExifTime = "Time unknown" + + photoData["fileName"] = fileName + photoData["camera"] = photoCamera + photoData["lens"] = photoLens + photoData["shutterSpeed"] = str(photoShutterSpeed) + photoData["aperture"] = str(photoAperture) + photoData["iso"] = str(photoISO) + photoData["focalLength"] = str(photoFocalLength) + photoData["time"] = photoExifTime + photoData["date"] = photoExifDate + photoData["rating"] = "0" + + return(photoData) + + + def addPhotoToDatabase(self, filter, photoData): + + # check that file still exists before proceeding + if os.path.isfile(photoData["fileName"]): + + # get sightings that match the filter. Should only be a single sighting. + sightings = self.GetSightings(filter) + + if len(sightings) > 0: + + s = sightings[0] + + if "photos" not in s.keys(): + s["photos"] = [photoData] + + else: + if photoData not in s["photos"]: + s["photos"].append(photoData) + + # add photoData to db lists + self.addPhotoDataToDb(photoData) + + + def writePhotoDataToFile(self, fileName): + + # get all sightings with photos + filter = code_Filter.Filter() + sightings = self.GetSightingsWithPhotos(filter) + + # set up writing CSV to fileName + with open(fileName, mode='w') as photoDataFile: + photoDataWriter = csv.writer(photoDataFile, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL) + photoDataWriter.writerow(["ChecklistID", "CommonName", "FileName", "Camera", "Lens", "ShutterSpeed", "Aperture", "ISO", "FocalLength", "Rating"]) + + for s in sightings: + for p in s["photos"]: + try: + photoDataWriter.writerow([ + s["checklistID"], + s["commonName"], + p["fileName"], + p["camera"], + p["lens"], + p["shutterSpeed"], + p["aperture"], + p["iso"], + p["focalLength"], + p["rating"] + ]) + except IOError as err: + msg = QMessageBox() + msg.setIcon(QMessageBox.Warning) + msg.setText("Error occurred while saving the photo data to disk.\n" + s["commonName"] + " " + s["checklistID"] + "\n"+ str(err)) + msg.setWindowTitle("Save Error") + msg.setStandardButtons(QMessageBox.Ok) + msg.exec_() + + + def readPhotoDataFromFile(self, fileName): + + with open(fileName, mode='r') as photoDataFile: + csv_reader = csv.DictReader(photoDataFile) + + try: + + for row in csv_reader: + + photoData = {} + filter = code_Filter.Filter() + filter.setChecklistID(row["ChecklistID"]) + filter.setSpeciesName(row["CommonName"]) + + photoData["fileName"] = row["FileName"] + photoData["camera"] = row["Camera"] + photoData["lens"] = row["Lens"] + photoData["shutterSpeed"] = row["ShutterSpeed"] + photoData["aperture"] = row["Aperture"] + photoData["iso"] = row["ISO"] + photoData["focalLength"] = row["FocalLength"] + + if "Rating" in row.keys(): + if row["Rating"] in ["0", "1", "2", "3", "4", "5"]: + photoData["rating"] = row["Rating"] + else: + photoData["rating"] = "0" + else: + photoData["rating"] = "0" + + self.addPhotoToDatabase(filter, photoData) + + except: + pass + + self.photoDataFileOpenFlag = True + + + def refreshPhotoLists(self): + + self.cameraList = [] + self.lensList = [] + self.shutterSpeedList = [] + self.apertureList = [] + self.focalLengthList=[] + self.isoList = [] - def CountSpecies(self, speciesList): + cameraSet = set() + lensSet = set() + shutterSpeedSet = set() + apertureSet= set() + focalLengthSet = set() + isoSet = set() - # method to count true species in a list. Entries with parens, /, or sp. should not be counted, + for s in self.sightingList: + if "photos" in s.keys(): + for p in s["photos"]: + if p["camera"] != "": + cameraSet.add(p["camera"]) + if p["lens"] != "": + lensSet.add(p["lens"]) + if p["shutterSpeed"] != "": + shutterSpeedSet.add(p["shutterSpeed"]) + if p["aperture"] != "": + apertureSet.add(p["aperture"]) + if p["iso"] != "": + isoSet.add(p["iso"]) + if p["focalLength"] != "": + focalLengthSet.add(p["focalLength"]) + + self.cameraList = list(cameraSet) + self.lensList = list(lensSet) + self.shutterSpeedList = natsorted(list(shutterSpeedSet), reverse=True) + self.apertureList = natsorted(list(apertureSet)) + self.isoList = natsorted(list(isoSet)) + self.focalLengthList = natsorted(list(focalLengthSet)) + + + def CountSpecies(self, speciesList): + + # method to count true species in a list. Entries with parens, /, or sp. or hybrids should not be counted, # unless no non-paren entries exist for that species.append speciesSet = set() # use a set (which deletes duplicates) to hold species names # remove parens from species names if they exist for s in speciesList: - if "(" in s: + if "(" in s and " x " not in s: speciesSet.add(s.split(" (")[0]) elif "sp." in s: pass elif "/" in s: pass + elif " x " in s: + pass else: speciesSet.add(s) @@ -93,14 +587,15 @@ def CountSpecies(self, speciesList): return(count) - def ReadCountryStateCodeFile(self, dataFile): + + def ReadCountryStateCodeFile(self, dataFile): # initialize variable used to store CSV file's data countryCodeData = [] - # open the country and stae code data file + # open the country and state code data file # and read its lines into a list for future searching - with open(dataFile, 'r', errors='replace') as csvfile: + with open(dataFile, 'r', errors='replace') as csvfile: csvdata = csv.reader(csvfile, delimiter=',', quotechar='"') for line in csvdata: countryCodeData.append(line) @@ -114,26 +609,26 @@ def ReadCountryStateCodeFile(self, dataFile): # append the long country and state names when found in the country state code data for l in self.masterLocationList: - # append two place holders in the masterLocationList for long country and state names - l.append("") - l.append("") - +# # append two place holders in the masterLocationList for long country and state names +# l.append("") +# l.append("") +# for c in countryCodeData: # find the long country name by looking for a perfect match of "cc-" for the state code # this match is actually for the country because states have characters # after the - character - if l[0] + "-" == c[1]: + if l["countryCode"] + "-" == c[1]: # when found, save the long country name to the masterLocationList - l[4] = c[2] + l["countryName"] = c[2] self.countryList.append(c[2]) # look for a perfect match for the state code - if l[1] == c[1]: + if l["stateCode"] == c[1]: # when found, save the long state name to the masterLocationList - l[5] = c[2] + l["stateName"] = c[2] self.stateList.append(c[2]) # no need to keep searching. We've found our long names. @@ -147,11 +642,14 @@ def ReadCountryStateCodeFile(self, dataFile): self.countryList.sort() self.stateList.sort() + self.countryCodeData = countryCodeData self.countryStateCodeFileFound = True def ReadDataFile(self, DataFile): + self.ClearDatabase() + # extract data from zip file if user has chosen a zip file if os.path.splitext(DataFile[0])[1] == ".zip": @@ -174,82 +672,375 @@ def ReadDataFile(self, DataFile): if os.path.splitext(DataFile[0])[1] == ".csv": csvfile = open(DataFile[0], 'r') - # try to process CSV values from csvfile. Go to except if we have problems -# try: - csvdata = csv.reader(csvfile, delimiter=',', quotechar='"') - + # process CSV values from csvfile. + csvdata = csv.DictReader(csvfile) + # initialize temporary list variable to hold location data thisMasterLocationEntry = [] for line in csvdata: - + # convert date format from mm-dd-yyyy to yyyy-mm-dd for international standard and sorting ability - line[10] = line[10][6:]+ "-" + line[10][0:2] + "-" + line[10][3:5] + # THIS IS NO LONGER NECESSARY, AS IN MARCH 2019 EBIRD CHANGED THE DATA FORMAT TO THE ONE WE PREFER + # line[10] = line[10][6:] + "-" + line[10][0:2] + "-" + line[10][3:5] # append state name in parentheses to county name to differentiate between # counties that have the same name but are in different states - if line[6] != "": - line[6] = line[6] + " (" + line[5] + ")" - + if line["County"] != "": + line["County"] = line["County"] + " (" + line["State/Province"] + ")" + # add blank elements to list so we can later add family and order names if taxonomic file exists # also add blank line for subspecies name - while len(line) < 24: - line.append("") # store full name (maybe a subspecies) in sighting - subspeciesName = deepcopy(line[1]) - line[23]= subspeciesName + subspeciesName = deepcopy(line["Common Name"]) + line["Subspecies"] = subspeciesName # remove any subspecies data in parentheses in species name - if "(" in line[1]: - line[1] = line[1][:line[1].index("(")-1] + # but keep "(hybrid)" if it's in the name + if "(" in line["Common Name"]: + if "hybrid" not in line["Common Name"]: + line["Common Name"] = line["Common Name"][:line["Common Name"].index("(") - 1] # convert 12-hour time format to 24-hour format for easier sorting and display - time = line[11] + time = line["Time"] if "AM" in time: - time = line[11][0:5] + time = line["Time"][0:5] if "PM" in time: - time = line[11][0:5] - hour = int(line[11][0:2]) + time = line["Time"][0:5] + hour = int(line["Time"][0:2]) hour = str(hour + 12) if hour == "24": hour = "12" - time = hour + line[11][2:5] - line[11] = time + time = hour + line["Time"][2:5] + line["Time"] = time # add sighting to the main database for use by later searches etc. # this sightingList will be used in nearly every search performed by user - # convert line's CSV data into a dictionary for code legibility + # convert line's CSV data into our own dictionary to remove spaces, abbreviations, etc. thisSightingDict = defaultdict( - checklistID = line[0], - commonName = line[1], - scientificName = line[2], - subspeciesName= line[23], - taxonomicOrder = line[3], - count = line[4], - country = line[5][0:2], - state = line[5], - county = line[6], - location = line[7], - latitude = line[8], - longitude = line[9], - date = line[10], - time = line[11], - protocol = line[12], - duration = line[13], - allObsReported = line[14], - distance = line[15], - areaCovered = line[16], - observers = line[17], - breedingCode = line[18], - speciesComments = line[19], - checklistComments = line[20] + checklistID=line["Submission ID"], + commonName=line["Common Name"], + scientificName=line["Scientific Name"], + subspeciesName=line["Subspecies"], + taxonomicOrder=line["Taxonomic Order"], + count=line["Count"], + country=line["State/Province"][0:2], + state=line["State/Province"], + county=line["County"], + location=line["Location"], + latitude=line["Latitude"], + longitude=line["Longitude"], + date=line["Date"], + time=line["Time"], + protocol=line["Protocol"], + duration=line["Duration (Min)"], + allObsReported=line["All Obs Reported"], + distance=line["Distance Traveled (km)"], + areaCovered=line["Area Covered (ha)"], + observers=line["Number of Observers"], + breedingCode=line["Breeding Code"], + checklistComments=line["Checklist Comments"], + regionCodes=[] ) - self.sightingList.append(thisSightingDict) + if thisSightingDict["areaCovered"] is None: + thisSightingDict["areaCovered"] = "" + if thisSightingDict["distance"] is None: + thisSightingDict["distance"] = "" + if thisSightingDict["observers"] is None: + thisSightingDict["observers"] = "" + if thisSightingDict["breedingCode"] is None: + thisSightingDict["breedingCode"] = "" + if "Observation Details" in line.keys(): + thisSightingDict["speciesComments"]=line["Observation Details"] + if "Species Comments" in line.keys(): + thisSightingDict["speciesComments"]=line["Species Comments"] + if thisSightingDict["speciesComments"] is None: + thisSightingDict["speciesComments"] = "" + if thisSightingDict["checklistComments"] is None: + thisSightingDict["checklistComments"] = "" + thisSightingDict["family"] = "" + thisSightingDict["order"] = "" + + # If a US sighting, use countyCodeDict to assign the unique 5-digit FIPS code for the county + # we'll use this for choropleths + if thisSightingDict["country"] == "US" and thisSightingDict["state"] not in ["US-HI", "US-AK"]: + countyNameWithoutParentheses = thisSightingDict["county"].split(" (")[0] + if countyNameWithoutParentheses != "": + for c in self.countyCodeDict[countyNameWithoutParentheses]: + if c[1] == thisSightingDict["state"][3:5]: + thisSightingDict["countyCode"] = c[0] + + + # add abbreviations for the regions recognized by eBird + + # ---------------------------------------- + # add ABA if in US, Canada, or St. Pierre et Miquelon, but exclude Hawaii + if thisSightingDict["country"] in ["US", "CA", "PM"]: + if thisSightingDict["state"] != "US-HI": + thisSightingDict["regionCodes"].append("ABA") + + # ---------------------------------------- + # add AOU if if in US, Canada, St. Pierre et Miquelon, Mexico, Central America + if thisSightingDict["country"] in [ + "US", "CA", "PM", "MX", "GT", "SV", "HN", "CR", "PA", + "CU", "HT", "DO", "JM", "KY", "PR", "VG", "VI", "AI", + "MF", "BL", "BQ", "KN", "AG", "MS", "GP", "DM", "BS", + "BB", "GD", "LC", "VC", "BM", "CP", "NI" + ]: + thisSightingDict["regionCodes"].append("AOU") + + if thisSightingDict["state"] in [ + "CO-SAP", "UM-67", "UM-71" + ]: + thisSightingDict["regionCodes"].append("AOU") + + # ---------------------------------------- + # add USL if if in Lower 48 US states listing region as designated by eBird + + if thisSightingDict["country"] == "US": + if thisSightingDict["state"] not in ["US-AK", "US-HI"]: + thisSightingDict["regionCodes"].append("USL") + + + #--------------------------------------- + # add AFR if if in Africa + if thisSightingDict["country"] in [ + "DZ", "AO", "SH", "BJ", "BW", "BF", "BI", "CM", "CV", "CF", "TD", + "KM", "CG", "CD", "DJ", "GQ", "ER", "SZ", "ET", "GA", "GM", + "GH", "GN", "GW", "CI", "KE", "LS", "LR", "LY", "MG", "MW", "ML", + "MR", "MU", "YT", "MA", "MZ", "NA", "NE", "NG", "ST", "RE", "RW", + "ST", "SN", "SC", "SL", "SO", "ZA", "SS", "SH", "SD", "SZ", "TZ", + "TG", "TN", "UG", "CD", "ZM", "TZ", "ZW" + ]: + thisSightingDict["regionCodes"].append("AFR") + + if thisSightingDict["state"] == "ES-CN": + thisSightingDict["regionCodes"].append("AFR") + + if thisSightingDict["country"] == "EG": + if thisSightingDict["state"] not in ["EG-PTS", "EG-JS", "EG-SIN"]: + thisSightingDict["regionCodes"].append("AFR") + + # ---------------------------------------- + # add ASI if if in Asia + if thisSightingDict["country"] in [ + "AF", "AM", "AZ", "BH", "BD", "BT", "BN", "KH", "CN", "CX", "CC", + "IO", "GE", "HK", "IN", "IR", "IQ", "IL", "JP", "JO", + "KW", "KG", "LA", "LB", "MO", "MY", "MV", "MN", "MM", "NP", "KP", + "OM", "PK", "PS", "PH", "QA", "SA", "SG", "KR", "LK", "SY", "TW", + "TJ", "TH", "TM", "AE", "UZ", "VN", "YE", "SD", "SZ", "TZ", + "TG", "TN", "UG", "CD", "ZM", "TZ", "ZW" + ]: + thisSightingDict["regionCodes"].append("ASI") + + if thisSightingDict["country"] == "TR": + if thisSightingDict["state"] not in ["TR-22", "TR-39", "TR-59"]: + thisSightingDict["regionCodes"].append("ASI") + + if thisSightingDict["country"] == "KZ": + if thisSightingDict["state"] not in ["KZ-ATY", "KZ-ZAP"]: + thisSightingDict["regionCodes"].append("ASI") - #add sighting to checklistDict, even if it's a sp or / species + if thisSightingDict["country"] == "ID": + if thisSightingDict["state"] != "ID-IJ": + thisSightingDict["regionCodes"].append("ASI") + + if thisSightingDict["country"] == "EG": + if thisSightingDict["state"] in ["EG-PTS", "EG-JS", "EG-SIN"]: + thisSightingDict["regionCodes"].append("ASI") + + if thisSightingDict["country"] == "RU": + if thisSightingDict["state"] in [ + "RU-YAN", "RU-KHM", "RU-TYU", "RU-OMS", "RU-TOM", "RU-NVS", + "RU-ALT", "RU-KEM", "RU-AL", "RU-KK", "RU-KYA", "RU-TY", + "RU-IRK", "RU-SA", "RU-BU", "RU-ZAB", "RU-AMU", "RU-KHA", + "RU-YEV", "RU-PRI", "RU-MAG", "RU-CHU", "RU-KAM", "RU-SAK" + ]: + thisSightingDict["regionCodes"].append("ASI") + + # ---------------------------------------- + # add ATL if if in Atlantic listing region + + # Note that pelagic sightings more than 200 miles from a state + # will not be counted here because I don't know how to calculate + # if a log/lat sighting is 200 miles from a state + + if thisSightingDict["country"] in [ + "BM", "FK", "SH" + ]: + thisSightingDict["regionCodes"].append("ATL") + + + # ---------------------------------------- + # add AUE if if in Australasia (eBird) listing region + + if thisSightingDict["country"] in [ + "AU", "AC", "NF", "NZ", "SB", "VU", "NC", "PG", + ]: + thisSightingDict["regionCodes"].append("AUE") + + if thisSightingDict["state"] in [ + "ID-IJ", "ID-MA" + ]: + thisSightingDict["regionCodes"].append("AUE") + + + # ---------------------------------------- + # add AUA if if in Australasia (ABA) listing region + + if thisSightingDict["country"] in [ + "AU", "ID" + ]: + thisSightingDict["regionCodes"].append("AUA") + + + # ---------------------------------------- + # add AUS if if in Australia listing region as designated by eBird + + if thisSightingDict["country"] in [ + "AU", "HM", "CX", "CC", "NF", "AC" + ]: + thisSightingDict["regionCodes"].append("AUS") + + + # ---------------------------------------- + # add EUR if if in Europe listing region as designated by eBird + + if thisSightingDict["country"] in [ + "AL", "AD", "AT", "BY", "BE", "BA", "BG", "HR", "CY", "CZ", "DK", + "EE", "FO", "FI", "FR", "DE", "GI", "GR", "HU", "IS", "IE", "IM", + "IT", "RS", "LV", "LI", "LT", "LU", "MK", "MT", "MD", "MC", "ME", + "NL", "NO", "PL", "PT", "RO", "RU", "SM", "RS", "SK", "SI", + "SE", "CH", "UA", "GB", "VA", "JE" + ]: + thisSightingDict["regionCodes"].append("EUR") + + # include Spain, but not Canaries + if thisSightingDict["country"] == "ES": + if thisSightingDict["state"] != "ES-CN": + thisSightingDict["regionCodes"].append("EUR") + + # include Russia, but exclude Asian regions of Russia + if thisSightingDict["country"] == "RU": + if thisSightingDict["state"] not in [ + "RU-YAN", "RU-KHM", "RU-TYU", "RU-OMS", "RU-TOM", "RU-NVS", + "RU-ALT", "RU-KEM", "RU-AL", "RU-KK", "RU-KYA", "RU-TY", + "RU-IRK", "RU-SA", "RU-BU", "RU-ZAB", "RU-AMU", "RU-KHA", + "RU-YEV", "RU-PRI", "RU-MAG", "RU-CHU", "RU-KAM", "RU-SAK" + ]: + thisSightingDict["regionCodes"].append("EUR") + + # include European areas of Turkey + if thisSightingDict["state"] in ["TR-22", "TR-39", "TR-59"]: + thisSightingDict["regionCodes"].append("EUR") + + # include European areas of Kazakhstan + if thisSightingDict["state"] in ["KZ-ATY", "KZ-ZAP"]: + thisSightingDict["regionCodes"].append("EUR") + + + # ---------------------------------------- + # add NAM if if in North America listing region as designated by eBird + + if thisSightingDict["country"] in [ + "CA", "PM", "MX", "GT", "SV", "HN", "CR", "PA", + "CU", "HT", "DO", "JM", "KY", "PR", "VG", "VI", "AI", + "MF", "BL", "BQ", "KN", "AG", "MS", "GP", "DM", "BS", + "BB", "GD", "LC", "VC", "BM", "CP", "GL", "NI" + ]: + thisSightingDict["regionCodes"].append("NAM") + + if thisSightingDict["state"] in [ + "CO-SAP" + ]: + thisSightingDict["regionCodes"].append("NAM") + + if thisSightingDict["country"] == "US": + if thisSightingDict["state"] != "US-HI": + thisSightingDict["regionCodes"].append("NAM") + + + # ---------------------------------------- + # add SAM if if in South America listing region as designated by eBird + + if thisSightingDict["country"] in [ + "AR", "BO", "BR", "CL", "CO", "FK", "GF", + "GY", "GY", "PY", "PE", "SR", "UY", "VE", "TT", "CW", "AW" + ]: + thisSightingDict["regionCodes"].append("SAM") + + if thisSightingDict["state"] in [ + "BQ-BO" + ]: + thisSightingDict["regionCodes"].append("SAM") + + if thisSightingDict["country"] == "EC" and thisSightingDict["state"] != "EC-W": + thisSightingDict["regionCodes"].append("SAM") + + + # ---------------------------------------- + # add WIN if if in West Indies listing region as designated by eBird + + if thisSightingDict["country"] in [ + "AI", "AG", "AW", "BS", "BB", "VG", "KY", "VI" + "CU", "DM", "DO", "GD", "GP", "HT", "JM", "MQ", + "MS", "AN", "PR", "KN", "LC", "VC", "TT", "TC" + ]: + thisSightingDict["regionCodes"].append("WIN") + + if thisSightingDict["state"] == "CO-SAP": + thisSightingDict["regionCodes"].append("WIN") + + + # ---------------------------------------- + # add CAM if if in Central America listing region as designated by eBird + + if thisSightingDict["country"] in [ + "BZ", "CR", "SV", "GT", "HN", "NI", "PA" + ]: + thisSightingDict["regionCodes"].append("CAM") + + + # ---------------------------------------- + # add SPO if if in South Polar listing region as designated by eBird + + if thisSightingDict["country"] in [ + "AQ", "BV", "GS", "HM" + ]: + thisSightingDict["regionCodes"].append("SPO") + + + # ---------------------------------------- + # add WH if if in Western Hemisphere listing region as designated by eBird + + if "NAM" in thisSightingDict["regionCodes"]: + thisSightingDict["regionCodes"].append("WHE") + + if "SAM" in thisSightingDict["regionCodes"]: + thisSightingDict["regionCodes"].append("WHE") + + if thisSightingDict["country"] in [ + "CP", "BM", "FK" + ]: + thisSightingDict["regionCodes"].append("WHE") + + if thisSightingDict["state"] in [ + "US-HI", "UM-67", "UM-71", "EC-W" + ]: + thisSightingDict["regionCodes"].append("WHE") + + + # ------------------------------------------------------ + # add EH if in Eastern Hemisphere (not Western, and not South Polar) + + if "WHE" not in thisSightingDict["regionCodes"] and "SPO" not in thisSightingDict["regionCodes"]: + thisSightingDict["regionCodes"].append("EHE") + + + # add sighting to checklistDict, even if it's a sp or / species # use checklistID as the key checklistID = thisSightingDict["checklistID"] if checklistID not in self.checklistDict.keys(): @@ -257,9 +1048,12 @@ def ReadDataFile(self, DataFile): else: self.checklistDict[checklistID].append(thisSightingDict) - #add sighting to other dicts only if it's a full species, not a / or sp. + # add sighting to other dicts only if it's a full species, not a / or sp. commonName = thisSightingDict["commonName"] if ("/" not in commonName) and ("sp." not in commonName): + + self.allSpeciesList.append(commonName) + # use species common name as key if commonName not in self.speciesDict.keys(): self.speciesDict[commonName] = [thisSightingDict] @@ -267,7 +1061,7 @@ def ReadDataFile(self, DataFile): self.speciesDict[commonName].append(thisSightingDict) # also add subspecies as key to speciesDict - # to faciliate lookup + # to facilitate lookup subspeciesName = thisSightingDict["subspeciesName"] if subspeciesName not in self.speciesDict.keys(): self.speciesDict[subspeciesName] = [thisSightingDict] @@ -297,22 +1091,31 @@ def ReadDataFile(self, DataFile): self.dateDict[date] = [thisSightingDict] else: self.dateDict[date].append(thisSightingDict) - + + # add sighting to regionDict + # use 3-character code as key + regionCodes = thisSightingDict["regionCodes"] + for r in regionCodes: + if r not in self.regionDict.keys(): + self.regionDict[r] = [thisSightingDict] + else: + self.regionDict[r].append(thisSightingDict) + # add sighting to countryDict # use 2-character code as key - country = thisSightingDict["country"] - if country not in self.countryDict.keys(): - self.countryDict[country] = [thisSightingDict] + countryCode = thisSightingDict["country"] + if countryCode not in self.countryDict.keys(): + self.countryDict[countryCode] = [thisSightingDict] else: - self.countryDict[country].append(thisSightingDict) + self.countryDict[countryCode].append(thisSightingDict) # add sighting to stateDict # use cc-ss code as the key - state = thisSightingDict["state"] - if state not in self.stateDict.keys(): - self.stateDict[state] = [thisSightingDict] + stateCode = thisSightingDict["state"] + if stateCode not in self.stateDict.keys(): + self.stateDict[stateCode] = [thisSightingDict] else: - self.stateDict[state].append(thisSightingDict) + self.stateDict[stateCode].append(thisSightingDict) # add sighting to countyDict # use county name as key @@ -333,58 +1136,44 @@ def ReadDataFile(self, DataFile): self.locationDict[location].append(thisSightingDict) # get just the location data from this particular sighting - thisMasterLocationEntry = [country, state, county, location] + # thisMasterLocationEntry = [country, state, county, location] + thisMasterLocationEntry = defaultdict() + thisMasterLocationEntry["regionCodes"] = regionCodes + thisMasterLocationEntry["countryCode"] = countryCode + thisMasterLocationEntry["stateCode"] = stateCode + thisMasterLocationEntry["county"] = county + thisMasterLocationEntry["location"] = location + # if this location isn't already in the list, add it # we use this list later for populating the filter list of countries, states, counties, locations if thisMasterLocationEntry not in self.masterLocationList: self.masterLocationList.append(thisMasterLocationEntry) - self.allSpeciesList.append(commonName) - self.countryList.append(country) - self.stateList.append(state) + for r in regionCodes: + self.regionList.append(self.GetRegionName(r)) + self.countryList.append(countryCode) + self.stateList.append(stateCode) if county != "": self.countyList.append(county) self.locationList.append(location) - -# except (IndexError, RuntimeError, TypeError, NameError, KeyError): -# self.allSpeciesList = [] -# self.currentSpeciesList = [] -# self.masterLocationList = [] -# self.countryList = [] -# self.stateList = [] -# self.countyList = [] -# self.locationList = [] -# self.sightingList = [] -# self.eBirdFileOpenFlag = False -# msg = QMessageBox() -# msg.setIcon(QMessageBox.Warning) -# msg.setText("The file failed to load.\n\nPlease check that it is a valid eBird data file.\n") -# msg.setWindowTitle("File failed to load") -# msg.setStandardButtons(QMessageBox.Ok) -# msg.exec_() -# csvfile.close() -# return + + self.sightingList.append(thisSightingDict) csvfile.close() - # remove csv header row from list - self.allSpeciesList.pop(0) - self.locationList.pop(0) - self.sightingList.pop(0) - self.countryList.pop(0) - self.stateList.pop(0) - # use set function to remove duplicates and then return to a list self.allSpeciesList = list(set(self.allSpeciesList)) + self.regionList = list(set(self.regionList)) self.countryList = list(set(self.countryList)) self.stateList = list(set(self.stateList)) self.locationList = list(set(self.locationList)) # sort 'em + self.regionList.sort() self.locationList.sort() self.countryList.sort() self.stateList.sort() - self.masterLocationList.sort() + # self.masterLocationList.sort() # remove parenthetical state names from counties, unless needed to # differentiate counties with same name in different states @@ -397,13 +1186,13 @@ def ReadDataFile(self, DataFile): if countyNamesWithoutParens.count((cdk.split(" (")[0])) == 1: for s in self.countyDict[cdk]: s["county"] = cdk.split(" (")[0] - countyKeyChanges.append([cdk, cdk.split(" (")[0]]) + countyKeyChanges.append([cdk, cdk.split(" (")[0]]) for ckc in countyKeyChanges: self.countyDict[str(ckc[1])] = self.countyDict.pop(str(ckc[0])) for ml in self.masterLocationList: - if ml[2] == str(ckc[0]): - ml[2] = str(ckc[1]) + if ml["county"] == str(ckc[0]): + ml["county"] = str(ckc[1]) self.countyList = list(self.countyDict.keys()) self.countyList.sort() @@ -417,33 +1206,32 @@ def ReadTaxonomyDataFile(self, taxonomyDataFile): # initialize variable to hold the csv data from the taxonomy file taxonomyData = [] # open the CSV taxonomy file, using "replace" for any problematic characters - with open(taxonomyDataFile, "r", errors='replace') as csvfile: + with open(taxonomyDataFile, "r", errors='replace') as csvfile: csvdata = csv.reader(csvfile, delimiter=',', quotechar='"') # store the csv data in a list for easier searching later on for row in csvdata: taxonomyData.append(row) - # initialize variables that will save the family and order names for faster lookup + # initialize thisSciName variable thisSciName = "" - thisOrder = "" - thisFamily = "" - + # loop through sighting list to get each species, compare it, and add order and family for s in self.sightingList: # if this species already has a order/family found, no need to search database again. - # But if species does not have order/family found, we need to get search the database + # But if species does not have order/family found, we need to search the database if thisSciName != s["scientificName"]: - + for line in taxonomyData: # if species matches, save the order and family names for the next time we find the species # species will be found in the sighting file in taxonomic order, so each species will be chunked together - if s["scientificName"] == line[4]: # sci names match - + if s["scientificName"] == line[4]: # sci names match + thisSciName = line[4] - thisOrder= line[5] - thisFamily = line[6] + thisOrder = line[5] + thisFamily = line[6] + thisQuickEntryCode = line[2] if thisFamily not in self.familyList: self.familyList.append(thisFamily) @@ -454,28 +1242,41 @@ def ReadTaxonomyDataFile(self, taxonomyDataFile): if [thisFamily, thisOrder] not in self.masterFamilyOrderList: self.masterFamilyOrderList.append([thisFamily, thisOrder]) - #add species to orderSpeciesDict: + # add species to orderSpeciesDict: if thisOrder not in self.orderSpeciesDict.keys(): self.orderSpeciesDict[thisOrder] = [s["commonName"]] else: self.orderSpeciesDict[thisOrder].append(s["commonName"]) - #add species to familySpeciesDict: + # add species to familySpeciesDict: if thisFamily not in self.familySpeciesDict.keys(): self.familySpeciesDict[thisFamily] = [s["commonName"]] else: self.familySpeciesDict[thisFamily].append(s["commonName"]) - + + # already found info, no need to continue for this species break - - # append the order and family names to the species in the sighting list. + + # append the order and family names to the sighting s["order"] = thisOrder - s["family"] = thisFamily + s["family"] = thisFamily + s["quickEntryCode"] = thisQuickEntryCode csvfile.close() - def GetFamilies(self, filter, filteredSightingList = []): + def ReadBBLCodeFile(self, bblFile): + + # initialize variable to hold the csv data from the BBL Code file + # open the CSV taxonomy file, using "replace" for any problematic characters + with open(bblFile, "r", errors='replace') as csvfile: + csvdata = csv.reader(csvfile, delimiter=',', quotechar='"') + # store the BBL code in a dictionary, using the sci name as the key + for row in csvdata: + self.bblCodeDict[str(row[2]).strip()] = row[0].strip() + + + def GetFamilies(self, filter, filteredSightingList=[]): familiesList = [] # set filteredSightingList to master list if no filteredSightingList specified @@ -485,71 +1286,140 @@ def GetFamilies(self, filter, filteredSightingList = []): # for each sighting, test date if necessary. Append new dates to return list. # don't consider spuh or slash species for s in filteredSightingList: - if "sp." not in s["commonName"] and "/" not in s["commonName"]: - if self.TestSighting(s, filter) is True: + if "sp." not in s["commonName"] and "/" not in s["commonName"] and " x " not in s["commonName"]: + if self.TestSighting(s, filter) is True: if s["family"] not in familiesList: familiesList.append(s["family"]) return(familiesList) - - def GetSightings(self, filter): + def GetSightings(self, filter): returnList = [] - filteredSightingList = self.GetMinimalFilteredSightingsList(filter) + filteredSightingList = self.GetMinimalFilteredSightingsList(filter) for s in filteredSightingList: # this is not a single checklist, so remove spuh and slash sightings if filter.getChecklistID() == "": commonName = s["commonName"] if "/" not in commonName and "sp." not in commonName: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: returnList.append(s) else: # this is a single checklist, so allow spuh and slash sightings - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: returnList.append(s) return(returnList) - def GetSpecies(self, filter, filteredSightingList = []): + def GetSpeciesWithPhotos(self, filter): + returnSet = set() + + filteredSightingList = self.GetMinimalFilteredSightingsList(filter) + + for s in filteredSightingList: + commonName = s["commonName"] + if "/" not in commonName and "sp." not in commonName: + if self.TestSighting(s, filter) is True: + if "photos" in s.keys(): + returnSet.add(s["commonName"]) + + return(returnSet) + + + def GetSpeciesWithoutPhotos(self, filter): + + unphotographedSpeciesSet = set() + + photographedSpeciesSet = self.GetSpeciesWithPhotos(filter) + + for species in self.allSpeciesList: + if species not in photographedSpeciesSet: + unphotographedSpeciesSet.add(species) + + return(unphotographedSpeciesSet) + + + def GetSightingsWithPhotos(self, filter): + returnList = [] + photosFound = [] + + filteredSightingList = self.GetMinimalFilteredSightingsList(filter) + + for s in filteredSightingList: + commonName = s["commonName"] + if "/" not in commonName and "sp." not in commonName: + if self.TestSighting(s, filter) is True: + if "photos" in s.keys(): + if s["photos"][0]["fileName"] not in photosFound: + photosFound.append(s["photos"][0]["fileName"]) + returnList.append(s) + + returnList = sorted(returnList, key=lambda x: (float(x["taxonomicOrder"]), x["date"], x["time"])) + + return(returnList) + + + def GetPhotos(self, filter): + returnList = [] + + filteredSightingList = self.GetMinimalFilteredSightingsList(filter) + + for s in filteredSightingList: + if "photos" in s.keys(): + for p in s["photos"]: + if p["fileName"] not in returnList: + returnList.append(p["fileName"]) + + returnList.sort() + + return(returnList) + + + def GetSpecies(self, filter, filteredSightingList=[]): speciesList = [] # set filteredSightingList to master list if no filteredSightingList specified if filteredSightingList == []: filteredSightingList = self.GetMinimalFilteredSightingsList(filter) - + # for each sighting, test filter. Append filtered species to return list. for s in filteredSightingList: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: if s["commonName"] not in speciesList: speciesList.append(s["commonName"]) return(speciesList) - def GetMinimalFilteredSightingsList(self, filter): + def GetMinimalFilteredSightingsList(self, filter): returnList = [] speciesName = filter.getSpeciesName() speciesList = filter.getSpeciesList() startDate = filter.getStartDate() - endDate= filter.getEndDate() + endDate = filter.getEndDate() locationType = filter.getLocationType() locationName = filter.getLocationName() checklistID = filter.getChecklistID() + # if we're dealing with a sp. or slash species, + # we need to return the whole database since those sightings + # aren't in dictionaries + if "sp." in speciesName or "/" in speciesName: + return(self.sightingList) + # use narrowest subset possible, according to filter if checklistID != "": returnList = self.checklistDict[checklistID] - elif speciesName != "": + elif speciesName != "" and speciesName in self.speciesDict.keys(): returnList = self.speciesDict[speciesName] elif speciesList != []: for sp in speciesList: for s in self.speciesDict[sp]: returnList. append(s) - elif startDate !="" and startDate == endDate: + elif startDate != "" and startDate == endDate: if startDate in self.dateDict.keys(): returnList = self.dateDict[startDate] else: @@ -560,15 +1430,14 @@ def GetMinimalFilteredSightingsList(self, filter): returnList = self.stateDict[locationName] elif locationType == "County": returnList = self.countyDict[locationName] - elif locationType == "Location": + elif locationType == "Location" and locationName in self.locationDict.keys(): returnList = self.locationDict[locationName] else: returnList = self.sightingList return(returnList) - - def GetSpeciesWithData(self, filter, filteredSightingList = [], includeSpecies = "Species"): + def GetSpeciesWithData(self, filter, filteredSightingList=[], includeSpecies="Species"): filteredDictWithDates = {} checklistIDs = {} returnList = [] @@ -577,19 +1446,19 @@ def GetSpeciesWithData(self, filter, filteredSightingList = [], includeSpecies # if no filteredSightingList is specified, create one. # use narrowest subset possible, according to filter if filteredSightingList == []: + filteredSightingList = self.GetMinimalFilteredSightingsList(filter) # loop through sightingList and check each sighting for the filtered list criteria for sighting in filteredSightingList: - if self.TestSighting(sighting, filter) is True: + if self.TestSighting(sighting, filter) is True: # store the sighting date so we can get first and last later # include the taxonomy entry so we can sort the list by taxonomy later # include the main species name so we can store it in SpeciesList hidden data # include the checklist number so we can count checklists for each species - thisDateTaxSpecies = [sighting["date"], sighting["taxonomicOrder"], sighting["commonName"], sighting["checklistID"]] - + thisDateTaxSpecies = [sighting["date"], sighting["taxonomicOrder"], sighting["commonName"], sighting["checklistID"], sighting["count"]] # decide whether we're returning only species or also subspecies if includeSpecies == "Species": @@ -626,28 +1495,36 @@ def GetSpeciesWithData(self, filter, filteredSightingList = [], includeSpecies tempSpeciesList.sort() thisCommonName = s thisFirstDate = tempSpeciesList[0][0] - thisLastDate = tempSpeciesList[len(tempSpeciesList)-1][0] + thisLastDate = tempSpeciesList[len(tempSpeciesList) - 1][0] thisTaxNumber = float(tempSpeciesList[0][1]) thisTopLevelSpeciesName = tempSpeciesList[0][2] thisChecklistCount = len(checklistIDs[s]) percentageOfChecklists = round(100 * thisChecklistCount / allChecklistCount, 2) + # count up the number of individuals seen + count = 0 + for sighting in tempSpeciesList: + if sighting[4] == "X" or count == "X": + count = "X" + else: + count = count + int(sighting[4]) + returnList.append([ - thisCommonName, - thisFirstDate, - thisLastDate, - thisTaxNumber, - thisTopLevelSpeciesName, - thisChecklistCount, - percentageOfChecklists + thisCommonName, + thisFirstDate, + thisLastDate, + thisTaxNumber, + thisTopLevelSpeciesName, + thisChecklistCount, + percentageOfChecklists, + count ]) - - returnList = sorted(returnList, key=lambda x: (x[3])) + + returnList = sorted(returnList, key=lambda x: (x[3])) return(returnList) - - def GetUniqueSpeciesForLocation(self, filter, location, speciesList, filteredSightingList = [],): + def GetUniqueSpeciesForLocation(self, filter, location, speciesList, filteredSightingList=[],): uniqueSpeciesList = [] # set filteredSightingList to master list if no filteredSightingList specified @@ -658,38 +1535,307 @@ def GetUniqueSpeciesForLocation(self, filter, location, speciesList, filtere for species in speciesList: isSeenNowhereElse = True for s in filteredSightingList: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: if s["commonName"] == species and s["location"] != location: isSeenNowhereElse = False break if isSeenNowhereElse == True: - if species not in uniqueSpeciesList: + if species not in uniqueSpeciesList: uniqueSpeciesList.append(species) return(uniqueSpeciesList) - def TestSighting(self, sighting, filter): - locationType = filter.getLocationType() # str choices are Country, County, State, Location, or "" - locationName = filter.getLocationName() # str name of region or location or "" - startDate = filter.getStartDate() # str format yyyy-mm-dd or "" - endDate = filter.getEndDate() # str format yyyy-mm-dd or "" - startSeasonalMonth = filter.getStartSeasonalMonth() # str format mm - startSeasonalDay = filter.getStartSeasonalDay() # str format dd - endSeasonalMonth = filter.getEndSeasonalMonth() # str format dd - endSeasonalDay = filter.getEndSeasonalDay() # str format dd - checklistID = filter.getChecklistID() # str checklistID - sightingDate = sighting["date"] # str format yyyy-mm-dd - speciesName = filter.getSpeciesName() # str species Name - speciesList = filter.getSpeciesList() # list of species names - order = filter.getOrder() # str order name - family = filter.getFamily() # str family name - time = filter.getTime() # str format HH:DD in 24-hour format + def TestIndividualPhoto(self, photoData, filter): + + filterCamera = filter.getCamera() + filterLens = filter.getLens() + filterStartShutterSpeed = filter.getStartShutterSpeed() + filterEndShutterSpeed = filter.getEndShutterSpeed() + filterStartAperture = filter.getStartAperture() + filterEndAperture = filter.getEndAperture() + filterStartFocalLength = filter.getStartFocalLength() + filterEndFocalLength = filter.getEndFocalLength() + filterStartIso = filter.getStartIso() + filterEndIso = filter.getEndIso() + filterStartRating = filter.getStartRating() + filterEndRating = filter.getEndRating() + + # check photo settings + # note that a sighting can have several attached photos + # we only reject a sighting here if all attached photos fail + if filterCamera != "": + if photoData["camera"] != filterCamera: + return(False) + + if filterLens != "": + if photoData["lens"] != filterLens: + return(False) + + if filterStartShutterSpeed != "" and filterEndShutterSpeed != "": + # strip away the 1/ characters at start of shutter speeds + filterStartShutterSpeed = int(filterStartShutterSpeed[2:]) + filterEndShutterSpeed = int(filterEndShutterSpeed[2:]) + shutterSpeed = photoData["shutterSpeed"] + if shutterSpeed != "": + shutterSpeed = int(shutterSpeed[2:]) + if not (shutterSpeed <= filterStartShutterSpeed and shutterSpeed >= filterEndShutterSpeed): + return(False) + else: + return(False) + + if filterStartShutterSpeed != "" and filterEndShutterSpeed == "": + # strip away the 1/ characters at start of shutter speeds + filterStartShutterSpeed = int(filterStartShutterSpeed[2:]) + shutterSpeed = photoData["shutterSpeed"] + if shutterSpeed != "": + shutterSpeed = int(shutterSpeed[2:]) + if shutterSpeed > filterStartShutterSpeed: + return(False) + else: + return(False) + + if filterStartShutterSpeed == "" and filterEndShutterSpeed != "": + # strip away the 1/ characters at start of shutter speeds + filterEndShutterSpeed = int(filterEndShutterSpeed[2:]) + shutterSpeed = photoData["shutterSpeed"] + if shutterSpeed != "": + shutterSpeed = int(shutterSpeed[2:]) + if shutterSpeed < filterEndShutterSpeed: + return(False) + else: + return(False) + + if filterStartAperture != "" and filterEndAperture != "": + filterStartAperture = float(filterStartAperture) + filterEndAperture = float(filterEndAperture) + aperture = photoData["aperture"] + if aperture != "": + aperture = float(aperture) + if aperture < filterStartAperture or aperture > filterEndAperture: + return(False) + else: + return(False) + + if filterStartAperture != "" and filterEndAperture == "": + filterStartAperture = float(filterStartAperture) + aperture = photoData["aperture"] + if aperture != "": + aperture = float(aperture) + if aperture < filterStartAperture: + return(False) + else: + return(False) + + if filterStartAperture == "" and filterEndAperture != "": + filterEndAperture = float(filterEndAperture) + aperture = photoData["aperture"] + if aperture != "": + aperture = float(aperture) + if aperture > filterEndAperture: + return(False) + else: + return(False) + + if filterStartIso != "" and filterEndIso != "": + filterStartIso = int(filterStartIso) + filterEndIso = int(filterEndIso) + iso = photoData["iso"] + if iso != "": + iso = int(iso) + if iso < filterStartIso or iso > filterEndIso: + return(False) + else: + return(False) + + if filterStartIso != "" and filterEndIso == "": + filterStartIso = int(filterStartIso) + iso = photoData["iso"] + if iso != "": + iso = int(iso) + if iso < filterStartIso: + return(False) + else: + return(False) + + if filterStartIso == "" and filterEndIso != "": + filterEndIso = int(filterEndIso) + iso = photoData["iso"] + if iso != "": + iso = int(iso) + if iso > filterEndIso: + return(False) + else: + return(False) + + if filterStartFocalLength != "" and filterEndFocalLength != "": + filterStartFocalLength = filterStartFocalLength.split(" mm")[0] + filterStartFocalLength = int(filterStartFocalLength) + filterEndFocalLength = filterEndFocalLength.split(" mm")[0] + filterEndFocalLength = int(filterEndFocalLength) + focalLength = photoData["focalLength"] + if focalLength != "": + focalLength = focalLength.split(" mm")[0] + focalLength = int(focalLength) + if focalLength < filterStartFocalLength or focalLength > filterEndFocalLength: + return(False) + else: + return(False) + + if filterStartFocalLength != "" and filterEndFocalLength == "": + filterStartFocalLength = filterStartFocalLength.split(" mm")[0] + filterStartFocalLength = int(filterStartFocalLength) + focalLength = photoData["focalLength"] + if focalLength != "": + focalLength = focalLength.split(" mm")[0] + focalLength = int(focalLength) + if focalLength < filterStartFocalLength: + return(False) + else: + return(False) + + if filterStartFocalLength == "" and filterEndFocalLength != "": + filterEndFocalLength = filterEndFocalLength.split(" mm")[0] + filterEndFocalLength = int(filterEndFocalLength) + focalLength = photoData["focalLength"] + if focalLength != "": + focalLength = focalLength.split(" mm")[0] + focalLength = int(focalLength) + if focalLength > filterEndFocalLength: + return(False) + else: + return(False) + + if filterStartRating != "" and filterEndRating != "": + filterStartRating = int(filterStartRating) + filterEndRating = int(filterEndRating) + rating = photoData["rating"] + if rating != "" and rating is not None: + rating = int(rating) + if rating < filterStartRating or rating > filterEndRating: + return(False) + else: + return(False) + + if filterStartRating != "" and filterEndRating == "": + filterStartRating = int(filterStartRating) + rating = photoData["rating"] + if rating != "": + rating = int(rating) + if rating < filterStartRating: + return(False) + else: + return(False) + + if filterStartRating == "" and filterEndRating != "": + filterEndRating = int(filterEndRating) + rating = photoData["rating"] + if rating != "": + rating = int(rating) + if rating > filterEndRating: + return(False) + else: + return(False) + + # if we've arrived here, the photo passes the filter. + return(True) + + + def TestSighting(self, sighting, filter): + + locationType = filter.getLocationType() # str choices are Region, Country, County, State, Location, or "" + locationName = filter.getLocationName() # str name of region or location or "" + startDate = filter.getStartDate() # str format yyyy-mm-dd or "" + endDate = filter.getEndDate() # str format yyyy-mm-dd or "" + startSeasonalMonth = filter.getStartSeasonalMonth() # str format mm + startSeasonalDay = filter.getStartSeasonalDay() # str format dd + endSeasonalMonth = filter.getEndSeasonalMonth() # str format dd + endSeasonalDay = filter.getEndSeasonalDay() # str format dd + checklistID = filter.getChecklistID() # str checklistID + sightingDate = sighting["date"] # str format yyyy-mm-dd + speciesName = filter.getSpeciesName() # str species Name + speciesList = filter.getSpeciesList() # list of species names + scientificName = filter.getScientificName() #str scientific name + order = filter.getOrder() # str order name + family = filter.getFamily() # str family name + time = filter.getTime() # str format HH:DD in 24-hour format + commonNameSearch = filter.getCommonNameSearch() + + sightingHasPhoto = filter.getSightingHasPhoto() + speciesHasPhoto = filter.getSpeciesHasPhoto() + validPhotoSpecies = filter.getValidPhotoSpecies() + camera = filter.getCamera() + lens = filter.getLens() + startShutterSpeed = filter.getStartShutterSpeed() + endShutterSpeed = filter.getEndShutterSpeed() + startAperture = filter.getStartAperture() + endAperture = filter.getEndAperture() + startFocalLength = filter.getStartFocalLength() + endFocalLength = filter.getEndFocalLength() + startIso = filter.getStartIso() + endIso = filter.getEndIso() + startRating = filter.getStartRating() + endRating = filter.getEndRating() + # Check every filter setting. Return False immediately if sighting fails. # If sighting survives the filter, return True + # if any photo settings have been specified, check whether sighting has photos + # reject sighting if it doesn't have a photo + if ( + sightingHasPhoto == "Has photo" or + camera != "" or + lens != "" or + startShutterSpeed != "" or + endShutterSpeed != "" or + startAperture != "" or + endAperture != "" or + startFocalLength != "" or + endFocalLength != "" or + startIso != "" or + endIso != "" or + speciesHasPhoto == "Photographed" or + startRating != "" or + endRating != "" + ): + if "photos" not in sighting.keys(): + return(False) + + # reject if "no photo" was specified but sighting has photo + if sightingHasPhoto == "No photo": + if "photos" in sighting.keys(): + return(False) + + # if user selected a value for whether a species has a photo, + # check if commonName is in the supplied set. + # if we're checking for "Photographed," the supplied set contains photographed species + # if we're checking for "Not pPhotographed," the supplied set contains UNphotographed species + if validPhotoSpecies != []: + if sighting["commonName"] not in validPhotoSpecies: + return(False) + + # if a commonNameSearch string has been specified, check if sighting matches + if commonNameSearch != "": + # check to see if s: prepends the search, in which case we need to search sci name + if "s:" in commonNameSearch: + commonNameSearch = commonNameSearch.strip() + if len(commonNameSearch) > 2: + if commonNameSearch[0:2].lower() == "s:": + sciNameSearch = commonNameSearch[2:] + if sciNameSearch.lower() not in sighting["scientificName"].lower(): + return(False) + else: + return(False) + else: + return(False) + + else: + if commonNameSearch.lower() not in sighting["commonName"].lower(): + if commonNameSearch.lower() not in sighting["subspeciesName"].lower(): + return(False) + # if a checklistID has been specified, check if sighting matches if checklistID != "": if checklistID != sighting["checklistID"]: @@ -700,6 +1846,11 @@ def TestSighting(self, sighting, filter): if speciesName != sighting["commonName"] and speciesName != sighting["subspeciesName"]: return(False) + # if scientificName has been specified, check it + if scientificName != "": + if scientificName != sighting["scientificName"]: + return(False) + # if order has been specified, check it if order != "": if order != sighting["order"]: @@ -716,13 +1867,37 @@ def TestSighting(self, sighting, filter): return(False) # if time has been specified, check it - if time != "": + # don't try checking if sighting is an historical sighting without a time + if time != "" and sighting["time"] != "": + # if time exactly matches sighting start time, it passes the filter test + # if time doesn't match exactly, check whether time is between start time and end time if time != sighting["time"]: - return(False) + + # now use DateTime functions so we can add duration minutes to find end time efficiently + # adding duration minutes could take us to a new hour, day, month, or year + durationMinutes = sighting["duration"] + if durationMinutes is None or durationMinutes == "": + durationMinutes = 0 + else: + durationMinutes = int(durationMinutes) + + filterDateTime = datetime.datetime(int(startDate[0:4]), int(startDate[5:7]), int(startDate[8:10]), int(time[0:2]), int(time[3:5])) + + sightingStartDateTime = datetime.datetime(int(sightingDate[0:4]), int(sightingDate[5:7]), int(sightingDate[8:10]), int(sighting["time"][0:2]), int(sighting["time"][3:5])) + + sightingTimeDelta = datetime.timedelta(0, 0, 0, 0, durationMinutes) + sightingEndDateTime = sightingStartDateTime + sightingTimeDelta + + if not ((sightingStartDateTime <= filterDateTime) and (filterDateTime <= sightingEndDateTime)): + + return(False) # check if location matches for sighting; flag species that fit the location # no need to check if locationType is "" if not locationType == "": + if locationType == "Region": + if not locationName in sighting["regionCodes"]: + return(False) if locationType == "Country": if not locationName == sighting["country"]: return(False) @@ -746,7 +1921,7 @@ def TestSighting(self, sighting, filter): return(False) # check for seasonal range using month and date parts; disqualify sighting if date doesn't fit in seasonal range - if not ((startSeasonalMonth == "") or (endSeasonalMonth== "")): + if not ((startSeasonalMonth == "") or (endSeasonalMonth == "")): sightingMonth = sightingDate[5:7] sightingDay = sightingDate[8:] # if startSeasonalMonth is earlier than endSeasonalMonth (e.g., July to October) @@ -795,11 +1970,256 @@ def TestSighting(self, sighting, filter): if not sightingMonth == startSeasonalMonth: return(False) + # check photo settings + # note that a sighting can have several attached photos + # we only reject a sighting here if all attached photos fail + # For each sighting, test each photo. If any photo passes filter, the sighting passes filter + + if camera != "": + cameraOK = False + for p in sighting["photos"]: + if camera == p["camera"]: + cameraOK = True + if cameraOK is False: + return(False) + + if lens != "": + lensOK = False + for p in sighting["photos"]: + if lens == p["lens"]: + lensOK= True + if lensOK is False: + return(False) + + if startShutterSpeed != "" and endShutterSpeed == "": + shutterSpeedOK = False + filterStartShutterSpeed = startShutterSpeed[2:] + filterStartShutterSpeed = float(filterStartShutterSpeed) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + shutterSpeed = p["shutterSpeed"] + if shutterSpeed != "": + shutterSpeed = shutterSpeed[2:] + shutterSpeed = float(shutterSpeed) + if shutterSpeed <= filterStartShutterSpeed: + shutterSpeedOK= True + if shutterSpeedOK is False: + return(False) + + if startShutterSpeed == "" and endShutterSpeed != "": + shutterSpeedOK = False + filterEndShutterSpeed = endShutterSpeed[2:] + filterEndShutterSpeed = float(filterEndShutterSpeed) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + shutterSpeed = p["shutterSpeed"] + if shutterSpeed != "": + shutterSpeed = shutterSpeed[2:] + shutterSpeed = float(shutterSpeed) + if shutterSpeed >= filterEndShutterSpeed: + shutterSpeedOK= True + if shutterSpeedOK is False: + return(False) + + if endShutterSpeed != "" and startShutterSpeed != "": + shutterSpeedOK= False + filterStartShutterSpeed = startShutterSpeed[2:] + filterStartShutterSpeed = float(filterStartShutterSpeed) + filterEndShutterSpeed = endShutterSpeed[2:] + filterEndShutterSpeed = float(filterEndShutterSpeed) + for p in sighting["photos"]: + # convert the string to an integer + shutterSpeed = p["shutterSpeed"] + if shutterSpeed != "": + shutterSpeed = shutterSpeed[2:] + shutterSpeed = float(shutterSpeed) + if shutterSpeed <= filterStartShutterSpeed and shutterSpeed >= filterEndShutterSpeed: + shutterSpeedOK = True + if shutterSpeedOK is False: + return(False) + + if startAperture != "" and endAperture == "": + apertureOK = False + filterStartAperture = float(startAperture) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + aperture = p["aperture"] + if aperture != "": + aperture = float(aperture) + if aperture >= filterStartAperture: + apertureOK= True + if apertureOK is False: + return(False) + + if startAperture == "" and endAperture != "": + apertureOK = False + filterEndAperture = float(endAperture) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + aperture = p["aperture"] + if aperture != "": + aperture = float(aperture) + if aperture >= filterEndAperture: + apertureOK= True + if apertureOK is False: + return(False) + + if endAperture != "" and startAperture != "": + apertureOK= False + filterStartAperture = float(startAperture) + filterEndAperture = float(endAperture) + for p in sighting["photos"]: + # convert the string to an integer + aperture = p["aperture"] + if aperture != "": + aperture = float(aperture) + if aperture >= filterStartAperture and aperture <= filterEndAperture: + apertureOK = True + if apertureOK is False: + return(False) + + if startIso != "" and endIso == "": + isoOK = False + filterStartIso = int(startIso) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + iso = p["iso"] + if iso != "": + iso = int(iso) + if iso >= filterStartIso: + isoOK= True + if isoOK is False: + return(False) + + if startIso == "" and endIso != "": + isoOK = False + filterEndIso = int(endIso) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + iso = p["iso"] + if iso != "": + iso = int(iso) + if iso <= filterEndIso: + isoOK= True + if isoOK is False: + return(False) + + if endIso != "" and startIso != "": + isoOK= False + filterStartIso = int(startIso) + filterEndIso = int(endIso) + for p in sighting["photos"]: + # convert the string to an integer + iso = p["iso"] + if iso != "": + iso = int(iso) + if iso >= filterStartIso and iso <= filterEndIso: + isoOK = True + if isoOK is False: + return(False) + + if startFocalLength != "" and endFocalLength == "": + focalLengthOK = False + filterStartFocalLength = startFocalLength.split(" mm")[0] + filterStartFocalLength = int(filterStartFocalLength) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + focalLength = p["focalLength"] + if focalLength != "": + focalLength = focalLength.split(" mm")[0] + focalLength = int(focalLength) + if focalLength >= filterStartFocalLength: + focalLengthOK= True + if focalLengthOK is False: + return(False) + + if startFocalLength == "" and endFocalLength != "": + focalLengthOK = False + filterEndFocalLength = endFocalLength.split(" mm")[0] + filterEndFocalLength = int(filterEndFocalLength) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + focalLength = p["focalLength"] + if focalLength != "": + focalLength = focalLength.split(" mm")[0] + focalLength = int(focalLength) + if focalLength <= filterEndFocalLength: + focalLengthOK= True + if focalLengthOK is False: + return(False) + + if endFocalLength != "" and startFocalLength != "": + focalLengthOK= False + filterStartFocalLength = startFocalLength.split(" mm")[0] + filterStartFocalLength = int(filterStartFocalLength) + filterEndFocalLength = endFocalLength.split(" mm")[0] + filterEndFocalLength = int(filterEndFocalLength) + for p in sighting["photos"]: + # convert the string to an integer + focalLength = p["focalLength"] + if focalLength != "": + focalLength = focalLength.split(" mm")[0] + focalLength = int(focalLength) + if focalLength >= filterStartFocalLength and focalLength <= filterEndFocalLength: + focalLengthOK = True + if focalLengthOK is False: + return(False) + + if startRating != "" and endRating == "": + ratingOK = False + filterStartRating = int(startRating) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + rating = p["rating"] + if rating != "": + rating = int(rating) + if rating >= filterStartRating: + ratingOK= True + if ratingOK is False: + return(False) + + if startRating == "" and endRating != "": + ratingOK = False + filterEndRating = int(endRating) + # check each photo and set flag to true if at least one photo passes test + # reject if all photos fail this test + for p in sighting["photos"]: + rating = p["rating"] + if rating != "": + rating = int(rating) + if rating >= filterEndRating: + ratingOK= True + if ratingOK is False: + return(False) + + if endRating != "" and startRating != "": + ratingOK= False + filterStartRating = int(startRating) + filterEndRating = int(endRating) + for p in sighting["photos"]: + # convert the string to an integer + rating = p["rating"] + if rating != "": + rating = int(rating) + if rating >= filterStartRating and rating <= filterEndRating: + ratingOK = True + if ratingOK is False: + return(False) + # if we've arrived here, the sighting passes the filter. return(True) - def GetDates(self, filter, filteredSightingList=[]): + def GetDates(self, filter, filteredSightingList=[]): dateList = set() needToCheckFilter = False @@ -811,7 +2231,7 @@ def GetDates(self, filter, filteredSightingList=[]): # for each sighting, test date if necessary. Append new dates to return list. for s in filteredSightingList: if needToCheckFilter is True: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: dateList.add(s["date"]) else: dateList.add(s["date"]) @@ -823,6 +2243,29 @@ def GetDates(self, filter, filteredSightingList=[]): return(dateList) + def GetStartTimes(self, filter, filteredSightingList=[]): + timeList = set() + needToCheckFilter = False + + # set filteredSightingList to master list if no filteredSightingList specified + if filteredSightingList == []: + filteredSightingList = self.GetMinimalFilteredSightingsList(filter) + needToCheckFilter = True + + # for each sighting, test time if necessary. Append new times to return list. + for s in filteredSightingList: + if needToCheckFilter is True: + if self.TestSighting(s, filter) is True: + timeList.add(s["time"]) + else: + timeList.add(s["time"]) + + # convert the set to a list and sort it. + timeList = list(timeList) + timeList.sort() + + return(timeList) + def ClearDatabase(self): self.eBirdFileOpenFlag = False @@ -839,23 +2282,40 @@ def ClearDatabase(self): self.yearDict = defaultdict() self.monthDict = defaultdict() self.dateDict = defaultdict() + self.regionDict = defaultdict() self.countryDict = defaultdict() self.stateDict = defaultdict() self.countyDict = defaultdict() self.locationDict = defaultdict() self.checklistDict = defaultdict() + + def ClearPhotoSettings(self): + + self.cameraList = [] + self.lensList = [] + self.shutterSpeedList = [] + self.apertureList = [] + self.focalLengthList=[] + self.isoList = [] + + # remove photo data from sightings + for s in self.sightingList: + if "photos" in s.keys(): + del s["photos"] + + self.photoDataFileOpenFlag = False - def GetChecklists(self, filter): + def GetChecklists(self, filter): returnList = [] checklistIDs = set() # speed retreaval by choosing minimal set of sightings to search minimalSightingList = self.GetMinimalFilteredSightingsList(filter) - + # gather the IDs of checklists that match the filter for s in minimalSightingList: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: checklistIDs .add(s["checklistID"]) # get all the sightings that match these checklistIDs @@ -870,29 +2330,29 @@ def GetChecklists(self, filter): # append species common name to list, so we can count the species checklistSpecies.append(sighting["commonName"]) - # count the species, discarding superflous subspecies, spuhs and slashes when necessary + # count the species, discarding superfluous subspecies, spuhs and slashes when necessary speciesCount = self.CountSpecies(checklistSpecies) - # compile data for checklist (id, state (which incudes country prefix), county, location, date, time, speciesCount) - checklistData= [ - sighting["checklistID"], + # compile data for checklist (id, state (which includes country prefix), county, location, date, time, speciesCount) + checklistData = [ + sighting["checklistID"], sighting["state"], - sighting["county"], - sighting["location"], - sighting["date"], - sighting["time"], - speciesCount + sighting["county"], + sighting["location"], + sighting["date"], + sighting["time"], + speciesCount, + sighting["duration"] ] returnList.append(checklistData) # sort by country, county, location, date, time - returnList= sorted(returnList, key=lambda x: (x[1], x[2], x[3], x[4], x[5])) + returnList = sorted(returnList, key=lambda x: (x[1], x[2], x[3], x[4], x[5])) return(returnList) - - def GetFindResults(self, searchString, checkedBoxes): + def GetFindResults(self, searchString, checkedBoxes): foundSet = set() @@ -900,47 +2360,46 @@ def GetFindResults(self, searchString, checkedBoxes): for c in checkedBoxes: if c == "chkCommonName": if searchString.lower() in s["commonName"].lower(): - foundSet.add(("Common Name", s["checklistID"], s["location"], s["date"], s["commonName"])) + foundSet.add(("Common Name", s["checklistID"], s["location"], s["date"], s["commonName"])) if c == "chkScientificName": if searchString.lower() in s["scientificName"].lower(): - foundSet.add(("Scientific Name", s["checklistID"], s["location"], s["date"], s["scientificName"])) + foundSet.add(("Scientific Name", s["checklistID"], s["location"], s["date"], s["scientificName"])) if c == "chkCountryName": if searchString.lower() in self.GetCountryName(s["country"]).lower(): - foundSet.add(("Country", s["checklistID"], s["location"], s["date"], self.GetCountryName(s[5][0:2]))) + foundSet.add(("Country", s["checklistID"], s["location"], s["date"], self.GetCountryName(s[5][0:2]))) if c == "chkStateName": if searchString.lower() in self.GetStateName(s["state"]).lower(): - foundSet.add(("State", s["checklistID"], s["location"], s["date"], self.GetStateName(s["state"]))) + foundSet.add(("State", s["checklistID"], s["location"], s["date"], self.GetStateName(s["state"]))) if c == "chkCountyName": if searchString.lower() in s["county"].lower(): - foundSet.add(("County", s["checklistID"], s["location"], s["date"], s["county"])) + foundSet.add(("County", s["checklistID"], s["location"], s["date"], s["county"])) if c == "chkLocationName": if searchString.lower() in s["location"].lower(): - foundSet.add(("Location", s["checklistID"], s["location"], s["date"], s["location"])) + foundSet.add(("Location", s["checklistID"], s["location"], s["date"], s["location"])) if c == "chkSpeciesComments": if searchString.lower() in s["speciesComments"].lower(): - foundSet.add(("Species Comments", s["checklistID"], s["location"], s["date"], s["speciesComments"])) + foundSet.add(("Species Comments", s["checklistID"], s["location"], s["date"], s["speciesComments"])) if c == "chkChecklistComments": if searchString.lower() in s["checklistComments"].lower(): - foundSet.add(("Checklist Comments", s["checklistID"], s["location"], s["date"], s["checklistComments"])) + foundSet.add(("Checklist Comments", s["checklistID"], s["location"], s["date"], s["checklistComments"])) foundList = list(foundSet) foundList.sort() return(foundList) - def GetLastDayOfMonth(self, month): + def GetLastDayOfMonth(self, month): # find last day of the specified month - if month in ["01", "1", "03", "3", "05", "5", "07", "7", "08", "8", "10", "12"]: + if month in ["01", "1", "03", "3", "05", "5", "07", "7", "08", "8", "10", "12"]: lastDayOfThisMonth = "31" - if month in ["04", "4", "06", "6", "09", "9", "11"]: + if month in ["04", "4", "06", "6", "09", "9", "11"]: lastDayOfThisMonth = "30" - if month in ["02", "2"]: + if month in ["02", "2"]: lastDayOfThisMonth = "29" return(lastDayOfThisMonth) - - def GetLocationCoordinates(self, location): + def GetLocationCoordinates(self, location): coordinates = [] s = self.locationDict[location][0] coordinates.append(s["latitude"]) @@ -948,8 +2407,7 @@ def GetLocationCoordinates(self, location): return(coordinates) - - def GetLocations(self, filter, queryType="OnlyLocations", filteredSightingList=[]): + def GetLocations(self, filter, queryType="OnlyLocations", filteredSightingList=[]): # queryType specifies which data fields to return in the returnList # "OnlyLocations" returns just the location names # "Checklist"returns locationName, count, checklistID, and time @@ -980,7 +2438,7 @@ def GetLocations(self, filter, queryType="OnlyLocations", filteredSightingList= if s["commonName"] != speciesName and speciesName != s["subspeciesName"]: break - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: sightingFound = True @@ -988,10 +2446,10 @@ def GetLocations(self, filter, queryType="OnlyLocations", filteredSightingList= thisLocationList = s["location"] if queryType == "Checklist": - thisLocationList = [s["location"], s["count"], s["checklistID"], s["latitude"]] + thisLocationList = [s["location"], s["count"], s["checklistID"], s["latitude"]] if queryType == "LocationHierarchy": - thisLocationList = [s["state"], s["county"], s["location"]] + thisLocationList = [s["state"], s["county"], s["location"]] # if we're getting first and last dates, too, we need to # store all dates in a dictionary keyed by location @@ -1018,16 +2476,15 @@ def GetLocations(self, filter, queryType="OnlyLocations", filteredSightingList= tempDateList = tempDateDict[k] tempDateList.sort() tempFirstDate = tempDateList[0] - tempLastDate = tempDateList[len(tempDateList)-1] - thisLocationList = [k, tempFirstDate, tempLastDate] + tempLastDate = tempDateList[len(tempDateList) - 1] + thisLocationList = [k, tempFirstDate, tempLastDate] returnList.append(thisLocationList) # sort the list and return it returnList.sort() return(returnList) - - def GetNewCountrySpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): + def GetNewCountrySpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): countries = set() countrySpecies = [] @@ -1035,7 +2492,7 @@ def GetNewCountrySpecies(self, filter, filteredSightingList, sightingListForS # loop through sightingListForSpeciesSubset to gather relevant country names for s in sightingListForSpeciesSubset: - if self.TestSighting(s, tempFilter) is True: + if self.TestSighting(s, tempFilter) is True: countries.add(s["country"]) countries = list(countries) countries.sort() @@ -1047,7 +2504,7 @@ def GetNewCountrySpecies(self, filter, filteredSightingList, sightingListForS tempFilter.setLocationType("Country") tempFilter.setLocationName(country) - speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) + speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) # use dictionary created when data file was first loaded to get all sightings from # the selected country @@ -1071,12 +2528,11 @@ def GetNewCountrySpecies(self, filter, filteredSightingList, sightingListForS tempSpeciesSightings = tempSpeciesDict[species[0]] tempSpeciesSightings = sorted(tempSpeciesSightings, key=lambda x: (x["date"])) if species[1] <= tempSpeciesSightings[0]["date"]: - countrySpecies.append([country, species[0]]) + countrySpecies.append([country, species[0]]) return(countrySpecies) - - def GetNewCountySpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): + def GetNewCountySpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): # find which years are in the filtered sightingsfor the species in question counties = set() @@ -1086,7 +2542,7 @@ def GetNewCountySpecies(self, filter, filteredSightingList, sightingListForSp # loop through speciesWithFirstLastDates to gather county names for sightings subset for s in sightingListForSpeciesSubset: county = s["county"] - if self.TestSighting(s, tempFilter) is True: + if self.TestSighting(s, tempFilter) is True: if county != "": counties.add(county) counties = list(counties) @@ -1098,7 +2554,7 @@ def GetNewCountySpecies(self, filter, filteredSightingList, sightingListForSp # get list of species with first/last dates for filter in selected county tempFilter.setLocationType("County") tempFilter.setLocationName(county) - speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) + speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) thisCountySightings = self.countyDict[county] @@ -1118,19 +2574,18 @@ def GetNewCountySpecies(self, filter, filteredSightingList, sightingListForSp tempSpeciesSightings = tempSpeciesDict[species[0]] tempSpeciesSightings = sorted(tempSpeciesSightings, key=lambda x: (x["date"])) if species[1] <= tempSpeciesSightings[0]["date"]: - countySpecies.append([county, species[0]]) + countySpecies.append([county, species[0]]) return(countySpecies) - - def GetNewLifeSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset): + def GetNewLifeSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset): # find which years are in the filtered sightingsfor the species in question # DON'T use a SET here, because we want to keep the species taxonomic order lifeSpecies = [] # get list of species with first/last dates for filter - speciesWithFirstLastDates = self.GetSpeciesWithData(filter, filteredSightingList) + speciesWithFirstLastDates = self.GetSpeciesWithData(filter, filteredSightingList) for species in speciesWithFirstLastDates: tempSpeciesSightings = self.speciesDict[species[0]] @@ -1140,8 +2595,7 @@ def GetNewLifeSpecies(self, filter, filteredSightingList, sightingListForSpec return(lifeSpecies) - - def GetNewLocationSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): + def GetNewLocationSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): # find which years are in the filtered sightingsfor the species in question locations = set() @@ -1149,7 +2603,7 @@ def GetNewLocationSpecies(self, filter, filteredSightingList, sightingListFor tempFilter = deepcopy(filter) for s in sightingListForSpeciesSubset: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: locations.add(s["location"]) locations = list(locations) locations.sort() @@ -1160,13 +2614,13 @@ def GetNewLocationSpecies(self, filter, filteredSightingList, sightingListFor tempFilter.setLocationType("Location") tempFilter.setLocationName(location) - speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) + speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) thisLocationSightings = self.locationDict[location] tempSpeciesDict = {} for tms in thisLocationSightings: - commonName= tms["commonName"] + commonName = tms["commonName"] if commonName not in tempSpeciesDict.keys(): tempSpeciesDict[commonName] = [tms] else: @@ -1176,19 +2630,18 @@ def GetNewLocationSpecies(self, filter, filteredSightingList, sightingListFor tempSpeciesSightings = tempSpeciesDict[species[0]] tempSpeciesSightings = sorted(tempSpeciesSightings, key=lambda x: (x["date"])) if species[1] <= tempSpeciesSightings[0]["date"]: - locationSpecies.append([location, species[0]]) + locationSpecies.append([location, species[0]]) return(locationSpecies) - - def GetNewMonthSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset): + def GetNewMonthSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset): # find which months are in the filtered sightingsfor the species in question months = set() monthSpecies = [] for s in sightingListForSpeciesSubset: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: months.add(s["date"][5:7]) months = list(months) months.sort() @@ -1205,7 +2658,7 @@ def GetNewMonthSpecies(self, filter, filteredSightingList, sightingListForSpe tempFilter.setEndSeasonalDay(lastDayOfThisMonth) - speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) + speciesWithFirstLastDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) thisMonthSightings = self.monthDict[month] @@ -1221,14 +2674,13 @@ def GetNewMonthSpecies(self, filter, filteredSightingList, sightingListForSpe tempSpeciesSightings = tempSpeciesDict[species[0]] tempSpeciesSightings = sorted(tempSpeciesSightings, key=lambda x: (x["date"])) if species[1] <= tempSpeciesSightings[0]["date"]: - monthRange = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] - monthName = monthRange[int(month)-1] - monthSpecies.append([monthName, species[0]]) + monthRange = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] + monthName = monthRange[int(month) - 1] + monthSpecies.append([monthName, species[0]]) return(monthSpecies) - - def GetNewStateSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): + def GetNewStateSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset, speciesList): # find which years are in the filtered sightingsfor the species in question states = set() @@ -1236,7 +2688,7 @@ def GetNewStateSpecies(self, filter, filteredSightingList, sightingListForSpe tempFilter = deepcopy(filter) for s in sightingListForSpeciesSubset: - if self.TestSighting(s, tempFilter) is True: + if self.TestSighting(s, tempFilter) is True: states.add(s["state"]) states = list(states) states.sort() @@ -1247,7 +2699,7 @@ def GetNewStateSpecies(self, filter, filteredSightingList, sightingListForSpe tempFilter.setLocationType("State") tempFilter.setLocationName(state) - speciesWithDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) + speciesWithDates = self.GetSpeciesWithData(tempFilter, filteredSightingList) thisStateSightings = self.stateDict[state] tempSpeciesDict = {} @@ -1262,12 +2714,11 @@ def GetNewStateSpecies(self, filter, filteredSightingList, sightingListForSpe tempSpeciesSightings = tempSpeciesDict[species[0]] tempSpeciesSightings = sorted(tempSpeciesSightings, key=lambda x: (x["date"])) if species[1] <= tempSpeciesSightings[0]["date"]: - stateSpecies.append([state, species[0]]) + stateSpecies.append([state, species[0]]) return(stateSpecies) - - def GetNewYearSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset): + def GetNewYearSpecies(self, filter, filteredSightingList, sightingListForSpeciesSubset): # find which years are in the filtered sightingsfor the species in question years = set() @@ -1275,7 +2726,7 @@ def GetNewYearSpecies(self, filter, filteredSightingList, sightingListForSpec thisFilter = deepcopy(filter) for s in sightingListForSpeciesSubset: - if self.TestSighting(s, filter) is True: + if self.TestSighting(s, filter) is True: years.add(s["date"][0:4]) years = list(years) years.sort() @@ -1288,7 +2739,7 @@ def GetNewYearSpecies(self, filter, filteredSightingList, sightingListForSpec endDate = year + "-12-31" thisFilter.setStartDate(startDate) thisFilter.setEndDate(endDate) - speciesWithDates = self.GetSpeciesWithData(thisFilter, filteredSightingList) + speciesWithDates = self.GetSpeciesWithData(thisFilter, filteredSightingList) tempSpeciesDict = {} for tms in thisYearSightings: @@ -1302,91 +2753,244 @@ def GetNewYearSpecies(self, filter, filteredSightingList, sightingListForSpec tempSpeciesSightings = tempSpeciesDict[species[0]] tempSpeciesSightings = sorted(tempSpeciesSightings, key=lambda x: (x["date"])) if species[1] <= tempSpeciesSightings[0]["date"]: - yearSpecies.append([year, species[0]]) + yearSpecies.append([year, species[0]]) return(yearSpecies) - - def GetFamilyName(self, species): + + def GetQuickEntryCode(self, species): + + thisSpecies = deepcopy(species) + + if " (" in thisSpecies: + thisSpecies = thisSpecies.split(" (")[0] + + if " x " in thisSpecies: + return("Not applicable to hybrids") + + cleanedSpeciesName = thisSpecies.replace('-',' ') + wordList = cleanedSpeciesName.split(" ") - filteredSightingList = self.speciesDict[species] + quickEntryCode = "" - familyName = filteredSightingList[0]["family"] + if len(wordList) == 1: + quickEntryCode = wordList[0][0:4] - return(familyName) + if len(wordList) == 2: + quickEntryCode = wordList[0][0:2] + wordList[1][0:2] + + if len(wordList) == 3: + quickEntryCode = wordList[0][0:1] + wordList[1][0:1] + wordList[2][0:2] + if len(wordList) == 4: + quickEntryCode = wordList[0][0:1] + wordList[1][0:1] + wordList[2][0:1] + wordList[3][0:1] + + return(quickEntryCode) - def GetOrderName(self, species): - filteredSightingList = self.speciesDict[species] + def GetBBLCode(self, species): - orderName = filteredSightingList[0]["order"] + thisScientificName = self.GetScientificName(species) + + if thisScientificName in self.bblCodeDict.keys(): + bblCode = self.bblCodeDict[thisScientificName] + else: + bblCode = "" - return(orderName) + return(bblCode) + + def GetFamilyName(self, species): + + speciesDetails = self.speciesDict[species] + + familyName = speciesDetails[0]["family"] + + return(familyName) + + + def GetOrderName(self, species): + + speciesDetails = self.speciesDict[species] + + orderName = speciesDetails[0]["order"] + + return(orderName) + - def GetScientificName(self, species): + def GetScientificName(self, species): - filteredSightingList = self.speciesDict[species] + speciesDetails = self.speciesDict[species] - scientificName = filteredSightingList[0]["scientificName"] + scientificName = speciesDetails[0]["scientificName"] return(scientificName) - def GetCountryCode(self, longName): + def GetRegionCode(self, longName): + + if longName == "**All Regions**": + return("**All Regions**") + + else: + return(self.regionCodeDict[longName]) + + + def GetRegionName(self, code): + + return(self.regionNameDict[code]) + + + def GetCountryCode(self, longName): if longName == "**All Countries**": return("**All Countries**") if self.countryStateCodeFileFound is True: for l in self.masterLocationList: - if l[4] == longName: - return(l[0]) + if l["countryName"] == longName: + return(l["countryCode"]) else: - return(longName) - + return(longName) + - def GetStateCode(self, longName): + def GetStateCode(self, longName): if longName == "**All States**": return("**All States**") if self.countryStateCodeFileFound is True: for l in self.masterLocationList: - if l[5] == longName: - return(l[1]) + if l["stateName"] == longName: + return(l["stateCode"]) else: return(longName) + - - def GetCountryName(self, shortCode): + def GetCountryName(self, shortCode): if shortCode == "**All Countries**": return("**All Countries**") if self.countryStateCodeFileFound is True: for l in self.masterLocationList: - if l[0] == shortCode: - return(l[4]) + if l["countryCode"] == shortCode: + return(l["countryName"]) else: return(shortCode) - def GetMonthName(self, monthNumberString): + def GetMonthName(self, monthNumberString): monthName = self.monthNameDict[monthNumberString] return(monthName) - - - def GetStateName(self, shortCode): + + + def GetStateName(self, shortCode): if shortCode == "**All States**": return("**All States**") if self.countryStateCodeFileFound is True: for l in self.masterLocationList: - if l[1] == shortCode: - return(l[5]) + if l["stateCode"] == shortCode: + return(l["stateName"]) else: return(shortCode) + + + def dumpDatabaseToFile(self): + + # routine used only in debugging + f = open("yearbird_Db_Dump.txt", "w+") + for s in self.sightingList: + f.write(str(s)) + f.write("\n") + f.close() + + + def setStartupFolder(self, startupFolder): + self.startupFolder = startupFolder + + + def getStartupFolder(self): + return(self.startupFolder) + + + def setPhotoDataFile(self, photoDataFile): + self.photoDataFile = photoDataFile + + + def getPhotoDataFile(self): + return(self.photoDataFile) + + + def addPhotoDataToDb(self, photoData): + + if photoData["camera"] not in self.cameraList: + if photoData["camera"] != "": + self.cameraList.append(photoData["camera"]) + self.cameraList.sort() + + if photoData["lens"] not in self.lensList: + if photoData["lens"] != "": + self.lensList.append(photoData["lens"]) + self.lensList.sort() + + if photoData["shutterSpeed"] not in self.shutterSpeedList: + if photoData["shutterSpeed"] != "": + self.shutterSpeedList.append(photoData["shutterSpeed"]) + self.shutterSpeedList = natsorted(self.shutterSpeedList, key=lambda y: y.lower(), reverse=True) + + if photoData["aperture"] not in self.apertureList: + if photoData["aperture"] != "": + self.apertureList.append(photoData["aperture"]) + self.apertureList= natsorted(self.apertureList, key=lambda y: y.lower()) + + if photoData["focalLength"] not in self.focalLengthList: + if photoData["focalLength"] != "": + self.focalLengthList.append(photoData["focalLength"]) + self.focalLengthList = natsorted(self.focalLengthList, key=lambda y: y.lower()) + + if photoData["iso"] not in self.isoList: + if photoData["iso"] != "": + self.isoList.append(photoData["iso"]) + self.isoList = natsorted(self.isoList, key=lambda y: y.lower()) + + + def readPreferences(self): + + # try to open the preferences file + + if os.path.isfile("yearbirdPreferences.txt"): + + with open("yearbirdPreferences.txt", "r") as settingsFile: + + for line in settingsFile: + + if "startupFolder=" in line: + startupFolder = line[14:].rstrip(" \n\r") + startupFolder = startupFolder.lstrip(" ") + self.startupFolder= startupFolder + + if "photoDataFile=" in line: + photoDataFile = line[14:].rstrip(" \n\r") + photoDataFile = photoDataFile.lstrip(" ") + self.photoDataFile = photoDataFile + + settingsFile.close() + + + def writePreferences(self): + + f = open("yearbirdPreferences.txt", "w") + + f.write("startupFolder=" + self.startupFolder) + f.write("\n") + + f.write("photoDataFile=" + self.photoDataFile) + f.write("\n") + + f.close() + + diff --git a/code_DateTotals.py b/code_DateTotals.py index c44a37d..8bfe76a 100644 --- a/code_DateTotals.py +++ b/code_DateTotals.py @@ -41,6 +41,7 @@ class DateTotals(QMdiSubWindow, form_DateTotals.Ui_frmDateTotals): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" self.tblYearTotals.itemDoubleClicked.connect(self.YearTableClicked) self.tblMonthTotals.itemDoubleClicked.connect(self.MonthTableClicked) @@ -342,9 +343,9 @@ def FillDateTotals(self, filter): for sighting in minimalSightingList: - # Consider only full species, not slash or spuh entries + # Consider only full species, not slash or spuh or hybrid entries commonName = sighting["commonName"] - if ("/" not in commonName) and ("sp." not in commonName): + if ("/" not in commonName) and ("sp." not in commonName) and " x " not in commonName: if self.mdiParent.db.TestSighting(sighting, filter) is True: dbYears.add(sighting["date"][0:4]) @@ -416,7 +417,7 @@ def FillDateTotals(self, filter): for s in monthDict[month]: monthSpecies.add(s["commonName"]) monthChecklists.add(s["checklistID"]) - monthArray.append([len(monthSpecies), month, len(monthChecklists)]) + monthArray.append([len(monthSpecies), month, len(monthChecklists) - 1 ]) monthArray.sort(reverse=True) R = 0 for month in monthArray: diff --git a/code_Families.py b/code_Families.py index 381382c..d8db420 100644 --- a/code_Families.py +++ b/code_Families.py @@ -8,13 +8,9 @@ # import basic Python libraries import random -from copy import ( - deepcopy -) +from copy import deepcopy -from math import ( - floor -) +from math import floor # import the Qt components we'll use # do this so later we won't have to clutter our code with references to parent Qt classes @@ -22,12 +18,14 @@ from PyQt5.QtGui import ( QCursor, QColor, - QFont + QFont, + QPen ) from PyQt5.QtCore import ( Qt, - pyqtSignal + pyqtSignal, + QTimer ) from PyQt5.QtWidgets import ( @@ -36,7 +34,8 @@ QHeaderView, QMdiSubWindow, QGraphicsScene, - QGraphicsEllipseItem + QGraphicsEllipseItem, + QMenu ) @@ -45,23 +44,93 @@ class Families(QMdiSubWindow, form_Families.Ui_frmFamilies): # create "resized" as a signal that the window can emit # we respond to this signal with the form's resizeMe method below resized = pyqtSignal() + + class MyEllipse(QGraphicsEllipseItem): + + family = "" + parent= "" + + def mouseDoubleClickEvent(self, event): + # Do your stuff here. + self.parent.CreateFamilyList(self.family) + + def contextMenuEvent(self, event): + + menu = QMenu() + menu.setStyleSheet("color:black; background-color: white;") + + actionSetFilterToFamily = menu.addAction("Set filter to " + self.family) + + action = menu.exec(event.screenPos()) + + if action == actionSetFilterToFamily: + self.parent.setFamilyFilter(self.family) + def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" + + self.resized.connect(self.resizeMe) + self.lstFamilies.currentRowChanged.connect(self.FillSpecies) self.lstFamilies.itemDoubleClicked.connect(self.ClickedLstFamilies) - self.lstSpecies.itemDoubleClicked.connect(self.ClickedLstSpecies) + self.lstSpecies.itemDoubleClicked.connect(self.ClickedLstSpecies) + self.tblPieChartLegend.doubleClicked.connect(self.clickedPieChartLegend) + + self.lstFamilies.addAction(self.actionSetFilterToFamily) + self.actionSetFilterToFamily.triggered.connect(self.lstFamiliesSetFilterToFamily) + + self.lstSpecies.addAction(self.actionSetFilterToSpecies) + self.actionSetFilterToSpecies.triggered.connect(self.lstSpeciesSetFilterToSpecies) + + self.tblPieChartLegend.addAction(self.actionSetFamilyFilterToPieChartLegendFamily) + self.actionSetFamilyFilterToPieChartLegendFamily.triggered.connect(self.tblPieChartLegendSetFilterToFamily) + self.lstFamilies.setSpacing(2) self.lstSpecies.setSpacing(2) - self.resized.connect(self.resizeMe) - self.tabFamilies.setCurrentIndex(0) + + self.tabFamilies.setCurrentIndex(1) + self.filter = code_Filter.Filter() self.filteredSpeciesList = [] self.filteredSpeciesListWithFamilies = [] self.familiesList = [] - + + + def lstFamiliesSetFilterToFamily(self): + + family = self.lstFamilies.currentItem().text() + self.setFamilyFilter(family) + + + def tblPieChartLegendSetFilterToFamily(self): + + currentRow = self.tblPieChartLegend.currentRow() + family = self.tblPieChartLegend.item(currentRow, 1).text() + self.setFamilyFilter(family) + + + def lstSpeciesSetFilterToSpecies(self): + + commonName = self.lstSpecies.currentItem().text() + self.mdiParent.setSpeciesFilter(commonName) + + + def setFamilyFilter(self, family): + + self.mdiParent.setFamilyFilter(family) + + + def clickedPieChartLegend(self): + + currentRow = self.tblPieChartLegend.currentRow() + + family = self.tblPieChartLegend.item(currentRow, 1).text() + self.CreateFamilyList(family) + def ClickedLstSpecies(self): species = self.lstSpecies.currentItem().text() @@ -115,7 +184,7 @@ def FillSpecies(self): self.lstSpecies.setSpacing(2) count = self.mdiParent.db.CountSpecies(familySpecies) - self.lblSpecies.setText("Species for selected family (" + str(count) + ")") + self.lblSpecies.setText("Species for selected family: " + str(count)) def html(self): @@ -194,22 +263,22 @@ def html(self): def FillFamilies(self, filter): + self.filter = deepcopy(filter) self.familiesList = self.mdiParent.db.GetFamilies(self.filter) self.filteredSpeciesList = self.mdiParent.db.GetSpecies(self.filter) cleanedFilteredSpeciesList = [] for s in self.filteredSpeciesList: - if ("sp." not in s) and ("/" not in s): + if "sp." not in s and "/" not in s and " x " not in s: cleanedFilteredSpeciesList.append(s) self.filteredSpeciesList = cleanedFilteredSpeciesList - self.lblFamilies.setText("Families (" + str(len(self.familiesList )) + "):") + self.lblFamilies.setText("Families: " + str(len(self.familiesList ))) self.lstFamilies.addItems(self.familiesList ) if len(self.familiesList ) > 0: self.lstFamilies.setCurrentRow(0) self.FillSpecies() - self.FillPieChart() self.lstFamilies.setSpacing(2) else: @@ -220,22 +289,27 @@ def FillFamilies(self, filter): self.setWindowTitle("Families: "+ self.lblLocation.text() + ": " + self.lblDateRange.text()) + QApplication.processEvents() + # report success back to MainWindow return(True) def FillPieChart(self): + self.tblPieChartLegend.clear() - scene = QGraphicsScene() + QApplication.processEvents() + self.tblPieChartLegend.setColumnCount(3) self.tblPieChartLegend.setRowCount(len(self.familiesList)) + self.tblPieChartLegend.horizontalHeader().setVisible(False) header = self.tblPieChartLegend.horizontalHeader() header.setSectionResizeMode(1, QHeaderView.Stretch) self.tblPieChartLegend.setShowGrid(False) - total = 0 - colours = [] + + colors = [] familiesCount = [] set_angle = 0 R = 0 @@ -249,48 +323,70 @@ def FillPieChart(self): # randomly create three color values (rgb) for rgb in range(3): number.append(random.randrange(0, 255)) - colours.append(QColor(number[0],number[1],number[2])) + colors.append(QColor(number[0],number[1],number[2])) - if self.gvPieChart.width() < self.gvPieChart.height(): - shorterSide = self.gvPieChart.width() - else: - shorterSide = self.gvPieChart.height() - - pieChartRadius = floor(.9 * shorterSide) + scene = QGraphicsScene() + for family in familiesCount: # create the angle of each wedge according to its perecent of 360 angle = round(family/total*16*360) # set size of circle and create wedge - ellipse = QGraphicsEllipseItem(0, 0, pieChartRadius, pieChartRadius) + ellipse = self.MyEllipse(0, 0, 100, 100) + # set the tooltip for the ellipse wedge + ellipse.setToolTip(self.familiesList[R] + ": " + str(family)) # set center of circle, like an axle ellipse.setPos(0,0) # rotate through the wedge ellipse.setStartAngle(set_angle) ellipse.setSpanAngle(angle) # assign color - ellipse.setBrush(colours[R]) + ellipse.setBrush(colors[R]) + # turn off pen so we won't have ellipse borders + + pen = QPen() + pen.setWidthF(.1) + ellipse.setPen(pen) + # create set_angle for next time around set_angle = angle + set_angle # add the actual wedge to the scene object scene.addItem(ellipse) + + # save meta data to ellipse for future use (e.g., clicks) + ellipse.family = self.familiesList[R] + ellipse.parent = self + # add entry to legend table and set proper color colorItem = QTableWidgetItem() - colorItem.setBackground(QColor(colours[R])) + colorItem.setBackground(QColor(colors[R])) + familyNameItem = QTableWidgetItem() familyNameItem.setData(Qt.DisplayRole, self.familiesList[R]) + familyCountItem = QTableWidgetItem() familyCountItem.setData(Qt.DisplayRole, family) + self.tblPieChartLegend.setItem(R, 0, colorItem) self.tblPieChartLegend.setItem(R, 1, familyNameItem) self.tblPieChartLegend.setItem(R, 2, familyCountItem) R = R + 1 - + self.gvPieChart.setScene(scene) + + self.fitPieChart() + + return(True) + + + def fitPieChart(self): + self.gvPieChart.setSceneRect(0, 0, 100, 100) + self.gvPieChart.fitInView(self.gvPieChart.sceneRect(), Qt.KeepAspectRatio) + def resizeEvent(self, event): - #routine to handle events on objects, like clicks, lost focus, gained forcus, etc. + #routine to handle events on objects, like clicks, lost focus, gained focus, etc. self.resized.emit() return super(self.__class__, self).resizeEvent(event) @@ -300,7 +396,7 @@ def resizeMe(self): windowWidth = self.frameGeometry().width() windowHeight = self.frameGeometry().height() self.scrollArea.setGeometry(5, 27, windowWidth -10 , windowHeight-35) - self.FillPieChart() + self.fitPieChart() def scaleMe(self): diff --git a/code_Filter.py b/code_Filter.py index 2d88943..78d1d05 100644 --- a/code_Filter.py +++ b/code_Filter.py @@ -1,18 +1,36 @@ class Filter(): - locationType = "" # str choices are Country, County, State, Location, or "" - locationName = "" # str name of region or location or "" - startDate = "" # str format yyyy-mm-dd or "" - endDate = "" # str format yyyy-mm-dd or "" - startSeasonalMonth = "" # str format mm - startSeasonalDay = "" # str format dd - endSeasonalMonth = "" # str format mm - endSeasonalDay = "" # str format dd - checklistID = "" # str number taken from main sightings CSV file - speciesName = "" # str species name - speciesList = [] # list of species names - family = "" #str family name - time = "" #str format HH:MM in 24-hour format - order = "" #str order name + locationType = "" # str choices are Region, Country, County, State, Location, or "" + locationName = "" # str name of region or location or "" + startDate = "" # str format yyyy-mm-dd or "" + endDate = "" # str format yyyy-mm-dd or "" + startSeasonalMonth = "" # str format mm + startSeasonalDay = "" # str format dd + endSeasonalMonth = "" # str format mm + endSeasonalDay = "" # str format dd + checklistID = "" # str number taken from main sightings CSV file + speciesName = "" # str species name + scientificName = "" + speciesList = [] # list of species names + family = "" #str family name + time = "" #str format HH:MM in 24-hour format + order = "" + commonNameSearch = "" #str commonNameSearch string + + sightingHasPhoto = "" + speciesHasPhoto = "" + validPhotoSpecies = [] # list of species names that are valid according to the photo species filter setting + camera = "" + lens = "" + startShutterSpeed = "" + endShutterSpeed = "" + startAperture = "" + endAperture = "" + startFocalLength = "" + endFocalLength = "" + startIso = "" + endIso = "" + startRating = "" + endRating = "" def setLocationType(self, locationType): @@ -95,6 +113,14 @@ def getSpeciesName(self): return(self.speciesName) + def setScientificName(self, scientficName): + self.scientificName = scientficName + + + def getScientificName(self): + return(self.scientificName) + + def setSpeciesList(self, speciesList): self.speciesList = speciesList @@ -107,6 +133,10 @@ def setFamily(self, family): self.family = family + def getFamily(self): + return(self.family) + + def getOrder(self): return(self.order) @@ -115,8 +145,12 @@ def setOrder(self, order): self.order = order - def getFamily(self): - return(self.family) + def getCommonNameSearch(self): + return(self.commonNameSearch) + + + def setCommonNameSearch(self, commonNameSearch): + self.commonNameSearch = commonNameSearch def setTime(self, time): @@ -125,14 +159,131 @@ def setTime(self, time): def getTime(self): return(self.time) + + + def setStartRating(self, startRating): + self.startRating = startRating + + + def getStartRating(self): + return(self.startRating) + + + def setEndRating(self, endRating): + self.endRating = endRating + + + def getEndRating(self): + return(self.endRating) + + + def getSightingHasPhoto(self): + return(self.sightingHasPhoto) + + + def setSpeciesHasPhoto(self, speciesHasPhoto): + self.speciesHasPhoto = speciesHasPhoto + + + def getSpeciesHasPhoto(self): + return(self.speciesHasPhoto) + + + def setValidPhotoSpecies(self, validPhotoSpecies): + self.validPhotoSpecies = validPhotoSpecies + + + def getValidPhotoSpecies(self): + return(self.validPhotoSpecies) + + + def setCamera(self, camera): + self.camera = camera + + + def getCamera(self): + return(self.camera) + + + def setLens(self, lens): + self.lens = lens + + + def getLens(self): + return(self.lens) + + + def setStartShutterSpeed(self, startShutterSpeed): + self.startShutterSpeed = startShutterSpeed + + + def getStartShutterSpeed(self): + return(self.startShutterSpeed) + + + def setEndShutterSpeed(self, endShutterSpeed): + self.endShutterSpeed = endShutterSpeed + def getEndShutterSpeed(self): + return(self.endShutterSpeed) + + + def setStartAperture(self, startAperture): + self.startAperture = startAperture + + + def getStartAperture(self): + return(self.startAperture) + + + def setEndAperture(self, endAperture): + self.endAperture = endAperture + + + def getEndAperture(self): + return(self.endAperture) + + + def setStartFocalLength(self, startFocalLength): + self.startFocalLength = startFocalLength + + + def getStartFocalLength(self): + return(self.startFocalLength) + + + def setEndFocalLength(self, endFocalLength): + self.endFocalLength = endFocalLength + + + def getEndFocalLength(self): + return(self.endFocalLength) + + + def setStartIso(self, startIso): + self.startIso = startIso + + + def getStartIso(self): + return(self.startIso) + + + def setEndIso(self, endIso): + self.endIso = endIso + + + def getEndIso(self): + return(self.endIso) + + def debugAll(self): returnString = ( "locationType: " + self.locationType + ' ' + "locationName: " + self.locationName + " " + "startDate: " + self.startDate + " " + "endDate: " + self.endDate + " " + + "time: " + self.time + " " + "startSeasonalMonth: " + self.startSeasonalMonth + " " + "startSeasonalDay: " + self.startSeasonalDay + " " + "endSeasonalMonth: " + self.endSeasonalMonth + " " + diff --git a/code_Find.py b/code_Find.py index 2227c72..acdff05 100644 --- a/code_Find.py +++ b/code_Find.py @@ -25,6 +25,7 @@ class Find(QMdiSubWindow, form_Find.Ui_frmFind): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" self.resized.connect(self.resizeMe) self.btnFind.clicked.connect(self.CreateFindResults) diff --git a/code_Individual.py b/code_Individual.py index 8e7e4ee..2155ac0 100644 --- a/code_Individual.py +++ b/code_Individual.py @@ -4,6 +4,8 @@ import code_Lists import code_Location import code_Web +import code_Photos +import code_Stylesheet # import the Qt components we'll use # do this so later we won't have to clutter our code with references to parent Qt classes @@ -25,12 +27,11 @@ QTableWidgetItem, QHeaderView, QMdiSubWindow, - QTreeWidgetItem + QTreeWidgetItem, + QPushButton ) -from math import ( - floor -) +from math import floor class Individual(QMdiSubWindow, form_Individual.Ui_frmIndividual): @@ -43,6 +44,7 @@ class Individual(QMdiSubWindow, form_Individual.Ui_frmIndividual): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" self.resized.connect(self.resizeMe) self.trLocations.currentItemChanged.connect(self.FillDates) @@ -52,7 +54,6 @@ def __init__(self): self.lstDates.itemDoubleClicked.connect(lambda: self.CreateSpeciesList(self.lstDates)) self.tblYearLocations.itemDoubleClicked.connect(lambda: self.CreateSpeciesList(self.tblYearLocations)) self.tblMonthLocations.itemDoubleClicked.connect(lambda: self.CreateSpeciesList(self.tblMonthLocations)) - self.buttonMacaulay.clicked.connect(self.CreateWebPageForPhotos) self.buttonWikipedia.clicked.connect(self.CreateWebPageForWikipedia) self.buttonAllAboutBirds.clicked.connect(self.CreateWebPageForAllAboutBirds) self.buttonAudubon.clicked.connect(self.CreateWebPageForAudubon) @@ -62,15 +63,30 @@ def __init__(self): def FillIndividual(self, Species): + self.setWindowTitle(Species) self.lblCommonName.setText(Species) - self.lblCommonName.setStyleSheet('QLabel {color: blue;}') + + red = code_Stylesheet.speciesColor.red() + green = code_Stylesheet.speciesColor.green() + blue = code_Stylesheet.speciesColor.blue() + self.lblCommonName.setStyleSheet('QLabel {font-weight: bold; color: rgb(' + str(red) + ',' + str(green) + ',' + str(blue) + ');}') self.lblScientificName.setText(self.mdiParent.db.GetScientificName(Species)) orderAndFamilyText = self.mdiParent.db.GetOrderName(Species) + # check if taxonomy data has been loaded. If so, add a semi-colon and the family name if orderAndFamilyText != "": orderAndFamilyText = orderAndFamilyText + "; " + self.mdiParent.db.GetFamilyName(Species) self.lblOrderName.setText(orderAndFamilyText) + + # if available, add BBL banding code + bblCode = self.mdiParent.db.GetBBLCode(Species) + if bblCode != "": + self.lblSpeciesCode.setText("IBP Banding Code: " + bblCode) + else: + # add species Quick Entry Code code used by eBird + self.lblSpeciesCode.setText("eBird Entry Code: " + self.mdiParent.db.GetQuickEntryCode(Species).upper()) + # find list of dates for species, to find oldest and newest filter = code_Filter.Filter() filter.setSpeciesName(Species) @@ -181,9 +197,7 @@ def FillIndividual(self, Species): locationCount = locationCount + len(theseLocations) - # Fill Year Tree widget - theseYears = [] - + # Fill Year Tree widget theseYears = set() for d in dateList: theseYears.add(d[0:4]) @@ -282,7 +296,19 @@ def FillIndividual(self, Species): if locationCount == 1: self.lblLocations.setText("Location (1)") else: - self.lblLocations.setText("Locations (" + str(locationCount) + ")") + self.lblLocations.setText("Locations (" + str(locationCount) + ")") + + # add a photo button if the db holds photos of this species + filter = code_Filter.Filter() + filter.setSpeciesName(Species) + + photoSightings = self.mdiParent.db.GetSightingsWithPhotos(filter) + + if len(photoSightings) > 0: + btnPhotos = QPushButton() + btnPhotos.setText("Photos") + btnPhotos.clicked.connect(self.createPhotos) + self.verticalLayout_10.addWidget(btnPhotos) self.scaleMe() self.resizeMe() @@ -567,30 +593,24 @@ def CreateWebPageForAudubon(self): sub.LoadWebPage(url) self.parent().parent().addSubWindow(sub) self.mdiParent.PositionChildWindow(sub, self) - sub.show() + sub.show() - def CreateWebPageForPhotos(self): + def createPhotos(self): - speciesScientificName = self.lblScientificName.text() speciesCommonName = self.lblCommonName.text() - - sub = code_Web.Web() + + sub = code_Photos.Photos() sub.mdiParent = self.mdiParent - sub.title = "Macaulay Library Photos: " + speciesCommonName - url = ("https://search.macaulaylibrary.org/catalog?searchField=species&q=" - + speciesScientificName.split(" ")[0] - +"+" - + speciesScientificName.split(" ")[1] - ) - - if speciesScientificName.count(" ") == 2: - url = url + "%20" + speciesScientificName.split(" ")[2] - - sub.LoadWebPage(url) + + filter = code_Filter.Filter() + filter.setSpeciesName(speciesCommonName) + sub.FillPhotos(filter) + self.parent().parent().addSubWindow(sub) self.mdiParent.PositionChildWindow(sub, self) - sub.show() + + sub.show() def CreateWebPageForWikipedia(self): @@ -796,12 +816,11 @@ def scaleMe(self): textHeight = metrics.boundingRect("2222-22-22").height() textWidth= metrics.boundingRect("2222-22-22").width() - self.buttonMacaulay.resize(self.buttonMacaulay.x(), textHeight) - self.buttonWikipedia.resize(self.buttonMacaulay.x(), textHeight) - self.buttonAudubon.resize(self.buttonMacaulay.x(), textHeight) - self.buttonAllAboutBirds.resize(self.buttonMacaulay.x(), textHeight) - self.buttonChecklists.resize(self.buttonMacaulay.x(), textHeight) - self.buttonMap.resize(self.buttonMacaulay.x(), textHeight) + self.buttonWikipedia.resize(self.buttonWikipedia.x(), textHeight) + self.buttonAudubon.resize(self.buttonWikipedia.x(), textHeight) + self.buttonAllAboutBirds.resize(self.buttonWikipedia.x(), textHeight) + self.buttonChecklists.resize(self.buttonWikipedia.x(), textHeight) + self.buttonMap.resize(self.buttonWikipedia.x(), textHeight) root = self.trLocations.invisibleRootItem() for i in range(root.childCount()): diff --git a/code_Lists.py b/code_Lists.py index 18fd301..186886f 100644 --- a/code_Lists.py +++ b/code_Lists.py @@ -4,6 +4,7 @@ import code_Location import code_Individual import code_FloatDelegate +import code_Stylesheet # import basic Python libraries from copy import deepcopy @@ -30,7 +31,6 @@ ) - class Lists(QMdiSubWindow, form_Lists.Ui_frmSpeciesList): # create "resized" as a signal that the window can emit @@ -41,17 +41,12 @@ class Lists(QMdiSubWindow, form_Lists.Ui_frmSpeciesList): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) - self.mdiParent = "" + + self.setAttribute(Qt.WA_DeleteOnClose,True) + self.tblList.doubleClicked.connect(self.tblListClicked) self.btnShowLocation.clicked.connect(self.CreateLocation) self.txtFind.textChanged.connect(self.ChangedFindText) - self.resized.connect(self.resizeMe) - self.currentSpeciesList = [] - self.btnShowLocation.setVisible(False) - self.lblDetails.setVisible(False) - self.filter = () - self.listType = "" - self.actionSetDateFilter.triggered.connect(self.setDateFilter) self.actionSetFirstDateFilter.triggered.connect(self.setFirstDateFilter) self.actionSetLastDateFilter.triggered.connect(self.setLastDateFilter) @@ -60,6 +55,16 @@ def __init__(self): self.actionSetStateFilter.triggered.connect(self.setStateFilter) self.actionSetCountyFilter.triggered.connect(self.setCountyFilter) self.actionSetLocationFilter.triggered.connect(self.setLocationFilter) + self.tblList.horizontalHeader().sortIndicatorChanged.connect(self.tblList.resizeRowsToContents) + self.resized.connect(self.resizeMe) + + self.btnShowLocation.setVisible(False) + self.lblDetails.setVisible(False) + + self.mdiParent = "" + self.currentSpeciesList = [] + self.filter = () + self.listType = "" def resizeEvent(self, event): @@ -78,6 +83,7 @@ def resizeMe(self): def setCountyFilter(self): + if self.listType in ["Checklists"]: if self.listType == "Checklists": countyName= self.tblList.item(self.tblList.currentRow(), 2).text() @@ -91,7 +97,8 @@ def setCountryFilter(self): self.mdiParent.setCountryFilter(countryName) - def setDateFilter(self): + def setDateFilter(self): + if self.listType in ["Checklists", "Single Checklist"]: if self.listType == "Checklists": date = self.tblList.item(self.tblList.currentRow(), 4).text() @@ -101,6 +108,7 @@ def setDateFilter(self): def setFirstDateFilter(self): + if self.listType in ["Species", "Locations"]: if self.listType == "Species": date = self.tblList.item(self.tblList.currentRow(), 2).text() @@ -120,6 +128,7 @@ def setLastDateFilter(self): def setLocationFilter(self): + if self.listType in ["Locations", "Single Checklist", "Checklists"]: if self.listType == "Locations": locationName= self.tblList.item(self.tblList.currentRow(), 0).text() @@ -131,12 +140,14 @@ def setLocationFilter(self): def setSpeciesFilter(self): + if self.listType in ["Species", "Single Checklist"]: speciesName = self.tblList.item(self.tblList.currentRow(), 1).text() self.mdiParent.setSpeciesFilter(speciesName) def setStateFilter(self): + if self.listType in ["Checklists"]: if self.listType == "Checklists": stateName= self.tblList.item(self.tblList.currentRow(), 1).text() @@ -495,9 +506,9 @@ def FillSpecies(self, filter): font.setBold(True) if filter.getLocationType() == "Location": - self.btnShowLocation.setVisible(True) + self.btnShowLocation.setVisible(True) - # set up tblList column headers and widths + # set up tblList column headers and widths self.tblList.setShowGrid(False) header = self.tblList.horizontalHeader() header.setVisible(True) @@ -506,13 +517,13 @@ def FillSpecies(self, filter): if filter.getChecklistID() == "": thisWindowList = self.mdiParent.db.GetSpeciesWithData(filter, [], "Subspecies") - thisCleanedWindowList = [] - - # clean out spuh and slash entries - for s in range(len(thisWindowList)): - if not("sp." in thisWindowList[s][0] or "/" in thisWindowList[s][0]): - thisCleanedWindowList.append(thisWindowList[s]) - thisWindowList = thisCleanedWindowList +# thisCleanedWindowList = [] +# +# # clean out spuh and slash entries +# for s in range(len(thisWindowList)): +# if not("sp." in thisWindowList[s][0] or "/" in thisWindowList[s][0]): +# thisCleanedWindowList.append(thisWindowList[s]) +# thisWindowList = thisCleanedWindowList if len(thisWindowList) == 0: return(False) @@ -545,7 +556,12 @@ def FillSpecies(self, filter): self.tblList.setItem(R, 1, speciesItem) self.tblList.item(R, 1).setFont(font) - self.tblList.item(R, 1).setForeground(Qt.blue) + + # set the species to gray if it's not a true species + if " x " in species[0] or "sp." in species[0] or "/" in species[0]: + self.tblList.item(R, 1).setForeground(Qt.gray) + else: + self.tblList.item(R, 1).setForeground(code_Stylesheet.speciesColor) self.tblList.setItem(R, 2, firstItem) self.tblList.setItem(R, 3, lastItem) @@ -597,9 +613,14 @@ def FillSpecies(self, filter): self.tblList.setItem(R, 0, taxItem) self.tblList.setItem(R, 1, speciesItem) self.tblList.item(R, 1).setFont(font) - self.tblList.item(R, 1).setForeground(Qt.blue) self.tblList.setItem(R, 2, countItem) self.tblList.setItem(R, 3, commentItem) + + # set the species to gray if it's not a true species + if " x " in s["commonName"] or "sp." in s["commonName"] or "/" in s["commonName"]: + self.tblList.item(R, 1).setForeground(Qt.gray) + else: + self.tblList.item(R, 1).setForeground(code_Stylesheet.speciesColor) self.currentSpeciesList.append(s["commonName"]) @@ -624,18 +645,18 @@ def FillSpecies(self, filter): distance = thisWindowList[0]["distance"] observerCount = thisWindowList[0]["observers"] - if time != "": + if time != ""and time is not None: time = time + ", " - if duration != "0": + if duration != "0" and duration is not None: duration = duration + " min, " else: duration = "" - if distance != "": + if distance != "" and distance is not None: distance = distance + " km, " - if observerCount != "": + if observerCount != "" and observerCount is not None: observerCount = observerCount + " obs, " if "Traveling" in protocol: @@ -665,9 +686,9 @@ def FillSpecies(self, filter): self.lblSpecies.setText( "Species: " + str(speciesCount) + - " plus " + + " + " + str(self.tblList.rowCount() - speciesCount) + - " other taxa" + " taxa" ) self.mdiParent.SetChildDetailsLabels(self, filter) @@ -677,6 +698,8 @@ def FillSpecies(self, filter): location = filter.getLocationName() if location != "": + if filter.getLocationType() == "Region": + location = self.mdiParent.db.GetRegionName(location) if filter.getLocationType() == "Country": location = self.mdiParent.db.GetCountryName(location) if filter.getLocationType() == "State": diff --git a/code_Location.py b/code_Location.py index 134511f..5ac8c12 100644 --- a/code_Location.py +++ b/code_Location.py @@ -6,6 +6,7 @@ import code_Lists import code_MapHtml import code_Individual +import code_Stylesheet from collections import defaultdict # import the Qt components we'll use @@ -42,6 +43,7 @@ from base64 import ( b64encode ) +import code_Stylesheet class Location(QMdiSubWindow, form_Location.Ui_frmLocation): @@ -51,6 +53,7 @@ class Location(QMdiSubWindow, form_Location.Ui_frmLocation): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" self.resized.connect(self.resizeMe) self.tblDates.currentItemChanged.connect(self.FillSpeciesForDate) @@ -231,12 +234,11 @@ def FillSpecies(self): tempFilter = code_Filter.Filter() tempFilter.setLocationType("Location") tempFilter.setLocationName(location) - speciesList = [] # get species data from db thisWindowList = self.mdiParent.db.GetSpeciesWithData(tempFilter) - # set up tblSpecies column headers and widths + # set up tblSpecies column headers and widths self.tblSpecies.setColumnCount(6) self.tblSpecies.setRowCount(len(thisWindowList)+1) self.tblSpecies.horizontalHeader().setVisible(True) @@ -244,9 +246,14 @@ def FillSpecies(self): header = self.tblSpecies.horizontalHeader() header.setSectionResizeMode(1, QHeaderView.Stretch) self.tblSpecies.setShowGrid(False) + + font = QFont() + font.setBold(True) + count = 0 + nonSpeciesTaxaCount = 0 # add species and dates to table row by row - R = 1 + R = 0 for species in thisWindowList: taxItem = QTableWidgetItem() taxItem.setData(Qt.DisplayRole, R) @@ -268,13 +275,23 @@ def FillSpecies(self): self.tblSpecies.setItem(R, 4, checklistsItem) self.tblSpecies.setItem(R, 5, percentageItem) - speciesList.append(species[0]) - R = R + 1 + self.tblSpecies.item(R, 1).setFont(font) - self.tblSpecies.removeRow(0) - - count = self.mdiParent.db.CountSpecies(speciesList) - self.lblSpecies.setText("Species (" + str(count) + "):") + # set the species to gray if it's not a true species + if " x " in species[0] or "sp." in species[0] or "/" in species[0]: + self.tblSpecies.item(R, 1).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + else: + self.tblSpecies.item(R, 1).setForeground(code_Stylesheet.speciesColor) + count += 1 + + R += 1 + + labelText = "Species: " + str(count) + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lblSpecies.setText(labelText) def SetDate(self, date): @@ -302,13 +319,35 @@ def FillSpeciesForDate(self): species = self.mdiParent.db.GetSpecies(tempFilter) - self.lstSpecies.addItems(species) - self.lstSpecies.setCurrentRow(0) - self.lstSpecies.setSpacing(2) + font = QFont() + font.setBold(True) - count = self.mdiParent.db.CountSpecies(species) + count = 0 + nonSpeciesTaxaCount = 0 - self.lblSpeciesSeen.setText("Species for selected date (" + str(count) + ")") + R = 0 + for s in species: + + self.lstSpecies.addItem(s) + self.lstSpecies.item(R).setFont(font) + # set the species to gray if it's not a true species + if " x " in s or "sp." in s or "/" in s: + self.lstSpecies.item(R).setForeground(Qt.gray) + nonSpeciesTaxaCount += 1 + else: + self.lstSpecies.item(R).setForeground(code_Stylesheet.speciesColor) + count += 1 + + R += 1 + + labelText = "Species: " + str(count) + if nonSpeciesTaxaCount > 0: + labelText = labelText + " + " + str(nonSpeciesTaxaCount) + " taxa" + + self.lstSpecies.setCurrentRow(0) + self.lstSpecies.setSpacing(2) + + self.lblSpeciesSeen.setText(labelText) def html(self): diff --git a/code_LocationTotals.py b/code_LocationTotals.py index 72b062c..ce07b66 100644 --- a/code_LocationTotals.py +++ b/code_LocationTotals.py @@ -1,5 +1,9 @@ # import GUI form for this class import form_LocationTotals +# import pandas +# import folium +# import json +# from branca.colormap import LinearColormap # import classes from other project files import code_Filter @@ -42,8 +46,10 @@ class LocationTotals(QMdiSubWindow, form_LocationTotals.Ui_frmLocationTotals): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" self.resized.connect(self.resizeMe) + self.tblRegionTotals.itemDoubleClicked.connect(lambda: self.CreateListForLocation("Region")) self.tblCountryTotals.itemDoubleClicked.connect(lambda: self.CreateListForLocation("Country")) self.tblStateTotals.itemDoubleClicked.connect(lambda: self.CreateListForLocation("State")) self.tblCountyTotals.itemDoubleClicked.connect(lambda: self.CreateListForLocation("County")) @@ -64,7 +70,9 @@ def __init__(self): def CreateListForLocation(self, locationType): tempFilter = deepcopy(self.filter) - + + if locationType == "Region": + locationName = self.mdiParent.db.GetRegionCode(self.tblRegionTotals.item(self.tblRegionTotals.currentRow(), 1).text()) if locationType == "Country": locationName = self.mdiParent.db.GetCountryCode(self.tblCountryTotals.item(self.tblCountryTotals.currentRow(), 1).text()) if locationType == "State": @@ -142,6 +150,50 @@ def html(self): "" ) + html = html + ( + "

" + + "Region Totals" + + "

" + ) + + html=html + ( + "" + + "" + + " " + ) + + html=html + ( + "" + + " " + + "" + + "" + + "" + ) + + for r in range(self.tblRegionTotals.rowCount()): + html = html + ( + "" + + "" + + "" + + "" + + "" + + "" + ) + + html = html + ( + "
RankRegionSpeciesChecklists
" + + self.tblRegionTotals.item(r, 0).text() + + "" + + self.tblRegionTotals.item(r, 1).text() + + "" + + self.tblRegionTotals.item(r, 2).text() + + "" + + self.tblRegionTotals.item(r, 3).text() + + "
" + "
" + ) + + html = html + ( "

" + "Country Totals" + @@ -328,10 +380,12 @@ def FillLocationTotals(self, filter): self.filter = deepcopy(filter) # find all years, months, and dates in db + dbRegions = set() dbCountries = set() dbStates = set() dbCounties = set() dbLocations = set() + regionDict = defaultdict() countryDict = defaultdict() stateDict = defaultdict() countyDict = defaultdict() @@ -341,18 +395,26 @@ def FillLocationTotals(self, filter): for s in minimalSightingList: - # Consider only full species, not slash or spuh entries + # Consider only full species, not slash or spuh or hybrid entries commonName = s["commonName"] - if ("/" not in commonName) and ("sp." not in commonName): + if "/" not in commonName and "sp." not in commonName and " x " not in commonName: if self.mdiParent.db.TestSighting(s, filter) is True: + for r in s["regionCodes"]: + dbRegions.add(r) dbCountries.add(s["country"]) dbStates.add(s["state"]) if s["county"] != "": dbCounties.add(s["county"]) dbLocations.add(s["location"]) - # create dictionaries of country, state, county, and location sighting for faster lookup + # create dictionaries of region, country, state, county, and location sighting for faster lookup + for r in s["regionCodes"]: + if r not in regionDict.keys(): + regionDict[r] = [s] + else: + regionDict[r].append(s) + if s["country"] not in countryDict.keys(): countryDict[s["country"]] = [s] else: @@ -375,10 +437,12 @@ def FillLocationTotals(self, filter): locationDict[s["location"]].append(s) # check if no sightings were found. Return false if none found. Abort and display message. - if len(countryDict) + len(stateDict) + len(countyDict) + len(locationDict) == 0: + if len(regionDict) + len(countryDict) + len(stateDict) + len(countyDict) + len(locationDict) == 0: return(False) # set numbers of rows for each tab's grid (years, months, dates) + self.tblRegionTotals.setRowCount(len(dbRegions)) + self.tblRegionTotals.setColumnCount(4) self.tblCountryTotals.setRowCount(len(dbCountries)) self.tblCountryTotals.setColumnCount(4) self.tblStateTotals.setRowCount(len(dbStates)) @@ -387,11 +451,41 @@ def FillLocationTotals(self, filter): self.tblCountyTotals.setColumnCount(4) self.tblLocationTotals.setRowCount(len(dbLocations)) self.tblLocationTotals.setColumnCount(4) - + + self.tblRegionTotals.setShowGrid(False) self.tblCountryTotals.setShowGrid(False) self.tblStateTotals.setShowGrid(False) self.tblCountyTotals.setShowGrid(False) self.tblLocationTotals.setShowGrid(False) + + regionArray = [] + for region in dbRegions: + regionSpecies = set() + regionChecklists = set() + for s in regionDict[region]: + regionSpecies.add(s["commonName"]) + regionChecklists.add(s["checklistID"]) + regionArray.append([len(regionSpecies), region, len(regionChecklists)]) + regionArray.sort(reverse=True) + R = 0 + for region in regionArray: + rankItem = QTableWidgetItem() + rankItem.setData(Qt.DisplayRole, R+1) + regionItem = QTableWidgetItem() + regionItem.setText(self.mdiParent.db.GetRegionName(region[1])) + regionTotalItem = QTableWidgetItem() + regionTotalItem.setData(Qt.DisplayRole, region[0]) + regionTotalItem.setTextAlignment(Qt.AlignCenter|Qt.AlignVCenter) + regionChecklistTotalItem = QTableWidgetItem() + regionChecklistTotalItem.setData(Qt.DisplayRole, region[2]) + regionChecklistTotalItem.setTextAlignment(Qt.AlignCenter|Qt.AlignVCenter) + self.tblRegionTotals.setItem(R, 0, rankItem) + self.tblRegionTotals.setItem(R, 1, regionItem) + self.tblRegionTotals.setItem(R, 2, regionTotalItem) + self.tblRegionTotals.setItem(R, 3, regionChecklistTotalItem) + + R = R + 1 + countryArray = [] for country in dbCountries: @@ -447,7 +541,7 @@ def FillLocationTotals(self, filter): self.tblStateTotals.setItem(R, 2, stateTotalItem) self.tblStateTotals.setItem(R, 3, stateChecklistTotalItem) R = R + 1 - + countyArray = [] for county in dbCounties: if county != "" and county is not None: @@ -510,7 +604,7 @@ def FillLocationTotals(self, filter): R = R + 1 # set headers and column stretching - for t in [self.tblCountryTotals, self.tblStateTotals, self.tblCountyTotals, self.tblLocationTotals]: + for t in [self.tblRegionTotals, self.tblCountryTotals, self.tblStateTotals, self.tblCountyTotals, self.tblLocationTotals]: t.setSortingEnabled(True) t.sortItems(0,0) t.horizontalHeader().setVisible(True) @@ -579,7 +673,7 @@ def scaleMe(self): textHeight = metrics.boundingRect("A").height() rankTextWidth = metrics.boundingRect("Rank").width() - for t in [self.tblCountryTotals, self.tblStateTotals, self.tblCountyTotals, self.tblLocationTotals]: + for t in [self.tblRegionTotals, self.tblCountryTotals, self.tblStateTotals, self.tblCountyTotals, self.tblLocationTotals]: header = t.horizontalHeader() header.resizeSection(0, floor(1.7 * rankTextWidth)) header.resizeSection(2, floor(2 * rankTextWidth)) diff --git a/code_MainWindow.py b/code_MainWindow.py index b929364..5ddf08d 100644 --- a/code_MainWindow.py +++ b/code_MainWindow.py @@ -9,6 +9,11 @@ import code_Compare import code_LocationTotals import code_DateTotals +import code_Photos +import code_ManagePhotos +import code_Preferences +import code_Stylesheet + import form_MDIMain # import basic Python libraries @@ -28,12 +33,16 @@ from PyQt5.QtGui import ( QCursor, QFont, - QTextDocument + QTextDocument, + QColor ) from PyQt5.QtCore import ( Qt, - QDate + QDate, + QThread, + pyqtSignal, + QTimer ) from PyQt5.QtWidgets import ( @@ -42,7 +51,7 @@ QMainWindow, QFileDialog, QSlider, - QLabel, + QLabel ) from PyQt5.QtPrintSupport import ( @@ -50,25 +59,69 @@ QPrinter ) +class threadProcessPreferences(QThread): + + sig = pyqtSignal() + + def __init__(self): + QThread.__init__(self) + self.parent = "" + + + def __del__(self): + self.wait() + + + def processPreferences(self): + + self.parent.db.readPreferences() + + if self.parent.db.startupFolder != "": + if os.path.isdir(self.parent.db.startupFolder): + self.parent.OpenDataFile(self.parent.db.startupFolder) + + if self.parent.db.photoDataFile!= "": + if os.path.isfile(self.parent.db.photoDataFile): + self.parent.db.readPhotoDataFromFile(self.parent.db.photoDataFile) + + + def run(self): +# self.sig.connect(self.parent.finishedProcessingPreferences) + self.processPreferences() + self.sig.emit() + + class MainWindow(QMainWindow, form_MDIMain.Ui_MainWindow): # initialize main database that will be used throughout program db = code_DataBase.DataBase() fontSize = 11 scaleFactor = 1 - versionNumber = "0.1" - versionDate = "May 10, 2018" + versionNumber = "0.3" + versionDate = "October 8, 2019" def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) self.setCentralWidget(self.mdiArea) - self.actionOpen.triggered.connect(self.OpenDataFile) - self.actionAboutLapwing.triggered.connect(self.CreateAboutLapwing) + self.actionAboutLapwing.setText("About YearBird") + + self.actionOpen.triggered.connect(self.openDataFileClicked) + self.actionClose.triggered.connect(self.closeDataFile) + + self.actionAboutLapwing.triggered.connect(self.CreateAboutYearbird) + self.actionPreferences.triggered.connect(self.createPreferences) self.actionExit.triggered.connect(self.ExitApp) - self.actionShowFilter.triggered.connect(self.showFilter) - self.actionHideFilter.triggered.connect(self.hideFilter) - self.actionClearFilter.triggered.connect(self.clearFilter) + + self.actionShowStandardFilter.triggered.connect(self.showStandardFilter) + self.actionHideStandardFilter.triggered.connect(self.hideStandardFilter) + self.actionShowPhotoFilter.triggered.connect(self.showPhotoFilter) + self.actionHidePhotoFilter.triggered.connect(self.hidePhotoFilter) + + self.actionClearAllFilters.triggered.connect(self.clearAllFilters) + self.actionClearStandardFilter.triggered.connect(self.clearStandardFilter) + self.actionClearPhotoFilter.triggered.connect(self.clearPhotoFilter) + self.actionDateTotals.triggered.connect(self.CreateDateTotals) self.actionLocationTotals.triggered.connect(self.CreateLocationTotals) self.actionCompareLists.triggered.connect(self.CreateCompareLists) @@ -81,16 +134,52 @@ def __init__(self): self.actionPrint.triggered.connect(self.printMe) self.actionCreatePDF.triggered.connect(self.CreatePDF) self.actionFamilies.triggered.connect(self.CreateFamiliesReport) + self.actionPhotos.triggered.connect(self.createPhotosReport) self.actionBigReport.triggered.connect(self.CreateBigReport) self.actionMap.triggered.connect(self.CreateMap) self.actionFind.triggered.connect(self.CreateFind) + + self.actionOpenPhotoSettings.triggered.connect(self.openPhotoSettings) + self.actionClosePhotoSettings.triggered.connect(self.closePhotoSettings) + self.actionSavePhotoSettings.triggered.connect(self.savePhotoSettings) + self.actionAddPhotos.triggered.connect(self.addPhotos) + self.actionEditPhotosByFilter.triggered.connect(self.createEditPhotosByFilter) + self.actionUpdateEXIFDataForAllPhotos.triggered.connect(self.updateEXIFDataForAllPhotos) + + self.actionUS_States.triggered.connect(self.createChoroplethUSStates) + self.actionUS_Counties.triggered.connect(self.createChoroplethUSCounties) + self.actionWorld_Countries.triggered.connect(self.createChoroplethWorldCountries) + self.cboStartSeasonalRangeMonth.addItems(["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]) self.cboEndSeasonalRangeMonth.addItems(["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]) for d in range(1, 32): self.cboStartSeasonalRangeDate.addItem(str(d)) self.cboEndSeasonalRangeDate.addItem(str(d)) - self.cboDateOptions.addItems(["No Date Filter", "Use Calendars Below", "This Year", "This Month", "Today", "Yesterday"]) - self.cboSeasonalRangeOptions.addItems(["No Seasonal Range", "Use Range Below", "Spring", "Summer", "Fall", "Winter", "This Month", "Year to Date"]) + self.cboDateOptions.addItems(["No Date Filter", "Use Calendars Below", "This Year", "This Month", "Today", "Yesterday", "Last Weekend"]) + self.cboSeasonalRangeOptions.addItems([ + "No Seasonal Range", + "Use Range Below", + "Spring", + "Summer", + "Fall", + "Winter", + "This Month", + "Year to Date", + "Remainder of Year", + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ]) + self.cboRegions.currentIndexChanged.connect(self.ComboRegionsChanged) self.cboCountries.currentIndexChanged.connect(self.ComboCountriesChanged) self.cboStates.currentIndexChanged.connect(self.ComboStatesChanged) self.cboCounties.currentIndexChanged.connect(self.ComboCountiesChanged) @@ -98,6 +187,7 @@ def __init__(self): self.cboOrders.currentIndexChanged.connect(self.ComboOrdersChanged) self.cboFamilies.currentIndexChanged.connect(self.ComboFamiliesChanged) self.cboSpecies.currentIndexChanged.connect(self.ComboSpeciesChanged) + self.txtCommonNameSearch.textChanged.connect(self.textCommonNameSearchChanged) self.cboDateOptions.currentIndexChanged.connect(self.ComboDateOptionsChanged) self.cboSeasonalRangeOptions.currentIndexChanged.connect(self.ComboSeasonalRangeOptionsChanged) self.calStartDate.dateChanged.connect(self.CalendarClicked) @@ -109,6 +199,25 @@ def __init__(self): self.fillingLocationComboBoxesFlag = False self.calStartDate.setDate(datetime.datetime.now()) self.calEndDate.setDate(datetime.datetime.now()) + + self.cboStartRatingRange.addItems(["**All**", "0", "1", "2", "3", "4", "5"]) + self.cboEndRatingRange.addItems(["**All**", "0", "1", "2", "3", "4", "5"]) + self.cboStartRatingRange.currentIndexChanged.connect(self.ComboStartRatingRangeChanged) + self.cboEndRatingRange.currentIndexChanged.connect(self.ComboEndRatingRangeChanged) + self.cboSpeciesHasPhoto.addItems(["**All**", "Photographed", "Not photographed"]) + self.cboSpeciesHasPhoto.currentIndexChanged.connect(self.ComboSpeciesHasPhotosChanged) +# self.cboSpeciesHasPhoto.setVisible(False) +# self.lblSpeciesHasPhoto.setVisible(False) + self.cboCamera.currentIndexChanged.connect(self.ComboCameraChanged) + self.cboLens.currentIndexChanged.connect(self.ComboLensChanged) + self.cboStartShutterSpeedRange.currentIndexChanged.connect(self.ComboStartShutterSpeedChanged) + self.cboEndShutterSpeedRange.currentIndexChanged.connect(self.ComboEndShutterSpeedChanged) + self.cboStartApertureRange.currentIndexChanged.connect(self.ComboStartApertureChanged) + self.cboEndApertureRange.currentIndexChanged.connect(self.ComboEndApertureChanged) + self.cboStartFocalLengthRange.currentIndexChanged.connect(self.ComboStartFocalLengthChanged) + self.cboEndFocalLengthRange.currentIndexChanged.connect(self.ComboEndFocalLengthChanged) + self.cboStartIsoRange.currentIndexChanged.connect(self.ComboStartIsoChanged) + self.cboEndIsoRange.currentIndexChanged.connect(self.ComboEndIsoChanged) self.lblSlider = QLabel(self.statusBar) self.lblSlider.setText("Display Size") @@ -117,19 +226,65 @@ def __init__(self): self.sldFontSize.setProperty("value", 50) self.sldFontSize.setOrientation(Qt.Horizontal) self.sldFontSize.setObjectName("sldFontSize") - self.sldFontSize.valueChanged.connect(self.ScaleDisplay) + self.sldFontSize.valueChanged.connect(self.ScaleDisplay) + self.lblStatusBarMessage = QLabel(self.statusBar) + self.lblStatusBarMessage.setText("") + self.lblStatusBarMessage.setVisible(False) self.statusBar.addWidget(self.lblSlider) self.statusBar.addWidget(self.sldFontSize) + self.statusBar.addWidget(self.lblStatusBarMessage) - self.setWindowTitle("Lapwing v. " + self.versionNumber) + self.dckPhotoFilter.setMinimumWidth(215) + self.dckFilter.setMinimumWidth(215) + + self.setWindowTitle("Yearbird v. " + self.versionNumber) self.HideMainWindowOptions() + + self.setStyleSheet(code_Stylesheet.stylesheetBase) + self.mdiArea.setBackground(code_Stylesheet.mdiAreaColor) self.showMaximized() self.ScaleDisplay() + QApplication.processEvents() + + + def closeEvent(self, event): + + reply = self.checkIfPhotoDataNeedSaving() + + if reply is True: + event.accept() + + + def processPreferences(self): + + self.threadPreferences = threadProcessPreferences() + self.threadPreferences.sig.connect(self.finishedProcessingPreferences) + self.threadPreferences.parent = self + + self.threadPreferences.start() + + + def finishedProcessingPreferences(self): + + if self.db.photoDataFileOpenFlag == True: + self.fillPhotoComboBoxes() + self.showPhotoFilter() + + if self.db.eBirdFileOpenFlag == True: + self.fillingLocationComboBoxesFlag = True + self.FillMainComboBoxes() + self.fillingLocationComboBoxesFlag = False + self.showStandardFilter() + self.CreateSpeciesList() + self.showFileDataMessage() + + def ScaleDisplay(self): + self.scaleFactor = self.sldFontSize.value()/50 if self.scaleFactor > 1: self.scaleFactor = 1 + modf(self.scaleFactor)[0] * 3 @@ -143,15 +298,26 @@ def ScaleDisplay(self): for a in self.toolBar.actions(): a.setFont(QFont("Helvetica", self.fontSize)) - - # scale the main filter dock - for w in self.frmFilter.children(): - + + # scale the standard and photo filter docks + + filterFrameChildren = ( + self.frmFilter.children() + + self.frmPhotoFilter.children() + + self.frmStartSeasonalRange.children() + + self.frmEndSeasonalRange.children()+ + self.frmShutterSpeedRange.children() + + self.frmApertureRange.children() + + self.frmIsoRange.children() + + self.frmFocalLengthRange.children() + + self.frmRatingRange.children() + ) + + for w in filterFrameChildren: + if w.objectName()[0:3] == "cbo": - styleSheet = w.styleSheet() - w.setStyleSheet("") - w.setFont(QFont("Helvetica", self.fontSize)) - metrics = w.fontMetrics() + w.setFont(QFont("Helvetica", self.fontSize)) + metrics = w.fontMetrics() cboText = w.currentText() if cboText == "": cboText = "Dummy Text" @@ -161,7 +327,6 @@ def ScaleDisplay(self): w.setMinimumHeight(floor(1.1 * itemTextHeight)) w.setMaximumHeight(floor(1.1 * itemTextHeight)) w.resize(1.1 * itemTextHeight, 1.1 * itemTextWidth) - w.setStyleSheet(styleSheet) if w.objectName()[0:3] == "lbl": w.setFont(QFont("Helvetica", self.fontSize)) @@ -175,13 +340,11 @@ def ScaleDisplay(self): w.resize(itemTextHeight, itemTextWidth) w.setStyleSheet("QLabel { font: bold }"); - if w.objectName()[0:3] == "cal": - styleSheet = w.styleSheet() - w.setStyleSheet("") - w.setFont(QFont("Helvetica", self.fontSize)) + if w.objectName()[0:3] == "cal": + w.setFont(QFont("Helvetica", self.fontSize)) metrics = w.fontMetrics() startDate = ( - str(self.calStartDate.date().year()) + str(self.calStartDate.date().year()) + "-" + str(self.calStartDate.date().month()) + "-" @@ -192,58 +355,71 @@ def ScaleDisplay(self): w.setMinimumHeight(floor(1.1 * itemTextHeight)) w.setMaximumHeight(floor(1.1 * itemTextHeight)) w.resize(1.1 * itemTextHeight, 1.1 * itemTextWidth) - w.setStyleSheet(styleSheet) - - for w in self.frmStartSeasonalRange.children(): - - if w.objectName()[0:3] == "cbo": - styleSheet = w.styleSheet() - w.setStyleSheet("") - w.setFont(QFont("Helvetica", self.fontSize)) - metrics = w.fontMetrics() - cboText = w.currentText() - itemTextWidth = metrics.boundingRect(cboText).width() - itemTextHeight = metrics.boundingRect(cboText).height() - w.setMinimumWidth(floor(1.1 * itemTextWidth)) - w.setMinimumHeight(floor(1.1 * itemTextHeight)) - w.setMaximumHeight(floor(1.1 * itemTextHeight)) - w.resize(1.1 * itemTextHeight, 1.1 * itemTextWidth) - w.setStyleSheet(styleSheet) - - for w in self.frmEndSeasonalRange.children(): - - if w.objectName()[0:3] == "cbo": - styleSheet = w.styleSheet() - w.setStyleSheet("") - w.setFont(QFont("Helvetica", self.fontSize)) - metrics = w.fontMetrics() - cboText = w.currentText() - itemTextWidth = metrics.boundingRect(cboText).width() - itemTextHeight = metrics.boundingRect(cboText).height() - w.setMinimumWidth(floor(1.1 * itemTextWidth)) - w.setMinimumHeight(floor(1.1 * itemTextHeight)) - w.setMaximumHeight(floor(1.1 * itemTextHeight)) - w.resize(1.1 * itemTextHeight, 1.1 * itemTextWidth) - w.setStyleSheet(styleSheet) - self.frmStartSeasonalRange.setMinimumWidth(floor(1.5 * itemTextWidth)) - self.frmStartSeasonalRange.setMinimumHeight(floor(1.5* itemTextHeight)) - self.frmStartSeasonalRange.setMaximumHeight(floor(1.5 * itemTextHeight)) - self.frmStartSeasonalRange.resize(1.5 * itemTextHeight, 1.5 * itemTextWidth) - self.frmStartSeasonalRange.adjustSize() - - self.frmEndSeasonalRange.setMinimumWidth(floor(1.5 * itemTextWidth)) - self.frmEndSeasonalRange.setMinimumHeight(floor(1.5* itemTextHeight)) - self.frmEndSeasonalRange.setMaximumHeight(floor(1.5 * itemTextHeight)) - self.frmEndSeasonalRange.resize(1.5 * itemTextHeight, 1.5 * itemTextWidth) - self.frmEndSeasonalRange.adjustSize() - + for w in ( + self.frmStartSeasonalRange, + self.frmEndSeasonalRange, + self.frmShutterSpeedRange, + self.frmApertureRange, + self.frmIsoRange, + self.frmFocalLengthRange, + self.frmRatingRange + ): + + w.setMinimumWidth(floor(1.5 * itemTextWidth)) + w.setMinimumHeight(floor(1.5* itemTextHeight)) + w.setMaximumHeight(floor(1.5 * itemTextHeight)) + w.resize(1.5 * itemTextHeight, 1.5 * itemTextWidth) + w.adjustSize() + + self.scrPhotoFilter.setMinimumHeight(30 * itemTextHeight) + self.scrPhotoFilter.setMinimumWidth(2.5 * itemTextWidth) + self.scrFilter.setMinimumWidth(2.5 * itemTextWidth) + # scale open children windows for w in self.mdiArea.subWindowList(): w.scaleMe() + + + def showFileDataMessage(self): + + countSightings = len(self.db.sightingList) + + countSpecies = 0 + for s in self.db.allSpeciesList: + if " x " not in s: + countSpecies += 1 + + # create blank filter to get all sightings with photos + filter = code_Filter.Filter() + + photoSightings = self.db.GetSightingsWithPhotos(filter) + countPhotos = 0 + + for ps in photoSightings: + countPhotos = countPhotos + len(ps["photos"]) + + countPhotoSightings = len(self.db.GetSightingsWithPhotos(filter)) + + msgText = "Yearbird loaded " + format(countSightings, ',') + " sightings, including " + format(countSpecies, ",") + " species.\n\n" + msgText = msgText + "Yearbird attached " + format(countPhotos, ",") + " photos to " + format(countPhotoSightings, ",") + " sightings." + + msg = QMessageBox() + msg.setIcon(QMessageBox.Information) + msg.setText(msgText) + msg.setWindowTitle("eBird Data File") + msg.setStandardButtons(QMessageBox.Ok) + msg.exec_() + + + def clearAllFilters(self): + self.clearStandardFilter() + self.clearPhotoFilter() + - def clearFilter(self): + def clearStandardFilter(self): + self.cboRegions.setCurrentIndex(0) self.cboCountries.setCurrentIndex(0) self.cboStates.setCurrentIndex(0) self.cboCounties.setCurrentIndex(0) @@ -251,12 +427,259 @@ def clearFilter(self): self.cboOrders.setCurrentIndex(0) self.cboFamilies.setCurrentIndex(0) self.cboSpecies.setCurrentIndex(0) + self.calStartDate.setDate(datetime.datetime.now()) + self.calEndDate.setDate(datetime.datetime.now()) self.cboDateOptions.setCurrentIndex(0) self.cboSeasonalRangeOptions.setCurrentIndex(0) + self.txtCommonNameSearch.setText("") + + + def clearPhotoFilter(self): + self.cboStartRatingRange.setCurrentIndex(0) + self.cboEndRatingRange.setCurrentIndex(0) + self.cboSpeciesHasPhoto.setCurrentIndex(0) + self.cboCamera.setCurrentIndex(0) + self.cboLens.setCurrentIndex(0) + self.cboStartShutterSpeedRange.setCurrentIndex(0) + self.cboEndShutterSpeedRange.setCurrentIndex(0) + self.cboStartApertureRange.setCurrentIndex(0) + self.cboEndApertureRange.setCurrentIndex(0) + self.cboStartFocalLengthRange.setCurrentIndex(0) + self.cboEndFocalLengthRange.setCurrentIndex(0) + self.cboStartIsoRange.setCurrentIndex(0) + self.cboEndIsoRange.setCurrentIndex(0) + + + def openPhotoSettings(self, photoDataFile = ""): + + # open data file + fname = QFileDialog.getOpenFileName(self,"Select Yearbird Photo Data File", "","Yearbird Photo Data File (*.csv)") + + # check if user pressed cancel or if we have a file name to open + if fname[0] == "": + return + + photoDataFile = fname[0] + + self.db.readPhotoDataFromFile(photoDataFile) + + self.fillPhotoComboBoxes() + self.showPhotoFilter() + + + def closePhotoSettings(self): - def hideFilter(self): - self.dckFilter.hide() + self.clearPhotoFilter() + self.hidePhotoFilter() + self.db.ClearPhotoSettings() + + + def addPhotos(self): + + # if no data file is currently open, abort + if MainWindow.db.eBirdFileOpenFlag is not True: + self.CreateMessageNoFile() + return + + photos = QFileDialog.getOpenFileNames(self, 'Select photo files', "", "Jpeg Images (*.jpg *.jpeg)") + + # create list to hold file names of photos not already in db + unmatchedPhotos = [] + + if len(photos) > 0: + + filter = code_Filter.Filter() + + photosAlreadyInDb = self.db.GetPhotos(filter) + + countPhotosNotProcessed = 0 + + for p in photos[0]: + if p in photosAlreadyInDb: + countPhotosNotProcessed += 1 + else: + unmatchedPhotos.append(p) + + if countPhotosNotProcessed > 0: + + msg = QMessageBox() + msg.setIcon(QMessageBox.Information) + msg.setText(str(countPhotosNotProcessed) + " files were already attached to sightings and are not displayed here.\n\nTo edit their attachments, use Manage Photos By Filter.") + msg.setWindowTitle("Photos") + msg.setStandardButtons(QMessageBox.Ok) + msg.exec_() + + if len(unmatchedPhotos) > 0: + + # create new Date Totals child window + sub = code_ManagePhotos.ManagePhotos() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + sub.scaleMe() + sub.resizeMe() + + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + QApplication.processEvents() + + # call the child's routine to fill it with data + QTimer.singleShot(20, lambda: sub.FillPhotosByFiles(unmatchedPhotos)) + + + else: + + msg = QMessageBox() + msg.setIcon(QMessageBox.Information) + msg.setText("No new photos files were found.") + msg.setWindowTitle("Photos") + msg.setStandardButtons(QMessageBox.Ok) + msg.exec_() + + + def savePhotoSettings(self): + + photoFileInUse = self.db.photoDataFile + + # open save dialog box to get name of photo settings file + fname = QFileDialog.getSaveFileName(self,"QFileDialog.getOpenFileNames()", photoFileInUse,"Yearbird Photo Settings File (*.csv)") + + # check if user pressed cancel or if we have a file name for saving + if fname[0] == "": + return + + # call database function to write entire db's photo settings to CSV vile + self.db.writePhotoDataToFile(fname[0]) + + self.db.photosNeedSaving = False + + + def fillPhotoComboBoxes(self): + + for w in ( + self.cboCamera, + self.cboLens, + self.cboStartShutterSpeedRange, + self.cboEndShutterSpeedRange, + self.cboStartApertureRange, + self.cboEndApertureRange, + self.cboStartIsoRange, + self.cboEndIsoRange, + self.cboStartFocalLengthRange, + self.cboEndFocalLengthRange + ): + w.clear() + + if w == self.cboCamera: + w.addItem("**All Cameras**") + w.addItems(self.db.cameraList) + + if w == self.cboLens: + w.addItem("**All Lenses**") + w.addItems(self.db.lensList) + + if w == self.cboStartShutterSpeedRange: + w.addItem("**All**") + w.addItems(self.db.shutterSpeedList) + + if w == self.cboEndShutterSpeedRange: + w.addItem("**All**") + w.addItems(self.db.shutterSpeedList) + + if w == self.cboStartApertureRange: + w.addItem("**All**") + w.addItems(self.db.apertureList) + + if w == self.cboEndApertureRange: + w.addItem("**All**") + w.addItems(self.db.apertureList) + + if w == self.cboStartIsoRange: + w.addItem("**All**") + w.addItems(self.db.isoList) + + if w == self.cboEndIsoRange: + w.addItem("**All**") + w.addItems(self.db.isoList) + + if w == self.cboStartFocalLengthRange: + w.addItem("**All**") + w.addItems(self.db.focalLengthList) + + if w == self.cboEndFocalLengthRange: + w.addItem("**All**") + w.addItems(self.db.focalLengthList) + + w.setCurrentIndex(0) + + self.cboStartRatingRange.setCurrentIndex(0) + self.cboEndRatingRange.setCurrentIndex(0) + + + def removeUnfoundPhotos(self): + + countRemovedPhotos = self.db.removeUnfoundPhotos() + + msg = QMessageBox() + msg.setIcon(QMessageBox.Information) + msg.setText("Yearbird removed " + str(countRemovedPhotos) + " references to unfound photos from its database.\n\nRemember to save your photo settings to a file.\n\n(No files were deleted from your computer.)") + msg.setWindowTitle("Removed Photo References") + msg.setStandardButtons(QMessageBox.Ok) + msg.exec_() + + + def createPreferences(self): + + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + sub = code_Preferences.Preferences() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + sub.fillPreferences() + + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + QApplication.restoreOverrideCursor() + + + def createPhotosReport(self): + # if no data file is currently open, abort + if MainWindow.db.eBirdFileOpenFlag is not True: + self.CreateMessageNoFile() + return + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + filter = self.GetFilter() + # create new Location Totals child window + sub = code_Photos.Photos() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + if sub.FillPhotos(filter) is False: + + # abort if filter found no photos + sub.close() + self.CreateMessageNoResults() + + QApplication.restoreOverrideCursor() def setCountryFilter(self, country): @@ -295,6 +718,12 @@ def setSpeciesFilter(self, species): self.cboSpecies.setCurrentIndex(index) + def setFamilyFilter(self, family): + index = self.cboFamilies.findText(family) + if index >= 0: + self.cboFamilies.setCurrentIndex(index) + + def setDateFilter(self, startDate, endDate = ""): # if only one date is specified, use that date for both start and end dates @@ -317,27 +746,90 @@ def setDateFilter(self, startDate, endDate = ""): self.calEndDate.setDate(myEndDate) + def setPhotoFolder(self): + + directory = str(QFileDialog.getExistingDirectory(self, "Select Directory")) + + directory = os.fsencode(directory) + + self.db.attachPhotos(directory) + + + def createEditPhotosByFilter(self): + + # if no data file is currently open, abort + if MainWindow.db.eBirdFileOpenFlag is not True: + self.CreateMessageNoFile() + return + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + # create new Date Totals child window + sub = code_ManagePhotos.ManagePhotos() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + # call the child's routine to fill it with data + if sub.FillPhotosByFilter(self.GetFilter()) is True: + + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + else: + + # abort since filter found no sightings for child + self.CreateMessageNoResults() + sub.close() + + QApplication.restoreOverrideCursor() + + def setSeasonalRangeFilter(self, month): index = self.cboStartSeasonalRangeMonth.findText(month) if index >= 0: - self.cboStartSeasonalRangeMonth.setCurrentIndex(index) - self.cboEndSeasonalRangeMonth.setCurrentIndex(index) - self.cboStartSeasonalRangeDate.setCurrentIndex(0) - self.cboEndSeasonalRangeDate.setCurrentIndex(30) + self.cboStartSeasonalRangeMonth.setCurrentIndex(index) + self.cboEndSeasonalRangeMonth.setCurrentIndex(index) + self.cboStartSeasonalRangeDate.setCurrentIndex(0) + self.cboEndSeasonalRangeDate.setCurrentIndex(30) - def showFilter(self): + def showStandardFilter(self): self.dckFilter.show() + self.actionShowStandardFilter.setVisible(False) + self.actionHideStandardFilter.setVisible(True) + + + def hideStandardFilter(self): + self.dckFilter.hide() + self.actionHideStandardFilter.setVisible(False) + self.actionShowStandardFilter.setVisible(True) + + + def showPhotoFilter(self): + self.dckPhotoFilter.show() + self.actionShowPhotoFilter.setVisible(False) + self.actionHidePhotoFilter.setVisible(True) + + + def hidePhotoFilter(self): + self.dckPhotoFilter.hide() + self.actionHidePhotoFilter.setVisible(False) + self.actionShowPhotoFilter.setVisible(True) def keyPressEvent(self, e): - # open file dalog routine if user presses Crtl-O + # open file dialog routine if user presses Crtl-O if e.key() == Qt.Key_O and e.modifiers() & Qt.ControlModifier: - self.OpenDataFile() + self.openDataFileClicked() - # open file dalog routine if user presses Crtl-O + # open file dialog routine if user presses Crtl-O if e.key() == Qt.Key_F and e.modifiers() & Qt.ControlModifier: self.CreateFind() + + def CalendarClicked(self): @@ -413,20 +905,88 @@ def PositionChildWindow(self, child, creatingWindow): child.setFocus() - def OpenDataFile(self): - # clear and close any data if a file is already open + def closeDataFile(self): + + + self.checkIfPhotoDataNeedSaving() self.ResetMainWindow() self.db.ClearDatabase() - self.clearFilter() - fname = QFileDialog.getOpenFileName(self,"QFileDialog.getOpenFileNames()", "","eBird Data Files (*.csv *.zip)") - - if fname[0] != "": - QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + + def checkIfPhotoDataNeedSaving(self): + + # check to see if unsaved photo settings exist + if self.db.photosNeedSaving is True: - self.fillingLocationComboBoxesFlag = True + # ask if user wants to save photo settings + QApplication.restoreOverrideCursor() + msg = QMessageBox() + msg.setIcon(QMessageBox.Information) + msg.setText("Some photo attachment settings have not been saved\n\nDo you want to save them?") + msg.setWindowTitle("Save Photo Settings?") + msg.setStandardButtons(QMessageBox.No | QMessageBox.Save) + buttonClicked = msg.exec_() + + if buttonClicked == QMessageBox.Save: + + self.savePhotoSettings() + + return(True) + + + def openDataFileClicked(self): + + self.ResetMainWindow() + self.db.ClearDatabase() + self.clearStandardFilter() + + self.OpenDataFile() + + if MainWindow.db.eBirdFileOpenFlag is True: + self.FillMainComboBoxes() + self.dckFilter.setVisible(True) + self.CreateSpeciesList() + + + def OpenDataFile(self, startupFolder = ""): + # clear and close any data if a file is already open + + self.closeDataFile() + + QApplication.processEvents() + + if os.path.isdir(startupFolder): + + list_of_files = [] + for file in os.listdir(startupFolder): + + if file.endswith(".zip") and "ebird" in str(file): + + list_of_files.append(os.path.join(startupFolder, file)) + +# list_of_files = glob.glob(startupFolder + "/ebird*.zip") + + fname = max(list_of_files, key=os.path.getctime) + + # add full path to latest_file + fname = [os.path.join(startupFolder, fname)] + + fname.append('eBird Data Files (*.csv *.zip)') + + else: + + fname = QFileDialog.getOpenFileName(self,"QFileDialog.getOpenFileNames()", "","eBird Data Files (*.csv *.zip)") + + + if fname[0] != "": + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + QApplication.processEvents() + MainWindow.db.ReadDataFile(fname) # now try to open a taxonomy file, if one exists in the same directory as the python script @@ -451,20 +1011,21 @@ def OpenDataFile(self): # this file lists all the country and state codes, and their longer names for better legibility # It must be named "ebird_api_ref_location_eBird_list_subnational1.csv". countryStateCodeFile = os.path.join(scriptDirectory, "ebird_api_ref_location_eBird_list_subnational1.csv") + if os.path.isfile(countryStateCodeFile) is True: - MainWindow.db.ReadCountryStateCodeFile(countryStateCodeFile) + MainWindow.db.ReadCountryStateCodeFile(countryStateCodeFile) - if MainWindow.db.eBirdFileOpenFlag is True: - self.FillMainComboBoxes() - self.CreateSpeciesList() - - # we're done filling the comboboxes, so set the flag to false - # the flag, when True, prevents this method from being called - # every time the program adds a location to the combo boxes. - self.fillingLocationComboBoxesFlag = False - - self.ShowMainWindowOptions() + # try to open the BBL banding code file , if one exists in the same directory as python script + # It must be named "eBird_BBLCodes.csv". + bblCodeFile = os.path.join(scriptDirectory, "eBird_BBLCodes.csv") + if os.path.isfile(bblCodeFile) is True: + MainWindow.db.ReadBBLCodeFile(bblCodeFile) + +# +# if self.db.eBirdFileOpenFlag is True: +# self.showStandardFilter() + QApplication.restoreOverrideCursor() @@ -667,7 +1228,7 @@ def CreateLocationTotals(self): QApplication.restoreOverrideCursor() - def CreateAboutLapwing(self): + def CreateAboutYearbird(self): QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) @@ -677,7 +1238,7 @@ def CreateAboutLapwing(self): sub.mdiParent = self # call the child's routine to fill it with data - sub.loadAboutLapwing() + sub.loadAboutYearbird() # add and position the child to our MDI area self.mdiArea.addSubWindow(sub) @@ -770,15 +1331,21 @@ def CreateFamiliesReport(self): filter = self.GetFilter() # call the child's routine to fill it with data + # these must be called in this exact order, or else the pic chart won't draw + # large enough to fill its area. I don't really know why. if sub.FillFamilies(filter) is True: - - # add and position the child to our MDI area + + sub.scaleMe() + sub.resizeMe() self.mdiArea.addSubWindow(sub) self.PositionChildWindow(sub, self) sub.show() + + sub.FillPieChart() + sub.scaleMe() - sub.resizeMe() + else: # abort if no families matched the filter @@ -872,6 +1439,21 @@ def GetFilter(self): speciesName = "" family = "" order = "" + commonNameSearch = "" + startRating = "" + endRating = "" + speciesHasPhoto = "" + validPhotoSpecies = [] + camera = "" + lens = "" + startShutterSpeed = "" + endShutterSpeed = "" + startAperture = "" + endAperture = "" + startFocalLength = "" + endFocalLength = "" + startIso = "" + endIso = "" # check whether calendar widgets are used if self.cboDateOptions.currentText() == "Use Calendars Below": @@ -928,6 +1510,32 @@ def GetFilter(self): # since this is a single day, startDate and endDate are the same endDate = startDate + if self.cboDateOptions.currentText() == "Last Weekend": + now = datetime.datetime.now() + + todayDayOfWeek = now.weekday() + + # subtract a day from today to get yesterday + lastSunday = now + datetime.timedelta(days = 0 - todayDayOfWeek - 1) + lastSaturday = lastSunday + datetime.timedelta(days = -1) + + # convert to yyyy-mm-dd string + startDate = ( + str(lastSaturday.year) + + "-" + + str(lastSaturday.month) + + "-" + + str(lastSaturday.day) + ) + + endDate = ( + str(lastSunday.year) + + "-" + + str(lastSunday.month) + + "-" + + str(lastSunday.day) + ) + # Check if This Year radio button is checked. # if so, create yyyy-01-01 and yyyy-12-31 start and end dates if self.cboDateOptions.currentText() == "This Year": @@ -943,7 +1551,7 @@ def GetFilter(self): # Check if This Month radio button is checked # if so, create yyyy-mm-01 and yyyy-mm-31 dates - # We'll need to get the correct number fo the last day of the month + # We'll need to get the correct number for the last day of the month if self.cboDateOptions.currentText() == "This Month": now = datetime.datetime.now() @@ -1104,9 +1712,61 @@ def GetFilter(self): if len(endSeasonalDay) < 2: endSeasonalDay = "0" + endSeasonalDay + if self.cboSeasonalRangeOptions.currentText() == "Remainder of Year": + now = datetime.datetime.now() + startSeasonalMonth = str(now.month) + startSeasonalDay = str(now.day) + endSeasonalMonth = "12" + endSeasonalDay = "31" + # add leading 0 to seasonal month and date strings if less than two digits + if len(startSeasonalMonth) < 2: + startSeasonalMonth = "0" + startSeasonalMonth + if len(endSeasonalDay) < 2: + startSeasonalDay = "0" + startSeasonalDay + + monthList = ([ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ]) + + if self.cboSeasonalRangeOptions.currentText() in monthList: + + startSeasonalMonth = str(monthList.index(self.cboSeasonalRangeOptions.currentText()) + 1) + # add leading 0 to seasonal month and date strings if less than two digits + if len(startSeasonalMonth) < 2: + startSeasonalMonth = "0" + startSeasonalMonth + endSeasonalMonth = startSeasonalMonth + startSeasonalDay = "01" + endSeasonalDay = "31" + if startSeasonalMonth in ["03", "04", "06", "09", "11"]: + endSeasonalDay = "30" + if startSeasonalMonth == "02": + endSeasonalDay = "29" + # check location comboboxes to learn location type and name # Only get location information if user has selected one + # we'll cycle through cbo boxes, from most general to specific + # we'll save the most specific one in the filter + + if self.cboRegions.currentText() != None: + + if self.cboRegions.currentText() != "**All Regions**": + + # for region name, get the short code,which the db uses for searches + locationName = MainWindow.db.GetRegionCode(self.cboRegions.currentText()) + locationType = "Region" + if self.cboCountries.currentText() != None: if self.cboCountries.currentText() != "**All Countries**": @@ -1144,20 +1804,120 @@ def GetFilter(self): speciesName = self.cboSpecies.currentText() - # check order combobox to learn family + # check order combobox if self.cboOrders.currentText() != None: if self.cboOrders.currentText() != "**All Orders**": order = self.cboOrders.currentText() - # check family combobox to learn family + # check family combobox if self.cboFamilies.currentText() != None: if self.cboFamilies.currentText() != "**All Families**": family = self.cboFamilies.currentText() + + # check Common Name Search test + if self.txtCommonNameSearch.text() != "": + + commonNameSearch = self.txtCommonNameSearch.text().rstrip() + + + # check sighting combobox + if self.cboStartRatingRange.currentText() != None: + + if "**" not in self.cboStartRatingRange.currentText(): + + startRating = self.cboStartRatingRange.currentText() + + # check sighting combobox + if self.cboEndRatingRange.currentText() != None: + + if "**" not in self.cboEndRatingRange.currentText(): + + endRating = self.cboEndRatingRange.currentText() + + # check sighting combobox + if self.cboSpeciesHasPhoto.currentText() != None: + + if "**" not in self.cboSpeciesHasPhoto.currentText(): + + speciesHasPhoto = self.cboSpeciesHasPhoto.currentText() + + # check camera combobox + if self.cboCamera.currentText() != None: + + if "**" not in self.cboCamera.currentText(): + + camera = self.cboCamera.currentText() + + # check lens combobox + if self.cboLens.currentText() != None: + + if "**" not in self.cboLens.currentText(): + + lens = self.cboLens.currentText() + + # check start shutter speed combobox + if self.cboStartShutterSpeedRange.currentText() != None: + + if "**" not in self.cboStartShutterSpeedRange.currentText(): + + startShutterSpeed = self.cboStartShutterSpeedRange.currentText() + + # check end shutter speed combobox + if self.cboEndShutterSpeedRange.currentText() != None: + + if "**" not in self.cboEndShutterSpeedRange.currentText(): + + endShutterSpeed = self.cboEndShutterSpeedRange.currentText() + + # check end aperture combobox + if self.cboEndApertureRange.currentText() != None: + + if "**" not in self.cboEndApertureRange.currentText(): + + endAperture = self.cboEndApertureRange.currentText() + + # check start aperture combobox + if self.cboStartApertureRange.currentText() != None: + + if "**" not in self.cboStartApertureRange.currentText(): + + startAperture = self.cboStartApertureRange.currentText() + + # check end Iso combobox + if self.cboEndIsoRange.currentText() != None: + + if "**" not in self.cboEndIsoRange.currentText(): + + endIso = self.cboEndIsoRange.currentText() + + # check start Iso combobox + if self.cboStartIsoRange.currentText() != None: + + if "**" not in self.cboStartIsoRange.currentText(): + + startIso = self.cboStartIsoRange.currentText() + + # check end FocalLength combobox + if self.cboEndFocalLengthRange.currentText() != None: + + if "**" not in self.cboEndFocalLengthRange.currentText(): + + endFocalLength = self.cboEndFocalLengthRange.currentText() + + # check start FocalLength combobox + if self.cboStartFocalLengthRange.currentText() != None: + + if "**" not in self.cboStartFocalLengthRange.currentText(): + + startFocalLength = self.cboStartFocalLengthRange.currentText() + + + # package up the filter list and return it newFilter = code_Filter.Filter() newFilter.setLocationType(locationType) @@ -1171,23 +1931,99 @@ def GetFilter(self): newFilter.setSpeciesName(speciesName) newFilter.setFamily(family) newFilter.setOrder(order) + newFilter.setCommonNameSearch(commonNameSearch) + + newFilter.setStartRating(startRating) + newFilter.setEndRating(endRating) + newFilter.setSpeciesHasPhoto(speciesHasPhoto) + newFilter.setCamera(camera) + newFilter.setLens(lens) + newFilter.setStartShutterSpeed(startShutterSpeed) + newFilter.setEndShutterSpeed(endShutterSpeed) + newFilter.setStartAperture(startAperture) + newFilter.setEndAperture(endAperture) + newFilter.setStartIso(startIso) + newFilter.setEndIso(endIso) + newFilter.setStartFocalLength(startFocalLength) + newFilter.setEndFocalLength(endFocalLength) + + # use the filter set up so far to get the valid Photo species + # do this only if the user has set the species photo cbo box + if self.cboSpeciesHasPhoto.currentText() == "Photographed": + validPhotoSpecies = self.db.GetSpeciesWithPhotos(newFilter) + newFilter.setValidPhotoSpecies(validPhotoSpecies) + + if self.cboSpeciesHasPhoto.currentText() == "Not photographed": + validPhotoSpecies = self.db.GetSpeciesWithoutPhotos(newFilter) + newFilter.setValidPhotoSpecies(validPhotoSpecies) return(newFilter) + + def updateEXIFDataForAllPhotos(self): + + # get all sightings with photos + + filter = code_Filter.Filter() + sightings = self.db.GetSightingsWithPhotos(filter) + + # find total count of photos in db + photoCount = 0 + for s in sightings: + for p in s["photos"]: + photoCount += 1 + + # clear pdb's photo list metadata + self.db.cameraList = [] + self.db.lensList = [] + self.db.apertureList = [] + self.db.shutterSpeedList = [] + self.db.isoList = [] + self.db.focalLengthList = [] + + # loop through photos, and update each photos EXIF data + # after each photo, update the db's photo list metadata + for s in sightings: + pCount = 0 + for p in s["photos"]: + photoData = self.db.getPhotoData(p["fileName"]) + # save the rating for the photo + photoData["rating"] = p["rating"] + s["photos"][pCount] = photoData + self.db.addPhotoDataToDb(photoData) + pCount += 1 + + # clear and repopulate photo filter cbo boxes with updated data + self.fillPhotoComboBoxes() + + msgText = "Yearbird updated EXIF data for all attached photos.\n\nRemember to save your photo data file to make these updates permanent." + msg = QMessageBox() + msg.setIcon(QMessageBox.Information) + msg.setText(msgText) + msg.setWindowTitle("Updated EXIF Data") + msg.setStandardButtons(QMessageBox.Ok) + msg.exec_() + + # set flag indicating that some photo data isn't yet saved to file + self.db.photosNeedSaving = True + def SeasonalRangeClicked(self): self.cboSeasonalRangeOptions.setCurrentIndex(1) + def TileWindows(self): self.mdiArea.tileSubWindows() + def CascadeWindows(self): # scale every window to its default size # save those dimensions as minimum size # if we don't, cascading the windows will shrink them # too too tiny for w in self.mdiArea.subWindowList(): - w.scaleMe() + if w.windowTitle() != "Enlargement": + w.scaleMe() w.setMinimumHeight(w.height()) w.setMinimumWidth(w.width()) @@ -1203,8 +2039,10 @@ def CloseAllWindows(self): def HideMainWindowOptions(self): - self.clearFilter() + self.clearStandardFilter() + self.clearPhotoFilter() self.dckFilter.setVisible(False) + self.dckPhotoFilter.setVisible(False) def ShowMainWindowOptions(self): @@ -1223,13 +2061,28 @@ def SetChildDetailsLabels(self, sub, filter): checklistID = filter.getChecklistID() # str checklistID speciesName = filter.getSpeciesName() # str speciesName family = filter.getFamily() # str family name - order = filter.getOrder() #str order name + order = filter.getOrder() + commonNameSearch = filter.getCommonNameSearch() + sightingPhotographed = filter.getSightingHasPhoto() + speciesPhotographed = filter.getSpeciesHasPhoto() + camera = filter.getCamera() + lens = filter.getLens() + startShutterSpeed = filter.getStartShutterSpeed() + endShutterSpeed = filter.getEndShutterSpeed() + startAperture = filter.getStartAperture() + endAperture = filter.getEndAperture() + startIso = filter.getStartIso() + endIso = filter.getEndIso() + startFocalLength = filter.getStartFocalLength() + endFocalLength = filter.getEndFocalLength() # set main location label, using "All Locations" if none others are selected - if locationName is "": + if locationName == "": sub.lblLocation.setText("All Locations") else: - if locationType == "Country": + if locationType == "Region": + sub.lblLocation.setText(MainWindow.db.GetRegionName(locationName)) + elif locationType == "Country": sub.lblLocation.setText(MainWindow.db.GetCountryName(locationName)) elif locationType == "State": sub.lblLocation.setText(MainWindow.db.GetStateName(locationName)) @@ -1268,6 +2121,68 @@ def SetChildDetailsLabels(self, sub, filter): if family != "": detailsText = detailsText + "; " + family + if commonNameSearch != "": + if "s:" in commonNameSearch: + detailsText = detailsText + "; Scientific name includes '" + commonNameSearch.split("s:",1)[1] + "'" + else: + detailsText = detailsText + "; Common name includes '" + commonNameSearch + "'" + + if sightingPhotographed == "Has photo": + detailsText = detailsText + "; " + "Sightings with photos" + if sightingPhotographed == "No photo": + detailsText = detailsText + "; " + "Sightings without photos" + + if speciesPhotographed == "Photographed": + detailsText = detailsText + "; " + "Photographed species" + if speciesPhotographed == "Not photographed": + detailsText = detailsText + "; " + "Unphotographed species" + + if camera != "": + detailsText = detailsText + "; " + camera + + if lens != "": + detailsText = detailsText + "; " + lens + + if startShutterSpeed != "" and endShutterSpeed != "": + if startShutterSpeed == endShutterSpeed: + detailsText = detailsText + "; Speed: " + startShutterSpeed + else: + detailsText = detailsText + "; Speed: " + startShutterSpeed + " to " + endShutterSpeed + if startShutterSpeed != "" and endShutterSpeed == "": + detailsText = detailsText + "; Speed: from " + startShutterSpeed + if startShutterSpeed == "" and endShutterSpeed != "": + detailsText = detailsText + "; Speed: to " + endShutterSpeed + + if startAperture != "" and endAperture != "": + if startAperture == endAperture: + detailsText = detailsText + "; Aperture: " + startAperture + else: + detailsText = detailsText + "; Aperture: " + startAperture + " to " + endAperture + if startAperture != "" and endAperture == "": + detailsText = detailsText + "; Aperture: from " + startAperture + if startAperture == "" and endAperture != "": + detailsText = detailsText + "; Aperture: to " + endAperture + + if startFocalLength != "" and endFocalLength != "": + if startFocalLength == endFocalLength: + detailsText = detailsText + "; Focal Length: " + startFocalLength + else: + detailsText = detailsText + "; Focal Length: " + startFocalLength + " to " + endFocalLength + if startFocalLength != "" and endFocalLength == "": + detailsText = detailsText + "; Focal Length: from " + startFocalLength + if startFocalLength == "" and endFocalLength != "": + detailsText = detailsText + "; Focal Length: to " + endFocalLength + + if startIso != "" and endIso != "": + if startIso == endIso: + detailsText = detailsText + "; ISO: " + startIso + else: + detailsText = detailsText + "; ISO: " + startIso + " to " + endIso + if startIso != "" and endIso == "": + detailsText = detailsText + "; ISO: from " + startIso + if startIso == "" and endIso != "": + detailsText = detailsText + "; ISO: to " + endIso + #remove leading "; " dateText = dateText[2:] detailsText = detailsText[2:] @@ -1292,6 +2207,12 @@ def FillMainComboBoxes(self): # use the master lists in db to populate the 4 location comboboxes # for each, first add the "**All...**" item. # It's starred to appear at the top of the sorted comboboxes + self.fillingLocationComboBoxesFlag = True + + self.cboRegions.clear() + self.cboRegions.addItem("**All Regions**") + self.cboRegions.addItems(MainWindow.db.regionList) + self.cboCountries.clear() self.cboCountries.addItem("**All Countries**") self.cboCountries.addItems(MainWindow.db.countryList) @@ -1321,6 +2242,8 @@ def FillMainComboBoxes(self): self.cboOrders.addItem("**All Orders**") self.cboOrders.addItems(MainWindow.db.orderList) + self.fillingLocationComboBoxesFlag = False + def printMe(self): @@ -1366,15 +2289,99 @@ def printMe(self): def ResetMainWindow(self): self.CloseAllWindows() - MainWindow.db.eBirdFileOpenFlag = False - self.fillingLocationComboBoxesFlag = True - self.cboCountries.clear() - self.cboStates.clear() - self.cboCounties.clear() - self.cboLocations.clear() - self.cboSpecies.clear() - self.cboFamilies.clear() - self.fillingLocationComboBoxesFlag = False + self.clearAllFilters() + self.hideStandardFilter() + self.hidePhotoFilter() + self.db.ClearDatabase() + + + def ComboRegionsChanged(self): + + # Check whether the program is adding locations while reading the data file + # if so, abort. If not, the user has clicked the combobox and we should proceed + if self.fillingLocationComboBoxesFlag is False: + + # set the flag to True so the state, county, and location cbos won't trigger + self.fillingLocationComboBoxesFlag = True + + # clear the color coding for selected filter components + self.cboRegions.setStyleSheet(""); + self.cboCountries.setStyleSheet(""); + self.cboStates.setStyleSheet(""); + self.cboCounties.setStyleSheet(""); + self.cboLocations.setStyleSheet(""); + + # use the selected region to filter the masterLocationList + # clear the subsidiary comboboxes and populat them anew with filtered locations + thisRegionName = self.cboRegions.currentText() + thisRegionCode = MainWindow.db.GetRegionCode(self.cboRegions.currentText()) + self.cboCountries.clear() + self.cboStates.clear() + self.cboCounties.clear() + self.cboLocations.clear() + + # if "all regions" is chosen, fill subsidiary cbos with all locations + # e.g., remove the country filter, if one had existed for the cbos + if thisRegionName == "**All Regions**": + self.cboRegions.setStyleSheet(""); + self.cboCountries.addItem("**All Countries**") + self.cboStates.addItem("**All States**") + self.cboCounties.addItem("**All Counties**") + self.cboLocations.addItem("**All Locations**") + self.cboCountries.addItems(MainWindow.db.countryList) + self.cboStates.addItems(MainWindow.db.stateList) + self.cboCounties.addItems(MainWindow.db.countyList) + self.cboLocations.addItems(MainWindow.db.locationList) + + else: + + red = str(code_Stylesheet.mdiAreaColor.red()) + blue = str(code_Stylesheet.mdiAreaColor.blue()) + green = str(code_Stylesheet.mdiAreaColor.green()) + self.cboRegions.setStyleSheet("QComboBox { background-color: rgb(" + red + "," + green + "," + blue + ");}") + + # initialize lists to store the subsidiary locations + thisRegionCountries = set() + thisRegionStates = set() + thisRegionCounties = set() + thisRegionLocations = set() + + # loop through masterLocationList to find locations filtered for the chosen region + for l in MainWindow.db.masterLocationList: + + if thisRegionCode in l["regionCodes"]: + + thisRegionCountries.add(l["countryName"]) + if l["stateName"] != "": thisRegionStates.add(l["stateName"]) + if l["county"] != "": thisRegionCounties.add(l["county"]) + if l["location"] != "": thisRegionLocations.add(l["location"]) + + # remove duplicates using the set command, then return to list format + thisRegionCountries = list(thisRegionCountries) + thisRegionStates = list(thisRegionStates) + thisRegionCounties = list(thisRegionCounties) + thisRegionLocations = list(thisRegionLocations) + + # sort them + thisRegionCountries.sort() + thisRegionStates.sort() + thisRegionCounties.sort() + thisRegionLocations.sort() + + # add filtered locations to comboboxes + self.cboCountries.addItem("**All Countries**") + self.cboCountries.addItems(thisRegionCountries) + self.cboStates.addItem("**All States**") + self.cboStates.addItems(thisRegionStates) + self.cboCounties.addItem("**All Counties**") + self.cboCounties.addItems(thisRegionCounties) + self.cboLocations.addItem("**All Locations**") + self.cboLocations.addItems(thisRegionLocations) + + # we're done, so reset flag to false to allow future triggers + self.fillingLocationComboBoxesFlag = False + + def ComboCountriesChanged(self): @@ -1387,6 +2394,7 @@ def ComboCountriesChanged(self): self.fillingLocationComboBoxesFlag = True # clear the color coding for selected filter components + self.cboRegions.setStyleSheet(""); self.cboCountries.setStyleSheet(""); self.cboStates.setStyleSheet(""); self.cboCounties.setStyleSheet(""); @@ -1412,8 +2420,11 @@ def ComboCountriesChanged(self): self.cboCountries.setStyleSheet(""); else: - - self.cboCountries.setStyleSheet("QComboBox { background-color: rgb(110, 115, 202)}"); + + red = str(code_Stylesheet.mdiAreaColor.red()) + blue = str(code_Stylesheet.mdiAreaColor.blue()) + green = str(code_Stylesheet.mdiAreaColor.green()) + self.cboCountries.setStyleSheet("QComboBox { background-color: rgb(" + red + "," + green + "," + blue + ");}") # initialize lists to store the subsidiary locations thisCountryStates = set() @@ -1423,11 +2434,11 @@ def ComboCountriesChanged(self): # loop through masterLocationList to find locations filtered for the chose country for l in MainWindow.db.masterLocationList: - if l[0] == thisCountry: + if l["countryCode"] == thisCountry: - if l[1] != "": thisCountryStates.add(MainWindow.db.GetStateName(l[1])) - if l[2] != "": thisCountryCounties.add(l[2]) - if l[3] != "": thisCountryLocations.add(l[3]) + if l["stateName"] != "": thisCountryStates.add(l["stateName"]) + if l["county"] != "": thisCountryCounties.add(l["county"]) + if l["location"] != "": thisCountryLocations.add(l["location"]) # remove duplicates using the set command, then return to list format thisCountryStates = list(thisCountryStates) @@ -1452,6 +2463,7 @@ def ComboCountriesChanged(self): def ComboDateOptionsChanged(self): + if self.fillingLocationComboBoxesFlag is False: thisOption = self.cboDateOptions.currentText() @@ -1462,17 +2474,18 @@ def ComboDateOptionsChanged(self): self.calEndDate.setStyleSheet("") elif thisOption == "Use Calendars Below": - self.cboDateOptions.setStyleSheet("QComboBox { background-color: blue}"); - self.calStartDate.setStyleSheet("QDateTimeEdit { background-color: blue; color: white}") - self.calEndDate.setStyleSheet("QDateTimeEdit { background-color: blue; color: white}") + self.highlightFilterElement(self.cboDateOptions) + self.highlightFilterElement(self.calStartDate) + self.highlightFilterElement(self.calEndDate) else: - self.cboDateOptions.setStyleSheet("QComboBox { background-color: blue}") - self.calStartDate.setStyleSheet(""); - self.calEndDate.setStyleSheet("") + self.highlightFilterElement(self.cboDateOptions) + self.unhighlightFilterElement(self.calStartDate) + self.unhighlightFilterElement(self.calEndDate) def ComboFamiliesChanged(self): + if self.fillingLocationComboBoxesFlag is False: self.fillingLocationComboBoxesFlag = True @@ -1494,7 +2507,7 @@ def ComboFamiliesChanged(self): self.cboSpecies.addItems(speciesList) else: - self.cboFamilies.setStyleSheet("QComboBox { background-color: blue}"); + self.highlightFilterElement(self.cboFamilies) self.cboSpecies.addItem("**All Species**") self.cboSpecies.addItems(MainWindow.db.familySpeciesDict[thisFamily]) @@ -1502,26 +2515,29 @@ def ComboFamiliesChanged(self): def ComboLocationsChanged(self): + if self.fillingLocationComboBoxesFlag is False: thisLocation = self.cboLocations.currentText() if thisLocation == "**All Locations**": - self.cboLocations.setStyleSheet(""); + self.unhighlightFilterElement(self.cboLocations) else: - self.cboLocations.setStyleSheet("QComboBox { background-color: blue}"); + self.highlightFilterElement(self.cboLocations) self.cboStartSeasonalRangeMonth.adjustSize() def ComboOrdersChanged(self): + if self.fillingLocationComboBoxesFlag is False: + self.fillingLocationComboBoxesFlag = True thisOrder = self.cboOrders.currentText() # clear any color coding for selected filter components - self.cboFamilies.setStyleSheet("") - self.cboSpecies.setStyleSheet("") + self.unhighlightFilterElement(self.cboFamilies) + self.unhighlightFilterElement(self.cboSpecies) self.cboFamilies.clear() self.cboSpecies.clear() @@ -1537,7 +2553,7 @@ def ComboOrdersChanged(self): else: thisFamilies = [] - self.cboOrders.setStyleSheet("QComboBox { background-color: blue}"); + self.highlightFilterElement(self.cboOrders) for l in MainWindow.db.masterFamilyOrderList: if l[1] == thisOrder: if l[0] not in thisFamilies: @@ -1545,9 +2561,24 @@ def ComboOrdersChanged(self): self.cboFamilies.addItem("**All Families**") self.cboFamilies.addItems(thisFamilies) self.cboSpecies.addItem("**All Species**") - self.cboSpecies.addItems(MainWindow.db.orderSpeciesDict[thisOrder]) + self.cboSpecies.addItems(MainWindow.db.orderSpeciesDict[thisOrder]) + self.fillingLocationComboBoxesFlag = False - + + + def textCommonNameSearchChanged(self): + + if self.txtCommonNameSearch.text().strip() != "": + + red = str(code_Stylesheet.mdiAreaColor.red()) + blue = str(code_Stylesheet.mdiAreaColor.blue()) + green = str(code_Stylesheet.mdiAreaColor.green()) + self.txtCommonNameSearch.setStyleSheet("QLineEdit {color: white; background-color: rgb(" + red + "," + green + "," + blue + ");}") + + else: + + self.txtCommonNameSearch.setStyleSheet("") + def ComboSeasonalRangeOptionsChanged(self): if self.fillingLocationComboBoxesFlag is False: @@ -1555,25 +2586,25 @@ def ComboSeasonalRangeOptionsChanged(self): thisOption = self.cboSeasonalRangeOptions.currentText() if thisOption == "No Seasonal Range": - self.cboSeasonalRangeOptions.setStyleSheet(""); - self.cboStartSeasonalRangeMonth.setStyleSheet("") - self.cboStartSeasonalRangeDate.setStyleSheet("") - self.cboEndSeasonalRangeMonth.setStyleSheet("") - self.cboEndSeasonalRangeDate.setStyleSheet("") + self.unhighlightFilterElement(self.cboSeasonalRangeOptions) + self.unhighlightFilterElement(self.cboStartSeasonalRangeMonth) + self.unhighlightFilterElement(self.cboStartSeasonalRangeDate) + self.unhighlightFilterElement(self.cboEndSeasonalRangeMonth) + self.unhighlightFilterElement(self.cboEndSeasonalRangeDate) elif thisOption == "Use Range Below": - self.cboSeasonalRangeOptions.setStyleSheet("QComboBox { background-color: blue}"); - self.cboStartSeasonalRangeMonth.setStyleSheet("QComboBox { background-color: blue}") - self.cboStartSeasonalRangeDate.setStyleSheet("QComboBox { background-color: blue}") - self.cboEndSeasonalRangeMonth.setStyleSheet("QComboBox { background-color: blue}") - self.cboEndSeasonalRangeDate.setStyleSheet("QComboBox { background-color: blue}") + self.highlightFilterElement(self.cboSeasonalRangeOptions) + self.highlightFilterElement(self.cboStartSeasonalRangeMonth) + self.highlightFilterElement(self.cboStartSeasonalRangeDate) + self.highlightFilterElement(self.cboEndSeasonalRangeMonth) + self.highlightFilterElement(self.cboEndSeasonalRangeDate) else: - self.cboSeasonalRangeOptions.setStyleSheet("QComboBox { background-color: blue}"); - self.cboStartSeasonalRangeMonth.setStyleSheet("") - self.cboStartSeasonalRangeDate.setStyleSheet("") - self.cboEndSeasonalRangeMonth.setStyleSheet("") - self.cboEndSeasonalRangeDate.setStyleSheet("") + self.highlightFilterElement(self.cboSeasonalRangeOptions) + self.unhighlightFilterElement(self.cboStartSeasonalRangeMonth) + self.unhighlightFilterElement(self.cboStartSeasonalRangeDate) + self.unhighlightFilterElement(self.cboEndSeasonalRangeMonth) + self.unhighlightFilterElement(self.cboEndSeasonalRangeDate) def ComboSpeciesChanged(self): @@ -1582,9 +2613,9 @@ def ComboSpeciesChanged(self): thisSpecies = self.cboSpecies.currentText() if thisSpecies == "**All Species**": - self.cboSpecies.setStyleSheet(""); + self.unhighlightFilterElement(self.cboSpecies) else: - self.cboSpecies.setStyleSheet("QComboBox { background-color: blue}"); + self.highlightFilterElement(self.cboSpecies) def ComboStatesChanged(self): @@ -1592,26 +2623,26 @@ def ComboStatesChanged(self): self.fillingLocationComboBoxesFlag = True # clear any color coding for selected filter components - self.cboCounties.setStyleSheet(""); - self.cboLocations.setStyleSheet(""); + self.unhighlightFilterElement(self.cboCounties) + self.unhighlightFilterElement(self.cboLocations) thisState = MainWindow.db.GetStateCode(self.cboStates.currentText()) self.cboCounties.clear() self.cboLocations.clear() if thisState == "**All States**": - self.cboStates.setStyleSheet(""); + self.unhighlightFilterElement(self.cboStates) self.cboCounties.addItem("**All Counties**") self.cboLocations.addItem("**All Locations**") self.cboCounties.addItems(MainWindow.db.countyList) self.cboLocations.addItems(MainWindow.db.locationList) else: - self.cboStates.setStyleSheet("QComboBox { background-color: blue}"); + self.highlightFilterElement(self.cboStates) thisStateCounties = set() thisStateLocations = set() for l in MainWindow.db.masterLocationList: - if l[1] == thisState: - if l[2] != "": thisStateCounties.add(l[2]) - if l[3] != "": thisStateLocations.add(l[3]) + if l["stateCode"] == thisState: + if l["county"] != "": thisStateCounties.add(l["county"]) + if l["location"] != "": thisStateLocations.add(l["location"]) thisStateCounties = list(thisStateCounties) thisStateLocations = list(thisStateLocations) @@ -1624,6 +2655,7 @@ def ComboStatesChanged(self): self.cboLocations.addItem("**All Locations**") self.cboLocations.addItems(thisStateLocations) self.fillingLocationComboBoxesFlag = False + def ComboCountiesChanged(self): if self.fillingLocationComboBoxesFlag is False: @@ -1635,21 +2667,319 @@ def ComboCountiesChanged(self): self.cboLocations.clear() if thisCounty == "**All Counties**": - self.cboCounties.setStyleSheet(""); + self.unhighlightFilterElement(self.cboCounties) self.cboLocations.addItem("**All Locations**") self.cboLocations.addItems(MainWindow.db.locationList) else: - self.cboCounties.setStyleSheet("QComboBox { background-color: blue}"); + self.highlightFilterElement(self.cboCounties) thisCountyLocations = set() for l in MainWindow.db.masterLocationList: - if l[2] == thisCounty: - if l[3] != "": thisCountyLocations.add(l[3]) + if l["county"] == thisCounty: + if l["location"] != "": thisCountyLocations.add(l["location"]) thisCountyLocations = list(thisCountyLocations) thisCountyLocations.sort() self.cboLocations.addItem("**All Locations**") self.cboLocations.addItems(thisCountyLocations) self.fillingLocationComboBoxesFlag = False + + + def ComboStartRatingRangeChanged(self): + + thisSighting = self.cboStartRatingRange.currentText() + + startRating = self.cboStartRatingRange.currentIndex() + endRating = self.cboEndRatingRange.currentIndex() + + if startRating > endRating: + if endRating == 0: + self.cboEndRatingRange.setCurrentIndex(6) + else: + self.cboEndRatingRange.setCurrentIndex(startRating) + + if thisSighting == "**All**": + self.unhighlightFilterElement(self.cboStartRatingRange) + else: + self.highlightFilterElement(self.cboStartRatingRange) + + + def ComboEndRatingRangeChanged(self): + + thisSighting = self.cboEndRatingRange.currentText() + + startRating = self.cboStartRatingRange.currentIndex() + endRating = self.cboEndRatingRange.currentIndex() + + if startRating > endRating: + self.cboStartRatingRange.setCurrentIndex(endRating) + + if thisSighting == "**All**": + self.unhighlightFilterElement(self.cboEndRatingRange) + else: + self.highlightFilterElement(self.cboEndRatingRange) + + + def ComboSpeciesHasPhotosChanged(self): + + thisSpecies = self.cboSpeciesHasPhoto.currentText() + + if thisSpecies == "**All**": + self.unhighlightFilterElement(self.cboSpeciesHasPhoto) + else: + self.highlightFilterElement(self.cboSpeciesHasPhoto) + + + def ComboCameraChanged(self): + + thisCamera = self.cboCamera.currentText() + + if thisCamera == "**All Cameras**": + self.unhighlightFilterElement(self.cboCamera) + else: + self.highlightFilterElement(self.cboCamera) + + + def ComboLensChanged(self): + + thisLens = self.cboLens.currentText() + + if thisLens== "**All Lenses**": + self.unhighlightFilterElement(self.cboLens) + else: + self.highlightFilterElement(self.cboLens) + + + def ComboStartShutterSpeedChanged(self): + + thisShutterSpeed = self.cboStartShutterSpeedRange.currentText() + + if thisShutterSpeed == "**All**": + self.unhighlightFilterElement(self.cboStartShutterSpeedRange) + else: + self.highlightFilterElement(self.cboStartShutterSpeedRange) + + + def ComboEndShutterSpeedChanged(self): + + thisShutterSpeed = self.cboEndShutterSpeedRange.currentText() + + if thisShutterSpeed == "**All**": + self.unhighlightFilterElement(self.cboEndShutterSpeedRange) + else: + self.highlightFilterElement(self.cboEndShutterSpeedRange) + + + def ComboStartApertureChanged(self): + + thisAperture = self.cboStartApertureRange.currentText() + + if thisAperture == "**All**": + self.unhighlightFilterElement(self.cboStartApertureRange) + else: + self.highlightFilterElement(self.cboStartApertureRange) + + + def ComboEndApertureChanged(self): + + thisAperture = self.cboEndApertureRange.currentText() + + if thisAperture == "**All**": + self.unhighlightFilterElement(self.cboEndApertureRange) + else: + self.highlightFilterElement(self.cboEndApertureRange) + + + def ComboStartFocalLengthChanged(self): + + thisFocalLength = self.cboStartFocalLengthRange.currentText() + + if thisFocalLength == "**All**": + self.unhighlightFilterElement(self.cboStartFocalLengthRange) + else: + self.highlightFilterElement(self.cboStartFocalLengthRange) + + + def ComboEndFocalLengthChanged(self): + + thisFocalLength = self.cboEndFocalLengthRange.currentText() + + if thisFocalLength == "**All**": + self.unhighlightFilterElement(self.cboEndFocalLengthRange) + else: + self.highlightFilterElement(self.cboEndFocalLengthRange) + + + def ComboStartIsoChanged(self): + + thisIso = self.cboStartIsoRange.currentText() + + if thisIso == "**All**": + self.unhighlightFilterElement(self.cboStartIsoRange) + else: + self.highlightFilterElement(self.cboStartIsoRange) + + + def ComboEndIsoChanged(self): + + thisIso = self.cboEndIsoRange.currentText() + + if thisIso == "**All**": + self.unhighlightFilterElement(self.cboEndIsoRange) + else: + self.highlightFilterElement(self.cboEndIsoRange) + + + def createChoroplethUSStates(self): + + # if no data file is currently open, abort + if MainWindow.db.eBirdFileOpenFlag is not True: + self.CreateMessageNoFile() + return + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + filter = self.GetFilter() + # create new Location Totals child window + sub = code_Web.Web() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + # call the child's routine to fill it with data + if sub.loadChoroplethUSStates(filter) is True: + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + else: + # abort if filter found no sightings for map + self.CreateMessageNoResults() + sub.close() + + QApplication.restoreOverrideCursor() + + + def createChoroplethUSCounties(self): + + # if no data file is currently open, abort + if MainWindow.db.eBirdFileOpenFlag is not True: + self.CreateMessageNoFile() + return + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + filter = self.GetFilter() + # create new Location Totals child window + sub = code_Web.Web() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + # call the child's routine to fill it with data + if sub.loadChoroplethUSCounties(filter) is True: + + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + else: + # abort if filter found no sightings for map + self.CreateMessageNoResults() + sub.close() + + QApplication.restoreOverrideCursor() + + + def createChoroplethWorldCountries(self): + + # if no data file is currently open, abort + if MainWindow.db.eBirdFileOpenFlag is not True: + self.CreateMessageNoFile() + return + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + filter = self.GetFilter() + # create new Location Totals child window + sub = code_Web.Web() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + # call the child's routine to fill it with data + if sub.loadChoroplethWorldCountries(filter) is True: + + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + else: + # abort if filter found no sightings for map + self.CreateMessageNoResults() + sub.close() + + QApplication.restoreOverrideCursor() + + + def createChoroplethWorldSubregion1(self): + + # if no data file is currently open, abort + if MainWindow.db.eBirdFileOpenFlag is not True: + self.CreateMessageNoFile() + return + + QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) + + filter = self.GetFilter() + # create new Location Totals child window + sub = code_Web.Web() + + # save the MDI window as the parent for future use in the child + sub.mdiParent = self + + # call the child's routine to fill it with data + if sub.loadChoroplethWorldSubregion1(filter) is True: + + # add and position the child to our MDI area + self.mdiArea.addSubWindow(sub) + self.PositionChildWindow(sub, self) + sub.show() + + else: + # abort if filter found no sightings for map + self.CreateMessageNoResults() + sub.close() + + QApplication.restoreOverrideCursor() + + + + def highlightFilterElement(self, widget): + + if widget.objectName()[0:3] == "cbo": + red = str(code_Stylesheet.mdiAreaColor.red()) + blue = str(code_Stylesheet.mdiAreaColor.blue()) + green = str(code_Stylesheet.mdiAreaColor.green()) + widget.setStyleSheet("QComboBox { background-color: rgb(" + red + "," + green + "," + blue + ")}") + + if widget.objectName()[0:3] == "cal": + red = str(code_Stylesheet.mdiAreaColor.red()) + blue = str(code_Stylesheet.mdiAreaColor.blue()) + green = str(code_Stylesheet.mdiAreaColor.green()) + widget.setStyleSheet("QDateTimeEdit { background-color: rgb(" + red + "," + green + "," + blue + ")}") + + + def unhighlightFilterElement(self, widget): + + widget.setStyleSheet("") + + + def ExitApp(self): + + self.checkIfPhotoDataNeedSaving() sys.exit() diff --git a/code_Web.py b/code_Web.py index 68ef5ee..32e2455 100644 --- a/code_Web.py +++ b/code_Web.py @@ -21,7 +21,7 @@ ) from PyQt5.QtWidgets import ( - QApplication, +# QApplication, QMdiSubWindow ) @@ -48,6 +48,7 @@ class Web(QMdiSubWindow, form_Web.Ui_frmWeb): def __init__(self): super(self.__class__, self).__init__() self.setupUi(self) + self.setAttribute(Qt.WA_DeleteOnClose,True) self.mdiParent = "" self.setWindowIcon(QIcon(QPixmap(1,1))) self.contentType = "Web Page" @@ -78,7 +79,7 @@ def resizeMe(self): def html(self): - QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) +# QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) html = """ @@ -110,7 +111,7 @@ def html(self): """) - QApplication.restoreOverrideCursor() +# QApplication.restoreOverrideCursor() return(html) @@ -127,9 +128,9 @@ def scaleMe(self): self.resize(windowWidth, windowHeight) - def loadAboutLapwing(self): + def loadAboutYearbird(self): - self.title= "About Lapwing" + self.title= "About Yearbird" self.contentType = "About" @@ -138,7 +139,7 @@ def loadAboutLapwing(self): - About Lapwing + About Yearbird - - -

- Lapwing -

- """ - - html = html + "

Version: " + self.mdiParent.versionNumber + "

" - html = html + "

Date: " + self.mdiParent.versionDate+ "

" - - html = html + """ - - - Lapwing is a free, open-source application to analyze personal eBird sightings. -

- Created by Richard Trinkner. -
-

- Licenses -

-

-

-
- - - """ - - self.webView.setHtml(html) - - self.setWindowTitle("About Lapwing") - - return(True) - - - def LoadWebPage(self, url): - QApplication.setOverrideCursor(QCursor(Qt.WaitCursor)) - self.webView.load(QUrl(url)) - self.resizeMe() - self.scaleMe() - - - def LoadFinished(self): - QApplication.restoreOverrideCursor() - - - def LoadLocationsMap(self, filter): - - self.title= "Location Map" - - coordinatesDict = defaultdict() - mapWidth = self.frameGeometry().width() -10 - mapHeight = self.frameGeometry().height() -35 - self.scrollArea.setGeometry(5, 27, mapWidth + 2, mapHeight + 2) - self.webView.setGeometry(5, 27, mapWidth + 2, mapHeight + 2) - self.contentType = "Map" - self.filter = filter - - locations = self.mdiParent.db.GetLocations(filter) - - if len(locations) == 0: - return(False) - - for l in locations: - coordinates = self.mdiParent.db.GetLocationCoordinates(l) - coordinatesDict[l] = coordinates - - html = """ - - - - - Locations Map - - - - - -
- - - - - """ - - self.webView.setHtml(html) - - # set window title to descriptive map name - - locationName = filter.getLocationName() # str name of region or location or "" - locationType = filter.getLocationType() - startDate = filter.getStartDate() # str format yyyy-mm-dd or "" - endDate = filter.getEndDate() # str format yyyy-mm-dd or "" - startSeasonalMonth = filter.getStartSeasonalMonth() # str format mm - startSeasonalDay = filter.getStartSeasonalDay() # str format dd - endSeasonalMonth = filter.getEndSeasonalMonth() # str format dd - endSeasonalDay = filter.getEndSeasonalDay() # str format dd - speciesName = filter.getSpeciesName() # str speciesName - family = filter.getFamily() # str family name - - # set main location label, using "All Locations" if none others are selected - - windowTitle = speciesName - - if locationName != "": - if locationType == "Country": - locationName = self.mdiParent.db.GetCountryName(locationName) - if locationType == "State": - locationName = self.mdiParent.db.GetStateName(locationName) - windowTitle = windowTitle + "; " + locationName - - if startDate != "": - dateTitle = startDate + " to " + endDate - if startDate == endDate: - dateTitle = startDate - windowTitle = windowTitle + "; " + dateTitle - - # set main seasonal range label, if specified - if not ((startSeasonalMonth == "") or (endSeasonalMonth == "")): - monthRange = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] - rangeTitle = monthRange[int(startSeasonalMonth)-1] + "-" + startSeasonalDay + " to " + monthRange[int(endSeasonalMonth)-1] + "-" + endSeasonalDay - windowTitle = windowTitle + "; " + rangeTitle - - if family != "": - family = family[0:family.index("(") - 1] - windowTitle = windowTitle + "; " + family - - if windowTitle == "": - windowTitle = "All species, locations, dates and families" - - #remove leading "; " if needed - if windowTitle[0:2] == "; ": - windowTitle = windowTitle [2:] - - # add location count to window title - windowTitle = "Map: " + windowTitle + " (" + str(len(coordinatesDict.keys())) + ")" - - self.setWindowTitle(windowTitle) - - icon = QIcon() - icon.addPixmap(QPixmap(":/icon_map.png"), QIcon.Normal, QIcon.Off) - self.setWindowIcon(icon) - - return(True) - - - def showLoadProgress(self, percent): - - if percent < 100: - self.setWindowTitle(self.title + ": " + str(percent) + "%") - else: - self.setWindowTitle(self.title) - diff --git a/eBird_Taxonomy.csv b/eBird_Taxonomy.csv index 448a46c..0d4af9b 100644 --- a/eBird_Taxonomy.csv +++ b/eBird_Taxonomy.csv @@ -1 +1,16514 @@ -TAXON_ORDER,CATEGORY,SPECIES_CODE,PRIMARY_COM_NAME,SCI_NAME,ORDER1,FAMILY,SPECIES_GROUP,REPORT_AS 3,species,ostric2,Common Ostrich,Struthio camelus,Struthioniformes,Struthionidae (Ostriches),Ostriches, 5,species,ostric3,Somali Ostrich,Struthio molybdophanes,Struthioniformes,Struthionidae (Ostriches),, 6,slash,y00934,Common/Somali Ostrich,Struthio camelus/molybdophanes,Struthioniformes,Struthionidae (Ostriches),, 7,species,grerhe1,Greater Rhea,Rhea americana,Rheiformes,Rheidae (Rheas),Rheas, 13,species,lesrhe2,Lesser Rhea,Rhea pennata,Rheiformes,Rheidae (Rheas),, 14,issf,lesrhe4,Lesser Rhea (Puna),Rhea pennata tarapacensis/garleppi,Rheiformes,Rheidae (Rheas),,lesrhe2 17,issf,lesrhe3,Lesser Rhea (Darwin's),Rhea pennata pennata,Rheiformes,Rheidae (Rheas),,lesrhe2 32,species,tabtin1,Tawny-breasted Tinamou,Nothocercus julius,Tinamiformes,Tinamidae (Tinamous),Tinamous, 33,species,higtin1,Highland Tinamou,Nothocercus bonapartei,Tinamiformes,Tinamidae (Tinamous),, 34,issf,higtin2,Highland Tinamou (South American),Nothocercus bonapartei [bonapartei Group],Tinamiformes,Tinamidae (Tinamous),,higtin1 39,issf,higtin3,Highland Tinamou (Costa Rican),Nothocercus bonapartei frantzii,Tinamiformes,Tinamidae (Tinamous),,higtin1 40,species,hootin1,Hooded Tinamou,Nothocercus nigrocapillus,Tinamiformes,Tinamidae (Tinamous),, 43,species,grytin1,Gray Tinamou,Tinamus tao,Tinamiformes,Tinamidae (Tinamous),, 48,species,soltin1,Solitary Tinamou,Tinamus solitarius,Tinamiformes,Tinamidae (Tinamous),, 49,species,blatin1,Black Tinamou,Tinamus osgoodi,Tinamiformes,Tinamidae (Tinamous),, 52,species,gretin1,Great Tinamou,Tinamus major,Tinamiformes,Tinamidae (Tinamous),, 65,species,whttin1,White-throated Tinamou,Tinamus guttatus,Tinamiformes,Tinamidae (Tinamous),, 66,spuh,tinamu1,Tinamus sp.,Tinamus sp.,Tinamiformes,Tinamidae (Tinamous),, 67,species,cintin1,Cinereous Tinamou,Crypturellus cinereus,Tinamiformes,Tinamidae (Tinamous),, 68,species,bertin1,Berlepsch's Tinamou,Crypturellus berlepschi,Tinamiformes,Tinamidae (Tinamous),, 69,species,littin1,Little Tinamou,Crypturellus soui,Tinamiformes,Tinamidae (Tinamous),, 84,species,teptin1,Tepui Tinamou,Crypturellus ptaritepui,Tinamiformes,Tinamidae (Tinamous),, 85,species,brotin1,Brown Tinamou,Crypturellus obsoletus,Tinamiformes,Tinamidae (Tinamous),, 86,issf,brntin1,Brown Tinamou (castaneus),Crypturellus obsoletus castaneus,Tinamiformes,Tinamidae (Tinamous),,brotin1 86.5,issf,brntin2,Brown Tinamou (Brown),Crypturellus obsoletus [obsoletus Group],Tinamiformes,Tinamidae (Tinamous),,brotin1 95,species,undtin1,Undulated Tinamou,Crypturellus undulatus,Tinamiformes,Tinamidae (Tinamous),, 102,species,pabtin1,Pale-browed Tinamou,Crypturellus transfasciatus,Tinamiformes,Tinamidae (Tinamous),, 103,species,bratin1,Brazilian Tinamou,Crypturellus strigulosus,Tinamiformes,Tinamidae (Tinamous),, 104,species,gyltin1,Gray-legged Tinamou,Crypturellus duidae,Tinamiformes,Tinamidae (Tinamous),, 105,species,reltin1,Red-legged Tinamou,Crypturellus erythropus,Tinamiformes,Tinamidae (Tinamous),, 113,species,yeltin1,Yellow-legged Tinamou,Crypturellus noctivagus,Tinamiformes,Tinamidae (Tinamous),, 113.2,issf,yeltin2,Yellow-legged Tinamou (zabele),Crypturellus noctivagus zabele,Tinamiformes,Tinamidae (Tinamous),,yeltin1 113.4,issf,yeltin3,Yellow-legged Tinamou (noctivagus),Crypturellus noctivagus noctivagus,Tinamiformes,Tinamidae (Tinamous),,yeltin1 116,species,blctin1,Black-capped Tinamou,Crypturellus atrocapillus,Tinamiformes,Tinamidae (Tinamous),, 119,species,slbtin1,Slaty-breasted Tinamou,Crypturellus boucardi,Tinamiformes,Tinamidae (Tinamous),, 122,species,chotin1,Choco Tinamou,Crypturellus kerriae,Tinamiformes,Tinamidae (Tinamous),, 123,species,vartin1,Variegated Tinamou,Crypturellus variegatus,Tinamiformes,Tinamidae (Tinamous),, 124,species,thitin1,Thicket Tinamou,Crypturellus cinnamomeus,Tinamiformes,Tinamidae (Tinamous),, 124.2,issf,thitin2,Thicket Tinamou (occidentalis),Crypturellus cinnamomeus occidentalis,Tinamiformes,Tinamidae (Tinamous),,thitin1 124.4,issf,thitin3,Thicket Tinamou (cinnamomeus Group),Crypturellus cinnamomeus [cinnamomeus Group],Tinamiformes,Tinamidae (Tinamous),,thitin1 134,species,rustin1,Rusty Tinamou,Crypturellus brevirostris,Tinamiformes,Tinamidae (Tinamous),, 135,species,bartin2,Bartlett's Tinamou,Crypturellus bartletti,Tinamiformes,Tinamidae (Tinamous),, 136,species,smbtin1,Small-billed Tinamou,Crypturellus parvirostris,Tinamiformes,Tinamidae (Tinamous),, 137,species,bartin1,Barred Tinamou,Crypturellus casiquiare,Tinamiformes,Tinamidae (Tinamous),, 138,species,tattin1,Tataupa Tinamou,Crypturellus tataupa,Tinamiformes,Tinamidae (Tinamous),, 143,spuh,cryptu1,Crypturellus sp.,Crypturellus sp.,Tinamiformes,Tinamidae (Tinamous),, 144,species,rewtin1,Red-winged Tinamou,Rhynchotus rufescens,Tinamiformes,Tinamidae (Tinamous),, 148,species,huatin1,Huayco Tinamou,Rhynchotus maculicollis,Tinamiformes,Tinamidae (Tinamous),, 149,species,tactin1,Taczanowski's Tinamou,Nothoprocta taczanowskii,Tinamiformes,Tinamidae (Tinamous),, 150,species,orntin1,Ornate Tinamou,Nothoprocta ornata,Tinamiformes,Tinamidae (Tinamous),, 154,species,chitin1,Chilean Tinamou,Nothoprocta perdicaria,Tinamiformes,Tinamidae (Tinamous),, 157,species,brutin1,Brushland Tinamou,Nothoprocta cinerascens,Tinamiformes,Tinamidae (Tinamous),, 160,species,andtin1,Andean Tinamou,Nothoprocta pentlandii,Tinamiformes,Tinamidae (Tinamous),, 168,species,cubtin1,Curve-billed Tinamou,Nothoprocta curvirostris,Tinamiformes,Tinamidae (Tinamous),, 171,spuh,nothop1,Nothoprocta sp.,Nothoprocta sp.,Tinamiformes,Tinamidae (Tinamous),, 172,species,whbnot1,White-bellied Nothura,Nothura boraquira,Tinamiformes,Tinamidae (Tinamous),, 173,species,lesnot1,Lesser Nothura,Nothura minor,Tinamiformes,Tinamidae (Tinamous),, 174,species,darnot1,Darwin's Nothura,Nothura darwinii,Tinamiformes,Tinamidae (Tinamous),, 180,species,sponot1,Spotted Nothura,Nothura maculosa,Tinamiformes,Tinamidae (Tinamous),, 189,species,chanot1,Chaco Nothura,Nothura chacoensis,Tinamiformes,Tinamidae (Tinamous),, 190,species,dwatin1,Dwarf Tinamou,Taoniscus nanus,Tinamiformes,Tinamidae (Tinamous),, 191,species,elctin1,Elegant Crested-Tinamou,Eudromia elegans,Tinamiformes,Tinamidae (Tinamous),, 202,species,quctin1,Quebracho Crested-Tinamou,Eudromia formosa,Tinamiformes,Tinamidae (Tinamous),, 205,species,puntin1,Puna Tinamou,Tinamotis pentlandii,Tinamiformes,Tinamidae (Tinamous),, 206,species,pattin1,Patagonian Tinamou,Tinamotis ingoufi,Tinamiformes,Tinamidae (Tinamous),, 207,spuh,tinamo1,tinamou sp.,Tinamidae sp.,Tinamiformes,Tinamidae (Tinamous),, 207.05,species,soucas1,Southern Cassowary,Casuarius casuarius,Casuariiformes,Casuariidae (Cassowaries and Emu),Cassowaries and Emu, 207.1,species,dwacas1,Dwarf Cassowary,Casuarius bennetti,Casuariiformes,Casuariidae (Cassowaries and Emu),, 207.15,species,norcas1,Northern Cassowary,Casuarius unappendiculatus,Casuariiformes,Casuariidae (Cassowaries and Emu),, 207.2,species,emu1,Emu,Dromaius novaehollandiae,Casuariiformes,Casuariidae (Cassowaries and Emu),, 207.45,species,sobkiw1,Southern Brown Kiwi,Apteryx australis,Apterygiformes,Apterygidae (Kiwis),Kiwis, 207.5,issf,sobkiw2,Southern Brown Kiwi (South I.),Apteryx australis australis,Apterygiformes,Apterygidae (Kiwis),,sobkiw1 207.55,issf,sobkiw3,Southern Brown Kiwi (Stewart I.),Apteryx australis lawryi,Apterygiformes,Apterygidae (Kiwis),,sobkiw1 207.6,species,okbkiw1,Okarito Brown Kiwi,Apteryx rowi,Apterygiformes,Apterygidae (Kiwis),, 207.65,species,nibkiw1,North Island Brown Kiwi,Apteryx mantelli,Apterygiformes,Apterygidae (Kiwis),, 207.7,species,liskiw1,Little Spotted Kiwi,Apteryx owenii,Apterygiformes,Apterygidae (Kiwis),, 207.75,species,grskiw1,Great Spotted Kiwi,Apteryx haastii,Apterygiformes,Apterygidae (Kiwis),, 208,species,horscr1,Horned Screamer,Anhima cornuta,Anseriformes,Anhimidae (Screamers),Screamers, 209,species,souscr1,Southern Screamer,Chauna torquata,Anseriformes,Anhimidae (Screamers),, 210,species,norscr1,Northern Screamer,Chauna chavaria,Anseriformes,Anhimidae (Screamers),, 211,species,maggoo1,Magpie Goose,Anseranas semipalmata,Anseriformes,Anseranatidae (Magpie Goose),Waterfowl, 212,species,spwduc1,Spotted Whistling-Duck,Dendrocygna guttata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 213,species,plwduc1,Plumed Whistling-Duck,Dendrocygna eytoni,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 214,species,wfwduc1,White-faced Whistling-Duck,Dendrocygna viduata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 214.5,hybrid,x00721,Spotted x White-faced Whistling-Duck (hybrid),Dendrocygna guttata x viduata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 215,species,bbwduc,Black-bellied Whistling-Duck,Dendrocygna autumnalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 215.3,issf,bkbwhd1,Black-bellied Whistling-Duck (fulgens),Dendrocygna autumnalis fulgens,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,bbwduc 215.6,issf,bkbwhd2,Black-bellied Whistling-Duck (autumnalis),Dendrocygna autumnalis autumnalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,bbwduc 216,species,wiwduc1,West Indian Whistling-Duck,Dendrocygna arborea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 216.5,hybrid,x00775,Black-bellied x West Indian Whistling-Duck (hybrid),Dendrocygna autumnalis x arborea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 217,species,fuwduc,Fulvous Whistling-Duck,Dendrocygna bicolor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 217.2,hybrid,x00875,Black-bellied x Fulvous Whistling-Duck (hybrid),Dendrocygna autumnalis x bicolor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 218,species,wawduc1,Wandering Whistling-Duck,Dendrocygna arcuata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 222,species,lewduc1,Lesser Whistling-Duck,Dendrocygna javanica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 223,spuh,whistl1,whistling-duck sp.,Dendrocygna sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 224,species,whbduc1,White-backed Duck,Thalassornis leuconotus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 240,species,bahgoo,Bar-headed Goose,Anser indicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 253,species,empgoo,Emperor Goose,Anser canagicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 254,species,snogoo,Snow Goose,Anser caerulescens,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 259,species,rosgoo,Ross's Goose,Anser rossii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 259.5,hybrid,sxrgoo1,Snow x Ross's Goose (hybrid),Anser caerulescens x rossii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260,slash,y00469,Snow/Ross's Goose,Anser caerulescens/rossii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.05,species,gragoo,Graylag Goose,Anser anser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.1,issf,gragoo2,Graylag Goose (European),Anser anser anser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gragoo 260.15,issf,gragoo3,Graylag Goose (Siberian),Anser anser rubrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gragoo 260.2,domestic,gragoo1,Graylag Goose (Domestic type),Anser anser (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.25,species,swagoo1,Swan Goose,Anser cygnoides,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.3,domestic,swagoo2,Swan Goose (Domestic type),Anser cygnoides (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.35,hybrid,x00776,Graylag x Swan Goose (Domestic type) (hybrid),Anser anser x cygnoides (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.4,species,gwfgoo,Greater White-fronted Goose,Anser albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.45,issf,gwfgoo4,Greater White-fronted Goose (Eurasian),Anser albifrons albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo 260.5,issf,gwfgoo1,Greater White-fronted Goose (Greenland),Anser albifrons flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo 260.55,issf,gwfgoo2,Greater White-fronted Goose (Western),Anser albifrons gambelli/frontalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo 260.6,issf,gwfgoo3,Greater White-fronted Goose (Tule),Anser albifrons elgasi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo 260.65,hybrid,x00755,Bar-headed x Greater White-fronted Goose (hybrid),Anser indicus x albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.7,hybrid,x00627,Snow x Greater White-fronted Goose (hybrid),Anser caerulescens x albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.75,species,lwfgoo,Lesser White-fronted Goose,Anser erythropus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.8,slash,y00707,Greater/Lesser White-fronted Goose,Anser albifrons/erythropus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.85,species,taibeg1,Taiga Bean-Goose,Anser fabalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.9,species,tunbeg1,Tundra Bean-Goose,Anser serrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.92,slash,y00468,Taiga/Tundra Bean-Goose,Anser fabalis/serrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.94,species,pifgoo,Pink-footed Goose,Anser brachyrhynchus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.96,domestic,domgoo1,Domestic goose sp. (Domestic type),Anser sp. (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 260.98,spuh,anser1,Anser sp.,Anser sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 261,species,brant,Brant,Branta bernicla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 262,issf,dabbra1,Brant (Dark-bellied),Branta bernicla bernicla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant 264,issf,atlbra1,Brant (Atlantic),Branta bernicla hrota,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant 266,issf,blkbra1,Brant (Black),Branta bernicla nigricans/orientalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant 266.7,form,gybbra1,Brant (Gray-bellied),Branta bernicla (Gray-bellied),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant 266.8,intergrade,brant1,Brant (Atlantic x Black),Branta bernicla hrota x nigricans,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant 267,hybrid,x00685,Snow Goose x Brant (hybrid),Anser caerulescens x Branta bernicla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 268,species,bargoo,Barnacle Goose,Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 268.2,hybrid,x00756,Pink-footed x Barnacle Goose (hybrid),Anser brachyrhynchus x Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 268.4,hybrid,x00757,Greater White-fronted x Barnacle Goose (hybrid),Anser albifrons x Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 268.5,hybrid,x00649,Graylag x Barnacle Goose (hybrid),Anser anser x Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 271,species,cacgoo1,Cackling Goose,Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 272,issf,alcgoo1,Cackling Goose (Aleutian),Branta hutchinsii leucopareia,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 273,issf,ricgoo1,Cackling Goose (Richardson's),Branta hutchinsii hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 274,issf,cacgoo2,Cackling Goose (minima),Branta hutchinsii minima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 276,issf,tacgoo1,Cackling Goose (Taverner's),Branta hutchinsii taverneri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 276.05,hybrid,x00831,Emperor x Cackling Goose (hybrid),Anser canagicus x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 276.1,hybrid,x00692,Snow x Cackling Goose (hybrid),Anser caerulescens x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 276.2,hybrid,x00694,Ross's x Cackling Goose (hybrid),Anser rossii x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 276.25,hybrid,x00722,Brant x Cackling Goose (hybrid),Branta bernicla x hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 276.3,hybrid,x00414,Greater White-fronted x Cackling Goose (hybrid),Anser albifrons x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 276.6,hybrid,x00416,Barnacle x Cackling Goose (hybrid),Branta leucopsis x hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 277,species,cangoo,Canada Goose,Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 278,issf,cangoo4,Canada Goose (moffitti/maxima),Branta canadensis moffitti/maxima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cangoo 281,issf,cangoo3,Canada Goose (occidentalis/fulva),Branta canadensis occidentalis/fulva,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cangoo 284,issf,cangoo1,Canada Goose (canadensis Group),Branta canadensis [canadensis Group],Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cangoo 287.1,hybrid,swagoo3,Swan Goose (Domestic type) x Canada Goose (hybrid),Anser cygnoides (Domestic type) x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.2,hybrid,x00650,Pink-footed x Canada Goose (hybrid),Anser brachyrhynchus x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.4,hybrid,x00415,Greater White-fronted x Canada Goose (hybrid),Anser albifrons x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.5,hybrid,x00758,Graylag x Canada Goose (hybrid),Anser anser x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.6,hybrid,gragoo4,Graylag Goose (Domestic type) x Canada Goose (hybrid),Anser anser (Domestic type) x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.65,hybrid,x00759,Domestic goose sp. (Domestic type) x Canada Goose (hybrid),Anser sp. (Domestic type) x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.7,hybrid,x00197,Snow x Canada Goose (hybrid),Anser caerulescens x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.8,hybrid,x00693,Ross's x Canada Goose (hybrid),Anser rossii x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 287.9,hybrid,x00417,Barnacle x Canada Goose (hybrid),Branta leucopsis x canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 288,slash,y00470,Cackling/Canada Goose,Branta hutchinsii/canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 288.5,hybrid,y00765,Snow/Ross's x Cackling/Canada Goose (hybrid),Anser caerulescens/rossii x Branta hutchinsii/canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 289,species,hawgoo,Hawaiian Goose,Branta sandvicensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 290,species,rebgoo1,Red-breasted Goose,Branta ruficollis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 291,spuh,branta1,Branta sp.,Branta sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 292,spuh,goose1,goose sp.,Anser/Branta sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 293,species,cabgoo1,Cape Barren Goose,Cereopsis novaehollandiae,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 294,species,freduc1,Freckled Duck,Stictonetta naevosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 295,species,buwgoo1,Blue-winged Goose,Cyanochen cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 296,species,mutswa,Mute Swan,Cygnus olor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 297,species,blkswa,Black Swan,Cygnus atratus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 298,species,blnswa2,Black-necked Swan,Cygnus melancoryphus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 299,species,truswa,Trumpeter Swan,Cygnus buccinator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 300,hybrid,x00832,Mute x Trumpeter Swan (hybrid),Cygnus olor x buccinator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 302,species,tunswa,Tundra Swan,Cygnus columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 303,issf,tunswa1,Tundra Swan (Whistling),Cygnus columbianus columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,tunswa 304,issf,bewswa1,Tundra Swan (Bewick's),Cygnus columbianus bewickii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,tunswa 304.3,intergrade,tunswa2,Tundra Swan (Whistling x Bewick's),Cygnus columbianus columbianus x bewickii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,tunswa 304.5,hybrid,x00418,Trumpeter x Tundra Swan (hybrid),Cygnus buccinator x columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 305,slash,y00471,Trumpeter/Tundra Swan,Cygnus buccinator/columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 306,species,whoswa,Whooper Swan,Cygnus cygnus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 306.5,hybrid,x00419,Trumpeter x Whooper Swan (hybrid),Cygnus buccinator x cygnus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 306.7,slash,y00708,Tundra/Whooper Swan,Cygnus columbianus/cygnus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 307,spuh,swan1,swan sp.,Cygnus sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 308,species,cosswa1,Coscoroba Swan,Coscoroba coscoroba,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 309,species,comduc1,Comb Duck,Sarkidiornis melanotos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 310,issf,comduc2,Comb Duck (Old World),Sarkidiornis melanotos melanotos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comduc1 311,issf,comduc3,Comb Duck (South American),Sarkidiornis melanotos sylvicola,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comduc1 312,species,harduc1,Hartlaub's Duck,Pteronetta hartlaubii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 312.5,species,origoo1,Orinoco Goose,Oressochen jubatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 313,species,andgoo1,Andean Goose,Oressochen melanopterus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 314,species,uplgoo1,Upland Goose,Chloephaga picta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 317,form,uplgoo2,Upland Goose (White-breasted),Chloephaga picta (White-breasted),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,uplgoo1 318,form,uplgoo3,Upland Goose (Bar-breasted),Chloephaga picta (Bar-breasted),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,uplgoo1 319,species,kelgoo1,Kelp Goose,Chloephaga hybrida,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 322,species,ashgoo1,Ashy-headed Goose,Chloephaga poliocephala,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 323,species,ruhgoo1,Ruddy-headed Goose,Chloephaga rubidiceps,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 324.5,spuh,chloep1,Chloephaga sp.,Chloephaga sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 325,species,egygoo,Egyptian Goose,Alopochen aegyptiaca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 326,species,rudshe,Ruddy Shelduck,Tadorna ferruginea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 327,species,soashe1,South African Shelduck,Tadorna cana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 328,species,ausshe1,Australian Shelduck,Tadorna tadornoides,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 329,species,parshe1,Paradise Shelduck,Tadorna variegata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 330,species,comshe,Common Shelduck,Tadorna tadorna,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 330.2,hybrid,x00876,Ruddy x Common Shelduck (hybrid),Tadorna ferruginea x tadorna,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 331,species,radshe1,Radjah Shelduck,Tadorna radjah,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 334,species,creshe1,Crested Shelduck,Tadorna cristata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 335,species,spwgoo1,Spur-winged Goose,Plectropterus gambensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 336,issf,spwgoo2,Spur-winged Goose (Northern),Plectropterus gambensis gambensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spwgoo1 337,issf,spwgoo3,Spur-winged Goose (Southern),Plectropterus gambensis niger,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spwgoo1 338,species,flystd1,Flying Steamer-Duck,Tachyeres patachonicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 339,species,flistd1,Flightless Steamer-Duck,Tachyeres pteneres,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 340,species,falstd1,Falkland Steamer-Duck,Tachyeres brachypterus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 341,species,whhstd1,White-headed Steamer-Duck,Tachyeres leucocephalus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 342,spuh,steame1,steamer-duck sp.,Tachyeres sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 343,species,creduc1,Crested Duck,Lophonetta specularioides,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 346,species,speduc2,Spectacled Duck,Speculanas specularis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 347,species,musduc,Muscovy Duck,Cairina moschata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 347.5,domestic,musduc3,Muscovy Duck (Established Feral),Cairina moschata (Established Feral),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,musduc 348,domestic,musduc2,Muscovy Duck (Domestic type),Cairina moschata (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 351,species,grnpyg1,Green Pygmy-Goose,Nettapus pulchellus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 352,species,copgoo1,Cotton Pygmy-Goose,Nettapus coromandelianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 355,species,afrpyg1,African Pygmy-Goose,Nettapus auritus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 356,species,rintea1,Ringed Teal,Callonetta leucophrys,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 357,species,wooduc,Wood Duck,Aix sponsa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 360,species,manduc,Mandarin Duck,Aix galericulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 360.5,hybrid,x00833,Wood x Mandarin Duck (hybrid),Aix sponsa x galericulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 361,species,manduc1,Maned Duck,Chenonetta jubata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 362,species,bratea1,Brazilian Teal,Amazonetta brasiliensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 365,species,bluduc1,Blue Duck,Hymenolaimus malacorhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 366,species,torduc1,Torrent Duck,Merganetta armata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373,species,saltea1,Salvadori's Teal,Salvadorina waigiuensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.05,species,baitea,Baikal Teal,Sibirionetta formosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.1,species,gargan,Garganey,Spatula querquedula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.15,species,hottea1,Hottentot Teal,Spatula hottentota,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.2,species,siltea1,Silver Teal,Spatula versicolor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.25,species,puntea1,Puna Teal,Spatula puna,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.3,species,buwtea,Blue-winged Teal,Spatula discors,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.35,species,cintea,Cinnamon Teal,Spatula cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.4,hybrid,bwxtea1,Blue-winged x Cinnamon Teal (hybrid),Spatula discors x cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.45,slash,y00314,Blue-winged/Cinnamon Teal,Spatula discors/cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.5,species,redsho1,Red Shoveler,Spatula platalea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.55,species,capsho1,Cape Shoveler,Spatula smithii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.6,species,aussho1,Australian Shoveler,Spatula rhynchotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.65,species,norsho,Northern Shoveler,Spatula clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.7,hybrid,x00836,Garganey x Northern Shoveler (hybrid),Spatula querquedula x clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.85,hybrid,x00629,Blue-winged Teal x Northern Shoveler (hybrid),Spatula discors x clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 373.9,hybrid,x00630,Cinnamon Teal x Northern Shoveler (hybrid),Spatula cyanoptera x clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 377,species,gadwal,Gadwall,Mareca strepera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 378,issf,gadwal1,Gadwall (Common),Mareca strepera strepera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gadwal 379,issf,gadwal2,Gadwall (Coues's),Mareca strepera couesi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gadwal 380,hybrid,x00457,Northern Shoveler x Gadwall (hybrid),Spatula clypeata x Mareca strepera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 383,species,falduc,Falcated Duck,Mareca falcata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 384,species,eurwig,Eurasian Wigeon,Mareca penelope,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 384.5,hybrid,x00723,Gadwall x Eurasian Wigeon (hybrid),Mareca strepera x penelope,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 386,species,amewig,American Wigeon,Mareca americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 386.2,hybrid,x00877,Wood Duck x American Wigeon (hybrid),Aix sponsa x Mareca americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 386.25,hybrid,x00777,Northern Shoveler x American Wigeon (hybrid),Spatula clypeata x Mareca americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 386.3,hybrid,x00724,Gadwall x American Wigeon (hybrid),Mareca strepera x americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 386.5,hybrid,x00421,Eurasian x American Wigeon (hybrid),Mareca penelope x americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 388.7,slash,y00670,Eurasian/American Wigeon,Mareca penelope/americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 389,species,chiwig1,Chiloe Wigeon,Mareca sibilatrix,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 391,species,afbduc1,African Black Duck,Anas sparsa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 392,species,yebduc1,Yellow-billed Duck,Anas undulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395,species,melduc1,Meller's Duck,Anas melleri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395.1,species,pabduc1,Pacific Black Duck,Anas superciliosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395.2,species,layduc,Laysan Duck,Anas laysanensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395.3,species,hawduc,Hawaiian Duck,Anas wyvilliana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395.4,species,phiduc1,Philippine Duck,Anas luzonica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395.5,species,isbduc1,Indian Spot-billed Duck,Anas poecilorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395.6,species,spbduc,Eastern Spot-billed Duck,Anas zonorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 395.7,slash,y00830,Indian/Eastern Spot-billed Duck,Anas poecilorhyncha/zonorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 396,species,mallar,Mallard,Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 397,issf,mallar3,Mallard (Northern),Anas platyrhynchos platyrhynchos/conboschas,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,mallar 400,issf,mexduc,Mallard (Mexican),Anas platyrhynchos diazi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,mallar 401,intergrade,mallar4,Mallard (Mexican intergrade),Anas platyrhynchos platyrhynchos x diazi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,mallar 402,domestic,mallar2,Mallard (Domestic type),Anas platyrhynchos (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 402.1,hybrid,mdxmal1,Muscovy Duck x Mallard (hybrid),Cairina moschata x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 402.2,hybrid,x00205,Wood Duck x Mallard (hybrid),Aix sponsa x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 402.3,hybrid,x00612,Northern Shoveler x Mallard (hybrid),Spatula clypeata x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 402.4,hybrid,x00420,Gadwall x Mallard (hybrid),Mareca strepera x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 402.6,hybrid,x00647,Eurasian Wigeon x Mallard (hybrid),Mareca penelope x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 402.8,hybrid,x00611,American Wigeon x Mallard (hybrid),Mareca americana x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 406,hybrid,x00760,Yellow-billed Duck x Mallard (hybrid),Anas undulata x platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 406.1,hybrid,x00458,Mallard x Pacific Black Duck (hybrid),Anas platyrhynchos x superciliosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 406.2,hybrid,x00834,Mallard x Indian Spot-billed Duck (hybrid),Anas platyrhynchos x poecilorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 406.3,hybrid,x00835,Mallard x Eastern Spot-billed Duck (hybrid),Anas platyrhynchos x zonorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 406.5,hybrid,x00423,Mallard x Hawaiian Duck (hybrid),Anas platyrhynchos x wyvilliana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 407,species,ambduc,American Black Duck,Anas rubripes,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 407.2,hybrid,x00004,Mallard x American Black Duck (hybrid),Anas platyrhynchos x rubripes,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 407.5,slash,y00600,Mallard/American Black Duck,Anas platyrhynchos/rubripes,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 409,species,motduc,Mottled Duck,Anas fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 410,issf,motduc1,Mottled Duck (Florida),Anas fulvigula fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,motduc 411,issf,motduc2,Mottled Duck (Gulf Coast),Anas fulvigula maculosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,motduc 411.5,hybrid,x00422,Mallard x Mottled Duck (hybrid),Anas platyrhynchos x fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 411.6,slash,y00632,Mallard/Mottled Duck,Anas platyrhynchos/fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 411.65,slash,y00633,American Black/Mottled Duck,Anas rubripes/fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 439.9,species,captea1,Cape Teal,Anas capensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 440,species,whcpin,White-cheeked Pintail,Anas bahamensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 441,issf,whcpin1,White-cheeked Pintail (White-cheeked),Anas bahamensis bahamensis/rubrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,whcpin 444,issf,whcpin2,White-cheeked Pintail (Galapagos),Anas bahamensis galapagensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,whcpin 444.2,hybrid,x00778,Mallard x White-cheeked Pintail (hybrid),Anas platyrhynchos x bahamensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 445,species,rebduc1,Red-billed Duck,Anas erythrorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 446,species,norpin,Northern Pintail,Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 446.1,hybrid,x00837,Baikal Teal x Northern Pintail (hybrid),Sibirionetta formosa x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 446.3,hybrid,x00610,Gadwall x Northern Pintail (hybrid),Mareca strepera x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 446.5,hybrid,x00761,Eurasian Wigeon x Northern Pintail (hybrid),Mareca penelope x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 446.6,hybrid,x00196,American Wigeon x Northern Pintail (hybrid),Mareca americana x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 446.8,hybrid,x00628,Mallard x Northern Pintail (hybrid),Anas platyrhynchos x acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 446.9,hybrid,x00674,American Black Duck x Northern Pintail (hybrid),Anas rubripes x acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 447,species,eatpin1,Eaton's Pintail,Anas eatoni,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 450,species,yebpin1,Yellow-billed Pintail,Anas georgica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 451,issf,yebpin2,Yellow-billed Pintail (South Georgia),Anas georgica georgica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebpin1 452,issf,yebpin3,Yellow-billed Pintail (South American),Anas georgica spinicauda/niceforoi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebpin1 462,species,gnwtea,Green-winged Teal,Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 463,issf,egwtea1,Green-winged Teal (Eurasian),Anas crecca crecca/nimia,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gnwtea 467,issf,agwtea1,Green-winged Teal (American),Anas crecca carolinensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gnwtea 467.5,intergrade,gnwtea1,Green-winged Teal (intergrade),Anas crecca crecca/nimia x carolinensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gnwtea 467.55,slash,y00766,Garganey/Green-winged Teal,Spatula querquedula/Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 467.6,hybrid,x00673,Blue-winged x Green-winged Teal (hybrid),Spatula discors x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 467.8,hybrid,x00763,Cinnamon x Green-winged Teal (hybrid),Spatula cyanoptera x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 467.9,hybrid,x00762,Gadwall x Green-winged Teal (hybrid),Mareca strepera x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 467.93,hybrid,x00646,American Wigeon x Green-winged Teal (hybrid),Mareca americana x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 467.95,hybrid,x00670,Mallard x Green-winged Teal (hybrid),Anas platyrhynchos x crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 467.97,hybrid,x00725,Northern Pintail x Green-winged Teal (hybrid),Anas acuta x crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 468,species,spetea3,Andean Teal,Anas andium,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 469,issf,andtea2,Andean Teal (Merida),Anas andium altipetens,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spetea3 470,issf,andtea3,Andean Teal (Andean),Anas andium andium,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spetea3 471,species,yebtea1,Yellow-billed Teal,Anas flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 472,issf,spetea2,Yellow-billed Teal (flavirostris),Anas flavirostris flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebtea1 473,issf,spetea4,Yellow-billed Teal (oxyptera),Anas flavirostris oxyptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebtea1 474,slash,spetea1,Andean/Yellow-billed Teal,Anas andium/flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 476.5,species,andtea1,Andaman Teal,Anas albogularis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 477,species,suntea1,Sunda Teal,Anas gibberifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 481,species,gretea1,Gray Teal,Anas gracilis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 482,species,chetea1,Chestnut Teal,Anas castanea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 482.5,species,bertea1,Bernier's Teal,Anas bernieri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 483,species,auitea1,Auckland Islands Teal,Anas aucklandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 484,species,caitea1,Campbell Islands Teal,Anas nesiotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 485,species,brotea1,Brown Teal,Anas chlorotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 485.2,hybrid,x00878,Mallard x Brown Teal (hybrid),Anas platyrhynchos x chlorotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 486,spuh,teal,teal sp.,Anas sp. (teal sp.),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 487,spuh,dabduc1,dabbling duck sp.,Anas sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 488,species,pieduc1,Pink-eared Duck,Malacorhynchus membranaceus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 489,species,martea1,Marbled Teal,Marmaronetta angustirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 490,species,pihduc1,Pink-headed Duck,Rhodonessa caryophyllacea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 490.5,species,whwduc1,White-winged Duck,Asarcornis scutulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 491,species,recpoc,Red-crested Pochard,Netta rufina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 491.5,hybrid,x00648,Mallard x Red-crested Pochard (hybrid),Anas platyrhynchos x Netta rufina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 492,species,soupoc1,Southern Pochard,Netta erythrophthalma,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 495,species,robpoc1,Rosy-billed Pochard,Netta peposaca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 496,species,canvas,Canvasback,Aythya valisineria,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 497,species,redhea,Redhead,Aythya americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 497.2,hybrid,x00879,Mallard x Redhead (hybrid),Anas platyrhynchos x Aythya americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 497.3,hybrid,x00684,Canvasback x Redhead (hybrid),Aythya valisineria x americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 498,species,compoc,Common Pochard,Aythya ferina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 499,species,rinduc,Ring-necked Duck,Aythya collaris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 499.2,hybrid,x00880,Canvasback x Ring-necked Duck (hybrid),Aythya valisineria x collaris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 500,hybrid,x00679,Redhead x Ring-necked Duck (hybrid),Aythya americana x collaris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 502,species,ferduc,Ferruginous Duck,Aythya nyroca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 502.5,hybrid,x00764,Common Pochard x Ferruginous Duck (hybrid),Aythya ferina x nyroca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 503,species,madpoc1,Madagascar Pochard,Aythya innotata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 504,species,baepoc1,Baer's Pochard,Aythya baeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 504.2,hybrid,x00838,Ferruginous Duck x Baer's Pochard (hybrid),Aythya nyroca x baeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 504.5,slash,y00709,Ferruginous Duck/Baer's Pochard,Aythya nyroca/baeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 505,species,wheduc1,White-eyed Duck,Aythya australis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 506,species,tufduc,Tufted Duck,Aythya fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 506.3,hybrid,x00683,Common Pochard x Tufted Duck (hybrid),Aythya ferina x fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 506.5,hybrid,x00652,Ring-necked x Tufted Duck (hybrid),Aythya collaris x fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 506.7,hybrid,x00839,Ferruginous x Tufted Duck (hybrid),Aythya nyroca x fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 507,species,nezsca1,New Zealand Scaup,Aythya novaeseelandiae,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 508,species,gresca,Greater Scaup,Aythya marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 510.3,hybrid,x00680,Redhead x Greater Scaup (hybrid),Aythya americana x marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 510.4,hybrid,x00779,Ring-necked Duck x Greater Scaup (hybrid),Aythya collaris x marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 510.5,hybrid,x00654,Tufted Duck x Greater Scaup (hybrid),Aythya fuligula x marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 511,species,lessca,Lesser Scaup,Aythya affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 511.2,hybrid,x00678,Redhead x Lesser Scaup (hybrid),Aythya americana x affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 511.3,hybrid,x00613,Ring-necked Duck x Lesser Scaup (hybrid),Aythya collaris x affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 511.6,hybrid,x00653,Tufted Duck x Lesser Scaup (hybrid),Aythya fuligula x affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 512,slash,scaup,Greater/Lesser Scaup,Aythya marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 512.2,hybrid,x00681,Redhead x scaup sp. (hybrid),Aythya americana x marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 512.3,hybrid,x00682,Ring-necked Duck x scaup sp. (hybrid),Aythya collaris x marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 512.5,hybrid,tdxsca1,Tufted Duck x scaup sp. (hybrid),Aythya fuligula x marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 513,spuh,aythya1,Aythya sp.,Aythya sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 514,species,steeid,Steller's Eider,Polysticta stelleri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 515,species,speeid,Spectacled Eider,Somateria fischeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 516,species,kineid,King Eider,Somateria spectabilis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 517,species,comeid,Common Eider,Somateria mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 518,issf,comeid5,Common Eider (Eurasian),Somateria mollissima mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid 519,issf,comeid6,Common Eider (Faeroe Is.),Somateria mollissima faeroeensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid 520,issf,comeid1,Common Eider (Pacific),Somateria mollissima v-nigrum,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid 521,issf,comeid2,Common Eider (Dresser's),Somateria mollissima dresseri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid 522,issf,comeid3,Common Eider (Northern),Somateria mollissima borealis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid 523,issf,comeid4,Common Eider (Hudson Bay),Somateria mollissima sedentaria,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid 523.2,hybrid,x00881,Mallard x Common Eider (hybrid),Anas platyrhynchos x Somateria mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 524,slash,eider,King/Common Eider,Somateria spectabilis/mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 524.5,hybrid,x00665,King x Common Eider (hybrid),Somateria spectabilis x mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 525,spuh,eider1,eider sp.,Somateria sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 526,species,harduc,Harlequin Duck,Histrionicus histrionicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 529,species,labduc,Labrador Duck,Camptorhynchus labradorius,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 530,species,sursco,Surf Scoter,Melanitta perspicillata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 531,species,whwsco,White-winged Scoter,Melanitta fusca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 532,issf,whwsco3,White-winged Scoter (Velvet),Melanitta fusca fusca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,whwsco 533,issf,whwsco1,White-winged Scoter (Siberian),Melanitta fusca stejnegeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,whwsco 534,issf,whwsco2,White-winged Scoter (North American),Melanitta fusca deglandi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,whwsco 534.2,hybrid,x00882,Surf x White-winged Scoter (hybrid),Melanitta perspicillata x fusca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 536,species,blksco1,Common Scoter,Melanitta nigra,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 537,species,blksco2,Black Scoter,Melanitta americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 538,slash,dawsco,Surf/Black Scoter,Melanitta perspicillata/americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 538.5,slash,blksco,Common/Black Scoter,Melanitta nigra/americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 539,spuh,scoter,scoter sp.,Melanitta sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 540,species,lotduc,Long-tailed Duck,Clangula hyemalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 541,species,buffle,Bufflehead,Bucephala albeola,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 543,species,comgol,Common Goldeneye,Bucephala clangula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 546,hybrid,x00655,Bufflehead x Common Goldeneye (hybrid),Bucephala albeola x clangula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 548,species,bargol,Barrow's Goldeneye,Bucephala islandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 549,hybrid,cxbgol1,Common x Barrow's Goldeneye (hybrid),Bucephala clangula x islandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 551,slash,y00004,Common/Barrow's Goldeneye,Bucephala clangula/islandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 552,species,smew,Smew,Mergellus albellus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 553,species,hoomer,Hooded Merganser,Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 553.2,hybrid,x00202,Wood Duck x Hooded Merganser (hybrid),Aix sponsa x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 553.4,hybrid,x00424,Bufflehead x Hooded Merganser (hybrid),Bucephala albeola x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 553.6,hybrid,x00425,Common Goldeneye x Hooded Merganser (hybrid),Bucephala clangula x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 553.8,hybrid,x00426,Barrow's Goldeneye x Hooded Merganser (hybrid),Bucephala islandica x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 553.9,hybrid,x00631,goldeneye sp. x Hooded Merganser (hybrid),Bucephala clangula/islandica x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 554,species,auimer1,Auckland Islands Merganser,Mergus australis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 555,species,commer,Common Merganser,Mergus merganser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 556,issf,goosan1,Common Merganser (Eurasian),Mergus merganser merganser/orientalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,commer 559,issf,commer1,Common Merganser (North American),Mergus merganser americanus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,commer 559.2,hybrid,x00840,Common Eider x Common Merganser (hybrid),Somateria mollissima x Mergus merganser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 559.5,hybrid,x00726,Hooded x Common Merganser (hybrid),Lophodytes cucullatus x Mergus merganser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 560,species,bramer1,Brazilian Merganser,Mergus octosetaceus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 561,species,rebmer,Red-breasted Merganser,Mergus serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 561.5,hybrid,x00614,Ring-necked Duck x Red-breasted Merganser (hybrid),Aythya collaris x Mergus serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 561.7,hybrid,x00780,Common x Red-breasted Merganser (hybrid),Mergus merganser x serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 562,slash,y00224,Common/Red-breasted Merganser,Mergus merganser/serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 563,species,scsmer1,Scaly-sided Merganser,Mergus squamatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 564,spuh,mergan1,merganser sp.,Mergellus/Lophodytes/Mergus sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 565,species,blhduc1,Black-headed Duck,Heteronetta atricapilla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 566,species,masduc,Masked Duck,Nomonyx dominicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 567,species,rudduc,Ruddy Duck,Oxyura jamaicensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 568,issf,rudduc1,Ruddy Duck (Ruddy),Oxyura jamaicensis jamaicensis/andina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,rudduc 571,issf,rudduc2,Ruddy Duck (Andean),Oxyura jamaicensis ferruginea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,rudduc 571.5,slash,y00710,Masked/Ruddy Duck,Nomonyx dominicus/Oxyura jamaicensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 572,species,whhduc1,White-headed Duck,Oxyura leucocephala,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 572.5,hybrid,x00705,Ruddy x White-headed Duck (hybrid),Oxyura jamaicensis x leucocephala,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 573,species,macduc1,Maccoa Duck,Oxyura maccoa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 574,species,lakduc1,Lake Duck,Oxyura vittata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 575,slash,y00601,Ruddy/Lake Duck,Oxyura jamaicensis/vittata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 576,species,blbduc1,Blue-billed Duck,Oxyura australis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 577,species,musduc1,Musk Duck,Biziura lobata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 578,spuh,duck1,duck sp.,Anatinae sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 579,spuh,waterf1,waterfowl sp.,Anatidae sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, 580,species,ausbrt1,Australian Brushturkey,Alectura lathami,Galliformes,Megapodiidae (Megapodes),Megapodes, 583,species,watbrt1,Wattled Brushturkey,Aepypodius arfakianus,Galliformes,Megapodiidae (Megapodes),, 586,species,brubrt1,Waigeo Brushturkey,Aepypodius bruijnii,Galliformes,Megapodiidae (Megapodes),, 587,species,rebbrt1,Red-billed Brushturkey,Talegalla cuvieri,Galliformes,Megapodiidae (Megapodes),, 588,species,bkbbrt1,Yellow-legged Brushturkey,Talegalla fuscirostris,Galliformes,Megapodiidae (Megapodes),, 591,species,bncbrt1,Red-legged Brushturkey,Talegalla jobiensis,Galliformes,Megapodiidae (Megapodes),, 593,spuh,talega1,Talegalla sp.,Talegalla sp.,Galliformes,Megapodiidae (Megapodes),, 594,species,mallee1,Malleefowl,Leipoa ocellata,Galliformes,Megapodiidae (Megapodes),, 595,species,maleo1,Maleo,Macrocephalon maleo,Galliformes,Megapodiidae (Megapodes),, 596,species,molscr1,Moluccan Scrubfowl,Eulipoa wallacei,Galliformes,Megapodiidae (Megapodes),, 597,species,niuscr1,Niuafoou Scrubfowl,Megapodius pritchardii,Galliformes,Megapodiidae (Megapodes),, 598,species,micscr1,Micronesian Scrubfowl,Megapodius laperouse,Galliformes,Megapodiidae (Megapodes),, 601,species,nicscr1,Nicobar Scrubfowl,Megapodius nicobariensis,Galliformes,Megapodiidae (Megapodes),, 604,species,tabscr1,Tabon Scrubfowl,Megapodius cumingii,Galliformes,Megapodiidae (Megapodes),, 610,species,sulscr1,Sula Scrubfowl,Megapodius bernsteinii,Galliformes,Megapodiidae (Megapodes),, 611,species,tanscr1,Tanimbar Scrubfowl,Megapodius tenimberensis,Galliformes,Megapodiidae (Megapodes),, 612,species,dusscr2,Dusky Scrubfowl,Megapodius freycinet,Galliformes,Megapodiidae (Megapodes),, 614,species,dusscr3,Biak Scrubfowl,Megapodius geelvinkianus,Galliformes,Megapodiidae (Megapodes),, 615,species,forscr1,Forsten's Scrubfowl,Megapodius forsteni,Galliformes,Megapodiidae (Megapodes),, 616,species,melscr1,Melanesian Scrubfowl,Megapodius eremita,Galliformes,Megapodiidae (Megapodes),, 617,species,vanscr1,Vanuatu Scrubfowl,Megapodius layardi,Galliformes,Megapodiidae (Megapodes),, 618,species,negscr1,New Guinea Scrubfowl,Megapodius decollatus,Galliformes,Megapodiidae (Megapodes),, 619,species,orfscr1,Orange-footed Scrubfowl,Megapodius reinwardt,Galliformes,Megapodiidae (Megapodes),, 626,species,placha,Plain Chachalaca,Ortalis vetula,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)","Chachalacas, Guans, and Curassows", 631,species,grhcha1,Gray-headed Chachalaca,Ortalis cinereiceps,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 632,species,chwcha1,Chestnut-winged Chachalaca,Ortalis garrula,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 633,species,ruvcha1,Rufous-vented Chachalaca,Ortalis ruficauda,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 634,issf,ruvcha2,Rufous-vented Chachalaca (Rufous-vented),Ortalis ruficauda ruficrissa,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,ruvcha1 635,issf,ruvcha3,Rufous-vented Chachalaca (Rufous-tipped),Ortalis ruficauda ruficauda,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,ruvcha1 636,species,ruhcha1,Rufous-headed Chachalaca,Ortalis erythroptera,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 637,species,rubcha1,Rufous-bellied Chachalaca,Ortalis wagleri,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 638,species,wemcha1,West Mexican Chachalaca,Ortalis poliocephala,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 639,species,chacha1,Chaco Chachalaca,Ortalis canicollis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 642,species,whbcha1,White-bellied Chachalaca,Ortalis leucogastra,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 642.5,species,colcha1,Colombian Chachalaca,Ortalis columbiana,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 643.5,species,specha3,Speckled Chachalaca,Ortalis guttata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 647,species,specha2,East Brazilian Chachalaca,Ortalis araucuan,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 648,species,specha4,Scaled Chachalaca,Ortalis squamata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 649,species,varcha1,Variable Chachalaca,Ortalis motmot,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 649.3,issf,varcha2,Variable Chachalaca (Little),Ortalis motmot motmot,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,varcha1 649.5,issf,varcha3,Variable Chachalaca (Chestnut-headed),Ortalis motmot ruficeps,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,varcha1 652,species,bubcha1,Buff-browed Chachalaca,Ortalis superciliaris,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 652.5,spuh,chacha2,chachalaca sp.,Ortalis sp.,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 653,species,batgua1,Band-tailed Guan,Penelope argyrotis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 657,species,beagua1,Bearded Guan,Penelope barbata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 658,species,baugua1,Baudo Guan,Penelope ortoni,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 659,species,andgua1,Andean Guan,Penelope montagnii,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 665,species,margua1,Marail Guan,Penelope marail,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 668,species,rumgua1,Rusty-margined Guan,Penelope superciliaris,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 672,species,refgua1,Red-faced Guan,Penelope dabbenei,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 673,species,spigua1,Spix's Guan,Penelope jacquacu,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 674,issf,spigua3,Spix's Guan (Grant's),Penelope jacquacu granti,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,spigua1 674.5,issf,spigua2,Spix's Guan (Spix's),Penelope jacquacu [jacquacu Group],Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,spigua1 677.5,slash,y00657,Marail/Spix's Guan,Penelope marail/jacquacu,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 678,species,cregua1,Crested Guan,Penelope purpurascens,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 682,species,caugua1,Cauca Guan,Penelope perspicax,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 683,species,whwgua1,White-winged Guan,Penelope albipennis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 684,species,dulgua1,Dusky-legged Guan,Penelope obscura,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 685,issf,dulgua2,Dusky-legged Guan (Dusky-legged),Penelope obscura obscura/bronzina,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,dulgua1 686,issf,dulgua3,Dusky-legged Guan (Bridges's),Penelope obscura bridgesi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,dulgua1 688,species,whcgua1,White-crested Guan,Penelope pileata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 689,species,chbgua1,Chestnut-bellied Guan,Penelope ochrogaster,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 690,species,whbgua1,White-browed Guan,Penelope jacucaca,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 690.5,spuh,penelo1,Penelope sp.,Penelope sp.,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 691,species,trpgua1,Trinidad Piping-Guan,Pipile pipile,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 692,species,btpgua1,Blue-throated Piping-Guan,Pipile cumanensis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 693,issf,butpig1,Blue-throated Piping-Guan (Blue-throated),Pipile cumanensis cumanensis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,btpgua1 694,issf,butpig2,Blue-throated Piping-Guan (White-throated),Pipile cumanensis grayi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,btpgua1 695,species,rtpgua1,Red-throated Piping-Guan,Pipile cujubi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 696,issf,retpig1,Red-throated Piping-Guan (Gray-crested),Pipile cujubi cujubi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,rtpgua1 697,issf,retpig2,Red-throated Piping-Guan (White-crested),Pipile cujubi nattereri,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,rtpgua1 697.5,slash,y00831,Blue-throated/Red-throated Piping-Guan,Pipile cumanensis/cujubi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 698,species,bfpgua1,Black-fronted Piping-Guan,Pipile jacutinga,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 699,species,watgua1,Wattled Guan,Aburria aburri,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 700,species,blagua1,Black Guan,Chamaepetes unicolor,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 701,species,siwgua1,Sickle-winged Guan,Chamaepetes goudotii,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 708,species,higgua1,Highland Guan,Penelopina nigra,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 709,species,horgua1,Horned Guan,Oreophasis derbianus,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 710,species,noccur1,Nocturnal Curassow,Nothocrax urumutum,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 711,species,crecur2,Crestless Curassow,Mitu tomentosum,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 712,species,salcur1,Salvin's Curassow,Mitu salvini,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 713,species,rabcur2,Razor-billed Curassow,Mitu tuberosum,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 714,species,alacur1,Alagoas Curassow,Mitu mitu,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 715,species,helcur1,Helmeted Curassow,Pauxi pauxi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 719,species,horcur2,Sira Curassow,Pauxi koepckeae,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 720,species,horcur3,Horned Curassow,Pauxi unicornis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 721,species,grecur1,Great Curassow,Crax rubra,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 724,species,bubcur1,Blue-billed Curassow,Crax alberti,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 725,species,yekcur1,Yellow-knobbed Curassow,Crax daubentoni,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 726,species,blacur1,Black Curassow,Crax alector,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 729,species,watcur1,Wattled Curassow,Crax globulosa,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 730,species,bafcur1,Bare-faced Curassow,Crax fasciolata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 730.2,issf,bafcur2,Bare-faced Curassow (Belem),Crax fasciolata pinima,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,bafcur1 730.4,issf,bafcur3,Bare-faced Curassow (Bare-faced),Crax fasciolata fasciolata/grayi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,bafcur1 734,species,rebcur1,Red-billed Curassow,Crax blumenbachii,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 734.5,spuh,curass1,curassow sp.,Cracidae sp. (curassow sp.),Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 734.7,spuh,cracid1,Cracidae sp.,Cracidae sp.,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, 737,species,helgui,Helmeted Guineafowl,Numida meleagris,Galliformes,Numididae (Guineafowl),"Grouse, Quail, and Allies", 738,issf,helgui2,Helmeted Guineafowl (Moroccan),Numida meleagris sabyi,Galliformes,Numididae (Guineafowl),,helgui 738.2,issf,helgui4,Helmeted Guineafowl (West African),Numida meleagris galeatus,Galliformes,Numididae (Guineafowl),,helgui 738.5,issf,helgui3,Helmeted Guineafowl (Helmeted),Numida meleagris meleagris/somaliensis,Galliformes,Numididae (Guineafowl),,helgui 738.7,issf,helgui5,Helmeted Guineafowl (Reichenow's),Numida meleagris reichenowi,Galliformes,Numididae (Guineafowl),,helgui 738.8,issf,helgui6,Helmeted Guineafowl (Tufted),Numida meleagris [mitratus Group],Galliformes,Numididae (Guineafowl),,helgui 738.9,domestic,helgui1,Helmeted Guineafowl (Domestic type),Numida meleagris (Domestic type),Galliformes,Numididae (Guineafowl),, 739,species,whbgui1,White-breasted Guineafowl,Agelastes meleagrides,Galliformes,Numididae (Guineafowl),, 740,species,blagui1,Black Guineafowl,Agelastes niger,Galliformes,Numididae (Guineafowl),, 741,species,vulgui1,Vulturine Guineafowl,Acryllium vulturinum,Galliformes,Numididae (Guineafowl),, 742,species,plugui1,Plumed Guineafowl,Guttera plumifera,Galliformes,Numididae (Guineafowl),, 743,species,cregui1,Crested Guineafowl,Guttera pucherani,Galliformes,Numididae (Guineafowl),, 744,issf,cregui3,Crested Guineafowl (Kenya),Guttera pucherani pucherani,Galliformes,Numididae (Guineafowl),,cregui1 745,issf,cregui2,Crested Guineafowl (Western),Guttera pucherani verreauxi/sclateri,Galliformes,Numididae (Guineafowl),,cregui1 746,issf,cregui4,Crested Guineafowl (Southern),Guttera pucherani edouardi/barbata,Galliformes,Numididae (Guineafowl),,cregui1 756.2,species,stopar1,Stone Partridge,Ptilopachus petrosus,Galliformes,Odontophoridae (New World Quail),, 756.4,issf,stopar2,Stone Partridge (Stone),Ptilopachus petrosus petrosus,Galliformes,Odontophoridae (New World Quail),,stopar1 756.6,issf,stopar3,Stone Partridge (Ethiopian),Ptilopachus petrosus major,Galliformes,Odontophoridae (New World Quail),,stopar1 756.8,species,nahfra2,Nahan's Francolin,Ptilopachus nahani,Galliformes,Odontophoridae (New World Quail),, 756.83,species,tafqua1,Tawny-faced Quail,Rhynchortyx cinctus,Galliformes,Odontophoridae (New World Quail),, 768,species,mouqua,Mountain Quail,Oreortyx pictus,Galliformes,Odontophoridae (New World Quail),, 769,species,bewpar1,Bearded Wood-Partridge,Dendrortyx barbatus,Galliformes,Odontophoridae (New World Quail),, 770,species,ltwpar1,Long-tailed Wood-Partridge,Dendrortyx macroura,Galliformes,Odontophoridae (New World Quail),, 771,species,bcwpar1,Buffy-crowned Wood-Partridge,Dendrortyx leucophrys,Galliformes,Odontophoridae (New World Quail),, 772,species,banqua1,Banded Quail,Philortyx fasciatus,Galliformes,Odontophoridae (New World Quail),, 773,species,norbob,Northern Bobwhite,Colinus virginianus,Galliformes,Odontophoridae (New World Quail),, 773.1,issf,norbob1,Northern Bobwhite (Eastern),Colinus virginianus [virginianus Group],Galliformes,Odontophoridae (New World Quail),,norbob 773.2,issf,norbob2,Northern Bobwhite (graysoni),Colinus virginianus graysoni/nigripectus,Galliformes,Odontophoridae (New World Quail),,norbob 773.3,issf,norbob3,Northern Bobwhite (pectoralis),Colinus virginianus [pectoralis Group],Galliformes,Odontophoridae (New World Quail),,norbob 773.4,issf,masbob1,Northern Bobwhite (Masked),Colinus virginianus [coyoleos Group],Galliformes,Odontophoridae (New World Quail),,norbob 773.5,species,bltbob1,Black-throated Bobwhite,Colinus nigrogularis,Galliformes,Odontophoridae (New World Quail),, 773.6,species,crebob1,Crested Bobwhite,Colinus cristatus,Galliformes,Odontophoridae (New World Quail),, 773.7,issf,crebob2,Crested Bobwhite (Spot-bellied),Colinus cristatus [leucopogon Group],Galliformes,Odontophoridae (New World Quail),,crebob1 773.8,issf,crebob3,Crested Bobwhite (Crested),Colinus cristatus [cristatus Group],Galliformes,Odontophoridae (New World Quail),,crebob1 775,species,scaqua,Scaled Quail,Callipepla squamata,Galliformes,Odontophoridae (New World Quail),, 775.5,hybrid,x00688,Northern Bobwhite x Scaled Quail (hybrid),Colinus virginianus x Callipepla squamata,Galliformes,Odontophoridae (New World Quail),, 780,species,elequa,Elegant Quail,Callipepla douglasii,Galliformes,Odontophoridae (New World Quail),, 786,species,calqua,California Quail,Callipepla californica,Galliformes,Odontophoridae (New World Quail),, 795,hybrid,x00687,Scaled x California Quail (hybrid),Callipepla squamata x californica,Galliformes,Odontophoridae (New World Quail),, 796,species,gamqua,Gambel's Quail,Callipepla gambelii,Galliformes,Odontophoridae (New World Quail),, 796.1,hybrid,x00689,Scaled x Gambel's Quail (hybrid),Callipepla squamata x gambelii,Galliformes,Odontophoridae (New World Quail),, 796.2,hybrid,y00315,California x Gambel's Quail (hybrid),Callipepla californica x gambelii,Galliformes,Odontophoridae (New World Quail),, 796.3,slash,y00711,California/Gambel's Quail,Callipepla californica/gambelii,Galliformes,Odontophoridae (New World Quail),, 805,species,monqua,Montezuma Quail,Cyrtonyx montezumae,Galliformes,Odontophoridae (New World Quail),, 810,issf,monqua1,Montezuma Quail (Montezuma),Cyrtonyx montezumae [montezumae Group],Galliformes,Odontophoridae (New World Quail),,monqua 815,issf,monqua2,Montezuma Quail (Salle's),Cyrtonyx montezumae sallei/rowleyi,Galliformes,Odontophoridae (New World Quail),,monqua 820,species,ocequa1,Ocellated Quail,Cyrtonyx ocellatus,Galliformes,Odontophoridae (New World Quail),, 825,species,sinqua1,Singing Quail,Dactylortyx thoracicus,Galliformes,Odontophoridae (New World Quail),, 859,species,mawqua1,Marbled Wood-Quail,Odontophorus gujanensis,Galliformes,Odontophoridae (New World Quail),, 868,species,swwqua1,Spot-winged Wood-Quail,Odontophorus capueira,Galliformes,Odontophoridae (New World Quail),, 871,species,bewqua1,Black-eared Wood-Quail,Odontophorus melanotis,Galliformes,Odontophoridae (New World Quail),, 874,species,bfwqua1,Black-fronted Wood-Quail,Odontophorus atrifrons,Galliformes,Odontophoridae (New World Quail),, 878,species,rfwqua1,Rufous-fronted Wood-Quail,Odontophorus erythrops,Galliformes,Odontophoridae (New World Quail),, 881,species,chwqua1,Chestnut Wood-Quail,Odontophorus hyperythrus,Galliformes,Odontophoridae (New World Quail),, 882,species,dbwqua1,Dark-backed Wood-Quail,Odontophorus melanonotus,Galliformes,Odontophoridae (New World Quail),, 883,species,rbwqua1,Rufous-breasted Wood-Quail,Odontophorus speciosus,Galliformes,Odontophoridae (New World Quail),, 887,species,tawqua1,Tacarcuna Wood-Quail,Odontophorus dialeucos,Galliformes,Odontophoridae (New World Quail),, 888,species,gowqua1,Gorgeted Wood-Quail,Odontophorus strophium,Galliformes,Odontophoridae (New World Quail),, 889,species,venwoq1,Venezuelan Wood-Quail,Odontophorus columbianus,Galliformes,Odontophoridae (New World Quail),, 890,species,bbwqua1,Black-breasted Wood-Quail,Odontophorus leucolaemus,Galliformes,Odontophoridae (New World Quail),, 891,species,sfwqua1,Stripe-faced Wood-Quail,Odontophorus balliviani,Galliformes,Odontophoridae (New World Quail),, 892,species,stwqua1,Starred Wood-Quail,Odontophorus stellatus,Galliformes,Odontophoridae (New World Quail),, 893,species,spwqua1,Spotted Wood-Quail,Odontophorus guttatus,Galliformes,Odontophoridae (New World Quail),, 894,spuh,wood-q1,wood-quail sp.,Odontophorus sp.,Galliformes,Odontophoridae (New World Quail),, 926,spuh,quail1,new world quail sp.,Odontophoridae sp.,Galliformes,Odontophoridae (New World Quail),, 927,species,udzpar1,Udzungwa Partridge,Xenoperdix udzungwensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 928,issf,udzpar3,Udzungwa Partridge (Udzungwa),Xenoperdix udzungwensis udzungwensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,udzpar1 931,issf,udzpar2,Udzungwa Partridge (Rubeho),Xenoperdix udzungwensis obscurata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,udzpar1 932,species,ferpar2,Ferruginous Partridge,Caloperdix oculeus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 947,species,crepar1,Crested Partridge,Rollulus rouloul,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 947.5,species,blapar2,Black Partridge,Melanoperdix niger,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 948,species,hilpar1,Hill Partridge,Arborophila torqueola,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 949,species,sicpar1,Sichuan Partridge,Arborophila rufipectus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 952.5,species,chbpar2,Chestnut-breasted Partridge,Arborophila mandellii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 952.7,species,whnpar2,White-necklaced Partridge,Arborophila gingica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 953,species,rutpar1,Rufous-throated Partridge,Arborophila rufogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 954,species,whcpar1,White-cheeked Partridge,Arborophila atrogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 959,species,taipar1,Taiwan Partridge,Arborophila crudigularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 960,species,haipar1,Hainan Partridge,Arborophila ardens,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 961,species,chbpar1,Chestnut-bellied Partridge,Arborophila javanica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 963,species,gybpar3,Malaysian Partridge,Arborophila campbelli,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 966,species,gybpar5,Roll's Partridge,Arborophila rolli,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 967,species,gybpar6,Sumatran Partridge,Arborophila sumatrana,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 967.2,slash,y01018,Roll's/Sumatran Partridge,Arborophila rolli/sumatrana,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 972,species,gybpar4,Gray-breasted Partridge,Arborophila orientalis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 978,species,babpar1,Bar-backed Partridge,Arborophila brunneopectus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 982,species,ornpar1,Orange-necked Partridge,Arborophila davidi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 983,species,chhpar1,Chestnut-headed Partridge,Arborophila cambodiana,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 983.4,issf,chhpar3,Chestnut-headed Partridge (Siamese),Arborophila cambodiana diversa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chhpar1 987,issf,chhpar2,Chestnut-headed Partridge (Chestnut-headed),Arborophila cambodiana cambodiana/chandamonyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chhpar1 988,species,rebpar5,Red-breasted Partridge,Arborophila hyperythra,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 988.4,species,rebpar3,Red-billed Partridge,Arborophila rubrirostris,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 991,species,scbpar1,Scaly-breasted Partridge,Arborophila chloropus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 993,species,chnpar1,Chestnut-necklaced Partridge,Arborophila charltonii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 993.2,issf,chnpar2,Chestnut-necklaced Partridge (Chestnut-necklaced),Arborophila charltonii charltonii/atjenensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chnpar1 993.4,issf,chnpar3,Chestnut-necklaced Partridge (Sabah),Arborophila charltonii graydoni,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chnpar1 996,spuh,arboro1,Arborophila sp.,Arborophila sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 996.5,species,lobpar1,Long-billed Partridge,Rhizothera longirostris,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 997,issf,lobpar3,Long-billed Partridge (Long-billed),Rhizothera longirostris longirostris,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,lobpar1 1002,issf,lobpar2,Long-billed Partridge (Hose's),Rhizothera longirostris dulitensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,lobpar1 1004,species,crearg1,Crested Argus,Rheinardia ocellata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1007,species,grearg1,Great Argus,Argusianus argus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1008,species,compea,Indian Peafowl,Pavo cristatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1011,domestic,indpea1,Indian Peafowl (Domestic type),Pavo cristatus (Domestic type),Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1014,species,grepea1,Green Peafowl,Pavo muticus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1014.1,species,conpea1,Congo Peacock,Afropavo congensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1017,species,crhpar1,Crimson-headed Partridge,Haematortyx sanguiniceps,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1018,species,redspu1,Red Spurfowl,Galloperdix spadicea,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1019,species,paispu1,Painted Spurfowl,Galloperdix lunulata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1020,slash,y00768,Red/Painted Spurfowl,Galloperdix spadicea/lunulata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1021,species,ceyspu1,Sri Lanka Spurfowl,Galloperdix bicalcarata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1023,species,palpep1,Palawan Peacock-Pheasant,Polyplectron napoleonis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1024,species,mapphe1,Malayan Peacock-Pheasant,Polyplectron malacense,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1027,species,bopphe1,Bornean Peacock-Pheasant,Polyplectron schleiermacheri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1034,species,gepphe1,Germain's Peacock-Pheasant,Polyplectron germaini,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1038,species,grypep3,Hainan Peacock-Pheasant,Polyplectron katsumatae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1041,species,mopphe1,Mountain Peacock-Pheasant,Polyplectron inopinatum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1042,species,btpphe1,Bronze-tailed Peacock-Pheasant,Polyplectron chalcurum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1043,species,grypep2,Gray Peacock-Pheasant,Polyplectron bicalcaratum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1044,species,sespar1,See-see Partridge,Ammoperdix griseogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1045,species,sanpar1,Sand Partridge,Ammoperdix heyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1046,species,broqua1,Brown Quail,Synoicus ypsilophorus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1047,species,blbqua1,Blue-breasted Quail,Synoicus chinensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1048,species,bluqua1,Blue Quail,Synoicus adansonii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1049,species,snmqua2,Snow Mountain Quail,Anurophasis monorthonyx,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1050,species,madpar2,Madagascar Partridge,Margaroperdix madagarensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1051,species,japqua,Japanese Quail,Coturnix japonica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1052,species,comqua1,Common Quail,Coturnix coturnix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1052.2,species,harqua1,Harlequin Quail,Coturnix delegorguei,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1054.4,species,raiqua1,Rain Quail,Coturnix coromandelica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1057,slash,y00935,Common/Rain Quail,Coturnix coturnix/coromandelica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1058,species,stuqua1,Stubble Quail,Coturnix pectoralis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1059,species,nezqua1,New Zealand Quail,Coturnix novaezelandiae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1060,spuh,coturn1,old world quail sp.,Synoicus/Coturnix sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1063,species,rocpar2,Rock Partridge,Alectoris graeca,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1064,issf,rocpar3,Rock Partridge (European),Alectoris graeca [graeca Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rocpar2 1065,issf,rocpar4,Rock Partridge (Sicilian),Alectoris graeca whitakeri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rocpar2 1066,species,chukar,Chukar,Alectoris chukar,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1067,species,phipar1,Philby's Partridge,Alectoris philbyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1068,species,przpar1,Przevalski's Partridge,Alectoris magna,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1069,species,relpar1,Red-legged Partridge,Alectoris rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1069.5,hybrid,x00640,Rock x Red-legged Partridge (hybrid),Alectoris graeca x rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1070,slash,y00767,Rock/Red-legged Partridge,Alectoris graeca/rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1071,species,arapar1,Arabian Partridge,Alectoris melanocephala,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1076,species,barpar2,Barbary Partridge,Alectoris barbara,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1084,species,causno1,Caucasian Snowcock,Tetraogallus caucasicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1087,species,cassno1,Caspian Snowcock,Tetraogallus caspius,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1091,species,altsno1,Altai Snowcock,Tetraogallus altaicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1092,species,tibsno1,Tibetan Snowcock,Tetraogallus tibetanus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1093,species,himsno,Himalayan Snowcock,Tetraogallus himalayensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1093.5,slash,y00936,Tibetan/Himalayan Snowcock,Tetraogallus tibetanus/himalayensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1094,species,jubqua1,Jungle Bush-Quail,Perdicula asiatica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1095,species,robqua1,Rock Bush-Quail,Perdicula argoondah,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1098,slash,y00712,Jungle/Rock Bush-Quail,Perdicula asiatica/argoondah,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1099,species,pabqua1,Painted Bush-Quail,Perdicula erythrorhyncha,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1100,species,mabqua1,Manipur Bush-Quail,Perdicula manipurensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1105,species,himqua1,Himalayan Quail,Ophrysia superciliosa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1106,species,harfra3,Hartlaub's Francolin,Pternistis hartlaubi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1107,species,hanfra2,Handsome Francolin,Pternistis nobilis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1118,species,camfra2,Cameroon Francolin,Pternistis camerunensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1129,species,chnfra2,Chestnut-naped Francolin,Pternistis castaneicollis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1130,issf,chnfra1,Chestnut-naped Francolin (Chestnut-naped),Pternistis castaneicollis castaneicollis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chnfra2 1131,issf,chnfra3,Chestnut-naped Francolin (Black-fronted),Pternistis castaneicollis atrifrons,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chnfra2 1132,species,ercfra,Erckel's Francolin,Pternistis erckelii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1137,species,djifra1,Djibouti Francolin,Pternistis ochropectus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1140.5,species,dosfra2,Double-spurred Francolin,Pternistis bicalcaratus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1141,species,heufra1,Heuglin's Francolin,Pternistis icterorhynchus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1144,species,ahafra2,Ahanta Francolin,Pternistis ahantensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1144.2,species,gysfra1,Gray-striped Francolin,Pternistis griseostriatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1147,species,scafra2,Scaly Francolin,Pternistis squamatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1148,species,rebfra1,Red-billed Francolin,Pternistis adspersus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1149,species,capfra2,Cape Francolin,Pternistis capensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1150,species,natfra2,Natal Francolin,Pternistis natalensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1151,species,hilfra2,Hildebrandt's Francolin,Pternistis hildebrandti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1156,species,jacfra2,Jackson's Francolin,Pternistis jacksoni,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1157,species,swifra2,Swierstra's Francolin,Pternistis swierstrai,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1158,species,clafra1,Clapperton's Francolin,Pternistis clappertoni,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1159,species,harfra4,Harwood's Francolin,Pternistis harwoodi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1166,species,swafra2,Swainson's Francolin,Pternistis swainsonii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1167,species,yenspu1,Yellow-necked Francolin,Pternistis leucoscepus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1168,species,gybfra1,Gray-breasted Francolin,Pternistis rufopictus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1169,species,renfra1,Red-necked Francolin,Pternistis afer,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1173,issf,renfra2,Red-necked Francolin (Cranch's),Pternistis afer cranchii/harterti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 1174,issf,renfra3,Red-necked Francolin (Northern),Pternistis afer [leucoparaeus Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 1175,issf,renfra4,Red-necked Francolin (Benguela),Pternistis afer afer,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 1176,issf,renfra5,Red-necked Francolin (Southern),Pternistis afer castaneiventer,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 1177,species,blkfra,Black Francolin,Francolinus francolinus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1178,species,paifra1,Painted Francolin,Francolinus pictus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1182,species,chifra1,Chinese Francolin,Francolinus pintadeanus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1183,species,gryfra,Gray Francolin,Francolinus pondicerianus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1184,species,swafra1,Swamp Francolin,Francolinus gularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1184.5,species,crefra2,Crested Francolin,Dendroperdix sephaena,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1187,issf,crefra1,Crested Francolin (Kirk's),Dendroperdix sephaena rovuma,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefra2 1190,issf,crefra3,Crested Francolin (Crested),Dendroperdix sephaena [sephaena Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefra2 1191,species,mobpar1,Mountain Bamboo-Partridge,Bambusicola fytchii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1198,species,chbpar3,Chinese Bamboo-Partridge,Bambusicola thoracicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1199,species,taibap1,Taiwan Bamboo-Partridge,Bambusicola sonorivox,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1200,species,redjun,Red Junglefowl,Gallus gallus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1200.2,domestic,redjun1,Red Junglefowl (Domestic type),Gallus gallus (Domestic type),Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1204,species,grejun2,Gray Junglefowl,Gallus sonneratii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1208,species,ceyjun1,Sri Lanka Junglefowl,Gallus lafayettii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1209,species,grejun1,Green Junglefowl,Gallus varius,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1213,species,coqfra2,Coqui Francolin,Peliperdix coqui,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1216,issf,coqfra1,Coqui Francolin (Plain-breasted),Peliperdix coqui [hubbardi Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,coqfra2 1219,issf,coqfra3,Coqui Francolin (Bar-breasted),Peliperdix coqui coqui,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,coqfra2 1223,species,whtfra2,White-throated Francolin,Peliperdix albogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1223.5,issf,whtfra1,White-throated Francolin (White-throated),Peliperdix albogularis albogularis/buckleyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,whtfra2 1224,issf,whtfra3,White-throated Francolin (Chestnut-breasted),Peliperdix albogularis dewittei,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,whtfra2 1225,species,schfra2,Schlegel's Francolin,Peliperdix schlegelii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1240,species,forfra2,Latham's Francolin,Peliperdix lathami,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1241,species,rewfra2,Red-winged Francolin,Scleroptila levaillantii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1242,species,rinfra2,Ring-necked Francolin,Scleroptila streptophora,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1245,species,finfra2,Finsch's Francolin,Scleroptila finschi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1246,species,orrfra2,Orange River Francolin,Scleroptila gutturalis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1249,issf,orrfra1,Orange River Francolin (Archer's),Scleroptila gutturalis gutturalis/lorti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,orrfra2 1260,issf,orrfra3,Orange River Francolin (Kalahari),Scleroptila gutturalis jugularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,orrfra2 1261,issf,orrfra4,Orange River Francolin (Orange River),Scleroptila gutturalis levalliantoides,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,orrfra2 1264,species,gywfra1,Gray-winged Francolin,Scleroptila afra,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1265,species,moofra2,Moorland Francolin,Scleroptila psilolaema,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1265.2,issf,moofra1,Moorland Francolin (Moorland),Scleroptila psilolaema psilolaema,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,moofra2 1265.4,issf,moofra3,Moorland Francolin (Elgon),Scleroptila psilolaema elgonensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,moofra2 1270.5,species,shefra2,Shelley's Francolin,Scleroptila shelleyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1270.7,issf,shefra1,Shelley's Francolin (Shelley's),Scleroptila shelleyi shelleyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,shefra2 1270.9,issf,shefra3,Shelley's Francolin (Whyte's),Scleroptila shelleyi whytei,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,shefra2 1271,spuh,franco1,francolin sp.,Pternistis/Francolinus/Peliperdix/Scleroptila sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1272,species,blophe1,Blood Pheasant,Ithaginis cruentus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1273,species,himmon1,Himalayan Monal,Lophophorus impejanus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1274,species,sclmon1,Sclater's Monal,Lophophorus sclateri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1285,species,chimon1,Chinese Monal,Lophophorus lhuysii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1287,species,snopar1,Snow Partridge,Lerwa lerwa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1288,species,verpar1,Verreaux's Partridge,Tetraophasis obscurus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1289,species,szepar1,Szechenyi's Partridge,Tetraophasis szechenyii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1290,species,westra1,Western Tragopan,Tragopan melanocephalus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1291,species,sattra1,Satyr Tragopan,Tragopan satyra,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1307,species,blytra1,Blyth's Tragopan,Tragopan blythii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1310,species,temtra1,Temminck's Tragopan,Tragopan temminckii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1310.2,species,cabtra1,Cabot's Tragopan,Tragopan caboti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1310.4,species,reephe1,Reeves's Pheasant,Syrmaticus reevesii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1310.6,species,copphe1,Copper Pheasant,Syrmaticus soemmerringii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1315,species,mikphe1,Mikado Pheasant,Syrmaticus mikado,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1316,species,ellphe1,Elliot's Pheasant,Syrmaticus ellioti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1317,species,humphe1,Hume's Pheasant,Syrmaticus humiae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1318,species,golphe,Golden Pheasant,Chrysolophus pictus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1318.5,species,laaphe1,Lady Amherst's Pheasant,Chrysolophus amherstiae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1323,species,rinphe,Ring-necked Pheasant,Phasianus colchicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1324,issf,rinphe1,Ring-necked Pheasant (Ring-necked),Phasianus colchicus [colchicus Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rinphe 1325,issf,rinphe2,Ring-necked Pheasant (Green),Phasianus colchicus [versicolor Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rinphe 1326,species,whephe1,White Eared-Pheasant,Crossoptilon crossoptilon,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1327,issf,whieap2,White Eared-Pheasant (Tibetan),Crossoptilon crossoptilon harmani,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,whephe1 1330,issf,whieap1,White Eared-Pheasant (White),Crossoptilon crossoptilon [crossoptilon Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,whephe1 1331,species,brephe1,Brown Eared-Pheasant,Crossoptilon mantchuricum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1337,species,blephe1,Blue Eared-Pheasant,Crossoptilon auritum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1338,species,chephe1,Cheer Pheasant,Catreus wallichii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1339,species,silphe,Silver Pheasant,Lophura nycthemera,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1371,species,kalphe,Kalij Pheasant,Lophura leucomelanos,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1375,species,siafir1,Siamese Fireback,Lophura diardi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1376,species,bulphe1,Bulwer's Pheasant,Lophura bulweri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1377,species,edwphe1,Edwards's Pheasant,Lophura edwardsi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1380,species,swiphe1,Swinhoe's Pheasant,Lophura swinhoii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1381,species,salphe1,Salvadori's Pheasant,Lophura inornata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1382.5,issf,salphe2,Salvadori's Pheasant (Salvadori's),Lophura inornata inornata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,salphe1 1387,issf,salphe3,Salvadori's Pheasant (Hoogerwerf's),Lophura inornata hoogerwerfi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,salphe1 1388,species,crefir2,Crestless Fireback,Lophura erythrophthalma,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1388.2,issf,crefir5,Crestless Fireback (Malay),Lophura erythrophthalma erythrophthalma,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir2 1388.4,issf,crefir6,Crestless Fireback (Bornean),Lophura erythrophthalma pyronota,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir2 1389,species,crefir1,Crested Fireback,Lophura ignita,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1390,issf,crefir3,Crested Fireback (Malay),Lophura ignita rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir1 1391,issf,crefir4,Crested Fireback (Bornean),Lophura ignita ignita/nobilis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir1 1394,spuh,pheasa1,pheasant sp.,Phasianinae sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1397,species,grypar,Gray Partridge,Perdix perdix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1397.5,species,daupar1,Daurian Partridge,Perdix dauurica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1398,species,tibpar1,Tibetan Partridge,Perdix hodgsoniae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1402,species,kokphe1,Koklass Pheasant,Pucrasia macrolopha,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1403,species,blbcap1,Black-billed Capercaillie,Tetrao urogalloides,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1407,species,wescap1,Western Capercaillie,Tetrao urogallus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1420,species,blagro1,Black Grouse,Tetrao tetrix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1427.5,hybrid,x00841,Western Capercaillie x Black Grouse (hybrid),Tetrao urogallus x tetrix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1428,species,caugro1,Caucasian Grouse,Tetrao mlokosiewiczi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1429,species,hazgro1,Hazel Grouse,Tetrastes bonasia,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1442,species,sevgro1,Severtzov's Grouse,Tetrastes sewerzowi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1443,species,rufgro,Ruffed Grouse,Bonasa umbellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1458,species,saggro,Greater Sage-Grouse,Centrocercus urophasianus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1459,species,gusgro,Gunnison Sage-Grouse,Centrocercus minimus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1460,slash,y00608,Greater/Gunnison Sage-Grouse,Centrocercus urophasianus/minimus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1460.5,species,sibgro2,Siberian Grouse,Falcipennis falcipennis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1461,species,sprgro,Spruce Grouse,Falcipennis canadensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1462,issf,sprgro1,Spruce Grouse (Spruce),Falcipennis canadensis [canadensis Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,sprgro 1468,issf,frsgro1,Spruce Grouse (Franklin's),Falcipennis canadensis franklinii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,sprgro 1468.5,slash,y00674,Ruffed/Spruce Grouse,Bonasa umbellus/Falcipennis canadensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1469,species,wilpta,Willow Ptarmigan,Lagopus lagopus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1470,issf,wilpta1,Willow Ptarmigan (Red Grouse),Lagopus lagopus scotica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,wilpta 1471,issf,wilpta2,Willow Ptarmigan (Willow),Lagopus lagopus [lagopus Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,wilpta 1490,species,rocpta1,Rock Ptarmigan,Lagopus muta,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1522,species,whtpta1,White-tailed Ptarmigan,Lagopus leucura,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1528,spuh,ptarmi1,ptarmigan sp.,Lagopus sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1529,species,dusgro,Dusky Grouse,Dendragapus obscurus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1534,species,soogro1,Sooty Grouse,Dendragapus fuliginosus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1539,slash,blugrs,Dusky/Sooty Grouse,Dendragapus obscurus/fuliginosus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1541,species,shtgro,Sharp-tailed Grouse,Tympanuchus phasianellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1547.5,hybrid,x00727,Greater Sage-Grouse x Sharp-tailed Grouse (hybrid),Centrocercus urophasianus x Tympanuchus phasianellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1547.7,hybrid,x00781,Dusky x Sharp-tailed Grouse (hybrid),Dendragapus obscurus x Tympanuchus phasianellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1548,species,grpchi,Greater Prairie-Chicken,Tympanuchus cupido,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1549,issf,greprc1,Greater Prairie-Chicken (pinnatus),Tympanuchus cupido pinnatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,grpchi 1550,issf,heahen1,Greater Prairie-Chicken (Heath Hen),Tympanuchus cupido cupido,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,grpchi 1551,issf,attprc1,Greater Prairie-Chicken (Attwater's),Tympanuchus cupido attwateri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,grpchi 1551.5,hybrid,x00728,Sharp-tailed Grouse x Greater Prairie-Chicken (hybrid),Tympanuchus phasianellus x cupido,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1552,species,lepchi,Lesser Prairie-Chicken,Tympanuchus pallidicinctus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1552.5,hybrid,x00668,Greater x Lesser Prairie-Chicken (hybrid),Tympanuchus cupido x pallidicinctus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1552.6,slash,y00664,Greater/Lesser Prairie-Chicken,Tympanuchus cupido/pallidicinctus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1552.7,spuh,grouse1,grouse sp.,Tetraoninae sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1553,species,wiltur,Wild Turkey,Meleagris gallopavo,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1559.5,domestic,wiltur1,Wild Turkey (Domestic type),Meleagris gallopavo (Domestic type),Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1560,species,ocetur1,Ocellated Turkey,Meleagris ocellata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, 1561,species,retloo,Red-throated Loon,Gavia stellata,Gaviiformes,Gaviidae (Loons),Loons and Grebes, 1562,species,arcloo,Arctic Loon,Gavia arctica,Gaviiformes,Gaviidae (Loons),, 1565,species,pacloo,Pacific Loon,Gavia pacifica,Gaviiformes,Gaviidae (Loons),, 1566,slash,y00219,Arctic/Pacific Loon,Gavia arctica/pacifica,Gaviiformes,Gaviidae (Loons),, 1567,species,comloo,Common Loon,Gavia immer,Gaviiformes,Gaviidae (Loons),, 1568,species,yebloo,Yellow-billed Loon,Gavia adamsii,Gaviiformes,Gaviidae (Loons),, 1569,slash,y00220,Common/Yellow-billed Loon,Gavia immer/adamsii,Gaviiformes,Gaviidae (Loons),, 1570,spuh,loon,loon sp.,Gavia sp.,Gaviiformes,Gaviidae (Loons),, 1571,species,whtgre3,White-tufted Grebe,Rollandia rolland,Podicipediformes,Podicipedidae (Grebes),, 1575,species,titgre1,Titicaca Grebe,Rollandia microptera,Podicipediformes,Podicipedidae (Grebes),, 1576,species,alagre1,Alaotra Grebe,Tachybaptus rufolavatus,Podicipediformes,Podicipedidae (Grebes),, 1577,species,litgre1,Little Grebe,Tachybaptus ruficollis,Podicipediformes,Podicipedidae (Grebes),, 1577.5,issf,litgre3,Little Grebe (Little),Tachybaptus ruficollis [ruficollis Group],Podicipediformes,Podicipedidae (Grebes),,litgre1 1583.6,issf,litgre4,Little Grebe (Tricolored),Tachybaptus ruficollis tricolor/vulcanorum,Podicipediformes,Podicipedidae (Grebes),,litgre1 1587,species,ausgre1,Australasian Grebe,Tachybaptus novaehollandiae,Podicipediformes,Podicipedidae (Grebes),, 1595,species,madgre1,Madagascar Grebe,Tachybaptus pelzelnii,Podicipediformes,Podicipedidae (Grebes),, 1596,species,leagre,Least Grebe,Tachybaptus dominicus,Podicipediformes,Podicipedidae (Grebes),, 1601,species,pibgre,Pied-billed Grebe,Podilymbus podiceps,Podicipediformes,Podicipedidae (Grebes),, 1605,species,atigre1,Atitlan Grebe,Podilymbus gigas,Podicipediformes,Podicipedidae (Grebes),, 1606,species,hohgre1,Hoary-headed Grebe,Poliocephalus poliocephalus,Podicipediformes,Podicipedidae (Grebes),, 1606.2,slash,y01019,Australasian/Hoary-headed Grebe,Tachybaptus novaehollandiae/Poliocephalus poliocephalus,Podicipediformes,Podicipedidae (Grebes),, 1607,species,nezgre1,New Zealand Grebe,Poliocephalus rufopectus,Podicipediformes,Podicipedidae (Grebes),, 1608,species,gregre1,Great Grebe,Podiceps major,Podicipediformes,Podicipedidae (Grebes),, 1611,species,horgre,Horned Grebe,Podiceps auritus,Podicipediformes,Podicipedidae (Grebes),, 1614,species,rengre,Red-necked Grebe,Podiceps grisegena,Podicipediformes,Podicipedidae (Grebes),, 1617,species,grcgre1,Great Crested Grebe,Podiceps cristatus,Podicipediformes,Podicipedidae (Grebes),, 1621,species,eargre,Eared Grebe,Podiceps nigricollis,Podicipediformes,Podicipedidae (Grebes),, 1625,slash,y00229,Horned/Eared Grebe,Podiceps auritus/nigricollis,Podicipediformes,Podicipedidae (Grebes),, 1626,species,colgre1,Colombian Grebe,Podiceps andinus,Podicipediformes,Podicipedidae (Grebes),, 1627,species,silgre1,Silvery Grebe,Podiceps occipitalis,Podicipediformes,Podicipedidae (Grebes),, 1628,issf,silgre3,Silvery Grebe (Andean),Podiceps occipitalis juninensis,Podicipediformes,Podicipedidae (Grebes),,silgre1 1629,issf,silgre2,Silvery Grebe (Patagonian),Podiceps occipitalis occipitalis,Podicipediformes,Podicipedidae (Grebes),,silgre1 1630,species,jungre1,Junin Grebe,Podiceps taczanowskii,Podicipediformes,Podicipedidae (Grebes),, 1631,species,hoogre1,Hooded Grebe,Podiceps gallardoi,Podicipediformes,Podicipedidae (Grebes),, 1632,spuh,podice1,Podiceps sp.,Podiceps sp.,Podicipediformes,Podicipedidae (Grebes),, 1633,species,wesgre,Western Grebe,Aechmophorus occidentalis,Podicipediformes,Podicipedidae (Grebes),, 1637,species,clagre,Clark's Grebe,Aechmophorus clarkii,Podicipediformes,Podicipedidae (Grebes),, 1639.5,hybrid,x00427,Western x Clark's Grebe (hybrid),Aechmophorus occidentalis x clarkii,Podicipediformes,Podicipedidae (Grebes),, 1640,slash,y00012,Western/Clark's Grebe,Aechmophorus occidentalis/clarkii,Podicipediformes,Podicipedidae (Grebes),, 1641,spuh,grebe1,grebe sp.,Podicipedidae sp.,Podicipediformes,Podicipedidae (Grebes),, 1641.5,species,chifla1,Chilean Flamingo,Phoenicopterus chilensis,Phoenicopteriformes,Phoenicopteridae (Flamingos),Flamingos, 1642,species,grefla2,American Flamingo,Phoenicopterus ruber,Phoenicopteriformes,Phoenicopteridae (Flamingos),, 1643,species,grefla3,Greater Flamingo,Phoenicopterus roseus,Phoenicopteriformes,Phoenicopteridae (Flamingos),, 1644,slash,grefla,American/Greater Flamingo,Phoenicopterus ruber/roseus,Phoenicopteriformes,Phoenicopteridae (Flamingos),, 1646,species,lesfla1,Lesser Flamingo,Phoeniconaias minor,Phoenicopteriformes,Phoenicopteridae (Flamingos),, 1647,species,andfla2,Andean Flamingo,Phoenicoparrus andinus,Phoenicopteriformes,Phoenicopteridae (Flamingos),, 1648,species,jamfla1,James's Flamingo,Phoenicoparrus jamesi,Phoenicopteriformes,Phoenicopteridae (Flamingos),, 1649,spuh,flamin1,flamingo sp.,Phoenicopteridae sp.,Phoenicopteriformes,Phoenicopteridae (Flamingos),, 1650,species,kinpen1,King Penguin,Aptenodytes patagonicus,Sphenisciformes,Spheniscidae (Penguins),Penguins, 1653,species,emppen1,Emperor Penguin,Aptenodytes forsteri,Sphenisciformes,Spheniscidae (Penguins),, 1654,species,adepen1,Adelie Penguin,Pygoscelis adeliae,Sphenisciformes,Spheniscidae (Penguins),, 1655,species,genpen1,Gentoo Penguin,Pygoscelis papua,Sphenisciformes,Spheniscidae (Penguins),, 1658,species,chipen2,Chinstrap Penguin,Pygoscelis antarcticus,Sphenisciformes,Spheniscidae (Penguins),, 1659,species,yeepen1,Yellow-eyed Penguin,Megadyptes antipodes,Sphenisciformes,Spheniscidae (Penguins),, 1660,species,litpen1,Little Penguin,Eudyptula minor,Sphenisciformes,Spheniscidae (Penguins),, 1667,species,jacpen1,African Penguin,Spheniscus demersus,Sphenisciformes,Spheniscidae (Penguins),, 1668,species,humpen1,Humboldt Penguin,Spheniscus humboldti,Sphenisciformes,Spheniscidae (Penguins),, 1669,species,galpen1,Galapagos Penguin,Spheniscus mendiculus,Sphenisciformes,Spheniscidae (Penguins),, 1670,species,magpen1,Magellanic Penguin,Spheniscus magellanicus,Sphenisciformes,Spheniscidae (Penguins),, 1671,species,fiopen1,Fiordland Penguin,Eudyptes pachyrhynchus,Sphenisciformes,Spheniscidae (Penguins),, 1672,species,bicpen1,Erect-crested Penguin,Eudyptes sclateri,Sphenisciformes,Spheniscidae (Penguins),, 1673,species,macpen1,Macaroni Penguin,Eudyptes chrysolophus,Sphenisciformes,Spheniscidae (Penguins),, 1674,species,roypen1,Royal Penguin,Eudyptes schlegeli,Sphenisciformes,Spheniscidae (Penguins),, 1675,species,rocpen1,Southern Rockhopper Penguin,Eudyptes chrysocome,Sphenisciformes,Spheniscidae (Penguins),, 1676,issf,rocpen2,Southern Rockhopper Penguin (Western),Eudyptes chrysocome chrysocome,Sphenisciformes,Spheniscidae (Penguins),,rocpen1 1677,issf,rocpen3,Southern Rockhopper Penguin (Eastern),Eudyptes chrysocome filholi,Sphenisciformes,Spheniscidae (Penguins),,rocpen1 1678,species,rocpen4,Moseley's Rockhopper Penguin,Eudyptes moseleyi,Sphenisciformes,Spheniscidae (Penguins),, 1679,species,snapen1,Snares Penguin,Eudyptes robustus,Sphenisciformes,Spheniscidae (Penguins),, 1680,spuh,pengui1,penguin sp.,Spheniscidae sp.,Sphenisciformes,Spheniscidae (Penguins),, 1681,species,yenalb,Yellow-nosed Albatross,Thalassarche chlororhynchos,Procellariiformes,Diomedeidae (Albatrosses),"Albatrosses, Petrels, Shearwaters, and Diving-Petrels", 1682,issf,yenalb2,Yellow-nosed Albatross (Atlantic),Thalassarche chlororhynchos chlororhynchos,Procellariiformes,Diomedeidae (Albatrosses),,yenalb 1683,issf,yenalb3,Yellow-nosed Albatross (Indian),Thalassarche chlororhynchos bassi,Procellariiformes,Diomedeidae (Albatrosses),,yenalb 1684,species,gyhalb,Gray-headed Albatross,Thalassarche chrysostoma,Procellariiformes,Diomedeidae (Albatrosses),, 1685,species,bulalb2,Buller's Albatross,Thalassarche bulleri,Procellariiformes,Diomedeidae (Albatrosses),, 1686,species,whcalb1,White-capped Albatross,Thalassarche cauta,Procellariiformes,Diomedeidae (Albatrosses),, 1687,issf,whcalb2,White-capped Albatross (cauta),Thalassarche cauta cauta,Procellariiformes,Diomedeidae (Albatrosses),,whcalb1 1688,issf,whcalb3,White-capped Albatross (steadi),Thalassarche cauta steadi,Procellariiformes,Diomedeidae (Albatrosses),,whcalb1 1689,species,salalb1,Salvin's Albatross,Thalassarche salvini,Procellariiformes,Diomedeidae (Albatrosses),, 1690,species,shyalb2,Chatham Albatross,Thalassarche eremita,Procellariiformes,Diomedeidae (Albatrosses),, 1691,slash,shyalb,White-capped/Salvin's/Chatham Albatross,Thalassarche cauta/salvini/eremita,Procellariiformes,Diomedeidae (Albatrosses),, 1692,species,bkbalb,Black-browed Albatross,Thalassarche melanophris,Procellariiformes,Diomedeidae (Albatrosses),, 1693,issf,bkbalb1,Black-browed Albatross (Black-browed),Thalassarche melanophris melanophris,Procellariiformes,Diomedeidae (Albatrosses),,bkbalb 1694,issf,bkbalb2,Black-browed Albatross (Campbell),Thalassarche melanophris impavida,Procellariiformes,Diomedeidae (Albatrosses),,bkbalb 1695,spuh,smaalb1,small albatross sp.,Thalassarche sp.,Procellariiformes,Diomedeidae (Albatrosses),, 1696,species,sooalb1,Sooty Albatross,Phoebetria fusca,Procellariiformes,Diomedeidae (Albatrosses),, 1697,species,limalb1,Light-mantled Albatross,Phoebetria palpebrata,Procellariiformes,Diomedeidae (Albatrosses),, 1698,species,royalb1,Royal Albatross,Diomedea epomophora,Procellariiformes,Diomedeidae (Albatrosses),, 1699,issf,royalb2,Royal Albatross (Southern),Diomedea epomophora epomophora,Procellariiformes,Diomedeidae (Albatrosses),,royalb1 1700,issf,royalb3,Royal Albatross (Northern),Diomedea epomophora sanfordi,Procellariiformes,Diomedeidae (Albatrosses),,royalb1 1701,species,wanalb,Wandering Albatross,Diomedea exulans,Procellariiformes,Diomedeidae (Albatrosses),, 1702,issf,wanalb1,Wandering Albatross (Snowy),Diomedea exulans exulans,Procellariiformes,Diomedeidae (Albatrosses),,wanalb 1703,issf,wanalb3,Wandering Albatross (Tristan),Diomedea exulans dabbenena,Procellariiformes,Diomedeidae (Albatrosses),,wanalb 1704,issf,wanalb2,Wandering Albatross (New Zealand),Diomedea exulans antipodensis,Procellariiformes,Diomedeidae (Albatrosses),,wanalb 1705,issf,wanalb4,Wandering Albatross (Gibson's),Diomedea exulans gibsoni,Procellariiformes,Diomedeidae (Albatrosses),,wanalb 1706,issf,wanalb5,Wandering Albatross (Amsterdam),Diomedea exulans amsterdamensis,Procellariiformes,Diomedeidae (Albatrosses),,wanalb 1707,spuh,laralb1,large albatross sp.,Diomedea sp.,Procellariiformes,Diomedeidae (Albatrosses),, 1708,species,wavalb,Waved Albatross,Phoebastria irrorata,Procellariiformes,Diomedeidae (Albatrosses),, 1709,species,layalb,Laysan Albatross,Phoebastria immutabilis,Procellariiformes,Diomedeidae (Albatrosses),, 1711,species,bkfalb,Black-footed Albatross,Phoebastria nigripes,Procellariiformes,Diomedeidae (Albatrosses),, 1711.5,hybrid,x00017,Laysan x Black-footed Albatross (hybrid),Phoebastria immutabilis x nigripes,Procellariiformes,Diomedeidae (Albatrosses),, 1712,species,shtalb,Short-tailed Albatross,Phoebastria albatrus,Procellariiformes,Diomedeidae (Albatrosses),, 1712.5,spuh,albatr1,albatross sp.,Diomedeidae sp.,Procellariiformes,Diomedeidae (Albatrosses),, 1713,species,angpet1,Southern Giant-Petrel,Macronectes giganteus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1714,species,norgip1,Northern Giant-Petrel,Macronectes halli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1715,slash,y00228,Northern/Southern Giant-Petrel,Macronectes giganteus/halli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1716,species,norful,Northern Fulmar,Fulmarus glacialis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1717,issf,norful1,Northern Fulmar (glacialis),Fulmarus glacialis glacialis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,norful 1718,issf,norful2,Northern Fulmar (auduboni),Fulmarus glacialis auduboni,Procellariiformes,Procellariidae (Shearwaters and Petrels),,norful 1719,issf,norful3,Northern Fulmar (rodgersii),Fulmarus glacialis rodgersii,Procellariiformes,Procellariidae (Shearwaters and Petrels),,norful 1720,species,souful1,Southern Fulmar,Fulmarus glacialoides,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1721,species,antpet1,Antarctic Petrel,Thalassoica antarctica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1722,species,cappet,Cape Petrel,Daption capense,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1725,species,snopet1,Snow Petrel,Pagodroma nivea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1726,issf,snopet2,Snow Petrel (Lesser),Pagodroma nivea nivea,Procellariiformes,Procellariidae (Shearwaters and Petrels),,snopet1 1727,issf,snopet3,Snow Petrel (Greater),Pagodroma nivea major,Procellariiformes,Procellariidae (Shearwaters and Petrels),,snopet1 1728,species,kerpet2,Kerguelen Petrel,Aphrodroma brevirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1730,species,grwpet3,Great-winged Petrel,Pterodroma macroptera,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1731,species,grwpet2,Gray-faced Petrel,Pterodroma gouldi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1731.5,slash,grwpet1,Great-winged/Gray-faced Petrel,Pterodroma macroptera/gouldi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1732,species,kerpet,Kermadec Petrel,Pterodroma neglecta,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1735,species,magpet1,Magenta Petrel,Pterodroma magentae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1736,species,tripet1,Trindade Petrel,Pterodroma arminjoniana,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1737,species,herpet2,Herald Petrel,Pterodroma heraldica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1738,slash,herpet,Trindade/Herald Petrel,Pterodroma arminjoniana/heraldica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1739,species,murpet,Murphy's Petrel,Pterodroma ultima,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1740,species,solpet1,Providence Petrel,Pterodroma solandri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1741,species,henpet1,Henderson Petrel,Pterodroma atrata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1742,species,madpet,Zino's Petrel,Pterodroma madeira,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1743,species,feapet1,Fea's Petrel,Pterodroma feae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1743.3,issf,feapet3,Fea's Petrel (Fea's),Pterodroma feae feae,Procellariiformes,Procellariidae (Shearwaters and Petrels),,feapet1 1743.6,issf,feapet2,Fea's Petrel (Desertas),Pterodroma feae deserta,Procellariiformes,Procellariidae (Shearwaters and Petrels),,feapet1 1744,slash,y00609,Zino's/Fea's Petrel,Pterodroma madeira/feae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1745,species,soppet1,Soft-plumaged Petrel,Pterodroma mollis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1748,species,barpet1,Barau's Petrel,Pterodroma baraui,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1754,species,whhpet1,White-headed Petrel,Pterodroma lessonii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1755,species,motpet,Mottled Petrel,Pterodroma inexpectata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1756,species,berpet,Bermuda Petrel,Pterodroma cahow,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1757,species,bkcpet,Black-capped Petrel,Pterodroma hasitata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1758,issf,bkcpet1,Black-capped Petrel (hasitata),Pterodroma hasitata hasitata,Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet 1759,issf,bkcpet2,Black-capped Petrel (Jamaican),Pterodroma hasitata caribbaea,Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet 1759.3,form,bkcpet4,Black-capped Petrel (White-faced),Pterodroma hasitata (White-faced),Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet 1759.6,form,bkcpet3,Black-capped Petrel (Dark-faced),Pterodroma hasitata (Dark-faced),Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet 1759.8,slash,y00713,Bermuda/Black-capped Petrel,Pterodroma cahow/hasitata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1760,species,jufpet,Juan Fernandez Petrel,Pterodroma externa,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1761,species,atlpet1,Atlantic Petrel,Pterodroma incerta,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1762,species,galpet,Galapagos Petrel,Pterodroma phaeopygia,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1763,species,hawpet1,Hawaiian Petrel,Pterodroma sandwichensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1764,slash,y00472,Galapagos/Hawaiian Petrel (Dark-rumped Petrel),Pterodroma phaeopygia/sandwichensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1765,species,whnpet,White-necked Petrel,Pterodroma cervicalis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1766,species,bonpet,Bonin Petrel,Pterodroma hypoleuca,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1767,species,bkwpet,Black-winged Petrel,Pterodroma nigripennis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1768,species,chapet1,Chatham Petrel,Pterodroma axillaris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1769,species,coopet,Cook's Petrel,Pterodroma cookii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1770,species,maspet3,Masatierra Petrel,Pterodroma defilippiana,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1771,species,goupet1,Gould's Petrel,Pterodroma leucoptera,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1772,issf,goupet2,Gould's Petrel (Gould's),Pterodroma leucoptera leucoptera,Procellariiformes,Procellariidae (Shearwaters and Petrels),,goupet1 1773,issf,goupet3,Gould's Petrel (New Caledonia),Pterodroma leucoptera caledonica,Procellariiformes,Procellariidae (Shearwaters and Petrels),,goupet1 1773.5,species,colpet1,Collared Petrel,Pterodroma brevipes,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1774,issf,goupet4,Collared Petrel (Collared),Pterodroma brevipes brevipes,Procellariiformes,Procellariidae (Shearwaters and Petrels),,colpet1 1774.5,issf,goupet5,Collared Petrel (Magnificent),Pterodroma brevipes magnificens,Procellariiformes,Procellariidae (Shearwaters and Petrels),,colpet1 1775,species,stepet,Stejneger's Petrel,Pterodroma longirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1776,species,pycpet1,Pycroft's Petrel,Pterodroma pycrofti,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1776.5,spuh,coopet1,Cookilaria petrel sp.,Pterodroma sp. (Cookilaria sp.),Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1778,species,phopet1,Phoenix Petrel,Pterodroma alba,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1779,species,venpet1,Vanuatu Petrel,Pterodroma occulta,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1780,spuh,pterod,Pterodroma sp.,Pterodroma sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1781,species,blupet1,Blue Petrel,Halobaena caerulea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1782,species,faipri1,Fairy Prion,Pachyptila turtur,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1783,species,brbpri1,Broad-billed Prion,Pachyptila vittata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1784,species,salpri1,Salvin's Prion,Pachyptila salvini,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1785,issf,salpri2,Salvin's Prion (Salvin's),Pachyptila salvini salvini,Procellariiformes,Procellariidae (Shearwaters and Petrels),,salpri1 1786,issf,salpri3,Salvin's Prion (MacGillivray's),Pachyptila salvini macgillivrayi,Procellariiformes,Procellariidae (Shearwaters and Petrels),,salpri1 1786.5,form,goupri1,Gough Prion (undescribed form),Pachyptila [undescribed form],Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1787,species,dovpri1,Antarctic Prion,Pachyptila desolata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1791,species,slbpri1,Slender-billed Prion,Pachyptila belcheri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1792,species,fulpri1,Fulmar Prion,Pachyptila crassirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1796,spuh,prion1,prion sp.,Pachyptila sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1797,species,bulpet,Bulwer's Petrel,Bulweria bulwerii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1798,species,joupet,Jouanin's Petrel,Bulweria fallax,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1798.1,species,fijpet1,Fiji Petrel,Pseudobulweria macgillivrayi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1798.2,species,maspet1,Mascarene Petrel,Pseudobulweria aterrima,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1798.4,species,tahpet1,Tahiti Petrel,Pseudobulweria rostrata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1798.8,species,becpet1,Beck's Petrel,Pseudobulweria becki,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1799,species,grapet,Gray Petrel,Procellaria cinerea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1800,species,whcpet1,White-chinned Petrel,Procellaria aequinoctialis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1801,species,spepet1,Spectacled Petrel,Procellaria conspicillata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1802,species,parpet1,Parkinson's Petrel,Procellaria parkinsoni,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1803,species,wespet1,Westland Petrel,Procellaria westlandica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1804,spuh,procel1,Procellaria sp.,Procellaria sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1805,species,strshe,Streaked Shearwater,Calonectris leucomelas,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1806,species,corshe,Cory's Shearwater,Calonectris diomedea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1807,issf,scoshe1,Cory's Shearwater (Scopoli's),Calonectris diomedea diomedea,Procellariiformes,Procellariidae (Shearwaters and Petrels),,corshe 1808,issf,corshe1,Cory's Shearwater (borealis),Calonectris diomedea borealis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,corshe 1809,species,cavshe1,Cape Verde Shearwater,Calonectris edwardsii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1809.5,slash,y00676,Cory's/Cape Verde Shearwater,Calonectris diomedea/edwardsii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1810,species,pifshe,Pink-footed Shearwater,Ardenna creatopus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1811,species,flfshe,Flesh-footed Shearwater,Ardenna carneipes,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1812,species,greshe,Great Shearwater,Ardenna gravis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1813,slash,y00606,Cory's/Great Shearwater,Calonectris diomedea/Ardenna gravis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1814,species,wetshe,Wedge-tailed Shearwater,Ardenna pacifica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1815,species,bulshe,Buller's Shearwater,Ardenna bulleri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1816,species,sooshe,Sooty Shearwater,Ardenna grisea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1817,species,shtshe,Short-tailed Shearwater,Ardenna tenuirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1818,slash,y00020,Sooty/Short-tailed Shearwater,Ardenna grisea/tenuirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1819,species,chrshe,Christmas Shearwater,Puffinus nativitatis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1820,species,audshe3,Galapagos Shearwater,Puffinus subalaris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1820.3,form,galshe1,Galapagos Shearwater (Dark-winged),Puffinus subalaris (dark-winged),Procellariiformes,Procellariidae (Shearwaters and Petrels),,audshe3 1820.6,form,galshe2,Galapagos Shearwater (Light-winged),Puffinus subalaris (light-winged),Procellariiformes,Procellariidae (Shearwaters and Petrels),,audshe3 1821,species,manshe,Manx Shearwater,Puffinus puffinus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1822,species,levshe1,Yelkouan Shearwater,Puffinus yelkouan,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1823,species,balshe1,Balearic Shearwater,Puffinus mauretanicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1824,slash,medshe1,Yelkouan/Balearic Shearwater,Puffinus yelkouan/mauretanicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1825,species,hutshe1,Hutton's Shearwater,Puffinus huttoni,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1827,species,towshe1,Townsend's Shearwater,Puffinus auricularis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1828,species,towshe2,Newell's Shearwater,Puffinus newelli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1828.3,slash,towshe,Townsend's/Newell's Shearwater,Puffinus auricularis/newelli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1829,species,towshe3,Rapa Shearwater,Puffinus myrtae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1829.3,slash,y00931,Newell's/Rapa Shearwater,Puffinus newelli/myrtae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1829.5,species,bryshe1,Bryan's Shearwater,Puffinus bryani,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1830,species,bkvshe,Black-vented Shearwater,Puffinus opisthomelas,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1831,species,flushe1,Fluttering Shearwater,Puffinus gavia,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1831.2,slash,y00832,Hutton's/Fluttering Shearwater,Puffinus huttoni/gavia,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1832,species,litshe,Little Shearwater,Puffinus assimilis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1833,issf,litshe3,Little Shearwater (Tasman),Puffinus assimilis assimilis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe 1834,issf,litshe5,Little Shearwater (Kermadec),Puffinus assimilis kermadecensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe 1835,issf,litshe6,Little Shearwater (Hauraki),Puffinus assimilis haurakiensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe 1836,issf,litshe4,Little Shearwater (Subantarctic),Puffinus assimilis elegans,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe 1837,issf,litshe7,Little Shearwater (West Australian),Puffinus assimilis tunneyi,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe 1838,species,litshe1,Barolo Shearwater,Puffinus baroli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1839,species,litshe2,Boyd's Shearwater,Puffinus boydi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1839.5,slash,y00714,Barolo/Boyd's Shearwater (Macaronesian Shearwater),Puffinus baroli/boydi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1840,species,audshe,Audubon's Shearwater,Puffinus lherminieri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1843,species,troshe1,Tropical Shearwater,Puffinus bailloni,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1844,issf,troshe2,Tropical Shearwater (Mascarene),Puffinus bailloni bailloni,Procellariiformes,Procellariidae (Shearwaters and Petrels),,troshe1 1845,issf,troshe3,Tropical Shearwater (Indopacific),Puffinus bailloni [dichrous Group],Procellariiformes,Procellariidae (Shearwaters and Petrels),,troshe1 1849,issf,troshe4,Tropical Shearwater (Bannerman's),Puffinus bailloni bannermani,Procellariiformes,Procellariidae (Shearwaters and Petrels),,troshe1 1850,species,pershe1,Persian Shearwater,Puffinus persicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1853,species,heishe1,Heinroth's Shearwater,Puffinus heinrothi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1854,spuh,bawshe1,black-and-white shearwater sp.,Puffinus sp. (black-and-white shearwater sp.),Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1855,spuh,shearw,shearwater sp.,Procellariidae sp. (shearwater sp.),Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1856.05,species,pedpet1,Peruvian Diving-Petrel,Pelecanoides garnotii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1856.1,species,codpet1,Common Diving-Petrel,Pelecanoides urinatrix,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1856.45,species,sgdpet1,South Georgia Diving-Petrel,Pelecanoides georgicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1856.5,species,madpet1,Magellanic Diving-Petrel,Pelecanoides magellani,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1856.55,spuh,diving1,diving-petrel sp.,Pelecanoides sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1856.75,spuh,procel2,Procellariid sp.,Procellariidae sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, 1857,species,wispet,Wilson's Storm-Petrel,Oceanites oceanicus,Procellariiformes,Hydrobatidae (Storm-Petrels),Storm-Petrels, 1857.5,issf,wilstp2,Wilson's Storm-Petrel (Wilson's),Oceanites oceanicus oceanicus/exasperatus,Procellariiformes,Hydrobatidae (Storm-Petrels),,wispet 1859.5,issf,wilstp1,Wilson's Storm-Petrel (Fuegian),Oceanites oceanicus chilensis,Procellariiformes,Hydrobatidae (Storm-Petrels),,wispet 1860,species,pumstp1,Pincoya Storm-Petrel,Oceanites pincoyae,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1861,species,wvspet1,Elliot's Storm-Petrel,Oceanites gracilis,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1864,spuh,oceani1,Oceanites sp.,Oceanites sp.,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1866,species,gybstp1,Gray-backed Storm-Petrel,Garrodia nereis,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1867,species,wfspet,White-faced Storm-Petrel,Pelagodroma marina,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1874,species,bripet,European Storm-Petrel,Hydrobates pelagicus,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1875,issf,eurstp1,European Storm-Petrel (British),Hydrobates pelagicus pelagicus,Procellariiformes,Hydrobatidae (Storm-Petrels),,bripet 1876,issf,eurstp2,European Storm-Petrel (Mediterranean),Hydrobates pelagicus melitensis,Procellariiformes,Hydrobatidae (Storm-Petrels),,bripet 1877,species,wbspet1,White-bellied Storm-Petrel,Fregetta grallaria,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1878,issf,whbstp1,White-bellied Storm-Petrel (White-bellied),Fregetta grallaria [grallaria Group],Procellariiformes,Hydrobatidae (Storm-Petrels),,wbspet1 1880,issf,whbstp2,White-bellied Storm-Petrel (Rapa I.),Fregetta grallaria titan,Procellariiformes,Hydrobatidae (Storm-Petrels),,wbspet1 1881,species,nezstp1,New Zealand Storm-Petrel,Fregetta maoriana,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1881.2,form,necstp1,New Caledonian Storm-Petrel (undescribed form),Fregetta [undescribed form],Procellariiformes,Hydrobatidae (Storm-Petrels),, 1882,species,bbspet1,Black-bellied Storm-Petrel,Fregetta tropica,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1885,species,pospet1,Polynesian Storm-Petrel,Nesofregetta fuliginosa,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1886,species,ftspet,Fork-tailed Storm-Petrel,Oceanodroma furcata,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1889,species,rispet1,Ringed Storm-Petrel,Oceanodroma hornbyi,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1890,species,lcspet,Leach's Storm-Petrel,Oceanodroma leucorhoa,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1891,issf,leastp3,Leach's Storm-Petrel (Leach's),Oceanodroma leucorhoa leucorhoa,Procellariiformes,Hydrobatidae (Storm-Petrels),,lcspet 1892,issf,leastp4,Leach's Storm-Petrel (Chapman's),Oceanodroma leucorhoa chapmani,Procellariiformes,Hydrobatidae (Storm-Petrels),,lcspet 1893,species,leastp5,Townsend's Storm-Petrel,Oceanodroma socorroensis,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1894,slash,y00937,Leach's/Townsend's Storm-Petrel,Oceanodroma leucorhoa/socorroensis,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1895,form,leastp1,Leach's/Townsend's Storm-Petrel (dark-rumped),Oceanodroma leucorhoa/socorroensis (dark-rumped),Procellariiformes,Hydrobatidae (Storm-Petrels),, 1895.2,form,y00938,Leach's/Townsend's Storm-Petrel (white-rumped),Oceanodroma leucorhoa/socorroensis (white-rumped),Procellariiformes,Hydrobatidae (Storm-Petrels),, 1895.6,species,leastp2,Ainley's Storm-Petrel,Oceanodroma cheimomnestes,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1895.8,slash,y00939,Leach's/Townsend's/Ainley's Storm-Petrel,Oceanodroma leucorhoa/socorroensis/cheimomnestes,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1896,species,swspet,Swinhoe's Storm-Petrel,Oceanodroma monorhis,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1897,species,asspet,Ashy Storm-Petrel,Oceanodroma homochroa,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1898,species,barpet,Band-rumped Storm-Petrel,Oceanodroma castro,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1898.3,form,barstp4,Band-rumped Storm-Petrel (Madeiran),Oceanodroma castro castro,Procellariiformes,Hydrobatidae (Storm-Petrels),,barpet 1898.5,form,barstp3,Band-rumped Storm-Petrel (Grant's),Oceanodroma castro [undescribed form],Procellariiformes,Hydrobatidae (Storm-Petrels),,barpet 1898.7,form,barstp5,Band-rumped Storm-Petrel (Darwin's),Oceanodroma castro bangsi,Procellariiformes,Hydrobatidae (Storm-Petrels),,barpet 1899,species,monstp1,Monteiro's Storm-Petrel,Oceanodroma monteiroi,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1900,species,cavstp1,Cape Verde Storm-Petrel,Oceanodroma jabejabe,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1901,spuh,oceano2,Oceanodroma sp. (Band-rumped complex),Oceanodroma sp. (Band-rumped complex),Procellariiformes,Hydrobatidae (Storm-Petrels),, 1902,species,wrspet,Wedge-rumped Storm-Petrel,Oceanodroma tethys,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1905,species,bkspet,Black Storm-Petrel,Oceanodroma melania,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1906,species,guspet,Guadalupe Storm-Petrel,Oceanodroma macrodactyla,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1907,species,maspet,Markham's Storm-Petrel,Oceanodroma markhami,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1907.5,slash,y00715,Black/Markham's Storm-Petrel,Oceanodroma melania/markhami,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1908,species,maspet2,Matsudaira's Storm-Petrel,Oceanodroma matsudairae,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1909,species,trspet,Tristram's Storm-Petrel,Oceanodroma tristrami,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1910,species,lsspet,Least Storm-Petrel,Oceanodroma microsoma,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1911,spuh,oceano1,Oceanodroma sp.,Oceanodroma sp.,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1912,spuh,storm-1,storm-petrel sp. (dark-rumped),Hydrobatidae sp. (dark-rumped),Procellariiformes,Hydrobatidae (Storm-Petrels),, 1912.6,spuh,storm-2,storm-petrel sp. (white-rumped),Hydrobatidae sp. (white-rumped),Procellariiformes,Hydrobatidae (Storm-Petrels),, 1916,spuh,stopet,storm-petrel sp.,Hydrobatidae sp.,Procellariiformes,Hydrobatidae (Storm-Petrels),, 1924,species,whttro,White-tailed Tropicbird,Phaethon lepturus,Phaethontiformes,Phaethontidae (Tropicbirds),Tropicbirds, 1925,issf,whttro7,White-tailed Tropicbird (Indian Ocean),Phaethon lepturus lepturus,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro 1926,issf,whttro4,White-tailed Tropicbird (Golden),Phaethon lepturus fulvus,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro 1927,issf,whttro6,White-tailed Tropicbird (Europa I.),Phaethon lepturus europae,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro 1928,issf,whttro2,White-tailed Tropicbird (Atlantic),Phaethon lepturus catesbyi,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro 1929,issf,whttro3,White-tailed Tropicbird (Pacific),Phaethon lepturus dorotheae,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro 1930,issf,whttro5,White-tailed Tropicbird (Ascension),Phaethon lepturus ascensionis,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro 1931,species,rebtro,Red-billed Tropicbird,Phaethon aethereus,Phaethontiformes,Phaethontidae (Tropicbirds),, 1935,species,rettro,Red-tailed Tropicbird,Phaethon rubricauda,Phaethontiformes,Phaethontidae (Tropicbirds),, 1940,slash,y00473,Red-billed/Red-tailed Tropicbird,Phaethon aethereus/rubricauda,Phaethontiformes,Phaethontidae (Tropicbirds),, 1941,spuh,tropic1,tropicbird sp.,Phaethon sp.,Phaethontiformes,Phaethontidae (Tropicbirds),, 1941.03,species,asiope1,Asian Openbill,Anastomus oscitans,Ciconiiformes,Ciconiidae (Storks),Storks, 1941.06,species,afrope1,African Openbill,Anastomus lamelligerus,Ciconiiformes,Ciconiidae (Storks),, 1941.1,species,blasto1,Black Stork,Ciconia nigra,Ciconiiformes,Ciconiidae (Storks),, 1941.13,species,abdsto1,Abdim's Stork,Ciconia abdimii,Ciconiiformes,Ciconiidae (Storks),, 1941.16,species,wonsto1,Woolly-necked Stork,Ciconia episcopus,Ciconiiformes,Ciconiidae (Storks),, 1941.17,issf,wonsto2,Woolly-necked Stork (African),Ciconia episcopus microscelis,Ciconiiformes,Ciconiidae (Storks),,wonsto1 1941.18,issf,wonsto3,Woolly-necked Stork (Asian),Ciconia episcopus episcopus/neglecta,Ciconiiformes,Ciconiidae (Storks),,wonsto1 1941.2,species,stosto1,Storm's Stork,Ciconia stormi,Ciconiiformes,Ciconiidae (Storks),, 1941.23,species,magsto1,Maguari Stork,Ciconia maguari,Ciconiiformes,Ciconiidae (Storks),, 1941.26,species,whisto1,White Stork,Ciconia ciconia,Ciconiiformes,Ciconiidae (Storks),, 1941.3,species,oristo1,Oriental Stork,Ciconia boyciana,Ciconiiformes,Ciconiidae (Storks),, 1941.33,spuh,ciconi1,Ciconia sp.,Ciconia sp.,Ciconiiformes,Ciconiidae (Storks),, 1941.36,species,blnsto1,Black-necked Stork,Ephippiorhynchus asiaticus,Ciconiiformes,Ciconiidae (Storks),, 1941.4,species,sabsto1,Saddle-billed Stork,Ephippiorhynchus senegalensis,Ciconiiformes,Ciconiidae (Storks),, 1941.43,species,jabiru,Jabiru,Jabiru mycteria,Ciconiiformes,Ciconiidae (Storks),, 1941.46,species,lesadj1,Lesser Adjutant,Leptoptilos javanicus,Ciconiiformes,Ciconiidae (Storks),, 1941.5,species,marsto1,Marabou Stork,Leptoptilos crumenifer,Ciconiiformes,Ciconiidae (Storks),, 1941.53,species,greadj1,Greater Adjutant,Leptoptilos dubius,Ciconiiformes,Ciconiidae (Storks),, 1941.535,slash,y00716,Lesser/Greater Adjutant,Leptoptilos javanicus/dubius,Ciconiiformes,Ciconiidae (Storks),, 1941.56,species,woosto,Wood Stork,Mycteria americana,Ciconiiformes,Ciconiidae (Storks),, 1941.6,species,milsto1,Milky Stork,Mycteria cinerea,Ciconiiformes,Ciconiidae (Storks),, 1941.63,species,yebsto1,Yellow-billed Stork,Mycteria ibis,Ciconiiformes,Ciconiidae (Storks),, 1941.66,species,paisto1,Painted Stork,Mycteria leucocephala,Ciconiiformes,Ciconiidae (Storks),, 1941.67,hybrid,x00729,Milky x Painted Stork (hybrid),Mycteria cinerea x leucocephala,Ciconiiformes,Ciconiidae (Storks),, 1941.68,spuh,stork1,stork sp.,Ciconiidae sp.,Ciconiiformes,Ciconiidae (Storks),, 1941.69,species,lesfri,Lesser Frigatebird,Fregata ariel,Suliformes,Fregatidae (Frigatebirds),"Frigatebirds, Boobies, and Gannets", 1941.7,species,asifri1,Ascension Frigatebird,Fregata aquila,Suliformes,Fregatidae (Frigatebirds),, 1941.76,species,magfri,Magnificent Frigatebird,Fregata magnificens,Suliformes,Fregatidae (Frigatebirds),, 1941.78,species,chifri1,Christmas Island Frigatebird,Fregata andrewsi,Suliformes,Fregatidae (Frigatebirds),, 1941.8,species,grefri,Great Frigatebird,Fregata minor,Suliformes,Fregatidae (Frigatebirds),, 1941.86,spuh,frigat,frigatebird sp.,Fregata sp.,Suliformes,Fregatidae (Frigatebirds),, 1942,species,masboo,Masked Booby,Sula dactylatra,Suliformes,Sulidae (Boobies and Gannets),, 1947,species,nazboo1,Nazca Booby,Sula granti,Suliformes,Sulidae (Boobies and Gannets),, 1948,slash,y00474,Masked/Nazca Booby,Sula dactylatra/granti,Suliformes,Sulidae (Boobies and Gannets),, 1950,species,bfoboo,Blue-footed Booby,Sula nebouxii,Suliformes,Sulidae (Boobies and Gannets),, 1953,species,perboo1,Peruvian Booby,Sula variegata,Suliformes,Sulidae (Boobies and Gannets),, 1954,species,brnboo,Brown Booby,Sula leucogaster,Suliformes,Sulidae (Boobies and Gannets),, 1955,issf,brnboo1,Brown Booby (Brewster's),Sula leucogaster brewsteri,Suliformes,Sulidae (Boobies and Gannets),,brnboo 1956,issf,brnboo2,Brown Booby (Atlantic),Sula leucogaster leucogaster,Suliformes,Sulidae (Boobies and Gannets),,brnboo 1957,issf,brnboo3,Brown Booby (Forster's),Sula leucogaster plotus,Suliformes,Sulidae (Boobies and Gannets),,brnboo 1958,issf,brnboo4,Brown Booby (Colombian),Sula leucogaster etesiaca,Suliformes,Sulidae (Boobies and Gannets),,brnboo 1958.2,hybrid,x00782,Masked x Brown Booby (hybrid),Sula dactylatra x leucogaster,Suliformes,Sulidae (Boobies and Gannets),, 1959,species,refboo,Red-footed Booby,Sula sula,Suliformes,Sulidae (Boobies and Gannets),, 1960,issf,refboo1,Red-footed Booby (Atlantic),Sula sula sula,Suliformes,Sulidae (Boobies and Gannets),,refboo 1961,issf,refboo2,Red-footed Booby (Indopacific),Sula sula rubripes,Suliformes,Sulidae (Boobies and Gannets),,refboo 1962,issf,refboo3,Red-footed Booby (Eastern Pacific),Sula sula websteri,Suliformes,Sulidae (Boobies and Gannets),,refboo 1963,spuh,booby1,booby sp.,Sula sp.,Suliformes,Sulidae (Boobies and Gannets),, 1963.5,species,abbboo2,Abbott's Booby,Papasula abbotti,Suliformes,Sulidae (Boobies and Gannets),, 1964,species,norgan,Northern Gannet,Morus bassanus,Suliformes,Sulidae (Boobies and Gannets),, 1965,species,capgan1,Cape Gannet,Morus capensis,Suliformes,Sulidae (Boobies and Gannets),, 1966,species,ausgan1,Australasian Gannet,Morus serrator,Suliformes,Sulidae (Boobies and Gannets),, 1967,spuh,sulid,sulid sp.,Sulidae sp.,Suliformes,Sulidae (Boobies and Gannets),, 1968,species,lipcor1,Little Pied Cormorant,Microcarbo melanoleucos,Suliformes,Phalacrocoracidae (Cormorants and Shags),Cormorants and Anhingas, 1969,species,lotcor1,Long-tailed Cormorant,Microcarbo africanus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1970,species,crocor1,Crowned Cormorant,Microcarbo coronatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1971,species,litcor1,Little Cormorant,Microcarbo niger,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1972,species,pygcor2,Pygmy Cormorant,Microcarbo pygmeus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1973,species,relcor1,Red-legged Cormorant,Phalacrocorax gaimardi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984,species,bracor,Brandt's Cormorant,Phalacrocorax penicillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.01,species,refcor,Red-faced Cormorant,Phalacrocorax urile,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.02,species,pelcor,Pelagic Cormorant,Phalacrocorax pelagicus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.03,species,palcor1,Pallas's Cormorant,Phalacrocorax perspicillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.04,species,grecor,Great Cormorant,Phalacrocorax carbo,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.045,form,grecor6,Great Cormorant (Dark-breasted),Phalacrocorax carbo carbo/sinensis,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor 1984.05,issf,grecor1,Great Cormorant (North Atlantic),Phalacrocorax carbo carbo,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor 1984.06,issf,grecor2,Great Cormorant (Australasian),Phalacrocorax carbo novaehollandiae,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor 1984.07,issf,grecor3,Great Cormorant (Eurasian),Phalacrocorax carbo sinensis/hanedae,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor 1984.08,issf,grecor5,Great Cormorant (Moroccan),Phalacrocorax carbo maroccanus,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor 1984.09,issf,grecor4,Great Cormorant (White-breasted),Phalacrocorax carbo lucidus,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor 1984.1,species,japcor1,Japanese Cormorant,Phalacrocorax capillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.105,slash,y01020,Great/Japanese Cormorant,Phalacrocorax carbo/capillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.11,species,capcor1,Cape Cormorant,Phalacrocorax capensis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.12,species,bancor1,Bank Cormorant,Phalacrocorax neglectus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.13,species,soccor1,Socotra Cormorant,Phalacrocorax nigrogularis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.14,species,indcor1,Indian Cormorant,Phalacrocorax fuscicollis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.15,slash,y00770,Little/Indian Cormorant,Microcarbo niger/Phalacrocorax fuscicollis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.16,species,sposha1,Spotted Shag,Phalacrocorax punctatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.17,species,piisha1,Pitt Island Shag,Phalacrocorax featherstoni,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.18,species,libcor1,Little Black Cormorant,Phalacrocorax sulcirostris,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.19,species,piecor1,Pied Cormorant,Phalacrocorax varius,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.2,species,blfcor1,Black-faced Cormorant,Phalacrocorax fuscescens,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.21,species,eursha1,European Shag,Phalacrocorax aristotelis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.22,issf,eursha2,European Shag (Atlantic),Phalacrocorax aristotelis aristotelis,Suliformes,Phalacrocoracidae (Cormorants and Shags),,eursha1 1984.23,issf,eursha3,European Shag (Mediterranean),Phalacrocorax aristotelis desmarestii,Suliformes,Phalacrocoracidae (Cormorants and Shags),,eursha1 1984.24,issf,eursha4,European Shag (Moroccan),Phalacrocorax aristotelis riggenbachi,Suliformes,Phalacrocoracidae (Cormorants and Shags),,eursha1 1984.25,slash,y00769,Great Cormorant/European Shag,Phalacrocorax carbo/aristotelis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1984.26,species,flicor1,Flightless Cormorant,Phalacrocorax harrisi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1985,species,neocor,Neotropic Cormorant,Phalacrocorax brasilianus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1988,species,doccor,Double-crested Cormorant,Phalacrocorax auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1991,slash,y00694,Great/Double-crested Cormorant,Phalacrocorax carbo/auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1992.2,hybrid,x00783,Neotropic x Double-crested Cormorant (hybrid),Phalacrocorax brasilianus x auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 1992.4,slash,y00833,Neotropic/Double-crested Cormorant,Phalacrocorax brasilianus/auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2014,species,magcor1,Magellanic Cormorant,Phalacrocorax magellanicus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2015,species,guacor1,Guanay Cormorant,Phalacrocorax bougainvillii,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2020,species,boisha1,Bounty Islands Shag,Phalacrocorax ranfurlyi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2021,species,rofsha1,New Zealand King Shag,Phalacrocorax carunculatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2022,species,brosha1,Stewart Island Shag,Phalacrocorax chalconotus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2023,species,chisha1,Chatham Islands Shag,Phalacrocorax onslowi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2024,species,auisha1,Auckland Islands Shag,Phalacrocorax colensoi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2025,species,caisha2,Campbell Islands Shag,Phalacrocorax campbelli,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2026,species,sogsha1,South Georgia Shag,Phalacrocorax georgianus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2027,species,impcor1,Imperial Cormorant,Phalacrocorax atriceps,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2028,form,impcor2,Imperial Cormorant (Blue-eyed),Phalacrocorax atriceps (Blue-eyed),Suliformes,Phalacrocoracidae (Cormorants and Shags),,impcor1 2029,form,impcor3,Imperial Cormorant (King),Phalacrocorax atriceps (King),Suliformes,Phalacrocoracidae (Cormorants and Shags),,impcor1 2031,species,antsha1,Antarctic Shag,Phalacrocorax bransfieldensis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2033,species,crosha1,Crozet Shag,Phalacrocorax melanogenis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2034,species,kersha1,Kerguelen Shag,Phalacrocorax verrucosus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2035,species,heisha1,Heard Island Shag,Phalacrocorax nivalis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2036,species,macsha1,Macquarie Shag,Phalacrocorax purpurascens,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2055,spuh,cormor1,cormorant sp.,Phalacrocoracidae sp.,Suliformes,Phalacrocoracidae (Cormorants and Shags),, 2056,species,anhing,Anhinga,Anhinga anhinga,Suliformes,Anhingidae (Anhingas),, 2060,species,darter3,African Darter,Anhinga rufa,Suliformes,Anhingidae (Anhingas),, 2062,species,darter2,Oriental Darter,Anhinga melanogaster,Suliformes,Anhingidae (Anhingas),, 2063,species,darter4,Australasian Darter,Anhinga novaehollandiae,Suliformes,Anhingidae (Anhingas),, 2069,species,amwpel,American White Pelican,Pelecanus erythrorhynchos,Pelecaniformes,Pelecanidae (Pelicans),Pelicans, 2070,species,brnpel,Brown Pelican,Pelecanus occidentalis,Pelecaniformes,Pelecanidae (Pelicans),, 2072,issf,brnpel2,Brown Pelican (Atlantic),Pelecanus occidentalis carolinensis,Pelecaniformes,Pelecanidae (Pelicans),,brnpel 2073,issf,brnpel3,Brown Pelican (California),Pelecanus occidentalis californicus,Pelecaniformes,Pelecanidae (Pelicans),,brnpel 2073.1,issf,brnpel1,Brown Pelican (Southern),Pelecanus occidentalis [occidentalis Group],Pelecaniformes,Pelecanidae (Pelicans),,brnpel 2074,species,perpel1,Peruvian Pelican,Pelecanus thagus,Pelecaniformes,Pelecanidae (Pelicans),, 2074.2,species,grwpel1,Great White Pelican,Pelecanus onocrotalus,Pelecaniformes,Pelecanidae (Pelicans),, 2074.3,species,auspel1,Australian Pelican,Pelecanus conspicillatus,Pelecaniformes,Pelecanidae (Pelicans),, 2074.4,species,pibpel1,Pink-backed Pelican,Pelecanus rufescens,Pelecaniformes,Pelecanidae (Pelicans),, 2074.6,species,spbpel1,Spot-billed Pelican,Pelecanus philippensis,Pelecaniformes,Pelecanidae (Pelicans),, 2074.7,species,dalpel1,Dalmatian Pelican,Pelecanus crispus,Pelecaniformes,Pelecanidae (Pelicans),, 2074.8,hybrid,x00842,Great White x Dalmatian Pelican (hybrid),Pelecanus onocrotalus x crispus,Pelecaniformes,Pelecanidae (Pelicans),, 2074.9,spuh,pelica1,pelican sp.,Pelecanus sp.,Pelecaniformes,Pelecanidae (Pelicans),, 2075,species,shoebi1,Shoebill,Balaeniceps rex,Pelecaniformes,Balaenicipitidae (Shoebill),Shoebill and Hammerkop, 2076,species,hamerk1,Hamerkop,Scopus umbretta,Pelecaniformes,Scopidae (Hamerkop),, 2078,species,pinbit1,Pinnated Bittern,Botaurus pinnatus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)","Herons, Ibis, and Allies", 2081,species,amebit,American Bittern,Botaurus lentiginosus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2082,species,grebit1,Great Bittern,Botaurus stellaris,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2085,species,ausbit1,Australasian Bittern,Botaurus poiciloptilus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2086,species,zigher1,Zigzag Heron,Zebrilus undulatus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2087,species,yelbit,Yellow Bittern,Ixobrychus sinensis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2088,species,litbit1,Little Bittern,Ixobrychus minutus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2089,issf,litbit2,Little Bittern (Little),Ixobrychus minutus minutus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litbit1 2090,issf,litbit3,Little Bittern (African),Ixobrychus minutus payesii,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litbit1 2091,issf,litbit4,Little Bittern (Malagasy),Ixobrychus minutus podiceps,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litbit1 2092,species,bkbbit1,Black-backed Bittern,Ixobrychus dubius,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2093,species,nezbit1,New Zealand Bittern,Ixobrychus novaezelandiae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2094,species,schbit1,Schrenck's Bittern,Ixobrychus eurhythmus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2095,species,cinbit1,Cinnamon Bittern,Ixobrychus cinnamomeus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2096,species,dwabit1,Dwarf Bittern,Ixobrychus sturmii,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2097,species,blabit1,Black Bittern,Ixobrychus flavicollis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2101,species,leabit,Least Bittern,Ixobrychus exilis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2107,species,stbbit1,Stripe-backed Bittern,Ixobrychus involucris,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2107.5,spuh,smabit1,small bittern sp.,Ixobrychus sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2108,species,ruther1,Rufescent Tiger-Heron,Tigrisoma lineatum,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2111,species,father1,Fasciated Tiger-Heron,Tigrisoma fasciatum,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2115,species,btther1,Bare-throated Tiger-Heron,Tigrisoma mexicanum,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2115.5,spuh,tiger-1,tiger-heron sp.,Tigrisoma sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2116,species,forbit1,Forest Bittern,Zonerodius heliosylus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2117,species,whcbit1,White-crested Bittern,Tigriornis leucolopha,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2118,species,grbher3,Great Blue Heron,Ardea herodias,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2119,issf,grbher,Great Blue Heron (Blue form),Ardea herodias [herodias Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grbher3 2123,issf,grwher,Great Blue Heron (White form),Ardea herodias occidentalis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grbher3 2124,form,wurher,Great Blue Heron (Wurdemann's),Ardea herodias (Wurdemann's),Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grbher3 2126,species,graher1,Gray Heron,Ardea cinerea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2128,issf,gryher1,Gray Heron (Gray),Ardea cinerea cinerea/jouyi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,graher1 2129,issf,gryher3,Gray Heron (Malagasy),Ardea cinerea firasa,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,graher1 2130,issf,gryher2,Gray Heron (Mauritanian),Ardea cinerea monicae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,graher1 2131,species,cocher1,Cocoi Heron,Ardea cocoi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2131.2,hybrid,x00784,Great Blue x Cocoi Heron (hybrid),Ardea herodias x cocoi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2131.4,slash,y00834,Great Blue/Cocoi Heron,Ardea herodias/cocoi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2132,species,pacher1,Pacific Heron,Ardea pacifica,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2133,species,blhher1,Black-headed Heron,Ardea melanocephala,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2134,species,humher1,Humblot's Heron,Ardea humbloti,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2135,species,whbher2,White-bellied Heron,Ardea insignis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2136,species,grbher2,Great-billed Heron,Ardea sumatrana,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2139,species,golher1,Goliath Heron,Ardea goliath,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2140,species,purher1,Purple Heron,Ardea purpurea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2140.2,issf,purher2,Purple Heron (Bourne's),Ardea purpurea bournei,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,purher1 2140.4,issf,purher3,Purple Heron (Purple),Ardea purpurea [purpurea Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,purher1 2140.6,slash,y01021,Gray/Purple Heron,Ardea cinerea/purpurea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2144,species,greegr,Great Egret,Ardea alba,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2145,issf,greegr1,Great Egret (Eurasian),Ardea alba alba,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr 2146,issf,greegr4,Great Egret (African),Ardea alba melanorhynchos,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr 2147,issf,greegr2,Great Egret (American),Ardea alba egretta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr 2148,issf,greegr3,Great Egret (Australasian),Ardea alba modesta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr 2148.5,hybrid,x00677,Great Blue Heron x Great Egret (hybrid),Ardea herodias x alba,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2150,species,integr,Intermediate Egret,Ardea intermedia,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2150.2,issf,integr1,Intermediate Egret (Intermediate),Ardea intermedia intermedia,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,integr 2150.4,issf,integr2,Intermediate Egret (Plumed),Ardea intermedia plumifera,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,integr 2150.6,issf,integr3,Intermediate Egret (Yellow-billed),Ardea intermedia brachyrhyncha,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,integr 2153.5,slash,y00717,Great/Intermediate Egret,Ardea alba/intermedia,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2153.7,spuh,ardea1,Ardea sp.,Ardea sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2154,species,whfher1,White-faced Heron,Egretta novaehollandiae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2157,species,chiegr,Chinese Egret,Egretta eulophotes,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2158,species,litegr,Little Egret,Egretta garzetta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2160,issf,litegr1,Little Egret (Western),Egretta garzetta garzetta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litegr 2161,issf,litegr3,Little Egret (Australasian),Egretta garzetta nigripes,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litegr 2162,issf,litegr2,Little Egret (Dimorphic),Egretta garzetta dimorpha,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litegr 2163,species,werher,Western Reef-Heron,Egretta gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2164,issf,wesreh1,Western Reef-Heron (Western),Egretta gularis gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,werher 2165,issf,wesreh2,Western Reef-Heron (Eastern),Egretta gularis schistacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,werher 2165.5,hybrid,x00656,Little Egret x Western Reef-Heron (hybrid),Egretta garzetta x gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2165.7,slash,y00835,Little Egret/Western Reef-Heron,Egretta garzetta/gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2166,species,pacreh1,Pacific Reef-Heron,Egretta sacra,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2169,species,snoegr,Snowy Egret,Egretta thula,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2172,hybrid,x00697,Little x Snowy Egret (hybrid),Egretta garzetta x thula,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2173,species,libher,Little Blue Heron,Egretta caerulea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2173.5,hybrid,x00615,Snowy Egret x Little Blue Heron (hybrid),Egretta thula x caerulea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2174,species,triher,Tricolored Heron,Egretta tricolor,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2176.3,hybrid,x00730,Snowy Egret x Tricolored Heron (hybrid),Egretta thula x tricolor,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2176.5,hybrid,x00696,Little Blue x Tricolored Heron (hybrid),Egretta caerulea x tricolor,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2177,species,redegr,Reddish Egret,Egretta rufescens,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2177.2,hybrid,x00785,Tricolored Heron x Reddish Egret (hybrid),Egretta tricolor x rufescens,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2180,species,pieher2,Pied Heron,Egretta picata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2181,species,slaegr1,Slaty Egret,Egretta vinaceigula,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2182,species,blaher1,Black Heron,Egretta ardesiaca,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2183,species,categr,Cattle Egret,Bubulcus ibis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2184,issf,categr1,Cattle Egret (Western),Bubulcus ibis ibis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,categr 2185,issf,categr2,Cattle Egret (Eastern),Bubulcus ibis coromandus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,categr 2187,spuh,whiegr1,white egret sp.,Ardea/Egretta/Bubulcus sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2188,species,squher1,Squacco Heron,Ardeola ralloides,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2189,species,inpher1,Indian Pond-Heron,Ardeola grayii,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2190,species,chpher1,Chinese Pond-Heron,Ardeola bacchus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2191,species,japher1,Javan Pond-Heron,Ardeola speciosa,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2194,species,mapher1,Madagascar Pond-Heron,Ardeola idae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2195,species,rubher2,Rufous-bellied Heron,Ardeola rufiventris,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2195.5,spuh,pond-h1,pond-heron sp.,Ardeola sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2196,species,grnher,Green Heron,Butorides virescens,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2197,issf,grnher1,Green Heron (virescens/bahamensis),Butorides virescens virescens/bahamensis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grnher 2198,issf,grnher2,Green Heron (anthonyi),Butorides virescens anthonyi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grnher 2199,issf,grnher3,Green Heron (frazari),Butorides virescens frazari,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grnher 2201,species,strher,Striated Heron,Butorides striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2202,issf,strher2,Striated Heron (South American),Butorides striata striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,strher 2203,issf,strher3,Striated Heron (Galapagos),Butorides striata sundevalli,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,strher 2204,issf,strher1,Striated Heron (Old World),Butorides striata [atricapilla Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,strher 2227.3,hybrid,x00765,Green x Striated Heron (hybrid),Butorides virescens x striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2227.6,slash,y00771,Green/Striated Heron,Butorides virescens/striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2228,species,agaher1,Agami Heron,Agamia agami,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2229,species,whiher1,Whistling Heron,Syrigma sibilatrix,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2232,species,capher1,Capped Heron,Pilherodius pileatus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2233,species,bcnher,Black-crowned Night-Heron,Nycticorax nycticorax,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2234,issf,bkcnih1,Black-crowned Night-Heron (Eurasian),Nycticorax nycticorax nycticorax,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher 2235,issf,bkcnih2,Black-crowned Night-Heron (American),Nycticorax nycticorax hoactli,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher 2236,issf,bkcnih4,Black-crowned Night-Heron (Dusky),Nycticorax nycticorax obscurus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher 2237,issf,bkcnih3,Black-crowned Night-Heron (Falklands),Nycticorax nycticorax falklandicus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher 2238,species,runher1,Rufous Night-Heron,Nycticorax caledonicus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2240,slash,y00940,Black-crowned/Rufous Night-Heron,Nycticorax nycticorax/caledonicus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2244,species,ycnher,Yellow-crowned Night-Heron,Nyctanassa violacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2244.5,issf,yecnih1,Yellow-crowned Night-Heron (Yellow-crowned),Nyctanassa violacea [violacea Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,ycnher 2250.3,issf,yecnih2,Yellow-crowned Night-Heron (Galapagos),Nyctanassa violacea pauper,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,ycnher 2250.6,hybrid,x00704,Black-crowned x Yellow-crowned Night-Heron (hybrid),Nycticorax nycticorax x Nyctanassa violacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2251,slash,y00610,Black-crowned/Yellow-crowned Night-Heron,Nycticorax nycticorax/Nyctanassa violacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2252,species,wbnher1,White-backed Night-Heron,Gorsachius leuconotus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2253,species,wenher1,White-eared Night-Heron,Gorsachius magnificus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2254,species,janher1,Japanese Night-Heron,Gorsachius goisagi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2255,species,manher1,Malayan Night-Heron,Gorsachius melanolophus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2255.5,slash,y00941,Japanese/Malayan Night-Heron,Gorsachius goisagi/melanolophus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2256,species,bobher1,Boat-billed Heron,Cochlearius cochlearius,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2257,issf,bobher3,Boat-billed Heron (Northern),Cochlearius cochlearius [zeledoni Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bobher1 2261,issf,bobher4,Boat-billed Heron (Southern),Cochlearius cochlearius cochlearius/panamensis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bobher1 2264,spuh,heron1,heron sp.,Ardeidae sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, 2265,species,whiibi,White Ibis,Eudocimus albus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2267,species,scaibi,Scarlet Ibis,Eudocimus ruber,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2267.5,hybrid,x00428,White x Scarlet Ibis (hybrid),Eudocimus albus x ruber,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2268,species,gloibi,Glossy Ibis,Plegadis falcinellus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2270,species,whfibi,White-faced Ibis,Plegadis chihi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2270.5,hybrid,gxwibi1,Glossy x White-faced Ibis (hybrid),Plegadis falcinellus x chihi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2271,slash,plegad,Glossy/White-faced Ibis,Plegadis falcinellus/chihi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2272,species,punibi1,Puna Ibis,Plegadis ridgwayi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2272.2,slash,y00836,White-faced/Puna Ibis,Plegadis chihi/ridgwayi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2273,species,madibi1,Madagascar Ibis,Lophotibis cristata,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2276,species,shtibi1,Sharp-tailed Ibis,Cercibis oxycerca,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2277,species,greibi1,Green Ibis,Mesembrinibis cayennensis,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2278,species,bafibi1,Bare-faced Ibis,Phimosus infuscatus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2282,species,pluibi1,Plumbeous Ibis,Theristicus caerulescens,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2283,species,bunibi1,Buff-necked Ibis,Theristicus caudatus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2286,species,blfibi1,Black-faced Ibis,Theristicus melanopis,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2287,issf,bkfibi1,Black-faced Ibis (melanopis),Theristicus melanopis melanopis,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),,blfibi1 2288,issf,bkfibi2,Black-faced Ibis (branickii),Theristicus melanopis branickii,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),,blfibi1 2289,species,sacibi1,Sacred Ibis,Threskiornis aethiopicus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2290,issf,sacibi2,Sacred Ibis (African),Threskiornis aethiopicus aethiopicus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),,sacibi1 2290.5,issf,sacibi3,Sacred Ibis (Malagasy),Threskiornis aethiopicus bernieri/abbotti,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),,sacibi1 2292.1,species,reusol1,Reunion Ibis,Threskiornis solitarius,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2293,species,blhibi1,Black-headed Ibis,Threskiornis melanocephalus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2294,species,ausibi1,Australian Ibis,Threskiornis molucca,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2297,species,stnibi1,Straw-necked Ibis,Threskiornis spinicollis,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2298,species,renibi1,Red-naped Ibis,Pseudibis papillosa,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2299,species,whsibi1,White-shouldered Ibis,Pseudibis davisoni,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2300,species,giaibi1,Giant Ibis,Pseudibis gigantea,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2301,species,waldra1,Northern Bald Ibis,Geronticus eremita,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2302,species,balibi1,Southern Bald Ibis,Geronticus calvus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2303,species,creibi1,Crested Ibis,Nipponia nippon,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2304.4,species,oliibi2,Olive Ibis,Bostrychia olivacea,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2308,species,oliibi3,Sao Tome Ibis,Bostrychia bocagei,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2310,species,spbibi1,Spot-breasted Ibis,Bostrychia rara,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2311,species,hadibi1,Hadada Ibis,Bostrychia hagedash,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2315,species,watibi1,Wattled Ibis,Bostrychia carunculata,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2315.5,spuh,ibis1,ibis sp.,Threskiornithidae sp. (ibis sp.),Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2316,species,eurspo1,Eurasian Spoonbill,Platalea leucorodia,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2320,species,royspo1,Royal Spoonbill,Platalea regia,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2321,species,afrspo1,African Spoonbill,Platalea alba,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2322,species,blfspo1,Black-faced Spoonbill,Platalea minor,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2322.2,hybrid,x00883,Eurasian x Black-faced Spoonbill (hybrid),Platalea leucorodia x minor,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2323,species,yebspo1,Yellow-billed Spoonbill,Platalea flavipes,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2324,species,rosspo1,Roseate Spoonbill,Platalea ajaja,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2325,spuh,spoonb1,spoonbill sp.,Platalea sp.,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, 2358,species,blkvul,Black Vulture,Coragyps atratus,Cathartiformes,Cathartidae (New World Vultures),"Vultures, Hawks, and Allies", 2362,species,turvul,Turkey Vulture,Cathartes aura,Cathartiformes,Cathartidae (New World Vultures),, 2363,issf,turvul2,Turkey Vulture (Northern),Cathartes aura aura/septentrionalis,Cathartiformes,Cathartidae (New World Vultures),,turvul 2366,issf,turvul1,Turkey Vulture (Tropical),Cathartes aura ruficollis,Cathartiformes,Cathartidae (New World Vultures),,turvul 2367,issf,turvul3,Turkey Vulture (South Temperate),Cathartes aura jota,Cathartiformes,Cathartidae (New World Vultures),,turvul 2368,species,lyhvul1,Lesser Yellow-headed Vulture,Cathartes burrovianus,Cathartiformes,Cathartidae (New World Vultures),, 2371,species,gyhvul1,Greater Yellow-headed Vulture,Cathartes melambrotus,Cathartiformes,Cathartidae (New World Vultures),, 2371.5,spuh,cathar1,Cathartes sp.,Cathartes sp.,Cathartiformes,Cathartidae (New World Vultures),, 2372,species,calcon,California Condor,Gymnogyps californianus,Cathartiformes,Cathartidae (New World Vultures),, 2373,species,andcon1,Andean Condor,Vultur gryphus,Cathartiformes,Cathartidae (New World Vultures),, 2374,species,kinvul1,King Vulture,Sarcoramphus papa,Cathartiformes,Cathartidae (New World Vultures),, 2375,spuh,vultur1,new world vulture sp.,Cathartidae sp.,Cathartiformes,Cathartidae (New World Vultures),, 2375.5,species,secret2,Secretarybird,Sagittarius serpentarius,Accipitriformes,Sagittariidae (Secretarybird),, 2376,species,osprey,Osprey,Pandion haliaetus,Accipitriformes,Pandionidae (Osprey),, 2377,issf,osprey3,Osprey (haliaetus),Pandion haliaetus haliaetus,Accipitriformes,Pandionidae (Osprey),,osprey 2378,issf,osprey1,Osprey (carolinensis),Pandion haliaetus carolinensis,Accipitriformes,Pandionidae (Osprey),,osprey 2379,issf,osprey2,Osprey (ridgwayi),Pandion haliaetus ridgwayi,Accipitriformes,Pandionidae (Osprey),,osprey 2380,issf,osprey4,Osprey (Australasian),Pandion haliaetus cristatus,Accipitriformes,Pandionidae (Osprey),,osprey 2381,species,peakit1,Pearl Kite,Gampsonyx swainsonii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2385,species,bkskit1,Black-shouldered Kite,Elanus caeruleus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2385.2,issf,bkskit2,Black-shouldered Kite (African),Elanus caeruleus caeruleus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bkskit1 2385.4,issf,bkskit3,Black-shouldered Kite (Asian),Elanus caeruleus [vociferus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bkskit1 2390,species,auskit1,Australian Kite,Elanus axillaris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2391,species,whtkit,White-tailed Kite,Elanus leucurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2394,species,lewkit1,Letter-winged Kite,Elanus scriptus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2395,species,sctkit1,Scissor-tailed Kite,Chelictinia riocourii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2396,species,afhhaw1,African Harrier-Hawk,Polyboroides typus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2399,species,mahhaw1,Madagascar Harrier-Hawk,Polyboroides radiatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2400,species,panvul1,Palm-nut Vulture,Gypohierax angolensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2401,species,maseag1,Madagascar Serpent-Eagle,Eutriorchis astur,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2402,species,lammer1,Bearded Vulture,Gypaetus barbatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2403,issf,lammer2,Bearded Vulture (Eurasian),Gypaetus barbatus barbatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lammer1 2404,issf,lammer3,Bearded Vulture (African),Gypaetus barbatus meridionalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lammer1 2405,species,egyvul1,Egyptian Vulture,Neophron percnopterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2409,species,hobkit,Hook-billed Kite,Chondrohierax uncinatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2410,issf,hobkit1,Hook-billed Kite (Hook-billed),Chondrohierax uncinatus uncinatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hobkit 2411,issf,hobkit2,Hook-billed Kite (Cuban),Chondrohierax uncinatus wilsonii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hobkit 2412,issf,hobkit3,Hook-billed Kite (Grenada),Chondrohierax uncinatus mirus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hobkit 2413,species,grhkit1,Gray-headed Kite,Leptodon cayanensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2416,species,whckit1,White-collared Kite,Leptodon forbesi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2419,species,euhbuz1,European Honey-buzzard,Pernis apivorus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2420,species,bahbuz1,Barred Honey-buzzard,Pernis celebensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2421,issf,barhob1,Barred Honey-buzzard (Barred),Pernis celebensis celebensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bahbuz1 2422,issf,barhob2,Barred Honey-buzzard (Steere's),Pernis celebensis steerei,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bahbuz1 2423,species,orihob2,Oriental Honey-buzzard,Pernis ptilorhynchus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2424,issf,orihob3,Oriental Honey-buzzard (Northern),Pernis ptilorhynchus orientalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,orihob2 2424.5,issf,orihob4,Oriental Honey-buzzard (Indomalayan),Pernis ptilorhynchus [ptilorhynchus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,orihob2 2424.7,hybrid,x00786,European x Oriental Honey-buzzard (hybrid),Pernis apivorus x ptilorhynchus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2430,slash,y00658,European/Oriental Honey-buzzard,Pernis apivorus/ptilorhynchus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2431,species,swtkit,Swallow-tailed Kite,Elanoides forficatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2431.2,species,bkbkit1,Black-breasted Kite,Hamirostra melanosternon,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2431.4,species,lthbuz1,Long-tailed Honey-buzzard,Henicopernis longicauda,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2431.6,species,blhbuz1,Black Honey-buzzard,Henicopernis infuscatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2431.8,species,sqtkit1,Square-tailed Kite,Lophoictinia isura,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2433,species,afrcuh1,African Cuckoo-Hawk,Aviceda cuculoides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2437,species,madcuh1,Madagascar Cuckoo-Hawk,Aviceda madagascariensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2438,species,jerbaz1,Jerdon's Baza,Aviceda jerdoni,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2444,species,pacbaz1,Pacific Baza,Aviceda subcristata,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2458,species,blabaz1,Black Baza,Aviceda leuphotes,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2465,species,rehvul1,Red-headed Vulture,Sarcogyps calvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2466,species,whhvul1,White-headed Vulture,Trigonoceps occipitalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2467,species,cinvul1,Cinereous Vulture,Aegypius monachus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2469,species,lafvul1,Lappet-faced Vulture,Torgos tracheliotos,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2473,species,hoovul1,Hooded Vulture,Necrosyrtes monachus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2474,species,whbvul1,White-backed Vulture,Gyps africanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2475,species,whrvul1,White-rumped Vulture,Gyps bengalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2476,species,indvul1,Indian Vulture,Gyps indicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2477,species,slbvul1,Slender-billed Vulture,Gyps tenuirostris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2478,species,ruegri1,RŸppell's Griffon,Gyps rueppelli,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2481,slash,y00634,White-backed Vulture/RŸppell's Griffon,Gyps africanus/rueppelli,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2482,species,himgri1,Himalayan Griffon,Gyps himalayensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2483,species,eurgri1,Eurasian Griffon,Gyps fulvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2483.2,slash,y00837,RŸppell's/Eurasian Griffon,Gyps rueppelli/fulvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2483.4,slash,y00838,Himalayan/Eurasian Griffon,Gyps himalayensis/fulvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2486,species,capgri1,Cape Griffon,Gyps coprotheres,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2486.5,slash,y00942,White-backed Vulture/Cape Griffon,Gyps africanus/coprotheres,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2487,spuh,gyps1,Gyps sp.,Gyps sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2488,spuh,olwvul1,old world vulture sp.,Accipitridae sp. (old world vulture sp.),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2489,species,nicsee1,Nicobar Serpent-Eagle,Spilornis klossi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2490,species,suseag1,Sulawesi Serpent-Eagle,Spilornis rufipectus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2493,species,moseag1,Mountain Serpent-Eagle,Spilornis kinabaluensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2494,species,crseag1,Crested Serpent-Eagle,Spilornis cheela,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2495,issf,cresee1,Crested Serpent-Eagle (Crested),Spilornis cheela [cheela Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2510,issf,cresee5,Crested Serpent-Eagle (Central Nicobar),Spilornis cheela minimus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2511,issf,cresee7,Crested Serpent-Eagle (Ryukyu),Spilornis cheela perplexus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2512,issf,cresee6,Crested Serpent-Eagle (Natuna),Spilornis cheela natunensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2513,issf,cresee2,Crested Serpent-Eagle (Simeulue),Spilornis cheela abbotti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2514,issf,cresee3,Crested Serpent-Eagle (Nias),Spilornis cheela asturinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2515,issf,cresee8,Crested Serpent-Eagle (Mentawai),Spilornis cheela sipora,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2516,issf,cresee4,Crested Serpent-Eagle (Bawean),Spilornis cheela baweanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 2516.3,species,phseag1,Philippine Serpent-Eagle,Spilornis holospilus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2516.6,species,anseag1,Andaman Serpent-Eagle,Spilornis elgini,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2517,species,grpeag1,Great Philippine Eagle,Pithecophaga jefferyi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2519,species,batele1,Bateleur,Terathopius ecaudatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2520,species,coseag1,Congo Serpent-Eagle,Dryotriorchis spectabilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2523,species,shteag1,Short-toed Snake-Eagle,Circaetus gallicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2523.5,species,beasne1,Beaudouin's Snake-Eagle,Circaetus beaudouini,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2524,species,bkbsne1,Black-breasted Snake-Eagle,Circaetus pectoralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2525,species,brseag1,Brown Snake-Eagle,Circaetus cinereus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2526,species,faseag1,Fasciated Snake-Eagle,Circaetus fasciolatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2527,species,baseag1,Banded Snake-Eagle,Circaetus cinerascens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2528,spuh,snake-1,snake-eagle sp.,Circaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2529,species,bathaw1,Bat Hawk,Macheiramphus alcinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2532,species,negeag1,New Guinea Eagle,Harpyopsis novaeguineae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2533,species,creeag1,Crested Eagle,Morphnus guianensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2534,species,hareag1,Harpy Eagle,Harpia harpyja,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2535,species,crheag1,Crowned Eagle,Stephanoaetus coronatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2536,species,chahae1,Changeable Hawk-Eagle,Nisaetus limnaeetus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2540.5,species,crehae1,Crested Hawk-Eagle,Nisaetus cirrhatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2540.7,slash,y00839,Changeable/Crested Hawk-Eagle,Nisaetus limnaeetus/cirrhatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2541,species,flohae1,Flores Hawk-Eagle,Nisaetus floris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2542,species,mouhae1,Mountain Hawk-Eagle,Nisaetus nipalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2545,species,mouhae2,Legge's Hawk-Eagle,Nisaetus kelaarti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2546,species,blyhae1,Blyth's Hawk-Eagle,Nisaetus alboniger,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2547,species,javhae1,Javan Hawk-Eagle,Nisaetus bartelsi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2548,species,sulhae1,Sulawesi Hawk-Eagle,Nisaetus lanceolatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2549,species,phihae1,Philippine Hawk-Eagle,Nisaetus philippensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2550,species,pinhae1,Pinsker's Hawk-Eagle,Nisaetus pinskeri,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2551,species,walhae1,Wallace's Hawk-Eagle,Nisaetus nanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2554,spuh,nisaet1,Nisaetus sp.,Nisaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2555,species,mareag1,Martial Eagle,Polemaetus bellicosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2556,species,rubeag2,Rufous-bellied Eagle,Lophotriorchis kienerii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2559,species,blheag1,Black Hawk-Eagle,Spizaetus tyrannus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2562,species,orheag1,Ornate Hawk-Eagle,Spizaetus ornatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2565,species,bawhae1,Black-and-white Hawk-Eagle,Spizaetus melanoleucus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2566,species,baceag2,Black-and-chestnut Eagle,Spizaetus isidori,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2566.2,spuh,spizae1,Spizaetus sp.,Spizaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2567,species,loceag1,Long-crested Eagle,Lophaetus occipitalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2568,species,blaeag1,Black Eagle,Ictinaetus malaiensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2571,species,leseag1,Lesser Spotted Eagle,Clanga pomarina,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2572,species,inseag1,Indian Spotted Eagle,Clanga hastata,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2573,species,grseag1,Greater Spotted Eagle,Clanga clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2573.2,hybrid,x00843,Lesser x Greater Spotted Eagle (hybrid),Clanga pomarina x clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2573.5,slash,y00718,Lesser/Greater Spotted Eagle,Clanga pomarina/clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2573.8,slash,y00719,Indian/Greater Spotted Eagle,Clanga hastata/clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2574,species,waheag3,Wahlberg's Eagle,Hieraaetus wahlbergi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2575,species,booeag1,Booted Eagle,Hieraaetus pennatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2576,species,liteag3,Pygmy Eagle,Hieraaetus weiskei,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2576.5,species,liteag1,Little Eagle,Hieraaetus morphnoides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2577,species,ayheag1,Ayres's Hawk-Eagle,Hieraaetus ayresii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2578,species,taweag1,Tawny Eagle,Aquila rapax,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2582,species,steeag1,Steppe Eagle,Aquila nipalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2582.2,slash,y01022,Tawny/Steppe Eagle,Aquila rapax/nipalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2585,species,spaeag1,Spanish Eagle,Aquila adalberti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2586,species,impeag1,Imperial Eagle,Aquila heliaca,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2587,species,gureag1,Gurney's Eagle,Aquila gurneyi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2588,species,goleag,Golden Eagle,Aquila chrysaetos,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2595,species,weteag1,Wedge-tailed Eagle,Aquila audax,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2598,species,cashae1,Cassin's Hawk-Eagle,Aquila africana,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2599,species,vereag1,Verreaux's Eagle,Aquila verreauxii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2600,species,boneag2,Bonelli's Eagle,Aquila fasciata,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2603,species,afrhae1,African Hawk-Eagle,Aquila spilogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2604,spuh,aquila1,Aquila sp.,Aquila sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2605,species,lizbuz1,Lizard Buzzard,Kaupifalco monogrammicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2608,species,dacgos1,Dark Chanting-Goshawk,Melierax metabates,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2614,species,eacgos1,Eastern Chanting-Goshawk,Melierax poliopterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2615,species,pacgos1,Pale Chanting-Goshawk,Melierax canorus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2618,species,gabgos2,Gabar Goshawk,Micronisus gabar,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2622,species,blchaw1,Black-collared Hawk,Busarellus nigricollis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2625,species,snakit,Snail Kite,Rostrhamus sociabilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2629,species,slbkit1,Slender-billed Kite,Helicolestes hamatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2630,species,dotkit1,Double-toothed Kite,Harpagus bidentatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2633,species,rutkit1,Rufous-thighed Kite,Harpagus diodon,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2634,species,miskit,Mississippi Kite,Ictinia mississippiensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2635,species,plukit1,Plumbeous Kite,Ictinia plumbea,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2635.5,slash,y00772,Mississippi/Plumbeous Kite,Ictinia mississippiensis/plumbea,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2636,species,grabuz1,Grasshopper Buzzard,Butastur rufipennis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2637,species,whebuz1,White-eyed Buzzard,Butastur teesa,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2638,species,ruwbuz1,Rufous-winged Buzzard,Butastur liventer,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2639,species,gyfbuz1,Gray-faced Buzzard,Butastur indicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2640,species,wemhar1,Eurasian Marsh-Harrier,Circus aeruginosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2643,species,afmhar1,African Marsh-Harrier,Circus ranivorus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2644,species,eamhar1,Eastern Marsh-Harrier,Circus spilonotus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2645,issf,easmah1,Eastern Marsh-Harrier (Eastern),Circus spilonotus spilonotus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,eamhar1 2646,issf,easmah2,Eastern Marsh-Harrier (Papuan),Circus spilonotus spilothorax,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,eamhar1 2647,species,swahar1,Swamp Harrier,Circus approximans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2648,species,reuhar1,Reunion Harrier,Circus maillardi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2649,issf,reuhar2,Reunion Harrier (Reunion),Circus maillardi maillardi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reuhar1 2650,issf,reuhar3,Reunion Harrier (Malagasy),Circus maillardi macrosceles,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reuhar1 2651,species,lowhar1,Long-winged Harrier,Circus buffoni,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2652,species,spohar1,Spotted Harrier,Circus assimilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2653,species,blahar1,Black Harrier,Circus maurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2654,species,cinhar1,Cinereous Harrier,Circus cinereus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2656,species,norhar1,Hen Harrier,Circus cyaneus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2657,species,norhar2,Northern Harrier,Circus hudsonius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2657.5,slash,norhar,Hen/Northern Harrier,Circus cyaneus/hudsonius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2658,species,palhar1,Pallid Harrier,Circus macrourus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2659,species,piehar1,Pied Harrier,Circus melanoleucos,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2660,species,monhar1,Montagu's Harrier,Circus pygargus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2660.4,slash,y00840,Hen/Montagu's Harrier,Circus cyaneus/pygargus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2660.5,slash,y00720,Pallid/Montagu's Harrier,Circus macrourus/pygargus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2661,spuh,harrie1,harrier sp.,Circus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2662,species,gybhaw1,Gray-bellied Hawk,Accipiter poliogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2663,species,cregos1,Crested Goshawk,Accipiter trivirgatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2674.1,species,sulgos1,Sulawesi Goshawk,Accipiter griseiceps,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2675,species,recgos1,Red-chested Goshawk,Accipiter toussenelii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2676,issf,recgos2,Red-chested Goshawk (Banded),Accipiter toussenelii macroscelides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,recgos1 2676.5,issf,recgos3,Red-chested Goshawk (Red-chested),Accipiter toussenelii toussenelii/canescens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,recgos1 2679,issf,recgos4,Red-chested Goshawk (Bioko),Accipiter toussenelii lopezi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,recgos1 2681,species,afrgos1,African Goshawk,Accipiter tachiro,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2681.5,issf,afrgos2,African Goshawk (Ethiopian),Accipiter tachiro unduliventer/croizati,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 2684,issf,afrgos3,African Goshawk (Eastern),Accipiter tachiro sparsimfasciatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 2685,issf,afrgos4,African Goshawk (Pemba),Accipiter tachiro pembaensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 2686,issf,afrgos5,African Goshawk (Southern),Accipiter tachiro tachiro,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 2687,species,chfspa1,Chestnut-flanked Sparrowhawk,Accipiter castanilius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2688,species,shikra1,Shikra,Accipiter badius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2695,species,nicspa1,Nicobar Sparrowhawk,Accipiter butleri,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2698,species,levspa1,Levant Sparrowhawk,Accipiter brevipes,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2699,species,grfhaw1,Chinese Sparrowhawk,Accipiter soloensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2700,species,fragos2,Frances's Goshawk,Accipiter francesiae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2705,species,sptgos1,Spot-tailed Goshawk,Accipiter trinotatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2706,species,vargos1,Variable Goshawk,Accipiter hiogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2706.2,issf,vargos2,Variable Goshawk (Lesser Sundas),Accipiter hiogaster sylvestris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,vargos1 2706.4,issf,vargos3,Variable Goshawk (Variable),Accipiter hiogaster [hiogaster Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,vargos1 2729,species,grygos1,Gray Goshawk,Accipiter novaehollandiae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2730,species,brogos1,Brown Goshawk,Accipiter fasciatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2730.2,slash,y01023,Variable/Brown Goshawk,Accipiter hiogaster/fasciatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2742,species,blmgos1,Black-mantled Goshawk,Accipiter melanochlamys,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2745,species,piegos1,Pied Goshawk,Accipiter albogularis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2751,species,necgos1,New Caledonia Goshawk,Accipiter haplochrous,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2752,species,fijgos1,Fiji Goshawk,Accipiter rufitorques,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2753,species,molgos1,Moluccan Goshawk,Accipiter henicogrammus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2754,species,slmgos1,Slaty-mantled Goshawk,Accipiter luteoschistaceus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2755,species,imispa1,Imitator Sparrowhawk,Accipiter imitator,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2756,species,gyhgos1,Gray-headed Goshawk,Accipiter poliocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2757,species,nebgos1,New Britain Goshawk,Accipiter princeps,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2758,species,tinhaw1,Tiny Hawk,Accipiter superciliosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2761,species,semhaw2,Semicollared Hawk,Accipiter collaris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2762,species,retspa1,Red-thighed Sparrowhawk,Accipiter erythropus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2765,species,litspa1,Little Sparrowhawk,Accipiter minullus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2766,species,japspa1,Japanese Sparrowhawk,Accipiter gularis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2770,species,smaspa1,Small Sparrowhawk,Accipiter nanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2771,species,besra1,Besra,Accipiter virgatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2782.5,slash,y00943,Japanese Sparrowhawk/Besra,Accipiter gularis/virgatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2783,species,runspa1,Rufous-necked Sparrowhawk,Accipiter erythrauchen,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2786,species,colspa1,Collared Sparrowhawk,Accipiter cirrocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2786.2,slash,y00841,Brown Goshawk/Collared Sparrowhawk,Accipiter fasciatus/cirrocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2790,species,nebspa1,New Britain Sparrowhawk,Accipiter brachyurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2791,species,vibspa1,Vinous-breasted Sparrowhawk,Accipiter rhodogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2795,species,madspa1,Madagascar Sparrowhawk,Accipiter madagascariensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2796,species,ovaspa2,Ovambo Sparrowhawk,Accipiter ovampensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2797,species,eurspa1,Eurasian Sparrowhawk,Accipiter nisus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2797.2,slash,y00842,Levant/Eurasian Sparrowhawk,Accipiter brevipes/nisus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2804,species,rucspa2,Rufous-chested Sparrowhawk,Accipiter rufiventris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2805,issf,rucspa3,Rufous-chested Sparrowhawk (Ethiopian),Accipiter rufiventris perspicillaris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rucspa2 2806,issf,rucspa4,Rufous-chested Sparrowhawk (Rufous-chested),Accipiter rufiventris rufiventris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rucspa2 2807,species,shshaw,Sharp-shinned Hawk,Accipiter striatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2808,issf,shshaw1,Sharp-shinned Hawk (Caribbean),Accipiter striatus [striatus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw 2812,issf,shshaw2,Sharp-shinned Hawk (Northern),Accipiter striatus [velox Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw 2812.2,issf,shshaw6,Sharp-shinned Hawk (Madrean),Accipiter striatus madrensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw 2816,issf,shshaw3,Sharp-shinned Hawk (White-breasted),Accipiter striatus chionogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw 2819,issf,shshaw4,Sharp-shinned Hawk (Plain-breasted),Accipiter striatus ventralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw 2820,issf,shshaw5,Sharp-shinned Hawk (Rufous-thighed),Accipiter striatus erythronemius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw 2821,species,coohaw,Cooper's Hawk,Accipiter cooperii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2822,slash,y00612,Sharp-shinned/Cooper's Hawk,Accipiter striatus/cooperii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2823,species,gunhaw1,Gundlach's Hawk,Accipiter gundlachi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2826,species,bichaw1,Bicolored Hawk,Accipiter bicolor,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2826.1,issf,bichaw2,Bicolored Hawk (Bicolored),Accipiter bicolor bicolor/fidens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bichaw1 2826.4,issf,bichaw3,Bicolored Hawk (Spotted),Accipiter bicolor pileatus/guttifer,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bichaw1 2826.7,issf,bichaw4,Bicolored Hawk (Chilean),Accipiter bicolor chilensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bichaw1 2826.8,species,blagos1,Black Goshawk,Accipiter melanoleucus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2827.1,species,hengos1,Henst's Goshawk,Accipiter henstii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2827.2,species,norgos,Northern Goshawk,Accipiter gentilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2827.25,issf,norgos1,Northern Goshawk (Eurasian),Accipiter gentilis [gentilis Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,norgos 2829,issf,norgos2,Northern Goshawk (American),Accipiter gentilis atricapillus/laingi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,norgos 2830.5,slash,y00666,Cooper's Hawk/Northern Goshawk,Accipiter cooperii/gentilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2831,species,meygos1,Meyer's Goshawk,Accipiter meyerianus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2832,spuh,accipi,Accipiter sp.,Accipiter sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2833,species,chsgos1,Chestnut-shouldered Goshawk,Erythrotriorchis buergersi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2833.3,species,redgos1,Red Goshawk,Erythrotriorchis radiatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2833.5,species,dorgos1,Doria's Goshawk,Megatriorchis doriae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2833.6,species,lothaw1,Long-tailed Hawk,Urotriorchis macrourus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2834,species,redkit1,Red Kite,Milvus milvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2835,issf,redkit2,Red Kite (Red),Milvus milvus milvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,redkit1 2854,issf,redkit3,Red Kite (Cape Verde),Milvus milvus fasciicauda,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,redkit1 2855,species,blakit1,Black Kite,Milvus migrans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2856,issf,blkkit1,Black Kite (Black),Milvus migrans [migrans Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,blakit1 2863,issf,blkkit2,Black Kite (Black-eared),Milvus migrans lineatus/formosanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,blakit1 2866,issf,blkkit3,Black Kite (Yellow-billed),Milvus migrans aegyptius/parasitus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,blakit1 2869,slash,y00611,Red/Black Kite,Milvus milvus/migrans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2870,species,whikit1,Whistling Kite,Haliastur sphenurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2871,species,brakit1,Brahminy Kite,Haliastur indus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2881,species,baleag,Bald Eagle,Haliaeetus leucocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2883.3,slash,y00944,Golden/Bald Eagle,Aquila chrysaetos/Haliaeetus leucocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2884,species,whteag,White-tailed Eagle,Haliaeetus albicilla,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2884.5,species,pafeag1,Pallas's Fish-Eagle,Haliaeetus leucoryphus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2885,species,stseag,Steller's Sea-Eagle,Haliaeetus pelagicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2885.5,species,wbseag1,White-bellied Sea-Eagle,Haliaeetus leucogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2885.6,species,solsee1,Sanford's Sea-Eagle,Haliaeetus sanfordi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2885.7,species,affeag1,African Fish-Eagle,Haliaeetus vocifer,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2885.8,species,mafeag1,Madagascar Fish-Eagle,Haliaeetus vociferoides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2886,species,lefeag1,Lesser Fish-Eagle,Haliaeetus humilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2889,species,gyhfie1,Gray-headed Fish-Eagle,Haliaeetus ichthyaetus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2889.5,slash,y00721,Lesser/Gray-headed Fish-Eagle,Haliaeetus humilis/ichthyaetus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2889.8,spuh,haliae1,Haliaeetus sp.,Haliaeetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2890,species,crahaw,Crane Hawk,Geranospiza caerulescens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2891,issf,crahaw1,Crane Hawk (Blackish),Geranospiza caerulescens [nigra Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crahaw 2896,issf,crahaw2,Crane Hawk (Gray),Geranospiza caerulescens caerulescens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crahaw 2897,issf,crahaw3,Crane Hawk (Banded),Geranospiza caerulescens gracilis/flexipes,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crahaw 2899,species,pluhaw,Plumbeous Hawk,Cryptoleucopteryx plumbea,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2900,species,slchaw2,Slate-colored Hawk,Buteogallus schistaceus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2901,species,comblh1,Common Black Hawk,Buteogallus anthracinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2902,issf,cobhaw,Common Black Hawk (Common),Buteogallus anthracinus anthracinus/utilensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,comblh1 2905,issf,mabhaw1,Common Black Hawk (Mangrove),Buteogallus anthracinus [subtilis Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,comblh1 2910,species,cubblh1,Cuban Black Hawk,Buteogallus gundlachii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2911,species,ruchaw1,Rufous Crab Hawk,Buteogallus aequinoctialis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2911.5,species,savhaw1,Savanna Hawk,Buteogallus meridionalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2912,species,whnhaw2,White-necked Hawk,Buteogallus lacernulatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2913,species,grbhaw1,Great Black Hawk,Buteogallus urubitinga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2915.5,slash,y00945,Common/Great Black Hawk,Buteogallus anthracinus/urubitinga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2916,species,soleag1,Solitary Eagle,Buteogallus solitarius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2919,species,croeag1,Chaco Eagle,Buteogallus coronatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2919.5,spuh,buteog1,Buteogallus sp.,Buteogallus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2920,species,barhaw1,Barred Hawk,Morphnarchus princeps,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2921,species,roahaw,Roadside Hawk,Rupornis magnirostris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2922,issf,roahaw2,Roadside Hawk (Cozumel I.),Rupornis magnirostris gracilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,roahaw 2923,issf,roahaw1,Roadside Hawk (Mainland),Rupornis magnirostris [magnirostris Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,roahaw 2934,species,hrshaw,Harris's Hawk,Parabuteo unicinctus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2935,issf,harhaw1,Harris's Hawk (Harris's),Parabuteo unicinctus harrisi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hrshaw 2936,issf,harhaw2,Harris's Hawk (Bay-winged),Parabuteo unicinctus unicinctus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hrshaw 2938,species,whrhaw1,White-rumped Hawk,Parabuteo leucorrhous,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2939,species,whthaw,White-tailed Hawk,Geranoaetus albicaudatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2943,species,rebhaw2,Variable Hawk,Geranoaetus polyosoma,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2944,form,punhaw1,Variable Hawk (Puna),Geranoaetus polyosoma (Puna),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 2945,form,rebhaw1,Variable Hawk (Red-backed),Geranoaetus polyosoma (Red-backed),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 2946,issf,varhaw1,Variable Hawk (Variable),Geranoaetus polyosoma polyosoma,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 2947,issf,varhaw2,Variable Hawk (Juan Fernandez),Geranoaetus polyosoma exsul,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 2948,species,bcbeag1,Black-chested Buzzard-Eagle,Geranoaetus melanoleucus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2949.3,spuh,gerano1,Geranoaetus sp.,Geranoaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2949.6,species,manhaw2,Mantled Hawk,Pseudastur polionotus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2950,species,whihaw1,White Hawk,Pseudastur albicollis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2951,issf,whihaw2,White Hawk (Snowy),Pseudastur albicollis ghiesbreghti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 2952,issf,whihaw3,White Hawk (White-shouldered),Pseudastur albicollis costaricensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 2953,issf,whihaw5,White Hawk (Black-winged),Pseudastur albicollis williaminae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 2954,issf,whihaw4,White Hawk (Black-tailed),Pseudastur albicollis albicollis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 2955,species,gybhaw2,Gray-backed Hawk,Pseudastur occidentalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2956,species,semhaw,Semiplumbeous Hawk,Leucopternis semiplumbeus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2957,species,blfhaw1,Black-faced Hawk,Leucopternis melanops,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2958,species,whbhaw2,White-browed Hawk,Leucopternis kuhli,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2958.2,species,gryhaw2,Gray Hawk,Buteo plagiatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2958.5,species,gryhaw3,Gray-lined Hawk,Buteo nitidus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2958.7,slash,gryhaw1,Gray/Gray-lined Hawk,Buteo plagiatus/nitidus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2959,species,reshaw,Red-shouldered Hawk,Buteo lineatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2959.2,issf,reshaw5,Red-shouldered Hawk (lineatus Group),Buteo lineatus [lineatus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reshaw 2961,issf,reshaw2,Red-shouldered Hawk (extimus),Buteo lineatus extimus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reshaw 2964.5,issf,reshaw4,Red-shouldered Hawk (elegans),Buteo lineatus elegans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reshaw 2964.7,hybrid,x00787,Common Black x Red-shouldered Hawk (hybrid),Buteogallus anthracinus x Buteo lineatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2965,species,ridhaw1,Ridgway's Hawk,Buteo ridgwayi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2966,species,brwhaw,Broad-winged Hawk,Buteo platypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2967,issf,brwhaw1,Broad-winged Hawk (Northern),Buteo platypterus platypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,brwhaw 2968,issf,brwhaw2,Broad-winged Hawk (Caribbean),Buteo platypterus [antillarum Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,brwhaw 2973.5,slash,y00773,Red-shouldered/Broad-winged Hawk,Buteo lineatus/platypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2977,species,hawhaw,Hawaiian Hawk,Buteo solitarius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2980,species,shthaw,Short-tailed Hawk,Buteo brachyurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2983,species,whthaw1,White-throated Hawk,Buteo albigula,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2984,species,swahaw,Swainson's Hawk,Buteo swainsoni,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2985,species,galhaw1,Galapagos Hawk,Buteo galapagoensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2986,species,zothaw,Zone-tailed Hawk,Buteo albonotatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2987,species,ruthaw1,Rufous-tailed Hawk,Buteo ventralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2989,species,rethaw,Red-tailed Hawk,Buteo jamaicensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 2990,issf,wrthaw1,Red-tailed Hawk (calurus/alascensis),Buteo jamaicensis calurus/alascensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 2992,issf,erthaw1,Red-tailed Hawk (borealis),Buteo jamaicensis borealis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 2993,form,rethaw4,Red-tailed Hawk (abieticola),Buteo jamaicensis abieticola,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 2994,issf,hrthaw1,Red-tailed Hawk (Harlan's),Buteo jamaicensis harlani,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 2995,issf,krthaw1,Red-tailed Hawk (Krider's),Buteo jamaicensis kriderii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 2996,issf,frthaw1,Red-tailed Hawk (fuertesi),Buteo jamaicensis fuertesi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 2997,issf,rethaw5,Red-tailed Hawk (kemsiesi/hadropus),Buteo jamaicensis kemsiesi/hadropus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 2999,issf,rethaw1,Red-tailed Hawk (costaricensis),Buteo jamaicensis costaricensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 3000,issf,rethaw6,Red-tailed Hawk (fumosus),Buteo jamaicensis fumosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 3001,issf,rethaw7,Red-tailed Hawk (socorroensis),Buteo jamaicensis socorroensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 3002,issf,rethaw8,Red-tailed Hawk (umbrinus),Buteo jamaicensis umbrinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 3003,issf,rethaw2,Red-tailed Hawk (jamaicensis),Buteo jamaicensis jamaicensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 3004,issf,rethaw3,Red-tailed Hawk (solitudinis),Buteo jamaicensis solitudinis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw 3005,hybrid,x00686,Red-shouldered x Red-tailed Hawk (hybrid),Buteo lineatus x jamaicensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3007,species,rolhaw,Rough-legged Hawk,Buteo lagopus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3007.2,hybrid,x00788,Swainson's x Rough-legged Hawk (hybrid),Buteo swainsoni x lagopus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3008,hybrid,x00731,Red-tailed x Rough-legged Hawk (hybrid),Buteo jamaicensis x lagopus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3010,species,ferhaw,Ferruginous Hawk,Buteo regalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3013,species,combuz1,Common Buzzard,Buteo buteo,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3014,issf,combuz7,Common Buzzard (Western),Buteo buteo buteo,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 3015,issf,combuz8,Common Buzzard (Corsican),Buteo buteo arrigonii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 3016,issf,combuz2,Common Buzzard (Azores),Buteo buteo rothschildi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 3017,issf,combuz3,Common Buzzard (Canary Is.),Buteo buteo insularum,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 3018,issf,combuz5,Common Buzzard (Steppe),Buteo buteo vulpinus/menetriesi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 3021,species,combuz9,Himalayan Buzzard,Buteo refectus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3021.5,slash,y00946,Common/Himalayan Buzzard,Buteo buteo/refectus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3022,species,combuz6,Eastern Buzzard,Buteo japonicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3024.5,slash,y00947,Common/Himalayan/Eastern Buzzard,Buteo buteo/refectus/japonicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3025,slash,y00948,Himalayan/Eastern Buzzard,Buteo refectus/japonicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3026,species,moubuz2,Mountain Buzzard,Buteo oreophilus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3027,species,moubuz3,Forest Buzzard,Buteo trizonatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3028,form,moubuz4,Elgin Buzzard (undescribed form),Buteo [undescribed form],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3029,species,madbuz1,Madagascar Buzzard,Buteo brachypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3030,species,combuz4,Cape Verde Buzzard,Buteo bannermani,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3030.1,species,socbuz1,Socotra Buzzard,Buteo socotraensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3031,species,lolbuz1,Long-legged Buzzard,Buteo rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3032,issf,lolbuz2,Long-legged Buzzard (Northern),Buteo rufinus rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lolbuz1 3033,issf,lolbuz3,Long-legged Buzzard (Atlas),Buteo rufinus cirtensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lolbuz1 3033.3,hybrid,x00766,Common x Long-legged Buzzard (hybrid),Buteo buteo x rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3033.4,slash,y01024,Common/Long-legged Buzzard,Buteo buteo/rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3033.5,species,uplbuz1,Upland Buzzard,Buteo hemilasius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3033.7,hybrid,x00789,Long-legged x Upland Buzzard (hybrid),Buteo rufinus x hemilasius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3033.9,slash,y00843,Long-legged/Upland Buzzard,Buteo rufinus/hemilasius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3034,species,renbuz1,Red-necked Buzzard,Buteo auguralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3035,species,augbuz1,Augur Buzzard,Buteo augur,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3036,species,arcbuz1,Archer's Buzzard,Buteo archeri,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3037,species,jacbuz1,Jackal Buzzard,Buteo rufofuscus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3038,spuh,buteo,Buteo sp.,Buteo sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3039,spuh,y00681,Geranoaetus/Buteo sp.,Geranoaetus/Buteo sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3040,spuh,y00221,Buteo/eagle sp.,Buteo/eagle sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3041,spuh,hawk,hawk sp.,Accipitridae sp. (hawk sp.),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3042,spuh,eagle1,eagle sp.,Accipitridae sp. (eagle sp.),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, 3225.02,species,grebus1,Great Bustard,Otis tarda,Otidiformes,Otididae (Bustards),Bustards, 3225.04,species,arabus1,Arabian Bustard,Ardeotis arabs,Otidiformes,Otididae (Bustards),, 3225.06,species,korbus1,Kori Bustard,Ardeotis kori,Otidiformes,Otididae (Bustards),, 3225.08,species,indbus1,Indian Bustard,Ardeotis nigriceps,Otidiformes,Otididae (Bustards),, 3225.1,species,ausbus1,Australian Bustard,Ardeotis australis,Otidiformes,Otididae (Bustards),, 3225.12,species,houbus1,Houbara Bustard,Chlamydotis undulata,Otidiformes,Otididae (Bustards),, 3225.14,issf,houbus2,Houbara Bustard (Canary Is.),Chlamydotis undulata fuertaventurae,Otidiformes,Otididae (Bustards),,houbus1 3225.16,issf,houbus3,Houbara Bustard (North African),Chlamydotis undulata undulata,Otidiformes,Otididae (Bustards),,houbus1 3225.18,species,macbus1,Macqueen's Bustard,Chlamydotis macqueenii,Otidiformes,Otididae (Bustards),, 3225.2,species,ludbus1,Ludwig's Bustard,Neotis ludwigii,Otidiformes,Otididae (Bustards),, 3225.22,species,stabus1,Denham's Bustard,Neotis denhami,Otidiformes,Otididae (Bustards),, 3225.225,issf,denbus1,Denham's Bustard (Denham's),Neotis denhami denhami,Otidiformes,Otididae (Bustards),,stabus1 3225.23,issf,denbus2,Denham's Bustard (Jackson's),Neotis denhami jacksoni,Otidiformes,Otididae (Bustards),,stabus1 3225.235,issf,denbus3,Denham's Bustard (Stanley's),Neotis denhami stanleyi,Otidiformes,Otididae (Bustards),,stabus1 3225.24,species,heubus1,Heuglin's Bustard,Neotis heuglinii,Otidiformes,Otididae (Bustards),, 3225.26,species,nubbus1,Nubian Bustard,Neotis nuba,Otidiformes,Otididae (Bustards),, 3225.28,species,whbbus2,White-bellied Bustard,Eupodotis senegalensis,Otidiformes,Otididae (Bustards),, 3225.282,issf,whbbus1,White-bellied Bustard (White-bellied),Eupodotis senegalensis [senegalensis Group],Otidiformes,Otididae (Bustards),,whbbus2 3225.296,issf,whbbus3,White-bellied Bustard (Barrow's),Eupodotis senegalensis barrowii,Otidiformes,Otididae (Bustards),,whbbus2 3225.3,species,blubus1,Blue Bustard,Eupodotis caerulescens,Otidiformes,Otididae (Bustards),, 3225.32,species,karbus1,Karoo Bustard,Eupodotis vigorsii,Otidiformes,Otididae (Bustards),, 3225.34,species,ruebus1,RŸppell's Bustard,Eupodotis rueppelii,Otidiformes,Otididae (Bustards),, 3225.36,species,libbus1,Little Brown Bustard,Eupodotis humilis,Otidiformes,Otididae (Bustards),, 3225.38,species,savbus1,Savile's Bustard,Eupodotis savilei,Otidiformes,Otididae (Bustards),, 3225.4,species,bucbus1,Buff-crested Bustard,Eupodotis gindiana,Otidiformes,Otididae (Bustards),, 3225.42,species,recbus1,Red-crested Bustard,Eupodotis ruficrista,Otidiformes,Otididae (Bustards),, 3225.44,species,blabus3,Black Bustard,Eupodotis afra,Otidiformes,Otididae (Bustards),, 3225.46,species,whqbus1,White-quilled Bustard,Eupodotis afraoides,Otidiformes,Otididae (Bustards),, 3225.48,species,bkbbus1,Black-bellied Bustard,Lissotis melanogaster,Otidiformes,Otididae (Bustards),, 3225.5,species,harbus2,Hartlaub's Bustard,Lissotis hartlaubii,Otidiformes,Otididae (Bustards),, 3225.52,species,benflo2,Bengal Florican,Houbaropsis bengalensis,Otidiformes,Otididae (Bustards),, 3225.54,species,lesflo2,Lesser Florican,Sypheotides indicus,Otidiformes,Otididae (Bustards),, 3225.56,species,litbus1,Little Bustard,Tetrax tetrax,Otidiformes,Otididae (Bustards),, 3225.59,spuh,bustar1,bustard sp.,Otididae sp.,Otidiformes,Otididae (Bustards),, 3226,species,whbmes2,White-breasted Mesite,Mesitornis variegatus,Mesitornithiformes,Mesitornithidae (Mesites),Mesites, 3227,species,bromes1,Brown Mesite,Mesitornis unicolor,Mesitornithiformes,Mesitornithidae (Mesites),, 3228,species,submes1,Subdesert Mesite,Monias benschi,Mesitornithiformes,Mesitornithidae (Mesites),, 3228.6,species,kagu1,Kagu,Rhynochetos jubatus,Eurypygiformes,Rhynochetidae (Kagu),Kagu, 3228.8,species,sunbit1,Sunbittern,Eurypyga helias,Eurypygiformes,Eurypygidae (Sunbittern),Sunbittern, 3251,species,nkurai1,Nkulengu Rail,Himantornis haematopus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)","Rails, Gallinules, and Allies", 3256,species,swirai1,Swinhoe's Rail,Coturnicops exquisitus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3257,species,yelrai,Yellow Rail,Coturnicops noveboracensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3258,issf,yelrai1,Yellow Rail (Northern),Coturnicops noveboracensis noveboracensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,yelrai 3259,issf,yelrai2,Yellow Rail (Goldman's),Coturnicops noveboracensis goldmani,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,yelrai 3260,species,sperai1,Speckled Rail,Coturnicops notatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3261,species,ocecra1,Ocellated Crake,Micropygia schomburgkii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3264,species,chfrai1,Chestnut Forest-Rail,Rallina rubra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3268,species,wsfrai1,White-striped Forest-Rail,Rallina leucospila,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3269,species,forrai1,Forbes's Rail,Rallina forbesi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3274,species,mayrai1,Mayr's Rail,Rallina mayri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3277,species,rencra1,Red-necked Crake,Rallina tricolor,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3278,species,andcra1,Andaman Crake,Rallina canningi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3278.5,form,grncra1,Great Nicobar Crake (undescribed form),Rallina [undescribed form],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3279,species,relcra1,Red-legged Crake,Rallina fasciata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3280,species,sllcra1,Slaty-legged Crake,Rallina eurizonoides,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3287,spuh,rallin1,Rallina sp.,Rallina sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3287.5,species,yebcra1,Yellow-breasted Crake,Hapalocrex flaviventer,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3288,species,rufcra2,Rusty-flanked Crake,Laterallus levraudi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3289,species,ruscra1,Rufous-sided Crake,Laterallus melanophaius,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3292,species,rudcra1,Ruddy Crake,Laterallus ruber,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3293,species,whtcra1,White-throated Crake,Laterallus albigularis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3294,issf,whtcra2,White-throated Crake (Rufous-faced),Laterallus albigularis albigularis/cerdaleus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,whtcra1 3296,issf,whtcra3,White-throated Crake (Gray-faced),Laterallus albigularis cinereiceps,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,whtcra1 3296.2,slash,y00844,Ruddy/White-throated Crake,Laterallus ruber/albigularis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3297,species,grbcra1,Gray-breasted Crake,Laterallus exilis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3298,species,galrai1,Galapagos Rail,Laterallus spilonota,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3299,species,blkrai,Black Rail,Laterallus jamaicensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3300,issf,blkrai1,Black Rail (Northern),Laterallus jamaicensis jamaicensis/coturniculus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,blkrai 3303,issf,blkrai2,Black Rail (Southern South America),Laterallus jamaicensis salinasi/murivagans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,blkrai 3306,issf,blkrai3,Black Rail (Junin),Laterallus jamaicensis tuerosi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,blkrai 3307,species,rawcra1,Red-and-white Crake,Laterallus leucopyrrhus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3307.2,slash,y01025,Rufous-sided/Red-and-white Crake,Laterallus melanophaius/leucopyrrhus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3308,species,rufcra1,Rufous-faced Crake,Laterallus xenopterus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3309,species,woorai1,Woodford's Rail,Nesoclopeus woodfordi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3309.2,issf,woorai2,Woodford's Rail (Bougainville),Nesoclopeus woodfordi tertius,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,woorai1 3309.4,issf,woorai3,Woodford's Rail (Santa Isabel),Nesoclopeus woodfordi immaculatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,woorai1 3309.6,issf,woorai4,Woodford's Rail (Guadalcanal),Nesoclopeus woodfordi woodfordi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,woorai1 3313,species,bawrai1,Bar-winged Rail,Nesoclopeus poecilopterus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3314,species,weka1,Weka,Gallirallus australis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3319,species,necrai1,New Caledonian Rail,Gallirallus lafresnayanus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3320,species,lohrai1,Lord Howe Rail,Gallirallus sylvestris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3321,species,okirai1,Okinawa Rail,Gallirallus okinawae,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3322,species,tahrai1,Tahiti Rail,Gallirallus pacificus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3323,species,bubrai1,Buff-banded Rail,Gallirallus philippensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3345,species,chirai1,Chatham Islands Rail,Gallirallus modestus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3347,species,dierai1,Dieffenbach's Rail,Gallirallus dieffenbachii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3348,species,nebrai1,New Britain Rail,Gallirallus insignis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3349,species,guarai1,Guam Rail,Gallirallus owstoni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3350,species,wairai1,Wake Island Rail,Gallirallus wakensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3351,species,barrai1,Barred Rail,Gallirallus torquatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3357,species,calrai1,Calayan Rail,Gallirallus calayanensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3358,species,rovrai1,Roviana Rail,Gallirallus rovianae,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3359,species,slbrai1,Slaty-breasted Rail,Gallirallus striatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3367,species,corcra,Corn Crake,Crex crex,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3368,species,rourai1,Rouget's Rail,Rougetius rougetii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3369,species,plarai1,Snoring Rail,Aramidopsis plateni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3370,species,inirai1,Inaccessible Island Rail,Atlantisia rogersi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3374.5,species,ridrai1,Ridgway's Rail,Rallus obsoletus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3375,issf,clarai3,Ridgway's Rail (San Francisco Bay),Rallus obsoletus obsoletus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 3376,issf,clarai4,Ridgway's Rail (Light-footed),Rallus obsoletus levipes,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 3377,issf,clarai6,Ridgway's Rail (South Baja),Rallus obsoletus beldingi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 3378,issf,clarai5,Ridgway's Rail (Yuma),Rallus obsoletus yumanensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 3379,species,kinrai2,Aztec Rail,Rallus tenuirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3384.3,species,manrai1,Mangrove Rail,Rallus longirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3384.4,issf,manrai2,Mangrove Rail (Fonseca),Rallus longirostris berryorum,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,manrai1 3384.5,issf,clarai10,Mangrove Rail (Ecuadorian),Rallus longirostris cypereti,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,manrai1 3389,issf,clarai8,Mangrove Rail (Atlantic),Rallus longirostris [longirostris Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,manrai1 3394.5,species,kinrai4,King Rail,Rallus elegans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3394.6,issf,kinrai1,King Rail (Northern),Rallus elegans elegans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,kinrai4 3394.8,issf,kinrai3,King Rail (Cuban),Rallus elegans ramsdeni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,kinrai4 3394.9,slash,kinrai,Aztec/King Rail,Rallus tenuirostris/elegans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3395,species,clarai11,Clapper Rail,Rallus crepitans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3395.2,issf,clarai1,Clapper Rail (Atlantic Coast),Rallus crepitans crepitans/waynei,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 3396,issf,clarai2,Clapper Rail (Gulf Coast),Rallus crepitans saturatus/scottii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 3397,issf,clarai7,Clapper Rail (Caribbean),Rallus crepitans [caribaeus Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 3398,issf,clarai9,Clapper Rail (Yucatan),Rallus crepitans [pallidus Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 3398.8,slash,clarai,Ridgway's/Mangrove/Clapper Rail,Rallus obsoletus/longirostris/crepitans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3399,slash,rallus,King/Clapper Rail,Rallus elegans/crepitans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3399.5,spuh,larrai1,large rail sp.,Rallus sp. (large Rallus sp.),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3400,species,plfrai1,Plain-flanked Rail,Rallus wetmorei,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3401,species,virrai,Virginia Rail,Rallus limicola,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3401.5,issf,virrai2,Virginia Rail (Virginia),Rallus limicola limicola/friedmanni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,virrai 3404,issf,virrai1,Virginia Rail (Ecuadorian),Rallus limicola aequatorialis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,virrai 3405,slash,y00602,King/Virginia Rail,Rallus elegans/limicola,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3406,species,bograi1,Bogota Rail,Rallus semiplumbeus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3409,species,ausrai1,Austral Rail,Rallus antarcticus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3410,species,watrai1,Water Rail,Rallus aquaticus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3414,species,bncrai1,Brown-cheeked Rail,Rallus indicus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3414.5,slash,y00949,Water/Brown-cheeked Rail,Rallus aquaticus/indicus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3415,species,afrrai1,African Rail,Rallus caerulescens,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3416,species,madrai1,Madagascar Rail,Rallus madagascariensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3417,spuh,rallus1,Rallus sp.,Rallus sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3418,species,luzrai1,Luzon Rail,Lewinia mirifica,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3419,species,lewrai1,Lewin's Rail,Lewinia pectoralis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3420,species,auirai1,Auckland Islands Rail,Lewinia muelleri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3421,species,whtrai1,White-throated Rail,Dryolimnas cuvieri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3422,species,afrcra1,African Crake,Crecopsis egregia,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3423,species,giwrai1,Giant Wood-Rail,Aramides ypecaha,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3424,species,brwrai1,Brown Wood-Rail,Aramides wolfi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3425,species,liwrai1,Little Wood-Rail,Aramides mangle,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3426,species,rnwrai1,Rufous-necked Wood-Rail,Aramides axillaris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3427,species,runwor1,Russet-naped Wood-Rail,Aramides albiventris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3428,species,gycwor1,Gray-cowled Wood-Rail,Aramides cajaneus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3429,issf,gycwor2,Gray-cowled Wood-Rail (Gray-cowled),Aramides cajaneus cajaneus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,gycwor1 3430,issf,gycwor3,Gray-cowled Wood-Rail (Gray-backed),Aramides cajaneus avicenniae,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,gycwor1 3438,slash,gnwrai1,Russet-naped/Gray-cowled Wood-Rail,Aramides albiventris/cajaneus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3447,species,rwwrai1,Red-winged Wood-Rail,Aramides calopterus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3448,species,sbwrai1,Slaty-breasted Wood-Rail,Aramides saracura,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3448.2,spuh,wood-r1,wood-rail sp.,Aramides sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3449,species,unicra1,Uniform Crake,Amaurolimnas concolor,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3453,species,bafrai2,Blue-faced Rail,Gymnocrex rosenbergii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3454,species,baerai1,Bare-eyed Rail,Gymnocrex plumbeiventris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3457,species,talrai1,Talaud Rail,Gymnocrex talaudensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3461,species,isabuh1,Isabelline Bush-hen,Amaurornis isabellina,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3462,species,plabuh1,Plain Bush-hen,Amaurornis olivacea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3463,species,whbwat1,White-breasted Waterhen,Amaurornis phoenicurus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3468,species,talbuh1,Talaud Bush-hen,Amaurornis magnirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3469,species,rutbuh1,Rufous-tailed Bush-hen,Amaurornis moluccana,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3471,species,whbcra1,White-browed Crake,Amaurornis cinerea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3477,species,strcra1,Striped Crake,Amaurornis marginalis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3480,species,chhcra1,Chestnut-headed Crake,Anurolimnas castaneiceps,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3483,species,ruccra1,Russet-crowned Crake,Anurolimnas viridis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3487,species,blbcra1,Black-banded Crake,Anurolimnas fasciatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3495,species,sora,Sora,Porzana carolina,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3496,species,spocra1,Spotted Crake,Porzana porzana,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3497,species,auscra1,Australian Crake,Porzana fluminea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3498,species,dowcra1,Dot-winged Crake,Porzana spiloptera,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3499,species,rubcra1,Ruddy-breasted Crake,Zapornia fusca,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3500,species,babcra1,Band-bellied Crake,Zapornia paykullii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3501,species,brocra1,Brown Crake,Zapornia akool,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3502,species,blacra1,Black Crake,Zapornia flavirostra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3503,species,litcra1,Little Crake,Zapornia parva,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3504,species,baicra1,Baillon's Crake,Zapornia pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3505,issf,baicra2,Baillon's Crake (Western),Zapornia pusilla intermedia,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,baicra1 3506,issf,baicra3,Baillon's Crake (Eastern),Zapornia pusilla pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,baicra1 3507,issf,baicra4,Baillon's Crake (Australasian),Zapornia pusilla [palustris Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,baicra1 3508,slash,y00950,Little/Baillon's Crake,Zapornia parva/pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3508.2,slash,y01026,Spotted/Little/Baillon's Crake,Porzana porzana/Zapornia parva/pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3509,species,layrai,Laysan Rail,Zapornia palmeri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3510,species,sakrai1,Sakalava Rail,Zapornia olivieri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3511,species,bltcra1,Black-tailed Crake,Zapornia bicolor,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3512,species,hawrai,Hawaiian Rail,Zapornia sandwichensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3513,species,heicra1,Henderson Island Crake,Zapornia atra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3514,species,spocra2,Spotless Crake,Zapornia tabuensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3515,species,koscra1,Kosrae Crake,Zapornia monasa,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3516,spuh,zaporn1,Zapornia sp.,Zapornia sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3521,spuh,porzan1,Hapalocrex/Porzana/Zapornia sp.,Hapalocrex/Porzana/Zapornia sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3522.3,species,spfgal1,Spot-flanked Gallinule,Porphyriops melanops,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3522.6,species,astcra1,Ash-throated Crake,Mustelirallus albicollis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3523,species,colcra2,Colombian Crake,Mustelirallus colombianus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3526,species,pabcra,Paint-billed Crake,Mustelirallus erythrops,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3529,species,zaprai1,Zapata Rail,Cyanolimnas cerverai,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3530,species,sporai,Spotted Rail,Pardirallus maculatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3533,species,blarai1,Blackish Rail,Pardirallus nigricans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3536,species,plurai1,Plumbeous Rail,Pardirallus sanguinolentus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3543,species,invrai1,Invisible Rail,Habroptila wallacii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3544,species,cherai1,Chestnut Rail,Eulabeornis castaneoventris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3547,species,ngfrai1,New Guinea Flightless Rail,Megacrex inepta,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3550,species,waterc1,Watercock,Gallicrex cinerea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3551,spuh,rail1,rail/crake sp.,Rallidae sp. (rail/crake sp.),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3552,species,allgal1,Allen's Gallinule,Porphyrio alleni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3554,species,purgal2,Purple Gallinule,Porphyrio martinica,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3556,species,azugal1,Azure Gallinule,Porphyrio flavirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3558,species,purswa1,Western Swamphen,Porphyrio porphyrio,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3560,species,purswa4,Black-backed Swamphen,Porphyrio indicus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3562,species,purswa2,African Swamphen,Porphyrio madagascariensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3564,species,takahe3,South Island Takahe,Porphyrio hochstetteri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3566,species,takahe2,North Island Takahe,Porphyrio mantelli,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3568,species,purswa6,Australasian Swamphen,Porphyrio melanotus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3569,species,purswa5,Philippine Swamphen,Porphyrio pulverulentus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3570,species,lohswa1,Lord Howe Swamphen,Porphyrio albus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3571,species,purswa3,Gray-headed Swamphen,Porphyrio poliocephalus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3571.3,hybrid,x00844,Black-backed x Gray-headed Swamphen (hybrid),Porphyrio indicus x poliocephalus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3571.6,slash,y00951,Black-backed/Gray-headed Swamphen,Porphyrio indicus/poliocephalus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3572,spuh,purswa,swamphen sp.,Porphyrio sp. (swamphen sp.),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3573,species,sacmoo1,Makira Moorhen,Gallinula silvestris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3574,species,trimoo1,Tristan Moorhen,Gallinula nesiotis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3575,issf,trimoo2,Tristan Moorhen (Tristan),Gallinula nesiotis nesiotis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,trimoo1 3576,issf,trimoo3,Tristan Moorhen (Gough),Gallinula nesiotis comeri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,trimoo1 3577,species,commoo3,Eurasian Moorhen,Gallinula chloropus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3583.5,species,comgal1,Common Gallinule,Gallinula galeata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3584,issf,commoo2,Common Gallinule (American),Gallinula galeata [galeata Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,comgal1 3590.5,issf,comgal2,Common Gallinule (Altiplano),Gallinula galeata garmani,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,comgal1 3591,issf,commoo1,Common Gallinule (Hawaiian),Gallinula galeata sandvicensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,comgal1 3591.5,slash,commoo,Eurasian Moorhen/Common Gallinule,Gallinula chloropus/galeata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3592,species,dusmoo1,Dusky Moorhen,Gallinula tenebrosa,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3596,species,lesmoo1,Lesser Moorhen,Gallinula angulata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3601,species,sammoo1,Samoan Moorhen,Gallinula pacifica,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3602,species,btnhen1,Black-tailed Nativehen,Tribonyx ventralis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3603,species,tanhen1,Tasmanian Nativehen,Tribonyx mortierii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3604,species,rekcoo1,Red-knobbed Coot,Fulica cristata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3605,species,regcoo1,Red-gartered Coot,Fulica armillata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3606,species,refcoo1,Red-fronted Coot,Fulica rufifrons,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3607,species,giacoo1,Giant Coot,Fulica gigantea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3608,species,horcoo1,Horned Coot,Fulica cornuta,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3609,species,eurcoo,Eurasian Coot,Fulica atra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3613.5,slash,y00680,Red-knobbed/Eurasian Coot,Fulica cristata/atra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3614,species,hawcoo,Hawaiian Coot,Fulica alai,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3614.5,species,y00475,American Coot,Fulica americana,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3615,form,amecoo,American Coot (Red-shielded),Fulica americana (Red-shielded),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,y00475 3619,form,carcoo1,American Coot (White-shielded),Fulica americana (White-shielded),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,y00475 3621,species,slccoo1,Slate-colored Coot,Fulica ardesiaca,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3621.3,form,slccoo2,Slate-colored Coot (White-billed),Fulica ardesiaca (White-billed),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,slccoo1 3621.6,form,slccoo3,Slate-colored Coot (Yellow-billed),Fulica ardesiaca (Yellow-billed),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,slccoo1 3621.8,hybrid,x00845,Red-gartered x Slate-colored Coot (hybrid),Fulica armillata x ardesiaca,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3622,species,whwcoo1,White-winged Coot,Fulica leucoptera,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3623,spuh,coot1,coot sp.,Fulica sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3624,spuh,y00614,gallinule/moorhen/coot sp.,Porphyrio/Gallinula/Fulica sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, 3624.002,species,gytrai1,Gray-throated Rail,Canirallus oculeus,Gruiformes,Sarothruridae (Flufftails),Flufftails, 3624.004,species,madwor1,Madagascar Wood-Rail,Canirallus kioloides,Gruiformes,Sarothruridae (Flufftails),, 3624.006,species,tsiwor1,Tsingy Wood-Rail,Canirallus beankaensis,Gruiformes,Sarothruridae (Flufftails),, 3624.03,species,whsflu1,White-spotted Flufftail,Sarothrura pulchra,Gruiformes,Sarothruridae (Flufftails),, 3624.04,issf,whsflu2,White-spotted Flufftail (Northern),Sarothrura pulchra [pulchra Group],Gruiformes,Sarothruridae (Flufftails),,whsflu1 3624.15,issf,whsflu3,White-spotted Flufftail (Southern),Sarothrura pulchra centralis,Gruiformes,Sarothruridae (Flufftails),,whsflu1 3624.18,species,busflu1,Buff-spotted Flufftail,Sarothrura elegans,Gruiformes,Sarothruridae (Flufftails),, 3624.27,species,recflu1,Red-chested Flufftail,Sarothrura rufa,Gruiformes,Sarothruridae (Flufftails),, 3624.39,species,chhflu1,Chestnut-headed Flufftail,Sarothrura lugens,Gruiformes,Sarothruridae (Flufftails),, 3624.48,species,stbflu1,Streaky-breasted Flufftail,Sarothrura boehmi,Gruiformes,Sarothruridae (Flufftails),, 3624.51,species,strflu1,Striped Flufftail,Sarothrura affinis,Gruiformes,Sarothruridae (Flufftails),, 3624.6,species,madflu1,Madagascar Flufftail,Sarothrura insularis,Gruiformes,Sarothruridae (Flufftails),, 3624.63,species,whwflu1,White-winged Flufftail,Sarothrura ayresi,Gruiformes,Sarothruridae (Flufftails),, 3624.66,species,slbflu1,Slender-billed Flufftail,Sarothrura watersi,Gruiformes,Sarothruridae (Flufftails),, 3624.68,spuh,flufft1,flufftail sp.,Sarothrura sp.,Gruiformes,Sarothruridae (Flufftails),, 3625,species,afrfin1,African Finfoot,Podica senegalensis,Gruiformes,Heliornithidae (Finfoots),Finfoots, 3630,species,masfin3,Masked Finfoot,Heliopais personatus,Gruiformes,Heliornithidae (Finfoots),, 3631,species,sungre1,Sungrebe,Heliornis fulica,Gruiformes,Heliornithidae (Finfoots),, 3692,species,limpki,Limpkin,Aramus guarauna,Gruiformes,Aramidae (Limpkin),Limpkin, 3692.2,issf,limpki1,Limpkin (Speckled),Aramus guarauna [pictus Group],Gruiformes,Aramidae (Limpkin),,limpki 3692.4,issf,limpki2,Limpkin (Brown-backed),Aramus guarauna guarauna,Gruiformes,Aramidae (Limpkin),,limpki 3697,species,gywtru1,Gray-winged Trumpeter,Psophia crepitans,Gruiformes,Psophiidae (Trumpeters),Trumpeters, 3697.2,issf,gywtru2,Gray-winged Trumpeter (Napo),Psophia crepitans napensis,Gruiformes,Psophiidae (Trumpeters),,gywtru1 3701,issf,pawtru3,Gray-winged Trumpeter (Ochre-winged),Psophia crepitans ochroptera,Gruiformes,Psophiidae (Trumpeters),,gywtru1 3701.2,issf,gywtru3,Gray-winged Trumpeter (Gray-winged),Psophia crepitans crepitans,Gruiformes,Psophiidae (Trumpeters),,gywtru1 3701.4,species,pawtru2,Pale-winged Trumpeter,Psophia leucoptera,Gruiformes,Psophiidae (Trumpeters),, 3703,species,dawtru1,Dark-winged Trumpeter,Psophia viridis,Gruiformes,Psophiidae (Trumpeters),, 3704,issf,dawtru4,Dark-winged Trumpeter (Green-backed),Psophia viridis viridis,Gruiformes,Psophiidae (Trumpeters),,dawtru1 3705,issf,dawtru2,Dark-winged Trumpeter (Dusky-backed),Psophia viridis dextralis,Gruiformes,Psophiidae (Trumpeters),,dawtru1 3705.2,issf,dawtru5,Dark-winged Trumpeter (Xingu),Psophia viridis interjecta,Gruiformes,Psophiidae (Trumpeters),,dawtru1 3706,issf,dawtru3,Dark-winged Trumpeter (Black-backed),Psophia viridis obscura,Gruiformes,Psophiidae (Trumpeters),,dawtru1 3706.5,spuh,trumpe1,trumpeter sp.,Psophia sp.,Gruiformes,Psophiidae (Trumpeters),, 3707,species,grccra1,Gray Crowned-Crane,Balearica regulorum,Gruiformes,Gruidae (Cranes),Cranes, 3710,species,blccra1,Black Crowned-Crane,Balearica pavonina,Gruiformes,Gruidae (Cranes),, 3713,species,demcra1,Demoiselle Crane,Anthropoides virgo,Gruiformes,Gruidae (Cranes),, 3714,species,blucra2,Blue Crane,Anthropoides paradiseus,Gruiformes,Gruidae (Cranes),, 3715,species,watcra2,Wattled Crane,Bugeranus carunculatus,Gruiformes,Gruidae (Cranes),, 3716,species,sibcra1,Siberian Crane,Leucogeranus leucogeranus,Gruiformes,Gruidae (Cranes),, 3717,species,sancra,Sandhill Crane,Antigone canadensis,Gruiformes,Gruidae (Cranes),, 3718,issf,sancra1,Sandhill Crane (canadensis),Antigone canadensis canadensis,Gruiformes,Gruidae (Cranes),,sancra 3718.5,issf,sancra2,Sandhill Crane (tabida/rowani),Antigone canadensis tabida/rowani,Gruiformes,Gruidae (Cranes),,sancra 3721,issf,sancra4,Sandhill Crane (pulla),Antigone canadensis pulla,Gruiformes,Gruidae (Cranes),,sancra 3722,issf,sancra5,Sandhill Crane (pratensis),Antigone canadensis pratensis,Gruiformes,Gruidae (Cranes),,sancra 3723,issf,sancra6,Sandhill Crane (nesiotes),Antigone canadensis nesiotes,Gruiformes,Gruidae (Cranes),,sancra 3724,species,sarcra1,Sarus Crane,Antigone antigone,Gruiformes,Gruidae (Cranes),, 3728,species,brolga1,Brolga,Antigone rubicunda,Gruiformes,Gruidae (Cranes),, 3729,species,whncra1,White-naped Crane,Antigone vipio,Gruiformes,Gruidae (Cranes),, 3730,species,comcra,Common Crane,Grus grus,Gruiformes,Gruidae (Cranes),, 3730.5,hybrid,x00657,Sandhill x Common Crane (hybrid),Antigone canadensis x Grus grus,Gruiformes,Gruidae (Cranes),, 3731,species,hoocra1,Hooded Crane,Grus monacha,Gruiformes,Gruidae (Cranes),, 3731.2,hybrid,x00884,Common x Hooded Crane (hybrid),Grus grus x monacha,Gruiformes,Gruidae (Cranes),, 3732,species,whocra,Whooping Crane,Grus americana,Gruiformes,Gruidae (Cranes),, 3733,hybrid,x00790,Sandhill x Whooping Crane (hybrid),Antigone canadensis x Grus americana,Gruiformes,Gruidae (Cranes),, 3733.2,species,blncra1,Black-necked Crane,Grus nigricollis,Gruiformes,Gruidae (Cranes),, 3734,species,reccra1,Red-crowned Crane,Grus japonensis,Gruiformes,Gruidae (Cranes),, 3734.01,spuh,crane1,crane sp.,Gruidae sp.,Gruiformes,Gruidae (Cranes),, 3734.04,species,snoshe2,Snowy Sheathbill,Chionis albus,Charadriiformes,Chionidae (Sheathbills),Shorebirds, 3734.08,species,blfshe1,Black-faced Sheathbill,Chionis minor,Charadriiformes,Chionidae (Sheathbills),, 3734.28,species,magplo1,Magellanic Plover,Pluvianellus socialis,Charadriiformes,Pluvianellidae (Magellanic Plover),, 3737,species,watkne1,Water Thick-knee,Burhinus vermiculatus,Charadriiformes,Burhinidae (Thick-knees),, 3740,species,eutkne1,Eurasian Thick-knee,Burhinus oedicnemus,Charadriiformes,Burhinidae (Thick-knees),, 3746,species,indthk1,Indian Thick-knee,Burhinus indicus,Charadriiformes,Burhinidae (Thick-knees),, 3747,species,setkne1,Senegal Thick-knee,Burhinus senegalensis,Charadriiformes,Burhinidae (Thick-knees),, 3748,species,sptkne1,Spotted Thick-knee,Burhinus capensis,Charadriiformes,Burhinidae (Thick-knees),, 3753,species,dstkne,Double-striped Thick-knee,Burhinus bistriatus,Charadriiformes,Burhinidae (Thick-knees),, 3758,species,petkne1,Peruvian Thick-knee,Burhinus superciliaris,Charadriiformes,Burhinidae (Thick-knees),, 3759,species,butkne1,Bush Thick-knee,Burhinus grallarius,Charadriiformes,Burhinidae (Thick-knees),, 3759.5,spuh,burhin1,Burhinus sp.,Burhinus sp.,Charadriiformes,Burhinidae (Thick-knees),, 3760,species,grtkne1,Great Thick-knee,Esacus recurvirostris,Charadriiformes,Burhinidae (Thick-knees),, 3761,species,beathk1,Beach Thick-knee,Esacus magnirostris,Charadriiformes,Burhinidae (Thick-knees),, 3764,species,egyplo1,Egyptian Plover,Pluvianus aegyptius,Charadriiformes,Pluvianidae (Egyptian Plover),, 3769,species,bkwsti,Black-winged Stilt,Himantopus himantopus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3770,species,piesti1,Pied Stilt,Himantopus leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3770.3,hybrid,x00830,Black-winged x Pied Stilt (hybrid),Himantopus himantopus x leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3770.6,slash,y00932,Black-winged/Pied Stilt,Himantopus himantopus/leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3771,species,blasti1,Black Stilt,Himantopus novaezelandiae,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3772,hybrid,x00459,Pied x Black Stilt (hybrid),Himantopus leucocephalus x novaezelandiae,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3773,species,bknsti,Black-necked Stilt,Himantopus mexicanus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3774,issf,bknsti1,Black-necked Stilt (Black-necked),Himantopus mexicanus mexicanus,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti 3775,issf,hawsti1,Black-necked Stilt (Hawaiian),Himantopus mexicanus knudseni,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti 3776,issf,bknsti2,Black-necked Stilt (White-backed),Himantopus mexicanus melanurus,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti 3777,intergrade,bknsti3,Black-necked Stilt (Black-necked x White-backed),Himantopus mexicanus mexicanus x melanurus,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti 3777.5,hybrid,x00846,Black-winged x Black-necked Stilt (hybrid),Himantopus himantopus x mexicanus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3778,species,bansti1,Banded Stilt,Cladorhynchus leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3779,species,pieavo1,Pied Avocet,Recurvirostra avosetta,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3780,species,renavo1,Red-necked Avocet,Recurvirostra novaehollandiae,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3781,species,andavo1,Andean Avocet,Recurvirostra andina,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3782,species,ameavo,American Avocet,Recurvirostra americana,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3783,hybrid,x00732,Black-necked Stilt x American Avocet (hybrid),Himantopus mexicanus x Recurvirostra americana,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3783.5,spuh,y00722,stilt/avocet sp.,Recurvirostridae sp.,Charadriiformes,Recurvirostridae (Stilts and Avocets),, 3784,species,ibisbi1,Ibisbill,Ibidorhyncha struthersii,Charadriiformes,Ibidorhynchidae (Ibisbill),, 3785,species,euroys1,Eurasian Oystercatcher,Haematopus ostralegus,Charadriiformes,Haematopodidae (Oystercatchers),, 3785.5,issf,euroys2,Eurasian Oystercatcher (Western),Haematopus ostralegus ostralegus/longipes,Charadriiformes,Haematopodidae (Oystercatchers),,euroys1 3788,issf,euroys3,Eurasian Oystercatcher (Far Eastern),Haematopus ostralegus osculans,Charadriiformes,Haematopodidae (Oystercatchers),,euroys1 3789,species,pieoys1,Pied Oystercatcher,Haematopus longirostris,Charadriiformes,Haematopodidae (Oystercatchers),, 3790,species,soioys1,South Island Oystercatcher,Haematopus finschi,Charadriiformes,Haematopodidae (Oystercatchers),, 3791,species,chaoys1,Chatham Oystercatcher,Haematopus chathamensis,Charadriiformes,Haematopodidae (Oystercatchers),, 3792,species,varoys1,Variable Oystercatcher,Haematopus unicolor,Charadriiformes,Haematopodidae (Oystercatchers),, 3793,species,soooys1,Sooty Oystercatcher,Haematopus fuliginosus,Charadriiformes,Haematopodidae (Oystercatchers),, 3796,species,ameoys,American Oystercatcher,Haematopus palliatus,Charadriiformes,Haematopodidae (Oystercatchers),, 3799,species,afroys1,African Oystercatcher,Haematopus moquini,Charadriiformes,Haematopodidae (Oystercatchers),, 3800,species,canoys1,Canarian Oystercatcher,Haematopus meadewaldoi,Charadriiformes,Haematopodidae (Oystercatchers),, 3801,species,blaoys1,Blackish Oystercatcher,Haematopus ater,Charadriiformes,Haematopodidae (Oystercatchers),, 3802,species,magoys1,Magellanic Oystercatcher,Haematopus leucopodus,Charadriiformes,Haematopodidae (Oystercatchers),, 3803,species,blkoys,Black Oystercatcher,Haematopus bachmani,Charadriiformes,Haematopodidae (Oystercatchers),, 3804,hybrid,x00006,American x Black Oystercatcher (hybrid),Haematopus palliatus x bachmani,Charadriiformes,Haematopodidae (Oystercatchers),, 3804.2,slash,y01027,American/Black Oystercatcher,Haematopus palliatus/bachmani,Charadriiformes,Haematopodidae (Oystercatchers),, 3805,spuh,oyster1,oystercatcher sp.,Haematopus sp.,Charadriiformes,Haematopodidae (Oystercatchers),, 3805.1,species,bkbplo,Black-bellied Plover,Pluvialis squatarola,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3805.2,species,eugplo,European Golden-Plover,Pluvialis apricaria,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3805.5,species,amgplo,American Golden-Plover,Pluvialis dominica,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3805.6,species,pagplo,Pacific Golden-Plover,Pluvialis fulva,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3805.7,slash,y00222,American/Pacific Golden-Plover (Lesser Golden-Plover),Pluvialis dominica/fulva,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3805.8,spuh,golplo,golden-plover sp.,Pluvialis apricaria/dominica/fulva,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3805.9,spuh,y00494,Black-bellied Plover/golden-plover sp.,Pluvialis sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3806,species,tatdot1,Tawny-throated Dotterel,Oreopholus ruficollis,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3807,species,norlap,Northern Lapwing,Vanellus vanellus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3808,species,lotlap1,Long-toed Lapwing,Vanellus crassirostris,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3809.8,species,blaplo1,Blacksmith Lapwing,Vanellus armatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3810,species,spwlap1,Spur-winged Lapwing,Vanellus spinosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3811,species,rivlap1,River Lapwing,Vanellus duvaucelii,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3812,species,yewlap2,Yellow-wattled Lapwing,Vanellus malabaricus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3813,species,blhlap1,Black-headed Lapwing,Vanellus tectus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3815,species,whhlap1,White-headed Lapwing,Vanellus albiceps,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3815.2,hybrid,x00885,Blacksmith x White-headed Lapwing (hybrid),Vanellus armatus x albiceps,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3816,species,senlap1,Senegal Lapwing,Vanellus lugubris,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3817,species,blwlap1,Black-winged Lapwing,Vanellus melanopterus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3820,species,crolap1,Crowned Lapwing,Vanellus coronatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3823,species,watlap1,Wattled Lapwing,Vanellus senegallus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3827,species,spblap1,Spot-breasted Lapwing,Vanellus melanocephalus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3829,species,brclap1,Brown-chested Lapwing,Vanellus superciliosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3829.5,species,gyhlap1,Gray-headed Lapwing,Vanellus cinereus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3830,species,rewlap1,Red-wattled Lapwing,Vanellus indicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3833,species,sunlap1,Javan Lapwing,Vanellus macropterus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3834,species,banlap1,Banded Lapwing,Vanellus tricolor,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3834.3,species,maslap1,Masked Lapwing,Vanellus miles,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3834.6,issf,maslap2,Masked Lapwing (Masked),Vanellus miles miles,Charadriiformes,Charadriidae (Plovers and Lapwings),,maslap1 3834.8,issf,maslap3,Masked Lapwing (Black-shouldered),Vanellus miles novaehollandiae,Charadriiformes,Charadriidae (Plovers and Lapwings),,maslap1 3837,species,soclap1,Sociable Lapwing,Vanellus gregarius,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3838,species,whtlap1,White-tailed Lapwing,Vanellus leucurus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3839,species,pielap1,Pied Lapwing,Vanellus cayanus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3840,species,soulap1,Southern Lapwing,Vanellus chilensis,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3841,issf,soulap2,Southern Lapwing (cayennensis),Vanellus chilensis cayennensis,Charadriiformes,Charadriidae (Plovers and Lapwings),,soulap1 3842,issf,soulap3,Southern Lapwing (lampronotus),Vanellus chilensis lampronotus,Charadriiformes,Charadriidae (Plovers and Lapwings),,soulap1 3843,issf,soulap4,Southern Lapwing (chilensis/fretensis),Vanellus chilensis chilensis/fretensis,Charadriiformes,Charadriidae (Plovers and Lapwings),,soulap1 3846,species,andlap1,Andean Lapwing,Vanellus resplendens,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3847.5,spuh,lapwin1,lapwing sp.,Vanellus sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3858,species,rebdot1,Red-breasted Dotterel,Charadrius obscurus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3858.2,issf,rebdot2,Red-breasted Dotterel (Northern),Charadrius obscurus aquilonius,Charadriiformes,Charadriidae (Plovers and Lapwings),,rebdot1 3858.4,issf,rebdot3,Red-breasted Dotterel (Southern),Charadrius obscurus obscurus,Charadriiformes,Charadriidae (Plovers and Lapwings),,rebdot1 3861,species,lesplo,Lesser Sand-Plover,Charadrius mongolus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3862,issf,lessap1,Lesser Sand-Plover (Tibetan),Charadrius mongolus [atrifrons Group],Charadriiformes,Charadriidae (Plovers and Lapwings),,lesplo 3866,issf,lessap2,Lesser Sand-Plover (Mongolian),Charadrius mongolus mongolus/stegmanni,Charadriiformes,Charadriidae (Plovers and Lapwings),,lesplo 3869,species,grsplo,Greater Sand-Plover,Charadrius leschenaultii,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3872,slash,y00648,Lesser/Greater Sand-Plover,Charadrius mongolus/leschenaultii,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3873,species,casplo1,Caspian Plover,Charadrius asiaticus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3874,species,colplo1,Collared Plover,Charadrius collaris,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3875,species,punplo1,Puna Plover,Charadrius alticola,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3876,species,twbplo1,Two-banded Plover,Charadrius falklandicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3877,species,dobplo1,Double-banded Plover,Charadrius bicinctus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3880,species,kitplo1,Kittlitz's Plover,Charadrius pecuarius,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3881,species,recplo1,Red-capped Plover,Charadrius ruficapillus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3882,species,malplo1,Malaysian Plover,Charadrius peronii,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3883,species,kenplo1,Kentish Plover,Charadrius alexandrinus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3884,issf,snoplo1,Kentish Plover (Kentish),Charadrius alexandrinus alexandrinus,Charadriiformes,Charadriidae (Plovers and Lapwings),,kenplo1 3885,issf,snoplo2,Kentish Plover (Indian),Charadrius alexandrinus seebohmi,Charadriiformes,Charadriidae (Plovers and Lapwings),,kenplo1 3886,issf,whfplo2,Kentish Plover (White-faced),Charadrius alexandrinus dealbatus,Charadriiformes,Charadriidae (Plovers and Lapwings),,kenplo1 3887,species,snoplo5,Snowy Plover,Charadrius nivosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3888,issf,snoplo3,Snowy Plover (nivosus),Charadrius nivosus nivosus,Charadriiformes,Charadriidae (Plovers and Lapwings),,snoplo5 3889,issf,snoplo4,Snowy Plover (occidentalis),Charadrius nivosus occidentalis,Charadriiformes,Charadriidae (Plovers and Lapwings),,snoplo5 3890,slash,snoplo,Kentish/Snowy Plover,Charadrius alexandrinus/nivosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3891,species,javplo1,Javan Plover,Charadrius javanicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3892,species,wilplo,Wilson's Plover,Charadrius wilsonia,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3896,species,corplo,Common Ringed Plover,Charadrius hiaticula,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3899,species,semplo,Semipalmated Plover,Charadrius semipalmatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3899.2,slash,y00845,Common Ringed/Semipalmated Plover,Charadrius hiaticula/semipalmatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3900,species,lobplo1,Long-billed Plover,Charadrius placidus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3901,species,pipplo,Piping Plover,Charadrius melodus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3902,species,madplo1,Madagascar Plover,Charadrius thoracicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3903,species,lirplo,Little Ringed Plover,Charadrius dubius,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3904,issf,lirplo1,Little Ringed Plover (curonicus),Charadrius dubius curonicus,Charadriiformes,Charadriidae (Plovers and Lapwings),,lirplo 3905,issf,lirplo2,Little Ringed Plover (dubius/jerdoni),Charadrius dubius dubius/jerdoni,Charadriiformes,Charadriidae (Plovers and Lapwings),,lirplo 3908,species,thbplo1,Three-banded Plover,Charadrius tricollaris,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3908.2,issf,thbplo2,Three-banded Plover (African),Charadrius tricollaris tricollaris,Charadriiformes,Charadriidae (Plovers and Lapwings),,thbplo1 3908.4,issf,thbplo3,Three-banded Plover (Madagascar),Charadrius tricollaris bifrontatus,Charadriiformes,Charadriidae (Plovers and Lapwings),,thbplo1 3911,species,forplo1,Forbes's Plover,Charadrius forbesi,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3912,species,whfplo1,White-fronted Plover,Charadrius marginatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3917,species,chbplo1,Chestnut-banded Plover,Charadrius pallidus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3921,species,killde,Killdeer,Charadrius vociferus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3924.5,species,mouplo,Mountain Plover,Charadrius montanus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3925,species,oriplo1,Oriental Plover,Charadrius veredus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3926,species,eurdot,Eurasian Dotterel,Charadrius morinellus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3927,species,sthplo1,St. Helena Plover,Charadrius sanctaehelenae,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3928,species,rucdot1,Rufous-chested Dotterel,Charadrius modestus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3930,spuh,smaplo1,small plover sp.,Charadrius sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3930.3,species,rekdot1,Red-kneed Dotterel,Erythrogonys cinctus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3930.5,species,hooplo2,Hooded Plover,Thinornis cucullatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3931,species,shoplo1,Shore Plover,Thinornis novaeseelandiae,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3932,species,blfdot1,Black-fronted Dotterel,Elseyornis melanops,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3933,species,inldot2,Inland Dotterel,Peltohyas australis,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3934,species,wrybil1,Wrybill,Anarhynchus frontalis,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3934.5,species,diaplo1,Diademed Sandpiper-Plover,Phegornis mitchellii,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3938,spuh,plover2,plover sp.,Charadriidae sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, 3938.1,species,plawan1,Plains-wanderer,Pedionomus torquatus,Charadriiformes,Pedionomidae (Plains-wanderer),, 3938.2,species,rubsee2,Rufous-bellied Seedsnipe,Attagis gayi,Charadriiformes,Thinocoridae (Seedsnipes),, 3938.6,species,whbsee2,White-bellied Seedsnipe,Attagis malouinus,Charadriiformes,Thinocoridae (Seedsnipes),, 3938.7,species,gybsee1,Gray-breasted Seedsnipe,Thinocorus orbignyianus,Charadriiformes,Thinocoridae (Seedsnipes),, 3939,species,leasee1,Least Seedsnipe,Thinocorus rumicivorus,Charadriiformes,Thinocoridae (Seedsnipes),, 3939.5,species,grpsni1,Greater Painted-Snipe,Rostratula benghalensis,Charadriiformes,Rostratulidae (Painted-Snipes),, 3939.6,species,auspas1,Australian Painted-Snipe,Rostratula australis,Charadriiformes,Rostratulidae (Painted-Snipes),, 3939.7,species,soapas1,South American Painted-Snipe,Nycticryphes semicollaris,Charadriiformes,Rostratulidae (Painted-Snipes),, 3940,species,lesjac1,Lesser Jacana,Microparra capensis,Charadriiformes,Jacanidae (Jacanas),, 3941,species,afrjac1,African Jacana,Actophilornis africanus,Charadriiformes,Jacanidae (Jacanas),, 3942,species,madjac1,Madagascar Jacana,Actophilornis albinucha,Charadriiformes,Jacanidae (Jacanas),, 3943,species,cocjac1,Comb-crested Jacana,Irediparra gallinacea,Charadriiformes,Jacanidae (Jacanas),, 3947,species,phtjac1,Pheasant-tailed Jacana,Hydrophasianus chirurgus,Charadriiformes,Jacanidae (Jacanas),, 3948,species,brwjac1,Bronze-winged Jacana,Metopidius indicus,Charadriiformes,Jacanidae (Jacanas),, 3949,species,norjac,Northern Jacana,Jacana spinosa,Charadriiformes,Jacanidae (Jacanas),, 3953,species,watjac1,Wattled Jacana,Jacana jacana,Charadriiformes,Jacanidae (Jacanas),, 3954,issf,watjac2,Wattled Jacana (Black-backed),Jacana jacana hypomelaena,Charadriiformes,Jacanidae (Jacanas),,watjac1 3954.5,issf,watjac3,Wattled Jacana (Chestnut-backed),Jacana jacana [jacana Group],Charadriiformes,Jacanidae (Jacanas),,watjac1 3954.7,hybrid,x00791,Northern x Wattled Jacana (hybrid),Jacana spinosa x jacana,Charadriiformes,Jacanidae (Jacanas),, 3954.9,slash,y00846,Northern/Wattled Jacana,Jacana spinosa/jacana,Charadriiformes,Jacanidae (Jacanas),, 3959.5,spuh,jacana1,jacana sp.,Jacanidae sp.,Charadriiformes,Jacanidae (Jacanas),, 3991,species,uplsan,Upland Sandpiper,Bartramia longicauda,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 3993,species,brtcur,Bristle-thighed Curlew,Numenius tahitiensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 3994,species,whimbr,Whimbrel,Numenius phaeopus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 3994.5,form,whimbr5,Whimbrel (White-rumped),Numenius phaeopus phaeopus/alboaxillaris/variegatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr 3995,issf,whimbr1,Whimbrel (European),Numenius phaeopus phaeopus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr 3997,issf,whimbr4,Whimbrel (Steppe),Numenius phaeopus alboaxillaris,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr 3998,issf,whimbr2,Whimbrel (Siberian),Numenius phaeopus variegatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr 3999,issf,whimbr3,Whimbrel (Hudsonian),Numenius phaeopus hudsonicus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr 3999.5,species,litcur,Little Curlew,Numenius minutus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 3999.7,species,eskcur,Eskimo Curlew,Numenius borealis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4006,species,lobcur,Long-billed Curlew,Numenius americanus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4006.5,species,faecur,Far Eastern Curlew,Numenius madagascariensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4007,species,slbcur,Slender-billed Curlew,Numenius tenuirostris,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4007.5,species,eurcur,Eurasian Curlew,Numenius arquata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4008,slash,y00774,Whimbrel/Eurasian Curlew,Numenius phaeopus/arquata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4008.5,slash,y00952,Far Eastern/Eurasian Curlew,Numenius madagascariensis/arquata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4009,spuh,curlew1,curlew sp.,Numenius sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4009.3,species,batgod,Bar-tailed Godwit,Limosa lapponica,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4009.5,issf,batgod1,Bar-tailed Godwit (European),Limosa lapponica lapponica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,batgod 4009.7,issf,batgod2,Bar-tailed Godwit (Siberian),Limosa lapponica baueri/menzbieri,Charadriiformes,Scolopacidae (Sandpipers and Allies),,batgod 4010,species,bktgod,Black-tailed Godwit,Limosa limosa,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4011,issf,bktgod1,Black-tailed Godwit (islandica),Limosa limosa islandica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,bktgod 4012,issf,bktgod2,Black-tailed Godwit (limosa),Limosa limosa limosa,Charadriiformes,Scolopacidae (Sandpipers and Allies),,bktgod 4013,issf,bktgod3,Black-tailed Godwit (melanuroides),Limosa limosa melanuroides,Charadriiformes,Scolopacidae (Sandpipers and Allies),,bktgod 4014,species,hudgod,Hudsonian Godwit,Limosa haemastica,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4019,species,margod,Marbled Godwit,Limosa fedoa,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4022,spuh,godwit1,godwit sp.,Limosa sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4023,species,rudtur,Ruddy Turnstone,Arenaria interpres,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4026,species,blktur,Black Turnstone,Arenaria melanocephala,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4026.2,species,kirsan1,Kiritimati Sandpiper,Prosobonia cancellata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4026.4,species,whwsan1,White-winged Sandpiper,Prosobonia leucoptera,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4026.6,species,moosan1,Moorea Sandpiper,Prosobonia ellisi,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4026.8,species,tuasan1,Tuamotu Sandpiper,Prosobonia parvirostris,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4028,species,grekno,Great Knot,Calidris tenuirostris,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4029,species,redkno,Red Knot,Calidris canutus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4035.2,species,surfbi,Surfbird,Calidris virgata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4035.4,hybrid,x00733,Great Knot x Surfbird (hybrid),Calidris tenuirostris x virgata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4035.5,hybrid,x00675,Red Knot x Surfbird (hybrid),Calidris canutus x virgata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4036,species,ruff,Ruff,Calidris pugnax,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4037,species,brbsan,Broad-billed Sandpiper,Calidris falcinellus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4052,species,shtsan,Sharp-tailed Sandpiper,Calidris acuminata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4053,species,stisan,Stilt Sandpiper,Calidris himantopus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4054,species,cursan,Curlew Sandpiper,Calidris ferruginea,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4055,species,temsti,Temminck's Stint,Calidris temminckii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4056,species,lotsti,Long-toed Stint,Calidris subminuta,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4057,species,spbsan1,Spoon-billed Sandpiper,Calidris pygmea,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4058,species,rensti,Red-necked Stint,Calidris ruficollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4059,species,sander,Sanderling,Calidris alba,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4060,species,dunlin,Dunlin,Calidris alpina,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4061,issf,dunlin1,Dunlin (pacifica/arcticola),Calidris alpina pacifica/arcticola,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin 4064,issf,dunlin2,Dunlin (hudsonia),Calidris alpina hudsonia,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin 4065,issf,dunlin3,Dunlin (arctica),Calidris alpina arctica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin 4066,issf,dunlin4,Dunlin (schinzii),Calidris alpina schinzii,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin 4067,issf,dunlin5,Dunlin (alpina),Calidris alpina alpina,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin 4067.5,issf,dunlin6,Dunlin (sakhalina Group),Calidris alpina [sakhalina Group],Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin 4071,species,rocsan,Rock Sandpiper,Calidris ptilocnemis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4071.1,issf,rocsan2,Rock Sandpiper (ptilocnemis),Calidris ptilocnemis ptilocnemis,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan 4071.2,form,rocsan5,Rock Sandpiper (quarta/tschuktschorum/couesi),Calidris ptilocnemis quarta/tschuktschorum/couesi,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan 4071.3,issf,rocsan4,Rock Sandpiper (quarta),Calidris ptilocnemis quarta,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan 4071.4,issf,rocsan1,Rock Sandpiper (tschuktschorum),Calidris ptilocnemis tschuktschorum,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan 4071.5,issf,rocsan3,Rock Sandpiper (couesi),Calidris ptilocnemis couesi,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan 4072,species,pursan,Purple Sandpiper,Calidris maritima,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4072.5,hybrid,x00433,Dunlin x Purple Sandpiper (hybrid),Calidris alpina x maritima,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4072.8,slash,y00953,Rock/Purple Sandpiper,Calidris ptilocnemis/maritima,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4073,species,baisan,Baird's Sandpiper,Calidris bairdii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4074,species,litsti,Little Stint,Calidris minuta,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4074.5,slash,y00497,Red-necked/Little Stint,Calidris ruficollis/minuta,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4076,species,leasan,Least Sandpiper,Calidris minutilla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4077,species,whrsan,White-rumped Sandpiper,Calidris fuscicollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4077.1,hybrid,x00430,Dunlin x White-rumped Sandpiper (hybrid),Calidris alpina x fuscicollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078,species,bubsan,Buff-breasted Sandpiper,Calidris subruficollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.01,hybrid,x00431,White-rumped x Buff-breasted Sandpiper (hybrid),Calidris fuscicollis x subruficollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.02,species,pecsan,Pectoral Sandpiper,Calidris melanotos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.03,slash,y00705,Sharp-tailed/Pectoral Sandpiper,Calidris acuminata/melanotos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.04,hybrid,x00432,Cox's Sandpiper (hybrid),Calidris ferruginea x melanotos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.05,species,semsan,Semipalmated Sandpiper,Calidris pusilla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.06,species,wessan,Western Sandpiper,Calidris mauri,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.07,slash,y00496,Semipalmated/Western Sandpiper,Calidris pusilla/mauri,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.08,spuh,calidr,peep sp.,Calidris sp. (peep sp.),Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.09,spuh,calidr1,Calidris sp.,Calidris sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4078.095,species,asidow1,Asian Dowitcher,Limnodromus semipalmatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4080,species,shbdow,Short-billed Dowitcher,Limnodromus griseus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4081,issf,shbdow1,Short-billed Dowitcher (griseus),Limnodromus griseus griseus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,shbdow 4082,issf,shbdow2,Short-billed Dowitcher (hendersoni),Limnodromus griseus hendersoni,Charadriiformes,Scolopacidae (Sandpipers and Allies),,shbdow 4083,issf,shbdow3,Short-billed Dowitcher (caurinus),Limnodromus griseus caurinus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,shbdow 4084,species,lobdow,Long-billed Dowitcher,Limnodromus scolopaceus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4085,slash,dowitc,Short-billed/Long-billed Dowitcher,Limnodromus griseus/scolopaceus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086,species,jacsni,Jack Snipe,Lymnocryptes minimus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.1,species,eurwoo,Eurasian Woodcock,Scolopax rusticola,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.2,species,amawoo1,Amami Woodcock,Scolopax mira,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.3,species,bukwoo1,Bukidnon Woodcock,Scolopax bukidnonensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.4,species,duswoo4,Javan Woodcock,Scolopax saturata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.5,species,duswoo3,New Guinea Woodcock,Scolopax rosenbergii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.6,species,sulwoo1,Sulawesi Woodcock,Scolopax celebensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.7,species,molwoo1,Moluccan Woodcock,Scolopax rochussenii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4086.8,species,amewoo,American Woodcock,Scolopax minor,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4087,species,noisni1,North Island Snipe,Coenocorypha barrierensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4088,species,soisni1,South Island Snipe,Coenocorypha iredalei,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4089,species,forsni1,Forbes's Snipe,Coenocorypha chathamica,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4090,species,chisni1,Chatham Islands Snipe,Coenocorypha pusilla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4091,species,snisni1,Snares Island Snipe,Coenocorypha huegeli,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4092,species,subsni1,Subantarctic Snipe,Coenocorypha aucklandica,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4093,species,impsni1,Imperial Snipe,Gallinago imperialis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4094,species,andsni1,Jameson's Snipe,Gallinago jamesoni,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4095,species,fuesni1,Fuegian Snipe,Gallinago stricklandii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4097,species,solsni1,Solitary Snipe,Gallinago solitaria,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4100,species,latsni1,Latham's Snipe,Gallinago hardwickii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4101,species,woosni1,Wood Snipe,Gallinago nemoricola,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4102,species,gresni1,Great Snipe,Gallinago media,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4102.3,species,comsni,Common Snipe,Gallinago gallinago,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4102.7,hybrid,x00792,Great x Common Snipe (hybrid),Gallinago media x gallinago,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4103,species,wilsni1,Wilson's Snipe,Gallinago delicata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4107,slash,y00477,Common/Wilson's Snipe,Gallinago gallinago/delicata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4108,species,soasni1,South American Snipe,Gallinago paraguaiae,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4109,issf,soasni2,South American Snipe (South American),Gallinago paraguaiae paraguaiae,Charadriiformes,Scolopacidae (Sandpipers and Allies),,soasni1 4110,issf,soasni3,South American Snipe (Magellanic),Gallinago paraguaiae magellanica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,soasni1 4111,species,punsni1,Puna Snipe,Gallinago andina,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4112,species,nobsni1,Noble Snipe,Gallinago nobilis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4119,species,pitsni,Pin-tailed Snipe,Gallinago stenura,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4119.2,slash,y00847,Common/Pin-tailed Snipe,Gallinago gallinago/stenura,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4120,species,swisni1,Swinhoe's Snipe,Gallinago megala,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4120.5,slash,y00723,Pin-tailed/Swinhoe's Snipe,Gallinago stenura/megala,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4121,species,afrsni1,African Snipe,Gallinago nigripennis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4125,species,madsni1,Madagascar Snipe,Gallinago macrodactyla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4125.5,species,giasni1,Giant Snipe,Gallinago undulata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4126,spuh,snipe2,snipe sp.,Gallinago sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4135.5,species,tersan,Terek Sandpiper,Xenus cinereus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4136,species,wilpha,Wilson's Phalarope,Phalaropus tricolor,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4137,species,renpha,Red-necked Phalarope,Phalaropus lobatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4138,species,redpha1,Red Phalarope,Phalaropus fulicarius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4138.5,slash,y00635,Red-necked/Red Phalarope,Phalaropus lobatus/fulicarius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139,spuh,phalar,phalarope sp.,Phalaropus sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.01,species,comsan,Common Sandpiper,Actitis hypoleucos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.02,species,sposan,Spotted Sandpiper,Actitis macularius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.03,slash,y00668,Common/Spotted Sandpiper,Actitis hypoleucos/macularius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.04,species,grnsan,Green Sandpiper,Tringa ochropus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.05,species,solsan,Solitary Sandpiper,Tringa solitaria,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.06,issf,solsan1,Solitary Sandpiper (solitaria),Tringa solitaria solitaria,Charadriiformes,Scolopacidae (Sandpipers and Allies),,solsan 4139.07,issf,solsan2,Solitary Sandpiper (cinnamomea),Tringa solitaria cinnamomea,Charadriiformes,Scolopacidae (Sandpipers and Allies),,solsan 4139.08,species,gyttat1,Gray-tailed Tattler,Tringa brevipes,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.09,species,wantat1,Wandering Tattler,Tringa incana,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.1,slash,y00495,Gray-tailed/Wandering Tattler,Tringa brevipes/incana,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.11,species,spored,Spotted Redshank,Tringa erythropus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.12,species,greyel,Greater Yellowlegs,Tringa melanoleuca,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.13,species,comgre,Common Greenshank,Tringa nebularia,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.14,species,norgre1,Nordmann's Greenshank,Tringa guttifer,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.15,slash,y00954,Common/Nordmann's Greenshank,Tringa nebularia/guttifer,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.16,species,willet1,Willet,Tringa semipalmata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.17,issf,willet2,Willet (Eastern),Tringa semipalmata semipalmata,Charadriiformes,Scolopacidae (Sandpipers and Allies),,willet1 4139.18,issf,willet3,Willet (Western),Tringa semipalmata inornata,Charadriiformes,Scolopacidae (Sandpipers and Allies),,willet1 4139.19,species,lesyel,Lesser Yellowlegs,Tringa flavipes,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.2,slash,y00476,Greater/Lesser Yellowlegs,Tringa melanoleuca/flavipes,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.21,species,marsan,Marsh Sandpiper,Tringa stagnatilis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.22,species,woosan,Wood Sandpiper,Tringa glareola,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.23,species,comred1,Common Redshank,Tringa totanus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.24,spuh,tringa1,Tringa sp.,Tringa sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.3,spuh,scolop1,Scolopacidae sp.,Scolopacidae sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4139.6,spuh,larsho1,large shorebird sp.,Scolopacidae sp. (large shorebird sp.),Charadriiformes,Scolopacidae (Sandpipers and Allies),, 4140,species,smabut2,Small Buttonquail,Turnix sylvaticus,Charadriiformes,Turnicidae (Buttonquail),, 4150,species,rebbut2,Red-backed Buttonquail,Turnix maculosus,Charadriiformes,Turnicidae (Buttonquail),, 4165,species,hotbut2,Hottentot Buttonquail,Turnix hottentottus,Charadriiformes,Turnicidae (Buttonquail),, 4166,issf,hotbut3,Hottentot Buttonquail (Black-rumped),Turnix hottentottus nanus,Charadriiformes,Turnicidae (Buttonquail),,hotbut2 4167,issf,hotbut1,Hottentot Buttonquail (Hottentot),Turnix hottentottus hottentottus,Charadriiformes,Turnicidae (Buttonquail),,hotbut2 4168,species,yelbut1,Yellow-legged Buttonquail,Turnix tanki,Charadriiformes,Turnicidae (Buttonquail),, 4171,species,spobut2,Spotted Buttonquail,Turnix ocellatus,Charadriiformes,Turnicidae (Buttonquail),, 4174,species,barbut1,Barred Buttonquail,Turnix suscitator,Charadriiformes,Turnicidae (Buttonquail),, 4193,species,madbut1,Madagascar Buttonquail,Turnix nigricollis,Charadriiformes,Turnicidae (Buttonquail),, 4194,species,blbbut2,Black-breasted Buttonquail,Turnix melanogaster,Charadriiformes,Turnicidae (Buttonquail),, 4195,species,chbbut2,Chestnut-backed Buttonquail,Turnix castanotus,Charadriiformes,Turnicidae (Buttonquail),, 4196,species,bubbut1,Buff-breasted Buttonquail,Turnix olivii,Charadriiformes,Turnicidae (Buttonquail),, 4197,species,paibut,Painted Buttonquail,Turnix varius,Charadriiformes,Turnicidae (Buttonquail),, 4197.1,issf,paibut1,Painted Buttonquail (New Caledonian),Turnix varius novaecaledoniae,Charadriiformes,Turnicidae (Buttonquail),,paibut 4197.2,issf,paibut2,Painted Buttonquail (Painted),Turnix varius varius/scintillans,Charadriiformes,Turnicidae (Buttonquail),,paibut 4201,species,luzbut1,Luzon Buttonquail,Turnix worcesteri,Charadriiformes,Turnicidae (Buttonquail),, 4202,species,sumbut1,Sumba Buttonquail,Turnix everetti,Charadriiformes,Turnicidae (Buttonquail),, 4203,species,recbut1,Red-chested Buttonquail,Turnix pyrrhothorax,Charadriiformes,Turnicidae (Buttonquail),, 4204,species,litbut1,Little Buttonquail,Turnix velox,Charadriiformes,Turnicidae (Buttonquail),, 4205,spuh,button1,buttonquail sp.,Turnix sp.,Charadriiformes,Turnicidae (Buttonquail),, 4206,species,quail-1,Quail-plover,Ortyxelos meiffrenii,Charadriiformes,Turnicidae (Buttonquail),, 4207,species,craplo1,Crab-Plover,Dromas ardeola,Charadriiformes,Dromadidae (Crab-Plover),, 4208,species,crccou1,Cream-colored Courser,Cursorius cursor,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4211.5,species,somcou1,Somali Courser,Cursorius somalensis,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4214,species,burcou2,Burchell's Courser,Cursorius rufus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4215,species,temcou1,Temminck's Courser,Cursorius temminckii,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4216,species,indcou1,Indian Courser,Cursorius coromandelicus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4217,species,dobcou2,Double-banded Courser,Smutsornis africanus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4226,species,thbcou1,Three-banded Courser,Rhinoptilus cinctus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4230,species,brwcou1,Bronze-winged Courser,Rhinoptilus chalcopterus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4231,species,jercou1,Jerdon's Courser,Rhinoptilus bitorquatus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4231.5,spuh,course1,courser sp.,Glareolidae sp. (courser sp.),Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4232,species,auspra1,Australian Pratincole,Stiltia isabella,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4233,species,colpra,Collared Pratincole,Glareola pratincola,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4237,species,oripra,Oriental Pratincole,Glareola maldivarum,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4237.5,slash,y00775,Collared/Oriental Pratincole,Glareola pratincola/maldivarum,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4238,species,blwpra1,Black-winged Pratincole,Glareola nordmanni,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4238.5,slash,y00776,Collared/Black-winged Pratincole,Glareola pratincola/nordmanni,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4239,species,madpra1,Madagascar Pratincole,Glareola ocularis,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4240,species,rocpra1,Rock Pratincole,Glareola nuchalis,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4241,issf,rocpra2,Rock Pratincole (Rufous-naped),Glareola nuchalis liberiae,Charadriiformes,Glareolidae (Pratincoles and Coursers),,rocpra1 4242,issf,rocpra3,Rock Pratincole (White-naped),Glareola nuchalis nuchalis,Charadriiformes,Glareolidae (Pratincoles and Coursers),,rocpra1 4243,species,grypra1,Gray Pratincole,Glareola cinerea,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4244,species,smapra1,Small Pratincole,Glareola lactea,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4244.5,spuh,pratin1,pratincole sp.,Glareola sp.,Charadriiformes,Glareolidae (Pratincoles and Coursers),, 4262,spuh,shoreb1,shorebird sp.,Charadriiformes sp.,Charadriiformes,,, 4262.01,species,gresku1,Great Skua,Stercorarius skua,Charadriiformes,Stercorariidae (Skuas and Jaegers),Skuas and Jaegers, 4262.02,species,chisku1,Chilean Skua,Stercorarius chilensis,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.03,species,sopsku1,South Polar Skua,Stercorarius maccormicki,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.04,species,brnsku3,Brown Skua,Stercorarius antarcticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.05,issf,brnsku1,Brown Skua (Subantarctic),Stercorarius antarcticus lonnbergi,Charadriiformes,Stercorariidae (Skuas and Jaegers),,brnsku3 4262.06,issf,sousku1,Brown Skua (Falkland),Stercorarius antarcticus antarcticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),,brnsku3 4262.07,issf,brnsku2,Brown Skua (Tristan),Stercorarius antarcticus hamiltoni,Charadriiformes,Stercorariidae (Skuas and Jaegers),,brnsku3 4262.08,spuh,skua,skua sp.,Stercorarius sp. (skua sp.),Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.09,species,pomjae,Pomarine Jaeger,Stercorarius pomarinus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.1,species,parjae,Parasitic Jaeger,Stercorarius parasiticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.11,slash,y00479,Pomarine/Parasitic Jaeger,Stercorarius pomarinus/parasiticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.12,species,lotjae,Long-tailed Jaeger,Stercorarius longicaudus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.15,slash,y00480,Pomarine/Long-tailed Jaeger,Stercorarius pomarinus/longicaudus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.16,slash,y00481,Parasitic/Long-tailed Jaeger,Stercorarius parasiticus/longicaudus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.17,spuh,jaeger,jaeger sp.,Stercorarius sp. (jaeger sp.),Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.18,spuh,y00615,jaeger/skua sp.,Stercorarius sp.,Charadriiformes,Stercorariidae (Skuas and Jaegers),, 4262.19,species,doveki,Dovekie,Alle alle,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",Alcids, 4262.22,species,commur,Common Murre,Uria aalge,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.27,species,thbmur,Thick-billed Murre,Uria lomvia,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.29,hybrid,x00793,Common x Thick-billed Murre (hybrid),Uria aalge x lomvia,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.32,slash,murre,Common/Thick-billed Murre,Uria aalge/lomvia,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.33,species,razorb,Razorbill,Alca torda,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.36,spuh,laralc1,large alcid sp.,Uria/Alca sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.37,species,greauk,Great Auk,Pinguinus impennis,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.38,species,blkgui,Black Guillemot,Cepphus grylle,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.39,issf,blkgui2,Black Guillemot (mandtii),Cepphus grylle mandtii,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,blkgui 4262.395,issf,blkgui1,Black Guillemot (grylle Group),Cepphus grylle [grylle Group],Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,blkgui 4262.44,species,piggui,Pigeon Guillemot,Cepphus columba,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.45,issf,piggui2,Pigeon Guillemot (snowi),Cepphus columba snowi,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,piggui 4262.46,issf,piggui1,Pigeon Guillemot (columba Group),Cepphus columba [columba Group],Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,piggui 4262.51,slash,y00223,Black/Pigeon Guillemot,Cepphus grylle/columba,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.52,species,spegui1,Spectacled Guillemot,Cepphus carbo,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.53,species,lobmur,Long-billed Murrelet,Brachyramphus perdix,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.54,species,marmur,Marbled Murrelet,Brachyramphus marmoratus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.55,species,kitmur,Kittlitz's Murrelet,Brachyramphus brevirostris,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.56,species,xanmur2,Scripps's Murrelet,Synthliboramphus scrippsi,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.57,species,xanmur1,Guadalupe Murrelet,Synthliboramphus hypoleucus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.58,slash,xanmur,Scripps's/Guadalupe Murrelet (Xantus's Murrelet),Synthliboramphus scrippsi/hypoleucus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.59,species,cramur,Craveri's Murrelet,Synthliboramphus craveri,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.595,slash,y00777,Scripps's/Craveri's Murrelet,Synthliboramphus scrippsi/craveri,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.6,slash,y00482,Scripps's/Guadalupe/Craveri's Murrelet,Synthliboramphus scrippsi/hypoleucus/craveri,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.61,species,ancmur,Ancient Murrelet,Synthliboramphus antiquus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.64,species,japmur1,Japanese Murrelet,Synthliboramphus wumizusume,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.65,spuh,murrel,murrelet sp.,Brachyramphus/Synthliboramphus sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.66,species,casauk,Cassin's Auklet,Ptychoramphus aleuticus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.69,species,parauk,Parakeet Auklet,Aethia psittacula,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.7,species,leaauk,Least Auklet,Aethia pusilla,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.71,species,whiauk,Whiskered Auklet,Aethia pygmaea,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.72,species,creauk,Crested Auklet,Aethia cristatella,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.73,species,rhiauk,Rhinoceros Auklet,Cerorhinca monocerata,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.74,spuh,auklet,auklet sp.,Ptychoramphus/Aethia sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.75,species,atlpuf,Atlantic Puffin,Fratercula arctica,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.79,species,horpuf,Horned Puffin,Fratercula corniculata,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.8,species,tufpuf,Tufted Puffin,Fratercula cirrhata,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.81,spuh,puffin1,puffin sp.,Fratercula sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4262.82,spuh,alcid,alcid sp.,Alcidae sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, 4263,species,swtgul1,Swallow-tailed Gull,Creagrus furcatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)","Gulls, Terns, and Skimmers", 4264,species,bklkit,Black-legged Kittiwake,Rissa tridactyla,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4265,issf,bklkit1,Black-legged Kittiwake (tridactyla),Rissa tridactyla tridactyla,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,bklkit 4266,issf,bklkit2,Black-legged Kittiwake (pollicaris),Rissa tridactyla pollicaris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,bklkit 4267,species,relkit,Red-legged Kittiwake,Rissa brevirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4267.5,slash,y00697,Black-legged/Red-legged Kittiwake,Rissa tridactyla/brevirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4268,species,ivogul,Ivory Gull,Pagophila eburnea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4269,species,sabgul,Sabine's Gull,Xema sabini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4274,species,saugul2,Saunders's Gull,Saundersilarus saundersi,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4275,species,slbgul1,Slender-billed Gull,Chroicocephalus genei,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4276,species,bongul,Bonaparte's Gull,Chroicocephalus philadelphia,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4277,species,andgul1,Andean Gull,Chroicocephalus serranus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4278,species,brhgul2,Brown-hooded Gull,Chroicocephalus maculipennis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4278.3,form,bnhgul3,Brown-hooded Gull (White-winged),Chroicocephalus maculipennis (White-winged),Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,brhgul2 4278.6,form,bnhgul2,Brown-hooded Gull (Dark-winged),Chroicocephalus maculipennis (Dark-winged),Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,brhgul2 4279,species,blbgul1,Black-billed Gull,Chroicocephalus bulleri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4280,species,rebgul1,Red-billed Gull,Chroicocephalus scopulinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4281,species,silgul1,Silver Gull,Chroicocephalus novaehollandiae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4284,species,grhgul,Gray-hooded Gull,Chroicocephalus cirrocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4287,species,hargul1,Hartlaub's Gull,Chroicocephalus hartlaubii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4287.2,hybrid,x00886,Gray-hooded x Hartlaub's Gull (hybrid),Chroicocephalus cirrocephalus x hartlaubii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4288,species,bkhgul,Black-headed Gull,Chroicocephalus ridibundus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4288.5,slash,y00778,Slender-billed/Black-headed Gull,Chroicocephalus genei/ridibundus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4290,species,bnhgul1,Brown-headed Gull,Chroicocephalus brunnicephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4290.5,hybrid,x00734,Slender-billed x Brown-headed Gull (hybrid),Chroicocephalus genei x brunnicephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4290.8,slash,y00955,Black-headed/Brown-headed Gull,Chroicocephalus ridibundus/brunnicephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4291,species,litgul,Little Gull,Hydrocoloeus minutus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4292,species,rosgul,Ross's Gull,Rhodostethia rosea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4293,species,dolgul2,Dolphin Gull,Leucophaeus scoresbii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4294,species,grygul,Gray Gull,Leucophaeus modestus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4295,species,laugul,Laughing Gull,Leucophaeus atricilla,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4299,species,fragul,Franklin's Gull,Leucophaeus pipixcan,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4299.2,hybrid,x00794,Bonaparte's x Franklin's Gull (hybrid),Chroicocephalus philadelphia x Leucophaeus pipixcan,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4299.5,slash,y00685,Laughing/Franklin's Gull,Leucophaeus atricilla/pipixcan,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4300,species,lavgul1,Lava Gull,Leucophaeus fuliginosus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4301,species,medgul1,Mediterranean Gull,Ichthyaetus melanocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4301.5,hybrid,x00695,Black-headed x Mediterranean Gull (hybrid),Chroicocephalus ridibundus x Ichthyaetus melanocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4301.7,slash,y00779,Black-headed/Mediterranean Gull,Chroicocephalus ridibundus/Ichthyaetus melanocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4302,species,relgul2,Relict Gull,Ichthyaetus relictus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4303,species,whegul2,White-eyed Gull,Ichthyaetus leucophthalmus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4304,species,soogul2,Sooty Gull,Ichthyaetus hemprichii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4305,species,gbhgul2,Pallas's Gull,Ichthyaetus ichthyaetus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4306,species,audgul1,Audouin's Gull,Ichthyaetus audouinii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4307,species,belgul,Belcher's Gull,Larus belcheri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4308,species,olrgul1,Olrog's Gull,Larus atlanticus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4309,species,bktgul,Black-tailed Gull,Larus crassirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4310,species,pacgul1,Pacific Gull,Larus pacificus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4313,species,heegul,Heermann's Gull,Larus heermanni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4314,species,mewgul,Mew Gull,Larus canus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4315,issf,comgul1,Mew Gull (European),Larus canus canus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul 4316,issf,mewgul3,Mew Gull (Russian),Larus canus heinei,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul 4317,issf,kamgul1,Mew Gull (Kamchatka),Larus canus kamtschatschensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul 4318,issf,mewgul2,Mew Gull (American),Larus canus brachyrhynchus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul 4318.5,hybrid,x00847,Mediterranean x Mew Gull (hybrid),Ichthyaetus melanocephalus x Larus canus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4319,species,ribgul,Ring-billed Gull,Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4319.3,hybrid,x00641,Black-headed x Ring-billed Gull (hybrid),Chroicocephalus ridibundus x Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4319.6,hybrid,x00616,Laughing x Ring-billed Gull (hybrid),Leucophaeus atricilla x Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4319.8,hybrid,x00795,Franklin's x Ring-billed Gull (hybrid),Leucophaeus pipixcan x Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4320,species,wesgul,Western Gull,Larus occidentalis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4324,species,yefgul,Yellow-footed Gull,Larus livens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4324.5,slash,y00683,Western/Yellow-footed Gull,Larus occidentalis/livens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4325,species,calgul,California Gull,Larus californicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4326,issf,calgul1,California Gull (californicus),Larus californicus californicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,calgul 4327,issf,calgul2,California Gull (albertaensis),Larus californicus albertaensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,calgul 4328,species,hergul,Herring Gull,Larus argentatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4329,issf,amhgul1,Herring Gull (American),Larus argentatus smithsonianus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul 4330,issf,veggul1,Herring Gull (Vega),Larus argentatus vegae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul 4330.5,issf,casgul4,Herring Gull (Mongolian),Larus argentatus mongolicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul 4331,issf,euhgul1,Herring Gull (European),Larus argentatus argentatus/argenteus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul 4331.2,hybrid,x00796,Ring-billed x Herring Gull (hybrid),Larus delawarensis x argentatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4331.4,hybrid,x00797,California x Herring Gull (hybrid),Larus californicus x argentatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4341,species,yelgul1,Yellow-legged Gull,Larus michahellis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4342,issf,yelgul2,Yellow-legged Gull (atlantis),Larus michahellis atlantis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,yelgul1 4343,issf,yelgul3,Yellow-legged Gull (michahellis),Larus michahellis michahellis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,yelgul1 4343.2,slash,y00848,Herring/Yellow-legged Gull,Larus argentatus/michahellis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4345,species,casgul2,Caspian Gull,Larus cachinnans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4347.5,slash,y00724,Yellow-legged/Caspian Gull,Larus michahellis/cachinnans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4348,species,armgul1,Armenian Gull,Larus armenicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4348.5,slash,y00725,Yellow-legged/Caspian/Armenian Gull,Larus michahellis/cachinnans/armenicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4348.7,species,y00478,Iceland Gull,Larus glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4349,issf,thagul,Iceland Gull (Thayer's),Larus glaucoides thayeri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 4349.5,form,icegul,Iceland Gull (Iceland),Larus glaucoides glaucoides/kumlieni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 4352,issf,kumgul1,Iceland Gull (kumlieni),Larus glaucoides kumlieni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 4353,issf,icegul1,Iceland Gull (glaucoides),Larus glaucoides glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 4353.5,intergrade,x00435,Iceland Gull (Thayer's x Iceland),Larus glaucoides thayeri x glaucoides/kumlieni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 4354,hybrid,x00617,Herring x Iceland Gull (hybrid),Larus argentatus x glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4354.5,slash,y00682,Herring/Iceland Gull,Larus argentatus/glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4355,species,lbbgul,Lesser Black-backed Gull,Larus fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4356,issf,lbbgul1,Lesser Black-backed Gull (fuscus),Larus fuscus fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul 4357,issf,lbbgul2,Lesser Black-backed Gull (intermedius),Larus fuscus intermedius,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul 4358,issf,lbbgul3,Lesser Black-backed Gull (graellsii),Larus fuscus graellsii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul 4359,issf,lbbgul4,Lesser Black-backed Gull (Heuglin's),Larus fuscus heuglini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul 4359.3,issf,casgul3,Lesser Black-backed Gull (Steppe),Larus fuscus barabensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul 4359.5,form,lbbgul5,Lesser Black-backed Gull (taimyrensis),Larus fuscus taimyrensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul 4359.7,hybrid,x00057,Herring x Lesser Black-backed Gull (hybrid),Larus argentatus x fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4359.8,slash,y00726,Herring/Lesser Black-backed Gull,Larus argentatus/fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4359.9,slash,y00849,Yellow-legged/Lesser Black-backed Gull,Larus michahellis/fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4360,species,slbgul,Slaty-backed Gull,Larus schistisagus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4360.5,hybrid,x00434,Herring x Slaty-backed Gull (hybrid),Larus argentatus x schistisagus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4363,species,glwgul,Glaucous-winged Gull,Larus glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4363.3,hybrid,x00051,Western x Glaucous-winged Gull (hybrid),Larus occidentalis x glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4363.6,hybrid,x00050,Herring x Glaucous-winged Gull (hybrid),Larus argentatus x glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4363.7,slash,y00956,Herring/Glaucous-winged Gull,Larus argentatus/glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4363.8,hybrid,x00436,Slaty-backed x Glaucous-winged Gull (hybrid),Larus schistisagus x glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4364,slash,y00656,Western/Glaucous-winged Gull,Larus occidentalis/glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4365,species,glagul,Glaucous Gull,Larus hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4369.3,hybrid,nelgul,Herring x Glaucous Gull (hybrid),Larus argentatus x hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4369.6,hybrid,x00437,Slaty-backed x Glaucous Gull (hybrid),Larus schistisagus x hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4369.8,hybrid,x00048,Glaucous-winged x Glaucous Gull (hybrid),Larus glaucescens x hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4369.9,spuh,whwgul1,white-winged gull sp.,Larus sp. (white-winged gull sp.),Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4371,species,gbbgul,Great Black-backed Gull,Larus marinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4371.3,hybrid,x00047,Herring x Great Black-backed Gull (hybrid),Larus argentatus x marinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4371.6,hybrid,x00632,Glaucous x Great Black-backed Gull (hybrid),Larus hyperboreus x marinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4372,species,kelgul,Kelp Gull,Larus dominicanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4373.5,issf,kelgul3,Kelp Gull (dominicanus),Larus dominicanus dominicanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul 4374,issf,kelgul2,Kelp Gull (austrinus),Larus dominicanus austrinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul 4375,issf,kelgul4,Kelp Gull (judithae),Larus dominicanus judithae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul 4376,issf,kelgul1,Kelp Gull (vetula),Larus dominicanus vetula,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul 4377,issf,kelgul5,Kelp Gull (melisandae),Larus dominicanus melisandae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul 4377.5,hybrid,kxhgul1,Herring x Kelp Gull (hybrid),Larus argentatus x dominicanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4378,spuh,larus1,Larus sp.,Larus sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4379,spuh,larus,gull sp.,Larinae sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4380,species,brnnod,Brown Noddy,Anous stolidus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4386,species,blknod,Black Noddy,Anous minutus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4387,issf,blknod3,Black Noddy (americanus),Anous minutus americanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blknod 4388,issf,blknod1,Black Noddy (melanogenys),Anous minutus melanogenys,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blknod 4389,issf,blknod2,Black Noddy (minutus Group),Anous minutus [minutus Group],Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blknod 4393.5,slash,noddy,Brown/Black Noddy,Anous stolidus/minutus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4394,species,lesnod1,Lesser Noddy,Anous tenuirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4397,slash,y00780,Black/Lesser Noddy,Anous minutus/tenuirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4398,species,grynod1,Gray Noddy,Anous albivitta,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4402,species,bugnod,Blue-gray Noddy,Anous ceruleus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4408,species,whiter,White Tern,Gygis alba,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4409,issf,whiter3,White Tern (Atlantic),Gygis alba alba,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,whiter 4410,issf,whiter4,White Tern (Pacific),Gygis alba candida/leucopes,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,whiter 4413,issf,whiter5,White Tern (Little),Gygis alba microrhyncha,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,whiter 4414,species,sooter1,Sooty Tern,Onychoprion fuscatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4423,species,gybter1,Gray-backed Tern,Onychoprion lunatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4424,species,briter1,Bridled Tern,Onychoprion anaethetus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4431,slash,y00318,Sooty/Bridled Tern,Onychoprion fuscatus/anaethetus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4432,species,aleter1,Aleutian Tern,Onychoprion aleuticus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4433,species,litter1,Little Tern,Sternula albifrons,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4440,species,leater1,Least Tern,Sternula antillarum,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4443.5,slash,y00661,Little/Least Tern,Sternula albifrons/antillarum,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4444,species,yebter2,Yellow-billed Tern,Sternula superciliaris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4445,species,faiter2,Australian Fairy Tern,Sternula nereis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4445.2,hybrid,x00798,Little x Australian Fairy Tern (hybrid),Sternula albifrons x nereis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4445.4,slash,y00850,Little/Australian Fairy Tern,Sternula albifrons/nereis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4450,species,perter2,Peruvian Tern,Sternula lorata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4451,species,sauter2,Saunders's Tern,Sternula saundersi,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4451.5,slash,y00662,Little/Saunders's Tern,Sternula albifrons/saundersi,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4452,species,damter2,Damara Tern,Sternula balaenarum,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4453,species,labter1,Large-billed Tern,Phaetusa simplex,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4456,species,gubter1,Gull-billed Tern,Gelochelidon nilotica,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4456.2,issf,gubter2,Gull-billed Tern (Gull-billed),Gelochelidon nilotica [nilotica Group],Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,gubter1 4456.4,issf,gubter3,Gull-billed Tern (Australian),Gelochelidon nilotica macrotarsa,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,gubter1 4463,species,caster1,Caspian Tern,Hydroprogne caspia,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4464,species,incter1,Inca Tern,Larosterna inca,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4465,species,blkter,Black Tern,Chlidonias niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4466,issf,blkter1,Black Tern (Eurasian),Chlidonias niger niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkter 4467,issf,blkter2,Black Tern (American),Chlidonias niger surinamensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkter 4468,species,whwter,White-winged Tern,Chlidonias leucopterus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4469,species,whiter2,Whiskered Tern,Chlidonias hybrida,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4477,species,blfter1,Black-fronted Tern,Chlidonias albostriatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4478,spuh,chlido1,Chlidonias sp.,Chlidonias sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4479,species,roster,Roseate Tern,Sterna dougallii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4485,species,whfter1,White-fronted Tern,Sterna striata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4489,species,blnter1,Black-naped Tern,Sterna sumatrana,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4492,species,comter,Common Tern,Sterna hirundo,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4493,issf,comter1,Common Tern (hirundo),Sterna hirundo hirundo,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,comter 4496,issf,comter2,Common Tern (longipennis),Sterna hirundo longipennis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,comter 4496.5,hybrid,x00735,Roseate x Common Tern (hybrid),Sterna dougallii x hirundo,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4497,species,arcter,Arctic Tern,Sterna paradisaea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4498,slash,y00317,Common/Arctic Tern,Sterna hirundo/paradisaea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4499,species,soater1,South American Tern,Sterna hirundinacea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4500,species,antter1,Antarctic Tern,Sterna vittata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4501,issf,antter2,Antarctic Tern (Antarctic),Sterna vittata [vittata Group],Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,antter1 4507,issf,antter3,Antarctic Tern (South Georgia),Sterna vittata georgiae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,antter1 4508,species,forter,Forster's Tern,Sterna forsteri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4508.5,slash,y00727,Common/Forster's Tern,Sterna hirundo/forsteri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4509,species,truter,Snowy-crowned Tern,Sterna trudeaui,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4510,species,blbter1,Black-bellied Tern,Sterna acuticauda,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4511,species,rivter1,River Tern,Sterna aurantia,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4512,species,whcter1,White-cheeked Tern,Sterna repressa,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4513,species,kerter1,Kerguelen Tern,Sterna virgata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4514,spuh,sterna,Sterna sp.,Sterna sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4515,species,royter1,Royal Tern,Thalasseus maximus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4516,issf,royter2,Royal Tern (African),Thalasseus maximus albididorsalis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,royter1 4517,issf,royter3,Royal Tern (American),Thalasseus maximus maximus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,royter1 4518,species,grcter1,Great Crested Tern,Thalasseus bergii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4525,species,santer1,Sandwich Tern,Thalasseus sandvicensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4526,issf,santer4,Sandwich Tern (Eurasian),Thalasseus sandvicensis sandvicensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 4527,issf,santer2,Sandwich Tern (Cabot's),Thalasseus sandvicensis acuflavidus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 4528,issf,santer3,Sandwich Tern (Cayenne),Thalasseus sandvicensis eurygnathus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 4528.2,intergrade,santer5,Sandwich Tern (Cabot's x Cayenne),Thalasseus sandvicensis acuflavidus x eurygnathus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 4530,species,eleter1,Elegant Tern,Thalasseus elegans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4530.5,hybrid,x00438,Sandwich x Elegant Tern (hybrid),Thalasseus sandvicensis x elegans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4531,slash,y00316,Royal/Elegant Tern,Thalasseus maximus/elegans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4532,species,lecter2,Lesser Crested Tern,Thalasseus bengalensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4536,species,chcter2,Chinese Crested Tern,Thalasseus bernsteini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4536.5,hybrid,x00848,Great x Chinese Crested Tern (hybrid),Thalasseus bergii x bernsteini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4537,spuh,larter1,large tern sp.,Hydroprogne/Thalasseus sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4538,spuh,tern1,tern sp.,Sterninae sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4539,species,blkski,Black Skimmer,Rynchops niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4540,issf,blkski1,Black Skimmer (niger),Rynchops niger niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkski 4541,issf,blkski2,Black Skimmer (cinerascens),Rynchops niger cinerascens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkski 4542,issf,blkski3,Black Skimmer (intercedens),Rynchops niger intercedens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkski 4543,species,afrski1,African Skimmer,Rynchops flavirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4544,species,indski1,Indian Skimmer,Rynchops albicollis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4544.5,spuh,y00728,gull/tern sp.,Laridae sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, 4628,species,tibsan1,Tibetan Sandgrouse,Syrrhaptes tibetanus,Pterocliformes,Pteroclidae (Sandgrouse),Sandgrouse, 4629,species,palsan1,Pallas's Sandgrouse,Syrrhaptes paradoxus,Pterocliformes,Pteroclidae (Sandgrouse),, 4630,species,pitsan1,Pin-tailed Sandgrouse,Pterocles alchata,Pterocliformes,Pteroclidae (Sandgrouse),, 4631,issf,pitsan2,Pin-tailed Sandgrouse (Iberian),Pterocles alchata alchata,Pterocliformes,Pteroclidae (Sandgrouse),,pitsan1 4632,issf,pitsan3,Pin-tailed Sandgrouse (Pin-tailed),Pterocles alchata caudacutus,Pterocliformes,Pteroclidae (Sandgrouse),,pitsan1 4633,species,namsan1,Namaqua Sandgrouse,Pterocles namaqua,Pterocliformes,Pteroclidae (Sandgrouse),, 4634,species,chbsan,Chestnut-bellied Sandgrouse,Pterocles exustus,Pterocliformes,Pteroclidae (Sandgrouse),, 4634.5,issf,chbsan1,Chestnut-bellied Sandgrouse (African),Pterocles exustus [exustus Group],Pterocliformes,Pteroclidae (Sandgrouse),,chbsan 4639,issf,chbsan2,Chestnut-bellied Sandgrouse (Arabian),Pterocles exustus erlangeri,Pterocliformes,Pteroclidae (Sandgrouse),,chbsan 4640,issf,chbsan3,Chestnut-bellied Sandgrouse (Asian),Pterocles exustus hindustan,Pterocliformes,Pteroclidae (Sandgrouse),,chbsan 4641,species,sposan1,Spotted Sandgrouse,Pterocles senegallus,Pterocliformes,Pteroclidae (Sandgrouse),, 4642,species,blbsan1,Black-bellied Sandgrouse,Pterocles orientalis,Pterocliformes,Pteroclidae (Sandgrouse),, 4645,species,yetsan1,Yellow-throated Sandgrouse,Pterocles gutturalis,Pterocliformes,Pteroclidae (Sandgrouse),, 4648,species,crosan1,Crowned Sandgrouse,Pterocles coronatus,Pterocliformes,Pteroclidae (Sandgrouse),, 4654,species,blfsan1,Black-faced Sandgrouse,Pterocles decoratus,Pterocliformes,Pteroclidae (Sandgrouse),, 4658,species,madsan1,Madagascar Sandgrouse,Pterocles personatus,Pterocliformes,Pteroclidae (Sandgrouse),, 4659,species,licsan1,Lichtenstein's Sandgrouse,Pterocles lichtensteinii,Pterocliformes,Pteroclidae (Sandgrouse),, 4661,issf,licsan2,Lichtenstein's Sandgrouse (Lichtenstein's),Pterocles lichtensteinii [lichtensteinii Group],Pterocliformes,Pteroclidae (Sandgrouse),,licsan1 4663,issf,licsan3,Lichtenstein's Sandgrouse (Close-barred),Pterocles lichtensteinii arabicus,Pterocliformes,Pteroclidae (Sandgrouse),,licsan1 4665,species,dobsan1,Double-banded Sandgrouse,Pterocles bicinctus,Pterocliformes,Pteroclidae (Sandgrouse),, 4669,species,fobsan1,Four-banded Sandgrouse,Pterocles quadricinctus,Pterocliformes,Pteroclidae (Sandgrouse),, 4670,species,paisan1,Painted Sandgrouse,Pterocles indicus,Pterocliformes,Pteroclidae (Sandgrouse),, 4671,species,bursan1,Burchell's Sandgrouse,Pterocles burchelli,Pterocliformes,Pteroclidae (Sandgrouse),, 4672,spuh,sandgr1,sandgrouse sp.,Pterocles sp.,Pterocliformes,Pteroclidae (Sandgrouse),, 4673,species,rocpig,Rock Pigeon,Columba livia,Columbiformes,Columbidae (Pigeons and Doves),Pigeons and Doves, 4673.5,form,rocpig2,Rock Pigeon (Wild type),Columba livia (Wild type),Columbiformes,Columbidae (Pigeons and Doves),,rocpig 4686.5,domestic,rocpig1,Rock Pigeon (Feral Pigeon),Columba livia (Feral Pigeon),Columbiformes,Columbidae (Pigeons and Doves),,rocpig 4687,species,hilpig1,Hill Pigeon,Columba rupestris,Columbiformes,Columbidae (Pigeons and Doves),, 4690,species,snopig1,Snow Pigeon,Columba leuconota,Columbiformes,Columbidae (Pigeons and Doves),, 4693,species,spepig1,Speckled Pigeon,Columba guinea,Columbiformes,Columbidae (Pigeons and Doves),, 4696,species,whcpig1,White-collared Pigeon,Columba albitorques,Columbiformes,Columbidae (Pigeons and Doves),, 4697,species,stodov1,Stock Dove,Columba oenas,Columbiformes,Columbidae (Pigeons and Doves),, 4700,species,pabpig1,Pale-backed Pigeon,Columba eversmanni,Columbiformes,Columbidae (Pigeons and Doves),, 4701,species,sompig1,Somali Pigeon,Columba oliviae,Columbiformes,Columbidae (Pigeons and Doves),, 4702,species,cowpig1,Common Wood-Pigeon,Columba palumbus,Columbiformes,Columbidae (Pigeons and Doves),, 4704,issf,comwop1,Common Wood-Pigeon (White-necked),Columba palumbus [palumbus Group],Columbiformes,Columbidae (Pigeons and Doves),,cowpig1 4706,issf,comwop2,Common Wood-Pigeon (Cinnamon-necked),Columba palumbus casiotis,Columbiformes,Columbidae (Pigeons and Doves),,cowpig1 4709,species,tropig1,Trocaz Pigeon,Columba trocaz,Columbiformes,Columbidae (Pigeons and Doves),, 4710,species,bolpig1,Bolle's Pigeon,Columba bollii,Columbiformes,Columbidae (Pigeons and Doves),, 4711,species,afepig1,Afep Pigeon,Columba unicincta,Columbiformes,Columbidae (Pigeons and Doves),, 4712,species,laupig1,Laurel Pigeon,Columba junoniae,Columbiformes,Columbidae (Pigeons and Doves),, 4713,species,rampig1,Rameron Pigeon,Columba arquatrix,Columbiformes,Columbidae (Pigeons and Doves),, 4714,species,campig1,Cameroon Pigeon,Columba sjostedti,Columbiformes,Columbidae (Pigeons and Doves),, 4715,species,marpig1,Maroon Pigeon,Columba thomensis,Columbiformes,Columbidae (Pigeons and Doves),, 4716,species,delpig1,Delegorgue's Pigeon,Columba delegorguei,Columbiformes,Columbidae (Pigeons and Doves),, 4719,species,brnpig1,Bronze-naped Pigeon,Columba iriditorques,Columbiformes,Columbidae (Pigeons and Doves),, 4720,species,satpig1,Sao Tome Pigeon,Columba malherbii,Columbiformes,Columbidae (Pigeons and Doves),, 4721,species,lemdov2,Lemon Dove,Columba larvata,Columbiformes,Columbidae (Pigeons and Doves),, 4722,issf,lemdov1,Lemon Dove (Western),Columba larvata inornata,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 4723,issf,lemdov3,Lemon Dove (Principe),Columba larvata principalis,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 4723.5,issf,fordov1,Lemon Dove (Sao Tome),Columba larvata simplex,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 4726,issf,lemdov4,Lemon Dove (Lemon),Columba larvata larvata/bronzina,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 4727,species,compig1,Comoro Pigeon,Columba pollenii,Columbiformes,Columbidae (Pigeons and Doves),, 4728,species,spwpig1,Speckled Wood-Pigeon,Columba hodgsonii,Columbiformes,Columbidae (Pigeons and Doves),, 4729,species,whnpig1,White-naped Pigeon,Columba albinucha,Columbiformes,Columbidae (Pigeons and Doves),, 4730,species,aswpig1,Ashy Wood-Pigeon,Columba pulchricollis,Columbiformes,Columbidae (Pigeons and Doves),, 4731,species,niwpig1,Nilgiri Wood-Pigeon,Columba elphinstonii,Columbiformes,Columbidae (Pigeons and Doves),, 4732,species,ceywop1,Sri Lanka Wood-Pigeon,Columba torringtoniae,Columbiformes,Columbidae (Pigeons and Doves),, 4733,species,pacpig1,Pale-capped Pigeon,Columba punicea,Columbiformes,Columbidae (Pigeons and Doves),, 4734,species,siwpig1,Silvery Wood-Pigeon,Columba argentina,Columbiformes,Columbidae (Pigeons and Doves),, 4735,species,anwpig1,Andaman Wood-Pigeon,Columba palumboides,Columbiformes,Columbidae (Pigeons and Doves),, 4736,species,jawpig1,Japanese Wood-Pigeon,Columba janthina,Columbiformes,Columbidae (Pigeons and Doves),, 4739,species,ryupig1,Ryukyu Pigeon,Columba jouyi,Columbiformes,Columbidae (Pigeons and Doves),, 4740,species,bonpig1,Bonin Pigeon,Columba versicolor,Columbiformes,Columbidae (Pigeons and Doves),, 4741,species,metpig1,Metallic Pigeon,Columba vitiensis,Columbiformes,Columbidae (Pigeons and Doves),, 4741.2,issf,metpig2,Metallic Pigeon (Metallic),Columba vitiensis [vitiensis Group],Columbiformes,Columbidae (Pigeons and Doves),,metpig1 4741.4,issf,metpig3,Metallic Pigeon (Samoan),Columba vitiensis castaneiceps,Columbiformes,Columbidae (Pigeons and Doves),,metpig1 4750,species,whhpig1,White-headed Pigeon,Columba leucomela,Columbiformes,Columbidae (Pigeons and Doves),, 4751,species,yelpig1,Yellow-legged Pigeon,Columba pallidiceps,Columbiformes,Columbidae (Pigeons and Doves),, 4752,spuh,columb1,Columba sp.,Columba sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4753,species,pavpig2,Pale-vented Pigeon,Patagioenas cayennensis,Columbiformes,Columbidae (Pigeons and Doves),, 4759,species,scapig2,Scaled Pigeon,Patagioenas speciosa,Columbiformes,Columbidae (Pigeons and Doves),, 4760,species,scnpig1,Scaly-naped Pigeon,Patagioenas squamosa,Columbiformes,Columbidae (Pigeons and Doves),, 4761,species,picpig2,Picazuro Pigeon,Patagioenas picazuro,Columbiformes,Columbidae (Pigeons and Doves),, 4764,species,baepig2,Bare-eyed Pigeon,Patagioenas corensis,Columbiformes,Columbidae (Pigeons and Doves),, 4765,species,spwpig3,Spot-winged Pigeon,Patagioenas maculosa,Columbiformes,Columbidae (Pigeons and Doves),, 4766,issf,spwpig2,Spot-winged Pigeon (albipennis),Patagioenas maculosa albipennis,Columbiformes,Columbidae (Pigeons and Doves),,spwpig3 4767,issf,spwpig4,Spot-winged Pigeon (maculosa),Patagioenas maculosa maculosa,Columbiformes,Columbidae (Pigeons and Doves),,spwpig3 4768,species,whcpig2,White-crowned Pigeon,Patagioenas leucocephala,Columbiformes,Columbidae (Pigeons and Doves),, 4769,species,rebpig1,Red-billed Pigeon,Patagioenas flavirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4774,species,plapig,Plain Pigeon,Patagioenas inornata,Columbiformes,Columbidae (Pigeons and Doves),, 4778,species,batpig1,Band-tailed Pigeon,Patagioenas fasciata,Columbiformes,Columbidae (Pigeons and Doves),, 4779,issf,batpig2,Band-tailed Pigeon (Northern),Patagioenas fasciata [fasciata Group],Columbiformes,Columbidae (Pigeons and Doves),,batpig1 4783,issf,batpig4,Band-tailed Pigeon (Viosca),Patagioenas fasciata vioscae,Columbiformes,Columbidae (Pigeons and Doves),,batpig1 4784,issf,batpig3,Band-tailed Pigeon (White-necked),Patagioenas fasciata [albilinea Group],Columbiformes,Columbidae (Pigeons and Doves),,batpig1 4788,slash,y00319,Rock/Band-tailed Pigeon,Columba livia/Patagioenas fasciata,Columbiformes,Columbidae (Pigeons and Doves),, 4789,species,chipig2,Chilean Pigeon,Patagioenas araucana,Columbiformes,Columbidae (Pigeons and Doves),, 4790,species,ritpig,Ring-tailed Pigeon,Patagioenas caribaea,Columbiformes,Columbidae (Pigeons and Doves),, 4791,species,perpig2,Peruvian Pigeon,Patagioenas oenops,Columbiformes,Columbidae (Pigeons and Doves),, 4792,species,plupig2,Plumbeous Pigeon,Patagioenas plumbea,Columbiformes,Columbidae (Pigeons and Doves),, 4798,species,rudpig,Ruddy Pigeon,Patagioenas subvinacea,Columbiformes,Columbidae (Pigeons and Doves),, 4799,issf,rudpig2,Ruddy Pigeon (Berlepsch's),Patagioenas subvinacea subvinacea/berlepschi,Columbiformes,Columbidae (Pigeons and Doves),,rudpig 4802,issf,rudpig3,Ruddy Pigeon (Ruddy),Patagioenas subvinacea [purpureotincta Group],Columbiformes,Columbidae (Pigeons and Doves),,rudpig 4806.5,slash,y00781,Plumbeous/Ruddy Pigeon,Patagioenas plumbea/subvinacea,Columbiformes,Columbidae (Pigeons and Doves),, 4807,species,shbpig,Short-billed Pigeon,Patagioenas nigrirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4807.5,slash,y00782,Ruddy/Short-billed Pigeon,Patagioenas subvinacea/nigrirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4808,species,duspig2,Dusky Pigeon,Patagioenas goodsoni,Columbiformes,Columbidae (Pigeons and Doves),, 4809,spuh,patagi1,Patagioenas sp.,Patagioenas sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4809.5,species,paspig,Passenger Pigeon,Ectopistes migratorius,Columbiformes,Columbidae (Pigeons and Doves),, 4810,species,pinpig2,Pink Pigeon,Nesoenas mayeri,Columbiformes,Columbidae (Pigeons and Doves),, 4811,species,eutdov,European Turtle-Dove,Streptopelia turtur,Columbiformes,Columbidae (Pigeons and Doves),, 4816,species,dutdov1,Dusky Turtle-Dove,Streptopelia lugens,Columbiformes,Columbidae (Pigeons and Doves),, 4817,species,adtdov1,Adamawa Turtle-Dove,Streptopelia hypopyrrha,Columbiformes,Columbidae (Pigeons and Doves),, 4818,species,ortdov,Oriental Turtle-Dove,Streptopelia orientalis,Columbiformes,Columbidae (Pigeons and Doves),, 4825,species,iscdov1,Island Collared-Dove,Streptopelia bitorquata,Columbiformes,Columbidae (Pigeons and Doves),, 4826,species,phicod1,Philippine Collared-Dove,Streptopelia dusumieri,Columbiformes,Columbidae (Pigeons and Doves),, 4828,species,eucdov,Eurasian Collared-Dove,Streptopelia decaocto,Columbiformes,Columbidae (Pigeons and Doves),, 4828.2,issf,eurcod1,Eurasian Collared-Dove (Eurasian),Streptopelia decaocto decaocto,Columbiformes,Columbidae (Pigeons and Doves),,eucdov 4828.4,issf,eurcod2,Eurasian Collared-Dove (Burmese),Streptopelia decaocto xanthocycla,Columbiformes,Columbidae (Pigeons and Doves),,eucdov 4831,species,afcdov1,African Collared-Dove,Streptopelia roseogrisea,Columbiformes,Columbidae (Pigeons and Doves),, 4833.5,domestic,afrcod1,African Collared-Dove (Domestic type or Ringed Turtle-Dove),Streptopelia roseogrisea (Domestic type),Columbiformes,Columbidae (Pigeons and Doves),, 4833.7,hybrid,x00799,Eurasian x African Collared-Dove (hybrid),Streptopelia decaocto x roseogrisea,Columbiformes,Columbidae (Pigeons and Doves),, 4833.9,slash,y00851,Eurasian/African Collared-Dove,Streptopelia decaocto/roseogrisea,Columbiformes,Columbidae (Pigeons and Doves),, 4834,species,wwcdov1,White-winged Collared-Dove,Streptopelia reichenowi,Columbiformes,Columbidae (Pigeons and Doves),, 4835,species,afmdov1,Mourning Collared-Dove,Streptopelia decipiens,Columbiformes,Columbidae (Pigeons and Doves),, 4842,species,reedov1,Red-eyed Dove,Streptopelia semitorquata,Columbiformes,Columbidae (Pigeons and Doves),, 4843,species,rindov,Ring-necked Dove,Streptopelia capicola,Columbiformes,Columbidae (Pigeons and Doves),, 4850,species,vindov1,Vinaceous Dove,Streptopelia vinacea,Columbiformes,Columbidae (Pigeons and Doves),, 4851,species,recdov1,Red Collared-Dove,Streptopelia tranquebarica,Columbiformes,Columbidae (Pigeons and Doves),, 4854,species,matdov1,Madagascar Turtle-Dove,Streptopelia picturata,Columbiformes,Columbidae (Pigeons and Doves),, 4860,species,spodov,Spotted Dove,Streptopelia chinensis,Columbiformes,Columbidae (Pigeons and Doves),, 4860.2,issf,spodov1,Spotted Dove (Western),Streptopelia chinensis suratensis,Columbiformes,Columbidae (Pigeons and Doves),,spodov 4860.4,issf,spodov2,Spotted Dove (Eastern),Streptopelia chinensis chinensis/tigrina,Columbiformes,Columbidae (Pigeons and Doves),,spodov 4864,species,laudov1,Laughing Dove,Streptopelia senegalensis,Columbiformes,Columbidae (Pigeons and Doves),, 4870,spuh,strept1,Streptopelia sp.,Streptopelia sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4871,species,bacdov1,Barred Cuckoo-Dove,Macropygia unchall,Columbiformes,Columbidae (Pigeons and Doves),, 4875,species,brcdov1,Brown Cuckoo-Dove,Macropygia phasianella,Columbiformes,Columbidae (Pigeons and Doves),, 4876,species,ducdov1,Flores Sea Cuckoo-Dove,Macropygia macassariensis,Columbiformes,Columbidae (Pigeons and Doves),, 4879,species,timcud1,Timor Cuckoo-Dove,Macropygia magna,Columbiformes,Columbidae (Pigeons and Doves),, 4880,species,tancud1,Tanimbar Cuckoo-Dove,Macropygia timorlaoensis,Columbiformes,Columbidae (Pigeons and Doves),, 4881,species,sbcdov1,Amboyna Cuckoo-Dove,Macropygia amboinensis,Columbiformes,Columbidae (Pigeons and Doves),, 4893.5,species,sulcud1,Sultan's Cuckoo-Dove,Macropygia doreya,Columbiformes,Columbidae (Pigeons and Doves),, 4893.7,slash,y01028,Amboyna/Sultan's Cuckoo-Dove,Macropygia amboinensis/doreya,Columbiformes,Columbidae (Pigeons and Doves),, 4897,species,ancdov1,Andaman Cuckoo-Dove,Macropygia rufipennis,Columbiformes,Columbidae (Pigeons and Doves),, 4898,species,phcdov1,Philippine Cuckoo-Dove,Macropygia tenuirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4898.5,form,palcud1,Palawan Cuckoo-Dove (undescribed form),Macropygia [undescribed form],Columbiformes,Columbidae (Pigeons and Doves),, 4899,species,rucdov1,Ruddy Cuckoo-Dove,Macropygia emiliana,Columbiformes,Columbidae (Pigeons and Doves),, 4905,species,engcud1,Enggano Cuckoo-Dove,Macropygia cinnamomea,Columbiformes,Columbidae (Pigeons and Doves),, 4906,species,barcud1,Barusan Cuckoo-Dove,Macropygia modiglianii,Columbiformes,Columbidae (Pigeons and Doves),, 4907,species,bbcdov1,Black-billed Cuckoo-Dove,Macropygia nigrirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4908,species,macdov1,Mackinlay's Cuckoo-Dove,Macropygia mackinlayi,Columbiformes,Columbidae (Pigeons and Doves),, 4913,species,licdov1,Little Cuckoo-Dove,Macropygia ruficeps,Columbiformes,Columbidae (Pigeons and Doves),, 4913.2,spuh,macrop1,Macropygia sp.,Macropygia sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4922,species,grcdov2,Great Cuckoo-Dove,Reinwardtoena reinwardti,Columbiformes,Columbidae (Pigeons and Doves),, 4926,species,picdov1,Pied Cuckoo-Dove,Reinwardtoena browni,Columbiformes,Columbidae (Pigeons and Doves),, 4927,species,crcdov1,Crested Cuckoo-Dove,Reinwardtoena crassirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4928,species,wfcdov1,White-faced Cuckoo-Dove,Turacoena manadensis,Columbiformes,Columbidae (Pigeons and Doves),, 4928.5,species,sulcud2,Sula Cuckoo-Dove,Turacoena sulaensis,Columbiformes,Columbidae (Pigeons and Doves),, 4929,species,slacud1,Slaty Cuckoo-Dove,Turacoena modesta,Columbiformes,Columbidae (Pigeons and Doves),, 4930,species,eswdov1,Emerald-spotted Wood-Dove,Turtur chalcospilos,Columbiformes,Columbidae (Pigeons and Doves),, 4931,species,bbwdov1,Black-billed Wood-Dove,Turtur abyssinicus,Columbiformes,Columbidae (Pigeons and Doves),, 4932,species,bswdov1,Blue-spotted Wood-Dove,Turtur afer,Columbiformes,Columbidae (Pigeons and Doves),, 4933,species,tamdov1,Tambourine Dove,Turtur tympanistria,Columbiformes,Columbidae (Pigeons and Doves),, 4934,species,bhwdov1,Blue-headed Wood-Dove,Turtur brehmeri,Columbiformes,Columbidae (Pigeons and Doves),, 4936.5,spuh,turtur1,Turtur sp.,Turtur sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4937,species,namdov1,Namaqua Dove,Oena capensis,Columbiformes,Columbidae (Pigeons and Doves),, 4940.5,species,emedov2,Asian Emerald Dove,Chalcophaps indica,Columbiformes,Columbidae (Pigeons and Doves),, 4945.5,species,emedov3,Pacific Emerald Dove,Chalcophaps longirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4945.6,hybrid,x00849,Asian x Pacific Emerald Dove (hybrid),Chalcophaps indica x longirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4945.8,slash,emedov1,Asian/Pacific Emerald Dove,Chalcophaps indica/longirostris,Columbiformes,Columbidae (Pigeons and Doves),, 4949,species,stedov1,Stephan's Dove,Chalcophaps stephani,Columbiformes,Columbidae (Pigeons and Doves),, 4953,species,negbro1,New Guinea Bronzewing,Henicophaps albifrons,Columbiformes,Columbidae (Pigeons and Doves),, 4956,species,nebbro1,New Britain Bronzewing,Henicophaps foersteri,Columbiformes,Columbidae (Pigeons and Doves),, 4956.1,species,wegdov1,Wetar Ground-Dove,Alopecoenas hoedtii,Columbiformes,Columbidae (Pigeons and Doves),, 4956.2,species,frgdov1,Shy Ground-Dove,Alopecoenas stairi,Columbiformes,Columbidae (Pigeons and Doves),, 4956.3,species,scgdov1,Santa Cruz Ground-Dove,Alopecoenas sanctaecrucis,Columbiformes,Columbidae (Pigeons and Doves),, 4956.4,species,tbgdov1,Thick-billed Ground-Dove,Alopecoenas salamonis,Columbiformes,Columbidae (Pigeons and Doves),, 4956.5,species,tangrd1,Tanna Ground-Dove,Alopecoenas ferrugineus,Columbiformes,Columbidae (Pigeons and Doves),, 4956.6,species,brgdov1,Bronze Ground-Dove,Alopecoenas beccarii,Columbiformes,Columbidae (Pigeons and Doves),, 4956.7,issf,brogrd1,Bronze Ground-Dove (Western),Alopecoenas beccarii beccarii,Columbiformes,Columbidae (Pigeons and Doves),,brgdov1 4956.8,issf,brogrd2,Bronze Ground-Dove (Eastern),Alopecoenas beccarii [johannae Group],Columbiformes,Columbidae (Pigeons and Doves),,brgdov1 4956.82,species,pagdov1,Palau Ground-Dove,Alopecoenas canifrons,Columbiformes,Columbidae (Pigeons and Doves),, 4956.83,species,wbgdov1,White-bibbed Ground-Dove,Alopecoenas jobiensis,Columbiformes,Columbidae (Pigeons and Doves),, 4956.84,species,margrd1,Marquesas Ground-Dove,Alopecoenas rubescens,Columbiformes,Columbidae (Pigeons and Doves),, 4956.86,species,cigdov1,Caroline Islands Ground-Dove,Alopecoenas kubaryi,Columbiformes,Columbidae (Pigeons and Doves),, 4956.88,species,pogdov1,Polynesian Ground-Dove,Alopecoenas erythropterus,Columbiformes,Columbidae (Pigeons and Doves),, 4956.9,species,wtgdov1,White-throated Ground-Dove,Alopecoenas xanthonurus,Columbiformes,Columbidae (Pigeons and Doves),, 4956.92,species,norgrd1,Norfolk Ground-Dove,Alopecoenas norfolkensis,Columbiformes,Columbidae (Pigeons and Doves),, 4957,species,combro1,Common Bronzewing,Phaps chalcoptera,Columbiformes,Columbidae (Pigeons and Doves),, 4958,species,brubro1,Brush Bronzewing,Phaps elegans,Columbiformes,Columbidae (Pigeons and Doves),, 4961,species,flobro1,Flock Bronzewing,Phaps histrionica,Columbiformes,Columbidae (Pigeons and Doves),, 4962,species,crepig1,Crested Pigeon,Ocyphaps lophotes,Columbiformes,Columbidae (Pigeons and Doves),, 4965,species,spipig2,Spinifex Pigeon,Geophaps plumifera,Columbiformes,Columbidae (Pigeons and Doves),, 4965.2,issf,spipig4,Spinifex Pigeon (Rufous-bellied),Geophaps plumifera ferruginea,Columbiformes,Columbidae (Pigeons and Doves),,spipig2 4965.4,issf,spipig5,Spinifex Pigeon (White-bellied),Geophaps plumifera plumifera/leucogaster,Columbiformes,Columbidae (Pigeons and Doves),,spipig2 4969,species,squpig1,Squatter Pigeon,Geophaps scripta,Columbiformes,Columbidae (Pigeons and Doves),, 4972,species,parpig1,Partridge Pigeon,Geophaps smithii,Columbiformes,Columbidae (Pigeons and Doves),, 4975,species,cqrpig1,Chestnut-quilled Rock-Pigeon,Petrophassa rufipennis,Columbiformes,Columbidae (Pigeons and Doves),, 4976,species,wqrpig1,White-quilled Rock-Pigeon,Petrophassa albipennis,Columbiformes,Columbidae (Pigeons and Doves),, 4979,species,wonpig1,Wonga Pigeon,Leucosarcia melanoleuca,Columbiformes,Columbidae (Pigeons and Doves),, 4980,species,diadov1,Diamond Dove,Geopelia cuneata,Columbiformes,Columbidae (Pigeons and Doves),, 4981,species,zebdov,Zebra Dove,Geopelia striata,Columbiformes,Columbidae (Pigeons and Doves),, 4982,species,peadov1,Peaceful Dove,Geopelia placida,Columbiformes,Columbidae (Pigeons and Doves),, 4986,species,bardov2,Barred Dove,Geopelia maugeus,Columbiformes,Columbidae (Pigeons and Doves),, 4987,species,basdov1,Bar-shouldered Dove,Geopelia humeralis,Columbiformes,Columbidae (Pigeons and Doves),, 4990.015,species,incdov,Inca Dove,Columbina inca,Columbiformes,Columbidae (Pigeons and Doves),, 4990.02,species,cogdov,Common Ground-Dove,Columbina passerina,Columbiformes,Columbidae (Pigeons and Doves),, 4990.115,species,pbgdov1,Plain-breasted Ground-Dove,Columbina minuta,Columbiformes,Columbidae (Pigeons and Doves),, 4990.14,species,rugdov,Ruddy Ground-Dove,Columbina talpacoti,Columbiformes,Columbidae (Pigeons and Doves),, 4990.15,slash,y00852,Common/Ruddy Ground-Dove,Columbina passerina/talpacoti,Columbiformes,Columbidae (Pigeons and Doves),, 4990.165,species,ecgdov1,Ecuadorian Ground-Dove,Columbina buckleyi,Columbiformes,Columbidae (Pigeons and Doves),, 4990.17,species,scadov1,Scaled Dove,Columbina squammata,Columbiformes,Columbidae (Pigeons and Doves),, 4990.185,species,pigdov1,Picui Ground-Dove,Columbina picui,Columbiformes,Columbidae (Pigeons and Doves),, 4990.2,species,crgdov1,Croaking Ground-Dove,Columbina cruziana,Columbiformes,Columbidae (Pigeons and Doves),, 4990.205,species,begdov2,Blue-eyed Ground-Dove,Columbina cyanopis,Columbiformes,Columbidae (Pigeons and Doves),, 4990.21,spuh,y00320,ground-dove/Inca Dove sp.,Columbina sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4990.215,species,blgdov1,Blue Ground-Dove,Claravis pretiosa,Columbiformes,Columbidae (Pigeons and Doves),, 4990.22,species,mcgdov1,Maroon-chested Ground-Dove,Claravis mondetoura,Columbiformes,Columbidae (Pigeons and Doves),, 4990.255,species,pwgdov1,Purple-winged Ground-Dove,Claravis geoffroyi,Columbiformes,Columbidae (Pigeons and Doves),, 4990.26,species,bfgdov1,Bare-faced Ground-Dove,Metriopelia ceciliae,Columbiformes,Columbidae (Pigeons and Doves),, 4990.28,species,begdov1,Bare-eyed Ground-Dove,Metriopelia morenoi,Columbiformes,Columbidae (Pigeons and Doves),, 4990.285,species,bwgdov1,Black-winged Ground-Dove,Metriopelia melanoptera,Columbiformes,Columbidae (Pigeons and Doves),, 4990.3,species,gsgdov1,Golden-spotted Ground-Dove,Metriopelia aymara,Columbiformes,Columbidae (Pigeons and Doves),, 4990.305,species,ltgdov1,Long-tailed Ground-Dove,Uropelia campestris,Columbiformes,Columbidae (Pigeons and Doves),, 4990.3055,species,bhqdov1,Blue-headed Quail-Dove,Starnoenas cyanocephala,Columbiformes,Columbidae (Pigeons and Doves),, 4990.31,species,sapqud1,Purple Quail-Dove,Geotrygon purpurata,Columbiformes,Columbidae (Pigeons and Doves),, 4990.315,species,sapqud2,Sapphire Quail-Dove,Geotrygon saphirina,Columbiformes,Columbidae (Pigeons and Doves),, 4990.33,species,crqdov1,Crested Quail-Dove,Geotrygon versicolor,Columbiformes,Columbidae (Pigeons and Doves),, 4990.335,species,ruqdov,Ruddy Quail-Dove,Geotrygon montana,Columbiformes,Columbidae (Pigeons and Doves),, 4990.34,issf,rudqud1,Ruddy Quail-Dove (Ruddy),Geotrygon montana montana,Columbiformes,Columbidae (Pigeons and Doves),,ruqdov 4990.345,issf,rudqud2,Ruddy Quail-Dove (Martinique),Geotrygon montana martinica,Columbiformes,Columbidae (Pigeons and Doves),,ruqdov 4990.35,species,viqdov1,Violaceous Quail-Dove,Geotrygon violacea,Columbiformes,Columbidae (Pigeons and Doves),, 4990.365,species,gfqdov,Gray-fronted Quail-Dove,Geotrygon caniceps,Columbiformes,Columbidae (Pigeons and Doves),, 4990.37,species,wfqdov,White-fronted Quail-Dove,Geotrygon leucometopia,Columbiformes,Columbidae (Pigeons and Doves),, 4990.375,species,kwqdov,Key West Quail-Dove,Geotrygon chrysia,Columbiformes,Columbidae (Pigeons and Doves),, 4990.38,species,brqdov1,Bridled Quail-Dove,Geotrygon mystacea,Columbiformes,Columbidae (Pigeons and Doves),, 4990.385,species,obqdov1,Olive-backed Quail-Dove,Leptotrygon veraguensis,Columbiformes,Columbidae (Pigeons and Doves),, 4990.39,species,whtdov,White-tipped Dove,Leptotila verreauxi,Columbiformes,Columbidae (Pigeons and Doves),, 4990.395,issf,whtdov1,White-tipped Dove (White-tipped),Leptotila verreauxi [verreauxi Group],Columbiformes,Columbidae (Pigeons and Doves),,whtdov 4990.445,issf,whtdov2,White-tipped Dove (decolor),Leptotila verreauxi decolor,Columbiformes,Columbidae (Pigeons and Doves),,whtdov 4990.45,issf,whtdov3,White-tipped Dove (brasiliensis Group),Leptotila verreauxi [brasiliensis Group],Columbiformes,Columbidae (Pigeons and Doves),,whtdov 4990.475,species,cardov1,Caribbean Dove,Leptotila jamaicensis,Columbiformes,Columbidae (Pigeons and Doves),, 4990.5,species,grcdov1,Gray-chested Dove,Leptotila cassinii,Columbiformes,Columbidae (Pigeons and Doves),, 4990.505,issf,gycdov1,Gray-chested Dove (cassinii),Leptotila cassinii cassinii,Columbiformes,Columbidae (Pigeons and Doves),,grcdov1 4990.51,issf,gycdov2,Gray-chested Dove (rufinucha),Leptotila cassinii rufinucha,Columbiformes,Columbidae (Pigeons and Doves),,grcdov1 4990.515,issf,gycdov3,Gray-chested Dove (cerviniventris),Leptotila cassinii cerviniventris,Columbiformes,Columbidae (Pigeons and Doves),,grcdov1 4990.52,species,toldov1,Tolima Dove,Leptotila conoveri,Columbiformes,Columbidae (Pigeons and Doves),, 4990.525,species,ocbdov1,Ochre-bellied Dove,Leptotila ochraceiventris,Columbiformes,Columbidae (Pigeons and Doves),, 4990.53,species,gyhdov1,Gray-headed Dove,Leptotila plumbeiceps,Columbiformes,Columbidae (Pigeons and Doves),, 4990.535,issf,gyhdov2,Gray-headed Dove (Gray-headed),Leptotila plumbeiceps plumbeiceps/notia,Columbiformes,Columbidae (Pigeons and Doves),,gyhdov1 4990.55,issf,gyhdov3,Gray-headed Dove (Brown-backed),Leptotila plumbeiceps battyi/malae,Columbiformes,Columbidae (Pigeons and Doves),,gyhdov1 4990.565,species,grfdov1,Gray-fronted Dove,Leptotila rufaxilla,Columbiformes,Columbidae (Pigeons and Doves),, 4990.6,species,gredov1,Grenada Dove,Leptotila wellsi,Columbiformes,Columbidae (Pigeons and Doves),, 4990.605,species,paldov1,Pallid Dove,Leptotila pallida,Columbiformes,Columbidae (Pigeons and Doves),, 4990.61,species,latdov1,Large-tailed Dove,Leptotila megalura,Columbiformes,Columbidae (Pigeons and Doves),, 4990.615,spuh,leptot1,Leptotila sp.,Leptotila sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4990.62,species,tuqdov1,Tuxtla Quail-Dove,Zentrygon carrikeri,Columbiformes,Columbidae (Pigeons and Doves),, 4990.625,species,bfqdov1,Buff-fronted Quail-Dove,Zentrygon costaricensis,Columbiformes,Columbidae (Pigeons and Doves),, 4990.63,species,pbqdov1,Purplish-backed Quail-Dove,Zentrygon lawrencii,Columbiformes,Columbidae (Pigeons and Doves),, 4990.635,species,wfqdov1,White-faced Quail-Dove,Zentrygon albifacies,Columbiformes,Columbidae (Pigeons and Doves),, 4990.64,species,wtqdov1,White-throated Quail-Dove,Zentrygon frenata,Columbiformes,Columbidae (Pigeons and Doves),, 4990.665,species,liqdov1,Lined Quail-Dove,Zentrygon linearis,Columbiformes,Columbidae (Pigeons and Doves),, 4990.67,species,chqdov1,Chiriqui Quail-Dove,Zentrygon chiriquensis,Columbiformes,Columbidae (Pigeons and Doves),, 4990.675,species,rcqdov1,Russet-crowned Quail-Dove,Zentrygon goldmani,Columbiformes,Columbidae (Pigeons and Doves),, 4990.69,spuh,geotry1,quail-dove sp.,Geotrygon/Leptotrygon/Zentrygon sp.,Columbiformes,Columbidae (Pigeons and Doves),, 4991,species,wepdov1,West Peruvian Dove,Zenaida meloda,Columbiformes,Columbidae (Pigeons and Doves),, 4992,species,whwdov,White-winged Dove,Zenaida asiatica,Columbiformes,Columbidae (Pigeons and Doves),, 4996,species,zendov,Zenaida Dove,Zenaida aurita,Columbiformes,Columbidae (Pigeons and Doves),, 5000,species,galdov1,Galapagos Dove,Zenaida galapagoensis,Columbiformes,Columbidae (Pigeons and Doves),, 5003,species,eardov1,Eared Dove,Zenaida auriculata,Columbiformes,Columbidae (Pigeons and Doves),, 5015,species,moudov,Mourning Dove,Zenaida macroura,Columbiformes,Columbidae (Pigeons and Doves),, 5016,issf,moudov1,Mourning Dove (Caribbean),Zenaida macroura macroura,Columbiformes,Columbidae (Pigeons and Doves),,moudov 5017,issf,moudov2,Mourning Dove (Mainland),Zenaida macroura [carolinensis Group],Columbiformes,Columbidae (Pigeons and Doves),,moudov 5021.5,hybrid,x00767,Eurasian Collared-Dove x Mourning Dove (hybrid),Streptopelia decaocto x Zenaida macroura,Columbiformes,Columbidae (Pigeons and Doves),, 5022,species,socdov1,Socorro Dove,Zenaida graysoni,Columbiformes,Columbidae (Pigeons and Doves),, 5161,species,nicpig1,Nicobar Pigeon,Caloenas nicobarica,Columbiformes,Columbidae (Pigeons and Doves),, 5164,species,dodo1,Dodo,Raphus cucullatus,Columbiformes,Columbidae (Pigeons and Doves),, 5166,species,rodsol2,Rodrigues Solitaire,Pezophaps solitaria,Columbiformes,Columbidae (Pigeons and Doves),, 5167,species,sugdov1,Sulawesi Ground-Dove,Gallicolumba tristigmata,Columbiformes,Columbidae (Pigeons and Doves),, 5168,species,cigdov2,Cinnamon Ground-Dove,Gallicolumba rufigula,Columbiformes,Columbidae (Pigeons and Doves),, 5175,species,mibhea2,Mindoro Bleeding-heart,Gallicolumba platenae,Columbiformes,Columbidae (Pigeons and Doves),, 5176,species,nebhea1,Negros Bleeding-heart,Gallicolumba keayi,Columbiformes,Columbidae (Pigeons and Doves),, 5177,species,subhea1,Sulu Bleeding-heart,Gallicolumba menagei,Columbiformes,Columbidae (Pigeons and Doves),, 5178,species,lubhea1,Luzon Bleeding-heart,Gallicolumba luzonica,Columbiformes,Columbidae (Pigeons and Doves),, 5179,species,minblh1,Mindanao Bleeding-heart,Gallicolumba crinigera,Columbiformes,Columbidae (Pigeons and Doves),, 5209,species,chopig1,Choiseul Pigeon,Microgoura meeki,Columbiformes,Columbidae (Pigeons and Doves),, 5210,species,tbgpig2,Thick-billed Ground-Pigeon,Trugon terrestris,Columbiformes,Columbidae (Pigeons and Doves),, 5214,species,phepig1,Pheasant Pigeon,Otidiphaps nobilis,Columbiformes,Columbidae (Pigeons and Doves),, 5214.2,issf,phepig2,Pheasant Pigeon (Green-naped),Otidiphaps nobilis nobilis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 5214.4,issf,phepig3,Pheasant Pigeon (White-naped),Otidiphaps nobilis aruensis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 5214.6,issf,phepig4,Pheasant Pigeon (Gray-naped),Otidiphaps nobilis cervicalis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 5214.8,issf,phepig5,Pheasant Pigeon (Black-naped),Otidiphaps nobilis insularis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 5219,species,wecpig1,Western Crowned-Pigeon,Goura cristata,Columbiformes,Columbidae (Pigeons and Doves),, 5222,species,socpig1,Southern Crowned-Pigeon,Goura scheepmakeri,Columbiformes,Columbidae (Pigeons and Doves),, 5222.2,issf,soucrp1,Southern Crowned-Pigeon (Sclater's),Goura scheepmakeri sclaterii,Columbiformes,Columbidae (Pigeons and Doves),,socpig1 5222.4,issf,soucrp2,Southern Crowned-Pigeon (Scheepmaker's),Goura scheepmakeri scheepmakeri,Columbiformes,Columbidae (Pigeons and Doves),,socpig1 5225,species,vicpig1,Victoria Crowned-Pigeon,Goura victoria,Columbiformes,Columbidae (Pigeons and Doves),, 5228,species,tobpig1,Tooth-billed Pigeon,Didunculus strigirostris,Columbiformes,Columbidae (Pigeons and Doves),, 5229,species,whedov1,White-eared Brown-Dove,Phapitreron leucotis,Columbiformes,Columbidae (Pigeons and Doves),, 5229.2,issf,whebrd1,White-eared Brown-Dove (White-eared),Phapitreron leucotis leucotis,Columbiformes,Columbidae (Pigeons and Doves),,whedov1 5229.4,issf,whebrd2,White-eared Brown-Dove (Buff-eared),Phapitreron leucotis nigrorum,Columbiformes,Columbidae (Pigeons and Doves),,whedov1 5229.6,issf,whebrd3,White-eared Brown-Dove (Short-billed),Phapitreron leucotis brevirostris/occipitalis,Columbiformes,Columbidae (Pigeons and Doves),,whedov1 5234,species,amedov1,Amethyst Brown-Dove,Phapitreron amethystinus,Columbiformes,Columbidae (Pigeons and Doves),, 5234.2,issf,amebrd1,Amethyst Brown-Dove (Amethyst),Phapitreron amethystinus amethystinus/imeldae,Columbiformes,Columbidae (Pigeons and Doves),,amedov1 5234.4,issf,amebrd2,Amethyst Brown-Dove (Gray-breasted),Phapitreron amethystinus maculipectus,Columbiformes,Columbidae (Pigeons and Doves),,amedov1 5234.6,issf,amebrd3,Amethyst Brown-Dove (Cebu),Phapitreron amethystinus frontalis,Columbiformes,Columbidae (Pigeons and Doves),,amedov1 5240,species,daedov2,Mindanao Brown-Dove,Phapitreron brunneiceps,Columbiformes,Columbidae (Pigeons and Doves),, 5241,species,daedov3,Tawitawi Brown-Dove,Phapitreron cinereiceps,Columbiformes,Columbidae (Pigeons and Doves),, 5241.2,spuh,brown-1,brown-dove sp.,Phapitreron sp.,Columbiformes,Columbidae (Pigeons and Doves),, 5242,species,ligpig1,Little Green-Pigeon,Treron olax,Columbiformes,Columbidae (Pigeons and Doves),, 5243,species,pinpig3,Pink-necked Pigeon,Treron vernans,Columbiformes,Columbidae (Pigeons and Doves),, 5244,species,cihpig1,Cinnamon-headed Pigeon,Treron fulvicollis,Columbiformes,Columbidae (Pigeons and Doves),, 5249,species,orbpig1,Orange-breasted Pigeon,Treron bicinctus,Columbiformes,Columbidae (Pigeons and Doves),, 5254,species,pogpig1,Sri Lanka Green-Pigeon,Treron pompadora,Columbiformes,Columbidae (Pigeons and Doves),, 5255.5,species,pomgrp2,Gray-fronted Green-Pigeon,Treron affinis,Columbiformes,Columbidae (Pigeons and Doves),, 5256,species,pomgrp4,Andaman Green-Pigeon,Treron chloropterus,Columbiformes,Columbidae (Pigeons and Doves),, 5257,species,pomgrp5,Ashy-headed Green-Pigeon,Treron phayrei,Columbiformes,Columbidae (Pigeons and Doves),, 5257.5,species,pomgrp1,Philippine Green-Pigeon,Treron axillaris,Columbiformes,Columbidae (Pigeons and Doves),, 5262,species,pomgrp3,Buru Green-Pigeon,Treron aromaticus,Columbiformes,Columbidae (Pigeons and Doves),, 5263,species,thbpig1,Thick-billed Pigeon,Treron curvirostra,Columbiformes,Columbidae (Pigeons and Doves),, 5264,species,gycpig1,Gray-cheeked Pigeon,Treron griseicauda,Columbiformes,Columbidae (Pigeons and Doves),, 5269,species,sugpig2,Sumba Green-Pigeon,Treron teysmannii,Columbiformes,Columbidae (Pigeons and Doves),, 5270,species,flgpig1,Flores Green-Pigeon,Treron floris,Columbiformes,Columbidae (Pigeons and Doves),, 5271,species,timgrp1,Timor Green-Pigeon,Treron psittaceus,Columbiformes,Columbidae (Pigeons and Doves),, 5272,species,lagpig1,Large Green-Pigeon,Treron capellei,Columbiformes,Columbidae (Pigeons and Doves),, 5273,species,yefpig1,Yellow-footed Pigeon,Treron phoenicopterus,Columbiformes,Columbidae (Pigeons and Doves),, 5279,species,brgpig1,Bruce's Green-Pigeon,Treron waalia,Columbiformes,Columbidae (Pigeons and Doves),, 5280,species,magpig1,Madagascar Green-Pigeon,Treron australis,Columbiformes,Columbidae (Pigeons and Doves),, 5281,issf,madgrp2,Madagascar Green-Pigeon (Comoros),Treron australis griveaudi,Columbiformes,Columbidae (Pigeons and Doves),,magpig1 5281.5,issf,madgrp1,Madagascar Green-Pigeon (Madagascar),Treron australis australis/xenius,Columbiformes,Columbidae (Pigeons and Doves),,magpig1 5284,species,pegpig1,Pemba Green-Pigeon,Treron pembaensis,Columbiformes,Columbidae (Pigeons and Doves),, 5285,species,stgpig1,Sao Tome Green-Pigeon,Treron sanctithomae,Columbiformes,Columbidae (Pigeons and Doves),, 5286,species,yevpig1,Yellow-vented Pigeon,Treron seimundi,Columbiformes,Columbidae (Pigeons and Doves),, 5289,species,pitpig1,Pin-tailed Pigeon,Treron apicauda,Columbiformes,Columbidae (Pigeons and Doves),, 5293,species,afrgrp1,African Green-Pigeon,Treron calvus,Columbiformes,Columbidae (Pigeons and Doves),, 5293.2,issf,afrgrp2,African Green-Pigeon (African),Treron calvus [calvus Group],Columbiformes,Columbidae (Pigeons and Doves),,afrgrp1 5293.4,issf,afrgrp3,African Green-Pigeon (Gray-breasted),Treron calvus delalandii/granti,Columbiformes,Columbidae (Pigeons and Doves),,afrgrp1 5311,species,gnspig1,Green-spectacled Pigeon,Treron oxyurus,Columbiformes,Columbidae (Pigeons and Doves),, 5312,species,wetpig1,Wedge-tailed Pigeon,Treron sphenurus,Columbiformes,Columbidae (Pigeons and Doves),, 5316,species,whbpig1,White-bellied Pigeon,Treron sieboldii,Columbiformes,Columbidae (Pigeons and Doves),, 5320,species,whgpig1,Whistling Green-Pigeon,Treron formosae,Columbiformes,Columbidae (Pigeons and Doves),, 5320.2,issf,whigrp1,Whistling Green-Pigeon (Ryukyu),Treron formosae permagnus/medioximus,Columbiformes,Columbidae (Pigeons and Doves),,whgpig1 5320.4,issf,whigrp2,Whistling Green-Pigeon (Taiwan),Treron formosae formosae/filipinus,Columbiformes,Columbidae (Pigeons and Doves),,whgpig1 5325,spuh,treron1,Treron sp.,Treron sp.,Columbiformes,Columbidae (Pigeons and Doves),, 5326,species,bbfdov1,Black-backed Fruit-Dove,Ptilinopus cinctus,Columbiformes,Columbidae (Pigeons and Doves),, 5333,species,bbfdov2,Black-banded Fruit-Dove,Ptilinopus alligator,Columbiformes,Columbidae (Pigeons and Doves),, 5334,species,rnfdov1,Red-naped Fruit-Dove,Ptilinopus dohertyi,Columbiformes,Columbidae (Pigeons and Doves),, 5335,species,phfdov1,Pink-headed Fruit-Dove,Ptilinopus porphyreus,Columbiformes,Columbidae (Pigeons and Doves),, 5336,species,ybfdov2,Yellow-breasted Fruit-Dove,Ptilinopus occipitalis,Columbiformes,Columbidae (Pigeons and Doves),, 5339,species,fbfdov1,Flame-breasted Fruit-Dove,Ptilinopus marchei,Columbiformes,Columbidae (Pigeons and Doves),, 5340,species,crbfrd1,Cream-breasted Fruit-Dove,Ptilinopus merrilli,Columbiformes,Columbidae (Pigeons and Doves),, 5343,species,refdov1,Red-eared Fruit-Dove,Ptilinopus fischeri,Columbiformes,Columbidae (Pigeons and Doves),, 5343.2,issf,reefrd1,Red-eared Fruit-Dove (Red-eared),Ptilinopus fischeri fischeri/centralis,Columbiformes,Columbidae (Pigeons and Doves),,refdov1 5343.4,issf,reefrd2,Red-eared Fruit-Dove (Lompobattang),Ptilinopus fischeri meridionalis,Columbiformes,Columbidae (Pigeons and Doves),,refdov1 5347,species,jafdov1,Jambu Fruit-Dove,Ptilinopus jambu,Columbiformes,Columbidae (Pigeons and Doves),, 5349,species,macfrd1,Maroon-chinned Fruit-Dove,Ptilinopus epius,Columbiformes,Columbidae (Pigeons and Doves),, 5350,species,macfrd3,Banggai Fruit-Dove,Ptilinopus subgularis,Columbiformes,Columbidae (Pigeons and Doves),, 5351,species,macfrd2,Sula Fruit-Dove,Ptilinopus mangoliensis,Columbiformes,Columbidae (Pigeons and Doves),, 5352,species,bcfdov1,Black-chinned Fruit-Dove,Ptilinopus leclancheri,Columbiformes,Columbidae (Pigeons and Doves),, 5356,species,sbfdov1,Scarlet-breasted Fruit-Dove,Ptilinopus bernsteinii,Columbiformes,Columbidae (Pigeons and Doves),, 5359,species,wofdov1,Wompoo Fruit-Dove,Ptilinopus magnificus,Columbiformes,Columbidae (Pigeons and Doves),, 5368,species,psfdov1,Pink-spotted Fruit-Dove,Ptilinopus perlatus,Columbiformes,Columbidae (Pigeons and Doves),, 5372,species,orfdov1,Ornate Fruit-Dove,Ptilinopus ornatus,Columbiformes,Columbidae (Pigeons and Doves),, 5372.2,issf,ornfrd1,Ornate Fruit-Dove (Western),Ptilinopus ornatus ornatus,Columbiformes,Columbidae (Pigeons and Doves),,orfdov1 5372.4,issf,ornfrd2,Ornate Fruit-Dove (Eastern),Ptilinopus ornatus gestroi,Columbiformes,Columbidae (Pigeons and Doves),,orfdov1 5375,species,tafdov1,Tanna Fruit-Dove,Ptilinopus tannensis,Columbiformes,Columbidae (Pigeons and Doves),, 5376,species,offdov1,Orange-fronted Fruit-Dove,Ptilinopus aurantiifrons,Columbiformes,Columbidae (Pigeons and Doves),, 5377,species,wafdov1,Wallace's Fruit-Dove,Ptilinopus wallacii,Columbiformes,Columbidae (Pigeons and Doves),, 5378,species,sufdov1,Superb Fruit-Dove,Ptilinopus superbus,Columbiformes,Columbidae (Pigeons and Doves),, 5378.2,issf,supfrd1,Superb Fruit-Dove (Western),Ptilinopus superbus temminckii,Columbiformes,Columbidae (Pigeons and Doves),,sufdov1 5378.4,issf,supfrd2,Superb Fruit-Dove (Eastern),Ptilinopus superbus superbus,Columbiformes,Columbidae (Pigeons and Doves),,sufdov1 5381,species,mcfdov1,Many-colored Fruit-Dove,Ptilinopus perousii,Columbiformes,Columbidae (Pigeons and Doves),, 5382,species,pucfrd1,Purple-capped Fruit-Dove,Ptilinopus ponapensis,Columbiformes,Columbidae (Pigeons and Doves),, 5383,species,kosfrd1,Kosrae Fruit-Dove,Ptilinopus hernsheimi,Columbiformes,Columbidae (Pigeons and Doves),, 5384,species,ccfdov1,Crimson-crowned Fruit-Dove,Ptilinopus porphyraceus,Columbiformes,Columbidae (Pigeons and Doves),, 5384.2,issf,crcfrd1,Crimson-crowned Fruit-Dove (Tongan),Ptilinopus porphyraceus porphyraceus,Columbiformes,Columbidae (Pigeons and Doves),,ccfdov1 5384.4,issf,crcfrd2,Crimson-crowned Fruit-Dove (Samoan),Ptilinopus porphyraceus fasciatus,Columbiformes,Columbidae (Pigeons and Doves),,ccfdov1 5389,species,pafdov1,Palau Fruit-Dove,Ptilinopus pelewensis,Columbiformes,Columbidae (Pigeons and Doves),, 5390,species,cifdov1,Cook Islands Fruit-Dove,Ptilinopus rarotongensis,Columbiformes,Columbidae (Pigeons and Doves),, 5393,species,mafdov2,Mariana Fruit-Dove,Ptilinopus roseicapilla,Columbiformes,Columbidae (Pigeons and Doves),, 5394,species,rcfdov1,Rose-crowned Fruit-Dove,Ptilinopus regina,Columbiformes,Columbidae (Pigeons and Doves),, 5400,species,scfdov1,Silver-capped Fruit-Dove,Ptilinopus richardsii,Columbiformes,Columbidae (Pigeons and Doves),, 5403,species,gygfrd1,Gray-green Fruit-Dove,Ptilinopus purpuratus,Columbiformes,Columbidae (Pigeons and Doves),, 5405,issf,gygfrd2,Gray-green Fruit-Dove (chrysogaster),Ptilinopus purpuratus chrysogaster,Columbiformes,Columbidae (Pigeons and Doves),,gygfrd1 5406,issf,gygfrd3,Gray-green Fruit-Dove (purpuratus/frater),Ptilinopus purpuratus purpuratus/frater,Columbiformes,Columbidae (Pigeons and Doves),,gygfrd1 5407,species,mafdov1,Makatea Fruit-Dove,Ptilinopus chalcurus,Columbiformes,Columbidae (Pigeons and Doves),, 5408,species,atfdov1,Atoll Fruit-Dove,Ptilinopus coralensis,Columbiformes,Columbidae (Pigeons and Doves),, 5409,species,rbfdov1,Red-bellied Fruit-Dove,Ptilinopus greyi,Columbiformes,Columbidae (Pigeons and Doves),, 5410,species,rafdov1,Rapa Fruit-Dove,Ptilinopus huttoni,Columbiformes,Columbidae (Pigeons and Doves),, 5411,species,wcfdov1,White-capped Fruit-Dove,Ptilinopus dupetithouarsii,Columbiformes,Columbidae (Pigeons and Doves),, 5414,species,rmfdov1,Red-moustached Fruit-Dove,Ptilinopus mercierii,Columbiformes,Columbidae (Pigeons and Doves),, 5415,species,hifdov1,Henderson Island Fruit-Dove,Ptilinopus insularis,Columbiformes,Columbidae (Pigeons and Doves),, 5416,species,cofdov1,Coroneted Fruit-Dove,Ptilinopus coronulatus,Columbiformes,Columbidae (Pigeons and Doves),, 5422,species,befdov1,Beautiful Fruit-Dove,Ptilinopus pulchellus,Columbiformes,Columbidae (Pigeons and Doves),, 5425,species,bcfdov2,Blue-capped Fruit-Dove,Ptilinopus monacha,Columbiformes,Columbidae (Pigeons and Doves),, 5426,species,whbfrd1,White-breasted Fruit-Dove,Ptilinopus rivoli,Columbiformes,Columbidae (Pigeons and Doves),, 5432,species,ybfdov1,Yellow-bibbed Fruit-Dove,Ptilinopus solomonensis,Columbiformes,Columbidae (Pigeons and Doves),, 5432.2,issf,yebfrd1,Yellow-bibbed Fruit-Dove (Geelvink),Ptilinopus solomonensis speciosus,Columbiformes,Columbidae (Pigeons and Doves),,ybfdov1 5432.4,issf,yebfrd2,Yellow-bibbed Fruit-Dove (Yellow-banded),Ptilinopus solomonensis [solomonensis Group],Columbiformes,Columbidae (Pigeons and Doves),,ybfdov1 5442,species,cbfdov1,Claret-breasted Fruit-Dove,Ptilinopus viridis,Columbiformes,Columbidae (Pigeons and Doves),, 5449,species,whfdov2,White-headed Fruit-Dove,Ptilinopus eugeniae,Columbiformes,Columbidae (Pigeons and Doves),, 5450,species,obfdov1,Orange-bellied Fruit-Dove,Ptilinopus iozonus,Columbiformes,Columbidae (Pigeons and Doves),, 5456,species,kbfdov1,Knob-billed Fruit-Dove,Ptilinopus insolitus,Columbiformes,Columbidae (Pigeons and Doves),, 5459,species,gyhfrd1,Gray-headed Fruit-Dove,Ptilinopus hyogastrus,Columbiformes,Columbidae (Pigeons and Doves),, 5460,species,cafdov1,Carunculated Fruit-Dove,Ptilinopus granulifrons,Columbiformes,Columbidae (Pigeons and Doves),, 5461,species,bknfrd1,Black-naped Fruit-Dove,Ptilinopus melanospilus,Columbiformes,Columbidae (Pigeons and Doves),, 5467,species,dwafrd1,Dwarf Fruit-Dove,Ptilinopus nainus,Columbiformes,Columbidae (Pigeons and Doves),, 5470,species,nefdov1,Negros Fruit-Dove,Ptilinopus arcanus,Columbiformes,Columbidae (Pigeons and Doves),, 5471,species,oradov1,Orange Dove,Ptilinopus victor,Columbiformes,Columbidae (Pigeons and Doves),, 5474,species,goldov1,Golden Dove,Ptilinopus luteovirens,Columbiformes,Columbidae (Pigeons and Doves),, 5475,species,veldov1,Velvet Dove,Ptilinopus layardi,Columbiformes,Columbidae (Pigeons and Doves),, 5476,spuh,fruit-1,fruit-dove sp.,Ptilinopus sp.,Columbiformes,Columbidae (Pigeons and Doves),, 5477,species,clfdov1,Cloven-feathered Dove,Drepanoptila holosericea,Columbiformes,Columbidae (Pigeons and Doves),, 5478,species,mabpig2,Mauritius Blue-Pigeon,Alectroenas nitidissimus,Columbiformes,Columbidae (Pigeons and Doves),, 5479,species,mabpig1,Madagascar Blue-Pigeon,Alectroenas madagascariensis,Columbiformes,Columbidae (Pigeons and Doves),, 5480,species,cobpig1,Comoro Blue-Pigeon,Alectroenas sganzini,Columbiformes,Columbidae (Pigeons and Doves),, 5483,species,sebpig1,Seychelles Blue-Pigeon,Alectroenas pulcherrimus,Columbiformes,Columbidae (Pigeons and Doves),, 5484,species,pbipig1,Pink-bellied Imperial-Pigeon,Ducula poliocephala,Columbiformes,Columbidae (Pigeons and Doves),, 5485,species,wbipig1,White-bellied Imperial-Pigeon,Ducula forsteni,Columbiformes,Columbidae (Pigeons and Doves),, 5486,species,miipig2,Mindoro Imperial-Pigeon,Ducula mindorensis,Columbiformes,Columbidae (Pigeons and Doves),, 5487,species,gyhimp1,Gray-headed Imperial-Pigeon,Ducula radiata,Columbiformes,Columbidae (Pigeons and Doves),, 5488,species,spipig3,Spotted Imperial-Pigeon,Ducula carola,Columbiformes,Columbidae (Pigeons and Doves),, 5492,species,gripig1,Green Imperial-Pigeon,Ducula aenea,Columbiformes,Columbidae (Pigeons and Doves),, 5492.5,issf,grnimp1,Green Imperial-Pigeon (Green),Ducula aenea [aenea Group],Columbiformes,Columbidae (Pigeons and Doves),,gripig1 5504,issf,grnimp3,Green Imperial-Pigeon (Maroon-naped),Ducula aenea nuchalis,Columbiformes,Columbidae (Pigeons and Doves),,gripig1 5505,issf,grnimp4,Green Imperial-Pigeon (Rufous-naped),Ducula aenea paulina,Columbiformes,Columbidae (Pigeons and Doves),,gripig1 5505.5,species,grnimp2,Nicobar Imperial-Pigeon,Ducula nicobarica,Columbiformes,Columbidae (Pigeons and Doves),, 5507,species,wheimp2,Spectacled Imperial-Pigeon,Ducula perspicillata,Columbiformes,Columbidae (Pigeons and Doves),, 5508,species,wheimp1,Seram Imperial-Pigeon,Ducula neglecta,Columbiformes,Columbidae (Pigeons and Doves),, 5509,species,elipig1,Elegant Imperial-Pigeon,Ducula concinna,Columbiformes,Columbidae (Pigeons and Doves),, 5510,species,paipig1,Pacific Imperial-Pigeon,Ducula pacifica,Columbiformes,Columbidae (Pigeons and Doves),, 5513,species,rkipig1,Red-knobbed Imperial-Pigeon,Ducula rubricera,Columbiformes,Columbidae (Pigeons and Doves),, 5514,issf,rekimp1,Red-knobbed Imperial-Pigeon (Pink-necked),Ducula rubricera rubricera,Columbiformes,Columbidae (Pigeons and Doves),,rkipig1 5515,issf,rekimp2,Red-knobbed Imperial-Pigeon (Gray-necked),Ducula rubricera rufigula,Columbiformes,Columbidae (Pigeons and Doves),,rkipig1 5516,species,miipig1,Micronesian Imperial-Pigeon,Ducula oceanica,Columbiformes,Columbidae (Pigeons and Doves),, 5522,species,poipig1,Polynesian Imperial-Pigeon,Ducula aurorae,Columbiformes,Columbidae (Pigeons and Doves),, 5525,species,marimp1,Marquesas Imperial-Pigeon,Ducula galeata,Columbiformes,Columbidae (Pigeons and Doves),, 5526,species,spipig1,Spice Imperial-Pigeon,Ducula myristicivora,Columbiformes,Columbidae (Pigeons and Doves),, 5527,issf,spiimp1,Spice Imperial-Pigeon (Pink-naped),Ducula myristicivora myristicivora,Columbiformes,Columbidae (Pigeons and Doves),,spipig1 5528,issf,spiimp2,Spice Imperial-Pigeon (Gray-naped),Ducula myristicivora geelvinkiana,Columbiformes,Columbidae (Pigeons and Doves),,spipig1 5529,species,ptipig1,Purple-tailed Imperial-Pigeon,Ducula rufigaster,Columbiformes,Columbidae (Pigeons and Doves),, 5532,species,cbipig2,Cinnamon-bellied Imperial-Pigeon,Ducula basilica,Columbiformes,Columbidae (Pigeons and Doves),, 5533,issf,cibimp1,Cinnamon-bellied Imperial-Pigeon (Gray-naped),Ducula basilica basilica,Columbiformes,Columbidae (Pigeons and Doves),,cbipig2 5534,issf,cibimp2,Cinnamon-bellied Imperial-Pigeon (Golden-naped),Ducula basilica obiensis,Columbiformes,Columbidae (Pigeons and Doves),,cbipig2 5535,species,fiipig1,Finsch's Imperial-Pigeon,Ducula finschii,Columbiformes,Columbidae (Pigeons and Doves),, 5536,species,rufimp1,Rufescent Imperial-Pigeon,Ducula chalconota,Columbiformes,Columbidae (Pigeons and Doves),, 5537,issf,rufimp2,Rufescent Imperial-Pigeon (Purple-rumped),Ducula chalconota chalconota,Columbiformes,Columbidae (Pigeons and Doves),,rufimp1 5538,issf,rufimp3,Rufescent Imperial-Pigeon (Green-rumped),Ducula chalconota smaragdina,Columbiformes,Columbidae (Pigeons and Doves),,rufimp1 5539,species,isipig1,Island Imperial-Pigeon,Ducula pistrinaria,Columbiformes,Columbidae (Pigeons and Doves),, 5544,species,phipig1,Pink-headed Imperial-Pigeon,Ducula rosacea,Columbiformes,Columbidae (Pigeons and Doves),, 5545,species,ciipig1,Christmas Island Imperial-Pigeon,Ducula whartoni,Columbiformes,Columbidae (Pigeons and Doves),, 5546,species,gryimp1,Gray Imperial-Pigeon,Ducula pickeringii,Columbiformes,Columbidae (Pigeons and Doves),, 5550,species,peipig1,Peale's Imperial-Pigeon,Ducula latrans,Columbiformes,Columbidae (Pigeons and Doves),, 5551,species,cbipig1,Chestnut-bellied Imperial-Pigeon,Ducula brenchleyi,Columbiformes,Columbidae (Pigeons and Doves),, 5552,species,baipig1,Baker's Imperial-Pigeon,Ducula bakeri,Columbiformes,Columbidae (Pigeons and Doves),, 5553,species,ncipig1,New Caledonian Imperial-Pigeon,Ducula goliath,Columbiformes,Columbidae (Pigeons and Doves),, 5554,species,piipig2,Pinon's Imperial-Pigeon,Ducula pinon,Columbiformes,Columbidae (Pigeons and Doves),, 5554.5,issf,pinimp1,Pinon's Imperial-Pigeon (Gray-headed),Ducula pinon pinon/jobiensis,Columbiformes,Columbidae (Pigeons and Doves),,piipig2 5558,issf,pinimp2,Pinon's Imperial-Pigeon (Pink-headed),Ducula pinon salvadorii,Columbiformes,Columbidae (Pigeons and Doves),,piipig2 5559,species,biipig1,Bismarck Imperial-Pigeon,Ducula melanochroa,Columbiformes,Columbidae (Pigeons and Doves),, 5560,species,coipig1,Collared Imperial-Pigeon,Ducula mullerii,Columbiformes,Columbidae (Pigeons and Doves),, 5563,species,zoeimp1,Zoe Imperial-Pigeon,Ducula zoeae,Columbiformes,Columbidae (Pigeons and Doves),, 5564,species,moipig1,Mountain Imperial-Pigeon,Ducula badia,Columbiformes,Columbidae (Pigeons and Doves),, 5564.2,issf,mouimp1,Mountain Imperial-Pigeon (cuprea),Ducula badia cuprea,Columbiformes,Columbidae (Pigeons and Doves),,moipig1 5564.4,issf,mouimp2,Mountain Imperial-Pigeon (badia Group),Ducula badia [badia Group],Columbiformes,Columbidae (Pigeons and Doves),,moipig1 5569,species,dbipig1,Dark-backed Imperial-Pigeon,Ducula lacernulata,Columbiformes,Columbidae (Pigeons and Doves),, 5570,issf,dabimp1,Dark-backed Imperial-Pigeon (Gray-headed),Ducula lacernulata lacernulata,Columbiformes,Columbidae (Pigeons and Doves),,dbipig1 5571,issf,dabimp2,Dark-backed Imperial-Pigeon (Pink-headed),Ducula lacernulata williami,Columbiformes,Columbidae (Pigeons and Doves),,dbipig1 5572,issf,dabimp3,Dark-backed Imperial-Pigeon (Gray-crowned),Ducula lacernulata sasakensis,Columbiformes,Columbidae (Pigeons and Doves),,dbipig1 5573,species,tiipig1,Timor Imperial-Pigeon,Ducula cineracea,Columbiformes,Columbidae (Pigeons and Doves),, 5576,species,piipig1,Pied Imperial-Pigeon,Ducula bicolor,Columbiformes,Columbidae (Pigeons and Doves),, 5579,species,toipig1,Torresian Imperial-Pigeon,Ducula spilorrhoa,Columbiformes,Columbidae (Pigeons and Doves),, 5580,issf,torimp2,Torresian Imperial-Pigeon (Yellowish),Ducula spilorrhoa subflavescens,Columbiformes,Columbidae (Pigeons and Doves),,toipig1 5581,issf,torimp1,Torresian Imperial-Pigeon (Torresian),Ducula spilorrhoa spilorrhoa,Columbiformes,Columbidae (Pigeons and Doves),,toipig1 5582,species,whiimp1,Silver-tipped Imperial-Pigeon,Ducula luctuosa,Columbiformes,Columbidae (Pigeons and Doves),, 5583,spuh,imperi1,imperial-pigeon sp.,Ducula sp.,Columbiformes,Columbidae (Pigeons and Doves),, 5584,species,toppig1,Topknot Pigeon,Lopholaimus antarcticus,Columbiformes,Columbidae (Pigeons and Doves),, 5585,species,nezpig2,New Zealand Pigeon,Hemiphaga novaeseelandiae,Columbiformes,Columbidae (Pigeons and Doves),, 5586,species,nezpig3,Chatham Island Pigeon,Hemiphaga chathamensis,Columbiformes,Columbidae (Pigeons and Doves),, 5587,species,noipig1,Norfolk Island Pigeon,Hemiphaga spadicea,Columbiformes,Columbidae (Pigeons and Doves),, 5588,species,sompig2,Sombre Pigeon,Cryptophaps poecilorrhoa,Columbiformes,Columbidae (Pigeons and Doves),, 5589,species,pampig2,Papuan Mountain-Pigeon,Gymnophaps albertisii,Columbiformes,Columbidae (Pigeons and Doves),, 5593,species,lotmop1,Buru Mountain-Pigeon,Gymnophaps mada,Columbiformes,Columbidae (Pigeons and Doves),, 5594,species,lotmop2,Seram Mountain-Pigeon,Gymnophaps stalkeri,Columbiformes,Columbidae (Pigeons and Doves),, 5595,species,pampig1,Pale Mountain-Pigeon,Gymnophaps solomonensis,Columbiformes,Columbidae (Pigeons and Doves),, 5596,spuh,dove1,pigeon/dove sp.,Columbidae sp.,Columbiformes,Columbidae (Pigeons and Doves),, 5596.5,species,hoatzi1,Hoatzin,Opisthocomus hoazin,Opisthocomiformes,Opisthocomidae (Hoatzin),Hoatzin, 6543,species,grbtur1,Great Blue Turaco,Corythaeola cristata,Cuculiformes,Musophagidae (Turacos),Turacos, 6544,species,guitur1,Guinea Turaco,Tauraco persa,Cuculiformes,Musophagidae (Turacos),, 6545,issf,guitur2,Guinea Turaco (Buffon's),Tauraco persa buffoni,Cuculiformes,Musophagidae (Turacos),,guitur1 6545.5,issf,guitur3,Guinea Turaco (Guinea),Tauraco persa persa/zenkeri,Cuculiformes,Musophagidae (Turacos),,guitur1 6548,species,livtur1,Livingstone's Turaco,Tauraco livingstonii,Cuculiformes,Musophagidae (Turacos),, 6552,species,schtur1,Schalow's Turaco,Tauraco schalowi,Cuculiformes,Musophagidae (Turacos),, 6553,species,knytur1,Knysna Turaco,Tauraco corythaix,Cuculiformes,Musophagidae (Turacos),, 6554,issf,knytur2,Knysna Turaco (Northern),Tauraco corythaix phoebus,Cuculiformes,Musophagidae (Turacos),,knytur1 6555,issf,knytur3,Knysna Turaco (Southern),Tauraco corythaix corythaix,Cuculiformes,Musophagidae (Turacos),,knytur1 6556,species,blbtur1,Black-billed Turaco,Tauraco schuettii,Cuculiformes,Musophagidae (Turacos),, 6557,issf,bkbtur1,Black-billed Turaco (Green-rumped),Tauraco schuettii emini,Cuculiformes,Musophagidae (Turacos),,blbtur1 6558,issf,bkbtur2,Black-billed Turaco (Black-rumped),Tauraco schuettii schuettii,Cuculiformes,Musophagidae (Turacos),,blbtur1 6559,species,whctur2,White-crested Turaco,Tauraco leucolophus,Cuculiformes,Musophagidae (Turacos),, 6560,species,fistur1,Fischer's Turaco,Tauraco fischeri,Cuculiformes,Musophagidae (Turacos),, 6561,issf,fistur2,Fischer's Turaco (Fischer's),Tauraco fischeri fischeri,Cuculiformes,Musophagidae (Turacos),,fistur1 6562,issf,fistur3,Fischer's Turaco (Zanzibar),Tauraco fischeri zanzibaricus,Cuculiformes,Musophagidae (Turacos),,fistur1 6563,species,yebtur1,Yellow-billed Turaco,Tauraco macrorhynchus,Cuculiformes,Musophagidae (Turacos),, 6564,issf,yebtur2,Yellow-billed Turaco (Yellow-billed),Tauraco macrorhynchus macrorhynchus,Cuculiformes,Musophagidae (Turacos),,yebtur1 6565,issf,yebtur3,Yellow-billed Turaco (Verreaux's),Tauraco macrorhynchus verreauxii,Cuculiformes,Musophagidae (Turacos),,yebtur1 6566,species,bantur1,Bannerman's Turaco,Tauraco bannermani,Cuculiformes,Musophagidae (Turacos),, 6567,species,rectur1,Red-crested Turaco,Tauraco erythrolophus,Cuculiformes,Musophagidae (Turacos),, 6568,species,hartur1,Hartlaub's Turaco,Tauraco hartlaubi,Cuculiformes,Musophagidae (Turacos),, 6569,species,whctur1,White-cheeked Turaco,Tauraco leucotis,Cuculiformes,Musophagidae (Turacos),, 6570,issf,whctur3,White-cheeked Turaco (White-cheeked),Tauraco leucotis leucotis,Cuculiformes,Musophagidae (Turacos),,whctur1 6571,issf,whctur4,White-cheeked Turaco (Donaldson's),Tauraco leucotis donaldsoni,Cuculiformes,Musophagidae (Turacos),,whctur1 6572,species,prrtur1,Prince Ruspoli's Turaco,Tauraco ruspolii,Cuculiformes,Musophagidae (Turacos),, 6572.2,hybrid,x00800,White-cheeked x Prince Ruspoli's Turaco (hybrid),Tauraco leucotis x ruspolii,Cuculiformes,Musophagidae (Turacos),, 6573,species,puctur2,Purple-crested Turaco,Tauraco porphyreolophus,Cuculiformes,Musophagidae (Turacos),, 6575.5,spuh,taurac1,Tauraco sp.,Tauraco sp.,Cuculiformes,Musophagidae (Turacos),, 6576,species,ruwtur2,Ruwenzori Turaco,Ruwenzorornis johnstoni,Cuculiformes,Musophagidae (Turacos),, 6577,issf,ruwtur1,Ruwenzori Turaco (Ruwenzori),Ruwenzorornis johnstoni johnstoni,Cuculiformes,Musophagidae (Turacos),,ruwtur2 6578,issf,ruwtur3,Ruwenzori Turaco (Mt. Kabobo),Ruwenzorornis johnstoni bredoi,Cuculiformes,Musophagidae (Turacos),,ruwtur2 6579,issf,ruwtur4,Ruwenzori Turaco (Kivu),Ruwenzorornis johnstoni kivuensis,Cuculiformes,Musophagidae (Turacos),,ruwtur2 6580,species,viotur1,Violet Turaco,Musophaga violacea,Cuculiformes,Musophagidae (Turacos),, 6581,species,rostur1,Ross's Turaco,Musophaga rossae,Cuculiformes,Musophagidae (Turacos),, 6582,species,bfgbir1,Bare-faced Go-away-bird,Corythaixoides personatus,Cuculiformes,Musophagidae (Turacos),, 6582.2,issf,bafgab1,Bare-faced Go-away-bird (Brown-faced),Corythaixoides personatus personatus,Cuculiformes,Musophagidae (Turacos),,bfgbir1 6582.4,issf,bafgab2,Bare-faced Go-away-bird (Black-faced),Corythaixoides personatus leopoldi,Cuculiformes,Musophagidae (Turacos),,bfgbir1 6585,species,grygab1,Gray Go-away-bird,Corythaixoides concolor,Cuculiformes,Musophagidae (Turacos),, 6590,species,wbgbir1,White-bellied Go-away-bird,Corythaixoides leucogaster,Cuculiformes,Musophagidae (Turacos),, 6591,species,wesple1,Western Plantain-eater,Crinifer piscator,Cuculiformes,Musophagidae (Turacos),, 6592,species,easple1,Eastern Plantain-eater,Crinifer zonurus,Cuculiformes,Musophagidae (Turacos),, 6592.5,spuh,turaco1,turaco sp.,Musophagidae sp.,Cuculiformes,Musophagidae (Turacos),, 6594,species,guicuc1,Guira Cuckoo,Guira guira,Cuculiformes,Cuculidae (Cuckoos),Cuckoos, 6598,species,greani1,Greater Ani,Crotophaga major,Cuculiformes,Cuculidae (Cuckoos),, 6599,species,smbani,Smooth-billed Ani,Crotophaga ani,Cuculiformes,Cuculidae (Cuckoos),, 6600,species,grbani,Groove-billed Ani,Crotophaga sulcirostris,Cuculiformes,Cuculidae (Cuckoos),, 6746.5,slash,y00498,Smooth-billed/Groove-billed Ani,Crotophaga ani/sulcirostris,Cuculiformes,Cuculidae (Cuckoos),, 6749,species,strcuc1,Striped Cuckoo,Tapera naevia,Cuculiformes,Cuculidae (Cuckoos),, 6750,species,phecuc1,Pheasant Cuckoo,Dromococcyx phasianellus,Cuculiformes,Cuculidae (Cuckoos),, 6753,species,pavcuc1,Pavonine Cuckoo,Dromococcyx pavoninus,Cuculiformes,Cuculidae (Cuckoos),, 6754,species,legcuc1,Lesser Ground-Cuckoo,Morococcyx erythropygus,Cuculiformes,Cuculidae (Cuckoos),, 6755,species,lesroa1,Lesser Roadrunner,Geococcyx velox,Cuculiformes,Cuculidae (Cuckoos),, 6762,species,greroa,Greater Roadrunner,Geococcyx californianus,Cuculiformes,Cuculidae (Cuckoos),, 6766,slash,y00957,Lesser/Greater Roadrunner,Geococcyx velox/californianus,Cuculiformes,Cuculidae (Cuckoos),, 6769,species,rvgcuc1,Rufous-vented Ground-Cuckoo,Neomorphus geoffroyi,Cuculiformes,Cuculidae (Cuckoos),, 6770,species,scgcuc1,Scaled Ground-Cuckoo,Neomorphus squamiger,Cuculiformes,Cuculidae (Cuckoos),, 6774,species,bagcuc1,Banded Ground-Cuckoo,Neomorphus radiolosus,Cuculiformes,Cuculidae (Cuckoos),, 6781,species,rwgcuc1,Rufous-winged Ground-Cuckoo,Neomorphus rufipennis,Cuculiformes,Cuculidae (Cuckoos),, 6782,species,rbgcuc1,Red-billed Ground-Cuckoo,Neomorphus pucheranii,Cuculiformes,Cuculidae (Cuckoos),, 6785,species,sugcuc1,Sumatran Ground-Cuckoo,Carpococcyx viridis,Cuculiformes,Cuculidae (Cuckoos),, 6785.5,species,bogcuc1,Bornean Ground-Cuckoo,Carpococcyx radiceus,Cuculiformes,Cuculidae (Cuckoos),, 6786,species,cbgcuc1,Coral-billed Ground-Cuckoo,Carpococcyx renauldi,Cuculiformes,Cuculidae (Cuckoos),, 6787,species,crecou1,Crested Coua,Coua cristata,Cuculiformes,Cuculidae (Cuckoos),, 6787.2,issf,crecou2,Crested Coua (Crested),Coua cristata [cristata Group],Cuculiformes,Cuculidae (Cuckoos),,crecou1 6787.4,issf,crecou3,Crested Coua (Chestnut-vented),Coua cristata pyropyga,Cuculiformes,Cuculidae (Cuckoos),,crecou1 6788,species,vercou1,Verreaux's Coua,Coua verreauxi,Cuculiformes,Cuculidae (Cuckoos),, 6789,species,blucou1,Blue Coua,Coua caerulea,Cuculiformes,Cuculidae (Cuckoos),, 6790,species,reccou1,Red-capped Coua,Coua ruficeps,Cuculiformes,Cuculidae (Cuckoos),, 6791,issf,reccou2,Red-capped Coua (Red-capped),Coua ruficeps ruficeps,Cuculiformes,Cuculidae (Cuckoos),,reccou1 6792,issf,reccou3,Red-capped Coua (Green-capped),Coua ruficeps olivaceiceps,Cuculiformes,Cuculidae (Cuckoos),,reccou1 6793,species,refcou1,Red-fronted Coua,Coua reynaudii,Cuculiformes,Cuculidae (Cuckoos),, 6794,species,coqcou1,Coquerel's Coua,Coua coquereli,Cuculiformes,Cuculidae (Cuckoos),, 6795,species,runcou1,Running Coua,Coua cursor,Cuculiformes,Cuculidae (Cuckoos),, 6796,species,giacou1,Giant Coua,Coua gigas,Cuculiformes,Cuculidae (Cuckoos),, 6797,species,snecou1,Snail-eating Coua,Coua delalandei,Cuculiformes,Cuculidae (Cuckoos),, 6798,species,rebcou1,Red-breasted Coua,Coua serriana,Cuculiformes,Cuculidae (Cuckoos),, 6803,spuh,coua1,Coua sp.,Coua sp.,Cuculiformes,Cuculidae (Cuckoos),, 6804,species,buhcou1,Buff-headed Coucal,Centropus milo,Cuculiformes,Cuculidae (Cuckoos),, 6804.5,species,piecou1,Pied Coucal,Centropus ateralbus,Cuculiformes,Cuculidae (Cuckoos),, 6805,species,biacou1,Biak Coucal,Centropus chalybeus,Cuculiformes,Cuculidae (Cuckoos),, 6808,species,grbcou1,Greater Black Coucal,Centropus menbeki,Cuculiformes,Cuculidae (Cuckoos),, 6809,species,rufcou1,Rufous Coucal,Centropus unirufus,Cuculiformes,Cuculidae (Cuckoos),, 6812,species,grbcou2,Green-billed Coucal,Centropus chlororhynchos,Cuculiformes,Cuculidae (Cuckoos),, 6813,species,blfcou1,Black-faced Coucal,Centropus melanops,Cuculiformes,Cuculidae (Cuckoos),, 6816,species,shtcou1,Short-toed Coucal,Centropus rectunguis,Cuculiformes,Cuculidae (Cuckoos),, 6817,species,blhcou1,Black-hooded Coucal,Centropus steerii,Cuculiformes,Cuculidae (Cuckoos),, 6818,species,baycou1,Bay Coucal,Centropus celebensis,Cuculiformes,Cuculidae (Cuckoos),, 6822,species,gabcou1,Gabon Coucal,Centropus anselli,Cuculiformes,Cuculidae (Cuckoos),, 6822.2,species,bltcou1,Black-throated Coucal,Centropus leucogaster,Cuculiformes,Cuculidae (Cuckoos),, 6830,species,sencou1,Senegal Coucal,Centropus senegalensis,Cuculiformes,Cuculidae (Cuckoos),, 6830.5,species,blhcou2,Blue-headed Coucal,Centropus monachus,Cuculiformes,Cuculidae (Cuckoos),, 6831,species,cotcou1,Coppery-tailed Coucal,Centropus cupreicaudus,Cuculiformes,Cuculidae (Cuckoos),, 6834,species,whbcou1,White-browed Coucal,Centropus superciliosus,Cuculiformes,Cuculidae (Cuckoos),, 6835,issf,whbcou2,White-browed Coucal (White-browed),Centropus superciliosus superciliosus/loandae,Cuculiformes,Cuculidae (Cuckoos),,whbcou1 6836,issf,whbcou3,White-browed Coucal (Burchell's),Centropus superciliosus burchellii/fasciipygialis,Cuculiformes,Cuculidae (Cuckoos),,whbcou1 6837,species,suncou1,Sunda Coucal,Centropus nigrorufus,Cuculiformes,Cuculidae (Cuckoos),, 6837.5,species,andcou1,Andaman Coucal,Centropus andamanensis,Cuculiformes,Cuculidae (Cuckoos),, 6843.5,species,grecou1,Greater Coucal,Centropus sinensis,Cuculiformes,Cuculidae (Cuckoos),, 6844,issf,grecou2,Greater Coucal (Greater),Centropus sinensis [sinensis Group],Cuculiformes,Cuculidae (Cuckoos),,grecou1 6845,issf,grecou3,Greater Coucal (Southern),Centropus sinensis parroti,Cuculiformes,Cuculidae (Cuckoos),,grecou1 6850,species,golcou1,Goliath Coucal,Centropus goliath,Cuculiformes,Cuculidae (Cuckoos),, 6854,species,madcou1,Madagascar Coucal,Centropus toulou,Cuculiformes,Cuculidae (Cuckoos),, 6855,species,blacou1,Black Coucal,Centropus grillii,Cuculiformes,Cuculidae (Cuckoos),, 6856,species,phicou1,Philippine Coucal,Centropus viridis,Cuculiformes,Cuculidae (Cuckoos),, 6862,species,lescou1,Lesser Coucal,Centropus bengalensis,Cuculiformes,Cuculidae (Cuckoos),, 6866,species,viocou1,Violaceous Coucal,Centropus violaceus,Cuculiformes,Cuculidae (Cuckoos),, 6867,species,lebcou1,Lesser Black Coucal,Centropus bernsteini,Cuculiformes,Cuculidae (Cuckoos),, 6870,species,phecou2,Pheasant Coucal,Centropus phasianinus,Cuculiformes,Cuculidae (Cuckoos),, 6871,issf,kaicou1,Pheasant Coucal (Kai),Centropus phasianinus spilopterus,Cuculiformes,Cuculidae (Cuckoos),,phecou2 6875,issf,phecou1,Pheasant Coucal (Pheasant),Centropus phasianinus [phasianinus Group],Cuculiformes,Cuculidae (Cuckoos),,phecou2 6877,spuh,coucal1,coucal sp.,Centropus sp.,Cuculiformes,Cuculidae (Cuckoos),, 6879,species,rafmal1,Raffles's Malkoha,Rhinortha chlorophaea,Cuculiformes,Cuculidae (Cuckoos),, 6879.5,species,yellow5,Blue Malkoha,Ceuthmochares aereus,Cuculiformes,Cuculidae (Cuckoos),, 6880,species,yellow6,Green Malkoha,Ceuthmochares australis,Cuculiformes,Cuculidae (Cuckoos),, 6880.5,species,sirmal1,Sirkeer Malkoha,Taccocua leschenaultii,Cuculiformes,Cuculidae (Cuckoos),, 6881,species,rebmal2,Red-billed Malkoha,Zanclostomus javanicus,Cuculiformes,Cuculidae (Cuckoos),, 6881.5,species,chbmal2,Chestnut-breasted Malkoha,Phaenicophaeus curvirostris,Cuculiformes,Cuculidae (Cuckoos),, 6881.7,issf,chbmal3,Chestnut-breasted Malkoha (Mentawai),Phaenicophaeus curvirostris oeneicaudus,Cuculiformes,Cuculidae (Cuckoos),,chbmal2 6881.9,issf,chbmal4,Chestnut-breasted Malkoha (Chestnut-breasted),Phaenicophaeus curvirostris [curvirostris Group],Cuculiformes,Cuculidae (Cuckoos),,chbmal2 6882,species,chbmal1,Chestnut-bellied Malkoha,Phaenicophaeus sumatranus,Cuculiformes,Cuculidae (Cuckoos),, 6882.5,species,refmal1,Red-faced Malkoha,Phaenicophaeus pyrrhocephalus,Cuculiformes,Cuculidae (Cuckoos),, 6883,species,blfmal1,Blue-faced Malkoha,Phaenicophaeus viridirostris,Cuculiformes,Cuculidae (Cuckoos),, 6883.5,species,blbmal1,Black-bellied Malkoha,Phaenicophaeus diardi,Cuculiformes,Cuculidae (Cuckoos),, 6884,species,grbmal1,Green-billed Malkoha,Phaenicophaeus tristis,Cuculiformes,Cuculidae (Cuckoos),, 6884.5,species,yebmal1,Yellow-billed Malkoha,Rhamphococcyx calyorhynchus,Cuculiformes,Cuculidae (Cuckoos),, 6885,species,recmal1,Red-crested Malkoha,Dasylophus superciliosus,Cuculiformes,Cuculidae (Cuckoos),, 6885.5,species,scfmal1,Scale-feathered Malkoha,Dasylophus cumingi,Cuculiformes,Cuculidae (Cuckoos),, 6886,spuh,malkoh1,malkoha sp.,Cuculidae sp. (malkoha sp.),Cuculiformes,Cuculidae (Cuckoos),, 6886.5,species,chwcuc1,Chestnut-winged Cuckoo,Clamator coromandus,Cuculiformes,Cuculidae (Cuckoos),, 6887,species,grscuc1,Great Spotted Cuckoo,Clamator glandarius,Cuculiformes,Cuculidae (Cuckoos),, 6887.1,species,levcuc1,Levaillant's Cuckoo,Clamator levaillantii,Cuculiformes,Cuculidae (Cuckoos),, 6887.2,species,piecuc1,Pied Cuckoo,Clamator jacobinus,Cuculiformes,Cuculidae (Cuckoos),, 6887.3,species,litcuc2,Little Cuckoo,Coccycua minuta,Cuculiformes,Cuculidae (Cuckoos),, 6887.4,species,dwacuc1,Dwarf Cuckoo,Coccycua pumila,Cuculiformes,Cuculidae (Cuckoos),, 6887.5,species,asccuc1,Ash-colored Cuckoo,Coccycua cinerea,Cuculiformes,Cuculidae (Cuckoos),, 6888,species,squcuc1,Squirrel Cuckoo,Piaya cayana,Cuculiformes,Cuculidae (Cuckoos),, 6889,issf,squcuc2,Squirrel Cuckoo (West Mexico),Piaya cayana mexicana,Cuculiformes,Cuculidae (Cuckoos),,squcuc1 6890,issf,squcuc3,Squirrel Cuckoo (Middle America),Piaya cayana thermophila,Cuculiformes,Cuculidae (Cuckoos),,squcuc1 6891,issf,squcuc5,Squirrel Cuckoo (nigricrissa),Piaya cayana nigricrissa,Cuculiformes,Cuculidae (Cuckoos),,squcuc1 6892,issf,squcuc4,Squirrel Cuckoo (Amazonian),Piaya cayana [cayana Group],Cuculiformes,Cuculidae (Cuckoos),,squcuc1 6904,species,blbcuc1,Black-bellied Cuckoo,Piaya melanogaster,Cuculiformes,Cuculidae (Cuckoos),, 6904.5,slash,y00857,Squirrel/Black-bellied Cuckoo,Piaya cayana/melanogaster,Cuculiformes,Cuculidae (Cuckoos),, 6905,species,dabcuc1,Dark-billed Cuckoo,Coccyzus melacoryphus,Cuculiformes,Cuculidae (Cuckoos),, 6907,species,yebcuc,Yellow-billed Cuckoo,Coccyzus americanus,Cuculiformes,Cuculidae (Cuckoos),, 6908,species,pebcuc1,Pearly-breasted Cuckoo,Coccyzus euleri,Cuculiformes,Cuculidae (Cuckoos),, 6908.1,slash,y00958,Yellow-billed/Pearly-breasted Cuckoo,Coccyzus americanus/euleri,Cuculiformes,Cuculidae (Cuckoos),, 6909,species,mancuc,Mangrove Cuckoo,Coccyzus minor,Cuculiformes,Cuculidae (Cuckoos),, 6910,species,coccuc1,Cocos Cuckoo,Coccyzus ferrugineus,Cuculiformes,Cuculidae (Cuckoos),, 6911,species,bkbcuc,Black-billed Cuckoo,Coccyzus erythropthalmus,Cuculiformes,Cuculidae (Cuckoos),, 6912,slash,y00616,Yellow-billed/Black-billed Cuckoo,Coccyzus americanus/erythropthalmus,Cuculiformes,Cuculidae (Cuckoos),, 6912.5,species,gyccuc,Gray-capped Cuckoo,Coccyzus lansbergi,Cuculiformes,Cuculidae (Cuckoos),, 6913,species,chbcuc4,Chestnut-bellied Cuckoo,Coccyzus pluvialis,Cuculiformes,Cuculidae (Cuckoos),, 6914,species,babcuc4,Bay-breasted Cuckoo,Coccyzus rufigularis,Cuculiformes,Cuculidae (Cuckoos),, 6915,species,jamlic1,Jamaican Lizard-Cuckoo,Coccyzus vetula,Cuculiformes,Cuculidae (Cuckoos),, 6916,species,purlic1,Puerto Rican Lizard-Cuckoo,Coccyzus vieilloti,Cuculiformes,Cuculidae (Cuckoos),, 6917,species,grelic1,Great Lizard-Cuckoo,Coccyzus merlini,Cuculiformes,Cuculidae (Cuckoos),, 6918,issf,grelic2,Great Lizard-Cuckoo (Bahama),Coccyzus merlini bahamensis,Cuculiformes,Cuculidae (Cuckoos),,grelic1 6918.5,issf,grelic3,Great Lizard-Cuckoo (Cuban),Coccyzus merlini [merlini Group],Cuculiformes,Cuculidae (Cuckoos),,grelic1 6922,species,hislic1,Hispaniolan Lizard-Cuckoo,Coccyzus longirostris,Cuculiformes,Cuculidae (Cuckoos),, 6925,spuh,coccyz1,Coccyzus sp.,Coccyzus sp.,Cuculiformes,Cuculidae (Cuckoos),, 6925.2,species,thbcuc1,Thick-billed Cuckoo,Pachycoccyx audeberti,Cuculiformes,Cuculidae (Cuckoos),, 6925.4,issf,thbcuc2,Thick-billed Cuckoo (African),Pachycoccyx audeberti validus/brazzae,Cuculiformes,Cuculidae (Cuckoos),,thbcuc1 6925.6,issf,thbcuc3,Thick-billed Cuckoo (Malagasy),Pachycoccyx audeberti audeberti,Cuculiformes,Cuculidae (Cuckoos),,thbcuc1 6925.8,species,dwakoe1,Dwarf Koel,Microdynamis parva,Cuculiformes,Cuculidae (Cuckoos),, 6926,species,asikoe2,Asian Koel,Eudynamys scolopaceus,Cuculiformes,Cuculidae (Cuckoos),, 6926.2,species,bkbkoe1,Black-billed Koel,Eudynamys melanorhynchus,Cuculiformes,Cuculidae (Cuckoos),, 6926.4,species,asikoe3,Pacific Koel,Eudynamys orientalis,Cuculiformes,Cuculidae (Cuckoos),, 6926.6,issf,packoe1,Pacific Koel (Oriental),Eudynamys orientalis [orientalis Group],Cuculiformes,Cuculidae (Cuckoos),,asikoe3 6926.8,issf,packoe2,Pacific Koel (Australian),Eudynamys orientalis cyanocephalus/subcyanocephalus,Cuculiformes,Cuculidae (Cuckoos),,asikoe3 6927,species,lotkoe1,Long-tailed Koel,Urodynamis taitensis,Cuculiformes,Cuculidae (Cuckoos),, 6927.2,species,chbcuc2,Channel-billed Cuckoo,Scythrops novaehollandiae,Cuculiformes,Cuculidae (Cuckoos),, 6927.4,species,asecuc1,Asian Emerald Cuckoo,Chrysococcyx maculatus,Cuculiformes,Cuculidae (Cuckoos),, 6927.6,species,viocuc1,Violet Cuckoo,Chrysococcyx xanthorhynchus,Cuculiformes,Cuculidae (Cuckoos),, 6927.8,slash,y00855,Asian Emerald/Violet Cuckoo,Chrysococcyx maculatus/xanthorhynchus,Cuculiformes,Cuculidae (Cuckoos),, 6928,species,didcuc1,Dideric Cuckoo,Chrysococcyx caprius,Cuculiformes,Cuculidae (Cuckoos),, 6928.2,species,klacuc1,Klaas's Cuckoo,Chrysococcyx klaas,Cuculiformes,Cuculidae (Cuckoos),, 6928.4,slash,y00856,Dideric/Klaas's Cuckoo,Chrysococcyx caprius/klaas,Cuculiformes,Cuculidae (Cuckoos),, 6928.6,species,yetcuc1,Yellow-throated Cuckoo,Chrysococcyx flavigularis,Cuculiformes,Cuculidae (Cuckoos),, 6928.8,species,afecuc1,African Emerald Cuckoo,Chrysococcyx cupreus,Cuculiformes,Cuculidae (Cuckoos),, 6929,issf,afecuc2,African Emerald Cuckoo (African),Chrysococcyx cupreus cupreus,Cuculiformes,Cuculidae (Cuckoos),,afecuc1 6929.2,issf,afecuc3,African Emerald Cuckoo (Bioko),Chrysococcyx cupreus intermedius,Cuculiformes,Cuculidae (Cuckoos),,afecuc1 6929.4,issf,afecuc4,African Emerald Cuckoo (Insular),Chrysococcyx cupreus insularum,Cuculiformes,Cuculidae (Cuckoos),,afecuc1 6929.6,species,lobcuc1,Long-billed Cuckoo,Chrysococcyx megarhynchus,Cuculiformes,Cuculidae (Cuckoos),, 6929.8,species,hobcuc1,Horsfield's Bronze-Cuckoo,Chrysococcyx basalis,Cuculiformes,Cuculidae (Cuckoos),, 6930,species,blecuc1,Black-eared Cuckoo,Chrysococcyx osculans,Cuculiformes,Cuculidae (Cuckoos),, 6930.2,species,rtbcuc1,Rufous-throated Bronze-Cuckoo,Chrysococcyx ruficollis,Cuculiformes,Cuculidae (Cuckoos),, 6930.4,species,shbcuc1,Shining Bronze-Cuckoo,Chrysococcyx lucidus,Cuculiformes,Cuculidae (Cuckoos),, 6930.6,issf,shibrc1,Shining Bronze-Cuckoo (Solomon Is.),Chrysococcyx lucidus harterti,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 6930.8,issf,shibrc2,Shining Bronze-Cuckoo (New Caledonian),Chrysococcyx lucidus layardi,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 6931,issf,shibrc3,Shining Bronze-Cuckoo (Shining),Chrysococcyx lucidus lucidus,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 6931.2,issf,shibrc4,Shining Bronze-Cuckoo (Golden),Chrysococcyx lucidus plagosus,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 6931.4,species,webcuc1,White-eared Bronze-Cuckoo,Chrysococcyx meyerii,Cuculiformes,Cuculidae (Cuckoos),, 6931.6,species,libcuc1,Little Bronze-Cuckoo,Chrysococcyx minutillus,Cuculiformes,Cuculidae (Cuckoos),, 6931.8,issf,litbrc1,Little Bronze-Cuckoo (Little),Chrysococcyx minutillus [minutillus Group],Cuculiformes,Cuculidae (Cuckoos),,libcuc1 6932,issf,litbrc2,Little Bronze-Cuckoo (Gould's),Chrysococcyx minutillus [poecilurus Group],Cuculiformes,Cuculidae (Cuckoos),,libcuc1 6932.2,issf,litbrc3,Little Bronze-Cuckoo (Dark-backed),Chrysococcyx minutillus rufomerus,Cuculiformes,Cuculidae (Cuckoos),,libcuc1 6932.4,issf,litbrc4,Little Bronze-Cuckoo (Pied),Chrysococcyx minutillus crassirostris/salvadorii,Cuculiformes,Cuculidae (Cuckoos),,libcuc1 6932.6,slash,y00854,Shining/Little Bronze-Cuckoo,Chrysococcyx lucidus/minutillus,Cuculiformes,Cuculidae (Cuckoos),, 6932.8,spuh,bronze1,bronze-cuckoo sp.,Chrysococcyx sp. (bronze-cuckoo sp.),Cuculiformes,Cuculidae (Cuckoos),, 6933,spuh,chryso1,Chrysococcyx sp.,Chrysococcyx sp.,Cuculiformes,Cuculidae (Cuckoos),, 6933.2,species,palcuc1,Pallid Cuckoo,Cacomantis pallidus,Cuculiformes,Cuculidae (Cuckoos),, 6933.4,species,whckoe1,White-crowned Koel,Cacomantis leucolophus,Cuculiformes,Cuculidae (Cuckoos),, 6933.6,species,chbcuc3,Chestnut-breasted Cuckoo,Cacomantis castaneiventris,Cuculiformes,Cuculidae (Cuckoos),, 6933.8,species,fatcuc1,Fan-tailed Cuckoo,Cacomantis flabelliformis,Cuculiformes,Cuculidae (Cuckoos),, 6934,species,babcuc2,Banded Bay Cuckoo,Cacomantis sonneratii,Cuculiformes,Cuculidae (Cuckoos),, 6934.2,species,placuc1,Plaintive Cuckoo,Cacomantis merulinus,Cuculiformes,Cuculidae (Cuckoos),, 6934.4,species,placuc3,Gray-bellied Cuckoo,Cacomantis passerinus,Cuculiformes,Cuculidae (Cuckoos),, 6934.6,slash,y00783,Plaintive/Gray-bellied Cuckoo,Cacomantis merulinus/passerinus,Cuculiformes,Cuculidae (Cuckoos),, 6934.8,species,molcuc1,Moluccan Cuckoo,Cacomantis aeruginosus,Cuculiformes,Cuculidae (Cuckoos),, 6935,species,brucuc1,Brush Cuckoo,Cacomantis variolosus,Cuculiformes,Cuculidae (Cuckoos),, 6935.2,issf,brucuc2,Brush Cuckoo (Rusty-breasted),Cacomantis variolosus [sepulcralis Group],Cuculiformes,Cuculidae (Cuckoos),,brucuc1 6935.4,issf,brucuc3,Brush Cuckoo (Brush),Cacomantis variolosus [variolosus Group],Cuculiformes,Cuculidae (Cuckoos),,brucuc1 6935.6,spuh,cacoma1,Cacomantis sp.,Cacomantis sp.,Cuculiformes,Cuculidae (Cuckoos),, 6935.8,species,dltcuc1,Dusky Long-tailed Cuckoo,Cercococcyx mechowi,Cuculiformes,Cuculidae (Cuckoos),, 6936,species,oltcuc1,Olive Long-tailed Cuckoo,Cercococcyx olivinus,Cuculiformes,Cuculidae (Cuckoos),, 6936.2,species,bltcuc1,Barred Long-tailed Cuckoo,Cercococcyx montanus,Cuculiformes,Cuculidae (Cuckoos),, 6936.4,issf,bltcuc2,Barred Long-tailed Cuckoo (Njobo's),Cercococcyx montanus montanus,Cuculiformes,Cuculidae (Cuckoos),,bltcuc1 6936.6,issf,bltcuc3,Barred Long-tailed Cuckoo (Eastern),Cercococcyx montanus patulus,Cuculiformes,Cuculidae (Cuckoos),,bltcuc1 6936.8,spuh,cercoc1,Cercococcyx sp.,Cercococcyx sp.,Cuculiformes,Cuculidae (Cuckoos),, 6937,species,asidrc2,Fork-tailed Drongo-Cuckoo,Surniculus dicruroides,Cuculiformes,Cuculidae (Cuckoos),, 6937.2,species,phidrc1,Philippine Drongo-Cuckoo,Surniculus velutinus,Cuculiformes,Cuculidae (Cuckoos),, 6937.4,species,asidrc3,Square-tailed Drongo-Cuckoo,Surniculus lugubris,Cuculiformes,Cuculidae (Cuckoos),, 6937.6,slash,y00784,Fork-tailed/Square-tailed Drongo-Cuckoo,Surniculus dicruroides/lugubris,Cuculiformes,Cuculidae (Cuckoos),, 6937.8,species,asidrc4,Moluccan Drongo-Cuckoo,Surniculus musschenbroeki,Cuculiformes,Cuculidae (Cuckoos),, 6938,species,mohcuc1,Moustached Hawk-Cuckoo,Hierococcyx vagans,Cuculiformes,Cuculidae (Cuckoos),, 6938.2,species,larhac2,Large Hawk-Cuckoo,Hierococcyx sparverioides,Cuculiformes,Cuculidae (Cuckoos),, 6938.4,species,larhac1,Dark Hawk-Cuckoo,Hierococcyx bocki,Cuculiformes,Cuculidae (Cuckoos),, 6938.6,slash,lahcuc1,Large/Dark Hawk-Cuckoo,Hierococcyx sparverioides/bocki,Cuculiformes,Cuculidae (Cuckoos),, 6938.8,species,cohcuc1,Common Hawk-Cuckoo,Hierococcyx varius,Cuculiformes,Cuculidae (Cuckoos),, 6939,species,nohcuc1,Northern Hawk-Cuckoo,Hierococcyx hyperythrus,Cuculiformes,Cuculidae (Cuckoos),, 6939.2,species,phhcuc1,Philippine Hawk-Cuckoo,Hierococcyx pectoralis,Cuculiformes,Cuculidae (Cuckoos),, 6939.4,species,hodhac1,Hodgson's Hawk-Cuckoo,Hierococcyx nisicolor,Cuculiformes,Cuculidae (Cuckoos),, 6939.6,species,malhac1,Malaysian Hawk-Cuckoo,Hierococcyx fugax,Cuculiformes,Cuculidae (Cuckoos),, 6939.8,spuh,hawk-c1,hawk-cuckoo sp.,Hierococcyx sp.,Cuculiformes,Cuculidae (Cuckoos),, 6940,species,blacuc1,Black Cuckoo,Cuculus clamosus,Cuculiformes,Cuculidae (Cuckoos),, 6940.2,issf,blkcuc1,Black Cuckoo (Rufous-throated),Cuculus clamosus gabonensis,Cuculiformes,Cuculidae (Cuckoos),,blacuc1 6940.4,issf,blkcuc2,Black Cuckoo (Black),Cuculus clamosus clamosus,Cuculiformes,Cuculidae (Cuckoos),,blacuc1 6940.6,species,reccuc1,Red-chested Cuckoo,Cuculus solitarius,Cuculiformes,Cuculidae (Cuckoos),, 6940.8,species,lescuc1,Lesser Cuckoo,Cuculus poliocephalus,Cuculiformes,Cuculidae (Cuckoos),, 6941,species,suhcuc1,Sulawesi Cuckoo,Cuculus crassirostris,Cuculiformes,Cuculidae (Cuckoos),, 6941.2,species,indcuc1,Indian Cuckoo,Cuculus micropterus,Cuculiformes,Cuculidae (Cuckoos),, 6941.4,species,afrcuc1,African Cuckoo,Cuculus gularis,Cuculiformes,Cuculidae (Cuckoos),, 6941.6,species,madcuc1,Madagascar Cuckoo,Cuculus rochii,Cuculiformes,Cuculidae (Cuckoos),, 6941.8,species,himcuc1,Himalayan Cuckoo,Cuculus saturatus,Cuculiformes,Cuculidae (Cuckoos),, 6942,species,suncuc2,Sunda Cuckoo,Cuculus lepidus,Cuculiformes,Cuculidae (Cuckoos),, 6942.2,species,comcuc,Common Cuckoo,Cuculus canorus,Cuculiformes,Cuculidae (Cuckoos),, 6942.4,slash,y00853,African/Common Cuckoo,Cuculus gularis/canorus,Cuculiformes,Cuculidae (Cuckoos),, 6942.6,species,oricuc2,Oriental Cuckoo,Cuculus optatus,Cuculiformes,Cuculidae (Cuckoos),, 6942.8,slash,y00730,Himalayan/Oriental Cuckoo,Cuculus saturatus/optatus,Cuculiformes,Cuculidae (Cuckoos),, 6943,slash,y00729,Common/Oriental Cuckoo,Cuculus canorus/optatus,Cuculiformes,Cuculidae (Cuckoos),, 6943.2,spuh,cuculu1,Cuculus sp.,Cuculus sp.,Cuculiformes,Cuculidae (Cuckoos),, 6952.2,spuh,cuckoo3,cuckoo sp. (Cuculidae sp.),Cuculidae sp.,Cuculiformes,Cuculidae (Cuckoos),, 6952.5,species,sooowl1,Sooty Owl,Tyto tenebricosa,Strigiformes,Tytonidae (Barn-Owls),Owls, 6953,issf,grsowl1,Sooty Owl (Greater),Tyto tenebricosa tenebricosa/arfaki,Strigiformes,Tytonidae (Barn-Owls),,sooowl1 6956,issf,lesowl1,Sooty Owl (Lesser),Tyto tenebricosa multipunctata,Strigiformes,Tytonidae (Barn-Owls),,sooowl1 6957,species,aumowl1,Australian Masked-Owl,Tyto novaehollandiae,Strigiformes,Tytonidae (Barn-Owls),, 6964,species,nebmao1,Golden Masked-Owl,Tyto aurantia,Strigiformes,Tytonidae (Barn-Owls),, 6964.5,species,sermao1,Seram Masked-Owl,Tyto almae,Strigiformes,Tytonidae (Barn-Owls),, 6965,species,lemowl1,Lesser Masked-Owl,Tyto sororcula,Strigiformes,Tytonidae (Barn-Owls),, 6966,issf,lesmao1,Lesser Masked-Owl (Buru),Tyto sororcula cayelii,Strigiformes,Tytonidae (Barn-Owls),,lemowl1 6967,issf,lesmao2,Lesser Masked-Owl (Tanimbar),Tyto sororcula sororcula,Strigiformes,Tytonidae (Barn-Owls),,lemowl1 6968,species,manowl2,Manus Masked-Owl,Tyto manusi,Strigiformes,Tytonidae (Barn-Owls),, 6969,species,talowl1,Taliabu Masked-Owl,Tyto nigrobrunnea,Strigiformes,Tytonidae (Barn-Owls),, 6970,species,minowl1,Minahassa Masked-Owl,Tyto inexspectata,Strigiformes,Tytonidae (Barn-Owls),, 6971,species,sulowl1,Sulawesi Masked-Owl,Tyto rosenbergii,Strigiformes,Tytonidae (Barn-Owls),, 6974,species,ausgro1,Australasian Grass-Owl,Tyto longimembris,Strigiformes,Tytonidae (Barn-Owls),, 6981,species,afgowl1,African Grass-Owl,Tyto capensis,Strigiformes,Tytonidae (Barn-Owls),, 6982,species,brnowl,Barn Owl,Tyto alba,Strigiformes,Tytonidae (Barn-Owls),, 6983,issf,barowl2,Barn Owl (Eurasian),Tyto alba [alba Group],Strigiformes,Tytonidae (Barn-Owls),,brnowl 6994.2,issf,barowl14,Barn Owl (Madeiran),Tyto alba schmitzi,Strigiformes,Tytonidae (Barn-Owls),,brnowl 6994.4,issf,barowl15,Barn Owl (Canary Is.),Tyto alba gracilirostris,Strigiformes,Tytonidae (Barn-Owls),,brnowl 6994.6,issf,barowl16,Barn Owl (African),Tyto alba affinis,Strigiformes,Tytonidae (Barn-Owls),,brnowl 6994.8,issf,barowl17,Barn Owl (Bioko),Tyto alba poensis,Strigiformes,Tytonidae (Barn-Owls),,brnowl 6995,issf,barowl3,Barn Owl (Cape Verde),Tyto alba detorta,Strigiformes,Tytonidae (Barn-Owls),,brnowl 6996,issf,barowl4,Barn Owl (Sao Tome),Tyto alba thomensis,Strigiformes,Tytonidae (Barn-Owls),,brnowl 6998,issf,barowl6,Barn Owl (Boang),Tyto alba crassirostris,Strigiformes,Tytonidae (Barn-Owls),,brnowl 6999,issf,barowl7,Barn Owl (Eastern),Tyto alba [delicatula Group],Strigiformes,Tytonidae (Barn-Owls),,brnowl 7003,issf,barowl8,Barn Owl (American),Tyto alba [furcata Group],Strigiformes,Tytonidae (Barn-Owls),,brnowl 7012,issf,barowl9,Barn Owl (Curacao),Tyto alba bargei,Strigiformes,Tytonidae (Barn-Owls),,brnowl 7013,issf,barowl10,Barn Owl (Lesser Antilles),Tyto alba insularis/nigrescens,Strigiformes,Tytonidae (Barn-Owls),,brnowl 7016,issf,barowl11,Barn Owl (Galapagos),Tyto alba punctatissima,Strigiformes,Tytonidae (Barn-Owls),,brnowl 7016.5,species,barowl5,Andaman Masked-Owl,Tyto deroepstorffi,Strigiformes,Tytonidae (Barn-Owls),, 7017,species,asfowl1,Ashy-faced Owl,Tyto glaucops,Strigiformes,Tytonidae (Barn-Owls),, 7018,species,marowl1,Madagascar Red Owl,Tyto soumagnei,Strigiformes,Tytonidae (Barn-Owls),, 7019,species,orbowl1,Oriental Bay-Owl,Phodilus badius,Strigiformes,Tytonidae (Barn-Owls),, 7024,species,srlbao1,Sri Lanka Bay-Owl,Phodilus assimilis,Strigiformes,Tytonidae (Barn-Owls),, 7026,species,cobowl1,Congo Bay-Owl,Phodilus prigoginei,Strigiformes,Tytonidae (Barn-Owls),, 7027,species,wfsowl2,White-fronted Scops-Owl,Otus sagittatus,Strigiformes,Strigidae (Owls),, 7028,species,ansowl1,Andaman Scops-Owl,Otus balli,Strigiformes,Strigidae (Owls),, 7029,species,resowl1,Reddish Scops-Owl,Otus rufescens,Strigiformes,Strigidae (Owls),, 7032,species,sersco1,Serendib Scops-Owl,Otus thilohoffmanni,Strigiformes,Strigidae (Owls),, 7033,species,sasowl1,Sandy Scops-Owl,Otus icterorhynchus,Strigiformes,Strigidae (Owls),, 7034,issf,sansco2,Sandy Scops-Owl (Sandy),Otus icterorhynchus icterorhynchus,Strigiformes,Strigidae (Owls),,sasowl1 7035,issf,sansco3,Sandy Scops-Owl (Reddish),Otus icterorhynchus holerythrus,Strigiformes,Strigidae (Owls),,sasowl1 7036,species,sosowl1,Sokoke Scops-Owl,Otus ireneae,Strigiformes,Strigidae (Owls),, 7037,species,flsowl1,Flores Scops-Owl,Otus alfredi,Strigiformes,Strigidae (Owls),, 7038,species,mosowl2,Mountain Scops-Owl,Otus spilocephalus,Strigiformes,Strigidae (Owls),, 7047,species,rasowl1,Rajah Scops-Owl,Otus brookii,Strigiformes,Strigidae (Owls),, 7050,species,jasowl2,Javan Scops-Owl,Otus angelinae,Strigiformes,Strigidae (Owls),, 7051,species,mesowl1,Mentawai Scops-Owl,Otus mentawi,Strigiformes,Strigidae (Owls),, 7052,species,insowl1,Indian Scops-Owl,Otus bakkamoena,Strigiformes,Strigidae (Owls),, 7058,species,cosowl1,Collared Scops-Owl,Otus lettia,Strigiformes,Strigidae (Owls),, 7063.5,species,mineao1,Giant Scops-Owl,Otus gurneyi,Strigiformes,Strigidae (Owls),, 7064,species,susowl2,Sunda Scops-Owl,Otus lempiji,Strigiformes,Strigidae (Owls),, 7071,species,jasowl1,Japanese Scops-Owl,Otus semitorques,Strigiformes,Strigidae (Owls),, 7074,species,wasowl1,Wallace's Scops-Owl,Otus silvicola,Strigiformes,Strigidae (Owls),, 7075,species,pasowl2,Palawan Scops-Owl,Otus fuliginosus,Strigiformes,Strigidae (Owls),, 7076,species,phsowl1,Philippine Scops-Owl,Otus megalotis,Strigiformes,Strigidae (Owls),, 7078,species,evesco1,Everett's Scops-Owl,Otus everetti,Strigiformes,Strigidae (Owls),, 7079,species,negsco1,Negros Scops-Owl,Otus nigrorum,Strigiformes,Strigidae (Owls),, 7080,species,misowl2,Mindoro Scops-Owl,Otus mindorensis,Strigiformes,Strigidae (Owls),, 7081,species,mosowl1,Moluccan Scops-Owl,Otus magicus,Strigiformes,Strigidae (Owls),, 7082,issf,molsco1,Moluccan Scops-Owl (Moluccan),Otus magicus [magicus Group],Strigiformes,Strigidae (Owls),,mosowl1 7089,issf,molsco2,Moluccan Scops-Owl (Wetar),Otus magicus tempestatis,Strigiformes,Strigidae (Owls),,mosowl1 7090,species,rinsco1,Rinjani Scops-Owl,Otus jolandae,Strigiformes,Strigidae (Owls),, 7091,species,masowl2,Mantanani Scops-Owl,Otus mantananensis,Strigiformes,Strigidae (Owls),, 7096,species,ryusco1,Ryukyu Scops-Owl,Otus elegans,Strigiformes,Strigidae (Owls),, 7101,species,susowl1,Sulawesi Scops-Owl,Otus manadensis,Strigiformes,Strigidae (Owls),, 7102,issf,sulsco2,Sulawesi Scops-Owl (Siau),Otus manadensis siaoensis,Strigiformes,Strigidae (Owls),,susowl1 7103,issf,sulsco1,Sulawesi Scops-Owl (Sulawesi),Otus manadensis manadensis/mendeni,Strigiformes,Strigidae (Owls),,susowl1 7106,issf,sulsco4,Sulawesi Scops-Owl (Kalidupa),Otus manadensis kalidupae,Strigiformes,Strigidae (Owls),,susowl1 7107,issf,sulsco3,Sulawesi Scops-Owl (Sula),Otus manadensis sulaensis,Strigiformes,Strigidae (Owls),,susowl1 7108,species,sansco1,Sangihe Scops-Owl,Otus collari,Strigiformes,Strigidae (Owls),, 7109,species,biasco1,Biak Scops-Owl,Otus beccarii,Strigiformes,Strigidae (Owls),, 7110,species,sisowl1,Simeulue Scops-Owl,Otus umbra,Strigiformes,Strigidae (Owls),, 7111,species,ensowl1,Enggano Scops-Owl,Otus enganensis,Strigiformes,Strigidae (Owls),, 7112,species,nicsco1,Nicobar Scops-Owl,Otus alius,Strigiformes,Strigidae (Owls),, 7113,species,arasco1,Arabian Scops-Owl,Otus pamelae,Strigiformes,Strigidae (Owls),, 7114,species,eursco1,European Scops-Owl,Otus scops,Strigiformes,Strigidae (Owls),, 7115,issf,eursco2,European Scops-Owl (European),Otus scops [scops Group],Strigiformes,Strigidae (Owls),,eursco1 7121,issf,eursco3,European Scops-Owl (Cyprus),Otus scops cyprius,Strigiformes,Strigidae (Owls),,eursco1 7122,species,pesowl2,Pemba Scops-Owl,Otus pembaensis,Strigiformes,Strigidae (Owls),, 7123,species,stsowl1,Sao Tome Scops-Owl,Otus hartlaubi,Strigiformes,Strigidae (Owls),, 7123.2,form,prisco1,Principe Scops-Owl (undescribed form),Otus [undescribed form],Strigiformes,Strigidae (Owls),, 7124,species,afsowl1,African Scops-Owl,Otus senegalensis,Strigiformes,Strigidae (Owls),, 7125,issf,afrsco1,African Scops-Owl (African),Otus senegalensis senegalensis,Strigiformes,Strigidae (Owls),,afsowl1 7126,issf,afrsco3,African Scops-Owl (Annobon),Otus senegalensis feae,Strigiformes,Strigidae (Owls),,afsowl1 7127,issf,afrsco4,African Scops-Owl (Snowy),Otus senegalensis nivosus,Strigiformes,Strigidae (Owls),,afsowl1 7128,species,pasowl3,Pallid Scops-Owl,Otus brucei,Strigiformes,Strigidae (Owls),, 7128.2,slash,y00858,European/Pallid Scops-Owl,Otus scops/brucei,Strigiformes,Strigidae (Owls),, 7133,species,misowl1,Mindanao Scops-Owl,Otus mirus,Strigiformes,Strigidae (Owls),, 7134,species,lusowl1,Luzon Scops-Owl,Otus longicornis,Strigiformes,Strigidae (Owls),, 7135,species,mohsco1,Moheli Scops-Owl,Otus moheliensis,Strigiformes,Strigidae (Owls),, 7136,species,cosowl3,Comoro Scops-Owl,Otus pauliani,Strigiformes,Strigidae (Owls),, 7137,species,sesowl1,Seychelles Scops-Owl,Otus insularis,Strigiformes,Strigidae (Owls),, 7138,species,orsowl,Oriental Scops-Owl,Otus sunia,Strigiformes,Strigidae (Owls),, 7141,issf,orisco1,Oriental Scops-Owl (Oriental),Otus sunia [sunia Group],Strigiformes,Strigidae (Owls),,orsowl 7145.9,issf,orisco2,Oriental Scops-Owl (Walden's),Otus sunia modestus,Strigiformes,Strigidae (Owls),,orsowl 7146,species,afrsco2,Socotra Scops-Owl,Otus socotranus,Strigiformes,Strigidae (Owls),, 7147,species,ansowl2,Anjouan Scops-Owl,Otus capnodes,Strigiformes,Strigidae (Owls),, 7148,species,maysco1,Mayotte Scops-Owl,Otus mayottensis,Strigiformes,Strigidae (Owls),, 7149,species,masowl1,Malagasy Scops-Owl,Otus rutilus,Strigiformes,Strigidae (Owls),, 7149.1,species,torsco1,Torotoroka Scops-Owl,Otus madagascariensis,Strigiformes,Strigidae (Owls),, 7149.2,spuh,otus1,scops-owl sp.,Otus sp.,Strigiformes,Strigidae (Owls),, 7149.5,species,flaowl,Flammulated Owl,Psiloscops flammeolus,Strigiformes,Strigidae (Owls),, 7150,species,wesowl1,Western Screech-Owl,Megascops kennicottii,Strigiformes,Strigidae (Owls),, 7151,issf,wessco1,Western Screech-Owl (Northern),Megascops kennicottii [kennicottii Group],Strigiformes,Strigidae (Owls),,wesowl1 7158,issf,wessco3,Western Screech-Owl (Vinaceous),Megascops kennicottii vinaceus,Strigiformes,Strigidae (Owls),,wesowl1 7159,issf,wessco2,Western Screech-Owl (Sutton's),Megascops kennicottii suttoni,Strigiformes,Strigidae (Owls),,wesowl1 7160,species,easowl1,Eastern Screech-Owl,Megascops asio,Strigiformes,Strigidae (Owls),, 7161,issf,eassco1,Eastern Screech-Owl (Northern),Megascops asio [asio Group],Strigiformes,Strigidae (Owls),,easowl1 7167,issf,eassco2,Eastern Screech-Owl (McCall's),Megascops asio mccallii,Strigiformes,Strigidae (Owls),,easowl1 7168,species,basowl,Balsas Screech-Owl,Megascops seductus,Strigiformes,Strigidae (Owls),, 7169,species,pasowl4,Pacific Screech-Owl,Megascops cooperi,Strigiformes,Strigidae (Owls),, 7173,species,whsowl1,Whiskered Screech-Owl,Megascops trichopsis,Strigiformes,Strigidae (Owls),, 7177,species,trsowl,Tropical Screech-Owl,Megascops choliba,Strigiformes,Strigidae (Owls),, 7187,species,persco1,Peruvian Screech-Owl,Megascops roboratus,Strigiformes,Strigidae (Owls),, 7187.2,issf,persco2,Peruvian Screech-Owl (pacificus),Megascops roboratus pacificus,Strigiformes,Strigidae (Owls),,persco1 7187.4,issf,persco3,Peruvian Screech-Owl (roboratus),Megascops roboratus roboratus,Strigiformes,Strigidae (Owls),,persco1 7190,species,koesco1,Koepcke's Screech-Owl,Megascops koepckeae,Strigiformes,Strigidae (Owls),, 7190.2,issf,koesco2,Koepcke's Screech-Owl (Koepcke's),Megascops koepckeae koepckeae,Strigiformes,Strigidae (Owls),,koesco1 7190.4,issf,apusco1,Koepcke's Screech-Owl (Apurimac),Megascops koepckeae hockingi,Strigiformes,Strigidae (Owls),,koesco1 7190.8,form,samsco1,Santa Marta Screech-Owl (undescribed form),Megascops [undescribed form],Strigiformes,Strigidae (Owls),, 7191,species,besowl,Bearded Screech-Owl,Megascops barbarus,Strigiformes,Strigidae (Owls),, 7192,species,colsco1,Colombian Screech-Owl,Megascops colombianus,Strigiformes,Strigidae (Owls),, 7193,species,rufsco1,Rufescent Screech-Owl,Megascops ingens,Strigiformes,Strigidae (Owls),, 7196,species,cinsco1,Cinnamon Screech-Owl,Megascops petersoni,Strigiformes,Strigidae (Owls),, 7197,species,clfsco1,Cloud-forest Screech-Owl,Megascops marshalli,Strigiformes,Strigidae (Owls),, 7198,species,tabsco1,Tawny-bellied Screech-Owl,Megascops watsonii,Strigiformes,Strigidae (Owls),, 7199,issf,tabsco2,Tawny-bellied Screech-Owl (Tawny-bellied),Megascops watsonii watsonii,Strigiformes,Strigidae (Owls),,tabsco1 7200,issf,tabsco3,Tawny-bellied Screech-Owl (Austral),Megascops watsonii usta,Strigiformes,Strigidae (Owls),,tabsco1 7201,species,bkcsco1,Black-capped Screech-Owl,Megascops atricapilla,Strigiformes,Strigidae (Owls),, 7202,species,mofsco1,Montane Forest Screech-Owl,Megascops hoyi,Strigiformes,Strigidae (Owls),, 7203,species,lotsco1,Long-tufted Screech-Owl,Megascops sanctaecatarinae,Strigiformes,Strigidae (Owls),, 7204,species,vesowl,Vermiculated Screech-Owl,Megascops guatemalae,Strigiformes,Strigidae (Owls),, 7205,issf,versco1,Vermiculated Screech-Owl (Guatemalan),Megascops guatemalae [guatemalae Group],Strigiformes,Strigidae (Owls),,vesowl 7205.2,issf,versco5,Vermiculated Screech-Owl (Vermiculated),Megascops guatemalae vermiculatus,Strigiformes,Strigidae (Owls),,vesowl 7213.5,issf,versco2,Vermiculated Screech-Owl (Choco),Megascops guatemalae centralis,Strigiformes,Strigidae (Owls),,vesowl 7214,issf,versco4,Vermiculated Screech-Owl (Roraima),Megascops guatemalae roraimae,Strigiformes,Strigidae (Owls),,vesowl 7215,issf,versco3,Vermiculated Screech-Owl (Foothill),Megascops guatemalae [napensis Group],Strigiformes,Strigidae (Owls),,vesowl 7219,species,bssowl,Bare-shanked Screech-Owl,Megascops clarkii,Strigiformes,Strigidae (Owls),, 7220,species,prsowl,Puerto Rican Screech-Owl,Megascops nudipes,Strigiformes,Strigidae (Owls),, 7223,species,whtsco1,White-throated Screech-Owl,Megascops albogularis,Strigiformes,Strigidae (Owls),, 7230,spuh,screec1,screech-owl sp.,Megascops sp.,Strigiformes,Strigidae (Owls),, 7231,species,palowl2,Palau Owl,Pyrroglaux podargina,Strigiformes,Strigidae (Owls),, 7232,species,balowl,Bare-legged Owl,Margarobyas lawrencii,Strigiformes,Strigidae (Owls),, 7235,species,nwfowl1,Northern White-faced Owl,Ptilopsis leucotis,Strigiformes,Strigidae (Owls),, 7236,species,swfowl1,Southern White-faced Owl,Ptilopsis granti,Strigiformes,Strigidae (Owls),, 7238,species,creowl1,Crested Owl,Lophostrix cristata,Strigiformes,Strigidae (Owls),, 7242,species,manowl1,Maned Owl,Jubula lettii,Strigiformes,Strigidae (Owls),, 7243,species,speowl1,Spectacled Owl,Pulsatrix perspicillata,Strigiformes,Strigidae (Owls),, 7250,species,tabowl1,Tawny-browed Owl,Pulsatrix koeniswaldiana,Strigiformes,Strigidae (Owls),, 7251,species,babowl1,Band-bellied Owl,Pulsatrix melanota,Strigiformes,Strigidae (Owls),, 7253.5,spuh,pulsat1,Pulsatrix sp.,Pulsatrix sp.,Strigiformes,Strigidae (Owls),, 7254,species,grhowl,Great Horned Owl,Bubo virginianus,Strigiformes,Strigidae (Owls),, 7255,issf,grhowl1,Great Horned Owl (Great Horned),Bubo virginianus [virginianus Group],Strigiformes,Strigidae (Owls),,grhowl 7268,issf,grhowl2,Great Horned Owl (Magellanic),Bubo virginianus magellanicus,Strigiformes,Strigidae (Owls),,grhowl 7269,species,eueowl1,Eurasian Eagle-Owl,Bubo bubo,Strigiformes,Strigidae (Owls),, 7284,species,roeowl1,Rock Eagle-Owl,Bubo bengalensis,Strigiformes,Strigidae (Owls),, 7285,species,pheowl1,Pharaoh Eagle-Owl,Bubo ascalaphus,Strigiformes,Strigidae (Owls),, 7286,issf,phaeao1,Pharaoh Eagle-Owl (Pharaoh),Bubo ascalaphus ascalaphus,Strigiformes,Strigidae (Owls),,pheowl1 7287,issf,phaeao2,Pharaoh Eagle-Owl (Desert),Bubo ascalaphus desertorum,Strigiformes,Strigidae (Owls),,pheowl1 7288,species,caeowl1,Cape Eagle-Owl,Bubo capensis,Strigiformes,Strigidae (Owls),, 7288.5,issf,capeao1,Cape Eagle-Owl (Northern),Bubo capensis dillonii/mackinderi,Strigiformes,Strigidae (Owls),,caeowl1 7291,issf,capeao2,Cape Eagle-Owl (Cape),Bubo capensis capensis,Strigiformes,Strigidae (Owls),,caeowl1 7292,species,speowl2,Spotted Eagle-Owl,Bubo africanus,Strigiformes,Strigidae (Owls),, 7293,issf,spoeao1,Spotted Eagle-Owl (Arabian),Bubo africanus milesi,Strigiformes,Strigidae (Owls),,speowl2 7293.5,issf,spoeao2,Spotted Eagle-Owl (Spotted),Bubo africanus africanus/tanae,Strigiformes,Strigidae (Owls),,speowl2 7296,species,graeao1,Grayish Eagle-Owl,Bubo cinerascens,Strigiformes,Strigidae (Owls),, 7297,species,freowl1,Fraser's Eagle-Owl,Bubo poensis,Strigiformes,Strigidae (Owls),, 7298,species,useowl1,Usambara Eagle-Owl,Bubo vosseleri,Strigiformes,Strigidae (Owls),, 7299,species,sbeowl1,Spot-bellied Eagle-Owl,Bubo nipalensis,Strigiformes,Strigidae (Owls),, 7302,species,baeowl1,Barred Eagle-Owl,Bubo sumatranus,Strigiformes,Strigidae (Owls),, 7305,species,sheowl1,Shelley's Eagle-Owl,Bubo shelleyi,Strigiformes,Strigidae (Owls),, 7306,species,veeowl1,Verreaux's Eagle-Owl,Bubo lacteus,Strigiformes,Strigidae (Owls),, 7307,species,dueowl1,Dusky Eagle-Owl,Bubo coromandus,Strigiformes,Strigidae (Owls),, 7310,species,akeowl1,Akun Eagle-Owl,Bubo leucostictus,Strigiformes,Strigidae (Owls),, 7311,species,pheowl2,Philippine Eagle-Owl,Bubo philippensis,Strigiformes,Strigidae (Owls),, 7314,species,snoowl1,Snowy Owl,Bubo scandiacus,Strigiformes,Strigidae (Owls),, 7314.2,spuh,bubo1,Bubo sp.,Bubo sp.,Strigiformes,Strigidae (Owls),, 7315,species,blfowl1,Blakiston's Fish-Owl,Ketupa blakistoni,Strigiformes,Strigidae (Owls),, 7320,species,brfowl1,Brown Fish-Owl,Ketupa zeylonensis,Strigiformes,Strigidae (Owls),, 7321,issf,brnfio2,Brown Fish-Owl (Turkish),Ketupa zeylonensis semenowi,Strigiformes,Strigidae (Owls),,brfowl1 7321.5,issf,brnfio1,Brown Fish-Owl (Eastern),Ketupa zeylonensis [zeylonensis Group],Strigiformes,Strigidae (Owls),,brfowl1 7325,species,tafowl1,Tawny Fish-Owl,Ketupa flavipes,Strigiformes,Strigidae (Owls),, 7326,species,bufowl2,Buffy Fish-Owl,Ketupa ketupu,Strigiformes,Strigidae (Owls),, 7331,species,pefowl1,Pel's Fishing-Owl,Scotopelia peli,Strigiformes,Strigidae (Owls),, 7332,species,rufowl1,Rufous Fishing-Owl,Scotopelia ussheri,Strigiformes,Strigidae (Owls),, 7333,species,vefowl1,Vermiculated Fishing-Owl,Scotopelia bouvieri,Strigiformes,Strigidae (Owls),, 7334,species,nohowl,Northern Hawk Owl,Surnia ulula,Strigiformes,Strigidae (Owls),, 7334.2,issf,nohowl1,Northern Hawk Owl (American),Surnia ulula caparoch,Strigiformes,Strigidae (Owls),,nohowl 7334.4,issf,nohowl2,Northern Hawk Owl (Eurasian),Surnia ulula ulula/tianschanica,Strigiformes,Strigidae (Owls),,nohowl 7338,species,eupowl1,Eurasian Pygmy-Owl,Glaucidium passerinum,Strigiformes,Strigidae (Owls),, 7341,species,colowl1,Collared Owlet,Glaucidium brodiei,Strigiformes,Strigidae (Owls),, 7346,species,pesowl1,Pearl-spotted Owlet,Glaucidium perlatum,Strigiformes,Strigidae (Owls),, 7349,species,nopowl,Northern Pygmy-Owl,Glaucidium gnoma,Strigiformes,Strigidae (Owls),, 7350,issf,moupyo1,Northern Pygmy-Owl (Mountain),Glaucidium gnoma gnoma,Strigiformes,Strigidae (Owls),,nopowl 7351,issf,norpyo1,Northern Pygmy-Owl (Pacific),Glaucidium gnoma [californicum Group],Strigiformes,Strigidae (Owls),,nopowl 7355,issf,norpyo2,Northern Pygmy-Owl (Rocky Mts.),Glaucidium gnoma pinicola,Strigiformes,Strigidae (Owls),,nopowl 7356,issf,norpyo4,Northern Pygmy-Owl (Guatemalan),Glaucidium gnoma cobanense,Strigiformes,Strigidae (Owls),,nopowl 7357,issf,norpyo3,Northern Pygmy-Owl (Cape),Glaucidium gnoma hoskinsii,Strigiformes,Strigidae (Owls),,nopowl 7358,species,crpowl,Costa Rican Pygmy-Owl,Glaucidium costaricanum,Strigiformes,Strigidae (Owls),, 7359,species,clopyo1,Cloud-forest Pygmy-Owl,Glaucidium nubicola,Strigiformes,Strigidae (Owls),, 7360,species,anpowl1,Andean Pygmy-Owl,Glaucidium jardinii,Strigiformes,Strigidae (Owls),, 7361,species,yupowl1,Yungas Pygmy-Owl,Glaucidium bolivianum,Strigiformes,Strigidae (Owls),, 7362,species,supowl1,Subtropical Pygmy-Owl,Glaucidium parkeri,Strigiformes,Strigidae (Owls),, 7363,species,capowl1,Central American Pygmy-Owl,Glaucidium griseiceps,Strigiformes,Strigidae (Owls),, 7367,species,tapowl1,Tamaulipas Pygmy-Owl,Glaucidium sanchezi,Strigiformes,Strigidae (Owls),, 7368,species,copowl1,Colima Pygmy-Owl,Glaucidium palmarum,Strigiformes,Strigidae (Owls),, 7372,species,amapyo1,Amazonian Pygmy-Owl,Glaucidium hardyi,Strigiformes,Strigidae (Owls),, 7373,species,perpyo1,Pernambuco Pygmy-Owl,Glaucidium mooreorum,Strigiformes,Strigidae (Owls),, 7374,species,leapyo1,Least Pygmy-Owl,Glaucidium minutissimum,Strigiformes,Strigidae (Owls),, 7375,species,fepowl,Ferruginous Pygmy-Owl,Glaucidium brasilianum,Strigiformes,Strigidae (Owls),, 7376,issf,ferpyo1,Ferruginous Pygmy-Owl (Ferruginous),Glaucidium brasilianum [brasilianum Group],Strigiformes,Strigidae (Owls),,fepowl 7389,issf,ferpyo2,Ferruginous Pygmy-Owl (Tucuman),Glaucidium brasilianum tucumanum,Strigiformes,Strigidae (Owls),,fepowl 7390,species,aupowl1,Austral Pygmy-Owl,Glaucidium nana,Strigiformes,Strigidae (Owls),, 7391,species,pepowl1,Peruvian Pygmy-Owl,Glaucidium peruanum,Strigiformes,Strigidae (Owls),, 7392,species,cupowl1,Cuban Pygmy-Owl,Glaucidium siju,Strigiformes,Strigidae (Owls),, 7395,species,recowl1,Red-chested Owlet,Glaucidium tephronotum,Strigiformes,Strigidae (Owls),, 7396,issf,recowl2,Red-chested Owlet (Western),Glaucidium tephronotum tephronotum,Strigiformes,Strigidae (Owls),,recowl1 7397,issf,recowl3,Red-chested Owlet (Pycraft's),Glaucidium tephronotum pycrafti,Strigiformes,Strigidae (Owls),,recowl1 7398,issf,recowl4,Red-chested Owlet (Eastern),Glaucidium tephronotum medje,Strigiformes,Strigidae (Owls),,recowl1 7399,species,sjoowl1,Sjšstedt's Owlet,Glaucidium sjostedti,Strigiformes,Strigidae (Owls),, 7400,species,asbowl1,Asian Barred Owlet,Glaucidium cuculoides,Strigiformes,Strigidae (Owls),, 7409,species,javowl1,Javan Owlet,Glaucidium castanopterum,Strigiformes,Strigidae (Owls),, 7410,species,junowl1,Jungle Owlet,Glaucidium radiatum,Strigiformes,Strigidae (Owls),, 7410.2,slash,y00859,Asian Barred/Jungle Owlet,Glaucidium cuculoides/radiatum,Strigiformes,Strigidae (Owls),, 7413,species,chbowl1,Chestnut-backed Owlet,Glaucidium castanotum,Strigiformes,Strigidae (Owls),, 7414,species,afbowl1,African Barred Owlet,Glaucidium capense,Strigiformes,Strigidae (Owls),, 7415,issf,afbowl2,African Barred Owlet (Spot-fronted),Glaucidium capense scheffleri,Strigiformes,Strigidae (Owls),,afbowl1 7415.5,issf,afrbao1,African Barred Owlet (Bar-fronted),Glaucidium capense capense/ngamiense,Strigiformes,Strigidae (Owls),,afbowl1 7418,species,cheowl1,Chestnut Owlet,Glaucidium castaneum,Strigiformes,Strigidae (Owls),, 7419,issf,cheowl2,Chestnut Owlet (Etchecopar's),Glaucidium castaneum etchecopari,Strigiformes,Strigidae (Owls),,cheowl1 7420,issf,cheowl3,Chestnut Owlet (Chestnut),Glaucidium castaneum castaneum,Strigiformes,Strigidae (Owls),,cheowl1 7421,species,albowl1,Albertine Owlet,Glaucidium albertinum,Strigiformes,Strigidae (Owls),, 7422,spuh,glauci1,Glaucidium sp.,Glaucidium sp.,Strigiformes,Strigidae (Owls),, 7423,species,lowowl1,Long-whiskered Owlet,Xenoglaux loweryi,Strigiformes,Strigidae (Owls),, 7424,species,elfowl,Elf Owl,Micrathene whitneyi,Strigiformes,Strigidae (Owls),, 7429,species,burowl,Burrowing Owl,Athene cunicularia,Strigiformes,Strigidae (Owls),, 7430,issf,burowl2,Burrowing Owl (Western),Athene cunicularia hypugaea,Strigiformes,Strigidae (Owls),,burowl 7432,issf,burowl3,Burrowing Owl (Florida),Athene cunicularia floridana,Strigiformes,Strigidae (Owls),,burowl 7452,species,spoowl1,Spotted Owlet,Athene brama,Strigiformes,Strigidae (Owls),, 7457,species,forowl1,Forest Owlet,Athene blewitti,Strigiformes,Strigidae (Owls),, 7458,species,litowl1,Little Owl,Athene noctua,Strigiformes,Strigidae (Owls),, 7459,issf,litowl3,Little Owl (Little),Athene noctua [noctua Group],Strigiformes,Strigidae (Owls),,litowl1 7467,issf,litowl5,Little Owl (Abyssinian),Athene noctua spilogastra/somaliensis,Strigiformes,Strigidae (Owls),,litowl1 7470,issf,litowl2,Little Owl (Lilith),Athene noctua lilith,Strigiformes,Strigidae (Owls),,litowl1 7471,issf,litowl4,Little Owl (Hutton's),Athene noctua bactriana,Strigiformes,Strigidae (Owls),,litowl1 7472,species,motowl,Mottled Owl,Ciccaba virgata,Strigiformes,Strigidae (Owls),, 7472.5,issf,motowl1,Mottled Owl (Mottled),Ciccaba virgata [virgata Group],Strigiformes,Strigidae (Owls),,motowl 7476.5,issf,motowl3,Mottled Owl (Amazonian),Ciccaba virgata superciliaris/macconnelli,Strigiformes,Strigidae (Owls),,motowl 7479,issf,motowl2,Mottled Owl (Atlantic Forest),Ciccaba virgata borelliana,Strigiformes,Strigidae (Owls),,motowl 7480,species,bawowl1,Black-and-white Owl,Ciccaba nigrolineata,Strigiformes,Strigidae (Owls),, 7480.5,form,saiowl1,San Isidro Owl (undescribed form),Ciccaba [undescribed form],Strigiformes,Strigidae (Owls),, 7481,species,bkbowl1,Black-banded Owl,Ciccaba huhula,Strigiformes,Strigidae (Owls),, 7484,species,rubowl3,Rufous-banded Owl,Ciccaba albitarsis,Strigiformes,Strigidae (Owls),, 7484.5,spuh,ciccab1,Ciccaba sp.,Ciccaba sp.,Strigiformes,Strigidae (Owls),, 7485,species,spwowl1,Spotted Wood-Owl,Strix seloputo,Strigiformes,Strigidae (Owls),, 7489,species,mowowl1,Mottled Wood-Owl,Strix ocellata,Strigiformes,Strigidae (Owls),, 7493,species,brwowl1,Brown Wood-Owl,Strix leptogrammica,Strigiformes,Strigidae (Owls),, 7508,species,tawowl1,Tawny Owl,Strix aluco,Strigiformes,Strigidae (Owls),, 7508.5,issf,tawowl2,Tawny Owl (Tawny),Strix aluco [aluco Group],Strigiformes,Strigidae (Owls),,tawowl1 7516.5,issf,tawowl3,Tawny Owl (Atlas),Strix aluco mauritanica,Strigiformes,Strigidae (Owls),,tawowl1 7517,species,himowl1,Himalayan Owl,Strix nivicolum,Strigiformes,Strigidae (Owls),, 7520,species,humowl1,Desert Owl,Strix hadorami,Strigiformes,Strigidae (Owls),, 7520.5,species,omaowl1,Omani Owl,Strix butleri,Strigiformes,Strigidae (Owls),, 7521,species,spoowl,Spotted Owl,Strix occidentalis,Strigiformes,Strigidae (Owls),, 7522,issf,spoowl2,Spotted Owl (Northern),Strix occidentalis caurina,Strigiformes,Strigidae (Owls),,spoowl 7523,issf,spoowl3,Spotted Owl (California),Strix occidentalis occidentalis,Strigiformes,Strigidae (Owls),,spoowl 7524,issf,spoowl4,Spotted Owl (Mexican),Strix occidentalis lucida,Strigiformes,Strigidae (Owls),,spoowl 7526,species,brdowl,Barred Owl,Strix varia,Strigiformes,Strigidae (Owls),, 7526.5,issf,barowl12,Barred Owl (Northern),Strix varia [varia Group],Strigiformes,Strigidae (Owls),,brdowl 7530,issf,barowl13,Barred Owl (Cinereous),Strix varia sartorii,Strigiformes,Strigidae (Owls),,brdowl 7530.5,hybrid,x00439,Spotted x Barred Owl (hybrid),Strix occidentalis x varia,Strigiformes,Strigidae (Owls),, 7531,species,fulowl1,Fulvous Owl,Strix fulvescens,Strigiformes,Strigidae (Owls),, 7532,species,rubowl2,Rusty-barred Owl,Strix hylophila,Strigiformes,Strigidae (Owls),, 7533,species,rulowl1,Rufous-legged Owl,Strix rufipes,Strigiformes,Strigidae (Owls),, 7536,species,chaowl1,Chaco Owl,Strix chacoensis,Strigiformes,Strigidae (Owls),, 7537,species,uraowl1,Ural Owl,Strix uralensis,Strigiformes,Strigidae (Owls),, 7546,species,pedowl1,Pere David's Owl,Strix davidi,Strigiformes,Strigidae (Owls),, 7547,species,grgowl,Great Gray Owl,Strix nebulosa,Strigiformes,Strigidae (Owls),, 7548,issf,grgowl1,Great Gray Owl (American),Strix nebulosa nebulosa,Strigiformes,Strigidae (Owls),,grgowl 7549,issf,grgowl2,Great Gray Owl (Lapland),Strix nebulosa lapponica,Strigiformes,Strigidae (Owls),,grgowl 7550,species,afwowl1,African Wood-Owl,Strix woodfordii,Strigiformes,Strigidae (Owls),, 7555,species,loeowl,Long-eared Owl,Asio otus,Strigiformes,Strigidae (Owls),, 7555.5,issf,loeowl1,Long-eared Owl (American),Asio otus wilsonianus/tuftsi,Strigiformes,Strigidae (Owls),,loeowl 7557.5,issf,loeowl2,Long-eared Owl (Eurasian),Asio otus otus/canariensis,Strigiformes,Strigidae (Owls),,loeowl 7560,species,aleowl1,African Long-eared Owl,Asio abyssinicus,Strigiformes,Strigidae (Owls),, 7563,species,mleowl1,Madagascar Long-eared Owl,Asio madagascariensis,Strigiformes,Strigidae (Owls),, 7563.5,species,strowl1,Striped Owl,Asio clamator,Strigiformes,Strigidae (Owls),, 7564,species,styowl1,Stygian Owl,Asio stygius,Strigiformes,Strigidae (Owls),, 7571,species,sheowl,Short-eared Owl,Asio flammeus,Strigiformes,Strigidae (Owls),, 7572,issf,sheowl2,Short-eared Owl (Northern),Asio flammeus flammeus,Strigiformes,Strigidae (Owls),,sheowl 7573,issf,sheowl7,Short-eared Owl (Pohnpei),Asio flammeus ponapensis,Strigiformes,Strigidae (Owls),,sheowl 7574,issf,sheowl4,Short-eared Owl (Hawaiian),Asio flammeus sandwichensis,Strigiformes,Strigidae (Owls),,sheowl 7575,issf,sheowl3,Short-eared Owl (Antillean),Asio flammeus domingensis/portoricensis,Strigiformes,Strigidae (Owls),,sheowl 7578,issf,sheowl5,Short-eared Owl (Galapagos),Asio flammeus galapagoensis,Strigiformes,Strigidae (Owls),,sheowl 7579,issf,sheowl6,Short-eared Owl (South American),Asio flammeus [suinda Group],Strigiformes,Strigidae (Owls),,sheowl 7583.5,slash,y00673,Long-eared/Short-eared Owl,Asio otus/flammeus,Strigiformes,Strigidae (Owls),, 7584,species,marowl2,Marsh Owl,Asio capensis,Strigiformes,Strigidae (Owls),, 7587.5,spuh,asio1,Asio sp.,Asio sp.,Strigiformes,Strigidae (Owls),, 7588,species,feaowl1,Fearful Owl,Nesasio solomonensis,Strigiformes,Strigidae (Owls),, 7594,species,jamowl1,Jamaican Owl,Pseudoscops grammicus,Strigiformes,Strigidae (Owls),, 7595,species,borowl,Boreal Owl,Aegolius funereus,Strigiformes,Strigidae (Owls),, 7595.5,issf,borowl1,Boreal Owl (Tengmalm's),Aegolius funereus [funereus Group],Strigiformes,Strigidae (Owls),,borowl 7601,issf,borowl2,Boreal Owl (Richardson's),Aegolius funereus richardsoni,Strigiformes,Strigidae (Owls),,borowl 7602,species,nswowl,Northern Saw-whet Owl,Aegolius acadicus,Strigiformes,Strigidae (Owls),, 7605,species,uswowl1,Unspotted Saw-whet Owl,Aegolius ridgwayi,Strigiformes,Strigidae (Owls),, 7609,species,bufowl1,Buff-fronted Owl,Aegolius harrisii,Strigiformes,Strigidae (Owls),, 7613,species,rufowl2,Rufous Owl,Ninox rufa,Strigiformes,Strigidae (Owls),, 7618,species,powowl1,Powerful Owl,Ninox strenua,Strigiformes,Strigidae (Owls),, 7619,species,barowl1,Barking Owl,Ninox connivens,Strigiformes,Strigidae (Owls),, 7624,species,sumboo1,Sumba Boobook,Ninox rudolfi,Strigiformes,Strigidae (Owls),, 7625,species,andhao1,Andaman Boobook,Ninox affinis,Strigiformes,Strigidae (Owls),, 7625.5,species,souboo2,Southern Boobook,Ninox novaeseelandiae,Strigiformes,Strigidae (Owls),, 7626,issf,morepo1,Southern Boobook (Morepork),Ninox novaeseelandiae [novaeseelandiae Group],Strigiformes,Strigidae (Owls),,souboo2 7632,issf,souboo4,Southern Boobook (Roti),Ninox novaeseelandiae rotiensis,Strigiformes,Strigidae (Owls),,souboo2 7633,issf,souboo5,Southern Boobook (Timor),Ninox novaeseelandiae fusca,Strigiformes,Strigidae (Owls),,souboo2 7634,issf,souboo6,Southern Boobook (Alor),Ninox novaeseelandiae plesseni,Strigiformes,Strigidae (Owls),,souboo2 7637,issf,souboo1,Southern Boobook (Boobook),Ninox novaeseelandiae [boobook Group],Strigiformes,Strigidae (Owls),,souboo2 7640,issf,souboo7,Southern Boobook (Red),Ninox novaeseelandiae lurida,Strigiformes,Strigidae (Owls),,souboo2 7641.5,issf,souboo3,Southern Boobook (Tasmanian),Ninox novaeseelandiae leucopsis,Strigiformes,Strigidae (Owls),,souboo2 7642,species,lishao1,Least Boobook,Ninox sumbaensis,Strigiformes,Strigidae (Owls),, 7643,species,brnhao1,Brown Boobook,Ninox scutulata,Strigiformes,Strigidae (Owls),, 7651.5,species,brnhao3,Hume's Boobook,Ninox obscura,Strigiformes,Strigidae (Owls),, 7652,species,norboo1,Northern Boobook,Ninox japonica,Strigiformes,Strigidae (Owls),, 7654.5,slash,y00785,Brown/Northern Boobook,Ninox scutulata/japonica,Strigiformes,Strigidae (Owls),, 7655,species,choboo1,Chocolate Boobook,Ninox randi,Strigiformes,Strigidae (Owls),, 7656,species,whbowl1,White-browed Owl,Ninox superciliaris,Strigiformes,Strigidae (Owls),, 7657,species,phihao1,Luzon Boobook,Ninox philippensis,Strigiformes,Strigidae (Owls),, 7659.5,species,minboo1,Mindanao Boobook,Ninox spilocephala,Strigiformes,Strigidae (Owls),, 7660,species,minboo2,Mindoro Boobook,Ninox mindorensis,Strigiformes,Strigidae (Owls),, 7661,species,romboo1,Romblon Boobook,Ninox spilonotus,Strigiformes,Strigidae (Owls),, 7663,species,cebboo1,Cebu Boobook,Ninox rumseyi,Strigiformes,Strigidae (Owls),, 7663.5,species,camboo1,Camiguin Boobook,Ninox leventisi,Strigiformes,Strigidae (Owls),, 7664,species,sulboo1,Sulu Boobook,Ninox reyi,Strigiformes,Strigidae (Owls),, 7665,species,ocbhao1,Ochre-bellied Boobook,Ninox ochracea,Strigiformes,Strigidae (Owls),, 7666,species,toghao1,Togian Boobook,Ninox burhani,Strigiformes,Strigidae (Owls),, 7667,species,cinhao1,Cinnabar Boobook,Ninox ios,Strigiformes,Strigidae (Owls),, 7667.1,form,whshao1,White-spotted Boobook (undescribed form),Ninox [undescribed form],Strigiformes,Strigidae (Owls),, 7669,species,molhao3,Halmahera Boobook,Ninox hypogramma,Strigiformes,Strigidae (Owls),, 7670,species,molhao2,Tanimbar Boobook,Ninox forbesi,Strigiformes,Strigidae (Owls),, 7670.5,species,molhao4,Hantu Boobook,Ninox squamipila,Strigiformes,Strigidae (Owls),, 7670.7,issf,hanboo1,Hantu Boobook (Buru),Ninox squamipila hantu,Strigiformes,Strigidae (Owls),,molhao4 7670.9,issf,hanboo2,Hantu Boobook (Seram),Ninox squamipila squamipila,Strigiformes,Strigidae (Owls),,molhao4 7673,species,chihao1,Christmas Island Boobook,Ninox natalis,Strigiformes,Strigidae (Owls),, 7674,species,junhao1,Papuan Boobook,Ninox theomacha,Strigiformes,Strigidae (Owls),, 7679,species,manhao1,Manus Boobook,Ninox meeki,Strigiformes,Strigidae (Owls),, 7680,species,spehao1,Speckled Boobook,Ninox punctulata,Strigiformes,Strigidae (Owls),, 7681,species,bishao1,Bismarck Boobook,Ninox variegata,Strigiformes,Strigidae (Owls),, 7684,species,nebhao1,New Britain Boobook,Ninox odiosa,Strigiformes,Strigidae (Owls),, 7685,species,solhao1,Solomons Boobook,Ninox jacquinoti,Strigiformes,Strigidae (Owls),, 7685.2,issf,solboo1,Solomons Boobook (West Solomons),Ninox jacquinoti [jacquinoti Group],Strigiformes,Strigidae (Owls),,solhao1 7685.4,issf,solboo2,Solomons Boobook (Guadalcanal),Ninox jacquinoti granti,Strigiformes,Strigidae (Owls),,solhao1 7685.6,issf,solboo3,Solomons Boobook (Malaita),Ninox jacquinoti malaitae,Strigiformes,Strigidae (Owls),,solhao1 7685.8,issf,solboo4,Solomons Boobook (Makira),Ninox jacquinoti roseoaxillaris,Strigiformes,Strigidae (Owls),,solhao1 7692.5,spuh,booboo1,boobook sp.,Ninox sp.,Strigiformes,Strigidae (Owls),, 7693,species,paphao1,Papuan Owl,Uroglaux dimorpha,Strigiformes,Strigidae (Owls),, 7694,species,lauowl1,Laughing Owl,Sceloglaux albifacies,Strigiformes,Strigidae (Owls),, 7695,spuh,owl1,owl sp.,Strigiformes sp.,Strigiformes,Strigidae (Owls),, 7718,species,tawfro1,Tawny Frogmouth,Podargus strigoides,Caprimulgiformes,Podargidae (Frogmouths),Frogmouths, 7722,species,marfro1,Marbled Frogmouth,Podargus ocellatus,Caprimulgiformes,Podargidae (Frogmouths),, 7724,issf,marfro2,Marbled Frogmouth (Marbled),Podargus ocellatus [ocellatus Group],Caprimulgiformes,Podargidae (Frogmouths),,marfro1 7726,issf,marfro3,Marbled Frogmouth (Plumed),Podargus ocellatus plumiferus,Caprimulgiformes,Podargidae (Frogmouths),,marfro1 7728,species,papfro1,Papuan Frogmouth,Podargus papuensis,Caprimulgiformes,Podargidae (Frogmouths),, 7729,species,soifro1,Solomons Frogmouth,Rigidipenna inexpectata,Caprimulgiformes,Podargidae (Frogmouths),, 7730,species,larfro1,Large Frogmouth,Batrachostomus auritus,Caprimulgiformes,Podargidae (Frogmouths),, 7731,species,dulfro1,Dulit Frogmouth,Batrachostomus harterti,Caprimulgiformes,Podargidae (Frogmouths),, 7732,species,phifro1,Philippine Frogmouth,Batrachostomus septimus,Caprimulgiformes,Podargidae (Frogmouths),, 7736,species,goufro1,Gould's Frogmouth,Batrachostomus stellatus,Caprimulgiformes,Podargidae (Frogmouths),, 7737,species,ceyfro1,Sri Lanka Frogmouth,Batrachostomus moniliger,Caprimulgiformes,Podargidae (Frogmouths),, 7738,species,hodfro1,Hodgson's Frogmouth,Batrachostomus hodgsoni,Caprimulgiformes,Podargidae (Frogmouths),, 7739,species,shtfro1,Short-tailed Frogmouth,Batrachostomus poliolophus,Caprimulgiformes,Podargidae (Frogmouths),, 7740,issf,shtfro3,Short-tailed Frogmouth (Short-tailed),Batrachostomus poliolophus poliolophus,Caprimulgiformes,Podargidae (Frogmouths),,shtfro1 7741,issf,shtfro2,Short-tailed Frogmouth (Bornean),Batrachostomus poliolophus mixtus,Caprimulgiformes,Podargidae (Frogmouths),,shtfro1 7742,species,javfro3,Javan Frogmouth,Batrachostomus javensis,Caprimulgiformes,Podargidae (Frogmouths),, 7742.5,species,javfro2,Blyth's Frogmouth,Batrachostomus affinis,Caprimulgiformes,Podargidae (Frogmouths),, 7743,issf,blyfro1,Blyth's Frogmouth (Indochinese),Batrachostomus affinis continentalis,Caprimulgiformes,Podargidae (Frogmouths),,javfro2 7744,issf,blyfro2,Blyth's Frogmouth (Blyth's),Batrachostomus affinis affinis,Caprimulgiformes,Podargidae (Frogmouths),,javfro2 7745,species,palfro1,Palawan Frogmouth,Batrachostomus chaseni,Caprimulgiformes,Podargidae (Frogmouths),, 7746,species,sunfro1,Sunda Frogmouth,Batrachostomus cornutus,Caprimulgiformes,Podargidae (Frogmouths),, 7746.2,spuh,batrac1,Batrachostomus sp.,Batrachostomus sp.,Caprimulgiformes,Podargidae (Frogmouths),, 7746.3,spuh,frogmo1,frogmouth sp.,Podargidae sp.,Caprimulgiformes,Podargidae (Frogmouths),, 7748.01,species,sponig1,Spotted Nightjar,Eurostopodus argus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),Nightjars, 7748.03,species,solnig1,Solomons Nightjar,Eurostopodus nigripennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.04,species,necnig2,New Caledonian Nightjar,Eurostopodus exul,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.05,species,whtnig3,White-throated Nightjar,Eurostopodus mystacalis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.06,species,dianig1,Diabolical Nightjar,Eurostopodus diabolicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.07,species,papnig1,Papuan Nightjar,Eurostopodus papuensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.08,species,arcnig1,Archbold's Nightjar,Eurostopodus archboldi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.09,species,malnig1,Malaysian Nightjar,Lyncornis temminckii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.1,species,grenig1,Great Eared-Nightjar,Lyncornis macrotis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7748.16,species,colnig1,Collared Nightjar,Gactornis enarratus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7756.2,species,nacnig1,Nacunda Nighthawk,Chordeiles nacunda,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7757,species,leanig1,Least Nighthawk,Chordeiles pusillus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7764,species,sacnig1,Sand-colored Nighthawk,Chordeiles rupestris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7767,species,lesnig,Lesser Nighthawk,Chordeiles acutipennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7775,species,comnig,Common Nighthawk,Chordeiles minor,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7784,species,antnig,Antillean Nighthawk,Chordeiles gundlachii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7787,spuh,nighth1,nighthawk sp.,Chordeiles sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7787.1,species,shtnig1,Short-tailed Nighthawk,Lurocalis semitorquatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7787.2,issf,shtnig2,Short-tailed Nighthawk (Short-tailed),Lurocalis semitorquatus [semitorquatus Group],Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,shtnig1 7787.7,issf,shtnig3,Short-tailed Nighthawk (nattereri),Lurocalis semitorquatus nattereri,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,shtnig1 7787.8,species,rubnig1,Rufous-bellied Nighthawk,Lurocalis rufiventris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7788,species,batnig1,Band-tailed Nighthawk,Nyctiprogne leucopyga,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7788.3,issf,batnig3,Band-tailed Nighthawk (Band-tailed),Nyctiprogne leucopyga [leucopyga Group],Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,batnig1 7788.6,issf,batnig4,Band-tailed Nighthawk (latifascia),Nyctiprogne leucopyga latifascia,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,batnig1 7794,species,bahnig1,Bahian Nighthawk,Nyctiprogne vielliardi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7795,species,blanig1,Blackish Nightjar,Nyctipolus nigrescens,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7796,species,pygnig1,Pygmy Nightjar,Nyctipolus hirundinaceus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7800,species,bawnig1,Band-winged Nightjar,Systellura longirostris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7800.5,issf,bawnig5,Band-winged Nightjar (Tepui),Systellura longirostris roraimae,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 7802,issf,bawnig6,Band-winged Nightjar (Rufous-naped),Systellura longirostris ruficervix,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 7804,issf,bawnig7,Band-winged Nightjar (atripunctata),Systellura longirostris atripunctata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 7805,issf,bawnig8,Band-winged Nightjar (Austral),Systellura longirostris bifasciata/patagonica,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 7807.4,issf,bawnig9,Band-winged Nightjar (longirostris),Systellura longirostris longirostris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 7808,issf,bawnig4,Band-winged Nightjar (Mocha),Systellura longirostris mochaensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 7809,species,bawnig3,Tschudi's Nightjar,Systellura decussata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7813,species,compau,Common Pauraque,Nyctidromus albicollis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7820.5,species,scrnig1,Scrub Nightjar,Nyctidromus anthonyi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7821,species,whwnig1,White-winged Nightjar,Eleothreptus candicans,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7821.5,species,siwnig1,Sickle-winged Nightjar,Eleothreptus anomalus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7822,species,swtnig1,Swallow-tailed Nightjar,Uropsalis segmentata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7825,species,lytnig1,Lyre-tailed Nightjar,Uropsalis lyra,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7829,species,samnig1,Todd's Nightjar,Setopagis heterura,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7830,species,litnig1,Little Nightjar,Setopagis parvula,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7831,species,rornig1,Roraiman Nightjar,Setopagis whitelyi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7832,species,caynig1,Cayenne Nightjar,Setopagis maculosa,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7833,species,whtnig1,White-tailed Nightjar,Hydropsalis cayennensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7840,species,sptnig1,Spot-tailed Nightjar,Hydropsalis maculicaudus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7841,species,latnig1,Ladder-tailed Nightjar,Hydropsalis climacocerca,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7847,species,sctnig2,Scissor-tailed Nightjar,Hydropsalis torquata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7850,spuh,hydrop1,Hydropsalis sp.,Hydropsalis sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7851,species,lotnig2,Long-trained Nightjar,Macropsalis forcipata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7852,species,jampau,Jamaican Pauraque,Siphonorhis americana,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7853,species,leapau1,Least Pauraque,Siphonorhis brewsteri,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7854,species,earpoo1,Eared Poorwill,Nyctiphrynus mcleodii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7857,species,yucpoo1,Yucatan Poorwill,Nyctiphrynus yucatanicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7859,species,ocepoo1,Ocellated Poorwill,Nyctiphrynus ocellatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7861,species,chopoo1,Choco Poorwill,Nyctiphrynus rosenbergi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7862,species,compoo,Common Poorwill,Phalaenoptilus nuttallii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7867.5,species,chwwid,Chuck-will's-widow,Antrostomus carolinensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7867.6,species,rufnig1,Rufous Nightjar,Antrostomus rufus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7867.7,issf,rufnig2,Rufous Nightjar (South American),Antrostomus rufus [rufus Group],Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,rufnig1 7895,issf,rufnig4,Rufous Nightjar (St. Lucia),Antrostomus rufus otiosus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,rufnig1 7900,issf,rufnig3,Rufous Nightjar (Northern),Antrostomus rufus minimus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,rufnig1 7900.5,species,granig1,Greater Antillean Nightjar,Antrostomus cubanensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7901,issf,granig2,Greater Antillean Nightjar (Cuban),Antrostomus cubanensis cubanensis/insulaepinorum,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,granig1 7903,issf,granig3,Greater Antillean Nightjar (Hispaniolan),Antrostomus cubanensis ekmani,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,granig1 7904,species,tacnig1,Tawny-collared Nightjar,Antrostomus salvini,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7905,species,yucnig1,Yucatan Nightjar,Antrostomus badius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7906,species,sitnig1,Silky-tailed Nightjar,Antrostomus sericocaudatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7909,species,bucnig,Buff-collared Nightjar,Antrostomus ridgwayi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7912,species,whip-p1,Eastern Whip-poor-will,Antrostomus vociferus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7912.5,species,dusnig1,Dusky Nightjar,Antrostomus saturatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7913,species,souwpw1,Mexican Whip-poor-will,Antrostomus arizonae,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7919,slash,whpwil,Eastern/Mexican Whip-poor-will,Antrostomus vociferus/arizonae,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7920,species,purnig1,Puerto Rican Nightjar,Antrostomus noctitherus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7921,spuh,antros1,Antrostomus sp.,Antrostomus sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7922,species,pewnig1,Pennant-winged Nightjar,Caprimulgus vexillarius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7923,species,stwnig1,Standard-winged Nightjar,Caprimulgus longipennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7924,species,bronig1,Brown Nightjar,Caprimulgus binotatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7925,species,rennig1,Red-necked Nightjar,Caprimulgus ruficollis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7929,species,grynig2,Jungle Nightjar,Caprimulgus indicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7932,species,grynig1,Gray Nightjar,Caprimulgus jotaka,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7934,slash,granig,Jungle/Gray Nightjar,Caprimulgus indicus/jotaka,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7935,species,palnig1,Palau Nightjar,Caprimulgus phalaena,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7936,species,eurnig1,Eurasian Nightjar,Caprimulgus europaeus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7943,slash,y00677,Red-necked/Eurasian Nightjar,Caprimulgus ruficollis/europaeus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7944,species,somnig1,Sombre Nightjar,Caprimulgus fraenatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7945,species,rucnig1,Rufous-cheeked Nightjar,Caprimulgus rufigena,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7948,species,egynig1,Egyptian Nightjar,Caprimulgus aegyptius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7951,species,nubnig1,Nubian Nightjar,Caprimulgus nubicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7951.5,issf,nubnig2,Nubian Nightjar (Nubian),Caprimulgus nubicus nubicus/tamaricis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,nubnig1 7954,issf,nubnig3,Nubian Nightjar (Torrid),Caprimulgus nubicus torridus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,nubnig1 7955,issf,nubnig4,Nubian Nightjar (Socotra),Caprimulgus nubicus jonesi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,nubnig1 7956,species,syknig1,Sykes's Nightjar,Caprimulgus mahrattensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7957,species,vaunig1,Vaurie's Nightjar,Caprimulgus centralasicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7958,species,golnig1,Golden Nightjar,Caprimulgus eximius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7961,species,latnig2,Large-tailed Nightjar,Caprimulgus macrurus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7968,species,andnig1,Andaman Nightjar,Caprimulgus andamanicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7969,species,meenig1,Mees's Nightjar,Caprimulgus meesi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7970,species,jernig1,Jerdon's Nightjar,Caprimulgus atripennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7973,species,phinig1,Philippine Nightjar,Caprimulgus manillensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7974,species,sulnig1,Sulawesi Nightjar,Caprimulgus celebensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7977,species,dosnig1,Donaldson-Smith's Nightjar,Caprimulgus donaldsoni,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7978,species,bksnig1,Black-shouldered Nightjar,Caprimulgus nigriscapularis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7979,species,finnig1,Fiery-necked Nightjar,Caprimulgus pectoralis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7984,species,abynig1,Abyssinian Nightjar,Caprimulgus poliocephalus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7985,species,monnig2,Montane Nightjar,Caprimulgus ruwenzorii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7988,species,indnig1,Indian Nightjar,Caprimulgus asiaticus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7993,species,madnig1,Madagascar Nightjar,Caprimulgus madagascariensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7996,species,swanig1,Swamp Nightjar,Caprimulgus natalensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7998.1,species,planig1,Plain Nightjar,Caprimulgus inornatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7998.2,species,stsnig1,Star-spotted Nightjar,Caprimulgus stellatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7998.3,species,necnig1,Nechisar Nightjar,Caprimulgus solala,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 7998.4,species,savnig1,Savanna Nightjar,Caprimulgus affinis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8000.7,species,frenig1,Freckled Nightjar,Caprimulgus tristigma,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8006,species,bonnig1,Bonaparte's Nightjar,Caprimulgus concretus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8007,species,salnig1,Salvadori's Nightjar,Caprimulgus pulchellus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8010,species,itonig1,Itombwe Nightjar,Caprimulgus prigoginei,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8011,species,batnig2,Bates's Nightjar,Caprimulgus batesi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8012,species,lotnig1,Long-tailed Nightjar,Caprimulgus climacurus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8017,species,sltnig1,Slender-tailed Nightjar,Caprimulgus clarus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8018,species,sqtnig1,Square-tailed Nightjar,Caprimulgus fossii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8023,spuh,caprim1,Caprimulgus sp.,Caprimulgus sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8024,spuh,nightj1,nightjar sp.,Caprimulgidae sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, 8025,species,grepot1,Great Potoo,Nyctibius grandis,Caprimulgiformes,Nyctibiidae (Potoos),Potoos and Oilbird, 8026,species,lotpot1,Long-tailed Potoo,Nyctibius aethereus,Caprimulgiformes,Nyctibiidae (Potoos),, 8030,species,compot1,Common Potoo,Nyctibius griseus,Caprimulgiformes,Nyctibiidae (Potoos),, 8033,species,norpot1,Northern Potoo,Nyctibius jamaicensis,Caprimulgiformes,Nyctibiidae (Potoos),, 8033.5,issf,norpot2,Northern Potoo (Middle American),Nyctibius jamaicensis [mexicanus Group],Caprimulgiformes,Nyctibiidae (Potoos),,norpot1 8036.5,issf,norpot3,Northern Potoo (Caribbean),Nyctibius jamaicensis jamaicensis/abbotti,Caprimulgiformes,Nyctibiidae (Potoos),,norpot1 8039,species,andpot1,Andean Potoo,Nyctibius maculosus,Caprimulgiformes,Nyctibiidae (Potoos),, 8040,species,whwpot1,White-winged Potoo,Nyctibius leucopterus,Caprimulgiformes,Nyctibiidae (Potoos),, 8041,species,rufpot1,Rufous Potoo,Nyctibius bracteatus,Caprimulgiformes,Nyctibiidae (Potoos),, 8041.2,spuh,potoo1,potoo sp.,Nyctibius sp.,Caprimulgiformes,Nyctibiidae (Potoos),, 8042.01,species,oilbir1,Oilbird,Steatornis caripensis,Caprimulgiformes,Steatornithidae (Oilbird),, 8042.02,species,nconig1,New Caledonian Owlet-nightjar,Aegotheles savesi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),Owlet-nightjars, 8042.03,species,feonig1,Feline Owlet-nightjar,Aegotheles insignis,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.04,species,spaown1,Starry Owlet-nightjar,Aegotheles tatei,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.05,species,waonig1,Wallace's Owlet-nightjar,Aegotheles wallacii,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.06,species,aronig1,Archbold's Owlet-nightjar,Aegotheles archboldi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.07,species,moonig1,Mountain Owlet-nightjar,Aegotheles albertisi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.08,species,molown1,Moluccan Owlet-nightjar,Aegotheles crinifrons,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.09,species,auonig1,Australian Owlet-nightjar,Aegotheles cristatus,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.1,species,barown2,Vogelkop Owlet-nightjar,Aegotheles affinis,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.11,species,barown1,Barred Owlet-nightjar,Aegotheles bennettii,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8042.12,issf,barown3,Barred Owlet-nightjar (Barred),Aegotheles bennettii bennettii/wiedenfeldi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),,barown1 8042.13,issf,barown5,Barred Owlet-nightjar (Diamond's),Aegotheles bennettii terborghi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),,barown1 8042.14,issf,barown4,Barred Owlet-nightjar (Dwarf),Aegotheles bennettii plumifer,Caprimulgiformes,Aegothelidae (Owlet-nightjars),,barown1 8042.15,spuh,owlet-1,owlet-nightjar sp.,Aegotheles sp.,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, 8043,species,blkswi,Black Swift,Cypseloides niger,Caprimulgiformes,Apodidae (Swifts),Swifts, 8044,issf,blkswi1,Black Swift (borealis),Cypseloides niger borealis,Caprimulgiformes,Apodidae (Swifts),,blkswi 8045,issf,blkswi2,Black Swift (costaricensis),Cypseloides niger costaricensis,Caprimulgiformes,Apodidae (Swifts),,blkswi 8046,issf,blkswi3,Black Swift (niger),Cypseloides niger niger,Caprimulgiformes,Apodidae (Swifts),,blkswi 8047,species,whcswi2,White-chested Swift,Cypseloides lemosi,Caprimulgiformes,Apodidae (Swifts),, 8048,species,rotswi1,Rothschild's Swift,Cypseloides rothschildi,Caprimulgiformes,Apodidae (Swifts),, 8049,species,sooswi1,Sooty Swift,Cypseloides fumigatus,Caprimulgiformes,Apodidae (Swifts),, 8050,species,whfswi1,White-fronted Swift,Cypseloides storeri,Caprimulgiformes,Apodidae (Swifts),, 8051,species,whcswi1,White-chinned Swift,Cypseloides cryptus,Caprimulgiformes,Apodidae (Swifts),, 8052,species,spfswi1,Spot-fronted Swift,Cypseloides cherriei,Caprimulgiformes,Apodidae (Swifts),, 8053,species,grdswi1,Great Dusky Swift,Cypseloides senex,Caprimulgiformes,Apodidae (Swifts),, 8054,spuh,cypsel1,Cypseloides sp.,Cypseloides sp.,Caprimulgiformes,Apodidae (Swifts),, 8055,species,chcswi1,Chestnut-collared Swift,Streptoprocne rutila,Caprimulgiformes,Apodidae (Swifts),, 8059,species,tepswi1,Tepui Swift,Streptoprocne phelpsi,Caprimulgiformes,Apodidae (Swifts),, 8060,species,whcswi,White-collared Swift,Streptoprocne zonaris,Caprimulgiformes,Apodidae (Swifts),, 8070,species,whnswi1,White-naped Swift,Streptoprocne semicollaris,Caprimulgiformes,Apodidae (Swifts),, 8071,species,bisswi1,Biscutate Swift,Streptoprocne biscutata,Caprimulgiformes,Apodidae (Swifts),, 8074,spuh,strept2,Streptoprocne sp.,Streptoprocne sp.,Caprimulgiformes,Apodidae (Swifts),, 8075,species,phinee1,Philippine Spinetailed Swift,Mearnsia picina,Caprimulgiformes,Apodidae (Swifts),, 8076,species,papnee1,Papuan Spinetailed Swift,Mearnsia novaeguineae,Caprimulgiformes,Apodidae (Swifts),, 8079,species,malspi1,Malagasy Spinetail,Zoonavena grandidieri,Caprimulgiformes,Apodidae (Swifts),, 8082,species,satspi1,Sao Tome Spinetail,Zoonavena thomensis,Caprimulgiformes,Apodidae (Swifts),, 8083,species,whrnee1,White-rumped Needletail,Zoonavena sylvatica,Caprimulgiformes,Apodidae (Swifts),, 8084,species,motspi1,Mottled Spinetail,Telacanthura ussheri,Caprimulgiformes,Apodidae (Swifts),, 8089,species,blaspi1,Black Spinetail,Telacanthura melanopygia,Caprimulgiformes,Apodidae (Swifts),, 8090,species,sirnee1,Silver-rumped Needletail,Rhaphidura leucopygialis,Caprimulgiformes,Apodidae (Swifts),, 8091,species,sabspi1,Sabine's Spinetail,Rhaphidura sabini,Caprimulgiformes,Apodidae (Swifts),, 8092,species,casspi1,Cassin's Spinetail,Neafrapus cassini,Caprimulgiformes,Apodidae (Swifts),, 8093,species,balspi1,Bat-like Spinetail,Neafrapus boehmi,Caprimulgiformes,Apodidae (Swifts),, 8096,species,chiswi,Chimney Swift,Chaetura pelagica,Caprimulgiformes,Apodidae (Swifts),, 8097,species,vauswi,Vaux's Swift,Chaetura vauxi,Caprimulgiformes,Apodidae (Swifts),, 8098,issf,vauswi1,Vaux's Swift (Vaux's),Chaetura vauxi vauxi,Caprimulgiformes,Apodidae (Swifts),,vauswi 8099,issf,vauswi2,Vaux's Swift (Yucatan),Chaetura vauxi gaumeri,Caprimulgiformes,Apodidae (Swifts),,vauswi 8100,issf,vauswi3,Vaux's Swift (Richmond's),Chaetura vauxi [richmondi Group],Caprimulgiformes,Apodidae (Swifts),,vauswi 8104,issf,astswi1,Vaux's Swift (Ashy-tailed),Chaetura vauxi andrei,Caprimulgiformes,Apodidae (Swifts),,vauswi 8105,slash,y00321,Chimney/Vaux's Swift,Chaetura pelagica/vauxi,Caprimulgiformes,Apodidae (Swifts),, 8106,species,chaswi1,Chapman's Swift,Chaetura chapmani,Caprimulgiformes,Apodidae (Swifts),, 8107,species,amaswi1,Amazonian Swift,Chaetura viridipennis,Caprimulgiformes,Apodidae (Swifts),, 8108,species,sicswi1,Sick's Swift,Chaetura meridionalis,Caprimulgiformes,Apodidae (Swifts),, 8109,species,shtswi1,Short-tailed Swift,Chaetura brachyura,Caprimulgiformes,Apodidae (Swifts),, 8110,issf,shtswi2,Short-tailed Swift (Short-tailed),Chaetura brachyura [brachyura Group],Caprimulgiformes,Apodidae (Swifts),,shtswi1 8114,issf,shtswi3,Short-tailed Swift (Tumbes),Chaetura brachyura ocypetes,Caprimulgiformes,Apodidae (Swifts),,shtswi1 8115,species,barswi,Band-rumped Swift,Chaetura spinicaudus,Caprimulgiformes,Apodidae (Swifts),, 8116,issf,barswi1,Band-rumped Swift (aetherodroma),Chaetura spinicaudus aetherodroma,Caprimulgiformes,Apodidae (Swifts),,barswi 8116.5,issf,barswi2,Band-rumped Swift (spinicaudus/latirostris),Chaetura spinicaudus spinicaudus/latirostris,Caprimulgiformes,Apodidae (Swifts),,barswi 8119,issf,barswi3,Band-rumped Swift (aethalea),Chaetura spinicaudus aethalea,Caprimulgiformes,Apodidae (Swifts),,barswi 8120,species,corswi,Costa Rican Swift,Chaetura fumosa,Caprimulgiformes,Apodidae (Swifts),, 8121,species,grrswi1,Gray-rumped Swift,Chaetura cinereiventris,Caprimulgiformes,Apodidae (Swifts),, 8122.5,issf,gyrswi3,Gray-rumped Swift (phaeopygos),Chaetura cinereiventris phaeopygos,Caprimulgiformes,Apodidae (Swifts),,grrswi1 8123,issf,gyrswi4,Gray-rumped Swift (occidentalis),Chaetura cinereiventris occidentalis,Caprimulgiformes,Apodidae (Swifts),,grrswi1 8123.5,issf,gyrswi1,Gray-rumped Swift (Ash-rumped),Chaetura cinereiventris [sclateri Group],Caprimulgiformes,Apodidae (Swifts),,grrswi1 8129,issf,gyrswi2,Gray-rumped Swift (Gray-rumped),Chaetura cinereiventris cinereiventris,Caprimulgiformes,Apodidae (Swifts),,grrswi1 8130,species,parswi1,Pale-rumped Swift,Chaetura egregia,Caprimulgiformes,Apodidae (Swifts),, 8131,species,leaswi1,Lesser Antillean Swift,Chaetura martinica,Caprimulgiformes,Apodidae (Swifts),, 8132,spuh,chaetu,Chaetura sp.,Chaetura sp.,Caprimulgiformes,Apodidae (Swifts),, 8133,species,whtnee,White-throated Needletail,Hirundapus caudacutus,Caprimulgiformes,Apodidae (Swifts),, 8136,species,sibnee1,Silver-backed Needletail,Hirundapus cochinchinensis,Caprimulgiformes,Apodidae (Swifts),, 8140,species,brbnee1,Brown-backed Needletail,Hirundapus giganteus,Caprimulgiformes,Apodidae (Swifts),, 8143,species,purnee1,Purple Needletail,Hirundapus celebensis,Caprimulgiformes,Apodidae (Swifts),, 8144,spuh,hirund1,Hirundapus sp.,Hirundapus sp.,Caprimulgiformes,Apodidae (Swifts),, 8145,species,watswi1,Waterfall Swift,Hydrochous gigas,Caprimulgiformes,Apodidae (Swifts),, 8146,species,pygswi2,Pygmy Swiftlet,Collocalia troglodytes,Caprimulgiformes,Apodidae (Swifts),, 8146.2,species,cavswi3,Bornean Swiftlet,Collocalia dodgei,Caprimulgiformes,Apodidae (Swifts),, 8179,species,chiswi1,Christmas Island Swiftlet,Collocalia natalis,Caprimulgiformes,Apodidae (Swifts),, 8179.2,species,cavswi2,Cave Swiftlet,Collocalia linchi,Caprimulgiformes,Apodidae (Swifts),, 8179.4,species,pltswi1,Plume-toed Swiftlet,Collocalia affinis,Caprimulgiformes,Apodidae (Swifts),, 8179.6,species,gyrswi5,Gray-rumped Swiftlet,Collocalia marginata,Caprimulgiformes,Apodidae (Swifts),, 8179.8,species,ridswi1,Ridgetop Swiftlet,Collocalia isonota,Caprimulgiformes,Apodidae (Swifts),, 8180,species,tenswi1,Tenggara Swiftlet,Collocalia sumbawae,Caprimulgiformes,Apodidae (Swifts),, 8184,species,draswi1,Drab Swiftlet,Collocalia neglecta,Caprimulgiformes,Apodidae (Swifts),, 8184.2,species,gloswi1,Glossy Swiftlet,Collocalia esculenta,Caprimulgiformes,Apodidae (Swifts),, 8184.3,species,satswi1,Satin Swiftlet,Collocalia uropygialis,Caprimulgiformes,Apodidae (Swifts),, 8184.5,spuh,whbswi1,white-bellied swiftlet sp.,Collocalia sp.,Caprimulgiformes,Apodidae (Swifts),, 8185,species,seyswi1,Seychelles Swiftlet,Aerodramus elaphrus,Caprimulgiformes,Apodidae (Swifts),, 8186,species,masswi1,Mascarene Swiftlet,Aerodramus francicus,Caprimulgiformes,Apodidae (Swifts),, 8187,species,indswi1,Indian Swiftlet,Aerodramus unicolor,Caprimulgiformes,Apodidae (Swifts),, 8189,species,molswi4,Sulawesi Swiftlet,Aerodramus sororum,Caprimulgiformes,Apodidae (Swifts),, 8190,species,molswi3,Halmahera Swiftlet,Aerodramus infuscatus,Caprimulgiformes,Apodidae (Swifts),, 8191,species,molswi1,Seram Swiftlet,Aerodramus ceramensis,Caprimulgiformes,Apodidae (Swifts),, 8192,species,phiswi1,Philippine Swiftlet,Aerodramus mearnsi,Caprimulgiformes,Apodidae (Swifts),, 8193,species,mouswi2,Mountain Swiftlet,Aerodramus hirundinaceus,Caprimulgiformes,Apodidae (Swifts),, 8197,species,whrswi2,White-rumped Swiftlet,Aerodramus spodiopygius,Caprimulgiformes,Apodidae (Swifts),, 8209,species,ausswi1,Australian Swiftlet,Aerodramus terraereginae,Caprimulgiformes,Apodidae (Swifts),, 8212,species,himswi2,Himalayan Swiftlet,Aerodramus brevirostris,Caprimulgiformes,Apodidae (Swifts),, 8212.5,issf,himswi1,Himalayan Swiftlet (Himalayan),Aerodramus brevirostris brevirostris/innominatus,Caprimulgiformes,Apodidae (Swifts),,himswi2 8215,issf,indswi2,Himalayan Swiftlet (Indochinese),Aerodramus brevirostris rogersi,Caprimulgiformes,Apodidae (Swifts),,himswi2 8216,species,volswi1,Volcano Swiftlet,Aerodramus vulcanorum,Caprimulgiformes,Apodidae (Swifts),, 8217,species,whiswi1,Whitehead's Swiftlet,Aerodramus whiteheadi,Caprimulgiformes,Apodidae (Swifts),, 8220,species,balswi1,Bare-legged Swiftlet,Aerodramus nuditarsus,Caprimulgiformes,Apodidae (Swifts),, 8221,species,mayswi1,Mayr's Swiftlet,Aerodramus orientalis,Caprimulgiformes,Apodidae (Swifts),, 8224,species,palswi2,Ameline Swiftlet,Aerodramus amelis,Caprimulgiformes,Apodidae (Swifts),, 8225,species,uniswi1,Uniform Swiftlet,Aerodramus vanikorensis,Caprimulgiformes,Apodidae (Swifts),, 8239,species,monswi2,Mossy-nest Swiftlet,Aerodramus salangana,Caprimulgiformes,Apodidae (Swifts),, 8244,species,palswi1,Palau Swiftlet,Aerodramus pelewensis,Caprimulgiformes,Apodidae (Swifts),, 8245,species,marswi,Mariana Swiftlet,Aerodramus bartschi,Caprimulgiformes,Apodidae (Swifts),, 8246,species,caiswi1,Caroline Islands Swiftlet,Aerodramus inquietus,Caprimulgiformes,Apodidae (Swifts),, 8250,species,atiswi1,Atiu Swiftlet,Aerodramus sawtelli,Caprimulgiformes,Apodidae (Swifts),, 8251,species,polswi1,Polynesian Swiftlet,Aerodramus leucophaeus,Caprimulgiformes,Apodidae (Swifts),, 8252,species,marswi2,Marquesan Swiftlet,Aerodramus ocistus,Caprimulgiformes,Apodidae (Swifts),, 8255,species,blnswi1,Black-nest Swiftlet,Aerodramus maximus,Caprimulgiformes,Apodidae (Swifts),, 8259,species,ednswi1,White-nest Swiftlet,Aerodramus fuciphagus,Caprimulgiformes,Apodidae (Swifts),, 8266,species,gerswi1,Germain's Swiftlet,Aerodramus germani,Caprimulgiformes,Apodidae (Swifts),, 8268.5,slash,y00731,White-nest/Germain's Swiftlet (Edible-nest Swiftlet),Aerodramus fuciphagus/germani,Caprimulgiformes,Apodidae (Swifts),, 8269,species,papswi1,Three-toed Swiftlet,Aerodramus papuensis,Caprimulgiformes,Apodidae (Swifts),, 8270,spuh,aerodr1,dark swiftlet sp.,Aerodramus sp.,Caprimulgiformes,Apodidae (Swifts),, 8270.5,spuh,swiftl1,swiftlet sp.,Collocalia/Aerodramus sp.,Caprimulgiformes,Apodidae (Swifts),, 8271,species,scaswi1,Scarce Swift,Schoutedenapus myoptilus,Caprimulgiformes,Apodidae (Swifts),, 8275,species,schswi1,Schouteden's Swift,Schoutedenapus schoutedeni,Caprimulgiformes,Apodidae (Swifts),, 8275.2,slash,y01029,Scarce/Schouteden's Swift,Schoutedenapus myoptilus/schoutedeni,Caprimulgiformes,Apodidae (Swifts),, 8276,species,alpswi1,Alpine Swift,Apus melba,Caprimulgiformes,Apodidae (Swifts),, 8287,species,motswi2,Mottled Swift,Apus aequatorialis,Caprimulgiformes,Apodidae (Swifts),, 8292,species,aleswi1,Alexander's Swift,Apus alexandri,Caprimulgiformes,Apodidae (Swifts),, 8293,species,comswi,Common Swift,Apus apus,Caprimulgiformes,Apodidae (Swifts),, 8296,species,plaswi1,Plain Swift,Apus unicolor,Caprimulgiformes,Apodidae (Swifts),, 8297,species,nyaswi1,Nyanza Swift,Apus niansae,Caprimulgiformes,Apodidae (Swifts),, 8300,species,palswi3,Pallid Swift,Apus pallidus,Caprimulgiformes,Apodidae (Swifts),, 8303.5,slash,y00732,Common/Pallid Swift,Apus apus/pallidus,Caprimulgiformes,Apodidae (Swifts),, 8303.7,slash,y00860,Plain/Pallid Swift,Apus unicolor/pallidus,Caprimulgiformes,Apodidae (Swifts),, 8304,species,afrswi1,African Swift,Apus barbatus,Caprimulgiformes,Apodidae (Swifts),, 8306,issf,afrswi2,African Swift (Bioko),Apus barbatus sladeniae,Caprimulgiformes,Apodidae (Swifts),,afrswi1 8306.1,issf,afrswi3,African Swift (African),Apus barbatus [barbatus Group],Caprimulgiformes,Apodidae (Swifts),,afrswi1 8312,species,fowswi1,Forbes-Watson's Swift,Apus berliozi,Caprimulgiformes,Apodidae (Swifts),, 8315,species,braswi1,Bradfield's Swift,Apus bradfieldi,Caprimulgiformes,Apodidae (Swifts),, 8318,species,madswi1,Madagascar Swift,Apus balstoni,Caprimulgiformes,Apodidae (Swifts),, 8321,species,fotswi,Pacific Swift,Apus pacificus,Caprimulgiformes,Apodidae (Swifts),, 8323.1,species,saaswi1,Salim Ali's Swift,Apus salimalii,Caprimulgiformes,Apodidae (Swifts),, 8324,species,blyswi1,Blyth's Swift,Apus leuconyx,Caprimulgiformes,Apodidae (Swifts),, 8325,species,cooswi1,Cook's Swift,Apus cooki,Caprimulgiformes,Apodidae (Swifts),, 8325.3,slash,y00959,Pacific/Cook's Swift,Apus pacificus/cooki,Caprimulgiformes,Apodidae (Swifts),, 8325.5,spuh,fotswi1,fork-tailed swift sp.,Apus pacificus/salimalii/leuconyx/cooki,Caprimulgiformes,Apodidae (Swifts),, 8326,species,darswi1,Dark-rumped Swift,Apus acuticauda,Caprimulgiformes,Apodidae (Swifts),, 8327,species,litswi1,Little Swift,Apus affinis,Caprimulgiformes,Apodidae (Swifts),, 8327.5,issf,litswi2,Little Swift (Little),Apus affinis [affinis Group],Caprimulgiformes,Apodidae (Swifts),,litswi1 8332.5,issf,litswi3,Little Swift (Bannerman's),Apus affinis bannermani,Caprimulgiformes,Apodidae (Swifts),,litswi1 8333,issf,litswi4,Little Swift (Indian),Apus affinis singalensis,Caprimulgiformes,Apodidae (Swifts),,litswi1 8334,species,houswi1,House Swift,Apus nipalensis,Caprimulgiformes,Apodidae (Swifts),, 8338.5,slash,y00960,Little/House Swift,Apus affinis/nipalensis,Caprimulgiformes,Apodidae (Swifts),, 8339,species,horswi1,Horus Swift,Apus horus,Caprimulgiformes,Apodidae (Swifts),, 8340,issf,horswi2,Horus Swift (Horus),Apus horus horus,Caprimulgiformes,Apodidae (Swifts),,horswi1 8341,issf,horswi3,Horus Swift (Brown-rumped),Apus horus fuscobrunneus,Caprimulgiformes,Apodidae (Swifts),,horswi1 8342,species,whrswi1,White-rumped Swift,Apus caffer,Caprimulgiformes,Apodidae (Swifts),, 8343,species,batswi1,Bates's Swift,Apus batesi,Caprimulgiformes,Apodidae (Swifts),, 8344,spuh,apus1,Apus sp.,Apus sp.,Caprimulgiformes,Apodidae (Swifts),, 8345,species,whtswi,White-throated Swift,Aeronautes saxatalis,Caprimulgiformes,Apodidae (Swifts),, 8348,species,whtswi1,White-tipped Swift,Aeronautes montivagus,Caprimulgiformes,Apodidae (Swifts),, 8351,species,andswi1,Andean Swift,Aeronautes andecolus,Caprimulgiformes,Apodidae (Swifts),, 8354.5,slash,y00669,White-tipped/Andean Swift,Aeronautes montivagus/andecolus,Caprimulgiformes,Apodidae (Swifts),, 8355,species,lstswi1,Lesser Swallow-tailed Swift,Panyptila cayennensis,Caprimulgiformes,Apodidae (Swifts),, 8358,species,gstswi1,Great Swallow-tailed Swift,Panyptila sanctihieronymi,Caprimulgiformes,Apodidae (Swifts),, 8359,species,aspswi1,Asian Palm-Swift,Cypsiurus balasiensis,Caprimulgiformes,Apodidae (Swifts),, 8364,species,afpswi1,African Palm-Swift,Cypsiurus parvus,Caprimulgiformes,Apodidae (Swifts),, 8364.5,issf,afrpas1,African Palm-Swift (African),Cypsiurus parvus [parvus Group],Caprimulgiformes,Apodidae (Swifts),,afpswi1 8371,issf,afrpas2,African Palm-Swift (Comoro),Cypsiurus parvus griveaudi,Caprimulgiformes,Apodidae (Swifts),,afpswi1 8372,issf,afrpas3,African Palm-Swift (Madagascar),Cypsiurus parvus gracilis,Caprimulgiformes,Apodidae (Swifts),,afpswi1 8373,species,anpswi,Antillean Palm-Swift,Tachornis phoenicobia,Caprimulgiformes,Apodidae (Swifts),, 8376,species,pygswi1,Pygmy Swift,Tachornis furcata,Caprimulgiformes,Apodidae (Swifts),, 8379,species,ftpswi1,Fork-tailed Palm-Swift,Tachornis squamata,Caprimulgiformes,Apodidae (Swifts),, 8382,spuh,larswi1,large swift sp.,Apodidae sp. (large swift sp.),Caprimulgiformes,Apodidae (Swifts),, 8383,spuh,smaswi1,small swift sp.,Apodidae sp. (small swift sp.),Caprimulgiformes,Apodidae (Swifts),, 8384,spuh,swift1,swift sp.,Apodidae sp.,Caprimulgiformes,Apodidae (Swifts),, 8385,species,cretre1,Crested Treeswift,Hemiprocne coronata,Caprimulgiformes,Hemiprocnidae (Treeswifts),Treeswifts, 8386,species,gyrtre1,Gray-rumped Treeswift,Hemiprocne longipennis,Caprimulgiformes,Hemiprocnidae (Treeswifts),, 8391,species,whitre1,Whiskered Treeswift,Hemiprocne comata,Caprimulgiformes,Hemiprocnidae (Treeswifts),, 8394,species,moutre1,Moustached Treeswift,Hemiprocne mystacea,Caprimulgiformes,Hemiprocnidae (Treeswifts),, 8395,spuh,treesw1,treeswift sp.,Hemiprocne sp.,Caprimulgiformes,Hemiprocnidae (Treeswifts),, 8396,species,critop1,Crimson Topaz,Topaza pella,Caprimulgiformes,Trochilidae (Hummingbirds),Hummingbirds, 8398,species,fietop1,Fiery Topaz,Topaza pyra,Caprimulgiformes,Trochilidae (Hummingbirds),, 8398.9,slash,y00861,Crimson/Fiery Topaz,Topaza pella/pyra,Caprimulgiformes,Trochilidae (Hummingbirds),, 8400,species,whnjac1,White-necked Jacobin,Florisuga mellivora,Caprimulgiformes,Trochilidae (Hummingbirds),, 8402,species,blkjac1,Black Jacobin,Florisuga fusca,Caprimulgiformes,Trochilidae (Hummingbirds),, 8404,species,whtsic1,White-tipped Sicklebill,Eutoxeres aquila,Caprimulgiformes,Trochilidae (Hummingbirds),, 8406,species,butsic1,Buff-tailed Sicklebill,Eutoxeres condamini,Caprimulgiformes,Trochilidae (Hummingbirds),, 8408,species,sabher1,Saw-billed Hermit,Ramphodon naevius,Caprimulgiformes,Trochilidae (Hummingbirds),, 8410,species,hobher2,Hook-billed Hermit,Glaucis dohrnii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8412,species,broher,Bronzy Hermit,Glaucis aeneus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8414,species,rubher,Rufous-breasted Hermit,Glaucis hirsutus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8416,species,batbar1,Band-tailed Barbthroat,Threnetes ruckeri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8418,species,patbar1,Pale-tailed Barbthroat,Threnetes leucurus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8420,species,soobar1,Sooty Barbthroat,Threnetes niger,Caprimulgiformes,Trochilidae (Hummingbirds),, 8422,species,brther2,Broad-tipped Hermit,Anopetia gounellei,Caprimulgiformes,Trochilidae (Hummingbirds),, 8424,species,whbher1,White-bearded Hermit,Phaethornis hispidus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8426,species,whwher1,White-whiskered Hermit,Phaethornis yaruqui,Caprimulgiformes,Trochilidae (Hummingbirds),, 8428,species,greher1,Green Hermit,Phaethornis guy,Caprimulgiformes,Trochilidae (Hummingbirds),, 8430,species,tabher1,Tawny-bellied Hermit,Phaethornis syrmatophorus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8432,species,koeher1,Koepcke's Hermit,Phaethornis koepckeae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8434,species,nebher1,Needle-billed Hermit,Phaethornis philippii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8436,species,stbher1,Straight-billed Hermit,Phaethornis bourcieri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8436.2,issf,stbher2,Straight-billed Hermit (bourcieri),Phaethornis bourcieri bourcieri,Caprimulgiformes,Trochilidae (Hummingbirds),,stbher1 8436.4,issf,stbher3,Straight-billed Hermit (major),Phaethornis bourcieri major,Caprimulgiformes,Trochilidae (Hummingbirds),,stbher1 8438,species,lobher,Long-billed Hermit,Phaethornis longirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8440,issf,lobher1,Long-billed Hermit (Central American),Phaethornis longirostris [longirostris Group],Caprimulgiformes,Trochilidae (Hummingbirds),,lobher 8442,issf,lobher3,Long-billed Hermit (Baron's),Phaethornis longirostris baroni,Caprimulgiformes,Trochilidae (Hummingbirds),,lobher 8442.2,species,mexher1,Mexican Hermit,Phaethornis mexicanus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8444,issf,lobher4,Mexican Hermit (Jalisco),Phaethornis mexicanus griseoventer,Caprimulgiformes,Trochilidae (Hummingbirds),,mexher1 8446,issf,lobher2,Mexican Hermit (Mexican),Phaethornis mexicanus mexicanus,Caprimulgiformes,Trochilidae (Hummingbirds),,mexher1 8448,species,lother1,Long-tailed Hermit,Phaethornis superciliosus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8450,slash,y00596,Long-tailed/Long-billed Hermit,Phaethornis longirostris/superciliosus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8452,species,grbher1,Great-billed Hermit,Phaethornis malaris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8453,issf,grbher6,Great-billed Hermit (Great-billed),Phaethornis malaris malaris/insolitus,Caprimulgiformes,Trochilidae (Hummingbirds),,grbher1 8454,issf,grbher5,Great-billed Hermit (Amazonian),Phaethornis malaris [moorei Group],Caprimulgiformes,Trochilidae (Hummingbirds),,grbher1 8455,issf,grbher4,Great-billed Hermit (Margaretta's),Phaethornis malaris margarettae,Caprimulgiformes,Trochilidae (Hummingbirds),,grbher1 8456,species,pabher1,Pale-bellied Hermit,Phaethornis anthophilus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8458,species,duther1,Dusky-throated Hermit,Phaethornis squalidus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8459,form,marher1,Maranhao Hermit,Phaethornis maranhaoensis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8460,species,stther1,Streak-throated Hermit,Phaethornis rupurumii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8462,species,lither2,Little Hermit,Phaethornis longuemareus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8464,species,lither3,Tapajos Hermit,Phaethornis aethopygus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8466,species,minher1,Minute Hermit,Phaethornis idaliae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8468,species,cither1,Cinnamon-throated Hermit,Phaethornis nattereri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8470,species,bkther1,Black-throated Hermit,Phaethornis atrimentalis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8472,species,stther2,Stripe-throated Hermit,Phaethornis striigularis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8474,species,gycher1,Gray-chinned Hermit,Phaethornis griseogularis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8474.2,issf,gycher2,Gray-chinned Hermit (Gray-chinned),Phaethornis griseogularis griseogularis/zonura,Caprimulgiformes,Trochilidae (Hummingbirds),,gycher1 8474.4,issf,gycher3,Gray-chinned Hermit (Porculla),Phaethornis griseogularis porcullae,Caprimulgiformes,Trochilidae (Hummingbirds),,gycher1 8476,species,redher1,Reddish Hermit,Phaethornis ruber,Caprimulgiformes,Trochilidae (Hummingbirds),, 8478,species,whbher3,White-browed Hermit,Phaethornis stuarti,Caprimulgiformes,Trochilidae (Hummingbirds),, 8478.1,slash,y00693,Reddish/White-browed Hermit,Phaethornis ruber/stuarti,Caprimulgiformes,Trochilidae (Hummingbirds),, 8480,species,bubher1,Buff-bellied Hermit,Phaethornis subochraceus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8482,species,socher1,Sooty-capped Hermit,Phaethornis augusti,Caprimulgiformes,Trochilidae (Hummingbirds),, 8484,species,plaher1,Planalto Hermit,Phaethornis pretrei,Caprimulgiformes,Trochilidae (Hummingbirds),, 8486,species,scther1,Scale-throated Hermit,Phaethornis eurynome,Caprimulgiformes,Trochilidae (Hummingbirds),, 8488,spuh,hermit1,hermit sp.,Phaethornis sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8490,species,grflan1,Green-fronted Lancebill,Doryfera ludovicae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8492,species,blflan1,Blue-fronted Lancebill,Doryfera johannae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8494,species,webhum2,Wedge-billed Hummingbird,Schistes geoffroyi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8494.2,issf,webhum1,Wedge-billed Hummingbird (Eastern),Schistes geoffroyi geoffroyi/chapmani,Caprimulgiformes,Trochilidae (Hummingbirds),,webhum2 8494.4,issf,webhum3,Wedge-billed Hummingbird (Western),Schistes geoffroyi albogularis,Caprimulgiformes,Trochilidae (Hummingbirds),,webhum2 8496,species,hyavis1,Hyacinth Visorbearer,Augastes scutatus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8498,species,hoovis2,Hooded Visorbearer,Augastes lumachella,Caprimulgiformes,Trochilidae (Hummingbirds),, 8500,species,brvear1,Brown Violetear,Colibri delphinae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8504,species,grnvie1,Mexican Violetear,Colibri thalassinus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8505,species,lesvio1,Lesser Violetear,Colibri cyanotus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8506,issf,grnvie2,Lesser Violetear (Costa Rican),Colibri cyanotus cabanidis,Caprimulgiformes,Trochilidae (Hummingbirds),,lesvio1 8508,issf,grnvio1,Lesser Violetear (Andean),Colibri cyanotus cyanotus/crissalis,Caprimulgiformes,Trochilidae (Hummingbirds),,lesvio1 8510,species,spvear1,Sparkling Violetear,Colibri coruscans,Caprimulgiformes,Trochilidae (Hummingbirds),, 8510.2,slash,y00862,Lesser/Sparkling Violetear,Colibri cyanotus/coruscans,Caprimulgiformes,Trochilidae (Hummingbirds),, 8512,species,wvvear1,White-vented Violetear,Colibri serrirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8512.2,spuh,violet1,violetear sp.,Colibri sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8514,species,tobhum1,Tooth-billed Hummingbird,Androdon aequatorialis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8516,species,horsun2,Horned Sungem,Heliactin bilophus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8518,species,pucfai1,Purple-crowned Fairy,Heliothryx barroti,Caprimulgiformes,Trochilidae (Hummingbirds),, 8520,species,bkefai1,Black-eared Fairy,Heliothryx auritus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8522,species,whtgol1,White-tailed Goldenthroat,Polytmus guainumbi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8525,species,tepgol1,Tepui Goldenthroat,Polytmus milleri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8525.5,species,grtgol1,Green-tailed Goldenthroat,Polytmus theresiae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8528,species,fitawl1,Fiery-tailed Awlbill,Avocettula recurvirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8530,species,ruthum1,Ruby-topaz Hummingbird,Chrysolampis mosquitus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8532,species,grtman1,Green-throated Mango,Anthracothorax viridigula,Caprimulgiformes,Trochilidae (Hummingbirds),, 8534,species,gnbman,Green-breasted Mango,Anthracothorax prevostii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8536,issf,gnbman1,Green-breasted Mango (Green-breasted),Anthracothorax prevostii [prevostii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,gnbman 8538,issf,gnbman2,Green-breasted Mango (Ecuadorian),Anthracothorax prevostii iridescens,Caprimulgiformes,Trochilidae (Hummingbirds),,gnbman 8540,species,bltman1,Black-throated Mango,Anthracothorax nigricollis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8542,species,verman1,Veraguan Mango,Anthracothorax veraguensis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8544,species,antman1,Antillean Mango,Anthracothorax dominicus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8544.2,issf,antman2,Antillean Mango (Hispaniolan),Anthracothorax dominicus dominicus,Caprimulgiformes,Trochilidae (Hummingbirds),,antman1 8544.4,issf,antman3,Antillean Mango (Puerto Rican),Anthracothorax dominicus aurulentus,Caprimulgiformes,Trochilidae (Hummingbirds),,antman1 8546,species,greman1,Green Mango,Anthracothorax viridis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8548,species,jamman1,Jamaican Mango,Anthracothorax mango,Caprimulgiformes,Trochilidae (Hummingbirds),, 8550,spuh,mango1,mango sp.,Anthracothorax sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8552,species,putcar1,Purple-throated Carib,Eulampis jugularis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8554,species,grtcar1,Green-throated Carib,Eulampis holosericeus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8556,species,ortsun1,Orange-throated Sunangel,Heliangelus mavors,Caprimulgiformes,Trochilidae (Hummingbirds),, 8558,species,amtsun1,Amethyst-throated Sunangel,Heliangelus amethysticollis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8560,issf,amtsun2,Amethyst-throated Sunangel (Longuemare's),Heliangelus amethysticollis [clarisse Group],Caprimulgiformes,Trochilidae (Hummingbirds),,amtsun1 8562,issf,amtsun3,Amethyst-throated Sunangel (Amethyst-throated),Heliangelus amethysticollis [amethysticollis Group],Caprimulgiformes,Trochilidae (Hummingbirds),,amtsun1 8564,species,gorsun1,Gorgeted Sunangel,Heliangelus strophianus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8566,species,tousun1,Tourmaline Sunangel,Heliangelus exortis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8568,species,litsun1,Little Sunangel,Heliangelus micraster,Caprimulgiformes,Trochilidae (Hummingbirds),, 8570,species,putsun1,Purple-throated Sunangel,Heliangelus viola,Caprimulgiformes,Trochilidae (Hummingbirds),, 8570.1,issf,putsun4,Purple-throated Sunangel (Purple-throated),Heliangelus viola viola,Caprimulgiformes,Trochilidae (Hummingbirds),,putsun1 8570.2,issf,putsun2,Purple-throated Sunangel (Brilliant),Heliangelus viola splendidus/pyropus,Caprimulgiformes,Trochilidae (Hummingbirds),,putsun1 8572,species,bogsun2,Bogota Sunangel,Heliangelus zusii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8574,species,roysun1,Royal Sunangel,Heliangelus regalis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8576,species,grbfir1,Green-backed Firecrown,Sephanoides sephaniodes,Caprimulgiformes,Trochilidae (Hummingbirds),, 8578,species,juffir1,Juan Fernandez Firecrown,Sephanoides fernandensis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8580,species,wictho2,Wire-crested Thorntail,Discosura popelairii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8582,species,bkbtho1,Black-bellied Thorntail,Discosura langsdorffi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8584,species,coptho2,Coppery Thorntail,Discosura letitiae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8586,species,gretho1,Green Thorntail,Discosura conversii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8588,species,ratcoq2,Racket-tailed Coquette,Discosura longicaudus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8602,species,tufcoq1,Tufted Coquette,Lophornis ornatus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8603,species,doecoq1,Dot-eared Coquette,Lophornis gouldii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8604,species,fricoq1,Frilled Coquette,Lophornis magnificus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8605,species,shccoq,Short-crested Coquette,Lophornis brachylophus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8606,species,ruccoq1,Rufous-crested Coquette,Lophornis delattrei,Caprimulgiformes,Trochilidae (Hummingbirds),, 8609,species,spacoq1,Spangled Coquette,Lophornis stictolophus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8610,species,fescoq1,Festive Coquette,Lophornis chalybeus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8610.2,issf,fescoq2,Festive Coquette (Butterfly),Lophornis chalybeus verreauxii/klagesi,Caprimulgiformes,Trochilidae (Hummingbirds),,fescoq1 8610.4,issf,fescoq3,Festive Coquette (Festive),Lophornis chalybeus chalybeus,Caprimulgiformes,Trochilidae (Hummingbirds),,fescoq1 8614,species,peacoq1,Peacock Coquette,Lophornis pavoninus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8617,species,blccoq1,Black-crested Coquette,Lophornis helenae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8618,species,whccoq1,White-crested Coquette,Lophornis adorabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8619,spuh,y00786,thorntail/coquette sp.,Discosura/Lophornis sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8620,species,ecupie1,Ecuadorian Piedtail,Phlogophilus hemileucurus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8622,species,perpie1,Peruvian Piedtail,Phlogophilus harterti,Caprimulgiformes,Trochilidae (Hummingbirds),, 8624,species,spehum1,Speckled Hummingbird,Adelomyia melanogenys,Caprimulgiformes,Trochilidae (Hummingbirds),, 8624.05,issf,spehum2,Speckled Hummingbird (melanogenys Group),Adelomyia melanogenys [melanogenys Group],Caprimulgiformes,Trochilidae (Hummingbirds),,spehum1 8624.1,issf,spehum3,Speckled Hummingbird (maculata),Adelomyia melanogenys maculata,Caprimulgiformes,Trochilidae (Hummingbirds),,spehum1 8624.15,issf,spehum4,Speckled Hummingbird (inornata),Adelomyia melanogenys inornata,Caprimulgiformes,Trochilidae (Hummingbirds),,spehum1 8624.2,species,samblo1,Santa Marta Blossomcrown,Anthocephala floriceps,Caprimulgiformes,Trochilidae (Hummingbirds),, 8624.4,species,tolblo1,Tolima Blossomcrown,Anthocephala berlepschi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8628,species,lotsyl1,Long-tailed Sylph,Aglaiocercus kingii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8630,species,vitsyl1,Violet-tailed Sylph,Aglaiocercus coelestis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8632,species,vensyl1,Venezuelan Sylph,Aglaiocercus berlepschi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8634,species,retcom1,Red-tailed Comet,Sappho sparganurus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8636,species,brtcom1,Bronze-tailed Comet,Polyonymus caroli,Caprimulgiformes,Trochilidae (Hummingbirds),, 8638,species,gybcom1,Gray-bellied Comet,Taphrolesbia griseiventris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8640,species,ecuhil1,Ecuadorian Hillstar,Oreotrochilus chimborazo,Caprimulgiformes,Trochilidae (Hummingbirds),, 8642,species,andhil1,Andean Hillstar,Oreotrochilus estella,Caprimulgiformes,Trochilidae (Hummingbirds),, 8644,issf,andhil2,Andean Hillstar (Green-headed),Oreotrochilus estella stolzmanni,Caprimulgiformes,Trochilidae (Hummingbirds),,andhil1 8646,issf,andhil3,Andean Hillstar (Andean),Oreotrochilus estella estella/bolivianus,Caprimulgiformes,Trochilidae (Hummingbirds),,andhil1 8648,species,whshil1,White-sided Hillstar,Oreotrochilus leucopleurus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8650,species,blbhil1,Black-breasted Hillstar,Oreotrochilus melanogaster,Caprimulgiformes,Trochilidae (Hummingbirds),, 8652,species,wethil1,Wedge-tailed Hillstar,Oreotrochilus adela,Caprimulgiformes,Trochilidae (Hummingbirds),, 8653,spuh,oreotr1,Oreotrochilus sp.,Oreotrochilus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8654,species,mouavo1,Mountain Avocetbill,Opisthoprora euryptera,Caprimulgiformes,Trochilidae (Hummingbirds),, 8656,species,blttra1,Black-tailed Trainbearer,Lesbia victoriae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8658,species,grttra1,Green-tailed Trainbearer,Lesbia nuna,Caprimulgiformes,Trochilidae (Hummingbirds),, 8658.5,slash,y00684,Black-tailed/Green-tailed Trainbearer,Lesbia victoriae/nuna,Caprimulgiformes,Trochilidae (Hummingbirds),, 8660,species,blbtho1,Black-backed Thornbill,Ramphomicron dorsale,Caprimulgiformes,Trochilidae (Hummingbirds),, 8662,species,pubtho1,Purple-backed Thornbill,Ramphomicron microrhynchum,Caprimulgiformes,Trochilidae (Hummingbirds),, 8664,species,ructho1,Rufous-capped Thornbill,Chalcostigma ruficeps,Caprimulgiformes,Trochilidae (Hummingbirds),, 8666,species,olitho1,Olivaceous Thornbill,Chalcostigma olivaceum,Caprimulgiformes,Trochilidae (Hummingbirds),, 8668,species,blmtho1,Blue-mantled Thornbill,Chalcostigma stanleyi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8670,species,brttho1,Bronze-tailed Thornbill,Chalcostigma heteropogon,Caprimulgiformes,Trochilidae (Hummingbirds),, 8672,species,rabtho1,Rainbow-bearded Thornbill,Chalcostigma herrani,Caprimulgiformes,Trochilidae (Hummingbirds),, 8674.3,species,bufhel1,Buffy Helmetcrest,Oxypogon stubelii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8674.6,species,bubhel1,Blue-bearded Helmetcrest,Oxypogon cyanolaemus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8675,species,whbhel1,White-bearded Helmetcrest,Oxypogon lindenii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8675.5,species,gnbhel1,Green-bearded Helmetcrest,Oxypogon guerinii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8675.7,spuh,beahel1,helmetcrest sp.,Oxypogon sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8676,species,beamou1,Bearded Mountaineer,Oreonympha nobilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8676.2,issf,beamou2,Bearded Mountaineer (Western),Oreonympha nobilis albolimbata,Caprimulgiformes,Trochilidae (Hummingbirds),,beamou1 8676.4,issf,beamou3,Bearded Mountaineer (Eastern),Oreonympha nobilis nobilis,Caprimulgiformes,Trochilidae (Hummingbirds),,beamou1 8678,species,permet1,Perija Metaltail,Metallura iracunda,Caprimulgiformes,Trochilidae (Hummingbirds),, 8680,species,tyrmet1,Tyrian Metaltail,Metallura tyrianthina,Caprimulgiformes,Trochilidae (Hummingbirds),, 8681.1,issf,tyrmet2,Tyrian Metaltail (Santa Marta),Metallura tyrianthina districta,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 8681.2,issf,tyrmet3,Tyrian Metaltail (Costa),Metallura tyrianthina chloropogon,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 8681.3,issf,tyrmet4,Tyrian Metaltail (Merida),Metallura tyrianthina oreopola,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 8681.4,issf,tyrmet5,Tyrian Metaltail (Tyrian),Metallura tyrianthina tyrianthina/quitensis,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 8681.8,issf,tyrmet6,Tyrian Metaltail (septentrionalis),Metallura tyrianthina septentrionalis,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 8681.9,issf,tyrmet7,Tyrian Metaltail (smaragdinicollis),Metallura tyrianthina smaragdinicollis,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 8682,species,virmet1,Viridian Metaltail,Metallura williami,Caprimulgiformes,Trochilidae (Hummingbirds),, 8683.2,issf,virmet2,Viridian Metaltail (recisa),Metallura williami recisa,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 8683.4,issf,virmet3,Viridian Metaltail (Viridian),Metallura williami williami,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 8683.6,issf,virmet4,Viridian Metaltail (Ecuadorian),Metallura williami primolina,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 8683.8,issf,virmet5,Viridian Metaltail (Black-throated),Metallura williami atrigularis,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 8684,species,vitmet1,Violet-throated Metaltail,Metallura baroni,Caprimulgiformes,Trochilidae (Hummingbirds),, 8686,species,nebmet1,Neblina Metaltail,Metallura odomae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8688,species,copmet1,Coppery Metaltail,Metallura theresiae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8690,species,fitmet1,Fire-throated Metaltail,Metallura eupogon,Caprimulgiformes,Trochilidae (Hummingbirds),, 8692,species,scamet1,Scaled Metaltail,Metallura aeneocauda,Caprimulgiformes,Trochilidae (Hummingbirds),, 8694,species,blamet1,Black Metaltail,Metallura phoebe,Caprimulgiformes,Trochilidae (Hummingbirds),, 8695,spuh,metalt1,metaltail sp.,Metallura sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8696,species,grepuf1,Greenish Puffleg,Haplophaedia aureliae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8698,species,butpuf1,Buff-thighed Puffleg,Haplophaedia assimilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8700,species,hoapuf1,Hoary Puffleg,Haplophaedia lugens,Caprimulgiformes,Trochilidae (Hummingbirds),, 8702,species,blbpuf3,Black-breasted Puffleg,Eriocnemis nigrivestis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8704,species,gorpuf1,Gorgeted Puffleg,Eriocnemis isabellae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8706,species,glopuf2,Glowing Puffleg,Eriocnemis vestita,Caprimulgiformes,Trochilidae (Hummingbirds),, 8708,species,bltpuf1,Black-thighed Puffleg,Eriocnemis derbyi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8710,species,tutpuf1,Turquoise-throated Puffleg,Eriocnemis godini,Caprimulgiformes,Trochilidae (Hummingbirds),, 8712,species,cobpuf1,Coppery-bellied Puffleg,Eriocnemis cupreoventris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8714,species,savpuf1,Sapphire-vented Puffleg,Eriocnemis luciani,Caprimulgiformes,Trochilidae (Hummingbirds),, 8716,issf,savpuf2,Sapphire-vented Puffleg (Sapphire-vented),Eriocnemis luciani [luciani Group],Caprimulgiformes,Trochilidae (Hummingbirds),,savpuf1 8718,issf,savpuf3,Sapphire-vented Puffleg (Coppery-naped),Eriocnemis luciani sapphiropygia/catharina,Caprimulgiformes,Trochilidae (Hummingbirds),,savpuf1 8720,species,gobpuf1,Golden-breasted Puffleg,Eriocnemis mosquera,Caprimulgiformes,Trochilidae (Hummingbirds),, 8722,species,blcpuf1,Blue-capped Puffleg,Eriocnemis glaucopoides,Caprimulgiformes,Trochilidae (Hummingbirds),, 8724,species,colpuf2,Colorful Puffleg,Eriocnemis mirabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8726,species,embpuf1,Emerald-bellied Puffleg,Eriocnemis aline,Caprimulgiformes,Trochilidae (Hummingbirds),, 8728,species,marspa1,Marvelous Spatuletail,Loddigesia mirabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8730,species,shisun1,Shining Sunbeam,Aglaeactis cupripennis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8732,species,whtsun1,White-tufted Sunbeam,Aglaeactis castelnaudii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8733.5,hybrid,x00672,Shining x White-tufted Sunbeam (hybrid),Aglaeactis cupripennis x castelnaudii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8734,species,pubsun1,Purple-backed Sunbeam,Aglaeactis aliciae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8736,species,blhsun1,Black-hooded Sunbeam,Aglaeactis pamela,Caprimulgiformes,Trochilidae (Hummingbirds),, 8738,species,broinc1,Bronzy Inca,Coeligena coeligena,Caprimulgiformes,Trochilidae (Hummingbirds),, 8740,species,broinc2,Brown Inca,Coeligena wilsoni,Caprimulgiformes,Trochilidae (Hummingbirds),, 8742,species,blainc1,Black Inca,Coeligena prunellei,Caprimulgiformes,Trochilidae (Hummingbirds),, 8744,species,colinc1,Collared Inca,Coeligena torquata,Caprimulgiformes,Trochilidae (Hummingbirds),, 8746,issf,colinc2,Collared Inca (Collared),Coeligena torquata [torquata Group],Caprimulgiformes,Trochilidae (Hummingbirds),,colinc1 8748,issf,colinc3,Collared Inca (Gould's),Coeligena torquata inca/omissa,Caprimulgiformes,Trochilidae (Hummingbirds),,colinc1 8750,species,vitsta1,Violet-throated Starfrontlet,Coeligena violifer,Caprimulgiformes,Trochilidae (Hummingbirds),, 8750.2,issf,vitsta2,Violet-throated Starfrontlet (Huanuco),Coeligena violifer dichroura,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 8750.4,issf,vitsta3,Violet-throated Starfrontlet (Apurimac),Coeligena violifer albicaudata,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 8750.6,issf,vitsta4,Violet-throated Starfrontlet (Cuzco),Coeligena violifer osculans,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 8750.8,issf,vitsta5,Violet-throated Starfrontlet (Bolivian),Coeligena violifer violifer,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 8757,species,raista1,Rainbow Starfrontlet,Coeligena iris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8764.4,species,whtsta1,White-tailed Starfrontlet,Coeligena phalerata,Caprimulgiformes,Trochilidae (Hummingbirds),, 8764.8,species,dussta1,Dusky Starfrontlet,Coeligena orina,Caprimulgiformes,Trochilidae (Hummingbirds),, 8765,species,buwsta1,Buff-winged Starfrontlet,Coeligena lutetiae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8765.4,species,gobsta1,Golden-bellied Starfrontlet,Coeligena bonapartei,Caprimulgiformes,Trochilidae (Hummingbirds),, 8766.3,issf,gobsta2,Golden-bellied Starfrontlet (Perija),Coeligena bonapartei consita,Caprimulgiformes,Trochilidae (Hummingbirds),,gobsta1 8766.4,issf,gobsta6,Golden-bellied Starfrontlet (Golden-bellied),Coeligena bonapartei bonapartei,Caprimulgiformes,Trochilidae (Hummingbirds),,gobsta1 8766.6,issf,gobsta4,Golden-bellied Starfrontlet (Golden-tailed),Coeligena bonapartei eos,Caprimulgiformes,Trochilidae (Hummingbirds),,gobsta1 8766.8,species,bltsta1,Blue-throated Starfrontlet,Coeligena helianthea,Caprimulgiformes,Trochilidae (Hummingbirds),, 8768,species,mouvel1,Mountain Velvetbreast,Lafresnaya lafresnayi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8770,species,swbhum1,Sword-billed Hummingbird,Ensifera ensifera,Caprimulgiformes,Trochilidae (Hummingbirds),, 8772,species,gresap1,Great Sapphirewing,Pterophanes cyanopterus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8774,species,butcor1,Buff-tailed Coronet,Boissonneaua flavescens,Caprimulgiformes,Trochilidae (Hummingbirds),, 8776,species,chbcor1,Chestnut-breasted Coronet,Boissonneaua matthewsii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8778,species,vepcor1,Velvet-purple Coronet,Boissonneaua jardini,Caprimulgiformes,Trochilidae (Hummingbirds),, 8780,species,bortai1,Booted Racket-tail,Ocreatus underwoodii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8780.2,issf,boorat1,Booted Racket-tail (White-booted),Ocreatus underwoodii [underwoodii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 8780.4,issf,boorat2,Booted Racket-tail (Peruvian),Ocreatus underwoodii peruanus,Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 8780.6,issf,boorat3,Booted Racket-tail (Anna's),Ocreatus underwoodii annae,Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 8780.8,issf,boorat4,Booted Racket-tail (Adda's),Ocreatus underwoodii addae,Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 8782,species,whthil1,White-tailed Hillstar,Urochroa bougueri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8782.2,issf,whthil2,White-tailed Hillstar (Rufous-gaped),Urochroa bougueri bougueri,Caprimulgiformes,Trochilidae (Hummingbirds),,whthil1 8782.4,issf,whthil3,White-tailed Hillstar (White-tailed),Urochroa bougueri leucura,Caprimulgiformes,Trochilidae (Hummingbirds),,whthil1 8784,species,pubwhi1,Purple-bibbed Whitetip,Urosticte benjamini,Caprimulgiformes,Trochilidae (Hummingbirds),, 8786,species,ruvwhi1,Rufous-vented Whitetip,Urosticte ruficrissa,Caprimulgiformes,Trochilidae (Hummingbirds),, 8788,species,vebbri1,Velvet-browed Brilliant,Heliodoxa xanthogonys,Caprimulgiformes,Trochilidae (Hummingbirds),, 8790,species,pitbri1,Pink-throated Brilliant,Heliodoxa gularis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8792,species,ruwbri1,Rufous-webbed Brilliant,Heliodoxa branickii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8794,species,bltbri1,Black-throated Brilliant,Heliodoxa schreibersii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8794.2,issf,bktbri1,Black-throated Brilliant (Black-throated),Heliodoxa schreibersii schreibersii,Caprimulgiformes,Trochilidae (Hummingbirds),,bltbri1 8794.4,issf,bktbri2,Black-throated Brilliant (Black-breasted),Heliodoxa schreibersii whitelyana,Caprimulgiformes,Trochilidae (Hummingbirds),,bltbri1 8796,species,goujew1,Gould's Jewelfront,Heliodoxa aurescens,Caprimulgiformes,Trochilidae (Hummingbirds),, 8798,species,fabbri1,Fawn-breasted Brilliant,Heliodoxa rubinoides,Caprimulgiformes,Trochilidae (Hummingbirds),, 8800,species,grcbri1,Green-crowned Brilliant,Heliodoxa jacula,Caprimulgiformes,Trochilidae (Hummingbirds),, 8802,species,empbri1,Empress Brilliant,Heliodoxa imperatrix,Caprimulgiformes,Trochilidae (Hummingbirds),, 8804,species,vifbri1,Violet-fronted Brilliant,Heliodoxa leadbeateri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8806,species,brarub1,Brazilian Ruby,Clytolaema rubricauda,Caprimulgiformes,Trochilidae (Hummingbirds),, 8808,species,giahum1,Giant Hummingbird,Patagona gigas,Caprimulgiformes,Trochilidae (Hummingbirds),, 8810,species,vichum2,Violet-chested Hummingbird,Sternoclyta cyanopectus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8812,species,scthum1,Scissor-tailed Hummingbird,Hylonympha macrocerca,Caprimulgiformes,Trochilidae (Hummingbirds),, 8816,species,maghum1,Rivoli's Hummingbird,Eugenes fulgens,Caprimulgiformes,Trochilidae (Hummingbirds),, 8818,species,maghum2,Talamanca Hummingbird,Eugenes spectabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8820,species,lobsta1,Long-billed Starthroat,Heliomaster longirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8822,species,plcsta,Plain-capped Starthroat,Heliomaster constantii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8822.2,slash,y00863,Long-billed/Plain-capped Starthroat,Heliomaster longirostris/constantii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8824,species,stbsta1,Stripe-breasted Starthroat,Heliomaster squamosus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8826,species,bltsta2,Blue-tufted Starthroat,Heliomaster furcifer,Caprimulgiformes,Trochilidae (Hummingbirds),, 8828,species,fithum1,Fiery-throated Hummingbird,Panterpe insignis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8830,species,gtmgem1,Green-throated Mountain-gem,Lampornis viridipallens,Caprimulgiformes,Trochilidae (Hummingbirds),, 8832,species,gbmgem1,Green-breasted Mountain-gem,Lampornis sybillae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8834,species,amthum1,Amethyst-throated Hummingbird,Lampornis amethystinus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8836,issf,amthum2,Amethyst-throated Hummingbird (Amethyst-throated),Lampornis amethystinus [amethystinus Group],Caprimulgiformes,Trochilidae (Hummingbirds),,amthum1 8838,issf,amthum3,Amethyst-throated Hummingbird (Violet-throated),Lampornis amethystinus margaritae,Caprimulgiformes,Trochilidae (Hummingbirds),,amthum1 8840,species,buthum,Blue-throated Hummingbird,Lampornis clemenciae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8842,species,wbmgem1,White-bellied Mountain-gem,Lampornis hemileucus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8844,species,ptmgem,Purple-throated Mountain-gem,Lampornis calolaemus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8846,species,wtmgem1,White-throated Mountain-gem,Lampornis castaneoventris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8848,issf,whtmog1,White-throated Mountain-gem (Blue-tailed),Lampornis castaneoventris castaneoventris,Caprimulgiformes,Trochilidae (Hummingbirds),,wtmgem1 8850,issf,whtmog2,White-throated Mountain-gem (Gray-tailed),Lampornis castaneoventris cinereicauda,Caprimulgiformes,Trochilidae (Hummingbirds),,wtmgem1 8850.2,slash,y00864,Purple-throated/White-throated Mountain-gem,Lampornis calolaemus/castaneoventris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8852,species,gathum1,Garnet-throated Hummingbird,Lamprolaima rhami,Caprimulgiformes,Trochilidae (Hummingbirds),, 8854,species,pucwoo1,Purple-collared Woodstar,Myrtis fanny,Caprimulgiformes,Trochilidae (Hummingbirds),, 8856,species,chiwoo1,Chilean Woodstar,Eulidia yarrellii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8858,species,oashum1,Oasis Hummingbird,Rhodopis vesper,Caprimulgiformes,Trochilidae (Hummingbirds),, 8860,species,pershe2,Peruvian Sheartail,Thaumastura cora,Caprimulgiformes,Trochilidae (Hummingbirds),, 8861,hybrid,x00736,Chilean Woodstar x Peruvian Sheartail (hybrid),Eulidia yarrellii x Thaumastura cora,Caprimulgiformes,Trochilidae (Hummingbirds),, 8862,species,whbwoo6,White-bellied Woodstar,Chaetocercus mulsant,Caprimulgiformes,Trochilidae (Hummingbirds),, 8864,species,litwoo5,Little Woodstar,Chaetocercus bombus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8866,species,gorwoo2,Gorgeted Woodstar,Chaetocercus heliodor,Caprimulgiformes,Trochilidae (Hummingbirds),, 8868,species,samwoo2,Santa Marta Woodstar,Chaetocercus astreans,Caprimulgiformes,Trochilidae (Hummingbirds),, 8870,species,esmwoo2,Esmeraldas Woodstar,Chaetocercus berlepschi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8872,species,ruswoo1,Rufous-shafted Woodstar,Chaetocercus jourdanii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8873.6,spuh,chaeto1,Chaetocercus sp.,Chaetocercus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8874,species,shtwoo1,Short-tailed Woodstar,Myrmia micrura,Caprimulgiformes,Trochilidae (Hummingbirds),, 8876,species,sltwoo1,Slender-tailed Woodstar,Microstilbon burmeisteri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8878,species,sleshe1,Slender Sheartail,Doricha enicura,Caprimulgiformes,Trochilidae (Hummingbirds),, 8880,species,mexshe1,Mexican Sheartail,Doricha eliza,Caprimulgiformes,Trochilidae (Hummingbirds),, 8882,species,spthum1,Sparkling-tailed Hummingbird,Tilmatura dupontii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8884,species,luchum,Lucifer Hummingbird,Calothorax lucifer,Caprimulgiformes,Trochilidae (Hummingbirds),, 8886,species,beahum1,Beautiful Hummingbird,Calothorax pulcher,Caprimulgiformes,Trochilidae (Hummingbirds),, 8886.2,slash,y01030,Lucifer/Beautiful Hummingbird,Calothorax lucifer/pulcher,Caprimulgiformes,Trochilidae (Hummingbirds),, 8888,species,bahwoo,Bahama Woodstar,Calliphlox evelynae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8888.2,species,inawoo2,Inagua Woodstar,Calliphlox lyrura,Caprimulgiformes,Trochilidae (Hummingbirds),, 8890,species,matwoo1,Magenta-throated Woodstar,Calliphlox bryantae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8892,species,putwoo1,Purple-throated Woodstar,Calliphlox mitchellii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8894,species,amewoo1,Amethyst Woodstar,Calliphlox amethystina,Caprimulgiformes,Trochilidae (Hummingbirds),, 8895,spuh,woodst1,woodstar sp.,Trochilidae sp. (woodstar sp.),Caprimulgiformes,Trochilidae (Hummingbirds),, 8896,species,rthhum,Ruby-throated Hummingbird,Archilochus colubris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8898,species,bkchum,Black-chinned Hummingbird,Archilochus alexandri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8899,hybrid,x00850,Ruby-throated x Black-chinned Hummingbird (hybrid),Archilochus colubris x alexandri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8900,slash,archil1,Ruby-throated/Black-chinned Hummingbird,Archilochus colubris/alexandri,Caprimulgiformes,Trochilidae (Hummingbirds),, 8902,species,verhum1,Vervain Hummingbird,Mellisuga minima,Caprimulgiformes,Trochilidae (Hummingbirds),, 8904,species,beehum1,Bee Hummingbird,Mellisuga helenae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8906,species,annhum,Anna's Hummingbird,Calypte anna,Caprimulgiformes,Trochilidae (Hummingbirds),, 8906.3,hybrid,x00690,Lucifer x Anna's Hummingbird (hybrid),Calothorax lucifer x Calypte anna,Caprimulgiformes,Trochilidae (Hummingbirds),, 8906.5,hybrid,x00651,Black-chinned x Anna's Hummingbird (hybrid),Archilochus alexandri x Calypte anna,Caprimulgiformes,Trochilidae (Hummingbirds),, 8914,species,coshum,Costa's Hummingbird,Calypte costae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8914.5,hybrid,x00737,Lucifer x Costa's Hummingbird (hybrid),Calothorax lucifer x Calypte costae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8915,hybrid,x00618,Anna's x Costa's Hummingbird (hybrid),Calypte anna x costae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8916,slash,calypt,Anna's/Costa's Hummingbird,Calypte anna/costae,Caprimulgiformes,Trochilidae (Hummingbirds),, 8918,species,bumhum,Bumblebee Hummingbird,Atthis heloisa,Caprimulgiformes,Trochilidae (Hummingbirds),, 8920,species,withum1,Wine-throated Hummingbird,Atthis ellioti,Caprimulgiformes,Trochilidae (Hummingbirds),, 8922,species,brthum,Broad-tailed Hummingbird,Selasphorus platycercus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8924,species,rufhum,Rufous Hummingbird,Selasphorus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8924.3,hybrid,x00738,Black-chinned x Rufous Hummingbird (hybrid),Archilochus alexandri x Selasphorus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8924.5,hybrid,x00626,Anna's x Rufous Hummingbird (hybrid),Calypte anna x Selasphorus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8926,species,allhum,Allen's Hummingbird,Selasphorus sasin,Caprimulgiformes,Trochilidae (Hummingbirds),, 8931,hybrid,x00691,Anna's x Allen's Hummingbird (hybrid),Calypte anna x Selasphorus sasin,Caprimulgiformes,Trochilidae (Hummingbirds),, 8932,slash,y00001,Rufous/Allen's Hummingbird,Selasphorus rufus/sasin,Caprimulgiformes,Trochilidae (Hummingbirds),, 8934,species,volhum1,Volcano Hummingbird,Selasphorus flammula,Caprimulgiformes,Trochilidae (Hummingbirds),, 8936,issf,volhum2,Volcano Hummingbird (Purple-throated),Selasphorus flammula flammula,Caprimulgiformes,Trochilidae (Hummingbirds),,volhum1 8938,issf,volhum4,Volcano Hummingbird (Heliotrope-throated),Selasphorus flammula torridus,Caprimulgiformes,Trochilidae (Hummingbirds),,volhum1 8940,issf,volhum3,Volcano Hummingbird (Rose-throated),Selasphorus flammula simoni,Caprimulgiformes,Trochilidae (Hummingbirds),,volhum1 8942,species,glthum1,Glow-throated Hummingbird,Selasphorus ardens,Caprimulgiformes,Trochilidae (Hummingbirds),, 8944,species,scihum1,Scintillant Hummingbird,Selasphorus scintilla,Caprimulgiformes,Trochilidae (Hummingbirds),, 8946,species,calhum,Calliope Hummingbird,Selasphorus calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, 8946.3,hybrid,x00768,Black-chinned x Calliope Hummingbird (hybrid),Archilochus alexandri x Selasphorus calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, 8946.5,hybrid,x00619,Anna's x Calliope Hummingbird (hybrid),Calypte anna x Selasphorus calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, 8947,hybrid,x00851,Broad-tailed x Calliope Hummingbird (hybrid),Selasphorus platycercus x calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, 8947.5,hybrid,x00852,Rufous x Calliope Hummingbird (hybrid),Selasphorus rufus x calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, 8948,spuh,selasp,Selasphorus sp.,Selasphorus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8949,hybrid,x00739,Anna's Hummingbird x Selasphorus sp. (hybrid),Calypte anna x Selasphorus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8950,species,weseme1,Western Emerald,Chlorostilbon melanorhynchus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8952,species,rebeme1,Red-billed Emerald,Chlorostilbon gibsoni,Caprimulgiformes,Trochilidae (Hummingbirds),, 8954,species,blteme1,Blue-tailed Emerald,Chlorostilbon mellisugus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8956,species,goceme1,Golden-crowned Emerald,Chlorostilbon auriceps,Caprimulgiformes,Trochilidae (Hummingbirds),, 8958,species,cozeme1,Cozumel Emerald,Chlorostilbon forficatus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8960,species,caneme1,Canivet's Emerald,Chlorostilbon canivetii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8962,issf,caneme2,Canivet's Emerald (Canivet's),Chlorostilbon canivetii canivetii,Caprimulgiformes,Trochilidae (Hummingbirds),,caneme1 8964,issf,caneme3,Canivet's Emerald (Salvin's),Chlorostilbon canivetii salvini/osberti,Caprimulgiformes,Trochilidae (Hummingbirds),,caneme1 8966,species,gareme1,Garden Emerald,Chlorostilbon assimilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 8968,species,chieme1,Chiribiquete Emerald,Chlorostilbon olivaresi,Caprimulgiformes,Trochilidae (Hummingbirds),, 8970,species,cubeme1,Cuban Emerald,Chlorostilbon ricordii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8972,species,braeme1,Brace's Emerald,Chlorostilbon bracei,Caprimulgiformes,Trochilidae (Hummingbirds),, 8972.2,issf,braeme2,Brace's Emerald (Brace's),Chlorostilbon bracei bracei,Caprimulgiformes,Trochilidae (Hummingbirds),,braeme1 8972.4,issf,braeme3,Brace's Emerald (Caribbean),Chlorostilbon bracei elegans,Caprimulgiformes,Trochilidae (Hummingbirds),,braeme1 8974,species,hiseme1,Hispaniolan Emerald,Chlorostilbon swainsonii,Caprimulgiformes,Trochilidae (Hummingbirds),, 8976,species,pureme1,Puerto Rican Emerald,Chlorostilbon maugaeus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8978,species,glbeme1,Glittering-bellied Emerald,Chlorostilbon lucidus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8980,species,copeme1,Coppery Emerald,Chlorostilbon russatus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8982,species,nateme2,Narrow-tailed Emerald,Chlorostilbon stenurus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8984,species,grteme1,Green-tailed Emerald,Chlorostilbon alice,Caprimulgiformes,Trochilidae (Hummingbirds),, 8986,species,shteme1,Short-tailed Emerald,Chlorostilbon poortmani,Caprimulgiformes,Trochilidae (Hummingbirds),, 8986.2,spuh,chloro2,Chlorostilbon sp.,Chlorostilbon sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 8988,species,bucsap1,Blue-chinned Sapphire,Chlorestes notata,Caprimulgiformes,Trochilidae (Hummingbirds),, 8990,species,dushum1,Dusky Hummingbird,Cynanthus sordidus,Caprimulgiformes,Trochilidae (Hummingbirds),, 8992,species,brbhum,Broad-billed Hummingbird,Cynanthus latirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, 8994,issf,brbhum1,Broad-billed Hummingbird (Northern),Cynanthus latirostris [latirostris Group],Caprimulgiformes,Trochilidae (Hummingbirds),,brbhum 8996,issf,brbhum2,Broad-billed Hummingbird (Doubleday's),Cynanthus latirostris doubledayi,Caprimulgiformes,Trochilidae (Hummingbirds),,brbhum 8998,issf,brbhum3,Broad-billed Hummingbird (Tres Marias Is.),Cynanthus latirostris lawrencei,Caprimulgiformes,Trochilidae (Hummingbirds),,brbhum 8999,hybrid,x00676,Black-chinned x Broad-billed Hummingbird (hybrid),Archilochus alexandri x Cynanthus latirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, 9002,species,blhhum1,Blue-headed Hummingbird,Cyanophaia bicolor,Caprimulgiformes,Trochilidae (Hummingbirds),, 9004,species,anchum1,Antillean Crested Hummingbird,Orthorhyncus cristatus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9006,issf,anchum2,Antillean Crested Hummingbird (Lesser Antilles),Orthorhyncus cristatus exilis,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 9008,issf,anchum3,Antillean Crested Hummingbird (St. Vincent),Orthorhyncus cristatus ornatus,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 9010,issf,anchum4,Antillean Crested Hummingbird (Barbados),Orthorhyncus cristatus cristatus,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 9012,issf,anchum5,Antillean Crested Hummingbird (Grenadines and Grenada),Orthorhyncus cristatus emigrans,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 9014,species,vihhum1,Violet-headed Hummingbird,Klais guimeti,Caprimulgiformes,Trochilidae (Hummingbirds),, 9016,species,emchum1,Emerald-chinned Hummingbird,Abeillia abeillei,Caprimulgiformes,Trochilidae (Hummingbirds),, 9018.4,species,plover3,Green-crowned Plovercrest,Stephanoxis lalandi,Caprimulgiformes,Trochilidae (Hummingbirds),, 9019,species,plover4,Purple-crowned Plovercrest,Stephanoxis loddigesii,Caprimulgiformes,Trochilidae (Hummingbirds),, 9020,species,scbhum1,Scaly-breasted Hummingbird,Phaeochroa cuvierii,Caprimulgiformes,Trochilidae (Hummingbirds),, 9022,issf,scbhum2,Scaly-breasted Hummingbird (Robert's),Phaeochroa cuvierii roberti,Caprimulgiformes,Trochilidae (Hummingbirds),,scbhum1 9024,issf,scbhum3,Scaly-breasted Hummingbird (Cuvier's),Phaeochroa cuvierii [cuvierii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,scbhum1 9026,species,wetsab1,Wedge-tailed Sabrewing,Campylopterus curvipennis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9028,issf,wetsab2,Wedge-tailed Sabrewing (Curve-winged),Campylopterus curvipennis curvipennis,Caprimulgiformes,Trochilidae (Hummingbirds),,wetsab1 9030,issf,wetsab3,Wedge-tailed Sabrewing (Wedge-tailed),Campylopterus curvipennis pampa,Caprimulgiformes,Trochilidae (Hummingbirds),,wetsab1 9032,species,lotsab1,Long-tailed Sabrewing,Campylopterus excellens,Caprimulgiformes,Trochilidae (Hummingbirds),, 9034,species,gybsab1,Gray-breasted Sabrewing,Campylopterus largipennis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9034.2,issf,gybsab2,Gray-breasted Sabrewing (largipennis),Campylopterus largipennis largipennis,Caprimulgiformes,Trochilidae (Hummingbirds),,gybsab1 9034.4,issf,gybsab3,Gray-breasted Sabrewing (obscurus),Campylopterus largipennis obscurus,Caprimulgiformes,Trochilidae (Hummingbirds),,gybsab1 9034.6,issf,gybsab4,Gray-breasted Sabrewing (Dry Forest),Campylopterus largipennis calcirupicola,Caprimulgiformes,Trochilidae (Hummingbirds),,gybsab1 9034.8,issf,gybsab5,Gray-breasted Sabrewing (diamantinensis),Campylopterus largipennis diamantinensis,Caprimulgiformes,Trochilidae (Hummingbirds),,gybsab1 9036,species,rufsab1,Rufous Sabrewing,Campylopterus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9038,species,viosab1,Violet Sabrewing,Campylopterus hemileucurus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9040,species,rubsab1,Rufous-breasted Sabrewing,Campylopterus hyperythrus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9042,species,whtsab1,White-tailed Sabrewing,Campylopterus ensipennis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9044,species,lazsab1,Lazuline Sabrewing,Campylopterus falcatus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9046,species,samsab1,Santa Marta Sabrewing,Campylopterus phainopeplus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9048,species,napsab1,Napo Sabrewing,Campylopterus villaviscensio,Caprimulgiformes,Trochilidae (Hummingbirds),, 9050,species,bubsab1,Buff-breasted Sabrewing,Campylopterus duidae,Caprimulgiformes,Trochilidae (Hummingbirds),, 9052,species,swthum1,Swallow-tailed Hummingbird,Eupetomena macroura,Caprimulgiformes,Trochilidae (Hummingbirds),, 9054,species,whvplu1,White-vented Plumeleteer,Chalybura buffonii,Caprimulgiformes,Trochilidae (Hummingbirds),, 9056,issf,whvplu2,White-vented Plumeleteer (White-vented),Chalybura buffonii [buffonii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,whvplu1 9058,issf,whvplu3,White-vented Plumeleteer (Blue-bellied),Chalybura buffonii caeruleogaster,Caprimulgiformes,Trochilidae (Hummingbirds),,whvplu1 9060,issf,whvplu4,White-vented Plumeleteer (Ecuadorian),Chalybura buffonii intermedia,Caprimulgiformes,Trochilidae (Hummingbirds),,whvplu1 9062,species,brtplu1,Bronze-tailed Plumeleteer,Chalybura urochrysia,Caprimulgiformes,Trochilidae (Hummingbirds),, 9064,species,mexwoo1,Mexican Woodnymph,Thalurania ridgwayi,Caprimulgiformes,Trochilidae (Hummingbirds),, 9065,species,crowoo1,Crowned Woodnymph,Thalurania colombica,Caprimulgiformes,Trochilidae (Hummingbirds),, 9066,form,vicwoo1,Crowned Woodnymph (Violet-crowned Woodnymph),Thalurania colombica (Violet-crowned Woodnymph),Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 9068,issf,vicwoo3,Crowned Woodnymph (Northern Violet-crowned),Thalurania colombica venusta/townsendi,Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 9070,issf,vicwoo4,Crowned Woodnymph (Colombian Violet-crowned),Thalurania colombica colombica/rostrifera,Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 9072,form,grcwoo2,Crowned Woodnymph (Green-crowned Woodnymph),Thalurania colombica (Green-crowned Woodnymph),Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 9074,issf,gncwoo1,Crowned Woodnymph (Northern Green-crowned),Thalurania colombica [fannyae Group],Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 9076,issf,gncwoo2,Crowned Woodnymph (Emerald-bellied),Thalurania colombica hypochlora,Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 9078,species,fotwoo1,Fork-tailed Woodnymph,Thalurania furcata,Caprimulgiformes,Trochilidae (Hummingbirds),, 9080,species,lotwoo2,Long-tailed Woodnymph,Thalurania watertonii,Caprimulgiformes,Trochilidae (Hummingbirds),, 9082,species,vicwoo2,Violet-capped Woodnymph,Thalurania glaucopis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9084,species,stthum1,Stripe-tailed Hummingbird,Eupherusa eximia,Caprimulgiformes,Trochilidae (Hummingbirds),, 9086,species,blchum2,Blue-capped Hummingbird,Eupherusa cyanophrys,Caprimulgiformes,Trochilidae (Hummingbirds),, 9088,species,whthum1,White-tailed Hummingbird,Eupherusa poliocerca,Caprimulgiformes,Trochilidae (Hummingbirds),, 9090,species,blbhum1,Black-bellied Hummingbird,Eupherusa nigriventris,Caprimulgiformes,Trochilidae (Hummingbirds),, 9092,species,whteme1,White-tailed Emerald,Elvira chionura,Caprimulgiformes,Trochilidae (Hummingbirds),, 9094,species,coheme1,Coppery-headed Emerald,Elvira cupreiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, 9096,species,snowca1,Snowcap,Microchera albocoronata,Caprimulgiformes,Trochilidae (Hummingbirds),, 9098,species,somhum1,Sombre Hummingbird,Aphantochroa cirrochloris,Caprimulgiformes,Trochilidae (Hummingbirds),, 9100,species,mashum1,Many-spotted Hummingbird,Taphrospilus hypostictus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9102,species,whthum2,White-throated Hummingbird,Leucochloris albicollis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9104,species,bufhum1,Buffy Hummingbird,Leucippus fallax,Caprimulgiformes,Trochilidae (Hummingbirds),, 9106,species,tumhum1,Tumbes Hummingbird,Leucippus baeri,Caprimulgiformes,Trochilidae (Hummingbirds),, 9108,species,spthum2,Spot-throated Hummingbird,Leucippus taczanowskii,Caprimulgiformes,Trochilidae (Hummingbirds),, 9110,species,olshum1,Olive-spotted Hummingbird,Leucippus chlorocercus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9112,species,whbhum1,White-bellied Hummingbird,Amazilia chionogaster,Caprimulgiformes,Trochilidae (Hummingbirds),, 9114,species,gawhum1,Green-and-white Hummingbird,Amazilia viridicauda,Caprimulgiformes,Trochilidae (Hummingbirds),, 9116,species,chbhum1,Chestnut-bellied Hummingbird,Amazilia castaneiventris,Caprimulgiformes,Trochilidae (Hummingbirds),, 9118,species,amahum1,Amazilia Hummingbird,Amazilia amazilia,Caprimulgiformes,Trochilidae (Hummingbirds),, 9120,issf,amahum2,Amazilia Hummingbird (Amazilia),Amazilia amazilia [amazilia Group],Caprimulgiformes,Trochilidae (Hummingbirds),,amahum1 9122,issf,amahum3,Amazilia Hummingbird (Loja),Amazilia amazilia alticola,Caprimulgiformes,Trochilidae (Hummingbirds),,amahum1 9124,species,whbeme1,White-bellied Emerald,Amazilia candida,Caprimulgiformes,Trochilidae (Hummingbirds),, 9126,species,honeme1,Honduran Emerald,Amazilia luciae,Caprimulgiformes,Trochilidae (Hummingbirds),, 9128,species,whceme1,White-chested Emerald,Amazilia brevirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, 9130,species,plbeme1,Plain-bellied Emerald,Amazilia leucogaster,Caprimulgiformes,Trochilidae (Hummingbirds),, 9132,species,vereme1,Versicolored Emerald,Amazilia versicolor,Caprimulgiformes,Trochilidae (Hummingbirds),, 9134,issf,vereme2,Versicolored Emerald (Versicolored),Amazilia versicolor [versicolor Group],Caprimulgiformes,Trochilidae (Hummingbirds),,vereme1 9136,issf,vereme3,Versicolored Emerald (Rondonia),Amazilia versicolor rondoniae,Caprimulgiformes,Trochilidae (Hummingbirds),,vereme1 9138,species,andeme1,Andean Emerald,Amazilia franciae,Caprimulgiformes,Trochilidae (Hummingbirds),, 9140,species,glteme1,Glittering-throated Emerald,Amazilia fimbriata,Caprimulgiformes,Trochilidae (Hummingbirds),, 9142,species,saseme1,Sapphire-spangled Emerald,Amazilia lactea,Caprimulgiformes,Trochilidae (Hummingbirds),, 9142.2,issf,saseme2,Sapphire-spangled Emerald (Sapphire-spangled),Amazilia lactea lactea/zimmeri,Caprimulgiformes,Trochilidae (Hummingbirds),,saseme1 9142.4,issf,saseme3,Sapphire-spangled Emerald (Spot-vented),Amazilia lactea bartletti,Caprimulgiformes,Trochilidae (Hummingbirds),,saseme1 9144,species,blchum1,Blue-chested Hummingbird,Amazilia amabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9146,species,chahum1,Charming Hummingbird,Amazilia decora,Caprimulgiformes,Trochilidae (Hummingbirds),, 9148,species,puchum1,Purple-chested Hummingbird,Amazilia rosenbergi,Caprimulgiformes,Trochilidae (Hummingbirds),, 9150,species,manhum1,Mangrove Hummingbird,Amazilia boucardi,Caprimulgiformes,Trochilidae (Hummingbirds),, 9152,species,azchum1,Azure-crowned Hummingbird,Amazilia cyanocephala,Caprimulgiformes,Trochilidae (Hummingbirds),, 9154,issf,azchum2,Azure-crowned Hummingbird (Azure-crowned),Amazilia cyanocephala cyanocephala,Caprimulgiformes,Trochilidae (Hummingbirds),,azchum1 9156,issf,azchum3,Azure-crowned Hummingbird (Mosquitia),Amazilia cyanocephala chlorostephana,Caprimulgiformes,Trochilidae (Hummingbirds),,azchum1 9158,species,berhum,Berylline Hummingbird,Amazilia beryllina,Caprimulgiformes,Trochilidae (Hummingbirds),, 9158.2,issf,berhum1,Berylline Hummingbird (Northern),Amazilia beryllina beryllina/viola,Caprimulgiformes,Trochilidae (Hummingbirds),,berhum 9158.4,issf,berhum2,Berylline Hummingbird (Sumichrast's),Amazilia beryllina [devillei Group],Caprimulgiformes,Trochilidae (Hummingbirds),,berhum 9159,hybrid,mxbhum1,Rivoli's x Berylline Hummingbird (hybrid),Eugenes fulgens x Amazilia beryllina,Caprimulgiformes,Trochilidae (Hummingbirds),, 9162,species,blthum1,Blue-tailed Hummingbird,Amazilia cyanura,Caprimulgiformes,Trochilidae (Hummingbirds),, 9164,species,stvhum1,Steely-vented Hummingbird,Amazilia saucerottei,Caprimulgiformes,Trochilidae (Hummingbirds),, 9166,species,inchum1,Indigo-capped Hummingbird,Amazilia cyanifrons,Caprimulgiformes,Trochilidae (Hummingbirds),, 9168,species,snbhum1,Snowy-bellied Hummingbird,Amazilia edward,Caprimulgiformes,Trochilidae (Hummingbirds),, 9170,species,grbhum1,Green-bellied Hummingbird,Amazilia viridigaster,Caprimulgiformes,Trochilidae (Hummingbirds),, 9172,issf,gnbhum1,Green-bellied Hummingbird (Green-bellied),Amazilia viridigaster [viridigaster Group],Caprimulgiformes,Trochilidae (Hummingbirds),,grbhum1 9174,issf,gnbhum2,Green-bellied Hummingbird (Copper-tailed),Amazilia viridigaster [cupreicauda Group],Caprimulgiformes,Trochilidae (Hummingbirds),,grbhum1 9176,species,rtlhum,Rufous-tailed Hummingbird,Amazilia tzacatl,Caprimulgiformes,Trochilidae (Hummingbirds),, 9178,issf,ruthum2,Rufous-tailed Hummingbird (Rufous-tailed),Amazilia tzacatl [tzacatl Group],Caprimulgiformes,Trochilidae (Hummingbirds),,rtlhum 9180,issf,ruthum3,Rufous-tailed Hummingbird (Escudo),Amazilia tzacatl handleyi,Caprimulgiformes,Trochilidae (Hummingbirds),,rtlhum 9182,species,bubhum,Buff-bellied Hummingbird,Amazilia yucatanensis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9184,issf,bubhum1,Buff-bellied Hummingbird (Yucatan),Amazilia yucatanensis yucatanensis,Caprimulgiformes,Trochilidae (Hummingbirds),,bubhum 9186,issf,bubhum2,Buff-bellied Hummingbird (Northern),Amazilia yucatanensis cerviniventris/chalconota,Caprimulgiformes,Trochilidae (Hummingbirds),,bubhum 9188,species,cinhum1,Cinnamon Hummingbird,Amazilia rutila,Caprimulgiformes,Trochilidae (Hummingbirds),, 9190,issf,cinhum2,Cinnamon Hummingbird (Tres Marias Is.),Amazilia rutila graysoni,Caprimulgiformes,Trochilidae (Hummingbirds),,cinhum1 9192,issf,cinhum3,Cinnamon Hummingbird (Mainland),Amazilia rutila [rutila Group],Caprimulgiformes,Trochilidae (Hummingbirds),,cinhum1 9194,species,vichum,Violet-crowned Hummingbird,Amazilia violiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, 9195.5,hybrid,x00633,Broad-billed x Violet-crowned Hummingbird (hybrid),Cynanthus latirostris x Amazilia violiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, 9196,species,grfhum1,Green-fronted Hummingbird,Amazilia viridifrons,Caprimulgiformes,Trochilidae (Hummingbirds),, 9198,issf,gnfhum1,Green-fronted Hummingbird (Green-fronted),Amazilia viridifrons viridifrons,Caprimulgiformes,Trochilidae (Hummingbirds),,grfhum1 9200,issf,gnfhum2,Green-fronted Hummingbird (Cinnamon-sided),Amazilia viridifrons wagneri,Caprimulgiformes,Trochilidae (Hummingbirds),,grfhum1 9202,species,corhum1,Copper-rumped Hummingbird,Amazilia tobaci,Caprimulgiformes,Trochilidae (Hummingbirds),, 9204,spuh,amazil1,Amazilia sp.,Amazilia sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 9206,species,gotsap1,Golden-tailed Sapphire,Chrysuronia oenone,Caprimulgiformes,Trochilidae (Hummingbirds),, 9208,species,ruchum1,Pirre Hummingbird,Goethalsia bella,Caprimulgiformes,Trochilidae (Hummingbirds),, 9210,species,vichum1,Violet-capped Hummingbird,Goldmania violiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, 9212,species,stream1,Streamertail,Trochilus polytmus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9214,issf,stream2,Streamertail (Red-billed),Trochilus polytmus polytmus,Caprimulgiformes,Trochilidae (Hummingbirds),,stream1 9216,issf,stream3,Streamertail (Black-billed),Trochilus polytmus scitulus,Caprimulgiformes,Trochilidae (Hummingbirds),,stream1 9216.2,intergrade,stream4,Streamertail (Red-billed x Black-billed),Trochilus polytmus polytmus x scitulus,Caprimulgiformes,Trochilidae (Hummingbirds),,stream1 9218,species,sathum1,Sapphire-throated Hummingbird,Lepidopyga coeruleogularis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9220,species,sabhum1,Sapphire-bellied Hummingbird,Lepidopyga lilliae,Caprimulgiformes,Trochilidae (Hummingbirds),, 9222,species,shghum1,Shining-green Hummingbird,Lepidopyga goudoti,Caprimulgiformes,Trochilidae (Hummingbirds),, 9224,species,vibhum1,Violet-bellied Hummingbird,Juliamyia julie,Caprimulgiformes,Trochilidae (Hummingbirds),, 9226,species,humsap2,Humboldt's Sapphire,Hylocharis humboldtii,Caprimulgiformes,Trochilidae (Hummingbirds),, 9228,species,bltgol1,Blue-throated Goldentail,Hylocharis eliciae,Caprimulgiformes,Trochilidae (Hummingbirds),, 9230,species,rutsap1,Rufous-throated Sapphire,Hylocharis sapphirina,Caprimulgiformes,Trochilidae (Hummingbirds),, 9232,species,whcsap1,White-chinned Sapphire,Hylocharis cyanus,Caprimulgiformes,Trochilidae (Hummingbirds),, 9234,species,gilhum1,Gilded Hummingbird,Hylocharis chrysura,Caprimulgiformes,Trochilidae (Hummingbirds),, 9236,species,blhsap1,Blue-headed Sapphire,Hylocharis grayi,Caprimulgiformes,Trochilidae (Hummingbirds),, 9238,species,whehum,White-eared Hummingbird,Hylocharis leucotis,Caprimulgiformes,Trochilidae (Hummingbirds),, 9240,species,xanhum,Xantus's Hummingbird,Hylocharis xantusii,Caprimulgiformes,Trochilidae (Hummingbirds),, 9298,spuh,hummin,hummingbird sp.,Trochilidae sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, 9299,species,spemou2,Speckled Mousebird,Colius striatus,Coliiformes,Coliidae (Mousebirds),Mousebirds, 9317,species,whhmou1,White-headed Mousebird,Colius leucocephalus,Coliiformes,Coliidae (Mousebirds),, 9320,species,rebmou1,Red-backed Mousebird,Colius castanotus,Coliiformes,Coliidae (Mousebirds),, 9321,species,whbmou1,White-backed Mousebird,Colius colius,Coliiformes,Coliidae (Mousebirds),, 9322,species,blnmou1,Blue-naped Mousebird,Urocolius macrourus,Coliiformes,Coliidae (Mousebirds),, 9329,species,refmou1,Red-faced Mousebird,Urocolius indicus,Coliiformes,Coliidae (Mousebirds),, 9334.5,spuh,mouseb1,mousebird sp.,Coliidae sp.,Coliiformes,Coliidae (Mousebirds),, 9334.7,species,cuckoo1,Cuckoo-Roller,Leptosomus discolor,Leptosomiformes,Leptosomidae (Cuckoo-Roller),Cuckoo-Roller, 9335,species,earque,Eared Quetzal,Euptilotis neoxenus,Trogoniformes,Trogonidae (Trogons),Trogons and Quetzals, 9336,species,pavque1,Pavonine Quetzal,Pharomachrus pavoninus,Trogoniformes,Trogonidae (Trogons),, 9340,species,gohque1,Golden-headed Quetzal,Pharomachrus auriceps,Trogoniformes,Trogonidae (Trogons),, 9343,species,resque1,Resplendent Quetzal,Pharomachrus mocinno,Trogoniformes,Trogonidae (Trogons),, 9344,issf,resque2,Resplendent Quetzal (Guatemalan),Pharomachrus mocinno mocinno,Trogoniformes,Trogonidae (Trogons),,resque1 9345,issf,resque3,Resplendent Quetzal (Costa Rican),Pharomachrus mocinno costaricensis,Trogoniformes,Trogonidae (Trogons),,resque1 9346,species,whtque1,White-tipped Quetzal,Pharomachrus fulgidus,Trogoniformes,Trogonidae (Trogons),, 9349,species,creque1,Crested Quetzal,Pharomachrus antisianus,Trogoniformes,Trogonidae (Trogons),, 9349.5,slash,y00787,Golden-headed/Crested Quetzal,Pharomachrus auriceps/antisianus,Trogoniformes,Trogonidae (Trogons),, 9350,species,cubtro1,Cuban Trogon,Priotelus temnurus,Trogoniformes,Trogonidae (Trogons),, 9353,species,histro1,Hispaniolan Trogon,Priotelus roseigaster,Trogoniformes,Trogonidae (Trogons),, 9354,species,lattro1,Lattice-tailed Trogon,Trogon clathratus,Trogoniformes,Trogonidae (Trogons),, 9355,species,slttro1,Slaty-tailed Trogon,Trogon massena,Trogoniformes,Trogonidae (Trogons),, 9356,issf,slttro2,Slaty-tailed Trogon (Massena),Trogon massena massena/hoffmanni,Trogoniformes,Trogonidae (Trogons),,slttro1 9359,issf,slttro3,Slaty-tailed Trogon (Chapman's),Trogon massena australis,Trogoniformes,Trogonidae (Trogons),,slttro1 9360,species,buttro1,Blue-tailed Trogon,Trogon comptus,Trogoniformes,Trogonidae (Trogons),, 9361,species,bkttro2,Ecuadorian Trogon,Trogon mesurus,Trogoniformes,Trogonidae (Trogons),, 9362,species,blttro1,Black-tailed Trogon,Trogon melanurus,Trogoniformes,Trogonidae (Trogons),, 9363,issf,bkttro3,Black-tailed Trogon (Large-tailed),Trogon melanurus macroura,Trogoniformes,Trogonidae (Trogons),,blttro1 9364,issf,bkttro1,Black-tailed Trogon (Black-tailed),Trogon melanurus [melanurus Group],Trogoniformes,Trogonidae (Trogons),,blttro1 9368,species,blhtro1,Black-headed Trogon,Trogon melanocephalus,Trogoniformes,Trogonidae (Trogons),, 9371,species,cittro1,Citreoline Trogon,Trogon citreolus,Trogoniformes,Trogonidae (Trogons),, 9374,species,whttro1,White-tailed Trogon,Trogon chionurus,Trogoniformes,Trogonidae (Trogons),, 9375,species,gnbtro1,Green-backed Trogon,Trogon viridis,Trogoniformes,Trogonidae (Trogons),, 9378,species,baitro1,Baird's Trogon,Trogon bairdii,Trogoniformes,Trogonidae (Trogons),, 9379,species,gartro1,Gartered Trogon,Trogon caligatus,Trogoniformes,Trogonidae (Trogons),, 9384,species,viotro2,Guianan Trogon,Trogon violaceus,Trogoniformes,Trogonidae (Trogons),, 9385,species,viotro3,Amazonian Trogon,Trogon ramonianus,Trogoniformes,Trogonidae (Trogons),, 9386,slash,viotro1,Guianan/Amazonian Trogon,Trogon violaceus/ramonianus,Trogoniformes,Trogonidae (Trogons),, 9388,species,blctro1,Blue-crowned Trogon,Trogon curucui,Trogoniformes,Trogonidae (Trogons),, 9392,species,surtro1,Surucua Trogon,Trogon surrucura,Trogoniformes,Trogonidae (Trogons),, 9393,issf,surtro2,Surucua Trogon (Orange-bellied),Trogon surrucura aurantius,Trogoniformes,Trogonidae (Trogons),,surtro1 9394,issf,surtro3,Surucua Trogon (Red-bellied),Trogon surrucura surrucura,Trogoniformes,Trogonidae (Trogons),,surtro1 9395,species,blttro2,Black-throated Trogon,Trogon rufus,Trogoniformes,Trogonidae (Trogons),, 9402,species,eletro,Elegant Trogon,Trogon elegans,Trogoniformes,Trogonidae (Trogons),, 9403,issf,eletro1,Elegant Trogon (Coppery-tailed),Trogon elegans [ambiguus Group],Trogoniformes,Trogonidae (Trogons),,eletro 9407,issf,eletro2,Elegant Trogon (Elegant),Trogon elegans elegans/lubricus,Trogoniformes,Trogonidae (Trogons),,eletro 9410,species,moutro1,Mountain Trogon,Trogon mexicanus,Trogoniformes,Trogonidae (Trogons),, 9414,species,orbtro1,Orange-bellied Trogon,Trogon aurantiiventris,Trogoniformes,Trogonidae (Trogons),, 9418,species,coltro1,Collared Trogon,Trogon collaris,Trogoniformes,Trogonidae (Trogons),, 9419,issf,coltro2,Collared Trogon (Bar-tailed),Trogon collaris puella/extimus,Trogoniformes,Trogonidae (Trogons),,coltro1 9422,issf,coltro3,Collared Trogon (Collared),Trogon collaris [collaris Group],Trogoniformes,Trogonidae (Trogons),,coltro1 9422.2,slash,y01031,Orange-bellied/Collared Trogon,Trogon aurantiiventris/collaris,Trogoniformes,Trogonidae (Trogons),, 9430,species,mastro1,Masked Trogon,Trogon personatus,Trogoniformes,Trogonidae (Trogons),, 9440,spuh,newtro1,new world trogon sp.,Trogon sp.,Trogoniformes,Trogonidae (Trogons),, 9441,species,nartro1,Narina Trogon,Apaloderma narina,Trogoniformes,Trogonidae (Trogons),, 9446,species,bactro1,Bare-cheeked Trogon,Apaloderma aequatoriale,Trogoniformes,Trogonidae (Trogons),, 9447,species,battro1,Bar-tailed Trogon,Apaloderma vittatum,Trogoniformes,Trogonidae (Trogons),, 9448,spuh,afrtro1,african trogon sp.,Apaloderma sp.,Trogoniformes,Trogonidae (Trogons),, 9450,species,javtro1,Javan Trogon,Harpactes reinwardtii,Trogoniformes,Trogonidae (Trogons),, 9451,species,sumtro1,Sumatran Trogon,Harpactes mackloti,Trogoniformes,Trogonidae (Trogons),, 9452,species,maltro1,Malabar Trogon,Harpactes fasciatus,Trogoniformes,Trogonidae (Trogons),, 9456,species,rentro1,Red-naped Trogon,Harpactes kasumba,Trogoniformes,Trogonidae (Trogons),, 9459,species,diatro1,Diard's Trogon,Harpactes diardii,Trogoniformes,Trogonidae (Trogons),, 9463,species,phitro1,Philippine Trogon,Harpactes ardens,Trogoniformes,Trogonidae (Trogons),, 9469,species,whitro1,Whitehead's Trogon,Harpactes whiteheadi,Trogoniformes,Trogonidae (Trogons),, 9470,species,cirtro1,Cinnamon-rumped Trogon,Harpactes orrhophaeus,Trogoniformes,Trogonidae (Trogons),, 9473,species,scrtro1,Scarlet-rumped Trogon,Harpactes duvaucelii,Trogoniformes,Trogonidae (Trogons),, 9474,species,rehtro1,Red-headed Trogon,Harpactes erythrocephalus,Trogoniformes,Trogonidae (Trogons),, 9485,species,orbtro2,Orange-breasted Trogon,Harpactes oreskios,Trogoniformes,Trogonidae (Trogons),, 9491,species,wartro1,Ward's Trogon,Harpactes wardi,Trogoniformes,Trogonidae (Trogons),, 9491.5,spuh,asitro1,asian trogon sp.,Harpactes sp.,Trogoniformes,Trogonidae (Trogons),, 9491.501,species,hoopoe,Eurasian Hoopoe,Upupa epops,Bucerotiformes,Upupidae (Hoopoes),Hoopoes, 9491.502,issf,eurhoo1,Eurasian Hoopoe (Eurasian),Upupa epops [epops Group],Bucerotiformes,Upupidae (Hoopoes),,hoopoe 9491.503,issf,eurhoo3,Eurasian Hoopoe (Central African),Upupa epops senegalensis/waibeli,Bucerotiformes,Upupidae (Hoopoes),,hoopoe 9491.504,issf,eurhoo2,Eurasian Hoopoe (African),Upupa epops africana,Bucerotiformes,Upupidae (Hoopoes),,hoopoe 9491.505,species,madhoo1,Madagascar Hoopoe,Upupa marginata,Bucerotiformes,Upupidae (Hoopoes),, 9491.506,species,grewoo2,Green Woodhoopoe,Phoeniculus purpureus,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),Woodhoopoes and Scimitarbills, 9491.507,species,viowoo1,Violet Woodhoopoe,Phoeniculus damarensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.508,issf,viowoo2,Violet Woodhoopoe (Violet),Phoeniculus damarensis damarensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),,viowoo1 9491.509,issf,viowoo3,Violet Woodhoopoe (Grant's),Phoeniculus damarensis granti,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),,viowoo1 9491.51,slash,y00659,Green/Violet Woodhoopoe,Phoeniculus purpureus/damarensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.511,species,blbwoo2,Black-billed Woodhoopoe,Phoeniculus somaliensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.512,species,whhwoo1,White-headed Woodhoopoe,Phoeniculus bollei,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.513,species,forwoo1,Forest Woodhoopoe,Phoeniculus castaneiceps,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.514,spuh,woodho1,woodhoopoe sp.,Phoeniculus sp.,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.515,species,blsbil1,Black Scimitarbill,Rhinopomastus aterrimus,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.516,species,cosbil1,Common Scimitarbill,Rhinopomastus cyanomelas,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.517,species,absbil1,Abyssinian Scimitarbill,Rhinopomastus minor,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.5175,spuh,y00961,woodhoopoe/scimitarbill sp.,Phoeniculus/Rhinopomastus sp.,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitar-bills),, 9491.518,species,noghor1,Abyssinian Ground-Hornbill,Bucorvus abyssinicus,Bucerotiformes,Bucorvidae (Ground-Hornbills),Hornbills, 9491.519,species,soghor1,Southern Ground-Hornbill,Bucorvus leadbeateri,Bucerotiformes,Bucorvidae (Ground-Hornbills),, 9491.52,species,rbdhor1,Red-billed Dwarf Hornbill,Lophoceros camurus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.521,species,crohor1,Crowned Hornbill,Lophoceros alboterminatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.522,species,brahor1,Bradfield's Hornbill,Lophoceros bradfieldi,Bucerotiformes,Bucerotidae (Hornbills),, 9491.523,species,afphor1,African Pied Hornbill,Lophoceros fasciatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.524,issf,afphor2,African Pied Hornbill (Western),Lophoceros fasciatus semifasciatus,Bucerotiformes,Bucerotidae (Hornbills),,afphor1 9491.525,issf,afphor3,African Pied Hornbill (Congo),Lophoceros fasciatus fasciatus,Bucerotiformes,Bucerotidae (Hornbills),,afphor1 9491.526,species,hemhor1,Hemprich's Hornbill,Lophoceros hemprichii,Bucerotiformes,Bucerotidae (Hornbills),, 9491.527,species,afghor1,African Gray Hornbill,Lophoceros nasutus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.528,species,pabhor1,Pale-billed Hornbill,Lophoceros pallidirostris,Bucerotiformes,Bucerotidae (Hornbills),, 9491.5285,spuh,lophoc1,Lophoceros sp.,Lophoceros sp.,Bucerotiformes,Bucerotidae (Hornbills),, 9491.529,species,eybhor1,Eastern Yellow-billed Hornbill,Tockus flavirostris,Bucerotiformes,Bucerotidae (Hornbills),, 9491.53,species,sybhor1,Southern Yellow-billed Hornbill,Tockus leucomelas,Bucerotiformes,Bucerotidae (Hornbills),, 9491.531,species,jachor1,Jackson's Hornbill,Tockus jacksoni,Bucerotiformes,Bucerotidae (Hornbills),, 9491.532,species,vddhor1,Von der Decken's Hornbill,Tockus deckeni,Bucerotiformes,Bucerotidae (Hornbills),, 9491.533,species,monhor1,Monteiro's Hornbill,Tockus monteiri,Bucerotiformes,Bucerotidae (Hornbills),, 9491.534,species,srbhor1,Southern Red-billed Hornbill,Tockus rufirostris,Bucerotiformes,Bucerotidae (Hornbills),, 9491.535,species,drbhor1,Damara Red-billed Hornbill,Tockus damarensis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.536,hybrid,x00667,Southern Red-billed x Damara Red-billed Hornbill (hybrid),Tockus rufirostris x damarensis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.537,species,trbhor1,Tanzanian Red-billed Hornbill,Tockus ruahae,Bucerotiformes,Bucerotidae (Hornbills),, 9491.538,species,wrbhor2,Western Red-billed Hornbill,Tockus kempi,Bucerotiformes,Bucerotidae (Hornbills),, 9491.539,species,rebhor1,Northern Red-billed Hornbill,Tockus erythrorhynchus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.5395,spuh,tockus1,Tockus sp.,Tockus sp.,Bucerotiformes,Bucerotidae (Hornbills),, 9491.54,species,whchor2,White-crowned Hornbill,Berenicornis comatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.541,species,whchor3,White-crested Hornbill,Horizocerus albocristatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.542,issf,whchor1,White-crested Hornbill (White-cheeked),Horizocerus albocristatus albocristatus/macrourus,Bucerotiformes,Bucerotidae (Hornbills),,whchor3 9491.543,issf,whchor4,White-crested Hornbill (Dark-cheeked),Horizocerus albocristatus cassini,Bucerotiformes,Bucerotidae (Hornbills),,whchor3 9491.544,species,bldhor1,Black Dwarf Hornbill,Horizocerus hartlaubi,Bucerotiformes,Bucerotidae (Hornbills),, 9491.545,issf,bkdhor1,Black Dwarf Hornbill (Western),Horizocerus hartlaubi hartlaubi,Bucerotiformes,Bucerotidae (Hornbills),,bldhor1 9491.5455,issf,bkdhor2,Black Dwarf Hornbill (Eastern),Horizocerus hartlaubi granti,Bucerotiformes,Bucerotidae (Hornbills),,bldhor1 9491.546,species,blchor1,Black-casqued Hornbill,Ceratogymna atrata,Bucerotiformes,Bucerotidae (Hornbills),, 9491.547,species,yechor1,Yellow-casqued Hornbill,Ceratogymna elata,Bucerotiformes,Bucerotidae (Hornbills),, 9491.548,slash,y00865,Black-casqued/Yellow-casqued Hornbill,Ceratogymna atrata/elata,Bucerotiformes,Bucerotidae (Hornbills),, 9491.549,species,sichor1,Silvery-cheeked Hornbill,Bycanistes brevis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.55,species,bawhor2,Black-and-white-casqued Hornbill,Bycanistes subcylindricus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.551,species,bnchor1,Brown-cheeked Hornbill,Bycanistes cylindricus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.552,species,whthor1,White-thighed Hornbill,Bycanistes albotibialis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.553,species,truhor1,Trumpeter Hornbill,Bycanistes bucinator,Bucerotiformes,Bucerotidae (Hornbills),, 9491.554,species,piphor1,Piping Hornbill,Bycanistes fistulator,Bucerotiformes,Bucerotidae (Hornbills),, 9491.555,issf,piphor2,Piping Hornbill (Western),Bycanistes fistulator fistulator,Bucerotiformes,Bucerotidae (Hornbills),,piphor1 9491.556,issf,piphor3,Piping Hornbill (Eastern),Bycanistes fistulator sharpii/duboisi,Bucerotiformes,Bucerotidae (Hornbills),,piphor1 9491.557,species,helhor1,Helmeted Hornbill,Buceros vigil,Bucerotiformes,Bucerotidae (Hornbills),, 9491.558,species,rufhor1,Rufous Hornbill,Buceros hydrocorax,Bucerotiformes,Bucerotidae (Hornbills),, 9491.559,issf,rufhor3,Rufous Hornbill (Northern),Buceros hydrocorax hydrocorax,Bucerotiformes,Bucerotidae (Hornbills),,rufhor1 9491.56,issf,rufhor4,Rufous Hornbill (Southern),Buceros hydrocorax mindanensis/semigaleatus,Bucerotiformes,Bucerotidae (Hornbills),,rufhor1 9491.561,species,rhihor1,Rhinoceros Hornbill,Buceros rhinoceros,Bucerotiformes,Bucerotidae (Hornbills),, 9491.562,species,grehor1,Great Hornbill,Buceros bicornis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.563,species,buchor1,Bushy-crested Hornbill,Anorrhinus galeritus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.564,species,brnhor1,Brown Hornbill,Anorrhinus austeni,Bucerotiformes,Bucerotidae (Hornbills),, 9491.565,species,ruchor1,Rusty-cheeked Hornbill,Anorrhinus tickelli,Bucerotiformes,Bucerotidae (Hornbills),, 9491.566,species,inghor2,Indian Gray Hornbill,Ocyceros birostris,Bucerotiformes,Bucerotidae (Hornbills),, 9491.567,species,maghor2,Malabar Gray Hornbill,Ocyceros griseus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.568,species,ceghor1,Sri Lanka Gray Hornbill,Ocyceros gingalensis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.569,species,blahor1,Black Hornbill,Anthracoceros malayanus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.57,species,sulhor2,Sulu Hornbill,Anthracoceros montani,Bucerotiformes,Bucerotidae (Hornbills),, 9491.571,species,maphor1,Malabar Pied-Hornbill,Anthracoceros coronatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.572,species,orphor1,Oriental Pied-Hornbill,Anthracoceros albirostris,Bucerotiformes,Bucerotidae (Hornbills),, 9491.573,species,palhor1,Palawan Hornbill,Anthracoceros marchei,Bucerotiformes,Bucerotidae (Hornbills),, 9491.574,species,runhor1,Rufous-necked Hornbill,Aceros nipalensis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.575,species,knohor1,Knobbed Hornbill,Rhyticeros cassidix,Bucerotiformes,Bucerotidae (Hornbills),, 9491.576,species,sumhor1,Sumba Hornbill,Rhyticeros everetti,Bucerotiformes,Bucerotidae (Hornbills),, 9491.577,species,wrehor1,Wreathed Hornbill,Rhyticeros undulatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.578,species,plphor1,Plain-pouched Hornbill,Rhyticeros subruficollis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.5785,slash,y01032,Wreathed/Plain-pouched Hornbill,Rhyticeros undulatus/subruficollis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.579,species,narhor1,Narcondam Hornbill,Rhyticeros narcondami,Bucerotiformes,Bucerotidae (Hornbills),, 9491.58,species,blyhor1,Blyth's Hornbill,Rhyticeros plicatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.581,species,sulhor1,Sulawesi Hornbill,Rhabdotorrhinus exarhatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.582,issf,sulhor3,Sulawesi Hornbill (Dwarf),Rhabdotorrhinus exarhatus exarhatus,Bucerotiformes,Bucerotidae (Hornbills),,sulhor1 9491.583,issf,sulhor4,Sulawesi Hornbill (Sanford's),Rhabdotorrhinus exarhatus sanfordi,Bucerotiformes,Bucerotidae (Hornbills),,sulhor1 9491.584,species,wrihor1,Wrinkled Hornbill,Rhabdotorrhinus corrugatus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.585,species,wrbhor1,Writhe-billed Hornbill,Rhabdotorrhinus waldeni,Bucerotiformes,Bucerotidae (Hornbills),, 9491.586,species,wrihor2,Writhed Hornbill,Rhabdotorrhinus leucocephalus,Bucerotiformes,Bucerotidae (Hornbills),, 9491.587,species,tarhor1,Visayan Hornbill,Penelopides panini,Bucerotiformes,Bucerotidae (Hornbills),, 9491.588,species,luzhor1,Luzon Hornbill,Penelopides manillae,Bucerotiformes,Bucerotidae (Hornbills),, 9491.589,species,minhor2,Mindoro Hornbill,Penelopides mindorensis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.59,species,samhor1,Samar Hornbill,Penelopides samarensis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.591,species,minhor1,Mindanao Hornbill,Penelopides affinis,Bucerotiformes,Bucerotidae (Hornbills),, 9491.592,spuh,hornbi1,hornbill sp.,Bucerotidae sp.,Bucerotiformes,Bucerotidae (Hornbills),, 9492,species,cubtod1,Cuban Tody,Todus multicolor,Coraciiformes,Todidae (Todies),Todies, 9493,species,brbtod1,Broad-billed Tody,Todus subulatus,Coraciiformes,Todidae (Todies),, 9494,species,nabtod1,Narrow-billed Tody,Todus angustirostris,Coraciiformes,Todidae (Todies),, 9494.2,slash,y00866,Broad-billed/Narrow-billed Tody,Todus subulatus/angustirostris,Coraciiformes,Todidae (Todies),, 9495,species,jamtod1,Jamaican Tody,Todus todus,Coraciiformes,Todidae (Todies),, 9496,species,purtod1,Puerto Rican Tody,Todus mexicanus,Coraciiformes,Todidae (Todies),, 9497,species,todmot1,Tody Motmot,Hylomanes momotula,Coraciiformes,Momotidae (Motmots),Motmots, 9501,species,bltmot1,Blue-throated Motmot,Aspatha gularis,Coraciiformes,Momotidae (Motmots),, 9502,species,rucmot1,Russet-crowned Motmot,Momotus mexicanus,Coraciiformes,Momotidae (Motmots),, 9508,species,bucmot1,Blue-capped Motmot,Momotus coeruliceps,Coraciiformes,Momotidae (Motmots),, 9509,species,bucmot2,Lesson's Motmot,Momotus lessonii,Coraciiformes,Momotidae (Motmots),, 9509.2,hybrid,x00887,Blue-capped x Lesson's Motmot (hybrid),Momotus coeruliceps x lessonii,Coraciiformes,Momotidae (Motmots),, 9509.4,slash,y01033,Blue-capped/Lesson's Motmot,Momotus coeruliceps/lessonii,Coraciiformes,Momotidae (Motmots),, 9513,species,bucmot3,Whooping Motmot,Momotus subrufescens,Coraciiformes,Momotidae (Motmots),, 9514,issf,whomot1,Whooping Motmot (Whooping),Momotus subrufescens [subrufescens Group],Coraciiformes,Momotidae (Motmots),,bucmot3 9521,issf,whomot2,Whooping Motmot (argenticinctus),Momotus subrufescens argenticinctus,Coraciiformes,Momotidae (Motmots),,bucmot3 9522,species,trimot1,Trinidad Motmot,Momotus bahamensis,Coraciiformes,Momotidae (Motmots),, 9523,species,bucmot4,Amazonian Motmot,Momotus momota,Coraciiformes,Momotidae (Motmots),, 9532,species,higmot1,Andean Motmot,Momotus aequatorialis,Coraciiformes,Momotidae (Motmots),, 9535,species,rufmot1,Rufous Motmot,Baryphthengus martii,Coraciiformes,Momotidae (Motmots),, 9536,species,rucmot2,Rufous-capped Motmot,Baryphthengus ruficapillus,Coraciiformes,Momotidae (Motmots),, 9536.5,hybrid,x00769,Amazonian x Rufous-capped Motmot (hybrid),Momotus momota x Baryphthengus ruficapillus,Coraciiformes,Momotidae (Motmots),, 9537,species,kebmot1,Keel-billed Motmot,Electron carinatum,Coraciiformes,Momotidae (Motmots),, 9538,species,brbmot1,Broad-billed Motmot,Electron platyrhynchum,Coraciiformes,Momotidae (Motmots),, 9539,issf,brbmot2,Broad-billed Motmot (Broad-billed),Electron platyrhynchum [platyrhynchum Group],Coraciiformes,Momotidae (Motmots),,brbmot1 9543,issf,brbmot3,Broad-billed Motmot (Plain-tailed),Electron platyrhynchum [pyrrholaemum Group],Coraciiformes,Momotidae (Motmots),,brbmot1 9546.5,slash,y00733,Keel-billed/Broad-billed Motmot,Electron carinatum/platyrhynchum,Coraciiformes,Momotidae (Motmots),, 9547,species,tubmot1,Turquoise-browed Motmot,Eumomota superciliosa,Coraciiformes,Momotidae (Motmots),, 9554.5,spuh,motmot1,motmot sp.,Momotidae sp.,Coraciiformes,Momotidae (Motmots),, 9555,species,blykin1,Blyth's Kingfisher,Alcedo hercules,Coraciiformes,Alcedinidae (Kingfishers),Kingfishers, 9556,species,comkin1,Common Kingfisher,Alcedo atthis,Coraciiformes,Alcedinidae (Kingfishers),, 9556.1,issf,comkin2,Common Kingfisher (Common),Alcedo atthis [atthis Group],Coraciiformes,Alcedinidae (Kingfishers),,comkin1 9561.1,issf,comkin3,Common Kingfisher (Cobalt-eared),Alcedo atthis hispidoides/salomonensis,Coraciiformes,Alcedinidae (Kingfishers),,comkin1 9564,species,hackin1,Half-collared Kingfisher,Alcedo semitorquata,Coraciiformes,Alcedinidae (Kingfishers),, 9568,species,shbkin1,Shining-blue Kingfisher,Alcedo quadribrachys,Coraciiformes,Alcedinidae (Kingfishers),, 9571,species,blekin1,Blue-eared Kingfisher,Alcedo meninting,Coraciiformes,Alcedinidae (Kingfishers),, 9581,species,blbkin2,Blue-banded Kingfisher,Alcedo euryzona,Coraciiformes,Alcedinidae (Kingfishers),, 9581.2,issf,bubkin1,Blue-banded Kingfisher (Malay),Alcedo euryzona peninsulae,Coraciiformes,Alcedinidae (Kingfishers),,blbkin2 9581.4,issf,bubkin2,Blue-banded Kingfisher (Javan),Alcedo euryzona euryzona,Coraciiformes,Alcedinidae (Kingfishers),,blbkin2 9582,species,smbkin1,Small Blue Kingfisher,Alcedo coerulescens,Coraciiformes,Alcedinidae (Kingfishers),, 9583,species,azukin1,Azure Kingfisher,Ceyx azureus,Coraciiformes,Alcedinidae (Kingfishers),, 9592,species,biskin1,Bismarck Kingfisher,Ceyx websteri,Coraciiformes,Alcedinidae (Kingfishers),, 9596,species,inbkin2,Indigo-banded Kingfisher,Ceyx cyanopectus,Coraciiformes,Alcedinidae (Kingfishers),, 9596.2,issf,inbkin1,Indigo-banded Kingfisher (Northern),Ceyx cyanopectus cyanopectus,Coraciiformes,Alcedinidae (Kingfishers),,inbkin2 9596.4,issf,inbkin3,Indigo-banded Kingfisher (Southern),Ceyx cyanopectus nigrirostris,Coraciiformes,Alcedinidae (Kingfishers),,inbkin2 9600,species,norsik1,Northern Silvery-Kingfisher,Ceyx flumenicolus,Coraciiformes,Alcedinidae (Kingfishers),, 9601,species,silkin1,Southern Silvery-Kingfisher,Ceyx argentatus,Coraciiformes,Alcedinidae (Kingfishers),, 9616,species,litkin1,Little Kingfisher,Ceyx pusillus,Coraciiformes,Alcedinidae (Kingfishers),, 9626,species,bkbkin1,Black-backed Dwarf-Kingfisher,Ceyx erithaca,Coraciiformes,Alcedinidae (Kingfishers),, 9631.5,species,rubkin1,Rufous-backed Dwarf-Kingfisher,Ceyx rufidorsa,Coraciiformes,Alcedinidae (Kingfishers),, 9631.7,slash,y00867,Black-backed/Rufous-backed Dwarf-Kingfisher,Ceyx erithaca/rufidorsa,Coraciiformes,Alcedinidae (Kingfishers),, 9632,species,phikin1,Philippine Dwarf-Kingfisher,Ceyx melanurus,Coraciiformes,Alcedinidae (Kingfishers),, 9633,issf,phidwk1,Philippine Dwarf-Kingfisher (Luzon),Ceyx melanurus melanurus,Coraciiformes,Alcedinidae (Kingfishers),,phikin1 9634,issf,phidwk2,Philippine Dwarf-Kingfisher (Samar),Ceyx melanurus samarensis,Coraciiformes,Alcedinidae (Kingfishers),,phikin1 9635,issf,phidwk3,Philippine Dwarf-Kingfisher (Mindanao),Ceyx melanurus mindanensis,Coraciiformes,Alcedinidae (Kingfishers),,phikin1 9636,species,sulkin1,Sulawesi Dwarf-Kingfisher,Ceyx fallax,Coraciiformes,Alcedinidae (Kingfishers),, 9640.1,species,vardwk1,Dimorphic Dwarf-Kingfisher,Ceyx margarethae,Coraciiformes,Alcedinidae (Kingfishers),, 9640.2,species,vardwk2,Sula Dwarf-Kingfisher,Ceyx wallacii,Coraciiformes,Alcedinidae (Kingfishers),, 9640.3,species,vardwk3,North Moluccan Dwarf-Kingfisher,Ceyx uropygialis,Coraciiformes,Alcedinidae (Kingfishers),, 9640.4,species,vardwk4,Seram Dwarf-Kingfisher,Ceyx lepidus,Coraciiformes,Alcedinidae (Kingfishers),, 9640.5,species,vardwk5,Buru Dwarf-Kingfisher,Ceyx cajeli,Coraciiformes,Alcedinidae (Kingfishers),, 9640.6,species,vardwk6,Papuan Dwarf-Kingfisher,Ceyx solitarius,Coraciiformes,Alcedinidae (Kingfishers),, 9640.7,species,vardwk7,Manus Dwarf-Kingfisher,Ceyx dispar,Coraciiformes,Alcedinidae (Kingfishers),, 9640.8,species,vardwk8,New Ireland Dwarf-Kingfisher,Ceyx mulcatus,Coraciiformes,Alcedinidae (Kingfishers),, 9640.82,species,vardwk9,New Britain Dwarf-Kingfisher,Ceyx sacerdotis,Coraciiformes,Alcedinidae (Kingfishers),, 9640.84,species,vardwk10,Bougainville Dwarf-Kingfisher,Ceyx pallidus,Coraciiformes,Alcedinidae (Kingfishers),, 9640.86,species,vardwk11,New Georgia Dwarf-Kingfisher,Ceyx collectoris,Coraciiformes,Alcedinidae (Kingfishers),, 9640.88,species,vardwk12,North Solomons Dwarf-Kingfisher,Ceyx meeki,Coraciiformes,Alcedinidae (Kingfishers),, 9640.9,species,vardwk13,Malaita Dwarf-Kingfisher,Ceyx malaitae,Coraciiformes,Alcedinidae (Kingfishers),, 9640.92,species,vardwk14,Guadalcanal Dwarf-Kingfisher,Ceyx nigromaxilla,Coraciiformes,Alcedinidae (Kingfishers),, 9640.94,species,vardwk15,Makira Dwarf-Kingfisher,Ceyx gentianus,Coraciiformes,Alcedinidae (Kingfishers),, 9641,species,malkin1,Malachite Kingfisher,Corythornis cristatus,Coraciiformes,Alcedinidae (Kingfishers),, 9641.1,issf,malkin3,Malachite Kingfisher (Mainland),Corythornis cristatus [cristatus Group],Coraciiformes,Alcedinidae (Kingfishers),,malkin1 9641.6,issf,malkin5,Malachite Kingfisher (Sao Tome),Corythornis cristatus thomensis,Coraciiformes,Alcedinidae (Kingfishers),,malkin1 9641.8,issf,malkin4,Malachite Kingfisher (Principe),Corythornis cristatus nais,Coraciiformes,Alcedinidae (Kingfishers),,malkin1 9642,species,malkin2,Malagasy Kingfisher,Corythornis vintsioides,Coraciiformes,Alcedinidae (Kingfishers),, 9643,species,whbkin1,White-bellied Kingfisher,Corythornis leucogaster,Coraciiformes,Alcedinidae (Kingfishers),, 9656,species,mapkin1,Madagascar Pygmy-Kingfisher,Corythornis madagascariensis,Coraciiformes,Alcedinidae (Kingfishers),, 9659,species,afpkin1,African Pygmy-Kingfisher,Ispidina picta,Coraciiformes,Alcedinidae (Kingfishers),, 9663,species,dwakin1,African Dwarf Kingfisher,Ispidina lecontei,Coraciiformes,Alcedinidae (Kingfishers),, 9664,species,bankin1,Banded Kingfisher,Lacedo pulchella,Coraciiformes,Alcedinidae (Kingfishers),, 9664.2,issf,bankin2,Banded Kingfisher (Banded),Lacedo pulchella [pulchella Group],Coraciiformes,Alcedinidae (Kingfishers),,bankin1 9664.4,issf,bankin3,Banded Kingfisher (Black-faced),Lacedo pulchella melanops,Coraciiformes,Alcedinidae (Kingfishers),,bankin1 9669,species,laukoo1,Laughing Kookaburra,Dacelo novaeguineae,Coraciiformes,Alcedinidae (Kingfishers),, 9672,species,blwkoo1,Blue-winged Kookaburra,Dacelo leachii,Coraciiformes,Alcedinidae (Kingfishers),, 9679,species,spakoo1,Spangled Kookaburra,Dacelo tyro,Coraciiformes,Alcedinidae (Kingfishers),, 9682,species,rubkoo1,Rufous-bellied Kookaburra,Dacelo gaudichaud,Coraciiformes,Alcedinidae (Kingfishers),, 9683,species,shbkoo1,Shovel-billed Kookaburra,Clytoceyx rex,Coraciiformes,Alcedinidae (Kingfishers),, 9686,species,lilkin1,Lilac-cheeked Kingfisher,Cittura cyanotis,Coraciiformes,Alcedinidae (Kingfishers),, 9686.2,issf,lickin1,Lilac-cheeked Kingfisher (Sangihe),Cittura cyanotis sanghirensis,Coraciiformes,Alcedinidae (Kingfishers),,lilkin1 9686.4,issf,lickin2,Lilac-cheeked Kingfisher (Sulawesi),Cittura cyanotis cyanotis,Coraciiformes,Alcedinidae (Kingfishers),,lilkin1 9689,species,bnwkin1,Brown-winged Kingfisher,Pelargopsis amauroptera,Coraciiformes,Alcedinidae (Kingfishers),, 9690,species,stbkin1,Stork-billed Kingfisher,Pelargopsis capensis,Coraciiformes,Alcedinidae (Kingfishers),, 9706,species,blbkin1,Great-billed Kingfisher,Pelargopsis melanorhyncha,Coraciiformes,Alcedinidae (Kingfishers),, 9710,species,rudkin1,Ruddy Kingfisher,Halcyon coromanda,Coraciiformes,Alcedinidae (Kingfishers),, 9721,species,chbkin2,Chocolate-backed Kingfisher,Halcyon badia,Coraciiformes,Alcedinidae (Kingfishers),, 9724,species,whtkin2,White-throated Kingfisher,Halcyon smyrnensis,Coraciiformes,Alcedinidae (Kingfishers),, 9730,species,bnbkin1,Brown-breasted Kingfisher,Halcyon gularis,Coraciiformes,Alcedinidae (Kingfishers),, 9731,species,gyhkin1,Gray-headed Kingfisher,Halcyon leucocephala,Coraciiformes,Alcedinidae (Kingfishers),, 9737,species,blckin1,Black-capped Kingfisher,Halcyon pileata,Coraciiformes,Alcedinidae (Kingfishers),, 9738,species,javkin1,Javan Kingfisher,Halcyon cyanoventris,Coraciiformes,Alcedinidae (Kingfishers),, 9739,species,wookin1,Woodland Kingfisher,Halcyon senegalensis,Coraciiformes,Alcedinidae (Kingfishers),, 9743,species,mankin2,Mangrove Kingfisher,Halcyon senegaloides,Coraciiformes,Alcedinidae (Kingfishers),, 9746,species,blbkin4,Blue-breasted Kingfisher,Halcyon malimbica,Coraciiformes,Alcedinidae (Kingfishers),, 9751,species,brhkin1,Brown-hooded Kingfisher,Halcyon albiventris,Coraciiformes,Alcedinidae (Kingfishers),, 9756,species,strkin1,Striped Kingfisher,Halcyon chelicuti,Coraciiformes,Alcedinidae (Kingfishers),, 9759,species,blbkin3,Blue-black Kingfisher,Todiramphus nigrocyaneus,Coraciiformes,Alcedinidae (Kingfishers),, 9763,species,rulkin1,Rufous-lored Kingfisher,Todiramphus winchelli,Coraciiformes,Alcedinidae (Kingfishers),, 9769,species,bawkin1,Blue-and-white Kingfisher,Todiramphus diops,Coraciiformes,Alcedinidae (Kingfishers),, 9770,species,lazkin1,Lazuli Kingfisher,Todiramphus lazuli,Coraciiformes,Alcedinidae (Kingfishers),, 9771,species,rebkin2,Red-backed Kingfisher,Todiramphus pyrrhopygius,Coraciiformes,Alcedinidae (Kingfishers),, 9775,species,forkin1,Forest Kingfisher,Todiramphus macleayii,Coraciiformes,Alcedinidae (Kingfishers),, 9776,species,nebkin1,New Britain Kingfisher,Todiramphus albonotatus,Coraciiformes,Alcedinidae (Kingfishers),, 9777,species,ultkin1,Ultramarine Kingfisher,Todiramphus leucopygius,Coraciiformes,Alcedinidae (Kingfishers),, 9778,species,chbkin1,Vanuatu Kingfisher,Todiramphus farquhari,Coraciiformes,Alcedinidae (Kingfishers),, 9780,species,markin2,Marquesas Kingfisher,Todiramphus godeffroyi,Coraciiformes,Alcedinidae (Kingfishers),, 9781,species,mankin1,Mewing Kingfisher,Todiramphus ruficollaris,Coraciiformes,Alcedinidae (Kingfishers),, 9782,species,tahkin1,Society Kingfisher,Todiramphus veneratus,Coraciiformes,Alcedinidae (Kingfishers),, 9783,issf,sockin1,Society Kingfisher (Moorea),Todiramphus veneratus youngi,Coraciiformes,Alcedinidae (Kingfishers),,tahkin1 9784,issf,sockin2,Society Kingfisher (Tahiti),Todiramphus veneratus veneratus,Coraciiformes,Alcedinidae (Kingfishers),,tahkin1 9785,species,niakin1,Niau Kingfisher,Todiramphus gertrudae,Coraciiformes,Alcedinidae (Kingfishers),, 9786,species,mankin3,Mangareva Kingfisher,Todiramphus gambieri,Coraciiformes,Alcedinidae (Kingfishers),, 9787,species,chakin2,Chattering Kingfisher,Todiramphus tutus,Coraciiformes,Alcedinidae (Kingfishers),, 9787.5,species,packin1,Pacific Kingfisher,Todiramphus sacer,Coraciiformes,Alcedinidae (Kingfishers),, 9792,issf,colkin5,Pacific Kingfisher (Vanuatu),Todiramphus sacer [juliae Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 9793,issf,colkin7,Pacific Kingfisher (South Pacific),Todiramphus sacer [sacer Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 9800,issf,colkin8,Pacific Kingfisher (Solomon Is.),Todiramphus sacer [solomonis Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 9804,issf,sackin6,Pacific Kingfisher (Fiji),Todiramphus sacer [vitiensis Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 9804.2,issf,packin2,Pacific Kingfisher (Lau),Todiramphus sacer marinus,Coraciiformes,Alcedinidae (Kingfishers),,packin1 9808,species,mickin4,Palau Kingfisher,Todiramphus pelewensis,Coraciiformes,Alcedinidae (Kingfishers),, 9808.5,species,mickin1,Guam Kingfisher,Todiramphus cinnamominus,Coraciiformes,Alcedinidae (Kingfishers),, 9809,issf,mickin3,Guam Kingfisher (Miyako-Jima I.),Todiramphus cinnamominus miyakoensis,Coraciiformes,Alcedinidae (Kingfishers),,mickin1 9812,issf,mickin2,Guam Kingfisher (Guam),Todiramphus cinnamominus cinnamominus,Coraciiformes,Alcedinidae (Kingfishers),,mickin1 9813,species,mickin5,Pohnpei Kingfisher,Todiramphus reichenbachii,Coraciiformes,Alcedinidae (Kingfishers),, 9814,species,flbkin1,Flat-billed Kingfisher,Todiramphus recurvirostris,Coraciiformes,Alcedinidae (Kingfishers),, 9824,species,colkin17,Colonist Kingfisher,Todiramphus colonus,Coraciiformes,Alcedinidae (Kingfishers),, 9829,species,colkin9,Torresian Kingfisher,Todiramphus sordidus,Coraciiformes,Alcedinidae (Kingfishers),, 9836,species,sackin1,Sacred Kingfisher,Todiramphus sanctus,Coraciiformes,Alcedinidae (Kingfishers),, 9837,issf,sackin2,Sacred Kingfisher (Australasian),Todiramphus sanctus sanctus,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 9838,issf,sackin4,Sacred Kingfisher (New Caledonian),Todiramphus sanctus canacorum,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 9839,issf,sackin5,Sacred Kingfisher (Loyalty Is.),Todiramphus sanctus macmillani,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 9840,issf,sackin3,Sacred Kingfisher (New Zealand),Todiramphus sanctus vagans,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 9841,species,colkin1,Collared Kingfisher,Todiramphus chloris,Coraciiformes,Alcedinidae (Kingfishers),, 9841.2,issf,colkin10,Collared Kingfisher (Red Sea),Todiramphus chloris abyssinicus,Coraciiformes,Alcedinidae (Kingfishers),,colkin1 9845,issf,colkin12,Collared Kingfisher (Arabian),Todiramphus chloris kalbaensis,Coraciiformes,Alcedinidae (Kingfishers),,colkin1 9846,issf,colkin4,Collared Kingfisher (Oriental),Todiramphus chloris [humii Group],Coraciiformes,Alcedinidae (Kingfishers),,colkin1 9847,issf,colkin14,Collared Kingfisher (Nicobar Is.),Todiramphus chloris occipitalis,Coraciiformes,Alcedinidae (Kingfishers),,colkin1 9848,issf,colkin3,Collared Kingfisher (Collared),Todiramphus chloris [chloris Group],Coraciiformes,Alcedinidae (Kingfishers),,colkin1 9849,species,beakin2,Beach Kingfisher,Todiramphus saurophagus,Coraciiformes,Alcedinidae (Kingfishers),, 9849.1,issf,beakin3,Beach Kingfisher (Beach),Todiramphus saurophagus saurophagus,Coraciiformes,Alcedinidae (Kingfishers),,beakin2 9849.3,issf,beakin1,Beach Kingfisher (Admiralty Is.),Todiramphus saurophagus admiralitatis,Coraciiformes,Alcedinidae (Kingfishers),,beakin2 9849.5,species,colkin2,Mariana Kingfisher,Todiramphus albicilla,Coraciiformes,Alcedinidae (Kingfishers),, 9849.7,species,melkin1,Melanesian Kingfisher,Todiramphus tristrami,Coraciiformes,Alcedinidae (Kingfishers),, 9850,issf,colkin13,Melanesian Kingfisher (St. Matthias Is.),Todiramphus tristrami matthiae,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 9850.2,issf,colkin15,Melanesian Kingfisher (Dampier Straits),Todiramphus tristrami stresemanni,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 9850.4,issf,colkin6,Melanesian Kingfisher (New Ireland),Todiramphus tristrami [nusae Group],Coraciiformes,Alcedinidae (Kingfishers),,melkin1 9850.6,issf,colkin16,Melanesian Kingfisher (New Britain),Todiramphus tristrami tristrami,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 9850.8,issf,colkin11,Melanesian Kingfisher (Bougainville-Guadalcanal),Todiramphus tristrami alberti,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 9853,species,somkin1,Sombre Kingfisher,Todiramphus funebris,Coraciiformes,Alcedinidae (Kingfishers),, 9854,species,talkin1,Talaud Kingfisher,Todiramphus enigma,Coraciiformes,Alcedinidae (Kingfishers),, 9854.2,species,cibkin1,Cinnamon-banded Kingfisher,Todiramphus australasia,Coraciiformes,Alcedinidae (Kingfishers),, 9858,spuh,todira1,Todiramphus sp.,Todiramphus sp.,Coraciiformes,Alcedinidae (Kingfishers),, 9862,species,whrkin1,White-rumped Kingfisher,Caridonax fulgidus,Coraciiformes,Alcedinidae (Kingfishers),, 9863,species,hobkin1,Hook-billed Kingfisher,Melidora macrorrhina,Coraciiformes,Alcedinidae (Kingfishers),, 9867,species,moukin2,Moustached Kingfisher,Actenoides bougainvillei,Coraciiformes,Alcedinidae (Kingfishers),, 9867.2,issf,moukin3,Moustached Kingfisher (Bougainville),Actenoides bougainvillei bougainvillei,Coraciiformes,Alcedinidae (Kingfishers),,moukin2 9867.4,issf,moukin4,Moustached Kingfisher (Guadalcanal),Actenoides bougainvillei excelsus,Coraciiformes,Alcedinidae (Kingfishers),,moukin2 9870,species,ruckin1,Rufous-collared Kingfisher,Actenoides concretus,Coraciiformes,Alcedinidae (Kingfishers),, 9874,species,spokin1,Spotted Kingfisher,Actenoides lindsayi,Coraciiformes,Alcedinidae (Kingfishers),, 9877,species,blckin2,Blue-capped Kingfisher,Actenoides hombroni,Coraciiformes,Alcedinidae (Kingfishers),, 9878,species,grbkin1,Green-backed Kingfisher,Actenoides monachus,Coraciiformes,Alcedinidae (Kingfishers),, 9878.2,issf,gnbkin1,Green-backed Kingfisher (Blue-headed),Actenoides monachus monachus,Coraciiformes,Alcedinidae (Kingfishers),,grbkin1 9878.4,issf,gnbkin2,Green-backed Kingfisher (Black-headed),Actenoides monachus capucinus,Coraciiformes,Alcedinidae (Kingfishers),,grbkin1 9881,species,scakin1,Scaly-breasted Kingfisher,Actenoides princeps,Coraciiformes,Alcedinidae (Kingfishers),, 9881.2,issf,scbkin1,Scaly-breasted Kingfisher (Scaly-breasted),Actenoides princeps princeps/erythrorhamphus,Coraciiformes,Alcedinidae (Kingfishers),,scakin1 9881.4,issf,scbkin2,Scaly-breasted Kingfisher (Plain-backed),Actenoides princeps regalis,Coraciiformes,Alcedinidae (Kingfishers),,scakin1 9885,species,yebkin1,Yellow-billed Kingfisher,Syma torotoro,Coraciiformes,Alcedinidae (Kingfishers),, 9889,species,moukin1,Mountain Kingfisher,Syma megarhyncha,Coraciiformes,Alcedinidae (Kingfishers),, 9889.2,slash,y00868,Yellow-billed/Mountain Kingfisher,Syma torotoro/megarhyncha,Coraciiformes,Alcedinidae (Kingfishers),, 9893,species,lipkin1,Little Paradise-Kingfisher,Tanysiptera hydrocharis,Coraciiformes,Alcedinidae (Kingfishers),, 9894,species,copkin1,Common Paradise-Kingfisher,Tanysiptera galatea,Coraciiformes,Alcedinidae (Kingfishers),, 9910,species,kopkin1,Kofiau Paradise-Kingfisher,Tanysiptera ellioti,Coraciiformes,Alcedinidae (Kingfishers),, 9911,species,bipkin1,Biak Paradise-Kingfisher,Tanysiptera riedelii,Coraciiformes,Alcedinidae (Kingfishers),, 9912,species,nupkin1,Numfor Paradise-Kingfisher,Tanysiptera carolinae,Coraciiformes,Alcedinidae (Kingfishers),, 9913,species,rbpkin1,Red-breasted Paradise-Kingfisher,Tanysiptera nympha,Coraciiformes,Alcedinidae (Kingfishers),, 9914,species,bhpkin1,Brown-headed Paradise-Kingfisher,Tanysiptera danae,Coraciiformes,Alcedinidae (Kingfishers),, 9915,species,bbpkin1,Buff-breasted Paradise-Kingfisher,Tanysiptera sylvia,Coraciiformes,Alcedinidae (Kingfishers),, 9915.5,issf,bubpak1,Buff-breasted Paradise-Kingfisher (Buff-breasted),Tanysiptera sylvia sylvia/salvadoriana,Coraciiformes,Alcedinidae (Kingfishers),,bbpkin1 9919.5,issf,bubpak2,Buff-breasted Paradise-Kingfisher (Black-capped),Tanysiptera sylvia nigriceps/leucura,Coraciiformes,Alcedinidae (Kingfishers),,bbpkin1 9920,species,giakin3,Giant Kingfisher,Megaceryle maxima,Coraciiformes,Alcedinidae (Kingfishers),, 9923,species,crekin1,Crested Kingfisher,Megaceryle lugubris,Coraciiformes,Alcedinidae (Kingfishers),, 9928,species,rinkin1,Ringed Kingfisher,Megaceryle torquata,Coraciiformes,Alcedinidae (Kingfishers),, 9929,issf,rinkin3,Ringed Kingfisher (Northern),Megaceryle torquata torquata/stictipennis,Coraciiformes,Alcedinidae (Kingfishers),,rinkin1 9930,issf,rinkin4,Ringed Kingfisher (Patagonian),Megaceryle torquata stellata,Coraciiformes,Alcedinidae (Kingfishers),,rinkin1 9932,species,belkin1,Belted Kingfisher,Megaceryle alcyon,Coraciiformes,Alcedinidae (Kingfishers),, 9933,species,piekin1,Pied Kingfisher,Ceryle rudis,Coraciiformes,Alcedinidae (Kingfishers),, 9938,species,amakin1,Amazon Kingfisher,Chloroceryle amazona,Coraciiformes,Alcedinidae (Kingfishers),, 9939,species,grnkin,Green Kingfisher,Chloroceryle americana,Coraciiformes,Alcedinidae (Kingfishers),, 9945,species,garkin1,Green-and-rufous Kingfisher,Chloroceryle inda,Coraciiformes,Alcedinidae (Kingfishers),, 9946,species,ampkin1,American Pygmy Kingfisher,Chloroceryle aenea,Coraciiformes,Alcedinidae (Kingfishers),, 9946.2,spuh,chloro3,Chloroceryle sp.,Chloroceryle sp.,Coraciiformes,Alcedinidae (Kingfishers),, 9949,spuh,kingfi1,kingfisher sp.,Alcedinidae sp.,Coraciiformes,Alcedinidae (Kingfishers),, 9950,species,rbbeat1,Red-bearded Bee-eater,Nyctyornis amictus,Coraciiformes,Meropidae (Bee-eaters),"Bee-eaters, Rollers, and Allies", 9951,species,bbbeat1,Blue-bearded Bee-eater,Nyctyornis athertoni,Coraciiformes,Meropidae (Bee-eaters),, 9954,species,pbbeat1,Purple-bearded Bee-eater,Meropogon forsteni,Coraciiformes,Meropidae (Bee-eaters),, 9955,species,blbeat1,Black Bee-eater,Merops gularis,Coraciiformes,Meropidae (Bee-eaters),, 9958,species,bumbee1,Blue-moustached Bee-eater,Merops mentalis,Coraciiformes,Meropidae (Bee-eaters),, 9959,species,bhbeat2,Blue-headed Bee-eater,Merops muelleri,Coraciiformes,Meropidae (Bee-eaters),, 9961,species,rtbeat1,Red-throated Bee-eater,Merops bulocki,Coraciiformes,Meropidae (Bee-eaters),, 9964,species,wfbeat1,White-fronted Bee-eater,Merops bullockoides,Coraciiformes,Meropidae (Bee-eaters),, 9967,species,libeat1,Little Bee-eater,Merops pusillus,Coraciiformes,Meropidae (Bee-eaters),, 9973,species,bbbeat2,Blue-breasted Bee-eater,Merops variegatus,Coraciiformes,Meropidae (Bee-eaters),, 9978,species,ccbeat1,Cinnamon-chested Bee-eater,Merops oreobates,Coraciiformes,Meropidae (Bee-eaters),, 9979,species,stbeat1,Swallow-tailed Bee-eater,Merops hirundineus,Coraciiformes,Meropidae (Bee-eaters),, 9984,species,bhbeat1,Black-headed Bee-eater,Merops breweri,Coraciiformes,Meropidae (Bee-eaters),, 9985,species,sobeat1,Somali Bee-eater,Merops revoilii,Coraciiformes,Meropidae (Bee-eaters),, 9986,species,wtbeat1,White-throated Bee-eater,Merops albicollis,Coraciiformes,Meropidae (Bee-eaters),, 9987,species,grbeat1,Green Bee-eater,Merops orientalis,Coraciiformes,Meropidae (Bee-eaters),, 9987.2,issf,grnbee1,Green Bee-eater (Yellow-throated),Merops orientalis [viridissimus Group],Coraciiformes,Meropidae (Bee-eaters),,grbeat1 9987.4,issf,grnbee2,Green Bee-eater (Arabian),Merops orientalis cyanophrys/najdanus,Coraciiformes,Meropidae (Bee-eaters),,grbeat1 9987.6,issf,grnbee3,Green Bee-eater (Russet-crowned),Merops orientalis [orientalis Group],Coraciiformes,Meropidae (Bee-eaters),,grbeat1 9996,species,bobeat1,Bšhm's Bee-eater,Merops boehmi,Coraciiformes,Meropidae (Bee-eaters),, 9997,species,btbeat2,Blue-throated Bee-eater,Merops viridis,Coraciiformes,Meropidae (Bee-eaters),, 9999,species,rucbee1,Rufous-crowned Bee-eater,Merops americanus,Coraciiformes,Meropidae (Bee-eaters),, 10000,species,bcbeat1,Blue-cheeked Bee-eater,Merops persicus,Coraciiformes,Meropidae (Bee-eaters),, 10003,species,mabeat1,Madagascar Bee-eater,Merops superciliosus,Coraciiformes,Meropidae (Bee-eaters),, 10006,species,btbeat1,Blue-tailed Bee-eater,Merops philippinus,Coraciiformes,Meropidae (Bee-eaters),, 10006.5,slash,y00734,Blue-cheeked/Blue-tailed Bee-eater,Merops persicus/philippinus,Coraciiformes,Meropidae (Bee-eaters),, 10007,species,rabeat1,Rainbow Bee-eater,Merops ornatus,Coraciiformes,Meropidae (Bee-eaters),, 10008,species,eubeat1,European Bee-eater,Merops apiaster,Coraciiformes,Meropidae (Bee-eaters),, 10009,species,chbeat1,Chestnut-headed Bee-eater,Merops leschenaulti,Coraciiformes,Meropidae (Bee-eaters),, 10013,species,robeat1,Rosy Bee-eater,Merops malimbicus,Coraciiformes,Meropidae (Bee-eaters),, 10014,species,ncbeat1,Northern Carmine Bee-eater,Merops nubicus,Coraciiformes,Meropidae (Bee-eaters),, 10015,species,scbeat1,Southern Carmine Bee-eater,Merops nubicoides,Coraciiformes,Meropidae (Bee-eaters),, 10016,spuh,bee-ea1,bee-eater sp.,Merops sp.,Coraciiformes,Meropidae (Bee-eaters),, 10017,species,eurrol1,European Roller,Coracias garrulus,Coraciiformes,Coraciidae (Rollers),, 10020,species,abyrol2,Abyssinian Roller,Coracias abyssinicus,Coraciiformes,Coraciidae (Rollers),, 10021,species,librol2,Lilac-breasted Roller,Coracias caudatus,Coraciiformes,Coraciidae (Rollers),, 10021.2,issf,librol1,Lilac-breasted Roller (Blue-breasted),Coracias caudatus lorti,Coraciiformes,Coraciidae (Rollers),,librol2 10021.4,issf,librol3,Lilac-breasted Roller (Lilac-breasted),Coracias caudatus caudatus,Coraciiformes,Coraciidae (Rollers),,librol2 10024,species,ratrol2,Racket-tailed Roller,Coracias spatulatus,Coraciiformes,Coraciidae (Rollers),, 10025,species,rucrol2,Rufous-crowned Roller,Coracias naevius,Coraciiformes,Coraciidae (Rollers),, 10028,species,indrol1,Indian Roller,Coracias benghalensis,Coraciiformes,Coraciidae (Rollers),, 10029,issf,indrol2,Indian Roller (Indian),Coracias benghalensis benghalensis/indicus,Coraciiformes,Coraciidae (Rollers),,indrol1 10029.5,issf,indrol3,Indian Roller (Black-billed),Coracias benghalensis affinis,Coraciiformes,Coraciidae (Rollers),,indrol1 10030,intergrade,indrol4,Indian Roller (Indian x Black-billed),Coracias benghalensis benghalensis/indicus x affinis,Coraciiformes,Coraciidae (Rollers),,indrol1 10032,species,puwrol1,Purple-winged Roller,Coracias temminckii,Coraciiformes,Coraciidae (Rollers),, 10033,species,blbrol1,Blue-bellied Roller,Coracias cyanogaster,Coraciiformes,Coraciidae (Rollers),, 10034,spuh,roller1,roller sp.,Coracias sp.,Coraciiformes,Coraciidae (Rollers),, 10035,species,brbrol1,Broad-billed Roller,Eurystomus glaucurus,Coraciiformes,Coraciidae (Rollers),, 10035.5,issf,brbrol2,Broad-billed Roller (African),Eurystomus glaucurus [afer Group],Coraciiformes,Coraciidae (Rollers),,brbrol1 10039,issf,brbrol3,Broad-billed Roller (Madagascar),Eurystomus glaucurus glaucurus,Coraciiformes,Coraciidae (Rollers),,brbrol1 10040,species,bltrol1,Blue-throated Roller,Eurystomus gularis,Coraciiformes,Coraciidae (Rollers),, 10043,species,dollar1,Dollarbird,Eurystomus orientalis,Coraciiformes,Coraciidae (Rollers),, 10055,species,purrol1,Azure Roller,Eurystomus azureus,Coraciiformes,Coraciidae (Rollers),, 10056,species,slgrol1,Short-legged Ground-Roller,Brachypteracias leptosomus,Coraciiformes,Brachypteraciidae (Ground-Rollers),, 10057,species,scagrr1,Scaly Ground-Roller,Brachypteracias squamiger,Coraciiformes,Brachypteraciidae (Ground-Rollers),, 10058,species,plgrol1,Pitta-like Ground-Roller,Atelornis pittoides,Coraciiformes,Brachypteraciidae (Ground-Rollers),, 10059,species,rhgrol1,Rufous-headed Ground-Roller,Atelornis crossleyi,Coraciiformes,Brachypteraciidae (Ground-Rollers),, 10060,species,ltgrol1,Long-tailed Ground-Roller,Uratelornis chimaera,Coraciiformes,Brachypteraciidae (Ground-Rollers),, 10207,species,whnpuf2,White-necked Puffbird,Notharchus hyperrhynchus,Galbuliformes,Bucconidae (Puffbirds),Puffbirds and Jacamars, 10211,species,guipuf1,Guianan Puffbird,Notharchus macrorhynchos,Galbuliformes,Bucconidae (Puffbirds),, 10212,species,bubpuf1,Buff-bellied Puffbird,Notharchus swainsoni,Galbuliformes,Bucconidae (Puffbirds),, 10213,species,blbpuf1,Black-breasted Puffbird,Notharchus pectoralis,Galbuliformes,Bucconidae (Puffbirds),, 10214,species,brbpuf1,Brown-banded Puffbird,Notharchus ordii,Galbuliformes,Bucconidae (Puffbirds),, 10215,species,piepuf1,Pied Puffbird,Notharchus tectus,Galbuliformes,Bucconidae (Puffbirds),, 10215.2,issf,piepuf2,Pied Puffbird (Lesser),Notharchus tectus subtectus,Galbuliformes,Bucconidae (Puffbirds),,piepuf1 10215.4,issf,piepuf3,Pied Puffbird (Greater),Notharchus tectus tectus/picatus,Galbuliformes,Bucconidae (Puffbirds),,piepuf1 10219,species,chcpuf1,Chestnut-capped Puffbird,Bucco macrodactylus,Galbuliformes,Bucconidae (Puffbirds),, 10220,species,spopuf1,Spotted Puffbird,Bucco tamatia,Galbuliformes,Bucconidae (Puffbirds),, 10224,species,socpuf1,Sooty-capped Puffbird,Bucco noanamae,Galbuliformes,Bucconidae (Puffbirds),, 10225,species,colpuf1,Collared Puffbird,Bucco capensis,Galbuliformes,Bucconidae (Puffbirds),, 10226,species,barpuf1,Barred Puffbird,Nystalus radiatus,Galbuliformes,Bucconidae (Puffbirds),, 10226.5,species,wespuf1,Western Striolated-Puffbird,Nystalus obamai,Galbuliformes,Bucconidae (Puffbirds),, 10227,species,strpuf1,Eastern Striolated-Puffbird,Nystalus striolatus,Galbuliformes,Bucconidae (Puffbirds),, 10228,issf,strpuf2,Eastern Striolated-Puffbird (Natterer's),Nystalus striolatus striolatus,Galbuliformes,Bucconidae (Puffbirds),,strpuf1 10229,issf,strpuf3,Eastern Striolated-Puffbird (torridus),Nystalus striolatus torridus,Galbuliformes,Bucconidae (Puffbirds),,strpuf1 10230,species,whepuf1,White-eared Puffbird,Nystalus chacuru,Galbuliformes,Bucconidae (Puffbirds),, 10233,species,spbpuf1,Spot-backed Puffbird,Nystalus maculatus,Galbuliformes,Bucconidae (Puffbirds),, 10234,issf,spbpuf2,Spot-backed Puffbird (Spot-backed),Nystalus maculatus maculatus,Galbuliformes,Bucconidae (Puffbirds),,spbpuf1 10235,issf,spbpuf3,Spot-backed Puffbird (Chaco),Nystalus maculatus striatipectus,Galbuliformes,Bucconidae (Puffbirds),,spbpuf1 10236,species,rutpuf1,Russet-throated Puffbird,Hypnelus ruficollis,Galbuliformes,Bucconidae (Puffbirds),, 10237,issf,rutpuf2,Russet-throated Puffbird (Russet-throated),Hypnelus ruficollis [ruficollis Group],Galbuliformes,Bucconidae (Puffbirds),,rutpuf1 10241,issf,rutpuf3,Russet-throated Puffbird (Two-banded),Hypnelus ruficollis bicinctus/stoicus,Galbuliformes,Bucconidae (Puffbirds),,rutpuf1 10244,species,whcpuf1,White-chested Puffbird,Malacoptila fusca,Galbuliformes,Bucconidae (Puffbirds),, 10245,species,sempuf1,Semicollared Puffbird,Malacoptila semicincta,Galbuliformes,Bucconidae (Puffbirds),, 10246,species,crcpuf1,Crescent-chested Puffbird,Malacoptila striata,Galbuliformes,Bucconidae (Puffbirds),, 10246.2,issf,crcpuf2,Crescent-chested Puffbird (Lesser),Malacoptila striata minor,Galbuliformes,Bucconidae (Puffbirds),,crcpuf1 10246.4,issf,crcpuf3,Crescent-chested Puffbird (Greater),Malacoptila striata striata,Galbuliformes,Bucconidae (Puffbirds),,crcpuf1 10249,species,runpuf1,Rufous-necked Puffbird,Malacoptila rufa,Galbuliformes,Bucconidae (Puffbirds),, 10252,species,whwpuf1,White-whiskered Puffbird,Malacoptila panamensis,Galbuliformes,Bucconidae (Puffbirds),, 10257,species,blspuf1,Black-streaked Puffbird,Malacoptila fulvogularis,Galbuliformes,Bucconidae (Puffbirds),, 10258,species,moupuf1,Moustached Puffbird,Malacoptila mystacalis,Galbuliformes,Bucconidae (Puffbirds),, 10259,species,lanmon1,Lanceolated Monklet,Micromonacha lanceolata,Galbuliformes,Bucconidae (Puffbirds),, 10260,species,rubnun1,Rusty-breasted Nunlet,Nonnula rubecula,Galbuliformes,Bucconidae (Puffbirds),, 10268,species,fucnun1,Fulvous-chinned Nunlet,Nonnula sclateri,Galbuliformes,Bucconidae (Puffbirds),, 10269,species,bronun1,Brown Nunlet,Nonnula brunnea,Galbuliformes,Bucconidae (Puffbirds),, 10270,species,gycnun1,Gray-cheeked Nunlet,Nonnula frontalis,Galbuliformes,Bucconidae (Puffbirds),, 10274,species,rucnun1,Rufous-capped Nunlet,Nonnula ruficapilla,Galbuliformes,Bucconidae (Puffbirds),, 10279,species,chhnun1,Chestnut-headed Nunlet,Nonnula amaurocephala,Galbuliformes,Bucconidae (Puffbirds),, 10279.2,spuh,nunlet1,nunlet sp.,Nonnula sp.,Galbuliformes,Bucconidae (Puffbirds),, 10280,species,whfnun2,White-faced Nunbird,Hapaloptila castanea,Galbuliformes,Bucconidae (Puffbirds),, 10281,species,blanun1,Black Nunbird,Monasa atra,Galbuliformes,Bucconidae (Puffbirds),, 10282,species,blfnun1,Black-fronted Nunbird,Monasa nigrifrons,Galbuliformes,Bucconidae (Puffbirds),, 10285,species,whfnun1,White-fronted Nunbird,Monasa morphoeus,Galbuliformes,Bucconidae (Puffbirds),, 10286,issf,whfnun3,White-fronted Nunbird (Costa Rican),Monasa morphoeus grandior/fidelis,Galbuliformes,Bucconidae (Puffbirds),,whfnun1 10289,issf,whfnun4,White-fronted Nunbird (Pale-winged),Monasa morphoeus pallescens/sclateri,Galbuliformes,Bucconidae (Puffbirds),,whfnun1 10292,issf,whfnun5,White-fronted Nunbird (White-fronted),Monasa morphoeus [morphoeus Group],Galbuliformes,Bucconidae (Puffbirds),,whfnun1 10296,species,yebnun1,Yellow-billed Nunbird,Monasa flavirostris,Galbuliformes,Bucconidae (Puffbirds),, 10296.2,spuh,monasa1,Monasa sp.,Monasa sp.,Galbuliformes,Bucconidae (Puffbirds),, 10297,species,swwpuf1,Swallow-winged Puffbird,Chelidoptera tenebrosa,Galbuliformes,Bucconidae (Puffbirds),, 10299,spuh,buccon1,Bucconidae sp.,Bucconidae sp.,Galbuliformes,Bucconidae (Puffbirds),, 10301,species,whejac1,White-eared Jacamar,Galbalcyrhynchus leucotis,Galbuliformes,Galbulidae (Jacamars),, 10302,species,purjac2,Purus Jacamar,Galbalcyrhynchus purusianus,Galbuliformes,Galbulidae (Jacamars),, 10303,species,whtjac1,White-throated Jacamar,Brachygalba albogularis,Galbuliformes,Galbulidae (Jacamars),, 10304,species,brojac2,Brown Jacamar,Brachygalba lugubris,Galbuliformes,Galbulidae (Jacamars),, 10312,species,pahjac1,Pale-headed Jacamar,Brachygalba goeringi,Galbuliformes,Galbulidae (Jacamars),, 10313,species,dubjac1,Dusky-backed Jacamar,Brachygalba salmoni,Galbuliformes,Galbulidae (Jacamars),, 10314,species,thtjac1,Three-toed Jacamar,Jacamaralcyon tridactyla,Galbuliformes,Galbulidae (Jacamars),, 10315,species,yebjac1,Yellow-billed Jacamar,Galbula albirostris,Galbuliformes,Galbulidae (Jacamars),, 10315.2,issf,yebjac2,Yellow-billed Jacamar (Yellow-billed),Galbula albirostris albirostris,Galbuliformes,Galbulidae (Jacamars),,yebjac1 10315.4,issf,yebjac3,Yellow-billed Jacamar (Cerise-crowned),Galbula albirostris chalcocephala,Galbuliformes,Galbulidae (Jacamars),,yebjac1 10318,species,bucjac1,Blue-cheeked Jacamar,Galbula cyanicollis,Galbuliformes,Galbulidae (Jacamars),, 10319,species,rutjac1,Rufous-tailed Jacamar,Galbula ruficauda,Galbuliformes,Galbulidae (Jacamars),, 10320,issf,rutjac2,Rufous-tailed Jacamar (Black-chinned),Galbula ruficauda melanogenia,Galbuliformes,Galbulidae (Jacamars),,rutjac1 10321,issf,rutjac3,Rufous-tailed Jacamar (Rufous-tailed),Galbula ruficauda [ruficauda Group],Galbuliformes,Galbulidae (Jacamars),,rutjac1 10324,issf,rutjac4,Rufous-tailed Jacamar (Spot-tailed),Galbula ruficauda rufoviridis/heterogyna,Galbuliformes,Galbulidae (Jacamars),,rutjac1 10327,species,grtjac1,Green-tailed Jacamar,Galbula galbula,Galbuliformes,Galbulidae (Jacamars),, 10328,species,whcjac1,White-chinned Jacamar,Galbula tombacea,Galbuliformes,Galbulidae (Jacamars),, 10331,species,blfjac1,Bluish-fronted Jacamar,Galbula cyanescens,Galbuliformes,Galbulidae (Jacamars),, 10332,species,cocjac2,Coppery-chested Jacamar,Galbula pastazae,Galbuliformes,Galbulidae (Jacamars),, 10333,species,purjac1,Purplish Jacamar,Galbula chalcothorax,Galbuliformes,Galbulidae (Jacamars),, 10334,species,brojac1,Bronzy Jacamar,Galbula leucogastra,Galbuliformes,Galbulidae (Jacamars),, 10335,species,parjac1,Paradise Jacamar,Galbula dea,Galbuliformes,Galbulidae (Jacamars),, 10335.2,spuh,galbul1,Galbula sp.,Galbula sp.,Galbuliformes,Galbulidae (Jacamars),, 10340,species,grejac2,Great Jacamar,Jacamerops aureus,Galbuliformes,Galbulidae (Jacamars),, 10340.2,spuh,jacama1,jacamar sp.,Galbulidae sp.,Galbuliformes,Galbulidae (Jacamars),, 10345,species,yebbar1,Yellow-billed Barbet,Trachyphonus purpuratus,Piciformes,Lybiidae (African Barbets),Barbets and Toucans, 10345.2,issf,yebbar3,Yellow-billed Barbet (Western),Trachyphonus purpuratus goffinii,Piciformes,Lybiidae (African Barbets),,yebbar1 10345.4,issf,yebbar4,Yellow-billed Barbet (Togo),Trachyphonus purpuratus togoensis,Piciformes,Lybiidae (African Barbets),,yebbar1 10345.6,issf,yebbar5,Yellow-billed Barbet (Eastern),Trachyphonus purpuratus purpuratus/elgonensis,Piciformes,Lybiidae (African Barbets),,yebbar1 10350,species,crebar1,Crested Barbet,Trachyphonus vaillantii,Piciformes,Lybiidae (African Barbets),, 10353,species,raybar1,Red-and-yellow Barbet,Trachyphonus erythrocephalus,Piciformes,Lybiidae (African Barbets),, 10357,species,yebbar2,Yellow-breasted Barbet,Trachyphonus margaritatus,Piciformes,Lybiidae (African Barbets),, 10360,species,darbar1,D'Arnaud's Barbet,Trachyphonus darnaudii,Piciformes,Lybiidae (African Barbets),, 10361,issf,darbar2,D'Arnaud's Barbet (D'Arnaud's),Trachyphonus darnaudii darnaudii/boehmi,Piciformes,Lybiidae (African Barbets),,darbar1 10363,issf,darbar3,D'Arnaud's Barbet (Usambiro),Trachyphonus darnaudii usambiro,Piciformes,Lybiidae (African Barbets),,darbar1 10364,issf,darbar4,D'Arnaud's Barbet (Black-capped),Trachyphonus darnaudii emini,Piciformes,Lybiidae (African Barbets),,darbar1 10365,species,gytbar1,Gray-throated Barbet,Gymnobucco bonapartei,Piciformes,Lybiidae (African Barbets),, 10365.2,issf,gytbar2,Gray-throated Barbet (Gray-throated),Gymnobucco bonapartei bonapartei,Piciformes,Lybiidae (African Barbets),,gytbar1 10365.4,issf,gytbar3,Gray-throated Barbet (Gray-headed),Gymnobucco bonapartei cinereiceps,Piciformes,Lybiidae (African Barbets),,gytbar1 10368,species,slabar1,Sladen's Barbet,Gymnobucco sladeni,Piciformes,Lybiidae (African Barbets),, 10369,species,brnbar1,Bristle-nosed Barbet,Gymnobucco peli,Piciformes,Lybiidae (African Barbets),, 10370,species,nafbar1,Naked-faced Barbet,Gymnobucco calvus,Piciformes,Lybiidae (African Barbets),, 10370.2,issf,nafbar2,Naked-faced Barbet (Naked-faced),Gymnobucco calvus calvus/congicus,Piciformes,Lybiidae (African Barbets),,nafbar1 10370.4,issf,nafbar3,Naked-faced Barbet (Pale-throated),Gymnobucco calvus vernayi,Piciformes,Lybiidae (African Barbets),,nafbar1 10374,species,whebar1,White-eared Barbet,Stactolaema leucotis,Piciformes,Lybiidae (African Barbets),, 10374.2,issf,whebar2,White-eared Barbet (White-lined),Stactolaema leucotis leucogrammica,Piciformes,Lybiidae (African Barbets),,whebar1 10374.4,issf,whebar3,White-eared Barbet (White-eared),Stactolaema leucotis leucotis/kilimensis,Piciformes,Lybiidae (African Barbets),,whebar1 10378,species,whybar1,Whyte's Barbet,Stactolaema whytii,Piciformes,Lybiidae (African Barbets),, 10385,species,ancbar1,Anchieta's Barbet,Stactolaema anchietae,Piciformes,Lybiidae (African Barbets),, 10389,species,grebar2,Green Barbet,Stactolaema olivacea,Piciformes,Lybiidae (African Barbets),, 10390,issf,grnbar2,Green Barbet (Green),Stactolaema olivacea olivacea,Piciformes,Lybiidae (African Barbets),,grebar2 10391,issf,grnbar1,Green Barbet (Howell's),Stactolaema olivacea howelli,Piciformes,Lybiidae (African Barbets),,grebar2 10392,issf,grnbar4,Green Barbet (Woodward's),Stactolaema olivacea woodwardi,Piciformes,Lybiidae (African Barbets),,grebar2 10392.5,issf,grnbar3,Green Barbet (Malawi),Stactolaema olivacea belcheri/rungweensis,Piciformes,Lybiidae (African Barbets),,grebar2 10395,species,spetin1,Speckled Tinkerbird,Pogoniulus scolopaceus,Piciformes,Lybiidae (African Barbets),, 10399,species,gretin2,Green Tinkerbird,Pogoniulus simplex,Piciformes,Lybiidae (African Barbets),, 10400,species,moutin1,Moustached Tinkerbird,Pogoniulus leucomystax,Piciformes,Lybiidae (African Barbets),, 10401,species,westin1,Western Tinkerbird,Pogoniulus coryphaea,Piciformes,Lybiidae (African Barbets),, 10402,issf,westin2,Western Tinkerbird (Western),Pogoniulus coryphaea coryphaea,Piciformes,Lybiidae (African Barbets),,westin1 10403,issf,westin3,Western Tinkerbird (Eastern),Pogoniulus coryphaea hildamariae,Piciformes,Lybiidae (African Barbets),,westin1 10404,issf,westin4,Western Tinkerbird (Angola),Pogoniulus coryphaea angolensis,Piciformes,Lybiidae (African Barbets),,westin1 10405,species,rertin1,Red-rumped Tinkerbird,Pogoniulus atroflavus,Piciformes,Lybiidae (African Barbets),, 10406,species,yettin1,Yellow-throated Tinkerbird,Pogoniulus subsulphureus,Piciformes,Lybiidae (African Barbets),, 10410,species,yertin1,Yellow-rumped Tinkerbird,Pogoniulus bilineatus,Piciformes,Lybiidae (African Barbets),, 10416.1,species,whctin1,White-chested Tinkerbird,Pogoniulus makawai,Piciformes,Lybiidae (African Barbets),, 10417,species,reftin1,Red-fronted Tinkerbird,Pogoniulus pusillus,Piciformes,Lybiidae (African Barbets),, 10421,species,yeftin1,Yellow-fronted Tinkerbird,Pogoniulus chrysoconus,Piciformes,Lybiidae (African Barbets),, 10425,spuh,tinker1,tinkerbird sp.,Pogoniulus sp.,Piciformes,Lybiidae (African Barbets),, 10426,species,yesbar1,Yellow-spotted Barbet,Buccanodon duchaillui,Piciformes,Lybiidae (African Barbets),, 10427,species,habbar1,Hairy-breasted Barbet,Tricholaema hirsuta,Piciformes,Lybiidae (African Barbets),, 10428,issf,habbar2,Hairy-breasted Barbet (Hairy-breasted),Tricholaema hirsuta hirsuta,Piciformes,Lybiidae (African Barbets),,habbar1 10428.5,issf,habbar3,Hairy-breasted Barbet (Streaky-throated),Tricholaema hirsuta [flavipunctata Group],Piciformes,Lybiidae (African Barbets),,habbar1 10432,species,refbar2,Red-fronted Barbet,Tricholaema diademata,Piciformes,Lybiidae (African Barbets),, 10435,species,miobar1,Miombo Barbet,Tricholaema frontata,Piciformes,Lybiidae (African Barbets),, 10436,species,piebar1,Pied Barbet,Tricholaema leucomelas,Piciformes,Lybiidae (African Barbets),, 10440,species,spfbar1,Spot-flanked Barbet,Tricholaema lacrymosa,Piciformes,Lybiidae (African Barbets),, 10443,species,bltbar1,Black-throated Barbet,Tricholaema melanocephala,Piciformes,Lybiidae (African Barbets),, 10448,species,banbar1,Banded Barbet,Lybius undatus,Piciformes,Lybiidae (African Barbets),, 10453,species,viebar1,Vieillot's Barbet,Lybius vieilloti,Piciformes,Lybiidae (African Barbets),, 10457,species,whhbar1,White-headed Barbet,Lybius leucocephalus,Piciformes,Lybiidae (African Barbets),, 10457.2,issf,whhbar2,White-headed Barbet (White-headed),Lybius leucocephalus [leucocephalus Group],Piciformes,Lybiidae (African Barbets),,whhbar1 10457.4,issf,whhbar3,White-headed Barbet (Brown-and-white),Lybius leucocephalus senex,Piciformes,Lybiidae (African Barbets),,whhbar1 10457.6,issf,whhbar4,White-headed Barbet (White-bellied),Lybius leucocephalus leucogaster,Piciformes,Lybiidae (African Barbets),,whhbar1 10464,species,chabar1,Chaplin's Barbet,Lybius chaplini,Piciformes,Lybiidae (African Barbets),, 10465,species,refbar1,Red-faced Barbet,Lybius rubrifacies,Piciformes,Lybiidae (African Barbets),, 10466,species,blbbar3,Black-billed Barbet,Lybius guifsobalito,Piciformes,Lybiidae (African Barbets),, 10467,species,blcbar1,Black-collared Barbet,Lybius torquatus,Piciformes,Lybiidae (African Barbets),, 10475,species,brbbar1,Brown-breasted Barbet,Lybius melanopterus,Piciformes,Lybiidae (African Barbets),, 10476,species,blbbar1,Black-backed Barbet,Lybius minor,Piciformes,Lybiidae (African Barbets),, 10477,issf,bkbbar1,Black-backed Barbet (Brown-backed),Lybius minor minor,Piciformes,Lybiidae (African Barbets),,blbbar1 10478,issf,bkbbar2,Black-backed Barbet (Black-backed),Lybius minor macclounii,Piciformes,Lybiidae (African Barbets),,blbbar1 10479,species,dotbar1,Double-toothed Barbet,Lybius bidentatus,Piciformes,Lybiidae (African Barbets),, 10482,species,beabar1,Bearded Barbet,Lybius dubius,Piciformes,Lybiidae (African Barbets),, 10483,species,blbbar4,Black-breasted Barbet,Lybius rolleti,Piciformes,Lybiidae (African Barbets),, 10483.5,spuh,afrbar1,african barbet sp.,Lybiidae sp.,Piciformes,Lybiidae (African Barbets),, 10484,species,soobar2,Sooty Barbet,Caloramphus hayii,Piciformes,Megalaimidae (Asian Barbets),, 10487,species,brnbar2,Brown Barbet,Caloramphus fuliginosus,Piciformes,Megalaimidae (Asian Barbets),, 10489,species,crfbar1,Malabar Barbet,Psilopogon malabaricus,Piciformes,Megalaimidae (Asian Barbets),, 10490,species,crfbar3,Crimson-fronted Barbet,Psilopogon rubricapillus,Piciformes,Megalaimidae (Asian Barbets),, 10491,species,copbar1,Coppersmith Barbet,Psilopogon haemacephalus,Piciformes,Megalaimidae (Asian Barbets),, 10491.2,slash,y00869,Malabar/Coppersmith Barbet,Psilopogon malabaricus/haemacephalus,Piciformes,Megalaimidae (Asian Barbets),, 10501,species,blebar1,Blue-eared Barbet,Psilopogon duvaucelii,Piciformes,Megalaimidae (Asian Barbets),, 10501.2,issf,buebar1,Blue-eared Barbet (Blue-eared),Psilopogon duvaucelii cyanotis/orientalis,Piciformes,Megalaimidae (Asian Barbets),,blebar1 10501.4,issf,buebar2,Blue-eared Barbet (Black-eared),Psilopogon duvaucelii [duvaucelii Group],Piciformes,Megalaimidae (Asian Barbets),,blebar1 10507,species,litbar1,Little Barbet,Psilopogon australis,Piciformes,Megalaimidae (Asian Barbets),, 10508,species,borbar1,Bornean Barbet,Psilopogon eximius,Piciformes,Megalaimidae (Asian Barbets),, 10511,species,fitbar1,Fire-tufted Barbet,Psilopogon pyrolophus,Piciformes,Megalaimidae (Asian Barbets),, 10512,species,grebar1,Great Barbet,Psilopogon virens,Piciformes,Megalaimidae (Asian Barbets),, 10517,species,revbar1,Red-vented Barbet,Psilopogon lagrandieri,Piciformes,Megalaimidae (Asian Barbets),, 10520,species,recbar1,Red-crowned Barbet,Psilopogon rafflesii,Piciformes,Megalaimidae (Asian Barbets),, 10521,species,retbar1,Red-throated Barbet,Psilopogon mystacophanos,Piciformes,Megalaimidae (Asian Barbets),, 10523,species,blbbar2,Black-banded Barbet,Psilopogon javensis,Piciformes,Megalaimidae (Asian Barbets),, 10524,species,gonbar1,Golden-naped Barbet,Psilopogon pulcherrimus,Piciformes,Megalaimidae (Asian Barbets),, 10525,species,yecbar1,Yellow-crowned Barbet,Psilopogon henricii,Piciformes,Megalaimidae (Asian Barbets),, 10528,species,flfbar1,Flame-fronted Barbet,Psilopogon armillaris,Piciformes,Megalaimidae (Asian Barbets),, 10531,species,grebar3,Green-eared Barbet,Psilopogon faiostrictus,Piciformes,Megalaimidae (Asian Barbets),, 10534,species,linbar1,Lineated Barbet,Psilopogon lineatus,Piciformes,Megalaimidae (Asian Barbets),, 10537,species,brhbar1,Brown-headed Barbet,Psilopogon zeylanicus,Piciformes,Megalaimidae (Asian Barbets),, 10541,species,whcbar1,White-cheeked Barbet,Psilopogon viridis,Piciformes,Megalaimidae (Asian Barbets),, 10541.2,slash,y00870,Brown-headed/White-cheeked Barbet,Psilopogon zeylanicus/viridis,Piciformes,Megalaimidae (Asian Barbets),, 10542,species,yefbar1,Yellow-fronted Barbet,Psilopogon flavifrons,Piciformes,Megalaimidae (Asian Barbets),, 10543,species,gotbar1,Golden-throated Barbet,Psilopogon franklinii,Piciformes,Megalaimidae (Asian Barbets),, 10544,issf,gotbar2,Golden-throated Barbet (White-eared),Psilopogon franklinii franklinii/ramsayi,Piciformes,Megalaimidae (Asian Barbets),,gotbar1 10547,issf,gotbar3,Golden-throated Barbet (Violet-eared),Psilopogon franklinii auricularis,Piciformes,Megalaimidae (Asian Barbets),,gotbar1 10548,species,moubar1,Mountain Barbet,Psilopogon monticola,Piciformes,Megalaimidae (Asian Barbets),, 10549,species,brtbar1,Brown-throated Barbet,Psilopogon corvinus,Piciformes,Megalaimidae (Asian Barbets),, 10550,species,gowbar1,Gold-whiskered Barbet,Psilopogon chrysopogon,Piciformes,Megalaimidae (Asian Barbets),, 10553,species,gofbar1,Gold-faced Barbet,Psilopogon chrysopsis,Piciformes,Megalaimidae (Asian Barbets),, 10554,species,moubar2,Moustached Barbet,Psilopogon incognitus,Piciformes,Megalaimidae (Asian Barbets),, 10559,species,taibar2,Taiwan Barbet,Psilopogon nuchalis,Piciformes,Megalaimidae (Asian Barbets),, 10560,species,chibar1,Chinese Barbet,Psilopogon faber,Piciformes,Megalaimidae (Asian Barbets),, 10562.2,species,bltbar2,Blue-throated Barbet,Psilopogon asiaticus,Piciformes,Megalaimidae (Asian Barbets),, 10562.4,issf,butbar1,Blue-throated Barbet (Red-crowned),Psilopogon asiaticus asiaticus,Piciformes,Megalaimidae (Asian Barbets),,bltbar2 10562.6,issf,butbar2,Blue-throated Barbet (Blue-crowned),Psilopogon asiaticus davisoni,Piciformes,Megalaimidae (Asian Barbets),,bltbar2 10562.8,species,indbar1,Indochinese Barbet,Psilopogon annamensis,Piciformes,Megalaimidae (Asian Barbets),, 10563,species,blbbar5,Black-browed Barbet,Psilopogon oorti,Piciformes,Megalaimidae (Asian Barbets),, 10564,species,tutbar1,Turquoise-throated Barbet,Psilopogon chersonesus,Piciformes,Megalaimidae (Asian Barbets),, 10565,spuh,megala1,Psilopogon sp.,Psilopogon sp.,Piciformes,Megalaimidae (Asian Barbets),, 10567,spuh,asibar1,asian barbet sp.,Megalaimidae sp.,Piciformes,Megalaimidae (Asian Barbets),, 10569,species,sccbar1,Scarlet-crowned Barbet,Capito aurovirens,Piciformes,Capitonidae (New World Barbets),, 10570,species,blgbar1,Black-girdled Barbet,Capito dayi,Piciformes,Capitonidae (New World Barbets),, 10571,species,spcbar1,Spot-crowned Barbet,Capito maculicoronatus,Piciformes,Capitonidae (New World Barbets),, 10574,species,orfbar1,Orange-fronted Barbet,Capito squamatus,Piciformes,Capitonidae (New World Barbets),, 10575,species,whmbar1,White-mantled Barbet,Capito hypoleucus,Piciformes,Capitonidae (New World Barbets),, 10579,species,scbbar2,Scarlet-banded Barbet,Capito wallacei,Piciformes,Capitonidae (New World Barbets),, 10579.3,issf,scbbar1,Scarlet-banded Barbet (Scarlet-banded),Capito wallacei wallacei,Piciformes,Capitonidae (New World Barbets),,scbbar2 10579.5,issf,sirbar1,Scarlet-banded Barbet (Sira),Capito wallacei fitzpatricki,Piciformes,Capitonidae (New World Barbets),,scbbar2 10580,species,ficbar1,Five-colored Barbet,Capito quinticolor,Piciformes,Capitonidae (New World Barbets),, 10581,species,brcbar1,Brown-chested Barbet,Capito brunneipectus,Piciformes,Capitonidae (New World Barbets),, 10582,species,blsbar1,Black-spotted Barbet,Capito niger,Piciformes,Capitonidae (New World Barbets),, 10589,species,gilbar1,Gilded Barbet,Capito auratus,Piciformes,Capitonidae (New World Barbets),, 10589.2,spuh,capito1,Capito sp.,Capito sp.,Piciformes,Capitonidae (New World Barbets),, 10593,species,letbar1,Lemon-throated Barbet,Eubucco richardsoni,Piciformes,Capitonidae (New World Barbets),, 10593.2,issf,letbar2,Lemon-throated Barbet (Lemon-throated),Eubucco richardsoni richardsoni/nigriceps,Piciformes,Capitonidae (New World Barbets),,letbar1 10593.4,issf,letbar3,Lemon-throated Barbet (Flame-throated),Eubucco richardsoni aurantiicollis/purusianus,Piciformes,Capitonidae (New World Barbets),,letbar1 10598,species,schbar1,Scarlet-hooded Barbet,Eubucco tucinkae,Piciformes,Capitonidae (New World Barbets),, 10599,species,rehbar1,Red-headed Barbet,Eubucco bourcierii,Piciformes,Capitonidae (New World Barbets),, 10606,species,verbar1,Versicolored Barbet,Eubucco versicolor,Piciformes,Capitonidae (New World Barbets),, 10606.2,issf,verbar2,Versicolored Barbet (Blue-cowled),Eubucco versicolor steerii,Piciformes,Capitonidae (New World Barbets),,verbar1 10606.4,issf,verbar3,Versicolored Barbet (Blue-chinned),Eubucco versicolor glaucogularis,Piciformes,Capitonidae (New World Barbets),,verbar1 10606.6,issf,verbar4,Versicolored Barbet (Blue-moustached),Eubucco versicolor versicolor,Piciformes,Capitonidae (New World Barbets),,verbar1 10609.5,spuh,newbar1,new world barbet sp.,Capitonidae sp.,Piciformes,Capitonidae (New World Barbets),, 10610,species,prbbar1,Prong-billed Barbet,Semnornis frantzii,Piciformes,Semnornithidae (Toucan-Barbets),, 10611,species,toubar1,Toucan Barbet,Semnornis ramphastinus,Piciformes,Semnornithidae (Toucan-Barbets),, 10611.2,species,noremt1,Northern Emerald-Toucanet,Aulacorhynchus prasinus,Piciformes,Ramphastidae (Toucans),, 10615,issf,emetou3,Northern Emerald-Toucanet (Wagler's),Aulacorhynchus prasinus wagleri,Piciformes,Ramphastidae (Toucans),,noremt1 10616,issf,emetou2,Northern Emerald-Toucanet (Emerald),Aulacorhynchus prasinus [prasinus Group],Piciformes,Ramphastidae (Toucans),,noremt1 10623,issf,emetou4,Northern Emerald-Toucanet (Blue-throated),Aulacorhynchus prasinus caeruleogularis/maxillaris,Piciformes,Ramphastidae (Toucans),,noremt1 10626,issf,emetou5,Northern Emerald-Toucanet (Violet-throated),Aulacorhynchus prasinus cognatus,Piciformes,Ramphastidae (Toucans),,noremt1 10626.2,species,souemt1,Southern Emerald-Toucanet,Aulacorhynchus albivitta,Piciformes,Ramphastidae (Toucans),, 10627,issf,emetou6,Southern Emerald-Toucanet (Santa Marta),Aulacorhynchus albivitta lautus,Piciformes,Ramphastidae (Toucans),,souemt1 10627.5,issf,emetou9,Southern Emerald-Toucanet (Gray-throated),Aulacorhynchus albivitta griseigularis,Piciformes,Ramphastidae (Toucans),,souemt1 10628,issf,emetou7,Southern Emerald-Toucanet (Andean),Aulacorhynchus albivitta albivitta/phaeolaemus,Piciformes,Ramphastidae (Toucans),,souemt1 10632,issf,emetou8,Southern Emerald-Toucanet (Black-throated),Aulacorhynchus albivitta [atrogularis Group],Piciformes,Ramphastidae (Toucans),,souemt1 10636,species,grbtou1,Groove-billed Toucanet,Aulacorhynchus sulcatus,Piciformes,Ramphastidae (Toucans),, 10637,issf,grbtou2,Groove-billed Toucanet (Yellow-billed),Aulacorhynchus sulcatus calorhynchus,Piciformes,Ramphastidae (Toucans),,grbtou1 10637.5,issf,grbtou3,Groove-billed Toucanet (Groove-billed),Aulacorhynchus sulcatus sulcatus/erythrognathus,Piciformes,Ramphastidae (Toucans),,grbtou1 10641,species,chttou3,Chestnut-tipped Toucanet,Aulacorhynchus derbianus,Piciformes,Ramphastidae (Toucans),, 10641.5,species,chttou2,Tepui Toucanet,Aulacorhynchus whitelianus,Piciformes,Ramphastidae (Toucans),, 10645,species,crrtou1,Crimson-rumped Toucanet,Aulacorhynchus haematopygus,Piciformes,Ramphastidae (Toucans),, 10648,species,yebtou1,Yellow-browed Toucanet,Aulacorhynchus huallagae,Piciformes,Ramphastidae (Toucans),, 10649,species,blbtou1,Blue-banded Toucanet,Aulacorhynchus coeruleicinctis,Piciformes,Ramphastidae (Toucans),, 10649.2,spuh,aulaco1,Aulacorhynchus sp.,Aulacorhynchus sp.,Piciformes,Ramphastidae (Toucans),, 10650,species,gybmot1,Gray-breasted Mountain-Toucan,Andigena hypoglauca,Piciformes,Ramphastidae (Toucans),, 10653,species,pbmtou1,Plate-billed Mountain-Toucan,Andigena laminirostris,Piciformes,Ramphastidae (Toucans),, 10654,species,homtou1,Hooded Mountain-Toucan,Andigena cucullata,Piciformes,Ramphastidae (Toucans),, 10655,species,bbmtou1,Black-billed Mountain-Toucan,Andigena nigrirostris,Piciformes,Ramphastidae (Toucans),, 10659,species,saftou2,Saffron Toucanet,Pteroglossus bailloni,Piciformes,Ramphastidae (Toucans),, 10660,species,greara1,Green Aracari,Pteroglossus viridis,Piciformes,Ramphastidae (Toucans),, 10661,species,letara1,Lettered Aracari,Pteroglossus inscriptus,Piciformes,Ramphastidae (Toucans),, 10661.2,issf,letara2,Lettered Aracari (Humboldt's),Pteroglossus inscriptus humboldti,Piciformes,Ramphastidae (Toucans),,letara1 10661.4,issf,letara3,Lettered Aracari (Lettered),Pteroglossus inscriptus inscriptus,Piciformes,Ramphastidae (Toucans),,letara1 10664,species,colara1,Collared Aracari,Pteroglossus torquatus,Piciformes,Ramphastidae (Toucans),, 10665,issf,colara2,Collared Aracari (Collared),Pteroglossus torquatus [torquatus Group],Piciformes,Ramphastidae (Toucans),,colara1 10670,issf,colara4,Collared Aracari (Stripe-billed),Pteroglossus torquatus sanguineus,Piciformes,Ramphastidae (Toucans),,colara1 10671,issf,colara5,Collared Aracari (Pale-mandibled),Pteroglossus torquatus erythropygius,Piciformes,Ramphastidae (Toucans),,colara1 10672,species,fibara1,Fiery-billed Aracari,Pteroglossus frantzii,Piciformes,Ramphastidae (Toucans),, 10673,species,blnara1,Black-necked Aracari,Pteroglossus aracari,Piciformes,Ramphastidae (Toucans),, 10677,species,cheara1,Chestnut-eared Aracari,Pteroglossus castanotis,Piciformes,Ramphastidae (Toucans),, 10680,species,mabara1,Many-banded Aracari,Pteroglossus pluricinctus,Piciformes,Ramphastidae (Toucans),, 10681,species,ivbara1,Ivory-billed Aracari,Pteroglossus azara,Piciformes,Ramphastidae (Toucans),, 10681.2,issf,ivbara4,Ivory-billed Aracari (Yellow-billed),Pteroglossus azara flavirostris,Piciformes,Ramphastidae (Toucans),,ivbara1 10681.4,issf,ivbara5,Ivory-billed Aracari (Ivory-billed),Pteroglossus azara azara,Piciformes,Ramphastidae (Toucans),,ivbara1 10685,issf,ivbara3,Ivory-billed Aracari (Brown-billed),Pteroglossus azara mariae,Piciformes,Ramphastidae (Toucans),,ivbara1 10686,species,cucara1,Curl-crested Aracari,Pteroglossus beauharnaesii,Piciformes,Ramphastidae (Toucans),, 10687,species,renara1,Red-necked Aracari,Pteroglossus bitorquatus,Piciformes,Ramphastidae (Toucans),, 10687.1,issf,renara2,Red-necked Aracari (Western),Pteroglossus bitorquatus sturmii,Piciformes,Ramphastidae (Toucans),,renara1 10687.2,issf,renara3,Red-necked Aracari (Eastern),Pteroglossus bitorquatus bitorquatus/reichenowi,Piciformes,Ramphastidae (Toucans),,renara1 10690.5,spuh,aracar1,aracari sp.,Pteroglossus sp.,Piciformes,Ramphastidae (Toucans),, 10691,species,yeetou1,Yellow-eared Toucanet,Selenidera spectabilis,Piciformes,Ramphastidae (Toucans),, 10692,species,guitou1,Guianan Toucanet,Selenidera piperivora,Piciformes,Ramphastidae (Toucans),, 10693,species,goctou1,Golden-collared Toucanet,Selenidera reinwardtii,Piciformes,Ramphastidae (Toucans),, 10693.2,issf,goctou2,Golden-collared Toucanet (Red-billed),Selenidera reinwardtii reinwardtii,Piciformes,Ramphastidae (Toucans),,goctou1 10693.4,issf,goctou3,Golden-collared Toucanet (Green-billed),Selenidera reinwardtii langsdorffii,Piciformes,Ramphastidae (Toucans),,goctou1 10696,species,tattou1,Tawny-tufted Toucanet,Selenidera nattereri,Piciformes,Ramphastidae (Toucans),, 10697,species,goutou1,Gould's Toucanet,Selenidera gouldii,Piciformes,Ramphastidae (Toucans),, 10698,species,spbtou1,Spot-billed Toucanet,Selenidera maculirostris,Piciformes,Ramphastidae (Toucans),, 10698.5,spuh,smatou1,small toucan sp.,Ramphastidae (small toucan sp.),Piciformes,Ramphastidae (Toucans),, 10699,species,toctou1,Toco Toucan,Ramphastos toco,Piciformes,Ramphastidae (Toucans),, 10701.5,species,bkmtou1,Yellow-throated Toucan,Ramphastos ambiguus,Piciformes,Ramphastidae (Toucans),, 10702,issf,chmtou1,Yellow-throated Toucan (Chestnut-mandibled),Ramphastos ambiguus swainsonii,Piciformes,Ramphastidae (Toucans),,bkmtou1 10703,issf,blmtou1,Yellow-throated Toucan (Black-mandibled),Ramphastos ambiguus ambiguus/abbreviatus,Piciformes,Ramphastidae (Toucans),,bkmtou1 10706,species,whttou1,White-throated Toucan,Ramphastos tucanus,Piciformes,Ramphastidae (Toucans),, 10706.2,issf,whttou2,White-throated Toucan (Red-billed),Ramphastos tucanus tucanus,Piciformes,Ramphastidae (Toucans),,whttou1 10706.4,issf,whttou3,White-throated Toucan (Cuvier's),Ramphastos tucanus cuvieri/inca,Piciformes,Ramphastidae (Toucans),,whttou1 10710,species,kebtou1,Keel-billed Toucan,Ramphastos sulfuratus,Piciformes,Ramphastidae (Toucans),, 10713,species,chotou1,Choco Toucan,Ramphastos brevis,Piciformes,Ramphastidae (Toucans),, 10714,species,chbtou1,Channel-billed Toucan,Ramphastos vitellinus,Piciformes,Ramphastidae (Toucans),, 10715,issf,chbtou3,Channel-billed Toucan (Citron-throated),Ramphastos vitellinus citreolaemus,Piciformes,Ramphastidae (Toucans),,chbtou1 10715.5,issf,chbtou7,Channel-billed Toucan (Yellow-ridged),Ramphastos vitellinus culminatus/pintoi,Piciformes,Ramphastidae (Toucans),,chbtou1 10716.7,intergrade,chbtou4,Channel-billed Toucan (Citron-throated x Yellow-ridged),Ramphastos vitellinus citreolaemus x culminatus,Piciformes,Ramphastidae (Toucans),,chbtou1 10717,issf,chbtou8,Channel-billed Toucan (Channel-billed),Ramphastos vitellinus vitellinus,Piciformes,Ramphastidae (Toucans),,chbtou1 10717.5,intergrade,chbtou6,Channel-billed Toucan (Yellow-ridged x Channel-billed),Ramphastos vitellinus culminatus x vitellinus,Piciformes,Ramphastidae (Toucans),,chbtou1 10718,issf,chbtou2,Channel-billed Toucan (Ariel),Ramphastos vitellinus ariel,Piciformes,Ramphastidae (Toucans),,chbtou1 10720.8,intergrade,chbtou5,Channel-billed Toucan (Yellow-ridged x Ariel),Ramphastos vitellinus culminatus x ariel,Piciformes,Ramphastidae (Toucans),,chbtou1 10721,species,rebtou2,Red-breasted Toucan,Ramphastos dicolorus,Piciformes,Ramphastidae (Toucans),, 10721.5,spuh,lartou1,large toucan sp.,Ramphastos sp.,Piciformes,Ramphastidae (Toucans),, 10722,species,cashon1,Cassin's Honeyguide,Prodotiscus insignis,Piciformes,Indicatoridae (Honeyguides),Honeyguides, 10725,species,grbhon2,Green-backed Honeyguide,Prodotiscus zambesiae,Piciformes,Indicatoridae (Honeyguides),, 10728,species,wahhon1,Wahlberg's Honeyguide,Prodotiscus regulus,Piciformes,Indicatoridae (Honeyguides),, 10730,spuh,smahon1,small honeyguide sp.,Prodotiscus sp.,Piciformes,Indicatoridae (Honeyguides),, 10731,species,zenhon1,Zenker's Honeyguide,Melignomon zenkeri,Piciformes,Indicatoridae (Honeyguides),, 10732,species,yefhon2,Yellow-footed Honeyguide,Melignomon eisentrauti,Piciformes,Indicatoridae (Honeyguides),, 10733,species,dwahon1,Dwarf Honeyguide,Indicator pumilio,Piciformes,Indicatoridae (Honeyguides),, 10734,species,wilhon2,Willcocks's Honeyguide,Indicator willcocksi,Piciformes,Indicatoridae (Honeyguides),, 10738,species,palhon1,Pallid Honeyguide,Indicator meliphilus,Piciformes,Indicatoridae (Honeyguides),, 10741,species,leahon2,Least Honeyguide,Indicator exilis,Piciformes,Indicatoridae (Honeyguides),, 10745,species,thbhon1,Thick-billed Honeyguide,Indicator conirostris,Piciformes,Indicatoridae (Honeyguides),, 10748,species,leshon1,Lesser Honeyguide,Indicator minor,Piciformes,Indicatoridae (Honeyguides),, 10755,species,spohon2,Spotted Honeyguide,Indicator maculatus,Piciformes,Indicatoridae (Honeyguides),, 10758,species,scthon1,Scaly-throated Honeyguide,Indicator variegatus,Piciformes,Indicatoridae (Honeyguides),, 10759,species,yerhon1,Yellow-rumped Honeyguide,Indicator xanthonotus,Piciformes,Indicatoridae (Honeyguides),, 10762,species,malhon1,Malaysian Honeyguide,Indicator archipelagicus,Piciformes,Indicatoridae (Honeyguides),, 10763,species,grehon2,Greater Honeyguide,Indicator indicator,Piciformes,Indicatoridae (Honeyguides),, 10763.4,spuh,larhon1,large honeyguide sp.,Indicator sp.,Piciformes,Indicatoridae (Honeyguides),, 10763.8,spuh,honeyg1,honeyguide sp.,Indicatoridae sp.,Piciformes,Indicatoridae (Honeyguides),, 10764,species,lython1,Lyre-tailed Honeyguide,Melichneutes robustus,Piciformes,Indicatoridae (Honeyguides),, 10765,species,eurwry,Eurasian Wryneck,Jynx torquilla,Piciformes,Picidae (Woodpeckers),Woodpeckers, 10770,species,runwry1,Rufous-necked Wryneck,Jynx ruficollis,Piciformes,Picidae (Woodpeckers),, 10771,issf,runwry2,Rufous-necked Wryneck (Rufous-necked),Jynx ruficollis ruficollis,Piciformes,Picidae (Woodpeckers),,runwry1 10772,issf,runwry3,Rufous-necked Wryneck (Bar-throated),Jynx ruficollis pulchricollis,Piciformes,Picidae (Woodpeckers),,runwry1 10773,issf,runwry4,Rufous-necked Wryneck (Ethiopian),Jynx ruficollis aequatorialis,Piciformes,Picidae (Woodpeckers),,runwry1 10774,species,spepic1,Speckled Piculet,Picumnus innominatus,Piciformes,Picidae (Woodpeckers),, 10778,species,babpic1,Bar-breasted Piculet,Picumnus aurifrons,Piciformes,Picidae (Woodpeckers),, 10786,species,oripic1,Orinoco Piculet,Picumnus pumilus,Piciformes,Picidae (Woodpeckers),, 10787,species,lafpic1,Lafresnaye's Piculet,Picumnus lafresnayi,Piciformes,Picidae (Woodpeckers),, 10792,species,gospic1,Golden-spangled Piculet,Picumnus exilis,Piciformes,Picidae (Woodpeckers),, 10795,issf,gospic4,Golden-spangled Piculet (Undulated),Picumnus exilis undulatus,Piciformes,Picidae (Woodpeckers),,gospic1 10796,issf,gospic5,Golden-spangled Piculet (Buffon's),Picumnus exilis buffonii,Piciformes,Picidae (Woodpeckers),,gospic1 10797,issf,gospic6,Golden-spangled Piculet (Pernambuco),Picumnus exilis pernambucensis,Piciformes,Picidae (Woodpeckers),,gospic1 10799,issf,gospic7,Golden-spangled Piculet (Bahia),Picumnus exilis exilis,Piciformes,Picidae (Woodpeckers),,gospic1 10801,species,ecupic1,Ecuadorian Piculet,Picumnus sclateri,Piciformes,Picidae (Woodpeckers),, 10805,species,scapic1,Scaled Piculet,Picumnus squamulatus,Piciformes,Picidae (Woodpeckers),, 10805.5,issf,scapic2,Scaled Piculet (Scaled),Picumnus squamulatus [squamulatus Group],Piciformes,Picidae (Woodpeckers),,scapic1 10810,issf,gospic3,Scaled Piculet (Black-dotted),Picumnus squamulatus obsoletus,Piciformes,Picidae (Woodpeckers),,scapic1 10811,species,whbpic2,White-bellied Piculet,Picumnus spilogaster,Piciformes,Picidae (Woodpeckers),, 10811.2,issf,whbpic4,White-bellied Piculet (White-bellied),Picumnus spilogaster spilogaster/orinocensis,Piciformes,Picidae (Woodpeckers),,whbpic2 10811.4,issf,whbpic5,White-bellied Piculet (Mangrove),Picumnus spilogaster pallidus,Piciformes,Picidae (Woodpeckers),,whbpic2 10815,species,arrpic1,Arrowhead Piculet,Picumnus minutissimus,Piciformes,Picidae (Woodpeckers),, 10816,species,spopic1,Spotted Piculet,Picumnus pygmaeus,Piciformes,Picidae (Woodpeckers),, 10817,species,spcpic1,Speckle-chested Piculet,Picumnus steindachneri,Piciformes,Picidae (Woodpeckers),, 10818,species,varpic1,Varzea Piculet,Picumnus varzeae,Piciformes,Picidae (Woodpeckers),, 10819,species,whbpic1,White-barred Piculet,Picumnus cirratus,Piciformes,Picidae (Woodpeckers),, 10819.2,issf,whbpic6,White-barred Piculet (Marajo),Picumnus cirratus macconnelli/confusus,Piciformes,Picidae (Woodpeckers),,whbpic1 10819.4,issf,whbpic7,White-barred Piculet (White-barred),Picumnus cirratus [cirratus Group],Piciformes,Picidae (Woodpeckers),,whbpic1 10826,species,ocepic2,Ocellated Piculet,Picumnus dorbignyanus,Piciformes,Picidae (Woodpeckers),, 10828.5,slash,y00962,White-barred/Ocellated Piculet,Picumnus cirratus/dorbignyanus,Piciformes,Picidae (Woodpeckers),, 10829,species,occpic1,Ochre-collared Piculet,Picumnus temminckii,Piciformes,Picidae (Woodpeckers),, 10830,species,whwpic1,White-wedged Piculet,Picumnus albosquamatus,Piciformes,Picidae (Woodpeckers),, 10833,species,runpic1,Rusty-necked Piculet,Picumnus fuscus,Piciformes,Picidae (Woodpeckers),, 10834,species,rubpic1,Rufous-breasted Piculet,Picumnus rufiventris,Piciformes,Picidae (Woodpeckers),, 10838,species,tawpic1,Tawny Piculet,Picumnus fulvescens,Piciformes,Picidae (Woodpeckers),, 10839,species,ochpic1,Ochraceous Piculet,Picumnus limae,Piciformes,Picidae (Woodpeckers),, 10840,species,motpic1,Mottled Piculet,Picumnus nebulosus,Piciformes,Picidae (Woodpeckers),, 10841,species,plbpic1,Plain-breasted Piculet,Picumnus castelnau,Piciformes,Picidae (Woodpeckers),, 10842,species,fibpic1,Fine-barred Piculet,Picumnus subtilis,Piciformes,Picidae (Woodpeckers),, 10843,species,olipic1,Olivaceous Piculet,Picumnus olivaceus,Piciformes,Picidae (Woodpeckers),, 10850,species,grapic1,Grayish Piculet,Picumnus granadensis,Piciformes,Picidae (Woodpeckers),, 10853,species,chepic1,Chestnut Piculet,Picumnus cinnamomeus,Piciformes,Picidae (Woodpeckers),, 10857.5,spuh,newpic1,new world piculet sp.,Picumnus sp.,Piciformes,Picidae (Woodpeckers),, 10858,species,afrpic1,African Piculet,Sasia africana,Piciformes,Picidae (Woodpeckers),, 10859,species,rufpic1,Rufous Piculet,Sasia abnormis,Piciformes,Picidae (Woodpeckers),, 10862,species,whbpic3,White-browed Piculet,Sasia ochracea,Piciformes,Picidae (Woodpeckers),, 10866,species,antpic1,Antillean Piculet,Nesoctites micromegas,Piciformes,Picidae (Woodpeckers),, 10869,species,whiwoo1,White Woodpecker,Melanerpes candidus,Piciformes,Picidae (Woodpeckers),, 10870,species,lewwoo,Lewis's Woodpecker,Melanerpes lewis,Piciformes,Picidae (Woodpeckers),, 10871,species,guawoo1,Guadeloupe Woodpecker,Melanerpes herminieri,Piciformes,Picidae (Woodpeckers),, 10872,species,purwoo1,Puerto Rican Woodpecker,Melanerpes portoricensis,Piciformes,Picidae (Woodpeckers),, 10873,species,rehwoo,Red-headed Woodpecker,Melanerpes erythrocephalus,Piciformes,Picidae (Woodpeckers),, 10874,species,acowoo,Acorn Woodpecker,Melanerpes formicivorus,Piciformes,Picidae (Woodpeckers),, 10875,issf,acowoo1,Acorn Woodpecker (Acorn),Melanerpes formicivorus [formicivorus Group],Piciformes,Picidae (Woodpeckers),,acowoo 10881,issf,acowoo2,Acorn Woodpecker (Narrow-fronted),Melanerpes formicivorus angustifrons,Piciformes,Picidae (Woodpeckers),,acowoo 10882,species,gonwoo1,Golden-naped Woodpecker,Melanerpes chrysauchen,Piciformes,Picidae (Woodpeckers),, 10883,species,yetwoo2,Yellow-tufted Woodpecker,Melanerpes cruentatus,Piciformes,Picidae (Woodpeckers),, 10884,species,yefwoo1,Yellow-fronted Woodpecker,Melanerpes flavifrons,Piciformes,Picidae (Woodpeckers),, 10885,species,beawoo2,Beautiful Woodpecker,Melanerpes pulcher,Piciformes,Picidae (Woodpeckers),, 10886,species,blcwoo1,Black-cheeked Woodpecker,Melanerpes pucherani,Piciformes,Picidae (Woodpeckers),, 10887,species,whfwoo1,White-fronted Woodpecker,Melanerpes cactorum,Piciformes,Picidae (Woodpeckers),, 10888,species,hiswoo1,Hispaniolan Woodpecker,Melanerpes striatus,Piciformes,Picidae (Woodpeckers),, 10889,species,jamwoo1,Jamaican Woodpecker,Melanerpes radiolatus,Piciformes,Picidae (Woodpeckers),, 10890,species,gocwoo1,Golden-cheeked Woodpecker,Melanerpes chrysogenys,Piciformes,Picidae (Woodpeckers),, 10893,species,grbwoo1,Gray-breasted Woodpecker,Melanerpes hypopolius,Piciformes,Picidae (Woodpeckers),, 10894,species,yucwoo,Yucatan Woodpecker,Melanerpes pygmaeus,Piciformes,Picidae (Woodpeckers),, 10898,species,recwoo1,Red-crowned Woodpecker,Melanerpes rubricapillus,Piciformes,Picidae (Woodpeckers),, 10904,species,gilwoo,Gila Woodpecker,Melanerpes uropygialis,Piciformes,Picidae (Woodpeckers),, 10908,species,hofwoo1,Hoffmann's Woodpecker,Melanerpes hoffmannii,Piciformes,Picidae (Woodpeckers),, 10908.5,hybrid,x00440,Red-crowned x Hoffmann's Woodpecker (hybrid),Melanerpes rubricapillus x hoffmannii,Piciformes,Picidae (Woodpeckers),, 10909,species,gofwoo,Golden-fronted Woodpecker,Melanerpes aurifrons,Piciformes,Picidae (Woodpeckers),, 10910,issf,gofwoo1,Golden-fronted Woodpecker (Northern),Melanerpes aurifrons aurifrons,Piciformes,Picidae (Woodpeckers),,gofwoo 10914,issf,gofwoo2,Golden-fronted Woodpecker (Velasquez's),Melanerpes aurifrons [santacruzi Group],Piciformes,Picidae (Woodpeckers),,gofwoo 10923,issf,gofwoo3,Golden-fronted Woodpecker (West Mexico),Melanerpes aurifrons polygrammus,Piciformes,Picidae (Woodpeckers),,gofwoo 10924,hybrid,x00853,Hoffmann's x Golden-fronted Woodpecker (hybrid),Melanerpes hoffmannii x aurifrons,Piciformes,Picidae (Woodpeckers),, 10924.5,slash,y00963,Hoffmann's/Golden-fronted Woodpecker,Melanerpes hoffmannii/aurifrons,Piciformes,Picidae (Woodpeckers),, 10925,species,rebwoo,Red-bellied Woodpecker,Melanerpes carolinus,Piciformes,Picidae (Woodpeckers),, 10925.5,hybrid,x00460,Golden-fronted x Red-bellied Woodpecker (hybrid),Melanerpes aurifrons x carolinus,Piciformes,Picidae (Woodpeckers),, 10925.7,slash,y00788,Golden-fronted/Red-bellied Woodpecker,Melanerpes aurifrons/carolinus,Piciformes,Picidae (Woodpeckers),, 10926,species,weiwoo1,West Indian Woodpecker,Melanerpes superciliaris,Piciformes,Picidae (Woodpeckers),, 10932,spuh,melane1,Melanerpes sp.,Melanerpes sp.,Piciformes,Picidae (Woodpeckers),, 10933,species,wilsap,Williamson's Sapsucker,Sphyrapicus thyroideus,Piciformes,Picidae (Woodpeckers),, 10936,species,yebsap,Yellow-bellied Sapsucker,Sphyrapicus varius,Piciformes,Picidae (Woodpeckers),, 10938,species,rensap,Red-naped Sapsucker,Sphyrapicus nuchalis,Piciformes,Picidae (Woodpeckers),, 10938.5,hybrid,x00634,Yellow-bellied x Red-naped Sapsucker (hybrid),Sphyrapicus varius x nuchalis,Piciformes,Picidae (Woodpeckers),, 10939,slash,y00019,Yellow-bellied/Red-naped Sapsucker,Sphyrapicus varius/nuchalis,Piciformes,Picidae (Woodpeckers),, 10941,species,rebsap,Red-breasted Sapsucker,Sphyrapicus ruber,Piciformes,Picidae (Woodpeckers),, 10942,issf,rebsap1,Red-breasted Sapsucker (ruber),Sphyrapicus ruber ruber,Piciformes,Picidae (Woodpeckers),,rebsap 10943,issf,rebsap2,Red-breasted Sapsucker (daggetti),Sphyrapicus ruber daggetti,Piciformes,Picidae (Woodpeckers),,rebsap 10943.3,hybrid,x00712,Yellow-bellied x Red-breasted Sapsucker (hybrid),Sphyrapicus varius x ruber,Piciformes,Picidae (Woodpeckers),, 10943.5,hybrid,rnxsap1,Red-naped x Red-breasted Sapsucker (hybrid),Sphyrapicus nuchalis x ruber,Piciformes,Picidae (Woodpeckers),, 10943.7,slash,y00789,Red-naped/Red-breasted Sapsucker,Sphyrapicus nuchalis/ruber,Piciformes,Picidae (Woodpeckers),, 10944,spuh,sapsuc,sapsucker sp.,Sphyrapicus sp.,Piciformes,Picidae (Woodpeckers),, 10945,species,cugwoo1,Cuban Green Woodpecker,Xiphidiopicus percussus,Piciformes,Picidae (Woodpeckers),, 10948,species,fiswoo1,Fine-spotted Woodpecker,Campethera punctuligera,Piciformes,Picidae (Woodpeckers),, 10951,species,nubwoo1,Nubian Woodpecker,Campethera nubica,Piciformes,Picidae (Woodpeckers),, 10954,species,benwoo1,Bennett's Woodpecker,Campethera bennettii,Piciformes,Picidae (Woodpeckers),, 10955,issf,benwoo2,Bennett's Woodpecker (Bennett's),Campethera bennettii bennettii,Piciformes,Picidae (Woodpeckers),,benwoo1 10956,issf,benwoo3,Bennett's Woodpecker (Light-spotted),Campethera bennettii capricorni,Piciformes,Picidae (Woodpeckers),,benwoo1 10957,species,reiwoo1,Reichenow's Woodpecker,Campethera scriptoricauda,Piciformes,Picidae (Woodpeckers),, 10958,species,gotwoo1,Golden-tailed Woodpecker,Campethera abingoni,Piciformes,Picidae (Woodpeckers),, 10959,issf,gotwoo2,Golden-tailed Woodpecker (Streak-backed),Campethera abingoni chrysura,Piciformes,Picidae (Woodpeckers),,gotwoo1 10959.5,issf,gotwoo3,Golden-tailed Woodpecker (Golden-tailed),Campethera abingoni [abingoni Group],Piciformes,Picidae (Woodpeckers),,gotwoo1 10965,species,momwoo1,Mombasa Woodpecker,Campethera mombassica,Piciformes,Picidae (Woodpeckers),, 10966,species,knywoo1,Knysna Woodpecker,Campethera notata,Piciformes,Picidae (Woodpeckers),, 10967,species,ligwoo1,Little Green Woodpecker,Campethera maculosa,Piciformes,Picidae (Woodpeckers),, 10968,species,grbwoo2,Green-backed Woodpecker,Campethera cailliautii,Piciformes,Picidae (Woodpeckers),, 10969,issf,gnbwoo1,Green-backed Woodpecker (Plain-backed),Campethera cailliautii permista,Piciformes,Picidae (Woodpeckers),,grbwoo2 10969.5,issf,gnbwoo2,Green-backed Woodpecker (Spot-backed),Campethera cailliautii [cailliautii Group],Piciformes,Picidae (Woodpeckers),,grbwoo2 10973,species,tulwoo1,Tullberg's Woodpecker,Campethera tullbergi,Piciformes,Picidae (Woodpeckers),, 10974,issf,tulwoo2,Tullberg's Woodpecker (Tullberg's),Campethera tullbergi tullbergi,Piciformes,Picidae (Woodpeckers),,tulwoo1 10974.5,issf,tulwoo3,Tullberg's Woodpecker (Fine-banded),Campethera tullbergi taeniolaema/hausburgi,Piciformes,Picidae (Woodpeckers),,tulwoo1 10977,species,buswoo1,Buff-spotted Woodpecker,Campethera nivosa,Piciformes,Picidae (Woodpeckers),, 10982,species,brewoo1,Brown-eared Woodpecker,Campethera caroli,Piciformes,Picidae (Woodpeckers),, 10983,issf,bnewoo1,Brown-eared Woodpecker (Western),Campethera caroli arizela,Piciformes,Picidae (Woodpeckers),,brewoo1 10984,issf,bnewoo2,Brown-eared Woodpecker (Carol's),Campethera caroli caroli,Piciformes,Picidae (Woodpeckers),,brewoo1 10985,species,growoo1,Ground Woodpecker,Geocolaptes olivaceus,Piciformes,Picidae (Woodpeckers),, 10989,species,ligwoo3,Little Gray Woodpecker,Dendropicos elachus,Piciformes,Picidae (Woodpeckers),, 10990,species,spbwoo2,Speckle-breasted Woodpecker,Dendropicos poecilolaemus,Piciformes,Picidae (Woodpeckers),, 10991,species,abywoo1,Abyssinian Woodpecker,Dendropicos abyssinicus,Piciformes,Picidae (Woodpeckers),, 10992,species,carwoo1,Cardinal Woodpecker,Dendropicos fuscescens,Piciformes,Picidae (Woodpeckers),, 11002,species,melwoo1,Melancholy Woodpecker,Dendropicos lugubris,Piciformes,Picidae (Woodpeckers),, 11003,species,gabwoo1,Gabon Woodpecker,Dendropicos gabonensis,Piciformes,Picidae (Woodpeckers),, 11006,species,stiwoo1,Stierling's Woodpecker,Dendropicos stierlingi,Piciformes,Picidae (Woodpeckers),, 11007,species,beawoo1,Bearded Woodpecker,Dendropicos namaquus,Piciformes,Picidae (Woodpeckers),, 11011,species,fibwoo1,Fire-bellied Woodpecker,Dendropicos pyrrhogaster,Piciformes,Picidae (Woodpeckers),, 11012,species,gocwoo3,Golden-crowned Woodpecker,Dendropicos xantholophus,Piciformes,Picidae (Woodpeckers),, 11013,species,ellwoo1,Elliot's Woodpecker,Dendropicos elliotii,Piciformes,Picidae (Woodpeckers),, 11014,issf,ellwoo2,Elliot's Woodpecker (Elliot's),Dendropicos elliotii elliotii,Piciformes,Picidae (Woodpeckers),,ellwoo1 11015,issf,ellwoo3,Elliot's Woodpecker (Johnston's),Dendropicos elliotii johnstoni,Piciformes,Picidae (Woodpeckers),,ellwoo1 11016,species,grywoo1,African Gray Woodpecker,Dendropicos goertae,Piciformes,Picidae (Woodpeckers),, 11016.5,issf,afgwoo1,African Gray Woodpecker (Gray),Dendropicos goertae [goertae Group],Piciformes,Picidae (Woodpeckers),,grywoo1 11020,issf,afgwoo2,African Gray Woodpecker (Sahel),Dendropicos goertae koenigi,Piciformes,Picidae (Woodpeckers),,grywoo1 11021,species,gyhwoo1,Mountain Gray Woodpecker,Dendropicos spodocephalus,Piciformes,Picidae (Woodpeckers),, 11024,species,oliwoo2,Olive Woodpecker,Dendropicos griseocephalus,Piciformes,Picidae (Woodpeckers),, 11025,issf,oliwoo8,Olive Woodpecker (Red-bellied),Dendropicos griseocephalus ruwenzori,Piciformes,Picidae (Woodpeckers),,oliwoo2 11026,issf,oliwoo9,Olive Woodpecker (Montane),Dendropicos griseocephalus kilimensis,Piciformes,Picidae (Woodpeckers),,oliwoo2 11027,issf,oliwoo10,Olive Woodpecker (Southern),Dendropicos griseocephalus griseocephalus,Piciformes,Picidae (Woodpeckers),,oliwoo2 11028,species,brbwoo1,Brown-backed Woodpecker,Dendropicos obsoletus,Piciformes,Picidae (Woodpeckers),, 11033,species,sulwoo2,Sulawesi Woodpecker,Dendrocopos temminckii,Piciformes,Picidae (Woodpeckers),, 11034,species,phiwoo1,Philippine Woodpecker,Dendrocopos maculatus,Piciformes,Picidae (Woodpeckers),, 11038,species,phiwoo3,Sulu Woodpecker,Dendrocopos ramsayi,Piciformes,Picidae (Woodpeckers),, 11039,species,bncwoo3,Brown-capped Woodpecker,Dendrocopos nanus,Piciformes,Picidae (Woodpeckers),, 11042,species,bncwoo2,Sunda Woodpecker,Dendrocopos moluccensis,Piciformes,Picidae (Woodpeckers),, 11045,species,gycwoo1,Gray-capped Woodpecker,Dendrocopos canicapillus,Piciformes,Picidae (Woodpeckers),, 11056.5,slash,y00735,Brown-capped/Gray-capped Woodpecker,Dendrocopos nanus/canicapillus,Piciformes,Picidae (Woodpeckers),, 11057,species,pygwoo1,Pygmy Woodpecker,Dendrocopos kizuki,Piciformes,Picidae (Woodpeckers),, 11062,species,leswoo1,Lesser Spotted Woodpecker,Dendrocopos minor,Piciformes,Picidae (Woodpeckers),, 11074,species,brfwoo1,Brown-fronted Woodpecker,Dendrocopos auriceps,Piciformes,Picidae (Woodpeckers),, 11075,species,fubwoo2,Fulvous-breasted Woodpecker,Dendrocopos macei,Piciformes,Picidae (Woodpeckers),, 11077.5,species,frbwoo1,Freckle-breasted Woodpecker,Dendrocopos analis,Piciformes,Picidae (Woodpeckers),, 11081,species,stbwoo4,Stripe-breasted Woodpecker,Dendrocopos atratus,Piciformes,Picidae (Woodpeckers),, 11082,species,yecwoo1,Yellow-crowned Woodpecker,Dendrocopos mahrattensis,Piciformes,Picidae (Woodpeckers),, 11085,species,arawoo1,Arabian Woodpecker,Dendrocopos dorae,Piciformes,Picidae (Woodpeckers),, 11086,species,rubwoo1,Rufous-bellied Woodpecker,Dendrocopos hyperythrus,Piciformes,Picidae (Woodpeckers),, 11091,species,crbwoo3,Crimson-breasted Woodpecker,Dendrocopos cathpharius,Piciformes,Picidae (Woodpeckers),, 11091.5,issf,crbwoo6,Crimson-breasted Woodpecker (Scarlet-breasted),Dendrocopos cathpharius [cathpharius Group],Piciformes,Picidae (Woodpeckers),,crbwoo3 11094.5,issf,crbwoo7,Crimson-breasted Woodpecker (Crimson-breasted),Dendrocopos cathpharius [pernyii Group],Piciformes,Picidae (Woodpeckers),,crbwoo3 11098,species,darwoo1,Darjeeling Woodpecker,Dendrocopos darjellensis,Piciformes,Picidae (Woodpeckers),, 11098.5,slash,y00964,Crimson-breasted/Darjeeling Woodpecker,Dendrocopos cathpharius/darjellensis,Piciformes,Picidae (Woodpeckers),, 11099,species,miswoo1,Middle Spotted Woodpecker,Dendrocopos medius,Piciformes,Picidae (Woodpeckers),, 11104,species,whbwoo1,White-backed Woodpecker,Dendrocopos leucotos,Piciformes,Picidae (Woodpeckers),, 11106,issf,whbwoo3,White-backed Woodpecker (Lilford's),Dendrocopos leucotos lilfordi,Piciformes,Picidae (Woodpeckers),,whbwoo1 11108,issf,whbwoo9,White-backed Woodpecker (White-backed),Dendrocopos leucotos [leucotos Group],Piciformes,Picidae (Woodpeckers),,whbwoo1 11110,issf,whbwoo10,White-backed Woodpecker (Amami),Dendrocopos leucotos owstoni,Piciformes,Picidae (Woodpeckers),,whbwoo1 11115,species,grswoo,Great Spotted Woodpecker,Dendrocopos major,Piciformes,Picidae (Woodpeckers),, 11115.1,issf,grswoo2,Great Spotted Woodpecker (Great Spotted),Dendrocopos major [major Group],Piciformes,Picidae (Woodpeckers),,grswoo 11125,issf,grswoo3,Great Spotted Woodpecker (Canarian),Dendrocopos major canariensis/thanneri,Piciformes,Picidae (Woodpeckers),,grswoo 11128,issf,grswoo4,Great Spotted Woodpecker (Atlas),Dendrocopos major numidus/mauritanus,Piciformes,Picidae (Woodpeckers),,grswoo 11130,species,syrwoo1,Syrian Woodpecker,Dendrocopos syriacus,Piciformes,Picidae (Woodpeckers),, 11130.5,slash,y00790,Great Spotted/Syrian Woodpecker,Dendrocopos major/syriacus,Piciformes,Picidae (Woodpeckers),, 11131,species,whwwoo1,White-winged Woodpecker,Dendrocopos leucopterus,Piciformes,Picidae (Woodpeckers),, 11132,species,sinwoo1,Sind Woodpecker,Dendrocopos assimilis,Piciformes,Picidae (Woodpeckers),, 11133,species,himwoo1,Himalayan Woodpecker,Dendrocopos himalayensis,Piciformes,Picidae (Woodpeckers),, 11136,spuh,dendro1,Dendrocopos sp.,Dendrocopos sp.,Piciformes,Picidae (Woodpeckers),, 11137,species,labwoo,Ladder-backed Woodpecker,Picoides scalaris,Piciformes,Picidae (Woodpeckers),, 11147,species,nutwoo,Nuttall's Woodpecker,Picoides nuttallii,Piciformes,Picidae (Woodpeckers),, 11147.5,hybrid,x00620,Ladder-backed x Nuttall's Woodpecker (hybrid),Picoides scalaris x nuttallii,Piciformes,Picidae (Woodpeckers),, 11147.7,slash,y00965,Ladder-backed/Nuttall's Woodpecker,Picoides scalaris/nuttallii,Piciformes,Picidae (Woodpeckers),, 11148,species,dowwoo,Downy Woodpecker,Picoides pubescens,Piciformes,Picidae (Woodpeckers),, 11149,issf,dowwoo1,Downy Woodpecker (Eastern),Picoides pubescens pubescens/medianus,Piciformes,Picidae (Woodpeckers),,dowwoo 11152,issf,dowwoo2,Downy Woodpecker (Rocky Mts.),Picoides pubescens leucurus/glacialis,Piciformes,Picidae (Woodpeckers),,dowwoo 11155,issf,dowwoo3,Downy Woodpecker (Pacific),Picoides pubescens gairdnerii/turati,Piciformes,Picidae (Woodpeckers),,dowwoo 11155.2,hybrid,x00801,Ladder-backed x Downy Woodpecker (hybrid),Picoides scalaris x pubescens,Piciformes,Picidae (Woodpeckers),, 11157.5,hybrid,x00662,Nuttall's x Downy Woodpecker (hybrid),Picoides nuttallii x pubescens,Piciformes,Picidae (Woodpeckers),, 11158,species,smbwoo1,Smoky-brown Woodpecker,Picoides fumigatus,Piciformes,Picidae (Woodpeckers),, 11164,species,haiwoo,Hairy Woodpecker,Picoides villosus,Piciformes,Picidae (Woodpeckers),, 11165,issf,haiwoo2,Hairy Woodpecker (Eastern),Picoides villosus [villosus Group],Piciformes,Picidae (Woodpeckers),,haiwoo 11170,issf,haiwoo1,Hairy Woodpecker (Pacific),Picoides villosus [harrisi Group],Piciformes,Picidae (Woodpeckers),,haiwoo 11174,issf,haiwoo5,Hairy Woodpecker (Rocky Mts.),Picoides villosus orius/icastus,Piciformes,Picidae (Woodpeckers),,haiwoo 11176,issf,haiwoo4,Hairy Woodpecker (South Mexican),Picoides villosus jardinii/sanctorum,Piciformes,Picidae (Woodpeckers),,haiwoo 11178,issf,haiwoo3,Hairy Woodpecker (Costa Rican),Picoides villosus extimus,Piciformes,Picidae (Woodpeckers),,haiwoo 11178.2,hybrid,x00802,Ladder-backed x Hairy Woodpecker (hybrid),Picoides scalaris x villosus,Piciformes,Picidae (Woodpeckers),, 11178.5,hybrid,x00663,Nuttall's x Hairy Woodpecker (hybrid),Picoides nuttallii x villosus,Piciformes,Picidae (Woodpeckers),, 11178.7,hybrid,x00803,Downy x Hairy Woodpecker (hybrid),Picoides pubescens x villosus,Piciformes,Picidae (Woodpeckers),, 11179,slash,y00322,Downy/Hairy Woodpecker,Picoides pubescens/villosus,Piciformes,Picidae (Woodpeckers),, 11180,species,ariwoo,Arizona Woodpecker,Picoides arizonae,Piciformes,Picidae (Woodpeckers),, 11183,species,strwoo,Strickland's Woodpecker,Picoides stricklandi,Piciformes,Picidae (Woodpeckers),, 11184,species,recwoo,Red-cockaded Woodpecker,Picoides borealis,Piciformes,Picidae (Woodpeckers),, 11185,species,whhwoo,White-headed Woodpecker,Picoides albolarvatus,Piciformes,Picidae (Woodpeckers),, 11188,species,ettwoo1,Eurasian Three-toed Woodpecker,Picoides tridactylus,Piciformes,Picidae (Woodpeckers),, 11188.5,issf,ettwoo2,Eurasian Three-toed Woodpecker (Eurasian),Picoides tridactylus [tridactylus Group],Piciformes,Picidae (Woodpeckers),,ettwoo1 11193,issf,ettwoo3,Eurasian Three-toed Woodpecker (Dark-bodied),Picoides tridactylus funebris,Piciformes,Picidae (Woodpeckers),,ettwoo1 11194,species,attwoo1,American Three-toed Woodpecker,Picoides dorsalis,Piciformes,Picidae (Woodpeckers),, 11195,issf,attwoo2,American Three-toed Woodpecker (Rocky Mts.),Picoides dorsalis dorsalis,Piciformes,Picidae (Woodpeckers),,attwoo1 11196,issf,attwoo3,American Three-toed Woodpecker (Northwest),Picoides dorsalis fasciatus,Piciformes,Picidae (Woodpeckers),,attwoo1 11197,issf,attwoo4,American Three-toed Woodpecker (Eastern),Picoides dorsalis bacatus,Piciformes,Picidae (Woodpeckers),,attwoo1 11198,species,bkbwoo,Black-backed Woodpecker,Picoides arcticus,Piciformes,Picidae (Woodpeckers),, 11199,slash,y00617,American Three-toed/Black-backed Woodpecker,Picoides dorsalis/arcticus,Piciformes,Picidae (Woodpeckers),, 11200,spuh,picoid,Picoides sp.,Picoides sp.,Piciformes,Picidae (Woodpeckers),, 11201,species,rerwoo1,Red-rumped Woodpecker,Veniliornis kirkii,Piciformes,Picidae (Woodpeckers),, 11207,species,gocwoo2,Golden-collared Woodpecker,Veniliornis cassini,Piciformes,Picidae (Woodpeckers),, 11208,species,whswoo2,White-spotted Woodpecker,Veniliornis spilogaster,Piciformes,Picidae (Woodpeckers),, 11209,species,chewoo3,Checkered Woodpecker,Veniliornis mixtus,Piciformes,Picidae (Woodpeckers),, 11214,species,strwoo6,Striped Woodpecker,Veniliornis lignarius,Piciformes,Picidae (Woodpeckers),, 11215,species,blcwoo3,Blood-colored Woodpecker,Veniliornis sanguineus,Piciformes,Picidae (Woodpeckers),, 11216,species,litwoo2,Little Woodpecker,Veniliornis passerinus,Piciformes,Picidae (Woodpeckers),, 11226,species,dofwoo1,Dot-fronted Woodpecker,Veniliornis frontalis,Piciformes,Picidae (Woodpeckers),, 11227,species,scbwoo3,Scarlet-backed Woodpecker,Veniliornis callonotus,Piciformes,Picidae (Woodpeckers),, 11230,species,yevwoo1,Yellow-vented Woodpecker,Veniliornis dignus,Piciformes,Picidae (Woodpeckers),, 11234,species,babwoo2,Bar-bellied Woodpecker,Veniliornis nigriceps,Piciformes,Picidae (Woodpeckers),, 11238,species,reswoo1,Red-stained Woodpecker,Veniliornis affinis,Piciformes,Picidae (Woodpeckers),, 11240,slash,y00871,Little/Red-stained Woodpecker,Veniliornis passerinus/affinis,Piciformes,Picidae (Woodpeckers),, 11243,species,chowoo1,Choco Woodpecker,Veniliornis chocoensis,Piciformes,Picidae (Woodpeckers),, 11244,species,yeewoo1,Yellow-eared Woodpecker,Veniliornis maculifrons,Piciformes,Picidae (Woodpeckers),, 11244.2,spuh,venili1,Veniliornis sp.,Veniliornis sp.,Piciformes,Picidae (Woodpeckers),, 11245,species,ruwwoo1,Rufous-winged Woodpecker,Piculus simplex,Piciformes,Picidae (Woodpeckers),, 11246,species,stcwoo1,Stripe-cheeked Woodpecker,Piculus callopterus,Piciformes,Picidae (Woodpeckers),, 11247,species,whtwoo2,White-throated Woodpecker,Piculus leucolaemus,Piciformes,Picidae (Woodpeckers),, 11248,species,litwoo1,Lita Woodpecker,Piculus litae,Piciformes,Picidae (Woodpeckers),, 11249,species,yetwoo1,Yellow-throated Woodpecker,Piculus flavigula,Piciformes,Picidae (Woodpeckers),, 11253,species,gogwoo1,Golden-green Woodpecker,Piculus chrysochloros,Piciformes,Picidae (Woodpeckers),, 11255,issf,gogwoo2,Golden-green Woodpecker (Gold-throated),Piculus chrysochloros xanthochlorus,Piciformes,Picidae (Woodpeckers),,gogwoo1 11256,issf,gogwoo3,Golden-green Woodpecker (Bar-throated),Piculus chrysochloros capistratus,Piciformes,Picidae (Woodpeckers),,gogwoo1 11258,issf,gogwoo4,Golden-green Woodpecker (Belem),Piculus chrysochloros paraensis,Piciformes,Picidae (Woodpeckers),,gogwoo1 11259,issf,gogwoo5,Golden-green Woodpecker (Spot-throated),Piculus chrysochloros laemostictus,Piciformes,Picidae (Woodpeckers),,gogwoo1 11261,issf,gogwoo6,Golden-green Woodpecker (Golden-green),Piculus chrysochloros chrysochloros,Piciformes,Picidae (Woodpeckers),,gogwoo1 11262,issf,gogwoo7,Golden-green Woodpecker (Atlantic),Piculus chrysochloros polyzonus,Piciformes,Picidae (Woodpeckers),,gogwoo1 11263,species,whbwoo7,White-browed Woodpecker,Piculus aurulentus,Piciformes,Picidae (Woodpeckers),, 11263.2,spuh,piculu1,Piculus sp.,Piculus sp.,Piciformes,Picidae (Woodpeckers),, 11264,species,goowoo1,Golden-olive Woodpecker,Colaptes rubiginosus,Piciformes,Picidae (Woodpeckers),, 11265,issf,goowoo3,Golden-olive Woodpecker (Bronze-winged),Colaptes rubiginosus aeruginosus,Piciformes,Picidae (Woodpeckers),,goowoo1 11266,issf,goowoo2,Golden-olive Woodpecker (Golden-olive),Colaptes rubiginosus [rubiginosus Group],Piciformes,Picidae (Woodpeckers),,goowoo1 11284,issf,goowoo4,Golden-olive Woodpecker (rubripileus),Colaptes rubiginosus rubripileus,Piciformes,Picidae (Woodpeckers),,goowoo1 11285,species,grcwoo1,Gray-crowned Woodpecker,Colaptes auricularis,Piciformes,Picidae (Woodpeckers),, 11286,species,crmwoo2,Crimson-mantled Woodpecker,Colaptes rivolii,Piciformes,Picidae (Woodpeckers),, 11286.2,issf,crmwoo1,Crimson-mantled Woodpecker (Crimson-mantled),Colaptes rivolii [rivolii Group],Piciformes,Picidae (Woodpeckers),,crmwoo2 11286.4,issf,crmwoo3,Crimson-mantled Woodpecker (Black-crowned),Colaptes rivolii atriceps,Piciformes,Picidae (Woodpeckers),,crmwoo2 11292,species,blnwoo1,Black-necked Woodpecker,Colaptes atricollis,Piciformes,Picidae (Woodpeckers),, 11295,species,spbwoo1,Spot-breasted Woodpecker,Colaptes punctigula,Piciformes,Picidae (Woodpeckers),, 11302,species,grbwoo3,Green-barred Woodpecker,Colaptes melanochloros,Piciformes,Picidae (Woodpeckers),, 11302.2,issf,gnbwoo3,Green-barred Woodpecker (Green-barred),Colaptes melanochloros melanochloros/nattereri,Piciformes,Picidae (Woodpeckers),,grbwoo3 11302.4,issf,gnbwoo4,Green-barred Woodpecker (Golden-breasted),Colaptes melanochloros [melanolaimus Group],Piciformes,Picidae (Woodpeckers),,grbwoo3 11308,species,norfli,Northern Flicker,Colaptes auratus,Piciformes,Picidae (Woodpeckers),, 11309,issf,norfli2,Northern Flicker (Cuban),Colaptes auratus chrysocaulosus,Piciformes,Picidae (Woodpeckers),,norfli 11310,issf,norfli3,Northern Flicker (Grand Cayman I.),Colaptes auratus gundlachi,Piciformes,Picidae (Woodpeckers),,norfli 11311,issf,yesfli,Northern Flicker (Yellow-shafted),Colaptes auratus auratus/luteus,Piciformes,Picidae (Woodpeckers),,norfli 11315,issf,resfli,Northern Flicker (Red-shafted),Colaptes auratus [cafer Group],Piciformes,Picidae (Woodpeckers),,norfli 11319.5,intergrade,rxyfli,Northern Flicker (intergrade),Colaptes auratus luteus x cafer,Piciformes,Picidae (Woodpeckers),,norfli 11320,issf,norfli1,Northern Flicker (Guatemalan),Colaptes auratus mexicanoides,Piciformes,Picidae (Woodpeckers),,norfli 11321,species,gilfli,Gilded Flicker,Colaptes chrysoides,Piciformes,Picidae (Woodpeckers),, 11326,slash,y00323,Northern/Gilded Flicker,Colaptes auratus/chrysoides,Piciformes,Picidae (Woodpeckers),, 11327,species,ferfli1,Fernandina's Flicker,Colaptes fernandinae,Piciformes,Picidae (Woodpeckers),, 11328,species,chifli1,Chilean Flicker,Colaptes pitius,Piciformes,Picidae (Woodpeckers),, 11329,species,andfli1,Andean Flicker,Colaptes rupicola,Piciformes,Picidae (Woodpeckers),, 11329.2,issf,andfli2,Andean Flicker (Northern),Colaptes rupicola cinereicapillus,Piciformes,Picidae (Woodpeckers),,andfli1 11329.4,issf,andfli3,Andean Flicker (Southern),Colaptes rupicola rupicola/puna,Piciformes,Picidae (Woodpeckers),,andfli1 11333,species,camfli1,Campo Flicker,Colaptes campestris,Piciformes,Picidae (Woodpeckers),, 11334,issf,camfli2,Campo Flicker (Campo),Colaptes campestris campestris,Piciformes,Picidae (Woodpeckers),,camfli1 11335,issf,camfli3,Campo Flicker (Field),Colaptes campestris campestroides,Piciformes,Picidae (Woodpeckers),,camfli1 11335.2,intergrade,camfli4,Campo Flicker (Campo x Field),Colaptes campestris campestris x campestroides,Piciformes,Picidae (Woodpeckers),,camfli1 11346,species,cinwoo1,Cinnamon Woodpecker,Celeus loricatus,Piciformes,Picidae (Woodpeckers),, 11351,species,rinwoo1,Ringed Woodpecker,Celeus torquatus,Piciformes,Picidae (Woodpeckers),, 11355,issf,rinwoo2,Ringed Woodpecker (Ringed),Celeus torquatus torquatus,Piciformes,Picidae (Woodpeckers),,rinwoo1 11360,issf,rinwoo3,Ringed Woodpecker (Amazonian Black-breasted),Celeus torquatus occidentalis,Piciformes,Picidae (Woodpeckers),,rinwoo1 11362,issf,rinwoo4,Ringed Woodpecker (Atlantic Black-breasted),Celeus torquatus tinnunculus,Piciformes,Picidae (Woodpeckers),,rinwoo1 11364,species,helwoo1,Helmeted Woodpecker,Celeus galeatus,Piciformes,Picidae (Woodpeckers),, 11366,species,chcwoo1,Chestnut-colored Woodpecker,Celeus castaneus,Piciformes,Picidae (Woodpeckers),, 11368,species,scbwoo5,Scale-breasted Woodpecker,Celeus grammicus,Piciformes,Picidae (Woodpeckers),, 11370,species,wavwoo1,Waved Woodpecker,Celeus undatus,Piciformes,Picidae (Woodpeckers),, 11375,species,crcwoo2,Cream-colored Woodpecker,Celeus flavus,Piciformes,Picidae (Woodpeckers),, 11380,species,ruhwoo1,Rufous-headed Woodpecker,Celeus spectabilis,Piciformes,Picidae (Woodpeckers),, 11383,species,caawoo1,Kaempfer's Woodpecker,Celeus obrieni,Piciformes,Picidae (Woodpeckers),, 11384,species,chewoo2,Chestnut Woodpecker,Celeus elegans,Piciformes,Picidae (Woodpeckers),, 11385,species,pacwoo1,Pale-crested Woodpecker,Celeus lugubris,Piciformes,Picidae (Woodpeckers),, 11386,species,blcwoo2,Blond-crested Woodpecker,Celeus flavescens,Piciformes,Picidae (Woodpeckers),, 11387,issf,blcwoo5,Blond-crested Woodpecker (Ochre-backed),Celeus flavescens ochraceus,Piciformes,Picidae (Woodpeckers),,blcwoo2 11388,issf,blcwoo4,Blond-crested Woodpecker (Blond-crested),Celeus flavescens flavescens/intercedens,Piciformes,Picidae (Woodpeckers),,blcwoo2 11389,spuh,celeus1,Celeus sp.,Celeus sp.,Piciformes,Picidae (Woodpeckers),, 11390,species,linwoo1,Lineated Woodpecker,Dryocopus lineatus,Piciformes,Picidae (Woodpeckers),, 11390.2,issf,linwoo7,Lineated Woodpecker (Lineated),Dryocopus lineatus [lineatus Group],Piciformes,Picidae (Woodpeckers),,linwoo1 11390.4,issf,linwoo8,Lineated Woodpecker (Dusky-winged),Dryocopus lineatus fuscipennis,Piciformes,Picidae (Woodpeckers),,linwoo1 11396,species,pilwoo,Pileated Woodpecker,Dryocopus pileatus,Piciformes,Picidae (Woodpeckers),, 11399,species,blbwoo3,Black-bodied Woodpecker,Dryocopus schulzi,Piciformes,Picidae (Woodpeckers),, 11399.2,hybrid,x00804,Lineated x Black-bodied Woodpecker (hybrid),Dryocopus lineatus x schulzi,Piciformes,Picidae (Woodpeckers),, 11399.4,spuh,dryoco1,Dryocopus sp.,Dryocopus sp.,Piciformes,Picidae (Woodpeckers),, 11400,species,whbwoo2,White-bellied Woodpecker,Dryocopus javensis,Piciformes,Picidae (Woodpeckers),, 11415,species,andwoo1,Andaman Woodpecker,Dryocopus hodgei,Piciformes,Picidae (Woodpeckers),, 11416,species,blawoo1,Black Woodpecker,Dryocopus martius,Piciformes,Picidae (Woodpeckers),, 11419,species,powwoo1,Powerful Woodpecker,Campephilus pollens,Piciformes,Picidae (Woodpeckers),, 11422,species,crbwoo1,Crimson-bellied Woodpecker,Campephilus haematogaster,Piciformes,Picidae (Woodpeckers),, 11423,issf,crbwoo4,Crimson-bellied Woodpecker (Splendid),Campephilus haematogaster splendens,Piciformes,Picidae (Woodpeckers),,crbwoo1 11424,issf,crbwoo5,Crimson-bellied Woodpecker (Crimson-bellied),Campephilus haematogaster haematogaster,Piciformes,Picidae (Woodpeckers),,crbwoo1 11425,species,renwoo1,Red-necked Woodpecker,Campephilus rubricollis,Piciformes,Picidae (Woodpeckers),, 11429,species,robwoo1,Robust Woodpecker,Campephilus robustus,Piciformes,Picidae (Woodpeckers),, 11430,species,crcwoo1,Crimson-crested Woodpecker,Campephilus melanoleucos,Piciformes,Picidae (Woodpeckers),, 11433,species,pabwoo1,Pale-billed Woodpecker,Campephilus guatemalensis,Piciformes,Picidae (Woodpeckers),, 11437,species,guawoo2,Guayaquil Woodpecker,Campephilus gayaquilensis,Piciformes,Picidae (Woodpeckers),, 11438,species,crbwoo2,Cream-backed Woodpecker,Campephilus leucopogon,Piciformes,Picidae (Woodpeckers),, 11438.5,hybrid,x00854,Crimson-crested x Cream-backed Woodpecker (hybrid),Campephilus melanoleucos x leucopogon,Piciformes,Picidae (Woodpeckers),, 11439,species,magwoo1,Magellanic Woodpecker,Campephilus magellanicus,Piciformes,Picidae (Woodpeckers),, 11440,species,ivbwoo,Ivory-billed Woodpecker,Campephilus principalis,Piciformes,Picidae (Woodpeckers),, 11441,issf,ivbwoo3,Ivory-billed Woodpecker (Northern),Campephilus principalis principalis,Piciformes,Picidae (Woodpeckers),,ivbwoo 11442,issf,ivbwoo4,Ivory-billed Woodpecker (Cuban),Campephilus principalis bairdii,Piciformes,Picidae (Woodpeckers),,ivbwoo 11443,species,impwoo1,Imperial Woodpecker,Campephilus imperialis,Piciformes,Picidae (Woodpeckers),, 11444,spuh,campep1,Campephilus sp.,Campephilus sp.,Piciformes,Picidae (Woodpeckers),, 11444.5,slash,y00679,Lineated Woodpecker/Campephilus sp.,Dryocopus lineatus/Campephilus sp.,Piciformes,Picidae (Woodpeckers),, 11445,species,banwoo2,Banded Woodpecker,Picus miniaceus,Piciformes,Picidae (Woodpeckers),, 11450,species,lesyel1,Lesser Yellownape,Picus chlorolophus,Piciformes,Picidae (Woodpeckers),, 11460,species,crwwoo1,Crimson-winged Woodpecker,Picus puniceus,Piciformes,Picidae (Woodpeckers),, 11464,species,greyel1,Greater Yellownape,Picus flavinucha,Piciformes,Picidae (Woodpeckers),, 11471.5,slash,y00736,Lesser/Greater Yellownape,Picus chlorolophus/flavinucha,Piciformes,Picidae (Woodpeckers),, 11472,species,chtwoo1,Checker-throated Woodpecker,Picus mentalis,Piciformes,Picidae (Woodpeckers),, 11472.2,issf,chtwoo2,Checker-throated Woodpecker (Checker-throated),Picus mentalis humii,Piciformes,Picidae (Woodpeckers),,chtwoo1 11472.4,issf,chtwoo3,Checker-throated Woodpecker (Javan),Picus mentalis mentalis,Piciformes,Picidae (Woodpeckers),,chtwoo1 11475,species,stbwoo3,Streak-breasted Woodpecker,Picus viridanus,Piciformes,Picidae (Woodpeckers),, 11476,species,lacwoo1,Laced Woodpecker,Picus vittatus,Piciformes,Picidae (Woodpeckers),, 11476.2,slash,y01034,Streak-breasted/Laced Woodpecker,Picus viridanus/vittatus,Piciformes,Picidae (Woodpeckers),, 11477,species,sttwoo1,Streak-throated Woodpecker,Picus xanthopygaeus,Piciformes,Picidae (Woodpeckers),, 11478,species,scbwoo1,Scaly-bellied Woodpecker,Picus squamatus,Piciformes,Picidae (Woodpeckers),, 11481,species,japwoo1,Japanese Woodpecker,Picus awokera,Piciformes,Picidae (Woodpeckers),, 11482,species,grnwoo1,Eurasian Green Woodpecker,Picus viridis,Piciformes,Picidae (Woodpeckers),, 11483,issf,grnwoo2,Eurasian Green Woodpecker (Eurasian),Picus viridis viridis/karelini,Piciformes,Picidae (Woodpeckers),,grnwoo1 11486,issf,grnwoo4,Eurasian Green Woodpecker (Mesopotamian),Picus viridis innominatus,Piciformes,Picidae (Woodpeckers),,grnwoo1 11487,issf,grnwoo3,Eurasian Green Woodpecker (Iberian),Picus viridis sharpei,Piciformes,Picidae (Woodpeckers),,grnwoo1 11487.5,intergrade,eugwoo1,Eurasian Green Woodpecker (Eurasian x Iberian),Picus viridis viridis x sharpei,Piciformes,Picidae (Woodpeckers),,grnwoo1 11488,species,levwoo1,Levaillant's Woodpecker,Picus vaillantii,Piciformes,Picidae (Woodpeckers),, 11489,species,recwoo2,Red-collared Woodpecker,Picus rabieri,Piciformes,Picidae (Woodpeckers),, 11490,species,blhwoo1,Black-headed Woodpecker,Picus erythropygius,Piciformes,Picidae (Woodpeckers),, 11493,species,gyfwoo1,Gray-headed Woodpecker,Picus canus,Piciformes,Picidae (Woodpeckers),, 11493.2,issf,gyhwoo2,Gray-headed Woodpecker (Gray-headed),Picus canus canus/jessoensis,Piciformes,Picidae (Woodpeckers),,gyfwoo1 11493.4,issf,gyhwoo3,Gray-headed Woodpecker (Black-naped),Picus canus [guerini Group],Piciformes,Picidae (Woodpeckers),,gyfwoo1 11493.6,issf,gyhwoo4,Gray-headed Woodpecker (Sumatran),Picus canus dedemi,Piciformes,Picidae (Woodpeckers),,gyfwoo1 11503,hybrid,x00855,Eurasian Green x Gray-headed Woodpecker (hybrid),Picus viridis x canus,Piciformes,Picidae (Woodpeckers),, 11504,spuh,picus1,Picus sp.,Picus sp.,Piciformes,Picidae (Woodpeckers),, 11505,species,olbwoo2,Olive-backed Woodpecker,Dinopium rafflesii,Piciformes,Picidae (Woodpeckers),, 11508,species,himfla1,Himalayan Flameback,Dinopium shorii,Piciformes,Picidae (Woodpeckers),, 11511,species,comfla1,Common Flameback,Dinopium javanense,Piciformes,Picidae (Woodpeckers),, 11517,species,sptfla1,Spot-throated Flameback,Dinopium everetti,Piciformes,Picidae (Woodpeckers),, 11517.5,species,blrfla1,Black-rumped Flameback,Dinopium benghalense,Piciformes,Picidae (Woodpeckers),, 11517.6,issf,bkrfla1,Black-rumped Flameback (Black-rumped),Dinopium benghalense [benghalense Group],Piciformes,Picidae (Woodpeckers),,blrfla1 11517.7,issf,bkrfla2,Black-rumped Flameback (Red-backed),Dinopium benghalense psarodes,Piciformes,Picidae (Woodpeckers),,blrfla1 11517.8,intergrade,bkrfla3,Black-rumped Flameback (Black-rumped x Red-backed),Dinopium benghalense puncticolle x psarodes,Piciformes,Picidae (Woodpeckers),,blrfla1 11517.9,spuh,flameb1,flameback sp.,Dinopium sp.,Piciformes,Picidae (Woodpeckers),, 11518,species,pahwoo1,Pale-headed Woodpecker,Gecinulus grantia,Piciformes,Picidae (Woodpeckers),, 11519,species,bamwoo1,Bamboo Woodpecker,Gecinulus viridis,Piciformes,Picidae (Woodpeckers),, 11519.05,hybrid,x00805,Pale-headed x Bamboo Woodpecker (hybrid),Gecinulus grantia x viridis,Piciformes,Picidae (Woodpeckers),, 11519.1,species,rufwoo2,Rufous Woodpecker,Micropternus brachyurus,Piciformes,Picidae (Woodpeckers),, 11520,species,burwoo1,Buff-rumped Woodpecker,Meiglyptes tristis,Piciformes,Picidae (Woodpeckers),, 11520.2,issf,burwoo2,Buff-rumped Woodpecker (Buff-rumped),Meiglyptes tristis grammithorax,Piciformes,Picidae (Woodpeckers),,burwoo1 11520.4,issf,burwoo3,Buff-rumped Woodpecker (White-rumped),Meiglyptes tristis tristis,Piciformes,Picidae (Woodpeckers),,burwoo1 11521,species,babwoo3,Black-and-buff Woodpecker,Meiglyptes jugularis,Piciformes,Picidae (Woodpeckers),, 11522,species,bunwoo1,Buff-necked Woodpecker,Meiglyptes tukki,Piciformes,Picidae (Woodpeckers),, 11523,species,grefla1,Greater Flameback,Chrysocolaptes guttacristatus,Piciformes,Picidae (Woodpeckers),, 11524,issf,grefla4,Greater Flameback (Malabar),Chrysocolaptes guttacristatus socialis,Piciformes,Picidae (Woodpeckers),,grefla1 11526,issf,grefla5,Greater Flameback (Greater),Chrysocolaptes guttacristatus [guttacristatus Group],Piciformes,Picidae (Woodpeckers),,grefla1 11528.2,slash,y00737,Common/Greater Flameback,Dinopium javanense/Chrysocolaptes guttacristatus,Piciformes,Picidae (Woodpeckers),, 11528.4,species,javfla1,Javan Flameback,Chrysocolaptes strictus,Piciformes,Picidae (Woodpeckers),, 11531,species,luzfla1,Luzon Flameback,Chrysocolaptes haematribon,Piciformes,Picidae (Woodpeckers),, 11532,species,yeffla1,Yellow-faced Flameback,Chrysocolaptes xanthocephalus,Piciformes,Picidae (Woodpeckers),, 11532.5,species,busfla1,Buff-spotted Flameback,Chrysocolaptes lucidus,Piciformes,Picidae (Woodpeckers),, 11536.3,species,rehfla1,Red-headed Flameback,Chrysocolaptes erythrocephalus,Piciformes,Picidae (Woodpeckers),, 11536.5,species,crbfla1,Crimson-backed Flameback,Chrysocolaptes stricklandi,Piciformes,Picidae (Woodpeckers),, 11537,species,whnwoo1,White-naped Woodpecker,Chrysocolaptes festivus,Piciformes,Picidae (Woodpeckers),, 11545,species,okiwoo1,Okinawa Woodpecker,Sapheopipo noguchii,Piciformes,Picidae (Woodpeckers),, 11546,species,marwoo1,Maroon Woodpecker,Blythipicus rubiginosus,Piciformes,Picidae (Woodpeckers),, 11547,species,baywoo1,Bay Woodpecker,Blythipicus pyrrhotis,Piciformes,Picidae (Woodpeckers),, 11553,species,orbwoo1,Orange-backed Woodpecker,Reinwardtipicus validus,Piciformes,Picidae (Woodpeckers),, 11566,species,gabwoo3,Gray-and-buff Woodpecker,Hemicircus concretus,Piciformes,Picidae (Woodpeckers),, 11566.2,issf,gabwoo2,Gray-and-buff Woodpecker (Gray-and-buff),Hemicircus concretus sordidus,Piciformes,Picidae (Woodpeckers),,gabwoo3 11566.4,issf,gabwoo4,Gray-and-buff Woodpecker (Red-crested),Hemicircus concretus concretus,Piciformes,Picidae (Woodpeckers),,gabwoo3 11569,species,heswoo1,Heart-spotted Woodpecker,Hemicircus canente,Piciformes,Picidae (Woodpeckers),, 11570,species,ashwoo1,Ashy Woodpecker,Mulleripicus fulvus,Piciformes,Picidae (Woodpeckers),, 11573,species,soowoo1,Northern Sooty-Woodpecker,Mulleripicus funebris,Piciformes,Picidae (Woodpeckers),, 11577,species,sousow1,Southern Sooty-Woodpecker,Mulleripicus fuliginosus,Piciformes,Picidae (Woodpeckers),, 11578,species,grswoo1,Great Slaty Woodpecker,Mulleripicus pulverulentus,Piciformes,Picidae (Woodpeckers),, 11579.6,spuh,woodpe1,woodpecker sp.,Picidae sp.,Piciformes,Picidae (Woodpeckers),, 11580,species,relser1,Red-legged Seriema,Cariama cristata,Cariamiformes,Cariamidae (Seriemas),Seriemas, 11580.5,species,bllser1,Black-legged Seriema,Chunga burmeisteri,Cariamiformes,Cariamidae (Seriemas),, 11581.01,species,baffal1,Barred Forest-Falcon,Micrastur ruficollis,Falconiformes,Falconidae (Falcons and Caracaras),Falcons and Caracaras, 11581.08,species,plffal1,Plumbeous Forest-Falcon,Micrastur plumbeus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.085,slash,y00872,Barred/Plumbeous Forest-Falcon,Micrastur ruficollis/plumbeus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.09,species,liffal1,Lined Forest-Falcon,Micrastur gilvicollis,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.1,slash,y00689,Barred/Lined Forest-Falcon,Micrastur ruficollis/gilvicollis,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.11,species,cryfof1,Cryptic Forest-Falcon,Micrastur mintoni,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.12,species,sbffal1,Slaty-backed Forest-Falcon,Micrastur mirandollei,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.13,species,coffal1,Collared Forest-Falcon,Micrastur semitorquatus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.16,species,buffal1,Buckley's Forest-Falcon,Micrastur buckleyi,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.17,spuh,forest1,forest-falcon sp.,Micrastur sp.,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.18,species,blacar1,Black Caracara,Daptrius ater,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.19,species,retcar2,Red-throated Caracara,Ibycter americanus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.2,species,carcar1,Carunculated Caracara,Phalcoboenus carunculatus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.21,species,moucar1,Mountain Caracara,Phalcoboenus megalopterus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.22,species,whtcar1,White-throated Caracara,Phalcoboenus albogularis,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.23,species,strcar1,Striated Caracara,Phalcoboenus australis,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.24,species,crecar1,Crested Caracara,Caracara cheriway,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.28,species,soucar1,Southern Caracara,Caracara plancus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.285,slash,y00678,Crested/Southern Caracara,Caracara cheriway/plancus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.29,species,guacar2,Guadalupe Caracara,Caracara lutosa,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.3,species,yehcar1,Yellow-headed Caracara,Milvago chimachima,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.33,species,chicar1,Chimango Caracara,Milvago chimango,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.36,species,laufal1,Laughing Falcon,Herpetotheres cachinnans,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.4,species,spwfal2,Spot-winged Falconet,Spiziapteryx circumcincta,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.41,species,pygfal1,Pygmy Falcon,Polihierax semitorquatus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.42,species,whrfal1,White-rumped Falcon,Polihierax insignis,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.46,species,colfal1,Collared Falconet,Microhierax caerulescens,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.49,species,bltfal1,Black-thighed Falconet,Microhierax fringillarius,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.5,species,whffal1,White-fronted Falconet,Microhierax latifrons,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.51,species,phifal1,Philippine Falconet,Microhierax erythrogenys,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.54,species,piefal2,Pied Falconet,Microhierax melanoleucos,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.55,species,leskes1,Lesser Kestrel,Falco naumanni,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.56,species,eurkes,Eurasian Kestrel,Falco tinnunculus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.57,issf,eurkes2,Eurasian Kestrel (Eurasian),Falco tinnunculus [tinnunculus Group],Falconiformes,Falconidae (Falcons and Caracaras),,eurkes 11581.59,issf,eurkes3,Eurasian Kestrel (Canary Is.),Falco tinnunculus canariensis/dacotiae,Falconiformes,Falconidae (Falcons and Caracaras),,eurkes 11581.61,issf,eurkes4,Eurasian Kestrel (Cape Verde),Falco tinnunculus neglectus/alexandri,Falconiformes,Falconidae (Falcons and Caracaras),,eurkes 11581.63,issf,eurkes5,Eurasian Kestrel (Rufescent),Falco tinnunculus rufescens,Falconiformes,Falconidae (Falcons and Caracaras),,eurkes 11581.65,slash,y00613,Lesser/Eurasian Kestrel,Falco naumanni/tinnunculus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.68,species,eurkes1,Rock Kestrel,Falco rupicolus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.69,slash,y00933,Eurasian/Rock Kestrel,Falco tinnunculus/rupicolus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.7,species,madkes1,Madagascar Kestrel,Falco newtoni,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.71,species,maukes1,Mauritius Kestrel,Falco punctatus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.72,species,seykes1,Seychelles Kestrel,Falco araeus,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.73,species,spokes1,Spotted Kestrel,Falco moluccensis,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.76,species,auskes1,Australian Kestrel,Falco cenchroides,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.79,species,grekes1,Greater Kestrel,Falco rupicoloides,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.83,species,amekes,American Kestrel,Falco sparverius,Falconiformes,Falconidae (Falcons and Caracaras),, 11581.84,issf,amekes1,American Kestrel (Northern),Falco sparverius [sparverius Group],Falconiformes,Falconidae (Falcons and Caracaras),,amekes 11581.89,issf,amekes7,American Kestrel (Southeastern),Falco sparverius paulus,Falconiformes,Falconidae (Falcons and Caracaras),,amekes 11581.9,issf,amekes3,American Kestrel (Eastern Caribbean),Falco sparverius caribaearum,Falconiformes,Falconidae (Falcons and Caracaras),,amekes 11581.92,issf,amekes4,American Kestrel (Hispaniolan),Falco sparverius dominicensis,Falconiformes,Falconidae (Falcons and Caracaras),,amekes 11581.93,issf,amekes5,American Kestrel (Cuban),Falco sparverius sparverioides,Falconiformes,Falconidae (Falcons and Caracaras),,amekes 11581.94,issf,amekes2,American Kestrel (South American),Falco sparverius [cinnamominus Group],Falconiformes,Falconidae (Falcons and Caracaras),,amekes 11582.025,issf,amekes6,American Kestrel (Juan Fernandez),Falco sparverius fernandensis,Falconiformes,Falconidae (Falcons and Caracaras),,amekes 11582.03,species,foxkes1,Fox Kestrel,Falco alopex,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.04,species,grykes1,Gray Kestrel,Falco ardosiaceus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.05,species,dickes1,Dickinson's Kestrel,Falco dickinsoni,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.06,species,bankes1,Banded Kestrel,Falco zoniventris,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.07,species,renfal1,Red-necked Falcon,Falco chicquera,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.08,issf,renfal2,Red-necked Falcon (Asian),Falco chicquera chicquera,Falconiformes,Falconidae (Falcons and Caracaras),,renfal1 11582.085,issf,renfal3,Red-necked Falcon (African),Falco chicquera ruficollis/horsbrughi,Falconiformes,Falconidae (Falcons and Caracaras),,renfal1 11582.11,species,reffal1,Red-footed Falcon,Falco vespertinus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.12,species,amufal1,Amur Falcon,Falco amurensis,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.13,species,elefal1,Eleonora's Falcon,Falco eleonorae,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.14,species,soofal1,Sooty Falcon,Falco concolor,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.15,species,merlin,Merlin,Falco columbarius,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.16,issf,merlin1,Merlin (Eurasian),Falco columbarius [aesalon Group],Falconiformes,Falconidae (Falcons and Caracaras),,merlin 11582.22,issf,merlin2,Merlin (Pallid),Falco columbarius pallidus,Falconiformes,Falconidae (Falcons and Caracaras),,merlin 11582.23,issf,taimer1,Merlin (Taiga),Falco columbarius columbarius,Falconiformes,Falconidae (Falcons and Caracaras),,merlin 11582.24,issf,pramer1,Merlin (Prairie),Falco columbarius richardsonii,Falconiformes,Falconidae (Falcons and Caracaras),,merlin 11582.25,issf,blkmer1,Merlin (Black),Falco columbarius suckleyi,Falconiformes,Falconidae (Falcons and Caracaras),,merlin 11582.26,species,eurhob,Eurasian Hobby,Falco subbuteo,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.29,species,afrhob1,African Hobby,Falco cuvierii,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.3,species,orihob1,Oriental Hobby,Falco severus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.31,species,aushob1,Australian Hobby,Falco longipennis,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.34,species,nezfal1,New Zealand Falcon,Falco novaeseelandiae,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.35,species,brofal1,Brown Falcon,Falco berigora,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.39,species,gryfal1,Gray Falcon,Falco hypoleucos,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.4,species,blafal1,Black Falcon,Falco subniger,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.41,species,aplfal,Aplomado Falcon,Falco femoralis,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.45,species,batfal1,Bat Falcon,Falco rufigularis,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.49,species,orbfal1,Orange-breasted Falcon,Falco deiroleucus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.5,species,lanfal1,Lanner Falcon,Falco biarmicus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.56,species,lagfal1,Laggar Falcon,Falco jugger,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.57,species,sakfal1,Saker Falcon,Falco cherrug,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.6,species,gyrfal,Gyrfalcon,Falco rusticolus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.61,species,perfal,Peregrine Falcon,Falco peregrinus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.62,issf,perfal1,Peregrine Falcon (North American),Falco peregrinus anatum,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.63,issf,tupfal1,Peregrine Falcon (Tundra),Falco peregrinus calidus/tundrius,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.66,issf,pepfal1,Peregrine Falcon (Peale's),Falco peregrinus pealei,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.67,issf,perfal2,Peregrine Falcon (South American),Falco peregrinus cassini,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.69,issf,perfal4,Peregrine Falcon (Eurasian),Falco peregrinus [peregrinus Group],Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.7,issf,perfal3,Peregrine Falcon (Mediterranean),Falco peregrinus brookei,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.71,issf,barfal1,Peregrine Falcon (Barbary),Falco peregrinus pelegrinoides,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.74,issf,perfal5,Peregrine Falcon (Cape Verde),Falco peregrinus madens,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.75,issf,perfal8,Peregrine Falcon (Red-capped),Falco peregrinus babylonicus,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.76,issf,perfal6,Peregrine Falcon (African),Falco peregrinus minor,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.77,issf,perfal7,Peregrine Falcon (Malagasy),Falco peregrinus radama,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.78,issf,perfal9,Peregrine Falcon (Shaheen),Falco peregrinus peregrinator,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.8,issf,perfal10,Peregrine Falcon (Indo-Pacific),Falco peregrinus ernesti/nesiotes,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.81,issf,perfal11,Peregrine Falcon (Australian),Falco peregrinus macropus,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.82,issf,perfal12,Peregrine Falcon (Buff-fronted),Falco peregrinus submelanogenys,Falconiformes,Falconidae (Falcons and Caracaras),,perfal 11582.83,species,prafal,Prairie Falcon,Falco mexicanus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.84,hybrid,x00698,Peregrine x Prairie Falcon (hybrid),Falco peregrinus x mexicanus,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.85,species,taifal1,Taita Falcon,Falco fasciinucha,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.86,spuh,larfal,large falcon sp.,Falco sp. (large falcon sp.),Falconiformes,Falconidae (Falcons and Caracaras),, 11582.87,spuh,smafal,small falcon sp.,Falco sp. (small falcon sp.),Falconiformes,Falconidae (Falcons and Caracaras),, 11582.88,spuh,falcon,falcon sp.,Falco sp.,Falconiformes,Falconidae (Falcons and Caracaras),, 11582.89,spuh,diurap1,diurnal raptor sp.,Accipitriformes/Falconiformes sp.,,,, 11582.9,species,kea1,Kea,Nestor notabilis,Psittaciformes,Strigopidae (New Zealand Parrots),New Zealand Parrots, 11582.91,species,noikak1,Norfolk Island Kaka,Nestor productus,Psittaciformes,Strigopidae (New Zealand Parrots),, 11582.92,species,nezkak1,New Zealand Kaka,Nestor meridionalis,Psittaciformes,Strigopidae (New Zealand Parrots),, 11582.95,species,kakapo2,Kakapo,Strigops habroptila,Psittaciformes,Strigopidae (New Zealand Parrots),, 11582.96,species,palcoc1,Palm Cockatoo,Probosciger aterrimus,Psittaciformes,Cacatuidae (Cockatoos),Cockatoos, 11583,species,rtbcoc1,Red-tailed Black-Cockatoo,Calyptorhynchus banksii,Psittaciformes,Cacatuidae (Cockatoos),, 11583.06,species,glbcoc1,Glossy Black-Cockatoo,Calyptorhynchus lathami,Psittaciformes,Cacatuidae (Cockatoos),, 11583.1,species,ytbcoc1,Yellow-tailed Black-Cockatoo,Calyptorhynchus funereus,Psittaciformes,Cacatuidae (Cockatoos),, 11583.14,species,slbblc1,Carnaby's Black-Cockatoo,Calyptorhynchus latirostris,Psittaciformes,Cacatuidae (Cockatoos),, 11583.15,species,whtblc1,Baudin's Black-Cockatoo,Calyptorhynchus baudinii,Psittaciformes,Cacatuidae (Cockatoos),, 11583.16,spuh,black-1,black-cockatoo sp.,Calyptorhynchus sp.,Psittaciformes,Cacatuidae (Cockatoos),, 11583.17,species,gagcoc1,Gang-gang Cockatoo,Callocephalon fimbriatum,Psittaciformes,Cacatuidae (Cockatoos),, 11583.18,species,pincoc1,Pink Cockatoo,Lophochroa leadbeateri,Psittaciformes,Cacatuidae (Cockatoos),, 11583.21,species,galah,Galah,Eolophus roseicapilla,Psittaciformes,Cacatuidae (Cockatoos),, 11583.25,species,lobcor1,Long-billed Corella,Cacatua tenuirostris,Psittaciformes,Cacatuidae (Cockatoos),, 11583.26,species,wescor1,Western Corella,Cacatua pastinator,Psittaciformes,Cacatuidae (Cockatoos),, 11583.29,species,litcor2,Little Corella,Cacatua sanguinea,Psittaciformes,Cacatuidae (Cockatoos),, 11583.32,hybrid,x00806,Long-billed x Little Corella (hybrid),Cacatua tenuirostris x sanguinea,Psittaciformes,Cacatuidae (Cockatoos),, 11583.36,species,tancoc1,Tanimbar Corella,Cacatua goffiniana,Psittaciformes,Cacatuidae (Cockatoos),, 11583.365,spuh,corell1,corella sp.,Cacatua sp. (corella sp.),Psittaciformes,Cacatuidae (Cockatoos),, 11583.37,species,phicoc1,Philippine Cockatoo,Cacatua haematuropygia,Psittaciformes,Cacatuidae (Cockatoos),, 11583.38,species,yeccoc1,Yellow-crested Cockatoo,Cacatua sulphurea,Psittaciformes,Cacatuidae (Cockatoos),, 11583.43,species,duccoc1,Ducorps's Cockatoo,Cacatua ducorpsii,Psittaciformes,Cacatuidae (Cockatoos),, 11583.44,species,succoc,Sulphur-crested Cockatoo,Cacatua galerita,Psittaciformes,Cacatuidae (Cockatoos),, 11583.49,species,blecoc1,Blue-eyed Cockatoo,Cacatua ophthalmica,Psittaciformes,Cacatuidae (Cockatoos),, 11583.5,species,saccoc,Salmon-crested Cockatoo,Cacatua moluccensis,Psittaciformes,Cacatuidae (Cockatoos),, 11583.51,species,whicoc1,White Cockatoo,Cacatua alba,Psittaciformes,Cacatuidae (Cockatoos),, 11583.513,spuh,cacatu1,corella/cockatoo sp.,Cacatua sp.,Psittaciformes,Cacatuidae (Cockatoos),, 11583.52,species,cockat,Cockatiel,Nymphicus hollandicus,Psittaciformes,Cacatuidae (Cockatoos),, 11583.525,domestic,cockat1,Cockatiel (Domestic type),Nymphicus hollandicus (Domestic type),Psittaciformes,Cacatuidae (Cockatoos),, 11583.53,species,pespar1,Pesquet's Parrot,Psittrichas fulgidus,Psittaciformes,Psittaculidae (Old World Parrots),"Parrots, Parakeets, and Allies", 11583.54,species,vaspar1,Greater Vasa-Parrot,Mascarinus vasa,Psittaciformes,Psittaculidae (Old World Parrots),, 11583.58,species,seypar1,Seychelles Parrot,Mascarinus barklyi,Psittaciformes,Psittaculidae (Old World Parrots),, 11583.59,species,maspar1,Mascarene Parrot,Mascarinus mascarin,Psittaciformes,Psittaculidae (Old World Parrots),, 11583.6,species,blapar1,Lesser Vasa-Parrot,Mascarinus niger,Psittaciformes,Psittaculidae (Old World Parrots),, 11583.8,slash,y00873,Greater/Lesser Vasa-Parrot,Mascarinus vasa/niger,Psittaciformes,Psittaculidae (Old World Parrots),, 11584.89,species,ycppar1,Yellow-capped Pygmy-Parrot,Micropsitta keiensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11584.93,species,geppar1,Geelvink Pygmy-Parrot,Micropsitta geelvinkiana,Psittaciformes,Psittaculidae (Old World Parrots),, 11584.96,species,bfppar1,Buff-faced Pygmy-Parrot,Micropsitta pusio,Psittaciformes,Psittaculidae (Old World Parrots),, 11585.01,species,rbppar1,Red-breasted Pygmy-Parrot,Micropsitta bruijnii,Psittaciformes,Psittaculidae (Old World Parrots),, 11585.06,species,meppar1,Meek's Pygmy-Parrot,Micropsitta meeki,Psittaciformes,Psittaculidae (Old World Parrots),, 11585.09,species,fippar1,Finsch's Pygmy-Parrot,Micropsitta finschii,Psittaciformes,Psittaculidae (Old World Parrots),, 11585.29,spuh,pygmy-1,pygmy-parrot sp.,Micropsitta sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.14,species,suppar1,Superb Parrot,Polytelis swainsonii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.15,species,regpar1,Regent Parrot,Polytelis anthopeplus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.18,species,alepar1,Princess Parrot,Polytelis alexandrae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.19,species,aukpar1,Australian King-Parrot,Alisterus scapularis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.22,species,mokpar1,Moluccan King-Parrot,Alisterus amboinensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.29,species,pakpar1,Papuan King-Parrot,Alisterus chloropterus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.33,species,olspar1,Olive-shouldered Parrot,Aprosmictus jonquillaceus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.333,species,rewpar1,Red-winged Parrot,Aprosmictus erythropterus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.336,species,burtai1,Buru Racquet-tail,Prioniturus mada,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.337,species,gmrtai1,Golden-mantled Racquet-tail,Prioniturus platurus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.3405,species,mirtai1,Mindanao Racquet-tail,Prioniturus waterstradti,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.341,species,luzrat1,Luzon Racquet-tail,Prioniturus montanus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.342,species,bhrtai1,Blue-headed Racquet-tail,Prioniturus platenae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.343,species,minrat1,Mindoro Racquet-tail,Prioniturus mindorensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.344,species,bwrtai1,Blue-winged Racquet-tail,Prioniturus verticalis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.345,species,yebrat1,Yellow-breasted Racquet-tail,Prioniturus flavicans,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.346,species,grrtai1,Green Racquet-tail,Prioniturus luconensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.347,species,bcrtai1,Blue-crowned Racquet-tail,Prioniturus discurus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.348,issf,bucrat1,Blue-crowned Racquet-tail (Blue-crowned),Prioniturus discurus whiteheadi,Psittaciformes,Psittaculidae (Old World Parrots),,bcrtai1 11587.349,issf,bucrat2,Blue-crowned Racquet-tail (Blue-capped),Prioniturus discurus discurus,Psittaciformes,Psittaculidae (Old World Parrots),,bcrtai1 11587.3495,spuh,racque1,racquet-tail sp.,Prioniturus sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.35,species,eclpar,Eclectus Parrot,Eclectus roratus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.359,species,recpar2,Red-cheeked Parrot,Geoffroyus geoffroyi,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.374,species,blcpar3,Blue-collared Parrot,Geoffroyus simplex,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.377,species,sinpar1,Singing Parrot,Geoffroyus heteroclitus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.38,species,blrpar1,Blue-rumped Parrot,Psittinus cyanurus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.384,issf,burpar4,Blue-rumped Parrot (Blue-rumped),Psittinus cyanurus cyanurus/pontius,Psittaciformes,Psittaculidae (Old World Parrots),,blrpar1 11587.386,issf,burpar5,Blue-rumped Parrot (Simeulue),Psittinus cyanurus abbotti,Psittaciformes,Psittaculidae (Old World Parrots),,blrpar1 11587.4,species,alepar2,Alexandrine Parakeet,Psittacula eupatria,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.46,species,seypar2,Seychelles Parakeet,Psittacula wardi,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.47,species,rorpar,Rose-ringed Parakeet,Psittacula krameri,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.52,species,maupar1,Echo Parakeet,Psittacula eques,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.53,species,slhpar1,Slaty-headed Parakeet,Psittacula himalayana,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.54,species,gyhpar2,Gray-headed Parakeet,Psittacula finschii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.55,species,plhpar1,Plum-headed Parakeet,Psittacula cyanocephala,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.56,species,blhpar3,Blossom-headed Parakeet,Psittacula roseata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.59,species,malpar1,Malabar Parakeet,Psittacula columboides,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.6,species,laypar1,Layard's Parakeet,Psittacula calthrapae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.61,species,derpar1,Derbyan Parakeet,Psittacula derbiana,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.62,species,rebpar4,Red-breasted Parakeet,Psittacula alexandri,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7,species,nicpar1,Nicobar Parakeet,Psittacula caniceps,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.71,species,newpar2,Newton's Parakeet,Psittacula exsul,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.72,species,lotpar2,Long-tailed Parakeet,Psittacula longicauda,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77501,spuh,psitta1,Psittacula sp.,Psittacula sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77502,species,patpar1,Painted Tiger-Parrot,Psittacella picta,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77504,species,brtpar2,Brehm's Tiger-Parrot,Psittacella brehmii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77506,species,motpar1,Modest Tiger-Parrot,Psittacella modesta,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77508,species,matpar1,Madarasz's Tiger-Parrot,Psittacella madaraszi,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77509,spuh,tiger-2,tiger-parrot sp.,Psittacella sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77511,species,bllpar1,Black-lored Parrot,Tanygnathus gramineus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77511,species,grbpar1,Great-billed Parrot,Tanygnathus megalorynchos,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77514,species,blnpar1,Blue-naped Parrot,Tanygnathus lucionensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77515,species,azrpar1,Azure-rumped Parrot,Tanygnathus sumatranus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7752,species,gropar1,Ground Parrot,Pezoporus wallicus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77521,issf,gropar2,Ground Parrot (Western),Pezoporus wallicus flaviventris,Psittaciformes,Psittaculidae (Old World Parrots),,gropar1 11587.77521,issf,gropar3,Ground Parrot (Eastern),Pezoporus wallicus wallicus,Psittaciformes,Psittaculidae (Old World Parrots),,gropar1 11587.77522,species,nigpar2,Night Parrot,Pezoporus occidentalis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77522,species,yeblor2,Yellow-billed Lorikeet,Neopsittacus musschenbroekii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77524,species,orblor1,Orange-billed Lorikeet,Neopsittacus pullicauda,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77525,slash,y00874,Yellow-billed/Orange-billed Lorikeet,Neopsittacus musschenbroekii/pullicauda,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77526,species,boupar2,Bourke's Parrot,Neophema bourkii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77526,species,blwpar3,Blue-winged Parrot,Neophema chrysostoma,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77527,species,elepar1,Elegant Parrot,Neophema elegans,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77527,species,rocpar1,Rock Parrot,Neophema petrophila,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77528,species,orbpar1,Orange-bellied Parrot,Neophema chrysogaster,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77528,species,turpar1,Turquoise Parrot,Neophema pulchella,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77529,species,sccpar1,Scarlet-chested Parrot,Neophema splendida,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77529,spuh,neophe1,Neophema sp.,Neophema sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77529,species,swipar1,Swift Parrot,Lathamus discolor,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7753,species,crspar1,Crimson Shining-Parrot,Prosopeia splendens,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7753,species,respar1,Red Shining-Parrot,Prosopeia tabuensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77532,species,maspar2,Masked Shining-Parrot,Prosopeia personata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77533,species,horpar2,Horned Parakeet,Eunymphicus cornutus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77533,species,horpar3,Ouvea Parakeet,Eunymphicus uvaeensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77534,species,raipar1,Raiatea Parakeet,Cyanoramphus ulietanus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77534,species,blfpar2,Black-fronted Parakeet,Cyanoramphus zealandicus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77535,species,antpar1,Antipodes Parakeet,Cyanoramphus unicolor,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77535,species,refpar4,Red-crowned Parakeet,Cyanoramphus novaezelandiae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77538,species,reipar1,Reischek's Parakeet,Cyanoramphus hochstetteri,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77538,species,necpar1,New Caledonian Parakeet,Cyanoramphus saisseti,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77539,species,noipar1,Norfolk Island Parakeet,Cyanoramphus cookii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77539,species,yefpar3,Yellow-crowned Parakeet,Cyanoramphus auriceps,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7754,species,chipar1,Chatham Islands Parakeet,Cyanoramphus forbesi,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7754,species,malpar2,Malherbe's Parakeet,Cyanoramphus malherbi,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77541,spuh,cyanor1,Cyanoramphus sp.,Cyanoramphus sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77541,species,polpar1,Australian Ringneck,Barnardius zonarius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77542,issf,polpar3,Australian Ringneck (Twenty-eight),Barnardius zonarius semitorquatus,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 11587.77542,issf,polpar2,Australian Ringneck (Port Lincoln),Barnardius zonarius zonarius,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 11587.77544,issf,malrin2,Australian Ringneck (Mallee),Barnardius zonarius barnardi,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 11587.77546,issf,malrin3,Australian Ringneck (Cloncurry),Barnardius zonarius macgillivrayi,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 11587.77546,species,greros2,Green Rosella,Platycercus caledonicus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77547,species,criros2,Crimson Rosella,Platycercus elegans,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77547,issf,criros1,Crimson Rosella (Crimson),Platycercus elegans [elegans Group],Psittaciformes,Psittaculidae (Old World Parrots),,criros2 11587.77549,issf,yelros1,Crimson Rosella (Yellow),Platycercus elegans flaveolus,Psittaciformes,Psittaculidae (Old World Parrots),,criros2 11587.7755,intergrade,criros3,Crimson Rosella (Crimson x Yellow),Platycercus elegans [elegans Group] x flaveolus,Psittaciformes,Psittaculidae (Old World Parrots),,criros2 11587.7755,issf,aderos1,Crimson Rosella (Adelaide),Platycercus elegans adelaidae/subadelaidae,Psittaciformes,Psittaculidae (Old World Parrots),,criros2 11587.77552,species,norros1,Northern Rosella,Platycercus venustus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77552,species,easros1,Eastern Rosella,Platycercus eximius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77553,hybrid,x00807,Green x Eastern Rosella (hybrid),Platycercus caledonicus x eximius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77553,hybrid,x00808,Crimson x Eastern Rosella (hybrid),Platycercus elegans x eximius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77554,species,pahros1,Pale-headed Rosella,Platycercus adscitus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77555,hybrid,x00707,Eastern x Pale-headed Rosella (hybrid),Platycercus eximius x adscitus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77556,species,wesros1,Western Rosella,Platycercus icterotis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77558,species,bluebo1,Greater Bluebonnet,Northiella haematogaster,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77558,issf,bluebo2,Greater Bluebonnet (Yellow-vented),Northiella haematogaster haematogaster/pallescens,Psittaciformes,Psittaculidae (Old World Parrots),,bluebo1 11587.7756,issf,bluebo3,Greater Bluebonnet (Red-vented),Northiella haematogaster haematorrhous,Psittaciformes,Psittaculidae (Old World Parrots),,bluebo1 11587.7756,species,bluebo4,Naretha Bluebonnet,Northiella narethae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77561,species,rerpar1,Red-rumped Parrot,Psephotus haematonotus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77562,species,mulpar1,Mulga Parrot,Psephotus varius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77563,species,hoopar1,Hooded Parrot,Psephotus dissimilis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77563,species,gospar1,Golden-shouldered Parrot,Psephotus chrysopterygius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77564,species,parpar2,Paradise Parrot,Psephotus pulcherrimus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77564,species,recpar1,Red-capped Parrot,Purpureicephalus spurius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77565,species,obfpar1,Orange-breasted Fig-Parrot,Cyclopsitta gulielmitertii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77565,issf,orbfip1,Orange-breasted Fig-Parrot (Dusky-cheeked),Cyclopsitta gulielmitertii [melanogenia Group],Psittaciformes,Psittaculidae (Old World Parrots),,obfpar1 11587.77567,issf,orbfip2,Orange-breasted Fig-Parrot (Orange-breasted),Cyclopsitta gulielmitertii gulielmitertii,Psittaciformes,Psittaculidae (Old World Parrots),,obfpar1 11587.77568,issf,orbfip3,Orange-breasted Fig-Parrot (Black-fronted),Cyclopsitta gulielmitertii [nigrifrons Group],Psittaciformes,Psittaculidae (Old World Parrots),,obfpar1 11587.7757,species,defpar1,Double-eyed Fig-Parrot,Cyclopsitta diophthalma,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7757,issf,doefip1,Double-eyed Fig-Parrot (Double-eyed),Cyclopsitta diophthalma [diophthalma Group],Psittaciformes,Psittaculidae (Old World Parrots),,defpar1 11587.7757,issf,doefip2,Double-eyed Fig-Parrot (Coxen's),Cyclopsitta diophthalma coxeni,Psittaciformes,Psittaculidae (Old World Parrots),,defpar1 11587.77574,species,lafpar1,Large Fig-Parrot,Psittaculirostris desmarestii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77574,issf,larfip1,Large Fig-Parrot (Large),Psittaculirostris desmarestii [desmarestii Group],Psittaciformes,Psittaculidae (Old World Parrots),,lafpar1 11587.77574,issf,larfip2,Large Fig-Parrot (Yellow-naped),Psittaculirostris desmarestii godmani,Psittaciformes,Psittaculidae (Old World Parrots),,lafpar1 11587.77575,issf,larfip3,Large Fig-Parrot (Red-faced),Psittaculirostris desmarestii cervicalis,Psittaciformes,Psittaculidae (Old World Parrots),,lafpar1 11587.77578,species,edfpar1,Edwards's Fig-Parrot,Psittaculirostris edwardsii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77578,species,safpar1,Salvadori's Fig-Parrot,Psittaculirostris salvadorii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77579,species,guaiab1,Guaiabero,Bolbopsittacus lunulatus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77581,species,budger,Budgerigar,Melopsittacus undulatus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77581,domestic,budger1,Budgerigar (Domestic type),Melopsittacus undulatus (Domestic type),Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77582,species,plflor1,Plum-faced Lorikeet,Oreopsittacus arfaki,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77584,species,pallor1,Palm Lorikeet,Charmosyna palmarum,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77584,species,reclor1,Red-chinned Lorikeet,Charmosyna rubrigularis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77585,species,meelor1,Meek's Lorikeet,Charmosyna meeki,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77585,species,blflor1,Blue-fronted Lorikeet,Charmosyna toxopei,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77586,species,strlor1,Striated Lorikeet,Charmosyna multistriata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77586,species,pyglor1,Pygmy Lorikeet,Charmosyna wilhelminae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77587,species,reflor2,Red-fronted Lorikeet,Charmosyna rubronotata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77588,species,reflor1,Red-flanked Lorikeet,Charmosyna placentis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77591,species,neclor1,New Caledonian Lorikeet,Charmosyna diadema,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77592,species,retlor1,Red-throated Lorikeet,Charmosyna amabilis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77592,species,duclor1,Duchess Lorikeet,Charmosyna margarethae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77593,species,failor1,Fairy Lorikeet,Charmosyna pulchella,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77594,species,joslor1,Josephine's Lorikeet,Charmosyna josefinae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77596,species,paplor1,Papuan Lorikeet,Charmosyna papou,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77597,spuh,charmo1,Charmosyna sp.,Charmosyna sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77599,species,collor1,Collared Lory,Phigys solitarius,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77599,species,blclor2,Blue-crowned Lorikeet,Vini australis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.776,species,kuhlor1,Kuhl's Lorikeet,Vini kuhlii,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.776,species,stelor1,Stephen's Lorikeet,Vini stepheni,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77601,species,blulor1,Blue Lorikeet,Vini peruviana,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77601,species,ultlor1,Ultramarine Lorikeet,Vini ultramarina,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77602,species,blalor1,Black Lory,Chalcopsitta atra,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77604,species,brolor1,Brown Lory,Chalcopsitta duivenbodei,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77605,species,yeslor1,Yellow-streaked Lory,Chalcopsitta scintillata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77607,species,carlor1,Cardinal Lory,Chalcopsitta cardinalis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77608,species,chalor1,Chattering Lory,Lorius garrulus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7761,species,publor1,Purple-bellied Lory,Lorius hypoinochrous,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77612,species,punlor1,Purple-naped Lory,Lorius domicella,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77612,species,blclor1,Black-capped Lory,Lorius lory,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77616,species,whnlor2,White-naped Lory,Lorius albidinucha,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77617,species,yeblor1,Yellow-bibbed Lory,Lorius chlorocercus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77617,species,muslor1,Musk Lorikeet,Glossopsitta concinna,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77618,species,litlor1,Little Lorikeet,Glossopsitta pusilla,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77618,species,puclor1,Purple-crowned Lorikeet,Glossopsitta porphyrocephala,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77619,species,varlor1,Varied Lorikeet,Psitteuteles versicolor,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77619,species,irilor1,Iris Lorikeet,Psitteuteles iris,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77621,species,gollor1,Goldie's Lorikeet,Psitteuteles goldiei,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77622,species,rablor1,Red-and-blue Lory,Eos histrio,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77624,species,vinlor1,Violet-necked Lory,Eos squamata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77626,species,redlor1,Red Lory,Eos bornea,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77627,species,blslor1,Blue-streaked Lory,Eos reticulata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77628,species,blwlor1,Black-winged Lory,Eos cyanogenia,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77628,species,blelor1,Blue-eared Lory,Eos semilarvata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77629,species,duslor1,Dusky Lory,Pseudeos fuscata,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77629,species,ornlor1,Ornate Lorikeet,Trichoglossus ornatus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7763,species,railor1,Rainbow Lorikeet,Trichoglossus haematodus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.7763,issf,railor4,Rainbow Lorikeet (Coconut),Trichoglossus haematodus [haematodus Group],Psittaciformes,Psittaculidae (Old World Parrots),,railor1 11587.77635,issf,railor3,Rainbow Lorikeet (Sunset),Trichoglossus haematodus [forsteni Group],Psittaciformes,Psittaculidae (Old World Parrots),,railor1 11587.77638,issf,railor2,Rainbow Lorikeet (Marigold),Trichoglossus haematodus [capistratus Group],Psittaciformes,Psittaculidae (Old World Parrots),,railor1 11587.7764,issf,railor5,Rainbow Lorikeet (Rainbow),Trichoglossus haematodus moluccanus,Psittaciformes,Psittaculidae (Old World Parrots),,railor1 11587.7764,issf,railor6,Rainbow Lorikeet (Biak),Trichoglossus haematodus rosenbergii,Psittaciformes,Psittaculidae (Old World Parrots),,railor1 11587.77641,issf,railor8,Rainbow Lorikeet (Leaf),Trichoglossus haematodus weberi,Psittaciformes,Psittaculidae (Old World Parrots),,railor1 11587.77641,issf,railor7,Rainbow Lorikeet (Red-collared),Trichoglossus haematodus rubritorquis,Psittaciformes,Psittaculidae (Old World Parrots),,railor1 11587.77641,hybrid,x00809,Musk x Rainbow Lorikeet (hybrid),Glossopsitta concinna x Trichoglossus haematodus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77642,species,olhlor1,Olive-headed Lorikeet,Trichoglossus euteles,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77642,species,yaglor1,Yellow-and-green Lorikeet,Trichoglossus flavoviridis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77642,issf,yaglor2,Yellow-and-green Lorikeet (Mustard-capped),Trichoglossus flavoviridis meyeri,Psittaciformes,Psittaculidae (Old World Parrots),,yaglor1 11587.77643,issf,yaglor3,Yellow-and-green Lorikeet (Yellow-and-green),Trichoglossus flavoviridis flavoviridis,Psittaciformes,Psittaculidae (Old World Parrots),,yaglor1 11587.77644,species,minlor1,Mindanao Lorikeet,Trichoglossus johnstoniae,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77644,species,pohlor1,Pohnpei Lorikeet,Trichoglossus rubiginosus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77645,species,scblor1,Scaly-breasted Lorikeet,Trichoglossus chlorolepidotus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77645,hybrid,x00810,Rainbow x Scaly-breasted Lorikeet (hybrid),Trichoglossus haematodus x chlorolepidotus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77647,slash,y01035,Rainbow/Scaly-breasted Lorikeet,Trichoglossus haematodus/chlorolepidotus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.77648,hybrid,x00856,lorikeet sp. (hybrid),Glossopsitta/Trichoglossus sp. (hybrid),Psittaciformes,Psittaculidae (Old World Parrots),, 11587.779,spuh,y00637,lorikeet sp.,Psittaculidae sp. (lorikeet sp.),Psittaciformes,Psittaculidae (Old World Parrots),, 11587.78,species,vehpar1,Vernal Hanging-Parrot,Loriculus vernalis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.79,species,cehpar1,Sri Lanka Hanging-Parrot,Loriculus beryllinus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.8,species,phihap1,Philippine Hanging-Parrot,Loriculus philippensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.91,species,camhap1,Camiguin Hanging-Parrot,Loriculus camiguinensis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.92,species,bchpar1,Blue-crowned Hanging-Parrot,Loriculus galgulus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.93,species,suhpar1,Sulawesi Hanging-Parrot,Loriculus stigmatus,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.94,species,sulhap1,Sula Hanging-Parrot,Loriculus sclateri,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.95,species,mohpar1,Moluccan Hanging-Parrot,Loriculus amabilis,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.96,species,sahpar2,Sangihe Hanging-Parrot,Loriculus catamene,Psittaciformes,Psittaculidae (Old World Parrots),, 11587.97,species,paphap1,Papuan Hanging-Parrot,Loriculus aurantiifrons,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.01,species,gfhpar1,Green-fronted Hanging-Parrot,Loriculus tener,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.02,species,pyghap1,Pygmy Hanging-Parrot,Loriculus exilis,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.03,species,ythpar1,Yellow-throated Hanging-Parrot,Loriculus pusillus,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.04,species,wahpar2,Wallace's Hanging-Parrot,Loriculus flosculus,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.045,spuh,hangin1,hanging-parrot sp.,Loriculus sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.046,species,blclov2,Black-collared Lovebird,Agapornis swindernianus,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.05,species,gyhlov1,Gray-headed Lovebird,Agapornis canus,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.08,species,rehlov1,Red-headed Lovebird,Agapornis pullarius,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.11,species,blwlov1,Black-winged Lovebird,Agapornis taranta,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.16,species,peflov,Rosy-faced Lovebird,Agapornis roseicollis,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.19,species,fislov1,Fischer's Lovebird,Agapornis fischeri,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.2,species,yeclov,Yellow-collared Lovebird,Agapornis personatus,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.205,hybrid,x00671,Fischer's x Yellow-collared Lovebird (hybrid),Agapornis fischeri x personatus,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.207,slash,y00791,Fischer's/Yellow-collared Lovebird,Agapornis fischeri/personatus,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.21,species,lillov1,Lilian's Lovebird,Agapornis lilianae,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.22,species,blclov1,Black-cheeked Lovebird,Agapornis nigrigenis,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.23,spuh,lovebi1,lovebird sp.,Agapornis sp.,Psittaciformes,Psittaculidae (Old World Parrots),, 11588.33,species,grepar,Gray Parrot,Psittacus erithacus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.34,issf,grypar1,Gray Parrot (Timneh),Psittacus erithacus timneh/princeps,Psittaciformes,Psittacidae (New World and African Parrots),,grepar 11588.35,issf,grypar2,Gray Parrot (Gray),Psittacus erithacus erithacus,Psittaciformes,Psittacidae (New World and African Parrots),,grepar 11588.36,species,brnpar1,Brown-necked Parrot,Poicephalus robustus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.361,issf,bnnpar3,Brown-necked Parrot (Brown-necked),Poicephalus robustus fuscicollis,Psittaciformes,Psittacidae (New World and African Parrots),,brnpar1 11588.362,issf,bnnpar4,Brown-necked Parrot (Gray-headed),Poicephalus robustus suahelicus,Psittaciformes,Psittacidae (New World and African Parrots),,brnpar1 11588.4,issf,bnnpar2,Brown-necked Parrot (Cape),Poicephalus robustus robustus,Psittaciformes,Psittacidae (New World and African Parrots),,brnpar1 11588.41,species,refpar5,Red-fronted Parrot,Poicephalus gulielmi,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.42,issf,refpar6,Red-fronted Parrot (Guinean),Poicephalus gulielmi fantiensis,Psittaciformes,Psittacidae (New World and African Parrots),,refpar5 11588.425,issf,refpar7,Red-fronted Parrot (Red-fronted),Poicephalus gulielmi gulielmi/massaicus,Psittaciformes,Psittacidae (New World and African Parrots),,refpar5 11588.45,species,meypar1,Meyer's Parrot,Poicephalus meyeri,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.52,species,ruepar1,RŸppell's Parrot,Poicephalus rueppellii,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.53,species,brhpar2,Brown-headed Parrot,Poicephalus cryptoxanthus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.56,species,ninpar1,Niam-Niam Parrot,Poicephalus crassus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.57,species,rebpar1,Red-bellied Parrot,Poicephalus rufiventris,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.6,species,senpar,Senegal Parrot,Poicephalus senegalus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.63,species,yefpar4,Yellow-fronted Parrot,Poicephalus flavifrons,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.635,spuh,poicep1,Poicephalus sp.,Poicephalus sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.64,species,litpar2,Lilac-tailed Parrotlet,Touit batavicus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.65,species,scspar1,Scarlet-shouldered Parrotlet,Touit huetii,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.66,species,refpar1,Red-fronted Parrotlet,Touit costaricensis,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.67,species,bufpar1,Blue-fronted Parrotlet,Touit dilectissimus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.68,species,sarpar2,Sapphire-rumped Parrotlet,Touit purpuratus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.71,species,brbpar1,Brown-backed Parrotlet,Touit melanonotus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.72,species,gotpar2,Golden-tailed Parrotlet,Touit surdus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.73,species,spwpar2,Spot-winged Parrotlet,Touit stictopterus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.74,spuh,touit1,Touit sp.,Touit sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.75,species,gyhpar1,Gray-hooded Parakeet,Psilopsiagon aymara,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.76,species,moupar2,Mountain Parakeet,Psilopsiagon aurifrons,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.81,species,barpar1,Barred Parakeet,Bolborhynchus lineola,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.84,species,rufpar1,Rufous-fronted Parakeet,Bolborhynchus ferrugineifrons,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.85,species,andpar1,Andean Parakeet,Bolborhynchus orbygnesius,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.855,slash,y00875,Barred/Andean Parakeet,Bolborhynchus lineola/orbygnesius,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.86,species,teppar1,Tepui Parrotlet,Nannopsittaca panychlora,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.87,species,amapar1,Amazonian Parrotlet,Nannopsittaca dachilleae,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.88,species,monpar,Monk Parakeet,Myiopsitta monachus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.89,issf,monpar1,Monk Parakeet (Monk),Myiopsitta monachus [monachus Group],Psittaciformes,Psittacidae (New World and African Parrots),,monpar 11588.93,issf,monpar2,Monk Parakeet (Cliff),Myiopsitta monachus luchsi,Psittaciformes,Psittacidae (New World and African Parrots),,monpar 11588.94,species,tuipar1,Tui Parakeet,Brotogeris sanctithomae,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.97,species,plapar1,Plain Parakeet,Brotogeris tirica,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.98,species,whwpar,White-winged Parakeet,Brotogeris versicolurus,Psittaciformes,Psittacidae (New World and African Parrots),, 11588.99,species,yecpar,Yellow-chevroned Parakeet,Brotogeris chiriri,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.02,hybrid,wwxpar1,White-winged x Yellow-chevroned Parakeet (hybrid),Brotogeris versicolurus x chiriri,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.03,slash,y00483,White-winged/Yellow-chevroned Parakeet,Brotogeris versicolurus/chiriri,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.04,species,gycpar1,Gray-cheeked Parakeet,Brotogeris pyrrhoptera,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.05,species,orcpar,Orange-chinned Parakeet,Brotogeris jugularis,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.08,species,cowpar1,Cobalt-winged Parakeet,Brotogeris cyanoptera,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.12,species,gowpar2,Golden-winged Parakeet,Brotogeris chrysoptera,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.18,spuh,brotog1,Brotogeris sp.,Brotogeris sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.19,species,recpar3,Pileated Parrot,Pionopsitta pileata,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.2,species,blbpar4,Blue-bellied Parrot,Triclaria malachitacea,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.21,species,rufpar2,Rusty-faced Parrot,Hapalopsittaca amazonina,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.25,species,inwpar1,Indigo-winged Parrot,Hapalopsittaca fuertesi,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.26,species,refpar2,Red-faced Parrot,Hapalopsittaca pyrrhops,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.27,species,blwpar1,Black-winged Parrot,Hapalopsittaca melanotis,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.3,species,brhpar1,Brown-hooded Parrot,Pyrilia haematotis,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.33,species,rofpar2,Rose-faced Parrot,Pyrilia pulchra,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.34,species,sahpar1,Saffron-headed Parrot,Pyrilia pyrilia,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.35,species,orcpar2,Orange-cheeked Parrot,Pyrilia barrabandi,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.38,species,caipar2,Caica Parrot,Pyrilia caica,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.39,species,balpar1,Bald Parrot,Pyrilia aurantiocephala,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.4,species,vulpar1,Vulturine Parrot,Pyrilia vulturina,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.405,spuh,pyrili1,Pyrilia sp.,Pyrilia sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.41,species,duspar1,Dusky Parrot,Pionus fuscus,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.42,species,rebpar2,Red-billed Parrot,Pionus sordidus,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.49,species,schpar1,Scaly-headed Parrot,Pionus maximiliani,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.54,species,spfpar1,Speckle-faced Parrot,Pionus tumultuosus,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.55,issf,spfpar2,Speckle-faced Parrot (White-capped),Pionus tumultuosus seniloides,Psittaciformes,Psittacidae (New World and African Parrots),,spfpar1 11589.56,issf,spfpar3,Speckle-faced Parrot (Plum-crowned),Pionus tumultuosus tumultuosus,Psittaciformes,Psittacidae (New World and African Parrots),,spfpar1 11589.57,species,blhpar1,Blue-headed Parrot,Pionus menstruus,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.58,issf,buhpar1,Blue-headed Parrot (Blue-headed),Pionus menstruus menstruus/rubrigularis,Psittaciformes,Psittacidae (New World and African Parrots),,blhpar1 11589.61,issf,buhpar2,Blue-headed Parrot (Reichenow's),Pionus menstruus reichenowi,Psittaciformes,Psittacidae (New World and African Parrots),,blhpar1 11589.62,species,whcpar,White-crowned Parrot,Pionus senilis,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.63,species,brwpar1,Bronze-winged Parrot,Pionus chalcopterus,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.64,spuh,pionus1,Pionus sp.,Pionus sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.65,species,shtpar2,Short-tailed Parrot,Graydidascalus brachyurus,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.66,species,yefpar5,Yellow-faced Parrot,Alipiopsitta xanthops,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.67,species,fespar1,Festive Parrot,Amazona festiva,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.68,issf,fespar2,Festive Parrot (Northern),Amazona festiva bodini,Psittaciformes,Psittacidae (New World and African Parrots),,fespar1 11589.69,issf,fespar3,Festive Parrot (Southern),Amazona festiva festiva,Psittaciformes,Psittacidae (New World and African Parrots),,fespar1 11589.7,species,vinpar1,Vinaceous-breasted Parrot,Amazona vinacea,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.71,species,tucpar1,Tucuman Parrot,Amazona tucumana,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.72,species,respar2,Red-spectacled Parrot,Amazona pretrei,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.73,species,recpar,Red-crowned Parrot,Amazona viridigenalis,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.74,species,licpar,Lilac-crowned Parrot,Amazona finschi,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.75,species,relpar,Red-lored Parrot,Amazona autumnalis,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.76,issf,relpar2,Red-lored Parrot (Yellow-cheeked),Amazona autumnalis autumnalis,Psittaciformes,Psittacidae (New World and African Parrots),,relpar 11589.77,issf,relpar3,Red-lored Parrot (Salvin's),Amazona autumnalis lilacina/salvini,Psittaciformes,Psittacidae (New World and African Parrots),,relpar 11589.8,issf,relpar4,Red-lored Parrot (Diademed),Amazona autumnalis diadema,Psittaciformes,Psittacidae (New World and African Parrots),,relpar 11589.805,hybrid,x00857,Red-crowned x Red-lored Parrot (hybrid),Amazona viridigenalis x autumnalis,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.81,species,blcpar2,Blue-cheeked Parrot,Amazona dufresniana,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.82,species,rebpar7,Red-browed Parrot,Amazona rhodocorytha,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.83,species,renpar1,Red-necked Parrot,Amazona arausiaca,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.84,species,stlpar1,St. Lucia Parrot,Amazona versicolor,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.85,species,yenpar1,Yellow-naped Parrot,Amazona auropalliata,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.89,species,yehpar,Yellow-headed Parrot,Amazona oratrix,Psittaciformes,Psittacidae (New World and African Parrots),, 11589.9,issf,yehpar2,Yellow-headed Parrot (Tres Marias Is.),Amazona oratrix tresmariae,Psittaciformes,Psittacidae (New World and African Parrots),,yehpar 11589.91,issf,yehpar1,Yellow-headed Parrot (Mainland),Amazona oratrix [oratrix Group],Psittaciformes,Psittacidae (New World and African Parrots),,yehpar 11589.95,species,ywcpar,Yellow-crowned Parrot,Amazona ochrocephala,Psittaciformes,Psittacidae (New World and African Parrots),, 11590,species,yespar1,Yellow-shouldered Parrot,Amazona barbadensis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.01,species,bufpar,Turquoise-fronted Parrot,Amazona aestiva,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.04,species,blbpar1,Black-billed Parrot,Amazona agilis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.05,species,whfpar1,White-fronted Parrot,Amazona albifrons,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.09,species,yelpar1,Yellow-lored Parrot,Amazona xantholora,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.1,species,yebpar1,Yellow-billed Parrot,Amazona collaria,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.105,slash,y00876,Black-billed/Yellow-billed Parrot,Amazona agilis/collaria,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.11,species,cubpar1,Cuban Parrot,Amazona leucocephala,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.12,issf,cubpar3,Cuban Parrot (Cuban),Amazona leucocephala leucocephala,Psittaciformes,Psittacidae (New World and African Parrots),,cubpar1 11590.13,issf,cubpar4,Cuban Parrot (Bahamas),Amazona leucocephala bahamensis,Psittaciformes,Psittacidae (New World and African Parrots),,cubpar1 11590.14,issf,cubpar5,Cuban Parrot (Cayman Is.),Amazona leucocephala caymanensis/hesterna,Psittaciformes,Psittacidae (New World and African Parrots),,cubpar1 11590.17,species,hispar1,Hispaniolan Parrot,Amazona ventralis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.18,species,purpar1,Puerto Rican Parrot,Amazona vittata,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.21,species,meapar,Mealy Parrot,Amazona farinosa,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.212,issf,meapar1,Mealy Parrot (Northern),Amazona farinosa guatemalae/virenticeps,Psittaciformes,Psittacidae (New World and African Parrots),,meapar 11590.214,issf,meapar2,Mealy Parrot (Southern),Amazona farinosa farinosa,Psittaciformes,Psittacidae (New World and African Parrots),,meapar 11590.25,species,kawpar1,Kawall's Parrot,Amazona kawalli,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.26,species,imppar1,Imperial Parrot,Amazona imperialis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.27,species,retpar1,Red-tailed Parrot,Amazona brasiliensis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.28,species,stvpar1,St. Vincent Parrot,Amazona guildingii,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.29,species,orwpar,Orange-winged Parrot,Amazona amazonica,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.32,species,scnpar1,Scaly-naped Parrot,Amazona mercenarius,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.35,spuh,amazon,Amazona sp.,Amazona sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.36,species,grrpar1,Green-rumped Parrotlet,Forpus passerinus,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.42,species,blwpar4,Blue-winged Parrotlet,Forpus xanthopterygius,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.44,issf,buwpar1,Blue-winged Parrotlet (Turquoise-winged),Forpus xanthopterygius spengeli,Psittaciformes,Psittacidae (New World and African Parrots),,blwpar4 11590.46,issf,buwpar2,Blue-winged Parrotlet (crassirostris),Forpus xanthopterygius crassirostris,Psittaciformes,Psittacidae (New World and African Parrots),,blwpar4 11590.47,issf,buwpar3,Blue-winged Parrotlet (Blue-winged),Forpus xanthopterygius xanthopterygius,Psittaciformes,Psittacidae (New World and African Parrots),,blwpar4 11590.48,species,mexpar1,Mexican Parrotlet,Forpus cyanopygius,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.49,issf,mexpar2,Mexican Parrotlet (Mexican),Forpus cyanopygius cyanopygius,Psittaciformes,Psittacidae (New World and African Parrots),,mexpar1 11590.5,issf,mexpar3,Mexican Parrotlet (Tres Marias),Forpus cyanopygius insularis,Psittaciformes,Psittacidae (New World and African Parrots),,mexpar1 11590.51,species,spepar1,Spectacled Parrotlet,Forpus conspicillatus,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.55,species,dubpar1,Dusky-billed Parrotlet,Forpus modestus,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.56,issf,dubpar2,Dusky-billed Parrotlet (Schomburgk's),Forpus modestus modestus,Psittaciformes,Psittacidae (New World and African Parrots),,dubpar1 11590.57,issf,dubpar3,Dusky-billed Parrotlet (Dusky-billed),Forpus modestus sclateri,Psittaciformes,Psittacidae (New World and African Parrots),,dubpar1 11590.58,species,pacpar2,Pacific Parrotlet,Forpus coelestis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.59,species,yefpar2,Yellow-faced Parrotlet,Forpus xanthops,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.6,spuh,forpus1,Forpus sp.,Forpus sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.61,species,blhpar4,Black-headed Parrot,Pionites melanocephalus,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.64,species,whbpar1,White-bellied Parrot,Pionites leucogaster,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.642,issf,whbpar2,White-bellied Parrot (Black-legged),Pionites leucogaster xanthomerius,Psittaciformes,Psittacidae (New World and African Parrots),,whbpar1 11590.644,issf,whbpar3,White-bellied Parrot (Yellow-tailed),Pionites leucogaster xanthurus,Psittaciformes,Psittacidae (New World and African Parrots),,whbpar1 11590.646,issf,whbpar4,White-bellied Parrot (Green-thighed),Pionites leucogaster leucogaster,Psittaciformes,Psittacidae (New World and African Parrots),,whbpar1 11590.68,species,refpar3,Red-fan Parrot,Deroptyus accipitrinus,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.71,species,bltpar2,Ochre-marked Parakeet,Pyrrhura cruentata,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.72,species,blwpar2,Blaze-winged Parakeet,Pyrrhura devillei,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.73,species,mabpar,Maroon-bellied Parakeet,Pyrrhura frontalis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.74,issf,mabpar2,Maroon-bellied Parakeet (Maroon-tailed),Pyrrhura frontalis frontalis,Psittaciformes,Psittacidae (New World and African Parrots),,mabpar 11590.75,issf,mabpar1,Maroon-bellied Parakeet (Green-tailed),Pyrrhura frontalis chiripepe,Psittaciformes,Psittacidae (New World and African Parrots),,mabpar 11590.76,species,peapar1,Pearly Parakeet,Pyrrhura lepida,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.77,issf,peapar2,Pearly Parakeet (lepida),Pyrrhura lepida lepida,Psittaciformes,Psittacidae (New World and African Parrots),,peapar1 11590.78,issf,peapar3,Pearly Parakeet (anerythra),Pyrrhura lepida anerythra,Psittaciformes,Psittacidae (New World and African Parrots),,peapar1 11590.79,issf,peapar4,Pearly Parakeet (coerulescens),Pyrrhura lepida coerulescens,Psittaciformes,Psittacidae (New World and African Parrots),,peapar1 11590.8,species,crbpar1,Crimson-bellied Parakeet,Pyrrhura perlata,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.81,species,gncpar,Green-cheeked Parakeet,Pyrrhura molinae,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.87,species,pfrpar1,Pfrimer's Parakeet,Pyrrhura pfrimeri,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.88,species,gybpar1,Gray-breasted Parakeet,Pyrrhura griseipectus,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.89,species,mafpar3,Maroon-faced Parakeet,Pyrrhura leucotis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.9,slash,mafpar2,Gray-breasted/Maroon-faced Parakeet,Pyrrhura griseipectus/leucotis,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.91,species,paipar1,Painted Parakeet,Pyrrhura picta,Psittaciformes,Psittacidae (New World and African Parrots),, 11590.92,issf,paipar2,Painted Parakeet (Painted),Pyrrhura picta picta,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 11590.93,issf,paipar6,Painted Parakeet (Venezuelan),Pyrrhura picta emma,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 11590.96,issf,paipar4,Painted Parakeet (Sinu),Pyrrhura picta subandina,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 11590.97,issf,paipar5,Painted Parakeet (Todd's),Pyrrhura picta caeruleiceps,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 11590.98,issf,paipar3,Painted Parakeet (Azuero),Pyrrhura picta eisenmanni,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 11590.99,species,sanpar2,Santarem Parakeet,Pyrrhura amazonum,Psittaciformes,Psittacidae (New World and African Parrots),, 11591,issf,sanpar3,Santarem Parakeet (Santarem),Pyrrhura amazonum amazonum,Psittaciformes,Psittacidae (New World and African Parrots),,sanpar2 11591.01,issf,sanpar4,Santarem Parakeet (Madeira),Pyrrhura amazonum snethlageae,Psittaciformes,Psittacidae (New World and African Parrots),,sanpar2 11591.02,issf,sanpar5,Santarem Parakeet (Cristalino),Pyrrhura amazonum lucida,Psittaciformes,Psittacidae (New World and African Parrots),,sanpar2 11591.03,species,bonpar1,Bonaparte's Parakeet,Pyrrhura lucianii,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.04,species,rofpar3,Rose-fronted Parakeet,Pyrrhura roseifrons,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.05,issf,rofpar5,Rose-fronted Parakeet (Wavy-breasted),Pyrrhura roseifrons peruviana/dilutissima,Psittaciformes,Psittacidae (New World and African Parrots),,rofpar3 11591.08,issf,rofpar1,Rose-fronted Parakeet (Garlepp's),Pyrrhura roseifrons parvifrons,Psittaciformes,Psittacidae (New World and African Parrots),,rofpar3 11591.09,issf,rofpar4,Rose-fronted Parakeet (Rose-fronted),Pyrrhura roseifrons roseifrons,Psittaciformes,Psittacidae (New World and African Parrots),,rofpar3 11591.1,species,sampar1,Santa Marta Parakeet,Pyrrhura viridicata,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.11,species,fispar1,Fiery-shouldered Parakeet,Pyrrhura egregia,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.14,species,matpar2,Maroon-tailed Parakeet,Pyrrhura melanura,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.15,issf,matpar4,Maroon-tailed Parakeet (Choco),Pyrrhura melanura pacifica,Psittaciformes,Psittacidae (New World and African Parrots),,matpar2 11591.16,issf,matpar3,Maroon-tailed Parakeet (Maroon-tailed),Pyrrhura melanura [melanura Group],Psittaciformes,Psittacidae (New World and African Parrots),,matpar2 11591.21,species,elopar1,El Oro Parakeet,Pyrrhura orcesi,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.22,species,blcpar1,Black-capped Parakeet,Pyrrhura rupicola,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.25,species,whnpar1,White-necked Parakeet,Pyrrhura albipectus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.26,species,brbpar2,Brown-breasted Parakeet,Pyrrhura calliptera,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.27,species,reepar1,Red-eared Parakeet,Pyrrhura hoematotis,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.3,species,rohpar1,Rose-headed Parakeet,Pyrrhura rhodocephala,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.31,species,suwpar1,Sulphur-winged Parakeet,Pyrrhura hoffmanni,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.34,spuh,pyrrhu1,Pyrrhura sp.,Pyrrhura sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.35,species,auspar1,Austral Parakeet,Enicognathus ferrugineus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.38,species,slbpar1,Slender-billed Parakeet,Enicognathus leptorhynchus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.385,slash,y00877,Austral/Slender-billed Parakeet,Enicognathus ferrugineus/leptorhynchus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.39,species,burpar,Burrowing Parakeet,Cyanoliseus patagonus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.4,issf,burpar1,Burrowing Parakeet (Olive),Cyanoliseus patagonus andinus,Psittaciformes,Psittacidae (New World and African Parrots),,burpar 11591.41,issf,burpar3,Burrowing Parakeet (Burrowing),Cyanoliseus patagonus patagonus/conlara,Psittaciformes,Psittacidae (New World and African Parrots),,burpar 11591.44,issf,burpar2,Burrowing Parakeet (Chilean),Cyanoliseus patagonus bloxami,Psittaciformes,Psittacidae (New World and African Parrots),,burpar 11591.45,species,hyamac1,Hyacinth Macaw,Anodorhynchus hyacinthinus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.46,species,glamac1,Glaucous Macaw,Anodorhynchus glaucus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.47,species,indmac1,Indigo Macaw,Anodorhynchus leari,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.48,species,thbpar,Thick-billed Parrot,Rhynchopsitta pachyrhyncha,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.49,species,mafpar1,Maroon-fronted Parrot,Rhynchopsitta terrisi,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.5,species,oltpar1,Olive-throated Parakeet,Eupsittula nana,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.51,issf,oltpar2,Olive-throated Parakeet (Aztec),Eupsittula nana astec/vicinalis,Psittaciformes,Psittacidae (New World and African Parrots),,oltpar1 11591.54,issf,oltpar3,Olive-throated Parakeet (Jamaican),Eupsittula nana nana,Psittaciformes,Psittacidae (New World and African Parrots),,oltpar1 11591.55,species,orfpar,Orange-fronted Parakeet,Eupsittula canicularis,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.59,species,pefpar1,Peach-fronted Parakeet,Eupsittula aurea,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.6,species,brtpar1,Brown-throated Parakeet,Eupsittula pertinax,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.61,issf,bntpar1,Brown-throated Parakeet (Veraguas),Eupsittula pertinax ocularis,Psittaciformes,Psittacidae (New World and African Parrots),,brtpar1 11591.62,issf,bntpar2,Brown-throated Parakeet (Brown-throated),Eupsittula pertinax [pertinax Group],Psittaciformes,Psittacidae (New World and African Parrots),,brtpar1 11591.76,species,cacpar1,Cactus Parakeet,Eupsittula cactorum,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.79,species,carpar,Carolina Parakeet,Conuropsis carolinensis,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.8,species,duhpar,Dusky-headed Parakeet,Aratinga weddellii,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.81,species,bkhpar,Nanday Parakeet,Aratinga nenday,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.82,species,sunpar1,Sun Parakeet,Aratinga solstitialis,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.83,species,subpar1,Sulphur-breasted Parakeet,Aratinga maculata,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.84,species,janpar1,Jandaya Parakeet,Aratinga jandaya,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.85,species,gocpar2,Golden-capped Parakeet,Aratinga auricapillus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.89,species,spimac1,Spix's Macaw,Cyanopsitta spixii,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.9,species,rebmac2,Red-bellied Macaw,Orthopsittaca manilatus,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.91,species,buwmac1,Blue-winged Macaw,Primolius maracana,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.92,species,buhmac1,Blue-headed Macaw,Primolius couloni,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.93,species,yecmac,Yellow-collared Macaw,Primolius auricollis,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.94,species,baymac,Blue-and-yellow Macaw,Ara ararauna,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.95,species,bltmac1,Blue-throated Macaw,Ara glaucogularis,Psittaciformes,Psittacidae (New World and African Parrots),, 11591.96,species,milmac,Military Macaw,Ara militaris,Psittaciformes,Psittacidae (New World and African Parrots),, 11592,species,grgmac,Great Green Macaw,Ara ambiguus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.03,species,scamac1,Scarlet Macaw,Ara macao,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.045,hybrid,x00888,Blue-and-yellow x Scarlet Macaw (hybrid),Ara ararauna x macao,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.06,species,ragmac1,Red-and-green Macaw,Ara chloropterus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.07,slash,y00792,Scarlet/Red-and-green Macaw,Ara macao/chloropterus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.08,species,cubmac1,Cuban Macaw,Ara tricolor,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.09,species,refmac1,Red-fronted Macaw,Ara rubrogenys,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.1,species,chfmac1,Chestnut-fronted Macaw,Ara severus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.11,spuh,larmac1,large macaw sp.,Ara sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.12,species,goppar1,Golden-plumed Parakeet,Leptosittaca branickii,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.13,species,yeepar1,Yellow-eared Parrot,Ognorhynchus icterotis,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.14,species,golpar3,Golden Parakeet,Guaruba guarouba,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.15,species,bucpar,Blue-crowned Parakeet,Thectocercus acuticaudatus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.16,issf,bucpar1,Blue-crowned Parakeet (Blue-crowned),Thectocercus acuticaudatus [acuticaudatus Group],Psittaciformes,Psittacidae (New World and African Parrots),,bucpar 11592.21,issf,bucpar2,Blue-crowned Parakeet (Highland),Thectocercus acuticaudatus neumanni,Psittaciformes,Psittacidae (New World and African Parrots),,bucpar 11592.22,species,resmac2,Red-shouldered Macaw,Diopsittaca nobilis,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.23,issf,resmac1,Red-shouldered Macaw (Northern),Diopsittaca nobilis nobilis,Psittaciformes,Psittacidae (New World and African Parrots),,resmac2 11592.24,issf,resmac3,Red-shouldered Macaw (Southern),Diopsittaca nobilis cumanensis/longipennis,Psittaciformes,Psittacidae (New World and African Parrots),,resmac2 11592.26,spuh,smamac1,small macaw sp.,Orthopsittaca/Primolius/Diopsittaca sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.27,species,grnpar,Green Parakeet,Psittacara holochlorus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.28,issf,grnpar1,Green Parakeet (Green),Psittacara holochlorus holochlorus/brewsteri,Psittaciformes,Psittacidae (New World and African Parrots),,grnpar 11592.31,issf,grnpar2,Green Parakeet (Socorro),Psittacara holochlorus brevipes,Psittaciformes,Psittacidae (New World and African Parrots),,grnpar 11592.32,issf,grnpar3,Green Parakeet (Red-throated),Psittacara holochlorus rubritorquis,Psittaciformes,Psittacidae (New World and African Parrots),,grnpar 11592.33,species,pacpar1,Pacific Parakeet,Psittacara strenuus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.335,slash,y00878,Green/Pacific Parakeet,Psittacara holochlorus/strenuus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.34,species,crfpar,Crimson-fronted Parakeet,Psittacara finschi,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.35,species,scfpar1,Scarlet-fronted Parakeet,Psittacara wagleri,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.4,species,mitpar,Mitred Parakeet,Psittacara mitratus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.41,issf,mitpar1,Mitred Parakeet (Mitred),Psittacara mitratus [mitratus Group],Psittaciformes,Psittacidae (New World and African Parrots),,mitpar 11592.45,issf,mitpar2,Mitred Parakeet (Chapman's),Psittacara mitratus alticola,Psittaciformes,Psittacidae (New World and African Parrots),,mitpar 11592.455,slash,y00793,Scarlet-fronted/Mitred Parakeet,Psittacara wagleri/mitratus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.46,species,rempar,Red-masked Parakeet,Psittacara erythrogenys,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.465,slash,y00794,Mitred/Red-masked Parakeet,Psittacara mitratus/erythrogenys,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.47,species,whepar2,White-eyed Parakeet,Psittacara leucophthalmus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.51,species,cubpar2,Cuban Parakeet,Psittacara euops,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.52,species,hispar,Hispaniolan Parakeet,Psittacara chloropterus,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.54,species,purpar2,Puerto Rican Parakeet,Psittacara maugei,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.545,spuh,psitta2,Psittacara sp.,Psittacara sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.547,spuh,aratin,large parakeet sp. (former Aratinga sp.),Eupsittula/Aratinga/Thectocercus/Psittacara sp.,Psittaciformes,Psittacidae (New World and African Parrots),, 11592.55,spuh,parake,parakeet sp.,Psittaciformes sp. (parakeet sp.),Psittaciformes,,, 11592.56,spuh,parrot,parrot sp.,Psittaciformes sp. (parrot sp.),Psittaciformes,,, 11592.57,species,riflem1,Rifleman,Acanthisitta chloris,Passeriformes,Acanthisittidae (New Zealand Wrens),New Zealand Wrens, 11592.8,species,buswre1,Bush Wren,Xenicus longipes,Passeriformes,Acanthisittidae (New Zealand Wrens),, 11593.6,species,soiwre1,South Island Wren,Xenicus gilviventris,Passeriformes,Acanthisittidae (New Zealand Wrens),, 11593.8,species,stiwre1,Stephens Island Wren,Xenicus lyalli,Passeriformes,Acanthisittidae (New Zealand Wrens),, 11594,species,afrbro1,African Broadbill,Smithornis capensis,Passeriformes,Calyptomenidae (African and Green Broadbills),African and Green Broadbills, 11596,species,gyhbro1,Gray-headed Broadbill,Smithornis sharpei,Passeriformes,Calyptomenidae (African and Green Broadbills),, 11596.2,issf,gyhbro2,Gray-headed Broadbill (Zenker's),Smithornis sharpei zenkeri,Passeriformes,Calyptomenidae (African and Green Broadbills),,gyhbro1 11596.4,issf,gyhbro3,Gray-headed Broadbill (Sharpe's),Smithornis sharpei sharpei,Passeriformes,Calyptomenidae (African and Green Broadbills),,gyhbro1 11596.6,issf,gyhbro4,Gray-headed Broadbill (Gray-headed),Smithornis sharpei eurylaemus,Passeriformes,Calyptomenidae (African and Green Broadbills),,gyhbro1 11596.8,species,rusbro1,Rufous-sided Broadbill,Smithornis rufolateralis,Passeriformes,Calyptomenidae (African and Green Broadbills),, 11597,spuh,smitho1,Smithornis sp.,Smithornis sp.,Passeriformes,Calyptomenidae (African and Green Broadbills),, 11597.4,species,grebro1,Green Broadbill,Calyptomena viridis,Passeriformes,Calyptomenidae (African and Green Broadbills),, 11598.2,species,hosbro1,Hose's Broadbill,Calyptomena hosii,Passeriformes,Calyptomenidae (African and Green Broadbills),, 11598.4,species,whibro1,Whitehead's Broadbill,Calyptomena whiteheadi,Passeriformes,Calyptomenidae (African and Green Broadbills),, 11598.6,species,barbro1,Black-and-red Broadbill,Cymbirhynchus macrorhynchos,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),Asian and Grauer's Broadbills, 11598.8,issf,barbro2,Black-and-red Broadbill (Irrawaddy),Cymbirhynchus macrorhynchos affinis,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,barbro1 11599,issf,barbro3,Black-and-red Broadbill (Black-and-red),Cymbirhynchus macrorhynchos [macrorhynchos Group],Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,barbro1 11599.6,species,lotbro1,Long-tailed Broadbill,Psarisomus dalhousiae,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11625,species,sibbro1,Silver-breasted Broadbill,Serilophus lunatus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11625.2,issf,sibbro2,Silver-breasted Broadbill (Gray-browed),Serilophus lunatus rubropygius,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,sibbro1 11625.4,issf,sibbro3,Silver-breasted Broadbill (Silver-breasted),Serilophus lunatus [lunatus Group],Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,sibbro1 11636,species,banbro1,Banded Broadbill,Eurylaimus javanicus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11636.2,issf,banbro2,Banded Broadbill (Banded),Eurylaimus javanicus [harterti Group],Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,banbro1 11636.4,issf,banbro3,Banded Broadbill (Javan),Eurylaimus javanicus javanicus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,banbro1 11642,species,baybro1,Black-and-yellow Broadbill,Eurylaimus ochromalus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11642.2,slash,y00879,Banded/Black-and-yellow Broadbill,Eurylaimus javanicus/ochromalus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11643,species,watbro1,Wattled Broadbill,Eurylaimus steerii,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11646,species,visbro1,Visayan Broadbill,Eurylaimus samarensis,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11647,species,dusbro1,Dusky Broadbill,Corydon sumatranus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11652,species,grabro1,Grauer's Broadbill,Pseudocalyptomena graueri,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11652.2,spuh,asibro1,asian broadbill sp.,Eurylaimidae sp.,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, 11653,species,sapayo1,Sapayoa,Sapayoa aenigma,Passeriformes,Sapayoidae (Sapayoa),Sapayoa, 11654,species,velasi1,Velvet Asity,Philepitta castanea,Passeriformes,Philepittidae (Asities),Asities, 11655,species,schasi1,Schlegel's Asity,Philepitta schlegeli,Passeriformes,Philepittidae (Asities),, 11656,species,sunasi1,Sunbird Asity,Neodrepanis coruscans,Passeriformes,Philepittidae (Asities),, 11657,species,yebasi1,Yellow-bellied Asity,Neodrepanis hypoxantha,Passeriformes,Philepittidae (Asities),, 11657.2,slash,y00880,Sunbird/Yellow-bellied Asity,Neodrepanis coruscans/hypoxantha,Passeriformes,Philepittidae (Asities),, 11658,species,whipit1,Whiskered Pitta,Erythropitta kochi,Passeriformes,Pittidae (Pittas),Old World Pittas, 11659,species,rebpit1,Blue-breasted Pitta,Erythropitta erythrogaster,Passeriformes,Pittidae (Pittas),, 11660.5,issf,bubpit1,Blue-breasted Pitta (Blue-breasted),Erythropitta erythrogaster [erythrogaster Group],Passeriformes,Pittidae (Pittas),,rebpit1 11663,issf,talpit1,Blue-breasted Pitta (Talaud),Erythropitta erythrogaster inspeculata,Passeriformes,Pittidae (Pittas),,rebpit1 11664,species,sanpit1,Sangihe Pitta,Erythropitta caeruleitorques,Passeriformes,Pittidae (Pittas),, 11665,species,siapit1,Siao Pitta,Erythropitta palliceps,Passeriformes,Pittidae (Pittas),, 11666,species,sulpit3,Sulawesi Pitta,Erythropitta celebensis,Passeriformes,Pittidae (Pittas),, 11667,species,sulpit1,Sula Pitta,Erythropitta dohertyi,Passeriformes,Pittidae (Pittas),, 11668,species,molpit1,North Moluccan Pitta,Erythropitta rufiventris,Passeriformes,Pittidae (Pittas),, 11671.5,species,sompit1,South Moluccan Pitta,Erythropitta rubrinucha,Passeriformes,Pittidae (Pittas),, 11674,species,pappit1,Papuan Pitta,Erythropitta macklotii,Passeriformes,Pittidae (Pittas),, 11679,species,neipit1,New Ireland Pitta,Erythropitta novaehibernicae,Passeriformes,Pittidae (Pittas),, 11682,species,tabpit1,Tabar Pitta,Erythropitta splendida,Passeriformes,Pittidae (Pittas),, 11683,species,nebpit1,New Britain Pitta,Erythropitta gazellae,Passeriformes,Pittidae (Pittas),, 11684,species,loupit1,Louisiade Pitta,Erythropitta meeki,Passeriformes,Pittidae (Pittas),, 11685,species,blcpit1,Graceful Pitta,Erythropitta venusta,Passeriformes,Pittidae (Pittas),, 11686,species,bkhpit1,Black-crowned Pitta,Erythropitta ussheri,Passeriformes,Pittidae (Pittas),, 11688,species,blbpit1,Blue-banded Pitta,Erythropitta arquata,Passeriformes,Pittidae (Pittas),, 11689,species,garpit1,Garnet Pitta,Erythropitta granatina,Passeriformes,Pittidae (Pittas),, 11692,spuh,erythr1,Erythropitta sp.,Erythropitta sp.,Passeriformes,Pittidae (Pittas),, 11693,species,earpit1,Eared Pitta,Hydrornis phayrei,Passeriformes,Pittidae (Pittas),, 11694,species,runpit1,Rusty-naped Pitta,Hydrornis oatesi,Passeriformes,Pittidae (Pittas),, 11699,species,blnpit1,Blue-naped Pitta,Hydrornis nipalensis,Passeriformes,Pittidae (Pittas),, 11702,species,blrpit1,Blue-rumped Pitta,Hydrornis soror,Passeriformes,Pittidae (Pittas),, 11708,species,giapit1,Giant Pitta,Hydrornis caeruleus,Passeriformes,Pittidae (Pittas),, 11711,species,schpit1,Schneider's Pitta,Hydrornis schneideri,Passeriformes,Pittidae (Pittas),, 11712,species,banpit3,Malayan Banded-Pitta,Hydrornis irena,Passeriformes,Pittidae (Pittas),, 11713,species,banpit2,Javan Banded-Pitta,Hydrornis guajanus,Passeriformes,Pittidae (Pittas),, 11714,species,banpit4,Bornean Banded-Pitta,Hydrornis schwaneri,Passeriformes,Pittidae (Pittas),, 11715,species,blhpit1,Blue-headed Pitta,Hydrornis baudii,Passeriformes,Pittidae (Pittas),, 11716,species,blupit1,Blue Pitta,Hydrornis cyaneus,Passeriformes,Pittidae (Pittas),, 11720,species,babpit1,Bar-bellied Pitta,Hydrornis elliotii,Passeriformes,Pittidae (Pittas),, 11721,species,gurpit1,Gurney's Pitta,Hydrornis gurneyi,Passeriformes,Pittidae (Pittas),, 11722,spuh,hydror1,Hydrornis sp.,Hydrornis sp.,Passeriformes,Pittidae (Pittas),, 11723,species,afrpit1,African Pitta,Pitta angolensis,Passeriformes,Pittidae (Pittas),, 11727,species,grbpit1,Green-breasted Pitta,Pitta reichenowi,Passeriformes,Pittidae (Pittas),, 11728,species,indpit1,Indian Pitta,Pitta brachyura,Passeriformes,Pittidae (Pittas),, 11729,species,blwpit1,Blue-winged Pitta,Pitta moluccensis,Passeriformes,Pittidae (Pittas),, 11730,species,faipit1,Fairy Pitta,Pitta nympha,Passeriformes,Pittidae (Pittas),, 11731,species,hoopit2,Hooded Pitta,Pitta sordida,Passeriformes,Pittidae (Pittas),, 11732,issf,hoopit3,Hooded Pitta (Chestnut-crowned),Pitta sordida cucullata,Passeriformes,Pittidae (Pittas),,hoopit2 11733,issf,hoopit4,Hooded Pitta (Nicobar),Pitta sordida abbotti,Passeriformes,Pittidae (Pittas),,hoopit2 11733.5,issf,hoopit5,Hooded Pitta (Sunda),Pitta sordida mulleri/bangkana,Passeriformes,Pittidae (Pittas),,hoopit2 11735.5,issf,hoopit6,Hooded Pitta (Philippine),Pitta sordida sordida/palawanensis,Passeriformes,Pittidae (Pittas),,hoopit2 11738,issf,hoopit7,Hooded Pitta (Sangihe),Pitta sordida sanghirana,Passeriformes,Pittidae (Pittas),,hoopit2 11739,issf,hoopit8,Hooded Pitta (Minahassa),Pitta sordida forsteni,Passeriformes,Pittidae (Pittas),,hoopit2 11739.5,issf,hoopit9,Hooded Pitta (Papuan),Pitta sordida novaeguineae/goodfellowi,Passeriformes,Pittidae (Pittas),,hoopit2 11742,issf,hoopit10,Hooded Pitta (Numfor),Pitta sordida mefoorana,Passeriformes,Pittidae (Pittas),,hoopit2 11743,issf,hoopit11,Hooded Pitta (Biak),Pitta sordida rosenbergii,Passeriformes,Pittidae (Pittas),,hoopit2 11744,species,azbpit1,Azure-breasted Pitta,Pitta steerii,Passeriformes,Pittidae (Pittas),, 11747,species,noipit1,Noisy Pitta,Pitta versicolor,Passeriformes,Pittidae (Pittas),, 11751,species,ivbpit1,Ivory-breasted Pitta,Pitta maxima,Passeriformes,Pittidae (Pittas),, 11751.2,issf,ivbpit2,Ivory-breasted Pitta (Ivory-breasted),Pitta maxima maxima,Passeriformes,Pittidae (Pittas),,ivbpit1 11751.4,issf,ivbpit3,Ivory-breasted Pitta (Morotai),Pitta maxima morotaiensis,Passeriformes,Pittidae (Pittas),,ivbpit1 11754,species,elepit1,Elegant Pitta,Pitta elegans,Passeriformes,Pittidae (Pittas),, 11760,species,blfpit1,Black-faced Pitta,Pitta anerythra,Passeriformes,Pittidae (Pittas),, 11764,species,manpit1,Mangrove Pitta,Pitta megarhyncha,Passeriformes,Pittidae (Pittas),, 11765,species,suppit1,Superb Pitta,Pitta superba,Passeriformes,Pittidae (Pittas),, 11766,species,raipit1,Rainbow Pitta,Pitta iris,Passeriformes,Pittidae (Pittas),, 11767.15,spuh,pitta2,Pitta sp. (genus Pitta),Pitta sp.,Passeriformes,Pittidae (Pittas),, 11767.2,spuh,pitta1,Pitta sp. (genus Erythropitta/Hydrornis/Pitta),Pittidae sp.,Passeriformes,Pittidae (Pittas),, 11767.3,species,rurant1,Rufous-rumped Antwren,Euchrepomis callinota,Passeriformes,Thamnophilidae (Typical Antbirds),Antbirds, 11772,species,chsant1,Chestnut-shouldered Antwren,Euchrepomis humeralis,Passeriformes,Thamnophilidae (Typical Antbirds),, 11773,species,yerant1,Yellow-rumped Antwren,Euchrepomis sharpei,Passeriformes,Thamnophilidae (Typical Antbirds),, 11774,species,aswant1,Ash-winged Antwren,Euchrepomis spodioptila,Passeriformes,Thamnophilidae (Typical Antbirds),, 11777.5,spuh,euchre1,Euchrepomis sp.,Euchrepomis sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 12838,species,fasant1,Fasciated Antshrike,Cymbilaimus lineatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12842,species,bamant1,Bamboo Antshrike,Cymbilaimus sanctaemariae,Passeriformes,Thamnophilidae (Typical Antbirds),, 12843,species,spbant3,Spot-backed Antshrike,Hypoedaleus guttatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12844,species,giaant2,Giant Antshrike,Batara cinerea,Passeriformes,Thamnophilidae (Typical Antbirds),, 12848,species,latant1,Large-tailed Antshrike,Mackenziaena leachii,Passeriformes,Thamnophilidae (Typical Antbirds),, 12849,species,tufant1,Tufted Antshrike,Mackenziaena severa,Passeriformes,Thamnophilidae (Typical Antbirds),, 12850,species,bltant3,Black-throated Antshrike,Frederickena viridis,Passeriformes,Thamnophilidae (Typical Antbirds),, 12851,species,undant2,Undulated Antshrike,Frederickena unduliger,Passeriformes,Thamnophilidae (Typical Antbirds),, 12855,species,fulant1,Fulvous Antshrike,Frederickena fulva,Passeriformes,Thamnophilidae (Typical Antbirds),, 12855.5,slash,y00966,Undulated/Fulvous Antshrike,Frederickena unduliger/fulva,Passeriformes,Thamnophilidae (Typical Antbirds),, 12856,species,greant1,Great Antshrike,Taraba major,Passeriformes,Thamnophilidae (Typical Antbirds),, 12867,species,blcant4,Black-crested Antshrike,Sakesphorus canadensis,Passeriformes,Thamnophilidae (Typical Antbirds),, 12867.2,issf,bkcant1,Black-crested Antshrike (Streak-fronted),Sakesphorus canadensis pulchellus,Passeriformes,Thamnophilidae (Typical Antbirds),,blcant4 12867.4,issf,bkcant2,Black-crested Antshrike (Black-crested),Sakesphorus canadensis [canadensis Group],Passeriformes,Thamnophilidae (Typical Antbirds),,blcant4 12874,species,sicant1,Silvery-cheeked Antshrike,Sakesphorus cristatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12875,species,gloant1,Glossy Antshrike,Sakesphorus luctuosus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12878,species,whbant2,White-bearded Antshrike,Biatas nigropectus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12879,species,barant1,Barred Antshrike,Thamnophilus doliatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12880,issf,barant4,Barred Antshrike (Barred),Thamnophilus doliatus [doliatus Group],Passeriformes,Thamnophilidae (Typical Antbirds),,barant1 12891,issf,barant3,Barred Antshrike (Caatinga),Thamnophilus doliatus capistratus,Passeriformes,Thamnophilidae (Typical Antbirds),,barant1 12892,species,rucant1,Rufous-capped Antshrike,Thamnophilus ruficapillus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12892.2,issf,rucant4,Rufous-capped Antshrike (Northern),Thamnophilus ruficapillus [subfasciatus Group],Passeriformes,Thamnophilidae (Typical Antbirds),,rucant1 12892.4,issf,rucant5,Rufous-capped Antshrike (Southern),Thamnophilus ruficapillus ruficapillus/cochabambae,Passeriformes,Thamnophilidae (Typical Antbirds),,rucant1 12898,species,ruwant2,Rufous-winged Antshrike,Thamnophilus torquatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12899,species,chaant1,Chapman's Antshrike,Thamnophilus zarumae,Passeriformes,Thamnophilidae (Typical Antbirds),, 12902,species,bacant2,Bar-crested Antshrike,Thamnophilus multistriatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12907,species,linant1,Lined Antshrike,Thamnophilus tenuepunctatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12911,species,chbant2,Chestnut-backed Antshrike,Thamnophilus palliatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12916,species,colant1,Collared Antshrike,Thamnophilus bernardi,Passeriformes,Thamnophilidae (Typical Antbirds),, 12917,issf,colant2,Collared Antshrike (Collared),Thamnophilus bernardi bernardi,Passeriformes,Thamnophilidae (Typical Antbirds),,colant1 12918,issf,colant3,Collared Antshrike (shumbae),Thamnophilus bernardi shumbae,Passeriformes,Thamnophilidae (Typical Antbirds),,colant1 12919,species,wesant1,Black-crowned Antshrike,Thamnophilus atrinucha,Passeriformes,Thamnophilidae (Typical Antbirds),, 12922,species,blhant2,Black-hooded Antshrike,Thamnophilus bridgesi,Passeriformes,Thamnophilidae (Typical Antbirds),, 12923,species,plwant1,Plain-winged Antshrike,Thamnophilus schistaceus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12927,species,mocant1,Mouse-colored Antshrike,Thamnophilus murinus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12931,species,blaant1,Black Antshrike,Thamnophilus nigriceps,Passeriformes,Thamnophilidae (Typical Antbirds),, 12932,species,cocant1,Cocha Antshrike,Thamnophilus praecox,Passeriformes,Thamnophilidae (Typical Antbirds),, 12933,species,casant1,Castelnau's Antshrike,Thamnophilus cryptoleucus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12934,species,blgant2,Blackish-gray Antshrike,Thamnophilus nigrocinereus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12940,species,norsla1,Northern Slaty-Antshrike,Thamnophilus punctatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12941,issf,norsla2,Northern Slaty-Antshrike (Northern),Thamnophilus punctatus punctatus/interpositus,Passeriformes,Thamnophilidae (Typical Antbirds),,norsla1 12944,issf,norsla3,Northern Slaty-Antshrike (Mara–on),Thamnophilus punctatus leucogaster/huallagae,Passeriformes,Thamnophilidae (Typical Antbirds),,norsla1 12947,species,natsla1,Natterer's Slaty-Antshrike,Thamnophilus stictocephalus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12950,species,bolsla1,Bolivian Slaty-Antshrike,Thamnophilus sticturus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12951,species,plasla1,Planalto Slaty-Antshrike,Thamnophilus pelzelni,Passeriformes,Thamnophilidae (Typical Antbirds),, 12952,species,soosla1,Sooretama Slaty-Antshrike,Thamnophilus ambiguus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12953,species,varant1,Variable Antshrike,Thamnophilus caerulescens,Passeriformes,Thamnophilidae (Typical Antbirds),, 12962,species,uniant2,Uniform Antshrike,Thamnophilus unicolor,Passeriformes,Thamnophilidae (Typical Antbirds),, 12966,species,whsant2,White-shouldered Antshrike,Thamnophilus aethiops,Passeriformes,Thamnophilidae (Typical Antbirds),, 12977,species,uplant1,Upland Antshrike,Thamnophilus aroyae,Passeriformes,Thamnophilidae (Typical Antbirds),, 12978,species,blbant1,Black-backed Antshrike,Thamnophilus melanonotus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12979,species,batant2,Band-tailed Antshrike,Thamnophilus melanothorax,Passeriformes,Thamnophilidae (Typical Antbirds),, 12980,species,amaant2,Amazonian Antshrike,Thamnophilus amazonicus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12986,species,stbant1,Streak-backed Antshrike,Thamnophilus insignis,Passeriformes,Thamnophilidae (Typical Antbirds),, 12989,species,acrant1,Acre Antshrike,Thamnophilus divisorius,Passeriformes,Thamnophilidae (Typical Antbirds),, 12990,spuh,thamno1,Thamnophilus sp.,Thamnophilus sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 12990.5,species,sttant1,Star-throated Antwren,Rhopias gularis,Passeriformes,Thamnophilidae (Typical Antbirds),, 12991,species,peaant1,Pearly Antshrike,Megastictus margaritatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12992,species,blabus1,Black Bushbird,Neoctantes niger,Passeriformes,Thamnophilidae (Typical Antbirds),, 12993,species,rebbus1,Recurve-billed Bushbird,Clytoctantes alixii,Passeriformes,Thamnophilidae (Typical Antbirds),, 12994,species,ronbus1,Rondonia Bushbird,Clytoctantes atrogularis,Passeriformes,Thamnophilidae (Typical Antbirds),, 12995,species,rusant1,Russet Antshrike,Thamnistes anabatinus,Passeriformes,Thamnophilidae (Typical Antbirds),, 12996,issf,rusant2,Russet Antshrike (Tawny),Thamnistes anabatinus [anabatinus Group],Passeriformes,Thamnophilidae (Typical Antbirds),,rusant1 13001,issf,rusant3,Russet Antshrike (Andean),Thamnistes anabatinus [aequatorialis Group],Passeriformes,Thamnophilidae (Typical Antbirds),,rusant1 13004.5,spuh,antshr1,antshrike sp.,Thamnophilidae sp. (antshrike sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, 13005,species,spbant5,Spot-breasted Antvireo,Dysithamnus stictothorax,Passeriformes,Thamnophilidae (Typical Antbirds),, 13006,species,plaant1,Plain Antvireo,Dysithamnus mentalis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13025,species,stcant1,Streak-crowned Antvireo,Dysithamnus striaticeps,Passeriformes,Thamnophilidae (Typical Antbirds),, 13026,species,spcant1,Spot-crowned Antvireo,Dysithamnus puncticeps,Passeriformes,Thamnophilidae (Typical Antbirds),, 13027,species,rubant2,Rufous-backed Antvireo,Dysithamnus xanthopterus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13028,species,bicant4,Bicolored Antvireo,Dysithamnus occidentalis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13031,species,pluant3,Plumbeous Antvireo,Dysithamnus plumbeus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13032,species,whsant4,White-streaked Antvireo,Dysithamnus leucostictus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13033,issf,whsant3,White-streaked Antvireo (White-streaked),Dysithamnus leucostictus leucostictus,Passeriformes,Thamnophilidae (Typical Antbirds),,whsant4 13034,issf,pluant4,White-streaked Antvireo (Venezuelan),Dysithamnus leucostictus tucuyensis,Passeriformes,Thamnophilidae (Typical Antbirds),,whsant4 13034.2,spuh,antvir1,antvireo sp.,Dysithamnus sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 13035,species,dutant2,Dusky-throated Antshrike,Thamnomanes ardesiacus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13038,species,satant1,Saturnine Antshrike,Thamnomanes saturninus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13039,slash,y00881,Dusky-throated/Saturnine Antshrike,Thamnomanes ardesiacus/saturninus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13041,species,cinant1,Cinereous Antshrike,Thamnomanes caesius,Passeriformes,Thamnophilidae (Typical Antbirds),, 13047,species,blsant1,Bluish-slate Antshrike,Thamnomanes schistogynus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13049.5,slash,y00703,Cinereous/Bluish-slate Antshrike,Thamnomanes caesius/schistogynus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13050,species,spfant1,Spiny-faced Antshrike,Xenornis setifrons,Passeriformes,Thamnophilidae (Typical Antbirds),, 13050.1,species,pltant1,Plain-throated Antwren,Isleria hauxwelli,Passeriformes,Thamnophilidae (Typical Antbirds),, 13050.5,species,rubant3,Rufous-bellied Antwren,Isleria guttata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13051,species,spwant2,Spot-winged Antshrike,Pygiptila stellaris,Passeriformes,Thamnophilidae (Typical Antbirds),, 13054,species,chtant1,Checker-throated Antwren,Epinecrophylla fulviventris,Passeriformes,Thamnophilidae (Typical Antbirds),, 13055,species,brbant2,Brown-bellied Antwren,Epinecrophylla gutturalis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13056,species,wheant1,White-eyed Antwren,Epinecrophylla leucophthalma,Passeriformes,Thamnophilidae (Typical Antbirds),, 13062,species,sttant4,Fulvous-throated Antwren,Epinecrophylla pyrrhonota,Passeriformes,Thamnophilidae (Typical Antbirds),, 13063,species,sttant5,Rufous-backed Antwren,Epinecrophylla haematonota,Passeriformes,Thamnophilidae (Typical Antbirds),, 13064,species,madant1,Madeira Antwren,Epinecrophylla amazonica,Passeriformes,Thamnophilidae (Typical Antbirds),, 13064.3,issf,sttant6,Madeira Antwren (Madeira),Epinecrophylla amazonica amazonica,Passeriformes,Thamnophilidae (Typical Antbirds),,madant1 13064.5,issf,rooant1,Madeira Antwren (Roosevelt),Epinecrophylla amazonica dentei,Passeriformes,Thamnophilidae (Typical Antbirds),,madant1 13065,species,bnbant1,Brown-backed Antwren,Epinecrophylla fjeldsaai,Passeriformes,Thamnophilidae (Typical Antbirds),, 13066,species,fooant1,Foothill Antwren,Epinecrophylla spodionota,Passeriformes,Thamnophilidae (Typical Antbirds),, 13069,species,ornant1,Ornate Antwren,Epinecrophylla ornata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13069.2,issf,ornant2,Ornate Antwren (Western),Epinecrophylla ornata [ornata Group],Passeriformes,Thamnophilidae (Typical Antbirds),,ornant1 13069.4,issf,ornant3,Ornate Antwren (Eastern),Epinecrophylla ornata hoffmannsi,Passeriformes,Thamnophilidae (Typical Antbirds),,ornant1 13075,species,rutant3,Rufous-tailed Antwren,Epinecrophylla erythrura,Passeriformes,Thamnophilidae (Typical Antbirds),, 13077.5,spuh,epinec1,Epinecrophylla sp.,Epinecrophylla sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 13078,species,pygant1,Pygmy Antwren,Myrmotherula brachyura,Passeriformes,Thamnophilidae (Typical Antbirds),, 13079,species,mouant,Moustached Antwren,Myrmotherula ignota,Passeriformes,Thamnophilidae (Typical Antbirds),, 13080,issf,mouant3,Moustached Antwren (Moustached),Myrmotherula ignota ignota,Passeriformes,Thamnophilidae (Typical Antbirds),,mouant 13081,issf,mouant2,Moustached Antwren (Short-billed),Myrmotherula ignota obscura,Passeriformes,Thamnophilidae (Typical Antbirds),,mouant 13082,species,yetant1,Yellow-throated Antwren,Myrmotherula ambigua,Passeriformes,Thamnophilidae (Typical Antbirds),, 13083,species,sclant1,Sclater's Antwren,Myrmotherula sclateri,Passeriformes,Thamnophilidae (Typical Antbirds),, 13084,species,guista1,Guianan Streaked-Antwren,Myrmotherula surinamensis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13085,species,amasta1,Amazonian Streaked-Antwren,Myrmotherula multostriata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13086,species,pacant,Pacific Antwren,Myrmotherula pacifica,Passeriformes,Thamnophilidae (Typical Antbirds),, 13087,species,cheant1,Cherrie's Antwren,Myrmotherula cherriei,Passeriformes,Thamnophilidae (Typical Antbirds),, 13088,species,klaant1,Klages's Antwren,Myrmotherula klagesi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13089,species,stcant4,Stripe-chested Antwren,Myrmotherula longicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, 13100,species,whfant2,White-flanked Antwren,Myrmotherula axillaris,Passeriformes,Thamnophilidae (Typical Antbirds),, 13100.5,issf,whfant5,White-flanked Antwren (White-flanked),Myrmotherula axillaris [axillaris Group],Passeriformes,Thamnophilidae (Typical Antbirds),,whfant2 13106,issf,whfant6,White-flanked Antwren (Silvery-flanked),Myrmotherula axillaris luctuosa,Passeriformes,Thamnophilidae (Typical Antbirds),,whfant2 13107,species,slaant1,Slaty Antwren,Myrmotherula schisticolor,Passeriformes,Thamnophilidae (Typical Antbirds),, 13111,species,risant1,Rio Suno Antwren,Myrmotherula sunensis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13114,species,salant1,Salvadori's Antwren,Myrmotherula minor,Passeriformes,Thamnophilidae (Typical Antbirds),, 13115,species,lowant1,Long-winged Antwren,Myrmotherula longipennis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13122,species,batant3,Band-tailed Antwren,Myrmotherula urosticta,Passeriformes,Thamnophilidae (Typical Antbirds),, 13123,species,iheant1,Ihering's Antwren,Myrmotherula iheringi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13124,issf,iheant2,Ihering's Antwren (Purus),Myrmotherula iheringi heteroptera,Passeriformes,Thamnophilidae (Typical Antbirds),,iheant1 13125,issf,iheant3,Ihering's Antwren (Ihering's),Myrmotherula iheringi iheringi,Passeriformes,Thamnophilidae (Typical Antbirds),,iheant1 13125.5,issf,bamant2,Ihering's Antwren (Bamboo),Myrmotherula iheringi oreni,Passeriformes,Thamnophilidae (Typical Antbirds),,iheant1 13126,species,rdjant2,Rio de Janeiro Antwren,Myrmotherula fluminensis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13127,species,ashant1,Ashy Antwren,Myrmotherula grisea,Passeriformes,Thamnophilidae (Typical Antbirds),, 13128,species,uniant1,Unicolored Antwren,Myrmotherula unicolor,Passeriformes,Thamnophilidae (Typical Antbirds),, 13129,species,alaant1,Alagoas Antwren,Myrmotherula snowi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13130,species,plwant2,Plain-winged Antwren,Myrmotherula behni,Passeriformes,Thamnophilidae (Typical Antbirds),, 13135,species,gryant1,Gray Antwren,Myrmotherula menetriesii,Passeriformes,Thamnophilidae (Typical Antbirds),, 13141,species,leaant1,Leaden Antwren,Myrmotherula assimilis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13142,spuh,myrmot1,Myrmotherula sp.,Myrmotherula sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 13143,species,banant2,Banded Antbird,Dichrozona cincta,Passeriformes,Thamnophilidae (Typical Antbirds),, 13144,species,stbant2,Stripe-backed Antbird,Myrmorchilus strigilatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13147,species,caaant1,Caatinga Antwren,Herpsilochmus sellowi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13148,species,bahant1,Bahia Antwren,Herpsilochmus pileatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13149,species,blcant2,Black-capped Antwren,Herpsilochmus atricapillus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13149.1,species,mapant1,Predicted Antwren,Herpsilochmus praedictus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13149.2,species,ajpant1,Aripuana Antwren,Herpsilochmus stotzi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13150,species,crbant1,Creamy-bellied Antwren,Herpsilochmus motacilloides,Passeriformes,Thamnophilidae (Typical Antbirds),, 13151,species,astant1,Ash-throated Antwren,Herpsilochmus parkeri,Passeriformes,Thamnophilidae (Typical Antbirds),, 13151.1,form,intant1,Inambari-Tambopata Antwren (undescribed form),Herpsilochmus [undescribed Inambari-Tambopata Antwren],Passeriformes,Thamnophilidae (Typical Antbirds),, 13151.2,form,lorant1,Loreto Antwren (undescribed form),Herpsilochmus [undescribed Loreto form],Passeriformes,Thamnophilidae (Typical Antbirds),, 13152,species,sptant1,Spot-tailed Antwren,Herpsilochmus sticturus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13153,species,dugant1,Dugand's Antwren,Herpsilochmus dugandi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13154,species,todant1,Todd's Antwren,Herpsilochmus stictocephalus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13155,species,ancant1,Ancient Antwren,Herpsilochmus gentryi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13156,species,spbant4,Spot-backed Antwren,Herpsilochmus dorsimaculatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13157,species,rorant1,Roraiman Antwren,Herpsilochmus roraimae,Passeriformes,Thamnophilidae (Typical Antbirds),, 13160,species,pecant1,Pectoral Antwren,Herpsilochmus pectoralis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13161,species,labant1,Large-billed Antwren,Herpsilochmus longirostris,Passeriformes,Thamnophilidae (Typical Antbirds),, 13162,species,yebant2,Yellow-breasted Antwren,Herpsilochmus axillaris,Passeriformes,Thamnophilidae (Typical Antbirds),, 13167,species,ruwant1,Rufous-winged Antwren,Herpsilochmus rufimarginatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13167.2,issf,ruwant3,Rufous-winged Antwren (Northern),Herpsilochmus rufimarginatus [scapularis Group],Passeriformes,Thamnophilidae (Typical Antbirds),,ruwant1 13167.4,issf,ruwant4,Rufous-winged Antwren (Southern),Herpsilochmus rufimarginatus rufimarginatus,Passeriformes,Thamnophilidae (Typical Antbirds),,ruwant1 13172,spuh,herpsi1,Herpsilochmus sp.,Herpsilochmus sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 13173,species,dowant1,Dot-winged Antwren,Microrhopias quixensis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13184,species,nabant1,Narrow-billed Antwren,Formicivora iheringi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13185,species,blhant4,Black-hooded Antwren,Formicivora erythronotos,Passeriformes,Thamnophilidae (Typical Antbirds),, 13186,species,whfant1,White-fringed Antwren,Formicivora grisea,Passeriformes,Thamnophilidae (Typical Antbirds),, 13186.3,issf,whfant4,White-fringed Antwren (Northern),Formicivora grisea [intermedia Group],Passeriformes,Thamnophilidae (Typical Antbirds),,whfant1 13193,issf,whfant3,White-fringed Antwren (Southern),Formicivora grisea [grisea Group],Passeriformes,Thamnophilidae (Typical Antbirds),,whfant1 13196,species,serant1,Serra Antwren,Formicivora serrana,Passeriformes,Thamnophilidae (Typical Antbirds),, 13199,species,resant1,Restinga Antwren,Formicivora littoralis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13200,species,blbant2,Black-bellied Antwren,Formicivora melanogaster,Passeriformes,Thamnophilidae (Typical Antbirds),, 13203,species,rubant4,Rusty-backed Antwren,Formicivora rufa,Passeriformes,Thamnophilidae (Typical Antbirds),, 13207,species,sinant1,Sincora Antwren,Formicivora grantsaui,Passeriformes,Thamnophilidae (Typical Antbirds),, 13208,species,parant1,Parana Antwren,Stymphalornis acutirostris,Passeriformes,Thamnophilidae (Typical Antbirds),, 13208.2,issf,parant3,Parana Antwren (Parana),Stymphalornis acutirostris acutirostris,Passeriformes,Thamnophilidae (Typical Antbirds),,parant1 13208.4,issf,parant4,Parana Antwren (Sao Paulo),Stymphalornis acutirostris paludicola,Passeriformes,Thamnophilidae (Typical Antbirds),,parant1 13208.5,spuh,antwre1,antwren sp.,Thamnophilidae sp. (antwren sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, 13209,species,ferant1,Ferruginous Antbird,Drymophila ferruginea,Passeriformes,Thamnophilidae (Typical Antbirds),, 13210,species,berant1,Bertoni's Antbird,Drymophila rubricollis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13211,species,rutant1,Rufous-tailed Antbird,Drymophila genei,Passeriformes,Thamnophilidae (Typical Antbirds),, 13212,species,ocrant1,Ochre-rumped Antbird,Drymophila ochropyga,Passeriformes,Thamnophilidae (Typical Antbirds),, 13213,species,dutant1,Dusky-tailed Antbird,Drymophila malura,Passeriformes,Thamnophilidae (Typical Antbirds),, 13214,species,scaant2,Scaled Antbird,Drymophila squamata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13217,species,strant2,Striated Antbird,Drymophila devillei,Passeriformes,Thamnophilidae (Typical Antbirds),, 13220,species,lotant1,East Andean Antbird,Drymophila caudata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13221,species,klaant2,Klages's Antbird,Drymophila klagesi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13223,species,samant2,Santa Marta Antbird,Drymophila hellmayri,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224,species,sthant1,Streak-headed Antbird,Drymophila striaticeps,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.03,spuh,drymop1,Drymophila sp.,Drymophila sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.05,species,guiwaa1,Guianan Warbling-Antbird,Hypocnemis cantator,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.06,species,imewaa1,Imeri Warbling-Antbird,Hypocnemis flavescens,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.07,species,perwaa1,Peruvian Warbling-Antbird,Hypocnemis peruviana,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.1,species,yebwaa1,Yellow-breasted Warbling-Antbird,Hypocnemis subflava,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.13,species,ronwaa1,Rondonia Warbling-Antbird,Hypocnemis ochrogyna,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.14,species,spiwaa1,Spix's Warbling-Antbird,Hypocnemis striata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.18,species,manwaa1,Manicore Warbling-Antbird,Hypocnemis rondoni,Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.19,spuh,warant1,warbling-antbird sp.,Hypocnemis sp. (warbling-antbird sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, 13224.2,species,yebant3,Yellow-browed Antbird,Hypocnemis hypoxantha,Passeriformes,Thamnophilidae (Typical Antbirds),, 13225,species,orbant1,Orange-bellied Antwren,Terenura sicki,Passeriformes,Thamnophilidae (Typical Antbirds),, 13226,species,stcant3,Streak-capped Antwren,Terenura maculata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13238,species,wilant1,Willis's Antbird,Cercomacroides laeta,Passeriformes,Thamnophilidae (Typical Antbirds),, 13243,species,parant2,Parker's Antbird,Cercomacroides parkeri,Passeriformes,Thamnophilidae (Typical Antbirds),, 13244,species,dusant1,Dusky Antbird,Cercomacroides tyrannina,Passeriformes,Thamnophilidae (Typical Antbirds),, 13244.2,issf,dusant2,Dusky Antbird (tyrannina/crepera),Cercomacroides tyrannina tyrannina/crepera,Passeriformes,Thamnophilidae (Typical Antbirds),,dusant1 13244.4,issf,dusant3,Dusky Antbird (saturatior/vicina),Cercomacroides tyrannina saturatior/vicina,Passeriformes,Thamnophilidae (Typical Antbirds),,dusant1 13249,species,blaant2,Black Antbird,Cercomacroides serva,Passeriformes,Thamnophilidae (Typical Antbirds),, 13253,species,blaant4,Blackish Antbird,Cercomacroides nigrescens,Passeriformes,Thamnophilidae (Typical Antbirds),, 13255,species,blaant5,Riparian Antbird,Cercomacroides fuscicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, 13258,slash,y00967,Blackish/Riparian Antbird,Cercomacroides nigrescens/fuscicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, 13261,spuh,cercom1,Cercomacroides sp.,Cercomacroides sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 13261.2,species,manant1,Manu Antbird,Cercomacra manu,Passeriformes,Thamnophilidae (Typical Antbirds),, 13262,species,gryant2,Gray Antbird,Cercomacra cinerascens,Passeriformes,Thamnophilidae (Typical Antbirds),, 13263,species,rdjant1,Rio de Janeiro Antbird,Cercomacra brasiliana,Passeriformes,Thamnophilidae (Typical Antbirds),, 13264,species,magant1,Mato Grosso Antbird,Cercomacra melanaria,Passeriformes,Thamnophilidae (Typical Antbirds),, 13265,species,banant1,Bananal Antbird,Cercomacra ferdinandi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13266,species,jetant1,Jet Antbird,Cercomacra nigricans,Passeriformes,Thamnophilidae (Typical Antbirds),, 13267,species,ribant1,Rio Branco Antbird,Cercomacra carbonaria,Passeriformes,Thamnophilidae (Typical Antbirds),, 13268,species,wbfeye1,White-backed Fire-eye,Pyriglena leuconota,Passeriformes,Thamnophilidae (Typical Antbirds),, 13268.2,issf,whbfie1,White-backed Fire-eye (Pacific),Pyriglena leuconota pacifica,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 13268.4,issf,whbfie2,White-backed Fire-eye (Black-bellied),Pyriglena leuconota castanoptera,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 13268.6,issf,whbfie3,White-backed Fire-eye (Black-headed),Pyriglena leuconota picea,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 13268.8,issf,whbfie4,White-backed Fire-eye (White-backed),Pyriglena leuconota [leuconota Group],Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 13269,issf,whbfie5,White-backed Fire-eye (Pernambuco),Pyriglena leuconota pernambucensis,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 13279,species,fbfeye1,Fringe-backed Fire-eye,Pyriglena atra,Passeriformes,Thamnophilidae (Typical Antbirds),, 13280,species,wsfeye1,White-shouldered Fire-eye,Pyriglena leucoptera,Passeriformes,Thamnophilidae (Typical Antbirds),, 13281,species,sleant1,Slender Antbird,Rhopornis ardesiacus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13282,species,whbant6,White-browed Antbird,Myrmoborus leucophrys,Passeriformes,Thamnophilidae (Typical Antbirds),, 13287,species,asbant1,Ash-breasted Antbird,Myrmoborus lugubris,Passeriformes,Thamnophilidae (Typical Antbirds),, 13292,species,blfant2,Black-faced Antbird,Myrmoborus myotherinus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13300,species,bltant1,Black-tailed Antbird,Myrmoborus melanurus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13318,species,blcant3,Black-chinned Antbird,Hypocnemoides melanopogon,Passeriformes,Thamnophilidae (Typical Antbirds),, 13321,species,batant1,Band-tailed Antbird,Hypocnemoides maculicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, 13322,species,bawant1,Black-and-white Antbird,Myrmochanes hemileucus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13323,species,bacant1,Bare-crowned Antbird,Gymnocichla nudiceps,Passeriformes,Thamnophilidae (Typical Antbirds),, 13328,species,silant1,Silvered Antbird,Sclateria naevia,Passeriformes,Thamnophilidae (Typical Antbirds),, 13333,species,blhant3,Black-headed Antbird,Percnostola rufifrons,Passeriformes,Thamnophilidae (Typical Antbirds),, 13334,issf,bkhant1,Black-headed Antbird (Amazonas),Percnostola rufifrons minor/jensoni,Passeriformes,Thamnophilidae (Typical Antbirds),,blhant3 13336,issf,bkhant2,Black-headed Antbird (Hellmayr's),Percnostola rufifrons rufifrons/subcristata,Passeriformes,Thamnophilidae (Typical Antbirds),,blhant3 13338,species,allant1,Allpahuayo Antbird,Percnostola arenarum,Passeriformes,Thamnophilidae (Typical Antbirds),, 13339,species,whlant1,White-lined Antbird,Percnostola lophotes,Passeriformes,Thamnophilidae (Typical Antbirds),, 13340,species,slcant3,Slate-colored Antbird,Myrmelastes schistaceus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13341,species,rorant2,Roraiman Antbird,Myrmelastes saturatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13346,species,pluant1,Plumbeous Antbird,Myrmelastes hyperythrus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13347,species,spwant3,Spot-winged Antbird,Myrmelastes leucostigma,Passeriformes,Thamnophilidae (Typical Antbirds),, 13348,species,humant1,Humaita Antbird,Myrmelastes humaythae,Passeriformes,Thamnophilidae (Typical Antbirds),, 13349,species,brhant1,Brownish-headed Antbird,Myrmelastes brunneiceps,Passeriformes,Thamnophilidae (Typical Antbirds),, 13352,species,rufant4,Rufous-faced Antbird,Myrmelastes rufifacies,Passeriformes,Thamnophilidae (Typical Antbirds),, 13354.5,species,cauant2,Caura Antbird,Myrmelastes caurensis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13355,spuh,schist1,Myrmelastes sp.,Myrmelastes sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, 13360,species,whbant1,White-bellied Antbird,Myrmeciza longipes,Passeriformes,Thamnophilidae (Typical Antbirds),, 13366,species,chbant1,Chestnut-backed Antbird,Poliocrania exsul,Passeriformes,Thamnophilidae (Typical Antbirds),, 13366.2,issf,chbant3,Chestnut-backed Antbird (Chestnut-backed),Poliocrania exsul [exsul Group],Passeriformes,Thamnophilidae (Typical Antbirds),,chbant1 13366.4,issf,chbant4,Chestnut-backed Antbird (Short-tailed),Poliocrania exsul maculifer/cassini,Passeriformes,Thamnophilidae (Typical Antbirds),,chbant1 13369,species,gyhant1,Gray-headed Antbird,Ampelornis griseiceps,Passeriformes,Thamnophilidae (Typical Antbirds),, 13372,species,dumant1,Dull-mantled Antbird,Sipia laemosticta,Passeriformes,Thamnophilidae (Typical Antbirds),, 13373,species,dumant3,Magdalena Antbird,Sipia palliata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13374,species,esmant1,Esmeraldas Antbird,Sipia nigricauda,Passeriformes,Thamnophilidae (Typical Antbirds),, 13376,species,sttant3,Stub-tailed Antbird,Sipia berlepschi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13377,species,chtant2,Chestnut-tailed Antbird,Sciaphylax hemimelaena,Passeriformes,Thamnophilidae (Typical Antbirds),, 13378,issf,chtant3,Chestnut-tailed Antbird (hemimelaena),Sciaphylax hemimelaena hemimelaena,Passeriformes,Thamnophilidae (Typical Antbirds),,chtant2 13380,issf,chtant4,Chestnut-tailed Antbird (pallens),Sciaphylax hemimelaena pallens,Passeriformes,Thamnophilidae (Typical Antbirds),,chtant2 13381,form,ariant1,Aripuana Antbird (undescribed form),Sciaphylax [undescribed form],Passeriformes,Thamnophilidae (Typical Antbirds),, 13382,species,zimant1,Zimmer's Antbird,Sciaphylax castanea,Passeriformes,Thamnophilidae (Typical Antbirds),, 13382.5,slash,y00690,Chestnut-tailed/Zimmer's Antbird,Sciaphylax hemimelaena/castanea,Passeriformes,Thamnophilidae (Typical Antbirds),, 13383,species,febant1,Ferruginous-backed Antbird,Myrmoderus ferrugineus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13383.2,form,whiant1,Whistling Antbird (undescribed form),Myrmoderus [undescribed form],Passeriformes,Thamnophilidae (Typical Antbirds),, 13385.5,species,scaant3,Scalloped Antbird,Myrmoderus ruficauda,Passeriformes,Thamnophilidae (Typical Antbirds),, 13386,species,whbant4,White-bibbed Antbird,Myrmoderus loricatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13387,species,squant1,Squamate Antbird,Myrmoderus squamosus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13388,species,whsant1,White-shouldered Antbird,Akletos melanoceps,Passeriformes,Thamnophilidae (Typical Antbirds),, 13389,species,goeant1,Goeldi's Antbird,Akletos goeldii,Passeriformes,Thamnophilidae (Typical Antbirds),, 13395,species,sooant1,Sooty Antbird,Hafferia fortis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13397.5,species,zelant1,Zeledon's Antbird,Hafferia zeledoni,Passeriformes,Thamnophilidae (Typical Antbirds),, 13398,issf,immant5,Zeledon's Antbird (Zeledon's),Hafferia zeledoni zeledoni,Passeriformes,Thamnophilidae (Typical Antbirds),,zelant1 13399,issf,immant4,Zeledon's Antbird (Choco),Hafferia zeledoni berlepschi,Passeriformes,Thamnophilidae (Typical Antbirds),,zelant1 13399.5,species,immant1,Blue-lored Antbird,Hafferia immaculata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13400.5,issf,immant3,Blue-lored Antbird (Andean),Hafferia immaculata immaculata,Passeriformes,Thamnophilidae (Typical Antbirds),,immant1 13402.5,issf,immant2,Blue-lored Antbird (Concepcion),Hafferia immaculata concepcion,Passeriformes,Thamnophilidae (Typical Antbirds),,immant1 13403,species,yapant1,Yapacana Antbird,Aprositornis disjuncta,Passeriformes,Thamnophilidae (Typical Antbirds),, 13404,species,bltant2,Black-throated Antbird,Myrmophylax atrothorax,Passeriformes,Thamnophilidae (Typical Antbirds),, 13404.5,species,gybant1,Gray-bellied Antbird,Ammonastes pelzelni,Passeriformes,Thamnophilidae (Typical Antbirds),, 13405,species,wibant1,Wing-banded Antbird,Myrmornis torquata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13406,issf,wibant2,Wing-banded Antbird (Buff-banded),Myrmornis torquata stictoptera,Passeriformes,Thamnophilidae (Typical Antbirds),,wibant1 13407,issf,wibant3,Wing-banded Antbird (Wing-banded),Myrmornis torquata torquata,Passeriformes,Thamnophilidae (Typical Antbirds),,wibant1 13408,species,whpant1,White-plumed Antbird,Pithys albifrons,Passeriformes,Thamnophilidae (Typical Antbirds),, 13411,species,whmant2,White-masked Antbird,Pithys castaneus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13412,species,bicant2,Bicolored Antbird,Gymnopithys bicolor,Passeriformes,Thamnophilidae (Typical Antbirds),, 13417.5,species,whcant1,White-cheeked Antbird,Gymnopithys leucaspis,Passeriformes,Thamnophilidae (Typical Antbirds),, 13422,species,rutant4,Rufous-throated Antbird,Gymnopithys rufigula,Passeriformes,Thamnophilidae (Typical Antbirds),, 13426,species,whtant1,White-throated Antbird,Gymnopithys salvini,Passeriformes,Thamnophilidae (Typical Antbirds),, 13427,species,lunant2,Lunulated Antbird,Gymnopithys lunulatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13428,species,baeant1,Bare-eyed Antbird,Rhegmatorhina gymnops,Passeriformes,Thamnophilidae (Typical Antbirds),, 13429,species,harant1,Harlequin Antbird,Rhegmatorhina berlepschi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13430,species,whbant5,White-breasted Antbird,Rhegmatorhina hoffmannsi,Passeriformes,Thamnophilidae (Typical Antbirds),, 13431,species,chcant1,Chestnut-crested Antbird,Rhegmatorhina cristata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13432,species,hacant1,Hairy-crested Antbird,Rhegmatorhina melanosticta,Passeriformes,Thamnophilidae (Typical Antbirds),, 13436,species,spoant1,Spotted Antbird,Hylophylax naevioides,Passeriformes,Thamnophilidae (Typical Antbirds),, 13439,species,spbant6,Spot-backed Antbird,Hylophylax naevius,Passeriformes,Thamnophilidae (Typical Antbirds),, 13445,species,dobant2,Dot-backed Antbird,Hylophylax punctulatus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13446,species,scbant3,Common Scale-backed Antbird,Willisornis poecilinotus,Passeriformes,Thamnophilidae (Typical Antbirds),, 13447,issf,scbant7,Common Scale-backed Antbird (Common Scale-backed),Willisornis poecilinotus poecilinotus,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 13448,issf,scbant6,Common Scale-backed Antbird (Buff-breasted),Willisornis poecilinotus lepidonota/duidae,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 13450,issf,scbant5,Common Scale-backed Antbird (Black-bibbed),Willisornis poecilinotus gutturalis,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 13451,issf,scbant4,Common Scale-backed Antbird (Gray-breasted),Willisornis poecilinotus griseiventris,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 13452,species,scbant8,Xingu Scale-backed Antbird,Willisornis vidua,Passeriformes,Thamnophilidae (Typical Antbirds),, 13452.5,issf,scbant1,Xingu Scale-backed Antbird (Tapajos),Willisornis vidua nigrigula,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant8 13453,issf,xsbant1,Xingu Scale-backed Antbird (Xingu),Willisornis vidua vidua,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant8 13453.5,spuh,antbir1,antbird sp.,Thamnophilidae sp. (antbird sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, 13454,species,bsbeye1,Black-spotted Bare-eye,Phlegopsis nigromaculata,Passeriformes,Thamnophilidae (Typical Antbirds),, 13459,species,rwbeye1,Reddish-winged Bare-eye,Phlegopsis erythroptera,Passeriformes,Thamnophilidae (Typical Antbirds),, 13462,species,pafant1,Pale-faced Bare-eye,Phlegopsis borbae,Passeriformes,Thamnophilidae (Typical Antbirds),, 13463,species,oceant1,Ocellated Antbird,Phaenostictus mcleannani,Passeriformes,Thamnophilidae (Typical Antbirds),, 13466.2,species,colcre1,Collared Crescentchest,Melanopareia torquata,Passeriformes,Melanopareiidae (Crescentchests),Crescentchests, 13466.4,issf,colcre2,Collared Crescentchest (Double-collared),Melanopareia torquata bitorquata,Passeriformes,Melanopareiidae (Crescentchests),,colcre1 13466.6,issf,colcre3,Collared Crescentchest (Collared),Melanopareia torquata torquata/rufescens,Passeriformes,Melanopareiidae (Crescentchests),,colcre1 13467,species,olccre1,Olive-crowned Crescentchest,Melanopareia maximiliani,Passeriformes,Melanopareiidae (Crescentchests),, 13467.8,species,marcre1,Mara–on Crescentchest,Melanopareia maranonica,Passeriformes,Melanopareiidae (Crescentchests),, 13468,species,elecre1,Elegant Crescentchest,Melanopareia elegans,Passeriformes,Melanopareiidae (Crescentchests),, 13468.8,species,blcant1,Black-crowned Antpitta,Pittasoma michleri,Passeriformes,Conopophagidae (Gnateaters),Gnateaters and Antpittas, 13469,species,rucant3,Rufous-crowned Antpitta,Pittasoma rufopileatum,Passeriformes,Conopophagidae (Gnateaters),, 13469.6,species,blbgna1,Black-bellied Gnateater,Conopophaga melanogaster,Passeriformes,Conopophagidae (Gnateaters),, 13469.7,species,blcgna1,Black-cheeked Gnateater,Conopophaga melanops,Passeriformes,Conopophagidae (Gnateaters),, 13470.5,species,chbgna1,Chestnut-belted Gnateater,Conopophaga aurita,Passeriformes,Conopophagidae (Gnateaters),, 13471,issf,chbgna2,Chestnut-belted Gnateater (Chestnut-belted),Conopophaga aurita [aurita Group],Passeriformes,Conopophagidae (Gnateaters),,chbgna1 13471.2,issf,chbgna3,Chestnut-belted Gnateater (Snethlage's),Conopophaga aurita snethlageae/pallida,Passeriformes,Conopophagidae (Gnateaters),,chbgna1 13471.4,species,astgna1,Ash-throated Gnateater,Conopophaga peruviana,Passeriformes,Conopophagidae (Gnateaters),, 13471.6,species,rufgna2,Ceara Gnateater,Conopophaga cearae,Passeriformes,Conopophagidae (Gnateaters),, 13472.6,species,hoogna1,Hooded Gnateater,Conopophaga roberti,Passeriformes,Conopophagidae (Gnateaters),, 13473.2,species,rufgna3,Rufous Gnateater,Conopophaga lineata,Passeriformes,Conopophagidae (Gnateaters),, 13474,species,chcgna1,Chestnut-crowned Gnateater,Conopophaga castaneiceps,Passeriformes,Conopophagidae (Gnateaters),, 13474.6,species,slagna1,Slaty Gnateater,Conopophaga ardesiaca,Passeriformes,Conopophagidae (Gnateaters),, 13475.4,species,undant1,Undulated Antpitta,Grallaria squamigera,Passeriformes,Grallariidae (Antpittas),, 13476,species,giaant1,Giant Antpitta,Grallaria gigantea,Passeriformes,Grallariidae (Antpittas),, 13476.8,species,greant2,Great Antpitta,Grallaria excelsa,Passeriformes,Grallariidae (Antpittas),, 13477.4,species,varant2,Variegated Antpitta,Grallaria varia,Passeriformes,Grallariidae (Antpittas),, 13478.6,species,mouant1,Moustached Antpitta,Grallaria alleni,Passeriformes,Grallariidae (Antpittas),, 13479.2,species,scaant1,Scaled Antpitta,Grallaria guatimalensis,Passeriformes,Grallariidae (Antpittas),, 13481.2,species,tacant1,Tachira Antpitta,Grallaria chthonia,Passeriformes,Grallariidae (Antpittas),, 13481.4,species,plbant1,Plain-backed Antpitta,Grallaria haplonota,Passeriformes,Grallariidae (Antpittas),, 13482.4,species,ocsant1,Ochre-striped Antpitta,Grallaria dignissima,Passeriformes,Grallariidae (Antpittas),, 13482.6,species,eluant1,Elusive Antpitta,Grallaria eludens,Passeriformes,Grallariidae (Antpittas),, 13482.8,species,chcant2,Chestnut-crowned Antpitta,Grallaria ruficapilla,Passeriformes,Grallariidae (Antpittas),, 13484.4,species,watant1,Watkins's Antpitta,Grallaria watkinsi,Passeriformes,Grallariidae (Antpittas),, 13484.6,species,samant1,Santa Marta Antpitta,Grallaria bangsi,Passeriformes,Grallariidae (Antpittas),, 13484.8,species,cunant1,Cundinamarca Antpitta,Grallaria kaestneri,Passeriformes,Grallariidae (Antpittas),, 13485,species,sthant2,Stripe-headed Antpitta,Grallaria andicolus,Passeriformes,Grallariidae (Antpittas),, 13485.6,species,gynant1,Gray-naped Antpitta,Grallaria griseonucha,Passeriformes,Grallariidae (Antpittas),, 13486.2,species,bicant3,Bicolored Antpitta,Grallaria rufocinerea,Passeriformes,Grallariidae (Antpittas),, 13486.8,species,jocant1,Jocotoco Antpitta,Grallaria ridgelyi,Passeriformes,Grallariidae (Antpittas),, 13487,species,chnant1,Chestnut-naped Antpitta,Grallaria nuchalis,Passeriformes,Grallariidae (Antpittas),, 13487.8,species,pabant1,Pale-billed Antpitta,Grallaria carrikeri,Passeriformes,Grallariidae (Antpittas),, 13488,species,whtant2,White-throated Antpitta,Grallaria albigula,Passeriformes,Grallariidae (Antpittas),, 13488.2,species,yebant1,Yellow-breasted Antpitta,Grallaria flavotincta,Passeriformes,Grallariidae (Antpittas),, 13488.4,species,whbant3,White-bellied Antpitta,Grallaria hypoleuca,Passeriformes,Grallariidae (Antpittas),, 13489,species,rutant5,Rusty-tinged Antpitta,Grallaria przewalskii,Passeriformes,Grallariidae (Antpittas),, 13489.2,species,bayant1,Bay Antpitta,Grallaria capitalis,Passeriformes,Grallariidae (Antpittas),, 13489.4,species,rawant1,Red-and-white Antpitta,Grallaria erythroleuca,Passeriformes,Grallariidae (Antpittas),, 13489.6,species,rufant1,Rufous Antpitta,Grallaria rufula,Passeriformes,Grallariidae (Antpittas),, 13490,issf,rufant5,Rufous Antpitta (Sierra Nevada),Grallaria rufula spatiator,Passeriformes,Grallariidae (Antpittas),,rufant1 13490.1,issf,rufant6,Rufous Antpitta (Perija),Grallaria rufula saltuensis,Passeriformes,Grallariidae (Antpittas),,rufant1 13490.2,issf,rufant7,Rufous Antpitta (Rufous),Grallaria rufula rufula,Passeriformes,Grallariidae (Antpittas),,rufant1 13490.3,issf,rufant8,Rufous Antpitta (Cajamarca),Grallaria rufula cajamarcae,Passeriformes,Grallariidae (Antpittas),,rufant1 13490.4,issf,rufant9,Rufous Antpitta (North Peruvian),Grallaria rufula obscura,Passeriformes,Grallariidae (Antpittas),,rufant1 13490.5,issf,rufant10,Rufous Antpitta (South Peruvian),Grallaria rufula occabambae,Passeriformes,Grallariidae (Antpittas),,rufant1 13490.6,issf,rufant11,Rufous Antpitta (Bolivian),Grallaria rufula cochabambae,Passeriformes,Grallariidae (Antpittas),,rufant1 13491.2,species,cheant2,Chestnut Antpitta,Grallaria blakei,Passeriformes,Grallariidae (Antpittas),, 13491.4,species,tawant1,Tawny Antpitta,Grallaria quitensis,Passeriformes,Grallariidae (Antpittas),, 13491.6,issf,tawant2,Tawny Antpitta (Northern),Grallaria quitensis alticola,Passeriformes,Grallariidae (Antpittas),,tawant1 13491.8,issf,tawant3,Tawny Antpitta (Western),Grallaria quitensis quitensis,Passeriformes,Grallariidae (Antpittas),,tawant1 13492,issf,tawant4,Tawny Antpitta (Southern),Grallaria quitensis atuensis,Passeriformes,Grallariidae (Antpittas),,tawant1 13492.2,species,antant1,Urrao Antpitta,Grallaria urraoensis,Passeriformes,Grallariidae (Antpittas),, 13492.4,species,brbant1,Brown-banded Antpitta,Grallaria milleri,Passeriformes,Grallariidae (Antpittas),, 13492.75,species,rufant2,Rufous-faced Antpitta,Grallaria erythrotis,Passeriformes,Grallariidae (Antpittas),, 13492.8,spuh,gralla1,Grallaria sp.,Grallaria sp.,Passeriformes,Grallariidae (Antpittas),, 13493,species,stcant2,Streak-chested Antpitta,Hylopezus perspicillatus,Passeriformes,Grallariidae (Antpittas),, 13493.6,issf,stcant5,Streak-chested Antpitta (Eastern Panama),Hylopezus perspicillatus perspicillatus,Passeriformes,Grallariidae (Antpittas),,stcant2 13493.8,issf,stcant6,Streak-chested Antpitta (Atlantic Slope),Hylopezus perspicillatus intermedius,Passeriformes,Grallariidae (Antpittas),,stcant2 13494,issf,stcant7,Streak-chested Antpitta (Pacific Slope),Hylopezus perspicillatus lizanoi,Passeriformes,Grallariidae (Antpittas),,stcant2 13494.3,species,spoant6,Spotted Antpitta,Hylopezus macularius,Passeriformes,Grallariidae (Antpittas),, 13494.4,issf,spoant4,Spotted Antpitta (Spotted),Hylopezus macularius macularius,Passeriformes,Grallariidae (Antpittas),,spoant6 13494.6,issf,spoant3,Spotted Antpitta (Zimmer's),Hylopezus macularius dilutus,Passeriformes,Grallariidae (Antpittas),,spoant6 13494.8,species,spoant5,Snethlage's Antpitta,Hylopezus paraensis,Passeriformes,Grallariidae (Antpittas),, 13495,species,alfant1,Alta Floresta Antpitta,Hylopezus whittakeri,Passeriformes,Grallariidae (Antpittas),, 13495.2,species,masant1,Masked Antpitta,Hylopezus auricularis,Passeriformes,Grallariidae (Antpittas),, 13495.4,species,thiant1,Thicket Antpitta,Hylopezus dives,Passeriformes,Grallariidae (Antpittas),, 13496.2,species,whlant2,White-lored Antpitta,Hylopezus fulviventris,Passeriformes,Grallariidae (Antpittas),, 13496.8,species,amaant1,Amazonian Antpitta,Hylopezus berlepschi,Passeriformes,Grallariidae (Antpittas),, 13497.4,species,whbant7,White-browed Antpitta,Hylopezus ochroleucus,Passeriformes,Grallariidae (Antpittas),, 13497.6,species,spbant1,Speckle-breasted Antpitta,Hylopezus nattereri,Passeriformes,Grallariidae (Antpittas),, 13497.8,species,thlant1,Thrush-like Antpitta,Myrmothera campanisona,Passeriformes,Grallariidae (Antpittas),, 13498,issf,thlant2,Thrush-like Antpitta (Thrush-like),Myrmothera campanisona [campanisona Group],Passeriformes,Grallariidae (Antpittas),,thlant1 13499.2,issf,thlant3,Thrush-like Antpitta (Tapajos),Myrmothera campanisona subcanescens,Passeriformes,Grallariidae (Antpittas),,thlant1 13499.4,species,tepant1,Tepui Antpitta,Myrmothera simplex,Passeriformes,Grallariidae (Antpittas),, 13499.6,slash,y00882,Thrush-like/Tepui Antpitta,Myrmothera campanisona/simplex,Passeriformes,Grallariidae (Antpittas),, 13500.4,species,ocbant1,Ochre-breasted Antpitta,Grallaricula flavirostris,Passeriformes,Grallariidae (Antpittas),, 13502.2,species,scbant2,Scallop-breasted Antpitta,Grallaricula loricata,Passeriformes,Grallariidae (Antpittas),, 13502.4,species,hooant1,Hooded Antpitta,Grallaricula cucullata,Passeriformes,Grallariidae (Antpittas),, 13503,species,perant1,Peruvian Antpitta,Grallaricula peruviana,Passeriformes,Grallariidae (Antpittas),, 13503.2,species,ocfant1,Ochre-fronted Antpitta,Grallaricula ochraceifrons,Passeriformes,Grallariidae (Antpittas),, 13503.4,species,rubant5,Rusty-breasted Antpitta,Grallaricula ferrugineipectus,Passeriformes,Grallariidae (Antpittas),, 13503.6,issf,rubant8,Rusty-breasted Antpitta (rara),Grallaricula ferrugineipectus rara,Passeriformes,Grallariidae (Antpittas),,rubant5 13503.8,issf,rubant6,Rusty-breasted Antpitta (Rusty-breasted),Grallaricula ferrugineipectus ferrugineipectus,Passeriformes,Grallariidae (Antpittas),,rubant5 13504,issf,rubant7,Rusty-breasted Antpitta (Leimebamba),Grallaricula ferrugineipectus leymebambae,Passeriformes,Grallariidae (Antpittas),,rubant5 13504.2,species,slcant2,Slate-crowned Antpitta,Grallaricula nana,Passeriformes,Grallariidae (Antpittas),, 13504.4,issf,slcant4,Slate-crowned Antpitta (Slate-crowned),Grallaricula nana [nana Group],Passeriformes,Grallariidae (Antpittas),,slcant2 13505,issf,slcant6,Slate-crowned Antpitta (Guianan),Grallaricula nana kukenamensis,Passeriformes,Grallariidae (Antpittas),,slcant2 13505.2,species,slcant5,Sucre Antpitta,Grallaricula cumanensis,Passeriformes,Grallariidae (Antpittas),, 13505.8,species,crfant1,Crescent-faced Antpitta,Grallaricula lineifrons,Passeriformes,Grallariidae (Antpittas),, 13506,species,cthhue1,Chestnut-throated Huet-huet,Pteroptochos castaneus,Passeriformes,Rhinocryptidae (Tapaculos),Tapaculos, 13506.2,species,bthhue1,Black-throated Huet-huet,Pteroptochos tarnii,Passeriformes,Rhinocryptidae (Tapaculos),, 13506.4,species,moutur1,Moustached Turca,Pteroptochos megapodius,Passeriformes,Rhinocryptidae (Tapaculos),, 13507,species,whttap1,White-throated Tapaculo,Scelorchilus albicollis,Passeriformes,Rhinocryptidae (Tapaculos),, 13507.6,species,chutap1,Chucao Tapaculo,Scelorchilus rubecula,Passeriformes,Rhinocryptidae (Tapaculos),, 13508.2,species,rubtap1,Rusty-belted Tapaculo,Liosceles thoracicus,Passeriformes,Rhinocryptidae (Tapaculos),, 13509,species,ocetap1,Ocellated Tapaculo,Acropternis orthonyx,Passeriformes,Rhinocryptidae (Tapaculos),, 13509.6,species,cregal1,Crested Gallito,Rhinocrypta lanceolata,Passeriformes,Rhinocryptidae (Tapaculos),, 13510.2,species,sangal1,Sandy Gallito,Teledromas fuscus,Passeriformes,Rhinocryptidae (Tapaculos),, 13510.4,species,spobam1,Spotted Bamboowren,Psilorhamphus guttatus,Passeriformes,Rhinocryptidae (Tapaculos),, 13510.6,species,slabri1,Slaty Bristlefront,Merulaxis ater,Passeriformes,Rhinocryptidae (Tapaculos),, 13510.8,species,strbri1,Stresemann's Bristlefront,Merulaxis stresemanni,Passeriformes,Rhinocryptidae (Tapaculos),, 13511,species,ocftap1,Ochre-flanked Tapaculo,Eugralla paradoxa,Passeriformes,Rhinocryptidae (Tapaculos),, 13511.2,species,asctap1,Ash-colored Tapaculo,Myornis senilis,Passeriformes,Rhinocryptidae (Tapaculos),, 13511.4,species,whbtap1,White-breasted Tapaculo,Eleoscytalopus indigoticus,Passeriformes,Rhinocryptidae (Tapaculos),, 13511.6,species,bahtap1,Bahia Tapaculo,Eleoscytalopus psychopompus,Passeriformes,Rhinocryptidae (Tapaculos),, 13511.8,species,blatap1,Blackish Tapaculo,Scytalopus latrans,Passeriformes,Rhinocryptidae (Tapaculos),, 13512,issf,blatap3,Blackish Tapaculo (Blackish),Scytalopus latrans latrans,Passeriformes,Rhinocryptidae (Tapaculos),,blatap1 13512.2,issf,blatap4,Blackish Tapaculo (Pacific),Scytalopus latrans subcinereus,Passeriformes,Rhinocryptidae (Tapaculos),,blatap1 13512.4,issf,blatap2,Blackish Tapaculo (Peruvian),Scytalopus latrans intermedius,Passeriformes,Rhinocryptidae (Tapaculos),,blatap1 13512.6,species,juntap1,Junin Tapaculo,Scytalopus gettyae,Passeriformes,Rhinocryptidae (Tapaculos),, 13512.8,species,unitap1,Unicolored Tapaculo,Scytalopus unicolor,Passeriformes,Rhinocryptidae (Tapaculos),, 13513,species,tritap1,Trilling Tapaculo,Scytalopus parvirostris,Passeriformes,Rhinocryptidae (Tapaculos),, 13513.1,species,sertap1,Boa Nova Tapaculo,Scytalopus gonzagai,Passeriformes,Rhinocryptidae (Tapaculos),, 13513.2,species,moctap1,Mouse-colored Tapaculo,Scytalopus speluncae,Passeriformes,Rhinocryptidae (Tapaculos),, 13513.4,species,roctap1,Rock Tapaculo,Scytalopus petrophilus,Passeriformes,Rhinocryptidae (Tapaculos),, 13513.6,species,diatap2,Diamantina Tapaculo,Scytalopus diamantinensis,Passeriformes,Rhinocryptidae (Tapaculos),, 13513.8,species,platap1,Planalto Tapaculo,Scytalopus pachecoi,Passeriformes,Rhinocryptidae (Tapaculos),, 13514,species,martap1,Marsh Tapaculo,Scytalopus iraiensis,Passeriformes,Rhinocryptidae (Tapaculos),, 13514.2,species,laftap1,Large-footed Tapaculo,Scytalopus macropus,Passeriformes,Rhinocryptidae (Tapaculos),, 13514.4,species,samtap1,Santa Marta Tapaculo,Scytalopus sanctaemartae,Passeriformes,Rhinocryptidae (Tapaculos),, 13514.6,species,lottap1,Long-tailed Tapaculo,Scytalopus micropterus,Passeriformes,Rhinocryptidae (Tapaculos),, 13514.8,species,ruvtap1,Rufous-vented Tapaculo,Scytalopus femoralis,Passeriformes,Rhinocryptidae (Tapaculos),, 13515,species,whctap1,White-crowned Tapaculo,Scytalopus atratus,Passeriformes,Rhinocryptidae (Tapaculos),, 13515.8,species,boltap1,Bolivian Tapaculo,Scytalopus bolivianus,Passeriformes,Rhinocryptidae (Tapaculos),, 13516,species,tactap1,Tacarcuna Tapaculo,Scytalopus panamensis,Passeriformes,Rhinocryptidae (Tapaculos),, 13516.2,species,chotap1,Choco Tapaculo,Scytalopus chocoensis,Passeriformes,Rhinocryptidae (Tapaculos),, 13516.4,species,upmtap1,Magdalena Tapaculo,Scytalopus rodriguezi,Passeriformes,Rhinocryptidae (Tapaculos),, 13516.5,issf,magtap2,Magdalena Tapaculo (Yariguies),Scytalopus rodriguezi yariguiorum,Passeriformes,Rhinocryptidae (Tapaculos),,upmtap1 13516.55,issf,magtap3,Magdalena Tapaculo (Upper Magdalena),Scytalopus rodriguezi rodriguezi,Passeriformes,Rhinocryptidae (Tapaculos),,upmtap1 13516.6,species,stitap1,Stiles's Tapaculo,Scytalopus stilesi,Passeriformes,Rhinocryptidae (Tapaculos),, 13516.8,species,ecutap1,Ecuadorian Tapaculo,Scytalopus robbinsi,Passeriformes,Rhinocryptidae (Tapaculos),, 13517,species,alptap1,Tatama Tapaculo,Scytalopus alvarezlopezi,Passeriformes,Rhinocryptidae (Tapaculos),, 13517.2,species,nartap2,Nari–o Tapaculo,Scytalopus vicinior,Passeriformes,Rhinocryptidae (Tapaculos),, 13517.4,species,brrtap1,Brown-rumped Tapaculo,Scytalopus latebricola,Passeriformes,Rhinocryptidae (Tapaculos),, 13517.6,species,pertap1,Perija Tapaculo,Scytalopus perijanus,Passeriformes,Rhinocryptidae (Tapaculos),, 13517.8,species,mertap1,Merida Tapaculo,Scytalopus meridanus,Passeriformes,Rhinocryptidae (Tapaculos),, 13518,issf,mertap2,Merida Tapaculo (Merida),Scytalopus meridanus meridanus,Passeriformes,Rhinocryptidae (Tapaculos),,mertap1 13518.2,issf,lartap1,Merida Tapaculo (Lara),Scytalopus meridanus fuscicauda,Passeriformes,Rhinocryptidae (Tapaculos),,mertap1 13518.4,species,siftap1,Silvery-fronted Tapaculo,Scytalopus argentifrons,Passeriformes,Rhinocryptidae (Tapaculos),, 13518.6,issf,siftap2,Silvery-fronted Tapaculo (Silvery-fronted),Scytalopus argentifrons argentifrons,Passeriformes,Rhinocryptidae (Tapaculos),,siftap1 13518.8,issf,siftap3,Silvery-fronted Tapaculo (Chiriqui),Scytalopus argentifrons chiriquensis,Passeriformes,Rhinocryptidae (Tapaculos),,siftap1 13519,species,cartap1,Caracas Tapaculo,Scytalopus caracae,Passeriformes,Rhinocryptidae (Tapaculos),, 13519.2,species,spitap2,Spillmann's Tapaculo,Scytalopus spillmanni,Passeriformes,Rhinocryptidae (Tapaculos),, 13519.4,species,chutap2,Chusquea Tapaculo,Scytalopus parkeri,Passeriformes,Rhinocryptidae (Tapaculos),, 13519.6,species,bratap1,Brasilia Tapaculo,Scytalopus novacapitalis,Passeriformes,Rhinocryptidae (Tapaculos),, 13519.8,species,magtap1,Magellanic Tapaculo,Scytalopus magellanicus,Passeriformes,Rhinocryptidae (Tapaculos),, 13520,species,mattap1,Pale-bellied Tapaculo,Scytalopus griseicollis,Passeriformes,Rhinocryptidae (Tapaculos),, 13520.6,species,nebtap1,Neblina Tapaculo,Scytalopus altirostris,Passeriformes,Rhinocryptidae (Tapaculos),, 13520.7,form,lamtap1,Lambayeque Tapaculo (undescribed form),Scytalopus [undescribed Lambayeque form],Passeriformes,Rhinocryptidae (Tapaculos),, 13520.8,species,anctap1,Ancash Tapaculo,Scytalopus affinis,Passeriformes,Rhinocryptidae (Tapaculos),, 13521,form,miltap1,Millpo Tapaculo (undescribed form),Scytalopus [undescribed Millpo form],Passeriformes,Rhinocryptidae (Tapaculos),, 13521.2,species,tsctap1,Tschudi's Tapaculo,Scytalopus acutirostris,Passeriformes,Rhinocryptidae (Tapaculos),, 13521.3,form,aputap1,Ayacucho Tapaculo (undescribed form),Scytalopus [undescribed Ayacucho form],Passeriformes,Rhinocryptidae (Tapaculos),, 13521.4,species,viltap1,Vilcabamba Tapaculo,Scytalopus urubambae,Passeriformes,Rhinocryptidae (Tapaculos),, 13521.6,form,amptap1,Ampay Tapaculo (undescribed form),Scytalopus [undescribed Ampay form],Passeriformes,Rhinocryptidae (Tapaculos),, 13521.8,species,puntap1,Puna Tapaculo,Scytalopus simonsi,Passeriformes,Rhinocryptidae (Tapaculos),, 13522,species,zimtap1,Zimmer's Tapaculo,Scytalopus zimmeri,Passeriformes,Rhinocryptidae (Tapaculos),, 13522.2,species,whbtap2,White-browed Tapaculo,Scytalopus superciliaris,Passeriformes,Rhinocryptidae (Tapaculos),, 13522.8,species,dustap1,Dusky Tapaculo,Scytalopus fuscus,Passeriformes,Rhinocryptidae (Tapaculos),, 13523,species,partap1,Paramillo Tapaculo,Scytalopus canus,Passeriformes,Rhinocryptidae (Tapaculos),, 13523.2,species,partap2,Paramo Tapaculo,Scytalopus opacus,Passeriformes,Rhinocryptidae (Tapaculos),, 13523.4,species,diatap1,Diademed Tapaculo,Scytalopus schulenbergi,Passeriformes,Rhinocryptidae (Tapaculos),, 13523.6,spuh,scytal1,Scytalopus sp.,Scytalopus sp.,Passeriformes,Rhinocryptidae (Tapaculos),, 13523.7,spuh,tapacu1,tapaculo sp.,Rhinocryptidae sp.,Passeriformes,Rhinocryptidae (Tapaculos),, 13523.8,species,rucant2,Rufous-capped Antthrush,Formicarius colma,Passeriformes,Formicariidae (Antthrushes),Antthrushes, 13524.8,species,blfant1,Black-faced Antthrush,Formicarius analis,Passeriformes,Formicariidae (Antthrushes),, 13525,issf,bkfant2,Black-faced Antthrush (Mayan),Formicarius analis [moniliger Group],Passeriformes,Formicariidae (Antthrushes),,blfant1 13525.8,issf,bkfant1,Black-faced Antthrush (Central American),Formicarius analis [hoffmanni Group],Passeriformes,Formicariidae (Antthrushes),,blfant1 13526,issf,bkfant3,Black-faced Antthrush (Black-faced),Formicarius analis [analis Group],Passeriformes,Formicariidae (Antthrushes),,blfant1 13528.2,species,rufant3,Rufous-fronted Antthrush,Formicarius rufifrons,Passeriformes,Formicariidae (Antthrushes),, 13528.4,species,blhant1,Black-headed Antthrush,Formicarius nigricapillus,Passeriformes,Formicariidae (Antthrushes),, 13529,species,rubant1,Rufous-breasted Antthrush,Formicarius rufipectus,Passeriformes,Formicariidae (Antthrushes),, 13530,spuh,formic1,Formicarius sp.,Formicarius sp.,Passeriformes,Formicariidae (Antthrushes),, 13530.2,species,shtant1,Short-tailed Antthrush,Chamaeza campanisona,Passeriformes,Formicariidae (Antthrushes),, 13532.8,species,strant3,Striated Antthrush,Chamaeza nobilis,Passeriformes,Formicariidae (Antthrushes),, 13533.6,species,sucant1,Such's Antthrush,Chamaeza meruloides,Passeriformes,Formicariidae (Antthrushes),, 13533.8,species,schant1,Schwartz's Antthrush,Chamaeza turdina,Passeriformes,Formicariidae (Antthrushes),, 13534.4,species,rutant2,Rufous-tailed Antthrush,Chamaeza ruficauda,Passeriformes,Formicariidae (Antthrushes),, 13534.6,species,barant2,Barred Antthrush,Chamaeza mollissima,Passeriformes,Formicariidae (Antthrushes),, 13535.2,spuh,chamae1,Chamaeza sp.,Chamaeza sp.,Passeriformes,Formicariidae (Antthrushes),, 13535.4,spuh,antthr1,antthrush sp.,Formicarius/Chamaeza sp.,Passeriformes,Formicariidae (Antthrushes),, 13535.6,species,tatlea1,Tawny-throated Leaftosser,Sclerurus mexicanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),Leaftossers and Miners, 13535.8,issf,tatlea5,Tawny-throated Leaftosser (Mexican),Sclerurus mexicanus mexicanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 13536,issf,tatlea8,Tawny-throated Leaftosser (Costa Rican),Sclerurus mexicanus pullus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 13536.2,issf,tatlea2,Tawny-throated Leaftosser (Andean),Sclerurus mexicanus andinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 13536.4,issf,tatlea6,Tawny-throated Leaftosser (Dusky),Sclerurus mexicanus obscurior,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 13536.6,issf,tatlea7,Tawny-throated Leaftosser (Amazonian),Sclerurus mexicanus peruvianus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 13536.8,issf,tatlea4,Tawny-throated Leaftosser (Guianan),Sclerurus mexicanus macconnelli,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 13537,issf,tatlea3,Tawny-throated Leaftosser (Atlantic),Sclerurus mexicanus bahiae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 13537.2,species,shblea1,Short-billed Leaftosser,Sclerurus rufigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13538,species,sctlea1,Scaly-throated Leaftosser,Sclerurus guatemalensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13538.8,species,bltlea1,Black-tailed Leaftosser,Sclerurus caudacutus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13540.2,species,grtlea1,Gray-throated Leaftosser,Sclerurus albigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13541.8,species,rublea1,Rufous-breasted Leaftosser,Sclerurus scansor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13542,issf,rublea2,Rufous-breasted Leaftosser (Ceara),Sclerurus scansor cearensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rublea1 13542.2,issf,rublea3,Rufous-breasted Leaftosser (Rufous-breasted),Sclerurus scansor scansor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rublea1 13542.4,spuh,leafto1,leaftosser sp.,Sclerurus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13542.6,species,coamin1,Coastal Miner,Geositta peruviana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13543.3,species,slbmin1,Slender-billed Miner,Geositta tenuirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13543.8,species,commin1,Common Miner,Geositta cunicularia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13544,issf,commin3,Common Miner (Altiplano),Geositta cunicularia [frobeni Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 13544.8,issf,commin6,Common Miner (georgei),Geositta cunicularia georgei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 13545,issf,commin4,Common Miner (Coastal Desert),Geositta cunicularia deserticolor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 13545.2,issf,commin5,Common Miner (Central Chile),Geositta cunicularia fissirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 13545.4,issf,commin2,Common Miner (Patagonian),Geositta cunicularia [cunicularia Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 13546.4,species,punmin1,Puna Miner,Geositta punensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13546.6,slash,y00795,Common/Puna Miner,Geositta cunicularia/punensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13546.8,species,cammin2,Campo Miner,Geositta poeciloptera,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13547,species,thbmin1,Thick-billed Miner,Geositta crassirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13547.2,species,rubmin1,Rufous-banded Miner,Geositta rufipennis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13548.6,species,gramin1,Grayish Miner,Geositta maritima,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13548.8,species,shbmin1,Short-billed Miner,Geositta antarctica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13549,species,dawmin1,Dark-winged Miner,Geositta saxicolina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13549.2,species,crrmin1,Creamy-rumped Miner,Geositta isabellina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13549.4,spuh,miner1,miner sp. (Geositta sp.),Geositta sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13549.6,species,sptwoo1,Spot-throated Woodcreeper,Certhiasomus stictolaemus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),Woodcreepers, 13550.4,species,oliwoo1,Olivaceous Woodcreeper,Sittasomus griseicapillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13550.6,issf,oliwoo3,Olivaceous Woodcreeper (Grayish),Sittasomus griseicapillus [griseus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 13552,issf,oliwoo4,Olivaceous Woodcreeper (Pacific),Sittasomus griseicapillus aequatorialis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 13552.2,issf,oliwoo5,Olivaceous Woodcreeper (Amazonian),Sittasomus griseicapillus [griseicapillus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 13553.4,issf,oliwoo6,Olivaceous Woodcreeper (Reiser's),Sittasomus griseicapillus reiseri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 13553.6,issf,oliwoo7,Olivaceous Woodcreeper (Olivaceous),Sittasomus griseicapillus sylviellus/olivaceus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 13554.2,species,lotwoo1,Long-tailed Woodcreeper,Deconychura longicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13554.4,issf,lotwoo3,Long-tailed Woodcreeper (Little),Deconychura longicauda [typica Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotwoo1 13554.6,issf,lotwoo4,Long-tailed Woodcreeper (Northern),Deconychura longicauda longicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotwoo1 13554.8,issf,lotwoo5,Long-tailed Woodcreeper (Southern),Deconychura longicauda [pallida Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotwoo1 13555.7,form,yunwoo1,Yungas Woodcreeper (undescribed form),Deconychura [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13555.8,species,tyrwoo1,Tyrannine Woodcreeper,Dendrocincla tyrannina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13560.4,species,whcwoo1,White-chinned Woodcreeper,Dendrocincla merula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13562,species,rudwoo1,Ruddy Woodcreeper,Dendrocincla homochroa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13562.81,species,tawwoo1,Tawny-winged Woodcreeper,Dendrocincla anabatina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13562.825,species,plbwoo1,Plain-brown Woodcreeper,Dendrocincla fuliginosa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13562.835,issf,plbwoo2,Plain-brown Woodcreeper (Plain-brown),Dendrocincla fuliginosa [meruloides Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plbwoo1 13562.875,issf,plbwoo3,Plain-brown Woodcreeper (Line-throated),Dendrocincla fuliginosa [fuliginosa Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plbwoo1 13562.9,species,plwwoo1,Plain-winged Woodcreeper,Dendrocincla turdina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13562.905,issf,plbwoo4,Plain-winged Woodcreeper (Pernambuco),Dendrocincla turdina taunayi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plwwoo1 13562.91,issf,plbwoo5,Plain-winged Woodcreeper (Plain-winged),Dendrocincla turdina turdina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plwwoo1 13563,spuh,dendro2,Dendrocincla sp.,Dendrocincla sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13563.2,species,webwoo1,Wedge-billed Woodcreeper,Glyphorynchus spirurus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13563.4,issf,webwoo2,Wedge-billed Woodcreeper (pectoralis Group),Glyphorynchus spirurus [pectoralis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 13563.6,issf,webwoo3,Wedge-billed Woodcreeper (spirurus Group),Glyphorynchus spirurus [spirurus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 13563.8,issf,webwoo4,Wedge-billed Woodcreeper (albigularis),Glyphorynchus spirurus albigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 13564,issf,webwoo5,Wedge-billed Woodcreeper (cuneatus Group),Glyphorynchus spirurus [cuneatus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 13566,species,citwoo1,Cinnamon-throated Woodcreeper,Dendrexetastes rufigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13566.2,issf,citwoo2,Cinnamon-throated Woodcreeper (devillei),Dendrexetastes rufigula devillei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,citwoo1 13566.4,issf,citwoo3,Cinnamon-throated Woodcreeper (rufigula),Dendrexetastes rufigula rufigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,citwoo1 13566.6,issf,citwoo4,Cinnamon-throated Woodcreeper (paraensis/moniliger),Dendrexetastes rufigula paraensis/moniliger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,citwoo1 13567,species,lobwoo1,Long-billed Woodcreeper,Nasica longirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13567.2,species,nobwoo1,Northern Barred-Woodcreeper,Dendrocolaptes sanctithomae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13568.2,species,amabaw1,Amazonian Barred-Woodcreeper,Dendrocolaptes certhia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13568.4,issf,amabaw2,Amazonian Barred-Woodcreeper (Napo),Dendrocolaptes certhia radiolatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 13568.6,issf,amabaw3,Amazonian Barred-Woodcreeper (Amazonian),Dendrocolaptes certhia certhia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 13568.7,issf,amabaw4,Amazonian Barred-Woodcreeper (Jurua),Dendrocolaptes certhia juruanus/polyzonus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 13569,issf,amabaw5,Amazonian Barred-Woodcreeper (Plain-colored),Dendrocolaptes certhia concolor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 13569.1,issf,amabaw6,Amazonian Barred-Woodcreeper (Ridgway's),Dendrocolaptes certhia ridgwayi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 13569.2,issf,xinwoo1,Amazonian Barred-Woodcreeper (Xingu),Dendrocolaptes certhia retentus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 13569.4,issf,amabaw7,Amazonian Barred-Woodcreeper (Todd's),Dendrocolaptes certhia medius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 13569.6,species,blbwoo1,Black-banded Woodcreeper,Dendrocolaptes picumnus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13569.8,issf,bkbwoo1,Black-banded Woodcreeper (Spot-throated),Dendrocolaptes picumnus [puncticollis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blbwoo1 13570.6,issf,bkbwoo2,Black-banded Woodcreeper (Black-banded),Dendrocolaptes picumnus [picumnus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blbwoo1 13571.8,issf,bkbwoo3,Black-banded Woodcreeper (Pale-billed),Dendrocolaptes picumnus pallescens/casaresi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blbwoo1 13572.4,species,hofwoo2,Hoffmanns's Woodcreeper,Dendrocolaptes hoffmannsi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13572.6,species,plawoo1,Planalto Woodcreeper,Dendrocolaptes platyrostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13573.1,spuh,dendro4,Dendrocolaptes sp.,Dendrocolaptes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13573.2,species,babwoo1,Bar-bellied Woodcreeper,Hylexetastes stresemanni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13574,species,rebwoo1,Red-billed Woodcreeper,Hylexetastes perrotii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13574.2,issf,rebwoo2,Red-billed Woodcreeper (Red-billed),Hylexetastes perrotii perrotii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rebwoo1 13574.4,issf,rebwoo3,Red-billed Woodcreeper (Uniform),Hylexetastes perrotii uniformis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rebwoo1 13574.6,issf,rebwoo4,Red-billed Woodcreeper (Brigida's),Hylexetastes perrotii brigidai,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rebwoo1 13574.8,species,stbwoo1,Strong-billed Woodcreeper,Xiphocolaptes promeropirhynchus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13575,issf,stbwoo6,Strong-billed Woodcreeper (Central American),Xiphocolaptes promeropirhynchus [emigrans Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 13576.2,issf,stbwoo7,Strong-billed Woodcreeper (Andean/Northern),Xiphocolaptes promeropirhynchus [promeropirhynchus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 13579.2,issf,stbwoo8,Strong-billed Woodcreeper (Amazonian),Xiphocolaptes promeropirhynchus [orenocensis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 13580.4,issf,stbwoo9,Strong-billed Woodcreeper (Carajas),Xiphocolaptes promeropirhynchus carajaensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 13580.6,species,mouwoo1,Moustached Woodcreeper,Xiphocolaptes falcirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13581.2,species,whtwoo1,White-throated Woodcreeper,Xiphocolaptes albicollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13582,species,grrwoo1,Great Rufous Woodcreeper,Xiphocolaptes major,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13583,species,strwoo2,Striped Woodcreeper,Xiphorhynchus obsoletus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13584,species,leswoo3,Lesser Woodcreeper,Xiphorhynchus fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13584.2,issf,leswoo4,Lesser Woodcreeper (Northern),Xiphorhynchus fuscus atlanticus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,leswoo3 13584.4,issf,leswoo2,Lesser Woodcreeper (Lesser),Xiphorhynchus fuscus [fuscus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,leswoo3 13585.1,species,chrwoo1,Chestnut-rumped Woodcreeper,Xiphorhynchus pardalotus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13585.2,species,ocewoo1,Ocellated Woodcreeper,Xiphorhynchus ocellatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13585.4,issf,ocewoo2,Ocellated Woodcreeper (Tschudi's),Xiphorhynchus ocellatus [chunchotambo Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ocewoo1 13586.2,issf,ocewoo4,Ocellated Woodcreeper (Line-crowned),Xiphorhynchus ocellatus beauperthuysii/lineatocapilla,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ocewoo1 13586.7,issf,ocewoo3,Ocellated Woodcreeper (Ocellated),Xiphorhynchus ocellatus ocellatus/perplexus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ocewoo1 13587.2,species,elewoo1,Elegant Woodcreeper,Xiphorhynchus elegans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13588.4,species,spiwoo1,Spix's Woodcreeper,Xiphorhynchus spixii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13589.2,species,cocwoo1,Cocoa Woodcreeper,Xiphorhynchus susurrans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13589.4,issf,cocwoo2,Cocoa Woodcreeper (Lawrence's),Xiphorhynchus susurrans [nana Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cocwoo1 13590.6,issf,cocwoo3,Cocoa Woodcreeper (Cocoa),Xiphorhynchus susurrans [susurrans Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cocwoo1 13591.4,species,butwoo1,Buff-throated Woodcreeper,Xiphorhynchus guttatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13591.6,issf,butwoo2,Buff-throated Woodcreeper (Buff-throated),Xiphorhynchus guttatus [guttatus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,butwoo1 13592.4,issf,butwoo3,Buff-throated Woodcreeper (Lafresnaye's),Xiphorhynchus guttatus guttatoides/dorbignyanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,butwoo1 13593,issf,butwoo4,Buff-throated Woodcreeper (Dusky-billed),Xiphorhynchus guttatus [eytoni Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,butwoo1 13593.8,species,ivbwoo1,Ivory-billed Woodcreeper,Xiphorhynchus flavigaster,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13595.6,species,blswoo1,Black-striped Woodcreeper,Xiphorhynchus lachrymosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13596.4,species,spowoo1,Spotted Woodcreeper,Xiphorhynchus erythropygius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13596.6,issf,spowoo2,Spotted Woodcreeper (Spotted),Xiphorhynchus erythropygius erythropygius/parvus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spowoo1 13597.2,issf,spowoo3,Spotted Woodcreeper (Berlepsch's),Xiphorhynchus erythropygius [aequatorialis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spowoo1 13598,species,olbwoo1,Olive-backed Woodcreeper,Xiphorhynchus triangularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13599,spuh,xiphor1,Xiphorhynchus sp.,Xiphorhynchus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13599.2,species,stbwoo2,Straight-billed Woodcreeper,Dendroplex picus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13602,species,zimwoo2,Zimmer's Woodcreeper,Dendroplex kienerii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13602.2,slash,y00706,Straight-billed/Zimmer's Woodcreeper,Dendroplex picus/kienerii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13602.4,species,rebscy1,Red-billed Scythebill,Campylorhamphus trochilirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13604.8,species,blbscy1,Black-billed Scythebill,Campylorhamphus falcularius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13605,species,cubscy1,Curve-billed Scythebill,Campylorhamphus procurvoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13605.2,issf,cubscy2,Curve-billed Scythebill (Zimmer's),Campylorhamphus procurvoides sanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 13605.4,issf,cubscy3,Curve-billed Scythebill (Curve-billed),Campylorhamphus procurvoides procurvoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 13606.1,issf,tupscy1,Curve-billed Scythebill (Tupana),Campylorhamphus procurvoides gyldenstolpei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 13606.15,issf,cubscy4,Curve-billed Scythebill (Rondonia),Campylorhamphus procurvoides probatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 13606.2,issf,tapscy1,Curve-billed Scythebill (Tapajos),Campylorhamphus procurvoides cardosoi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 13606.23,issf,cubscy5,Curve-billed Scythebill (Snethlage's),Campylorhamphus procurvoides multostriatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 13606.25,species,brbscy1,Brown-billed Scythebill,Campylorhamphus pusillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13607.4,spuh,scythe1,scythebill sp.,Campylorhamphus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13607.6,species,grescy1,Greater Scythebill,Drymotoxeres pucheranii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13607.8,species,scbwoo4,Scimitar-billed Woodcreeper,Drymornis bridgesii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13608,species,sthwoo1,Streak-headed Woodcreeper,Lepidocolaptes souleyetii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13609.6,species,nabwoo1,Narrow-billed Woodcreeper,Lepidocolaptes angustirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13611.4,species,whswoo1,White-striped Woodcreeper,Lepidocolaptes leucogaster,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13612,species,spcwoo1,Spot-crowned Woodcreeper,Lepidocolaptes affinis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13612.2,issf,spcwoo4,Spot-crowned Woodcreeper (Northern),Lepidocolaptes affinis affinis/lignicida,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spcwoo1 13612.4,issf,spcwoo5,Spot-crowned Woodcreeper (Southern),Lepidocolaptes affinis neglectus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spcwoo1 13612.8,species,monwoo1,Montane Woodcreeper,Lepidocolaptes lacrymiger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13614.8,species,scawoo1,Scaled Woodcreeper,Lepidocolaptes squamatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13615,issf,scawoo4,Scaled Woodcreeper (Wagler's),Lepidocolaptes squamatus wagleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,scawoo1 13615.2,issf,scawoo3,Scaled Woodcreeper (Scaled),Lepidocolaptes squamatus squamatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,scawoo1 13615.4,species,scawoo2,Scalloped Woodcreeper,Lepidocolaptes falcinellus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13615.5,species,linwoo4,Duida Woodcreeper,Lepidocolaptes duidae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13615.8,species,linwoo3,Guianan Woodcreeper,Lepidocolaptes albolineatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13615.9,species,inawoo1,Inambari Woodcreeper,Lepidocolaptes fatimalimae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13616,slash,y00968,Duida/Inambari Woodcreeper,Lepidocolaptes duidae/fatimalimae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13616.2,species,linwoo5,Rondonia Woodcreeper,Lepidocolaptes fuscicapillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13616.6,species,linwoo6,Layard's Woodcreeper,Lepidocolaptes layardi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13616.8,spuh,lepido1,Lepidocolaptes sp.,Lepidocolaptes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13617,spuh,woodcr1,woodcreeper sp.,Dendrocolaptinae sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13617.2,species,slbxen1,Slender-billed Xenops,Xenops tenuirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),Ovenbirds, 13618,species,plaxen1,Plain Xenops,Xenops minutus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13618.2,issf,plaxen2,Plain Xenops (mexicanus Group),Xenops minutus [mexicanus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plaxen1 13618.4,issf,plaxen3,Plain Xenops (genibarbis Group),Xenops minutus [genibarbis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plaxen1 13618.6,issf,plaxen4,Plain Xenops (White-throated),Xenops minutus minutus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plaxen1 13620.2,species,strxen1,Streaked Xenops,Xenops rutilans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13622.5,slash,y00738,Slender-billed/Streaked Xenops,Xenops tenuirostris/rutilans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13622.55,spuh,xenops1,xenops sp.,Xenops sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13622.6,species,potpal1,Point-tailed Palmcreeper,Berlepschia rikeri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13622.8,species,rutxen1,Rufous-tailed Xenops,Microxenops milleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13623,species,whttre2,White-throated Treerunner,Pygarrhichas albogularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13623.2,species,rocear1,Rock Earthcreeper,Ochetorhynchus andaecola,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13623.4,species,stbear2,Straight-billed Earthcreeper,Ochetorhynchus ruficaudus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13624.2,species,batear1,Band-tailed Earthcreeper,Ochetorhynchus phoenicurus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13624.4,species,crachi1,Crag Chilia,Ochetorhynchus melanurus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13625,species,buftuf1,Buffy Tuftedcheek,Pseudocolaptes lawrencii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13625.2,issf,buftuf2,Buffy Tuftedcheek (Buffy),Pseudocolaptes lawrencii lawrencii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,buftuf1 13625.4,issf,buftuf3,Buffy Tuftedcheek (Pacific),Pseudocolaptes lawrencii johnsoni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,buftuf1 13625.6,species,strtuf1,Streaked Tuftedcheek,Pseudocolaptes boissonneautii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13627.8,species,ruwbar1,Rusty-winged Barbtail,Premnornis guttuliger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13628.4,species,bolear1,Bolivian Earthcreeper,Tarphonomus harterti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13628.6,species,chaear1,Chaco Earthcreeper,Tarphonomus certhioides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13629.4,species,wibhor1,Wing-banded Hornero,Furnarius figulus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13630,species,palhor2,Pale-legged Hornero,Furnarius leucopus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13630.2,issf,palhor5,Pale-legged Hornero (Caribbean),Furnarius leucopus longirostris/endoecus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,palhor2 13630.8,issf,palhor3,Pale-legged Hornero (Pale-legged),Furnarius leucopus [leucopus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,palhor2 13631.8,issf,palhor4,Pale-legged Hornero (Pacific),Furnarius leucopus cinnamomeus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,palhor2 13632,species,pabhor2,Pale-billed Hornero,Furnarius torridus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13632.2,species,leshor1,Lesser Hornero,Furnarius minor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13632.4,species,rufhor2,Rufous Hornero,Furnarius rufus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13633.6,species,crehor1,Crested Hornero,Furnarius cristatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13633.8,spuh,horner1,hornero sp.,Furnarius sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13634,species,shtstr1,Sharp-tailed Streamcreeper,Lochmias nematura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13635.4,species,wrlrus1,Wren-like Rushbird,Phleocryptes melanops,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13636.4,species,cubree1,Curve-billed Reedhaunter,Limnornis curvirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13636.6,species,strear1,Striated Earthcreeper,Geocerthia serrana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13637.2,species,pafear1,Patagonian Forest Earthcreeper,Upucerthia saturatior,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13637.4,species,sctear1,Scale-throated Earthcreeper,Upucerthia dumetaria,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13638.2,species,whtear1,White-throated Earthcreeper,Upucerthia albigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13638.3,species,bubear2,Buff-breasted Earthcreeper,Upucerthia validirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13638.4,issf,plbear1,Buff-breasted Earthcreeper (Plain-breasted),Upucerthia validirostris jelskii/saturata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,bubear2 13639.2,issf,bubear1,Buff-breasted Earthcreeper (Buff-breasted),Upucerthia validirostris validirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,bubear2 13639.4,spuh,upucer1,Upucerthia sp.,Upucerthia sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13639.6,species,lotcin1,Long-tailed Cinclodes,Cinclodes pabsti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13639.7,issf,lotcin2,Long-tailed Cinclodes (Cipo),Cinclodes pabsti espinhacensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotcin1 13639.75,issf,lotcin3,Long-tailed Cinclodes (Long-tailed),Cinclodes pabsti pabsti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotcin1 13640.4,species,buwcin1,Buff-winged Cinclodes,Cinclodes fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13640.43,species,blacin1,Blackish Cinclodes,Cinclodes antarcticus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13640.44,issf,blacin2,Blackish Cinclodes (Black),Cinclodes antarcticus maculirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blacin1 13640.46,issf,blacin3,Blackish Cinclodes (Blackish),Cinclodes antarcticus antarcticus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blacin1 13640.55,species,corcin1,Cordoba Cinclodes,Cinclodes comechingonus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13640.6,species,chwcin1,Chestnut-winged Cinclodes,Cinclodes albidiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13641.4,species,olrcin1,Olrog's Cinclodes,Cinclodes olrogi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13641.6,species,crwcin1,Cream-winged Cinclodes,Cinclodes albiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13642.8,spuh,bawcin1,bar-winged cinclodes sp.,Cinclodes albidiventris/albiventris/fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13643,species,gyfcin1,Gray-flanked Cinclodes,Cinclodes oustaleti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13643.2,species,stbcin1,Stout-billed Cinclodes,Cinclodes excelsior,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13643.8,species,roycin1,Royal Cinclodes,Cinclodes aricomae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13643.9,species,whbcin1,White-bellied Cinclodes,Cinclodes palliatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13644,species,whwcin1,White-winged Cinclodes,Cinclodes atacamensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13645.6,species,dabcin1,Dark-bellied Cinclodes,Cinclodes patagonicus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13646.2,species,surcin1,Surf Cinclodes,Cinclodes taczanowskii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13646.4,species,seacin1,Seaside Cinclodes,Cinclodes nigrofumosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13646.6,spuh,cinclo1,Cinclodes sp.,Cinclodes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13646.8,species,ducfog1,Dusky-cheeked Foliage-gleaner,Anabazenops dorsalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13647,species,wcfgle1,White-collared Foliage-gleaner,Anabazenops fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13647.2,species,grexen1,Great Xenops,Megaxenops parnaguae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13647.4,species,pabtre1,Pale-browed Treehunter,Cichlocolaptes leucophrus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13647.43,issf,pabtre2,Pale-browed Treehunter (Pale-tailed),Cichlocolaptes leucophrus leucophrus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pabtre1 13647.46,issf,pabtre3,Pale-browed Treehunter (Rufous-tailed),Cichlocolaptes leucophrus holti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pabtre1 13647.5,species,crytre1,Cryptic Treehunter,Cichlocolaptes mazarbarnetti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13647.6,species,shbtre1,Sharp-billed Treehunter,Heliobletus contaminatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13648,form,bahtre1,Bahia Treehunter (undescribed form),Heliobletus [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13648.4,species,swfgle,Slaty-winged Foliage-gleaner,Philydor fuscipenne,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13648.6,issf,slwfog1,Slaty-winged Foliage-gleaner (Dusky-winged),Philydor fuscipenne fuscipenne,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,swfgle 13648.8,issf,slwfog2,Slaty-winged Foliage-gleaner (Rufous-backed),Philydor fuscipenne erythronotum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,swfgle 13649,species,rurfog1,Rufous-rumped Foliage-gleaner,Philydor erythrocercum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13650.2,species,chwfog1,Chestnut-winged Foliage-gleaner,Philydor erythropterum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13651,species,alfgle1,Alagoas Foliage-gleaner,Philydor novaesi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13651.1,slash,y00969,Cryptic Treehunter/Alagoas Foliage-Gleaner,Cichlocolaptes mazarbarnetti/Philydor novaesi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13651.2,species,bcfgle1,Black-capped Foliage-gleaner,Philydor atricapillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13651.4,species,bffgle,Buff-fronted Foliage-gleaner,Philydor rufum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13653,species,crfgle1,Cinnamon-rumped Foliage-gleaner,Philydor pyrrhodes,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13653.1,spuh,philyd1,Philydor sp.,Philydor sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13653.2,species,stfgle1,Scaly-throated Foliage-gleaner,Anabacerthia variegaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13653.4,issf,sctfog1,Scaly-throated Foliage-gleaner (Scaly-throated),Anabacerthia variegaticeps variegaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stfgle1 13653.6,issf,sctfog2,Scaly-throated Foliage-gleaner (Spot-breasted),Anabacerthia variegaticeps temporalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stfgle1 13653.8,species,mofgle1,Montane Foliage-gleaner,Anabacerthia striaticollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13655.05,species,rutfog1,Rufous-tailed Foliage-gleaner,Anabacerthia ruficaudata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13655.2,species,whbfog1,White-browed Foliage-gleaner,Anabacerthia amaurotis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13655.3,species,obfgle2,Ochre-breasted Foliage-gleaner,Anabacerthia lichtensteini,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13655.35,spuh,anabac1,Anabacerthia sp.,Anabacerthia sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13655.4,species,gufgle1,Guttulate Foliage-gleaner,Syndactyla guttulata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13656,species,lifgle1,Lineated Foliage-gleaner,Syndactyla subalaris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13657.6,species,bbfgle1,Buff-browed Foliage-gleaner,Syndactyla rufosuperciliata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13658.8,species,rnfgle1,Rufous-necked Foliage-gleaner,Syndactyla ruficollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13659.4,species,rumfog1,Russet-mantled Foliage-gleaner,Syndactyla dimidiata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13660,species,wtfgle1,White-throated Foliage-gleaner,Syndactyla roraimae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13661.2,species,perrec1,Peruvian Recurvebill,Syndactyla ucayalae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13661.4,species,bolrec1,Bolivian Recurvebill,Syndactyla striata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13661.45,spuh,syndac1,Syndactyla sp.,Syndactyla sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13661.6,species,chwhoo1,Chestnut-winged Hookbill,Ancistrops strigilatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13662.2,species,ccfgle1,Chestnut-capped Foliage-gleaner,Clibanornis rectirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13662.4,species,cangro1,Canebrake Groundcreeper,Clibanornis dendrocolaptoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13662.6,species,hhfgle1,Henna-hooded Foliage-gleaner,Clibanornis erythrocephalus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13663.2,species,rufgle1,Ruddy Foliage-gleaner,Clibanornis rubiginosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13663.4,issf,rudfog1,Ruddy Foliage-gleaner (Rusty),Clibanornis rubiginosus [rubiginosus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 13663.46,issf,rudfog2,Ruddy Foliage-gleaner (Black-tailed),Clibanornis rubiginosus [nigricauda Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 13663.5,issf,rudfog3,Ruddy Foliage-gleaner (Cinnamon-throated),Clibanornis rubiginosus cinnamomeigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 13663.51,issf,rudfog4,Ruddy Foliage-gleaner (Dusky),Clibanornis rubiginosus [obscurus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 13663.57,issf,rudfog5,Ruddy Foliage-gleaner (Watkins's),Clibanornis rubiginosus watkinsi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 13663.6,species,samfog1,Santa Marta Foliage-gleaner,Clibanornis rufipectus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13663.7,species,unitre1,Uniform Treehunter,Thripadectes ignobilis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13663.8,species,flatre1,Flammulated Treehunter,Thripadectes flammulatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13664.4,species,rubtre1,Rufous-backed Treehunter,Thripadectes scrutator,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13664.6,species,strtre1,Striped Treehunter,Thripadectes holostictus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13665.4,species,stctre1,Streak-capped Treehunter,Thripadectes virgaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13666.8,species,stbtre1,Streak-breasted Treehunter,Thripadectes rufobrunneus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13667,species,blbtre1,Black-billed Treehunter,Thripadectes melanorhynchus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13667.6,species,ccfgle2,Chestnut-crowned Foliage-gleaner,Automolus rufipileatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13668.2,species,brfgle1,Brown-rumped Foliage-gleaner,Automolus melanopezus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13668.4,species,btfgle1,Buff-throated Foliage-gleaner,Automolus ochrolaemus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13668.6,issf,butfog1,Buff-throated Foliage-gleaner (Mexican),Automolus ochrolaemus cervinigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13669,issf,butfog2,Buff-throated Foliage-gleaner (amusos),Automolus ochrolaemus amusos,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13669.3,issf,butfog3,Buff-throated Foliage-gleaner (hypophaeus),Automolus ochrolaemus hypophaeus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13669.6,issf,butfog4,Buff-throated Foliage-gleaner (exsertus),Automolus ochrolaemus exsertus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13670,issf,butfog5,Buff-throated Foliage-gleaner (pallidigularis),Automolus ochrolaemus pallidigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13670.2,issf,butfog6,Buff-throated Foliage-gleaner (turdinus),Automolus ochrolaemus turdinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13670.4,issf,butfog7,Buff-throated Foliage-gleaner (ochrolaemus),Automolus ochrolaemus ochrolaemus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13670.6,issf,butfog8,Buff-throated Foliage-gleaner (auricularis),Automolus ochrolaemus auricularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 13672.4,species,strwoo1,Striped Woodhaunter,Automolus subulatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13673,issf,strwoo5,Striped Woodhaunter (Central American),Automolus subulatus [virgatus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,strwoo1 13673.2,issf,strwoo4,Striped Woodhaunter (Eastern South America),Automolus subulatus subulatus/lemae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,strwoo1 13674.4,species,obfgle3,Olive-backed Foliage-gleaner,Automolus infuscatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13674.6,issf,olbfog1,Olive-backed Foliage-gleaner (Olive-backed),Automolus infuscatus infuscatus/purusianus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,obfgle3 13675.2,issf,olbfog2,Olive-backed Foliage-gleaner (Olive-capped),Automolus infuscatus cervicalis/badius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,obfgle3 13675.8,species,parfog1,Para Foliage-gleaner,Automolus paraensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13676,species,perfog1,Pernambuco Foliage-gleaner,Automolus lammi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13676.2,species,wefgle1,White-eyed Foliage-gleaner,Automolus leucophthalmus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13676.4,spuh,automo1,Automolus sp.,Automolus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13676.6,spuh,foliag1,foliage-gleaner sp.,Furnariidae sp. (foliage-gleaner sp.),Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13676.8,species,spobar1,Spotted Barbtail,Premnoplex brunnescens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13678.6,species,whtbar1,White-throated Barbtail,Premnoplex tatei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13678.8,issf,whtbar2,White-throated Barbtail (White-throated),Premnoplex tatei tatei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whtbar1 13679,issf,whtbar3,White-throated Barbtail (Paria),Premnoplex tatei pariae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whtbar1 13679.2,species,beatre1,Beautiful Treerunner,Margarornis bellulus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13679.4,species,rudtre1,Ruddy Treerunner,Margarornis rubiginosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13680,species,fudtre1,Fulvous-dotted Treerunner,Margarornis stellatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13680.2,species,peatre1,Pearled Treerunner,Margarornis squamiger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13681,species,thtray1,Thorn-tailed Rayadito,Aphrastura spinicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13681.8,species,masray1,Masafuera Rayadito,Aphrastura masafuerae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13682,species,demwir1,Des Murs's Wiretail,Sylviorthorhynchus desmursii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13682.2,species,bctspi1,Brown-capped Tit-Spinetail,Leptasthenura fuliginiceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13682.8,species,tatspi1,Tawny Tit-Spinetail,Leptasthenura yanacensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13683,species,tutspi1,Tufted Tit-Spinetail,Leptasthenura platensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13683.2,species,pmtspi1,Plain-mantled Tit-Spinetail,Leptasthenura aegithaloides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13683.4,issf,plmtis3,Plain-mantled Tit-Spinetail (grisescens),Leptasthenura aegithaloides grisescens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 13683.6,issf,plmtis2,Plain-mantled Tit-Spinetail (berlepschi),Leptasthenura aegithaloides berlepschi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 13683.8,issf,plmtis1,Plain-mantled Tit-Spinetail (aegithaloides),Leptasthenura aegithaloides aegithaloides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 13684,issf,plmtis4,Plain-mantled Tit-Spinetail (pallida),Leptasthenura aegithaloides pallida,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 13684.2,species,sttspi2,Striolated Tit-Spinetail,Leptasthenura striolata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13684.4,species,rctspi1,Rusty-crowned Tit-Spinetail,Leptasthenura pileata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13685.2,species,wbtspi1,White-browed Tit-Spinetail,Leptasthenura xenothorax,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13685.4,species,sttspi1,Streaked Tit-Spinetail,Leptasthenura striata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13686.2,species,antspi1,Andean Tit-Spinetail,Leptasthenura andicola,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13687.4,species,artspi1,Araucaria Tit-Spinetail,Leptasthenura setaria,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13687.6,spuh,tit-sp1,tit-spinetail sp.,Leptasthenura sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13687.8,species,ruftho1,Rufous-fronted Thornbird,Phacellodomus rufifrons,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13688,issf,ruftho3,Rufous-fronted Thornbird (Plain),Phacellodomus rufifrons inornatus/castilloi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ruftho1 13688.5,issf,ruftho2,Rufous-fronted Thornbird (Rufous-fronted),Phacellodomus rufifrons [rufifrons Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ruftho1 13689.8,form,mantho1,Mantaro Thornbird (undescribed form),Phacellodomus [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13690,species,stftho1,Streak-fronted Thornbird,Phacellodomus striaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13690.6,species,littho1,Little Thornbird,Phacellodomus sibilatrix,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691,species,chbtho1,Chestnut-backed Thornbird,Phacellodomus dorsalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691.1,species,spbtho1,Spot-breasted Thornbird,Phacellodomus maculipectus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691.2,species,frbtho1,Freckle-breasted Thornbird,Phacellodomus striaticollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691.3,species,gretho2,Greater Thornbird,Phacellodomus ruber,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691.4,species,oretho1,Orange-eyed Thornbird,Phacellodomus erythrophthalmus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691.5,species,orbtho1,Orange-breasted Thornbird,Phacellodomus ferrugineigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691.8,slash,reetho1,Orange-eyed/Orange-breasted Thornbird,Phacellodomus erythrophthalmus/ferrugineigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13691.9,spuh,thornb2,thornbird sp.,Phacellodomus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13692,species,whbspi2,White-browed Spinetail,Hellmayrea gularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13692.2,issf,whbspi3,White-browed Spinetail (gularis),Hellmayrea gularis gularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 13692.4,issf,whbspi4,White-browed Spinetail (brunneidorsalis),Hellmayrea gularis brunneidorsalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 13692.6,issf,whbspi5,White-browed Spinetail (cinereiventris),Hellmayrea gularis cinereiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 13692.8,issf,whbspi6,White-browed Spinetail (rufiventris),Hellmayrea gularis rufiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 13693,species,firgat1,Firewood-gatherer,Anumbius annumbi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13693.2,species,lalbru1,Lark-like Brushrunner,Coryphistera alaudina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13693.8,species,crbcan1,Creamy-breasted Canastero,Asthenes dorbignyi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13694,issf,crbcan2,Creamy-breasted Canastero (Creamy-breasted),Asthenes dorbignyi dorbignyi/consobrina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,crbcan1 13694.6,issf,crbcan4,Creamy-breasted Canastero (Dark-winged),Asthenes dorbignyi arequipae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,crbcan1 13694.8,issf,crbcan3,Creamy-breasted Canastero (Pale-tailed),Asthenes dorbignyi huancavelicae/usheri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,crbcan1 13695.4,species,bercan1,Berlepsch's Canastero,Asthenes berlepschi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13695.6,species,shbcan1,Short-billed Canastero,Asthenes baeri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13696.2,species,cipcan1,Cipo Canastero,Asthenes luizae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13696.4,species,hudcan1,Hudson's Canastero,Asthenes hudsoni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13696.6,species,auscan1,Austral Canastero,Asthenes anthoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13696.8,species,lifcan1,Line-fronted Canastero,Asthenes urubambensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13697.4,species,mascan1,Many-striped Canastero,Asthenes flammulata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13698.6,species,juncan1,Junin Canastero,Asthenes virgata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13698.8,species,sctcan1,Scribble-tailed Canastero,Asthenes maculicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13699,species,stbcan1,Streak-backed Canastero,Asthenes wyatti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13700.6,species,puncan1,Puna Canastero,Asthenes sclateri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13701.6,species,sttcan1,Streak-throated Canastero,Asthenes humilis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13702.4,species,corcan1,Cordilleran Canastero,Asthenes modesta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13703.6,species,itaspi1,Itatiaia Spinetail,Asthenes moreirae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13703.8,species,shbcan2,Sharp-billed Canastero,Asthenes pyrrholeuca,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13704.8,species,bltthi1,Black-throated Thistletail,Asthenes harterti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13705,species,punthi1,Puna Thistletail,Asthenes helleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13705.4,species,vilthi3,Ayacucho Thistletail,Asthenes ayacuchensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13705.6,species,vilthi2,Vilcabamba Thistletail,Asthenes vilcabambae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13705.8,species,cancan1,Canyon Canastero,Asthenes pudibunda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13706.4,species,rufcan1,Rusty-fronted Canastero,Asthenes ottonis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13706.6,species,maqcan1,Maquis Canastero,Asthenes heterura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13706.8,species,eyrthi1,Eye-ringed Thistletail,Asthenes palpebralis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13707,species,ocbthi1,Ochre-browed Thistletail,Asthenes coryi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13707.2,species,perthi1,Perija Thistletail,Asthenes perijana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13707.4,species,whcthi1,White-chinned Thistletail,Asthenes fuliginosa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13708.4,species,mocthi1,Mouse-colored Thistletail,Asthenes griseomurina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13708.6,spuh,canast1,canastero sp.,Asthenes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13708.8,species,pilgra1,Pink-legged Graveteiro,Acrobatornis fonsecai,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13709,species,orfplu2,Orange-fronted Plushcrown,Metopothrix aurantiaca,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13709.2,species,dobgra1,Double-banded Graytail,Xenerpestes minlosi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13709.8,species,equgra1,Equatorial Graytail,Xenerpestes singularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13710,species,spepri1,Spectacled Prickletail,Siptornis striaticollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13710.2,species,rorbar1,Roraiman Barbtail,Roraimia adusta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13711,species,strsof1,Striated Softtail,Thripophaga macroura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13711.2,species,orisof1,Orinoco Softtail,Thripophaga cherriei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13711.4,species,deasof1,Delta Amacuro Softtail,Thripophaga amacurensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13711.6,species,plasof1,Plain Softtail,Thripophaga fusciceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13712.4,species,rumsof1,Russet-mantled Softtail,Thripophaga berlepschi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13712.5,spuh,softta1,softtail sp.,Thripophaga sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13712.6,species,stbree2,Straight-billed Reedhaunter,Limnoctites rectirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13712.8,slash,y00686,Curve-billed/Straight-billed Reedhaunter,Limnornis curvirostris/Limnoctites rectirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13713,species,marspi2,Marcapata Spinetail,Cranioleuca marcapatae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13713.2,issf,marspi1,Marcapata Spinetail (Pale-crowned),Cranioleuca marcapatae weskei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,marspi2 13713.4,issf,marspi4,Marcapata Spinetail (Rufous-crowned),Cranioleuca marcapatae marcapatae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,marspi2 13713.6,species,licspi1,Light-crowned Spinetail,Cranioleuca albiceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13713.8,issf,licspi3,Light-crowned Spinetail (White-crowned),Cranioleuca albiceps albiceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,licspi1 13714,issf,licspi4,Light-crowned Spinetail (Buffy-crowned),Cranioleuca albiceps discolor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,licspi1 13714.4,species,rubspi4,Rusty-backed Spinetail,Cranioleuca vulpina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13715.4,species,rubspi5,Coiba Spinetail,Cranioleuca dissita,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13715.6,species,parspi1,Parker's Spinetail,Cranioleuca vulpecula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13715.8,species,sutspi1,Sulphur-throated Spinetail,Cranioleuca sulphurifera,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13716,species,crespi1,Crested Spinetail,Cranioleuca subcristata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13716.6,species,stcspi2,Stripe-crowned Spinetail,Cranioleuca pyrrhophia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13717.4,species,bolspi1,Bolivian Spinetail,Cranioleuca henricae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13717.6,species,olispi1,Olive Spinetail,Cranioleuca obsoleta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13717.7,hybrid,x00740,Stripe-crowned x Olive Spinetail (hybrid),Cranioleuca pyrrhophia x obsoleta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13717.8,species,palspi1,Pallid Spinetail,Cranioleuca pallida,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13718,species,gyhspi1,Gray-headed Spinetail,Cranioleuca semicinerea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13718.6,species,crcspi1,Creamy-crested Spinetail,Cranioleuca albicapilla,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13719.2,species,refspi1,Red-faced Spinetail,Cranioleuca erythrops,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13720,species,tepspi1,Tepui Spinetail,Cranioleuca demissa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13720.2,species,stcspi1,Streak-capped Spinetail,Cranioleuca hellmayri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13720.4,species,asbspi1,Ash-browed Spinetail,Cranioleuca curtata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13721.2,species,licspi2,Line-cheeked Spinetail,Cranioleuca antisiensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13721.8,species,barspi1,Baron's Spinetail,Cranioleuca baroni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13722.6,species,spespi1,Speckled Spinetail,Cranioleuca gutturata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13722.8,species,scaspi1,Scaled Spinetail,Cranioleuca muelleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13723,spuh,cranio1,Cranioleuca sp.,Cranioleuca sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13723.2,species,dutcan1,Dusky-tailed Canastero,Pseudasthenes humicola,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13724,species,patcan2,Patagonian Canastero,Pseudasthenes patagonica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13724.2,species,stecan1,Steinbach's Canastero,Pseudasthenes steinbachi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13724.4,species,caccan1,Cactus Canastero,Pseudasthenes cactorum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13725,species,bcwspi1,Bay-capped Wren-Spinetail,Spartonoica maluroides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13725.2,species,caacac1,Caatinga Cacholote,Pseudoseisura cristata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13725.4,species,rufcac2,Rufous Cacholote,Pseudoseisura unirufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13725.6,species,brncac1,Brown Cacholote,Pseudoseisura lophotes,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13725.8,species,whtcac2,White-throated Cacholote,Pseudoseisura gutturalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13726.6,species,yecspi2,Yellow-chinned Spinetail,Certhiaxis cinnamomeus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13728.4,species,rawspi2,Red-and-white Spinetail,Certhiaxis mustelinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13728.45,slash,y00970,Yellow-chinned/Red-and-white Spinetail,Certhiaxis cinnamomeus/mustelinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13728.5,form,arrspi1,Araguaia River Spinetail (undescribed form),Certhiaxis [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13728.55,species,whbspi1,White-bellied Spinetail,Mazaria propinqua,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13728.57,species,chospi2,Chotoy Spinetail,Schoeniophylax phryganophilus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13728.6,species,occspi1,Ochre-cheeked Spinetail,Synallaxis scutata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13728.8,species,gybspi1,Gray-bellied Spinetail,Synallaxis cinerascens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13729,species,plcspi1,Plain-crowned Spinetail,Synallaxis gujanensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13729.1,species,whlspi1,White-lored Spinetail,Synallaxis albilora,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13729.2,issf,whlspi2,White-lored Spinetail (White-lored),Synallaxis albilora albilora,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whlspi1 13729.4,issf,whlspi3,White-lored Spinetail (Araguaia),Synallaxis albilora simoni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whlspi1 13729.5,species,marspi3,Mara–on Spinetail,Synallaxis maranonica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13729.6,species,grespi2,Great Spinetail,Synallaxis hypochondriaca,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13730.2,species,necspi1,Necklaced Spinetail,Synallaxis stictothorax,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13732.4,issf,necspi2,Necklaced Spinetail (Necklaced),Synallaxis stictothorax stictothorax/maculata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,necspi1 13732.6,issf,necspi3,Necklaced Spinetail (Chinchipe),Synallaxis stictothorax chinchipensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,necspi1 13732.8,species,rubspi3,Russet-bellied Spinetail,Synallaxis zimmeri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13733,species,slaspi1,Slaty Spinetail,Synallaxis brachyura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13735.8,species,sitspi1,Silvery-throated Spinetail,Synallaxis subpudica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13736,species,resspi2,Red-shouldered Spinetail,Synallaxis hellmayri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13736.6,species,rucspi1,Rufous-capped Spinetail,Synallaxis ruficapilla,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13736.8,species,bahspi1,Bahia Spinetail,Synallaxis cinerea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13737,species,pinspi1,Pinto's Spinetail,Synallaxis infuscata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13738.6,form,amaspi1,Amazonian Spinetail (undescribed form),Synallaxis [undescribed Amazonian form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13739.2,species,dusspi1,Dusky Spinetail,Synallaxis moesta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13739.4,species,mccspi1,McConnell's Spinetail,Synallaxis macconnelli,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13739.5,species,cabspi1,Cabanis's Spinetail,Synallaxis cabanisi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13739.6,species,cibspi1,Cinereous-breasted Spinetail,Synallaxis hypospodia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13739.8,species,spispi1,Spix's Spinetail,Synallaxis spixi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13740.2,species,dabspi1,Dark-breasted Spinetail,Synallaxis albigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13740.4,species,riospi1,Rio Orinoco Spinetail,Synallaxis beverlyae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13740.6,species,pabspi1,Pale-breasted Spinetail,Synallaxis albescens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13741.6,species,sofspi1,Sooty-fronted Spinetail,Synallaxis frontalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13742,species,azaspi1,Azara's Spinetail,Synallaxis azarae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13742.2,form,manspi1,Mantaro Spinetail (undescribed form),Synallaxis [undescribed Mantaro form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13743,species,apuspi1,Apurimac Spinetail,Synallaxis courseni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13743.6,slash,y00700,Azara's/Apurimac Spinetail,Synallaxis azarae/courseni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13743.7,species,hotspi1,Hoary-throated Spinetail,Synallaxis kollari,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13743.8,species,rubspi2,Rufous-breasted Spinetail,Synallaxis erythrothorax,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13745.2,species,whwspi1,White-whiskered Spinetail,Synallaxis candei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13745.4,species,blhspi1,Blackish-headed Spinetail,Synallaxis tithys,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13745.6,species,ruhspi1,Rusty-headed Spinetail,Synallaxis fuscorufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13745.8,species,rufspi1,Rufous Spinetail,Synallaxis unirufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13746.6,issf,rufspi2,Rufous Spinetail (unirufa),Synallaxis unirufa unirufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 13747.5,issf,rufspi3,Rufous Spinetail (munoztebari),Synallaxis unirufa munoztebari,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 13748.2,issf,rufspi4,Rufous Spinetail (meridana),Synallaxis unirufa meridana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 13748.4,issf,rufspi5,Rufous Spinetail (ochrogaster),Synallaxis unirufa ochrogaster,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 13750,species,bltspi1,Black-throated Spinetail,Synallaxis castanea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13750.2,species,stbspi1,Stripe-breasted Spinetail,Synallaxis cinnamomea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13750.4,species,rudspi1,Ruddy Spinetail,Synallaxis rutilans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13751,species,chtspi1,Chestnut-throated Spinetail,Synallaxis cherriei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13751.2,spuh,synall1,Synallaxis sp.,Synallaxis sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13751.4,spuh,spinet1,spinetail sp.,Furnariidae sp. (spinetail sp.),Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13751.8,spuh,furnar1,Furnariid sp.,Furnariidae sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, 13801,species,yebtyr1,Yellow-bellied Tyrannulet,Ornithion semiflavum,Passeriformes,Tyrannidae (Tyrant Flycatchers),"Tyrant Flycatchers: Elaenias, Tyrannulets, and Allies", 13802,species,brctyr,Brown-capped Tyrannulet,Ornithion brunneicapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13803,species,whltyr1,White-lored Tyrannulet,Ornithion inerme,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13804,species,nobtyr,Northern Beardless-Tyrannulet,Camptostoma imberbe,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13805,species,sobtyr1,Southern Beardless-Tyrannulet,Camptostoma obsoletum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13806,issf,soubet1,Southern Beardless-Tyrannulet (Northern),Camptostoma obsoletum [pusillum Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,sobtyr1 13814,issf,soubet2,Southern Beardless-Tyrannulet (Southern),Camptostoma obsoletum [obsoletum Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,sobtyr1 13821,species,suifly1,Suiriri Flycatcher,Suiriri suiriri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13825,species,chafly3,Chapada Flycatcher,Suiriri affinis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13825.2,slash,y00883,Suiriri/Chapada Flycatcher,Suiriri suiriri/affinis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13826,species,whttyr1,White-tailed Tyrannulet,Mecocerculus poecilocercus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13827,species,bubtyr1,Buff-banded Tyrannulet,Mecocerculus hellmayri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13828,species,whbtyr1,White-banded Tyrannulet,Mecocerculus stictopterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13832,species,whttyr2,White-throated Tyrannulet,Mecocerculus leucophrys,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13843,species,ruwtyr1,Rufous-winged Tyrannulet,Mecocerculus calopterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13844,species,subtyr1,Sulphur-bellied Tyrannulet,Mecocerculus minor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13845,species,bkctit1,Black-crested Tit-Tyrant,Anairetes nigrocristatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13846,species,pcttyr1,Pied-crested Tit-Tyrant,Anairetes reguloides,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13849,species,abttyr1,Ash-breasted Tit-Tyrant,Anairetes alpinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13852,species,ybttyr1,Yellow-billed Tit-Tyrant,Anairetes flavirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13857,species,tuttyr1,Tufted Tit-Tyrant,Anairetes parulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13861,species,jfttyr1,Juan Fernandez Tit-Tyrant,Anairetes fernandezianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13861.2,spuh,anaire1,Anairetes sp.,Anairetes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13862,species,agitit1,Agile Tit-Tyrant,Uromyias agilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13863,species,unstit1,Unstreaked Tit-Tyrant,Uromyias agraphia,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13867,species,moctyr1,Mouse-colored Tyrannulet,Phaeomyias murina,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13867.5,issf,moctyr7,Mouse-colored Tyrannulet (Northern),Phaeomyias murina incomta/eremonoma,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 13868,issf,moctyr3,Mouse-colored Tyrannulet (Amazonian),Phaeomyias murina murina/wagae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 13873,issf,moctyr6,Mouse-colored Tyrannulet (Tumbes),Phaeomyias murina tumbezana/inflava,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 13876,issf,moctyr4,Mouse-colored Tyrannulet (Mara–on),Phaeomyias murina maranonica,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 13877,species,cocfly1,Cocos Flycatcher,Nesotriccus ridgwayi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13878,species,yeltyr1,Yellow Tyrannulet,Capsiempis flaveola,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13884,species,beatac1,Bearded Tachuri,Polystictus pectoralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13888,species,gybtac1,Gray-backed Tachuri,Polystictus superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13889,species,credor1,Crested Doradito,Pseudocolopteryx sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13890,species,subdor1,Subtropical Doradito,Pseudocolopteryx acutipennis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13891,species,dindor2,Dinelli's Doradito,Pseudocolopteryx dinelliana,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13892,species,wardor1,Warbling Doradito,Pseudocolopteryx flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13892.5,species,ticdor1,Ticking Doradito,Pseudocolopteryx citreola,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13892.7,slash,y00660,Warbling/Ticking Doradito,Pseudocolopteryx flaviventris/citreola,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13892.8,spuh,doradi1,doradito sp.,Pseudocolopteryx sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13893,species,yectyr1,Yellow-crowned Tyrannulet,Tyrannulus elatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13894,species,forela1,Forest Elaenia,Myiopagis gaimardii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13900,species,graela2,Gray Elaenia,Myiopagis caniceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13900.2,issf,gryela1,Gray Elaenia (Choco),Myiopagis caniceps parambae/absita,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela2 13900.4,issf,gryela2,Gray Elaenia (Gray),Myiopagis caniceps cinerea,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela2 13900.6,issf,gryela3,Gray Elaenia (Gray-headed),Myiopagis caniceps caniceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela2 13905,species,fooela1,Foothill Elaenia,Myiopagis olallai,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13905.2,issf,fooela2,Foothill Elaenia (Perija),Myiopagis olallai incognita,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fooela1 13905.4,issf,fooela3,Foothill Elaenia (Antioquia),Myiopagis olallai coopmansi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fooela1 13905.6,issf,fooela4,Foothill Elaenia (Foothill),Myiopagis olallai olallai,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fooela1 13906,species,pacela1,Pacific Elaenia,Myiopagis subplacens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13907,species,yecela1,Yellow-crowned Elaenia,Myiopagis flavivertex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13908,species,jamela1,Jamaican Elaenia,Myiopagis cotta,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13909,species,greela,Greenish Elaenia,Myiopagis viridicata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13910,issf,greela2,Greenish Elaenia (West Mexico),Myiopagis viridicata minima/jaliscensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,greela 13913,issf,greela3,Greenish Elaenia (Greenish),Myiopagis viridicata [viridicata Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,greela 13921.5,spuh,myiopa1,elaenia sp. (genus Myiopagis),Myiopagis sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13922,species,carela1,Caribbean Elaenia,Elaenia martinica,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13923,issf,carela2,Caribbean Elaenia (Caribbean),Elaenia martinica [martinica Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,carela1 13927,issf,carela3,Caribbean Elaenia (Chinchorro),Elaenia martinica [cinerascens Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,carela1 13932,species,yebela1,Yellow-bellied Elaenia,Elaenia flavogaster,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13937,species,larela1,Large Elaenia,Elaenia spectabilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13938,species,norela1,Noronha Elaenia,Elaenia ridleyana,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13939,species,whcela1,White-crested Elaenia,Elaenia albiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13940,issf,whcela2,White-crested Elaenia (White-crested),Elaenia albiceps [albiceps Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,whcela1 13945,issf,whcela4,White-crested Elaenia (Chilean),Elaenia albiceps chilensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whcela1 13946,issf,whcela3,White-crested Elaenia (Peruvian),Elaenia albiceps modesta,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whcela1 13947,species,smbela1,Small-billed Elaenia,Elaenia parvirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13947.5,slash,y00739,White-crested/Small-billed Elaenia,Elaenia albiceps/parvirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13948,species,oliela1,Olivaceous Elaenia,Elaenia mesoleuca,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13949,species,slaela1,Slaty Elaenia,Elaenia strepera,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13950,species,mobela1,Mottle-backed Elaenia,Elaenia gigas,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13951,species,broela1,Brownish Elaenia,Elaenia pelzelni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13952,species,plcela1,Plain-crested Elaenia,Elaenia cristata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13955,species,lesela1,Lesser Elaenia,Elaenia chiriquensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13957,species,cooela1,Coopmans's Elaenia,Elaenia brachyptera,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13959,species,rucela1,Rufous-crowned Elaenia,Elaenia ruficeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13960,species,mouela1,Mountain Elaenia,Elaenia frantzii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13965,species,graela1,Greater Antillean Elaenia,Elaenia fallax,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13965.2,issf,graela3,Greater Antillean Elaenia (Jamaican),Elaenia fallax fallax,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela1 13965.4,issf,graela4,Greater Antillean Elaenia (Hispaniolan),Elaenia fallax cherriei,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela1 13968,species,higela1,Highland Elaenia,Elaenia obscura,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13968.2,issf,higela2,Highland Elaenia (Highland),Elaenia obscura obscura,Passeriformes,Tyrannidae (Tyrant Flycatchers),,higela1 13968.4,issf,higela3,Highland Elaenia (Brazilian),Elaenia obscura sordida,Passeriformes,Tyrannidae (Tyrant Flycatchers),,higela1 13971,species,greela1,Great Elaenia,Elaenia dayi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13975,species,sieela1,Sierran Elaenia,Elaenia pallatangae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13976,issf,sieela2,Sierran Elaenia (Roraiman),Elaenia pallatangae olivina/davidwillardi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sieela1 13978,issf,sieela3,Sierran Elaenia (Andean),Elaenia pallatangae [pallatangae Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,sieela1 13981,spuh,elaeni1,elaenia sp. (genus Elaenia),Elaenia sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13982,species,tortyr1,Torrent Tyrannulet,Serpophaga cinerea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13985,species,rivtyr1,River Tyrannulet,Serpophaga hypoleuca,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13989,species,sootyr1,Sooty Tyrannulet,Serpophaga nigricans,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13990,species,whctyr1,White-crested Tyrannulet,Serpophaga subcristata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13993,species,whbtyr2,White-bellied Tyrannulet,Serpophaga munda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13993.5,slash,y01036,White-crested/White-bellied Tyrannulet,Serpophaga subcristata/munda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13994,species,gyctyr2,Straneck's Tyrannulet,Serpophaga griseicapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13994.1,slash,y00884,White-crested/Straneck's Tyrannulet,Serpophaga subcristata/griseicapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13994.2,spuh,serpop1,Serpophaga sp.,Serpophaga sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 13995,species,stnfly1,Streak-necked Flycatcher,Mionectes striaticollis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14000,species,olsfly1,Olive-striped Flycatcher,Mionectes olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14000.2,issf,olsfly2,Olive-striped Flycatcher (Olive-streaked),Mionectes olivaceus olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,olsfly1 14000.4,issf,olsfly3,Olive-striped Flycatcher (Olive-striped),Mionectes olivaceus [galbinus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,olsfly1 14005.5,slash,y00796,Streak-necked/Olive-striped Flycatcher,Mionectes striaticollis/olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14006,species,ocbfly1,Ochre-bellied Flycatcher,Mionectes oleagineus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14014,species,mccfly1,McConnell's Flycatcher,Mionectes macconnelli,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14015,issf,mccfly2,McConnell's Flycatcher (Guianan),Mionectes macconnelli macconnelli,Passeriformes,Tyrannidae (Tyrant Flycatchers),,mccfly1 14016,issf,mccfly3,McConnell's Flycatcher (Sierra de Lema),Mionectes macconnelli roraimae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,mccfly1 14017,issf,mccfly4,McConnell's Flycatcher (Inambari),Mionectes macconnelli amazonus/peruanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,mccfly1 14017.5,slash,y00797,Ochre-bellied/McConnell's Flycatcher,Mionectes oleagineus/macconnelli,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14018,species,gyhfly1,Gray-hooded Flycatcher,Mionectes rufiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14018.2,spuh,mionec1,Mionectes sp.,Mionectes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14019,species,secfly1,Sepia-capped Flycatcher,Leptopogon amaurocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14026,species,slcfly1,Slaty-capped Flycatcher,Leptopogon superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14026.2,issf,slcfly4,Slaty-capped Flycatcher (transandinus),Leptopogon superciliaris transandinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,slcfly1 14027,issf,slcfly2,Slaty-capped Flycatcher (superciliaris),Leptopogon superciliaris superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,slcfly1 14028,issf,slcfly3,Slaty-capped Flycatcher (albidiventris),Leptopogon superciliaris albidiventer,Passeriformes,Tyrannidae (Tyrant Flycatchers),,slcfly1 14029,species,rubfly2,Rufous-breasted Flycatcher,Leptopogon rufipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14030,species,incfly1,Inca Flycatcher,Leptopogon taczanowskii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14031,species,vabtyr1,Variegated Bristle-Tyrant,Phylloscartes poecilotis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14032,species,chabrt1,Chapman's Bristle-Tyrant,Phylloscartes chapmani,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14035,species,mfbtyr1,Marble-faced Bristle-Tyrant,Phylloscartes ophthalmicus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14039,species,vebtyr2,Venezuelan Bristle-Tyrant,Phylloscartes venezuelanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14040,species,anbtyr1,Antioquia Bristle-Tyrant,Phylloscartes lanyoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14041,species,spbtyr1,Spectacled Bristle-Tyrant,Phylloscartes orbitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14042,species,sobtyr2,Southern Bristle-Tyrant,Phylloscartes eximius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14043,species,moctyr2,Mottle-cheeked Tyrannulet,Phylloscartes ventralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14047,species,restyr1,Restinga Tyrannulet,Phylloscartes kronei,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14048,species,bahtyr1,Bahia Tyrannulet,Phylloscartes beckeri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14049,species,yegtyr1,Yellow-green Tyrannulet,Phylloscartes flavovirens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14050,species,olgtyr1,Olive-green Tyrannulet,Phylloscartes virescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14051,species,ecutyr1,Ecuadorian Tyrannulet,Phylloscartes gualaquizae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14052,species,blftyr1,Black-fronted Tyrannulet,Phylloscartes nigrifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14053,species,rubtyr1,Rufous-browed Tyrannulet,Phylloscartes superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14057,species,alatyr1,Alagoas Tyrannulet,Phylloscartes ceciliae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14058,species,rultyr1,Rufous-lored Tyrannulet,Phylloscartes flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14059,species,ciftyr1,Cinnamon-faced Tyrannulet,Phylloscartes parkeri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14060,species,migtyr1,Minas Gerais Tyrannulet,Phylloscartes roquettei,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14061,species,saptyr1,Sao Paulo Tyrannulet,Phylloscartes paulista,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14062,species,oustyr1,Oustalet's Tyrannulet,Phylloscartes oustaleti,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14063,species,sdmtyr2,Serra do Mar Tyrannulet,Phylloscartes difficilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14064,species,bartyr1,Bay-ringed Tyrannulet,Phylloscartes sylviolus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14065,spuh,phyllo2,Phylloscartes sp.,Phylloscartes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14066,species,roltyr1,Rough-legged Tyrannulet,Phyllomyias burmeisteri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14067,issf,roltyr2,Rough-legged Tyrannulet (Zeledon's),Phyllomyias burmeisteri zeledoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),,roltyr1 14068,issf,roltyr4,Rough-legged Tyrannulet (White-fronted),Phyllomyias burmeisteri [leucogonys Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,roltyr1 14072,issf,roltyr3,Rough-legged Tyrannulet (Burmeister's),Phyllomyias burmeisteri burmeisteri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,roltyr1 14073,species,gretyr1,Greenish Tyrannulet,Phyllomyias virescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14074,species,reityr1,Reiser's Tyrannulet,Phyllomyias reiseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14075,species,urityr1,Urich's Tyrannulet,Phyllomyias urichi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14076,species,scltyr1,Sclater's Tyrannulet,Phyllomyias sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14079,species,platyr2,Planalto Tyrannulet,Phyllomyias fasciatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14083,species,yuntyr1,Yungas Tyrannulet,Phyllomyias weedeni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14084,species,sohtyr1,Sooty-headed Tyrannulet,Phyllomyias griseiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14085,species,blctyr1,Black-capped Tyrannulet,Phyllomyias nigrocapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14089,species,ashtyr1,Ashy-headed Tyrannulet,Phyllomyias cinereiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14090,species,tartyr1,Tawny-rumped Tyrannulet,Phyllomyias uropygialis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14091,species,plctyr1,Plumbeous-crowned Tyrannulet,Phyllomyias plumbeiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14092,species,gyctyr1,Gray-capped Tyrannulet,Phyllomyias griseocapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14093,spuh,phyllo3,Phyllomyias sp.,Phyllomyias sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14094,species,paltyr1,Paltry Tyrannulet,Zimmerius vilissimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14095,issf,paltyr2,Paltry Tyrannulet (Paltry),Zimmerius vilissimus vilissimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,paltyr1 14096,issf,paltyr3,Paltry Tyrannulet (Mistletoe),Zimmerius vilissimus parvus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,paltyr1 14097,issf,paltyr4,Paltry Tyrannulet (Mountain),Zimmerius vilissimus improbus/tamae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,paltyr1 14100,issf,paltyr5,Paltry Tyrannulet (Venezuelan),Zimmerius vilissimus petersi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,paltyr1 14101,species,chotyr1,Choco Tyrannulet,Zimmerius albigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14102,species,boltyr1,Bolivian Tyrannulet,Zimmerius bolivianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14103,species,rebtyr2,Red-billed Tyrannulet,Zimmerius cinereicapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14104,species,mistyr1,Mishana Tyrannulet,Zimmerius villarejoi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14104.5,species,chityr1,Chico's Tyrannulet,Zimmerius chicomendesi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14105,species,slftyr1,Slender-footed Tyrannulet,Zimmerius gracilipes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14108,species,guityr1,Guianan Tyrannulet,Zimmerius acer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14109,species,goftyr1,Golden-faced Tyrannulet,Zimmerius chrysops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14109.7,issf,goftyr5,Golden-faced Tyrannulet (Coopmans's),Zimmerius chrysops minimus/cumanensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,goftyr1 14112,issf,goftyr3,Golden-faced Tyrannulet (Golden-faced),Zimmerius chrysops chrysops,Passeriformes,Tyrannidae (Tyrant Flycatchers),,goftyr1 14113,issf,goftyr4,Golden-faced Tyrannulet (Loja),Zimmerius chrysops flavidifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),,goftyr1 14114,species,pertyr1,Peruvian Tyrannulet,Zimmerius viridiflavus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14114.5,form,goftyr2,Peruvian Tyrannulet (Amazonas) (undescribed form),Zimmerius viridiflavus [undescribed form],Passeriformes,Tyrannidae (Tyrant Flycatchers),,pertyr1 14115,spuh,zimmer1,Zimmerius sp.,Zimmerius sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14116,species,nosfly1,Northern Scrub-Flycatcher,Sublegatus arenarum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14123,species,amsfly1,Amazonian Scrub-Flycatcher,Sublegatus obscurior,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14124,species,sosfly1,Southern Scrub-Flycatcher,Sublegatus modestus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14124.2,spuh,scrub-2,scrub-flycatcher sp.,Sublegatus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14127,species,slbtyr1,Slender-billed Tyrannulet,Inezia tenuirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14128,species,platyr1,Plain Tyrannulet,Inezia inornata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14129,species,amatyr1,Amazonian Tyrannulet,Inezia subflava,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14132,species,pattyr3,Pale-tipped Tyrannulet,Inezia caudata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14135,species,ornfly1,Ornate Flycatcher,Myiotriccus ornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14135.2,issf,ornfly2,Ornate Flycatcher (Western),Myiotriccus ornatus ornatus/stellatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ornfly1 14135.4,issf,ornfly3,Ornate Flycatcher (Eastern),Myiotriccus ornatus phoenicurus/aureiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ornfly1 14140,species,mcrtyr1,Many-colored Rush Tyrant,Tachuris rubrigastra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14145,species,shttyr1,Sharp-tailed Tyrant,Culicivora caudacuta,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14146,species,boptyr1,Bronze-olive Pygmy-Tyrant,Pseudotriccus pelzelni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14146.2,issf,bropyt1,Bronze-olive Pygmy-Tyrant (annectens/berlepschi),Pseudotriccus pelzelni annectens/berlepschi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,boptyr1 14146.4,issf,bropyt2,Bronze-olive Pygmy-Tyrant (pelzelni/peruvianus),Pseudotriccus pelzelni pelzelni/peruvianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,boptyr1 14151,species,hfptyr1,Hazel-fronted Pygmy-Tyrant,Pseudotriccus simplex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14152,species,rhptyr1,Rufous-headed Pygmy-Tyrant,Pseudotriccus ruficeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14153,species,rinant2,Ringed Antpipit,Corythopis torquatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14157,species,souant1,Southern Antpipit,Corythopis delalandi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14158,species,tcptyr1,Tawny-crowned Pygmy-Tyrant,Euscarthmus meloryphus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14158.2,issf,tacpyt1,Tawny-crowned Pygmy-Tyrant (Tawny-crowned),Euscarthmus meloryphus meloryphus/paulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tcptyr1 14158.4,issf,tacpyt2,Tawny-crowned Pygmy-Tyrant (Tawny-fronted),Euscarthmus meloryphus fulviceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tcptyr1 14162,species,rsptyr1,Rufous-sided Pygmy-Tyrant,Euscarthmus rufomarginatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14163,species,gawtyr2,Gray-and-white Tyrannulet,Pseudelaenia leucospodia,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14164,species,lewtyr1,Lesser Wagtail-Tyrant,Stigmatura napensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14164.3,issf,leswat1,Lesser Wagtail-Tyrant (Lesser),Stigmatura napensis napensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,lewtyr1 14164.7,issf,leswat2,Lesser Wagtail-Tyrant (Bahia),Stigmatura napensis bahiae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,lewtyr1 14165,form,oriwat1,Orinoco Wagtail-Tyrant (undescribed form),Stigmatura [undescribed form],Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14167,species,grwtyr1,Greater Wagtail-Tyrant,Stigmatura budytoides,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14167.5,issf,grewat1,Greater Wagtail-Tyrant (Greater),Stigmatura budytoides [budytoides Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,grwtyr1 14171,issf,grewat2,Greater Wagtail-Tyrant (Caatinga),Stigmatura budytoides gracilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,grwtyr1 14172,species,eaptyr1,Eared Pygmy-Tyrant,Myiornis auricularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14174.5,form,mappyt1,Maranhao-Piaui Pygmy-Tyrant (undescribed form),Myiornis [undescribed form],Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14175,species,wbptyr1,White-bellied Pygmy-Tyrant,Myiornis albiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14176,species,bcptyr1,Black-capped Pygmy-Tyrant,Myiornis atricapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14177,species,stptyr1,Short-tailed Pygmy-Tyrant,Myiornis ecaudatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14180,species,scptyr1,Scale-crested Pygmy-Tyrant,Lophotriccus pileatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14186,species,dbptyr1,Double-banded Pygmy-Tyrant,Lophotriccus vitiosus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14191,species,lcptyr1,Long-crested Pygmy-Tyrant,Lophotriccus eulophotes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14192,species,heptyr1,Helmeted Pygmy-Tyrant,Lophotriccus galeatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14192.2,spuh,lophot1,Lophotriccus sp.,Lophotriccus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14193,species,peptyr1,Pale-eyed Pygmy-Tyrant,Atalotriccus pilaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14198,species,norben1,Northern Bentbill,Oncostoma cinereigulare,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14199,species,souben1,Southern Bentbill,Oncostoma olivaceum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14200,species,snttyr1,Snethlage's Tody-Tyrant,Hemitriccus minor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14204,species,yuttyr1,Yungas Tody-Tyrant,Hemitriccus spodiops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14204.5,species,acrtot1,Acre Tody-Tyrant,Hemitriccus cohnhafti,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14205,species,flapyt1,Flammulated Pygmy-Tyrant,Hemitriccus flammulatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14208,species,drbpyt1,Drab-breasted Pygmy-Tyrant,Hemitriccus diops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14209,species,bnbpyt1,Brown-breasted Pygmy-Tyrant,Hemitriccus obsoletus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14212,species,bbttyr1,Boat-billed Tody-Tyrant,Hemitriccus josephinae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14213,species,wettyr1,White-eyed Tody-Tyrant,Hemitriccus zosterops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14216,species,whbtot1,White-bellied Tody-Tyrant,Hemitriccus griseipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14218,species,erttyr1,Eye-ringed Tody-Tyrant,Hemitriccus orbitatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14219,species,jottyr1,Johannes's Tody-Tyrant,Hemitriccus iohannis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14220,species,snttyr2,Stripe-necked Tody-Tyrant,Hemitriccus striaticollis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14223,species,hattyr1,Hangnest Tody-Tyrant,Hemitriccus nidipendulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14226,species,pvttyr1,Pearly-vented Tody-Tyrant,Hemitriccus margaritaceiventer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14236,species,pettyr1,Pelzeln's Tody-Tyrant,Hemitriccus inornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14237,species,zittyr1,Zimmer's Tody-Tyrant,Hemitriccus minimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14238,species,btttyr1,Black-throated Tody-Tyrant,Hemitriccus granadensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14246,species,cbttyr1,Cinnamon-breasted Tody-Tyrant,Hemitriccus cinnamomeipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14247,species,bbttyr2,Buff-breasted Tody-Tyrant,Hemitriccus mirandae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14248,species,kattyr1,Kaempfer's Tody-Tyrant,Hemitriccus kaempferi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14249,species,btttyr2,Buff-throated Tody-Tyrant,Hemitriccus rufigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14250,species,fotpyt1,Fork-tailed Pygmy-Tyrant,Hemitriccus furcatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14250.2,spuh,hemitr1,Hemitriccus sp.,Hemitriccus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14251,species,rcttyr1,Rufous-crowned Tody-Flycatcher,Poecilotriccus ruficeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14256,species,johtot1,Johnson's Tody-Flycatcher,Poecilotriccus luluae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14257,species,wcttyr1,White-cheeked Tody-Flycatcher,Poecilotriccus albifacies,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14258,species,bawtyr1,Black-and-white Tody-Flycatcher,Poecilotriccus capitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14259,species,buctof1,Buff-cheeked Tody-Flycatcher,Poecilotriccus senex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14260,species,rudtof1,Ruddy Tody-Flycatcher,Poecilotriccus russatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14261,species,ocftof1,Ochre-faced Tody-Flycatcher,Poecilotriccus plumbeiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14266,species,smftof1,Smoky-fronted Tody-Flycatcher,Poecilotriccus fumifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14269,species,ruftof1,Rusty-fronted Tody-Flycatcher,Poecilotriccus latirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14277,species,shtfly1,Slate-headed Tody-Flycatcher,Poecilotriccus sylvia,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14283,species,gowtof1,Golden-winged Tody-Flycatcher,Poecilotriccus calopterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14284,species,bkbtof1,Black-backed Tody-Flycatcher,Poecilotriccus pulchellus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14284.2,spuh,poecil1,Poecilotriccus sp.,Poecilotriccus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14285,species,blctyr2,Black-chested Tyrant,Taeniotriccus andrei,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14288,species,sptfly1,Spotted Tody-Flycatcher,Todirostrum maculatum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14294,species,gyhtof1,Gray-headed Tody-Flycatcher,Todirostrum poliocephalum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14295,species,cotfly1,Common Tody-Flycatcher,Todirostrum cinereum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14304,species,matfly1,Maracaibo Tody-Flycatcher,Todirostrum viridanum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14305,species,bhtfly1,Black-headed Tody-Flycatcher,Todirostrum nigriceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14306,species,patfly1,Painted Tody-Flycatcher,Todirostrum pictum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14307,species,ybtfly1,Yellow-browed Tody-Flycatcher,Todirostrum chrysocrotaphum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14307.2,spuh,todiro1,Todirostrum sp.,Todirostrum sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14313,species,brofly1,Brownish Twistwing,Cnipodectes subbrunneus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14316,species,ruftwi1,Rufous Twistwing,Cnipodectes superrufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14317,species,eyrfla1,Eye-ringed Flatbill,Rhynchocyclus brevirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14321,species,olifla1,Olivaceous Flatbill,Rhynchocyclus olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14321.2,issf,olifla2,Olivaceous Flatbill (Western),Rhynchocyclus olivaceus [aequinoctialis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,olifla1 14321.4,issf,olifla3,Olivaceous Flatbill (Eastern),Rhynchocyclus olivaceus [olivaceus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,olifla1 14331,species,pacfla1,Pacific Flatbill,Rhynchocyclus pacificus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14332,species,fubfla1,Fulvous-breasted Flatbill,Rhynchocyclus fulvipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14333,spuh,flatbi1,flatbill sp.,Rhynchocyclus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14334,species,yeofly1,Yellow-olive Flycatcher,Tolmomyias sulphurescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14335,issf,yeofly6,Yellow-olive Flycatcher (Gray-headed),Tolmomyias sulphurescens cinereiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14336,issf,yeofly7,Yellow-olive Flycatcher (Yellow-olive),Tolmomyias sulphurescens flavoolivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14337,issf,yeofly8,Yellow-olive Flycatcher (asemus),Tolmomyias sulphurescens asemus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14338,issf,yeofly9,Yellow-olive Flycatcher (confusus),Tolmomyias sulphurescens confusus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14339,issf,yeofly10,Yellow-olive Flycatcher (Santa Marta),Tolmomyias sulphurescens exortivus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14340,issf,yeofly11,Yellow-olive Flycatcher (Trinidad),Tolmomyias sulphurescens berlepschi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14341,issf,yeofly12,Yellow-olive Flycatcher (Guianan),Tolmomyias sulphurescens cherriei/duidae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14344,issf,yeofly2,Yellow-olive Flycatcher (Equatorial),Tolmomyias sulphurescens aequatorialis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14345,issf,yeofly4,Yellow-olive Flycatcher (Andes),Tolmomyias sulphurescens peruvianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14346,issf,yeofly3,Yellow-olive Flycatcher (Riverine),Tolmomyias sulphurescens insignis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14347,issf,yeofly13,Yellow-olive Flycatcher (Para),Tolmomyias sulphurescens mixtus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14348,issf,yeofly14,Yellow-olive Flycatcher (inornatus),Tolmomyias sulphurescens inornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14349,issf,yeofly5,Yellow-olive Flycatcher (Mato Grosso),Tolmomyias sulphurescens pallescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14350,issf,yeofly15,Yellow-olive Flycatcher (grisescens),Tolmomyias sulphurescens grisescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14351,issf,yeofly16,Yellow-olive Flycatcher (Sooretama),Tolmomyias sulphurescens sulphurescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 14352,species,orefly1,Orange-eyed Flycatcher,Tolmomyias traylori,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14353,species,yemfly1,Yellow-margined Flycatcher,Tolmomyias assimilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14354,issf,yemfly2,Yellow-margined Flycatcher (Yellow-margined),Tolmomyias assimilis flavotectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 14355,issf,yemfly3,Yellow-margined Flycatcher (Zimmer's),Tolmomyias assimilis [assimilis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 14362.5,issf,sucfly1,Yellow-margined Flycatcher (Sucunduri),Tolmomyias assimilis sucunduri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 14363,species,gycfly1,Gray-crowned Flycatcher,Tolmomyias poliocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14367,species,yebfly1,Yellow-breasted Flycatcher,Tolmomyias flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14368,issf,yebfly3,Yellow-breasted Flycatcher (Ochre-lored),Tolmomyias flaviventris [flaviventris Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,yebfly1 14372,issf,yebfly4,Yellow-breasted Flycatcher (Olive-faced),Tolmomyias flaviventris [viridiceps Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,yebfly1 14376,spuh,tolmom1,Tolmomyias sp.,Tolmomyias sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14376.3,species,cinmat1,Cinnamon Manakin-Tyrant,Neopipo cinnamomea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14376.6,species,kincal1,Kinglet Calyptura,Calyptura cristata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14377,species,cicspa1,Cinnamon-crested Spadebill,Platyrinchus saturatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14380,species,sttspa1,Stub-tailed Spadebill,Platyrinchus cancrominus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14381,species,whtspa1,White-throated Spadebill,Platyrinchus mystaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14381.2,issf,whtspa2,White-throated Spadebill (Western),Platyrinchus mystaceus [albogularis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,whtspa1 14381.4,issf,whtspa3,White-throated Spadebill (Eastern),Platyrinchus mystaceus [mystaceus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,whtspa1 14396,species,gocspa1,Golden-crowned Spadebill,Platyrinchus coronatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14400,species,yetspa1,Yellow-throated Spadebill,Platyrinchus flavigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14403,species,whcspa1,White-crested Spadebill,Platyrinchus platyrhynchos,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14408,species,ruwspa1,Russet-winged Spadebill,Platyrinchus leucoryphus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14408.2,spuh,spadeb1,spadebill sp.,Platyrinchus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14409,species,royfly1,Royal Flycatcher,Onychorhynchus coronatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),"Tyrant Flycatchers: Royal Flycatcher, Myiobius, and Others", 14410,issf,royfly2,Royal Flycatcher (Northern),Onychorhynchus coronatus mexicanus/fraterculus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,royfly1 14413,issf,royfly3,Royal Flycatcher (Pacific),Onychorhynchus coronatus occidentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,royfly1 14414,issf,royfly4,Royal Flycatcher (Amazonian),Onychorhynchus coronatus coronatus/castelnaui,Passeriformes,Tyrannidae (Tyrant Flycatchers),,royfly1 14417,issf,royfly5,Royal Flycatcher (Swainson's),Onychorhynchus coronatus swainsoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),,royfly1 14418,species,rutfly2,Ruddy-tailed Flycatcher,Terenotriccus erythrurus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14430,species,cinfly2,Cinnamon Flycatcher,Pyrrhomyias cinnamomeus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14437,species,clifly1,Cliff Flycatcher,Hirundinea ferruginea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14437.2,issf,clifly2,Cliff Flycatcher (Cliff),Hirundinea ferruginea ferruginea/sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,clifly1 14437.4,issf,clifly3,Cliff Flycatcher (Swallow),Hirundinea ferruginea bellicosa/pallidior,Passeriformes,Tyrannidae (Tyrant Flycatchers),,clifly1 14438,species,hanfly1,Handsome Flycatcher,Nephelomyias pulcher,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14439,species,orbfly1,Orange-banded Flycatcher,Nephelomyias lintoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14440,species,ocbfly2,Ochraceous-breasted Flycatcher,Nephelomyias ochraceiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14442,species,tabfly1,Tawny-breasted Flycatcher,Myiobius villosus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14447,species,surfly1,Sulphur-rumped Flycatcher,Myiobius sulphureipygius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14450,species,whifly1,Whiskered Flycatcher,Myiobius barbatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14451,issf,surfly4,Whiskered Flycatcher (Whiskered),Myiobius barbatus [barbatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,whifly1 14456,issf,surfly5,Whiskered Flycatcher (Yellow-rumped),Myiobius barbatus mastacalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whifly1 14457,species,bltfly1,Black-tailed Flycatcher,Myiobius atricaudus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14458,issf,bktfly1,Black-tailed Flycatcher (Black-tailed),Myiobius atricaudus [atricaudus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,bltfly1 14465,issf,bktfly2,Black-tailed Flycatcher (Buff-rumped),Myiobius atricaudus ridgwayi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bltfly1 14465.2,slash,y01037,Sulphur-rumped/Black-tailed Flycatcher,Myiobius sulphureipygius/atricaudus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14465.4,slash,y01038,Whiskered/Black-tailed Flycatcher,Myiobius barbatus/atricaudus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14465.5,spuh,myiobi1,Myiobius sp.,Myiobius sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14466,species,flafly2,Flavescent Flycatcher,Myiophobus flavicans,Passeriformes,Tyrannidae (Tyrant Flycatchers),"Tyrant Flycatchers: Pewees, Kingbirds, and Allies", 14472,species,orcfly1,Orange-crested Flycatcher,Myiophobus phoenicomitra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14475,species,unafly1,Unadorned Flycatcher,Myiophobus inornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14476,species,rorfly1,Roraiman Flycatcher,Myiophobus roraimae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14486,species,olcfly1,Olive-chested Flycatcher,Myiophobus cryptoxanthus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14487,species,brcfly1,Bran-colored Flycatcher,Myiophobus fasciatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14488,issf,brcfly2,Bran-colored Flycatcher (Bran-colored),Myiophobus fasciatus [fasciatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,brcfly1 14495,issf,brcfly3,Bran-colored Flycatcher (Rufescent),Myiophobus fasciatus rufescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,brcfly1 14495.2,spuh,myioph1,Myiophobus sp.,Myiophobus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14496,species,eulfly1,Euler's Flycatcher,Lathrotriccus euleri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14497,issf,eulfly2,Euler's Flycatcher (Lawrence's),Lathrotriccus euleri [flaviventris Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,eulfly1 14501,issf,eulfly3,Euler's Flycatcher (Euler's),Lathrotriccus euleri euleri/argentinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,eulfly1 14504,species,gybfly1,Gray-breasted Flycatcher,Lathrotriccus griseipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14505,species,tacfly1,Tawny-chested Flycatcher,Aphanotriccus capitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14506,species,blbfly1,Black-billed Flycatcher,Aphanotriccus audax,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14507,species,belfly1,Belted Flycatcher,Xenotriccus callizonus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14508,species,pilfly1,Pileated Flycatcher,Xenotriccus mexicanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14509,species,tuffly,Tufted Flycatcher,Mitrephanes phaeocercus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14510,issf,tuffly1,Tufted Flycatcher (Mexican),Mitrephanes phaeocercus phaeocercus/tenuirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tuffly 14513,issf,tuffly2,Tufted Flycatcher (Costa Rican),Mitrephanes phaeocercus aurantiiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tuffly 14514,issf,tuffly3,Tufted Flycatcher (South American),Mitrephanes phaeocercus berlepschi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tuffly 14515,species,olifly2,Olive Flycatcher,Mitrephanes olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14516,species,olsfly,Olive-sided Flycatcher,Contopus cooperi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14517,species,grepew,Greater Pewee,Contopus pertinax,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14517.2,issf,grepew1,Greater Pewee (Mexican),Contopus pertinax pertinax,Passeriformes,Tyrannidae (Tyrant Flycatchers),,grepew 14517.4,issf,grepew2,Greater Pewee (Central American),Contopus pertinax minor,Passeriformes,Tyrannidae (Tyrant Flycatchers),,grepew 14520,species,darpew1,Dark Pewee,Contopus lugubris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14521,species,smcpew1,Smoke-colored Pewee,Contopus fumigatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14528,species,ochpew1,Ochraceous Pewee,Contopus ochraceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14529,species,wewpew,Western Wood-Pewee,Contopus sordidulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14534,species,eawpew,Eastern Wood-Pewee,Contopus virens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14534.5,hybrid,x00858,Western x Eastern Wood-Pewee (hybrid),Contopus sordidulus x virens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14535,slash,woopew,Western/Eastern Wood-Pewee,Contopus sordidulus/virens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14536,species,tropew1,Tropical Pewee,Contopus cinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14537,issf,tropew4,Tropical Pewee (Short-legged),Contopus cinereus [brachytarsus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,tropew1 14541,issf,tropew3,Tropical Pewee (Tropical),Contopus cinereus [cinereus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,tropew1 14546,issf,tropew2,Tropical Pewee (Tumbes),Contopus cinereus punensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tropew1 14547,species,cubpew1,Cuban Pewee,Contopus caribaeus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14552,species,jampew1,Jamaican Pewee,Contopus pallidus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14553,species,hispew1,Hispaniolan Pewee,Contopus hispaniolensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14556,species,leapew1,Lesser Antillean Pewee,Contopus latirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14557,issf,leapew2,Lesser Antillean Pewee (Lesser Antilles),Contopus latirostris brunneicapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,leapew1 14558,issf,leapew3,Lesser Antillean Pewee (Puerto Rico),Contopus latirostris blancoi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,leapew1 14559,issf,leapew4,Lesser Antillean Pewee (St. Lucia),Contopus latirostris latirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,leapew1 14560,species,whtpew1,White-throated Pewee,Contopus albogularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14561,species,blapew1,Blackish Pewee,Contopus nigrescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14564,spuh,pewee1,pewee sp. (Contopus sp.),Contopus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14565,species,fusfly1,Fuscous Flycatcher,Cnemotriccus fuscatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14566,issf,fusfly3,Fuscous Flycatcher (Campina),Cnemotriccus fuscatus duidae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fusfly1 14566.5,issf,fusfly2,Fuscous Flycatcher (Fuscous),Cnemotriccus fuscatus [fuscatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,fusfly1 14573,species,yebfly,Yellow-bellied Flycatcher,Empidonax flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14574,species,acafly,Acadian Flycatcher,Empidonax virescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14575,species,aldfly,Alder Flycatcher,Empidonax alnorum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14576,species,wilfly,Willow Flycatcher,Empidonax traillii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14577,issf,wilfly1,Willow Flycatcher (Eastern),Empidonax traillii traillii,Passeriformes,Tyrannidae (Tyrant Flycatchers),,wilfly 14579,issf,wilfly2,Willow Flycatcher (Northwestern),Empidonax traillii brewsteri/adastus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,wilfly 14582,issf,wilfly3,Willow Flycatcher (Southwestern),Empidonax traillii extimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,wilfly 14583,slash,y00324,Alder/Willow Flycatcher (Traill's Flycatcher),Empidonax alnorum/traillii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14584,species,whtfly1,White-throated Flycatcher,Empidonax albigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14588,species,leafly,Least Flycatcher,Empidonax minimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14589,species,hamfly,Hammond's Flycatcher,Empidonax hammondii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14590,species,gryfly,Gray Flycatcher,Empidonax wrightii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14591,species,dusfly,Dusky Flycatcher,Empidonax oberholseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14592,slash,y00618,Gray/Dusky Flycatcher,Empidonax wrightii/oberholseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14593,slash,y00014,Hammond's/Dusky Flycatcher,Empidonax hammondii/oberholseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14594,species,pinfly1,Pine Flycatcher,Empidonax affinis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14600,species,pasfly,Pacific-slope Flycatcher,Empidonax difficilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14604,species,corfly,Cordilleran Flycatcher,Empidonax occidentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14606.5,hybrid,x00770,Pacific-slope x Cordilleran Flycatcher (hybrid),Empidonax difficilis x occidentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14607,slash,wesfly,Pacific-slope/Cordilleran Flycatcher (Western Flycatcher),Empidonax difficilis/occidentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14608,species,yelfly1,Yellowish Flycatcher,Empidonax flavescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14612,species,bubfly,Buff-breasted Flycatcher,Empidonax fulvifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14619,species,blcfly1,Black-capped Flycatcher,Empidonax atriceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14620,spuh,empido,Empidonax sp.,Empidonax sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14621,species,blkpho,Black Phoebe,Sayornis nigricans,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14622,issf,blkpho1,Black Phoebe (Northern),Sayornis nigricans [nigricans Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,blkpho 14627,issf,blkpho2,Black Phoebe (White-winged),Sayornis nigricans latirostris/angustirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,blkpho 14632,species,easpho,Eastern Phoebe,Sayornis phoebe,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14632.5,hybrid,x00621,Black x Eastern Phoebe (hybrid),Sayornis nigricans x phoebe,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14633,species,saypho,Say's Phoebe,Sayornis saya,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14635.5,hybrid,x00635,Black x Say's Phoebe (hybrid),Sayornis nigricans x saya,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14636,spuh,phoebe1,phoebe sp.,Sayornis sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14637,species,verfly,Vermilion Flycatcher,Pyrocephalus rubinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14638,issf,verfly5,Vermilion Flycatcher (Northern),Pyrocephalus rubinus [mexicanus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly 14643,issf,verfly6,Vermilion Flycatcher (saturatus),Pyrocephalus rubinus saturatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly 14643.5,issf,verfly7,Vermilion Flycatcher (obscurus Group),Pyrocephalus rubinus [obscurus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly 14649,issf,verfly1,Vermilion Flycatcher (Austral),Pyrocephalus rubinus rubinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly 14650,issf,verfly3,Vermilion Flycatcher (Galapagos),Pyrocephalus rubinus nanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly 14652,issf,verfly8,Vermilion Flycatcher (San Cristobal),Pyrocephalus rubinus dubius,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly 14653,species,ausneg1,Austral Negrito,Lessonia rufa,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14654,species,andneg1,Andean Negrito,Lessonia oreas,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14655,slash,y00603,Austral/Andean Negrito,Lessonia rufa/oreas,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14656,species,rivtyr2,Riverside Tyrant,Knipolegus orenocensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14656.2,issf,rivtyr3,Riverside Tyrant (Riverside),Knipolegus orenocensis orenocensis/xinguensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rivtyr2 14656.4,issf,rivtyr4,Riverside Tyrant (Sclater's),Knipolegus orenocensis sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rivtyr2 14660,species,ruttyr1,Rufous-tailed Tyrant,Knipolegus poecilurus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14666,species,ambtyr1,Amazonian Black-Tyrant,Knipolegus poecilocercus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14667,species,whwblt2,Caatinga Black-Tyrant,Knipolegus franciscanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14668,species,crbtyr1,Crested Black-Tyrant,Knipolegus lophotes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14669,species,vebtyr1,Velvety Black-Tyrant,Knipolegus nigerrimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14671,species,andtyr3,Jelski's Black-Tyrant,Knipolegus signatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14672,species,andtyr2,Plumbeous Black-Tyrant,Knipolegus cabanisi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14673,slash,andtyr1,Jelski's/Plumbeous Black-Tyrant,Knipolegus signatus/cabanisi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14674,species,bbbtyr1,Blue-billed Black-Tyrant,Knipolegus cyanirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14675,species,cintyr1,Cinereous Tyrant,Knipolegus striaticeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14677,species,whwblt1,White-winged Black-Tyrant,Knipolegus aterrimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14677.2,issf,whwblt4,White-winged Black-Tyrant (White-rumped),Knipolegus aterrimus heterogyna,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whwblt1 14677.4,issf,whwblt5,White-winged Black-Tyrant (White-winged),Knipolegus aterrimus aterrimus/anthracinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whwblt1 14680,species,hubtyr1,Hudson's Black-Tyrant,Knipolegus hudsoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14680.3,slash,y00971,White-winged/Hudson's Black-Tyrant,Knipolegus aterrimus/hudsoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14680.5,spuh,black-2,black-tyrant sp.,Knipolegus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14681,species,spetyr1,Spectacled Tyrant,Hymenops perspicillatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14684,species,drwtyr1,Drab Water Tyrant,Ochthornis littoralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14685,species,yebtyr2,Yellow-browed Tyrant,Satrapa icterophrys,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14686,species,ligtyr1,Little Ground-Tyrant,Muscisaxicola fluviatilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14687,species,sbgtyr1,Spot-billed Ground-Tyrant,Muscisaxicola maculirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14691,species,tacgrt1,Taczanowski's Ground-Tyrant,Muscisaxicola griseus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14692,species,pugtyr1,Puna Ground-Tyrant,Muscisaxicola juninensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14693,species,cingrt1,Cinereous Ground-Tyrant,Muscisaxicola cinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14696,species,wfgtyr1,White-fronted Ground-Tyrant,Muscisaxicola albifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14697,species,ongtyr1,Ochre-naped Ground-Tyrant,Muscisaxicola flavinucha,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14700,species,rngtyr1,Rufous-naped Ground-Tyrant,Muscisaxicola rufivertex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14701,issf,rungrt1,Rufous-naped Ground-Tyrant (Rufous-naped),Muscisaxicola rufivertex rufivertex/occipitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rngtyr1 14704,issf,rungrt2,Rufous-naped Ground-Tyrant (pallidiceps),Muscisaxicola rufivertex pallidiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rngtyr1 14705,species,dafgrt1,Dark-faced Ground-Tyrant,Muscisaxicola maclovianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14706,issf,dafgrt2,Dark-faced Ground-Tyrant (mentalis),Muscisaxicola maclovianus mentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,dafgrt1 14707,issf,dafgrt3,Dark-faced Ground-Tyrant (maclovianus),Muscisaxicola maclovianus maclovianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,dafgrt1 14708,species,wbgtyr1,White-browed Ground-Tyrant,Muscisaxicola albilora,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14709,species,plcgrt1,Plain-capped Ground-Tyrant,Muscisaxicola alpinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14713,species,cibgrt1,Cinnamon-bellied Ground-Tyrant,Muscisaxicola capistratus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14714,species,bfgtyr1,Black-fronted Ground-Tyrant,Muscisaxicola frontalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14715,spuh,ground1,ground-tyrant sp.,Muscisaxicola sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14716,species,bkbsht1,Black-billed Shrike-Tyrant,Agriornis montanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14722,species,wtstyr1,White-tailed Shrike-Tyrant,Agriornis albicauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14725,species,gresht1,Great Shrike-Tyrant,Agriornis lividus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14728,species,gybsht1,Gray-bellied Shrike-Tyrant,Agriornis micropterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14729,issf,gybsht2,Gray-bellied Shrike-Tyrant (andecola),Agriornis micropterus andecola,Passeriformes,Tyrannidae (Tyrant Flycatchers),,gybsht1 14730,issf,gybsht3,Gray-bellied Shrike-Tyrant (micropterus),Agriornis micropterus micropterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,gybsht1 14731,species,lessht1,Lesser Shrike-Tyrant,Agriornis murinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14732,spuh,shrike1,shrike-tyrant sp.,Agriornis sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14733,species,fiediu1,Fire-eyed Diucon,Xolmis pyrope,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14736,species,grymon1,Gray Monjita,Xolmis cinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14739,species,bkcmon1,Black-crowned Monjita,Xolmis coronatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14740,species,whrmon2,White-rumped Monjita,Xolmis velatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14741,species,whimon1,White Monjita,Xolmis irupero,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14744,species,salmon1,Salinas Monjita,Xolmis salinarum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14745,species,rubmon1,Rusty-backed Monjita,Xolmis rubetra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14746,species,bawmon3,Black-and-white Monjita,Xolmis dominicanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14747,species,stbtyr1,Streak-throated Bush-Tyrant,Myiotheretes striaticollis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14750,species,smbtyr1,Santa Marta Bush-Tyrant,Myiotheretes pernix,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14751,species,smbtyr2,Smoky Bush-Tyrant,Myiotheretes fumigatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14756,species,rbbtyr1,Rufous-bellied Bush-Tyrant,Myiotheretes fuscorufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14756.5,spuh,myioth2,Myiotheretes sp.,Myiotheretes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14757,species,rrbtyr1,Red-rumped Bush-Tyrant,Cnemarchus erythropygius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14760,species,rwbtyr1,Rufous-webbed Bush-Tyrant,Polioxolmis rufipennis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14763,species,chvtyr2,Chocolate-vented Tyrant,Neoxolmis rufiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14764,species,stttyr2,Streamer-tailed Tyrant,Gubernetes yetapa,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14765,species,shtgrt1,Shear-tailed Gray Tyrant,Muscipipra vetula,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14766,species,piwtyr1,Pied Water-Tyrant,Fluvicola pica,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14767,species,bbwtyr1,Black-backed Water-Tyrant,Fluvicola albiventer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14768,species,mawtyr1,Masked Water-Tyrant,Fluvicola nengeta,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14771,species,whmtyr1,White-headed Marsh Tyrant,Arundinicola leucocephala,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14772,species,cottyr1,Cock-tailed Tyrant,Alectrurus tricolor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14773,species,stttyr1,Strange-tailed Tyrant,Alectrurus risora,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14774,species,tumtyr2,Tumbes Tyrant,Tumbezia salvini,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14775,species,crocht1,Crowned Chat-Tyrant,Ochthoeca frontalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14776,issf,crocht2,Crowned Chat-Tyrant (Crowned),Ochthoeca frontalis frontalis/albidiadema,Passeriformes,Tyrannidae (Tyrant Flycatchers),,crocht1 14779,issf,crocht3,Crowned Chat-Tyrant (Kalinowski's),Ochthoeca frontalis spodionota/boliviana,Passeriformes,Tyrannidae (Tyrant Flycatchers),,crocht1 14782,species,jelcht1,Jelski's Chat-Tyrant,Ochthoeca jelskii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14783,species,gobcht1,Golden-browed Chat-Tyrant,Ochthoeca pulchella,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14786,species,yebcht1,Yellow-bellied Chat-Tyrant,Ochthoeca diadema,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14792,species,sbctyr1,Slaty-backed Chat-Tyrant,Ochthoeca cinnamomeiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14793,issf,slbcht2,Slaty-backed Chat-Tyrant (Slaty-backed),Ochthoeca cinnamomeiventris cinnamomeiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sbctyr1 14794,issf,slbcht1,Slaty-backed Chat-Tyrant (Blackish),Ochthoeca cinnamomeiventris nigrita,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sbctyr1 14795,issf,slbcht3,Slaty-backed Chat-Tyrant (Maroon-belted),Ochthoeca cinnamomeiventris thoracica/angustifasciata,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sbctyr1 14798,species,rbctyr1,Rufous-breasted Chat-Tyrant,Ochthoeca rufipectoralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14806,species,bbctyr1,Brown-backed Chat-Tyrant,Ochthoeca fumicolor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14806.2,issf,bnbcht1,Brown-backed Chat-Tyrant (Brown-backed),Ochthoeca fumicolor [fumicolor Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,bbctyr1 14806.4,issf,bnbcht2,Brown-backed Chat-Tyrant (Rufous-browed),Ochthoeca fumicolor superciliosa,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bbctyr1 14812,species,dorcht1,d'Orbigny's Chat-Tyrant,Ochthoeca oenanthoides,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14815,species,pictyr1,Piura Chat-Tyrant,Ochthoeca piurae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14816,species,wbctyr1,White-browed Chat-Tyrant,Ochthoeca leucophrys,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14823,spuh,chat-t1,chat-tyrant sp.,Ochthoeca sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14824,species,pattyr2,Patagonian Tyrant,Colorhamphus parvirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14825,species,lottyr1,Long-tailed Tyrant,Colonia colonus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14831,species,stftyr1,Short-tailed Field Tyrant,Muscigralla brevicauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14832,species,cattyr,Cattle Tyrant,Machetornis rixosa,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14836,species,lahfla2,Large-headed Flatbill,Ramphotrigon megacephalum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14841,species,rutfla1,Rufous-tailed Flatbill,Ramphotrigon ruficauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14842,species,dutfla1,Dusky-tailed Flatbill,Ramphotrigon fuscicauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14842.2,spuh,rampho1,Ramphotrigon sp.,Ramphotrigon sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14843,species,rutatt1,Rufous-tailed Attila,Attila phoenicurus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14844,species,cinatt1,Cinnamon Attila,Attila cinnamomeus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14845,species,ochatt1,Ochraceous Attila,Attila torridus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14846,species,cibatt1,Citron-bellied Attila,Attila citriniventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14847,species,ducatt1,Dull-capped Attila,Attila bolivianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14850,species,gyhatt1,Gray-hooded Attila,Attila rufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14853,species,brratt1,Bright-rumped Attila,Attila spadiceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14853.5,issf,brratt2,Bright-rumped Attila (Northern),Attila spadiceus [flammulatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,brratt1 14863,issf,brratt3,Bright-rumped Attila (Southern),Attila spadiceus spadiceus/uropygiatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,brratt1 14863.2,spuh,attila1,attila sp.,Attila sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14867,species,siryst3,Choco Sirystes,Sirystes albogriseus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14868,species,whrsir1,White-rumped Sirystes,Sirystes albocinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14869,species,todsir1,Todd's Sirystes,Sirystes subcanescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14869.5,species,sibsir1,Sibilant Sirystes,Sirystes sibilator,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14871.5,spuh,siryst1,sirystes sp.,Sirystes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14872,species,rufcas2,Rufous Casiornis,Casiornis rufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14873,species,astcas2,Ash-throated Casiornis,Casiornis fuscus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14874,species,rufmou1,Rufous Mourner,Rhytipterna holerythra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14877,species,gramou1,Grayish Mourner,Rhytipterna simplex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14880,species,pabmou1,Pale-bellied Mourner,Rhytipterna immunda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14881,species,ruffly1,Rufous Flycatcher,Myiarchus semirufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14882,species,yucfly1,Yucatan Flycatcher,Myiarchus yucatanensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14886,species,sadfly1,Sad Flycatcher,Myiarchus barbirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14887,species,ducfly,Dusky-capped Flycatcher,Myiarchus tuberculifer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14888,issf,ducfly3,Dusky-capped Flycatcher (Arizona),Myiarchus tuberculifer olivascens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ducfly 14889,issf,ducfly4,Dusky-capped Flycatcher (East Mexico),Myiarchus tuberculifer lawrenceii,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ducfly 14901,species,swafly1,Swainson's Flycatcher,Myiarchus swainsoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14906,species,venfly1,Venezuelan Flycatcher,Myiarchus venezuelensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14907,species,panfly1,Panama Flycatcher,Myiarchus panamensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14909.3,slash,y00972,Venezuelan/Panama Flycatcher,Myiarchus venezuelensis/panamensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14910,species,shcfly1,Short-crested Flycatcher,Myiarchus ferox,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14914,species,apifly1,Apical Flycatcher,Myiarchus apicalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14915,species,socfly2,Sooty-crowned Flycatcher,Myiarchus phaeocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14916,issf,socfly6,Sooty-crowned Flycatcher (phaeocephalus),Myiarchus phaeocephalus phaeocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly2 14917,issf,socfly7,Sooty-crowned Flycatcher (interior),Myiarchus phaeocephalus interior,Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly2 14918,species,paefly1,Pale-edged Flycatcher,Myiarchus cephalotes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14921,species,astfly,Ash-throated Flycatcher,Myiarchus cinerascens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14924,species,nutfly,Nutting's Flycatcher,Myiarchus nuttingi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14925,issf,nutfly1,Nutting's Flycatcher (Nutting's),Myiarchus nuttingi nuttingi/inquietus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,nutfly 14925.5,issf,nutfly2,Nutting's Flycatcher (flavidior),Myiarchus nuttingi flavidior,Passeriformes,Tyrannidae (Tyrant Flycatchers),,nutfly 14928,species,grcfly,Great Crested Flycatcher,Myiarchus crinitus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14929,species,bncfly,Brown-crested Flycatcher,Myiarchus tyrannulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14930,issf,bncfly1,Brown-crested Flycatcher (Arizona),Myiarchus tyrannulus magister,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly 14930.2,issf,bncfly5,Brown-crested Flycatcher (Cooper's),Myiarchus tyrannulus [cooperi Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly 14934,issf,bncfly3,Brown-crested Flycatcher (Ometepe),Myiarchus tyrannulus brachyurus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly 14935,issf,bncfly4,Brown-crested Flycatcher (South American),Myiarchus tyrannulus tyrannulus/bahiae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly 14938,species,galfly1,Galapagos Flycatcher,Myiarchus magnirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14939,species,grefly1,Grenada Flycatcher,Myiarchus nugator,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14940,species,rutfly1,Rufous-tailed Flycatcher,Myiarchus validus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14941,species,lasfly,La Sagra's Flycatcher,Myiarchus sagrae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14944,species,stofly1,Stolid Flycatcher,Myiarchus stolidus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14947,species,purfly1,Puerto Rican Flycatcher,Myiarchus antillarum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14948,species,leafly1,Lesser Antillean Flycatcher,Myiarchus oberi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14953,spuh,myiarc,Myiarchus sp.,Myiarchus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14954,species,flafly1,Flammulated Flycatcher,Deltarhynchus flammulatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14955,species,leskis1,Lesser Kiskadee,Pitangus lictor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14958,species,grekis,Great Kiskadee,Pitangus sulphuratus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14969,species,bobfly1,Boat-billed Flycatcher,Megarynchus pitangua,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14969.5,issf,bobfly3,Boat-billed Flycatcher (Northern),Megarynchus pitangua [mexicanus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,bobfly1 14974,issf,bobfly5,Boat-billed Flycatcher (South American),Megarynchus pitangua pitangua,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bobfly1 14975,issf,bobfly4,Boat-billed Flycatcher (Tumbes),Megarynchus pitangua chrysogaster,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bobfly1 14976,species,rumfly1,Rusty-margined Flycatcher,Myiozetetes cayanensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14981,species,socfly1,Social Flycatcher,Myiozetetes similis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14982,issf,socfly3,Social Flycatcher (Vermilion-crowned),Myiozetetes similis [texensis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly1 14986,issf,socfly4,Social Flycatcher (Social),Myiozetetes similis [similis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly1 14990.5,issf,socfly5,Social Flycatcher (Tumbes),Myiozetetes similis grandis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly1 14990.7,slash,y00798,Rusty-margined/Social Flycatcher,Myiozetetes cayanensis/similis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14991,species,grcfly1,Gray-capped Flycatcher,Myiozetetes granadensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14995,species,ducfly2,Dusky-chested Flycatcher,Myiozetetes luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14997.5,slash,y00799,Gray-capped/Dusky-chested Flycatcher,Myiozetetes granadensis/luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14998,species,whbfly1,White-bearded Flycatcher,Phelpsia inornata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 14999,species,whrfly,White-ringed Flycatcher,Conopias albovittatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15002,species,yetfly2,Yellow-throated Flycatcher,Conopias parvus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15003,species,thsfly2,Three-striped Flycatcher,Conopias trivirgatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15003.2,slash,y00885,Yellow-throated/Three-striped Flycatcher,Conopias parvus/trivirgatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15006,species,lebfly2,Lemon-browed Flycatcher,Conopias cinchoneti,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15009,species,gobfly1,Golden-bellied Flycatcher,Myiodynastes hemichrysus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15010,species,gocfly1,Golden-crowned Flycatcher,Myiodynastes chrysocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15014,species,baifly1,Baird's Flycatcher,Myiodynastes bairdii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15015,species,strfly1,Streaked Flycatcher,Myiodynastes maculatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15016,issf,strfly2,Streaked Flycatcher (Streaked),Myiodynastes maculatus [maculatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,strfly1 15023,issf,strfly3,Streaked Flycatcher (solitarius),Myiodynastes maculatus solitarius,Passeriformes,Tyrannidae (Tyrant Flycatchers),,strfly1 15024,species,subfly,Sulphur-bellied Flycatcher,Myiodynastes luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15025,slash,y00607,Streaked/Sulphur-bellied Flycatcher,Myiodynastes maculatus/luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15026,species,pirfly1,Piratic Flycatcher,Legatus leucophaius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15029,species,varfly,Variegated Flycatcher,Empidonomus varius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15032,species,croslf1,Crowned Slaty Flycatcher,Empidonomus aurantioatrocristatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15035,species,sulfly1,Sulphury Flycatcher,Tyrannopsis sulphurea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15036,species,sntkin1,Snowy-throated Kingbird,Tyrannus niveigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15037,species,whtkin1,White-throated Kingbird,Tyrannus albogularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15038,species,trokin,Tropical Kingbird,Tyrannus melancholicus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15041.5,slash,y00740,White-throated/Tropical Kingbird,Tyrannus albogularis/melancholicus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15042,species,coukin,Couch's Kingbird,Tyrannus couchii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15043,slash,y00325,Tropical/Couch's Kingbird,Tyrannus melancholicus/couchii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15045,species,caskin,Cassin's Kingbird,Tyrannus vociferans,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15048,species,thbkin,Thick-billed Kingbird,Tyrannus crassirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15051,species,weskin,Western Kingbird,Tyrannus verticalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15052,slash,y00619,Cassin's/Western Kingbird,Tyrannus vociferans/verticalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15054,spuh,yebkin2,yellow-bellied kingbird sp.,Tyrannus sp. (yellow-bellied),Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15054.2,spuh,tyrann1,Tyrannus sp.,Tyrannus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15055,species,easkin,Eastern Kingbird,Tyrannus tyrannus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15055.5,hybrid,x00718,Western x Eastern Kingbird (hybrid),Tyrannus verticalis x tyrannus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15056,species,grykin,Gray Kingbird,Tyrannus dominicensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15057,hybrid,x00859,Tropical x Gray Kingbird (hybrid),Tyrannus melancholicus x dominicensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15059,species,logkin,Loggerhead Kingbird,Tyrannus caudifasciatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15060,issf,logkin3,Loggerhead Kingbird (Loggerhead),Tyrannus caudifasciatus [caudifasciatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,logkin 15065,issf,logkin1,Loggerhead Kingbird (Puerto Rican),Tyrannus caudifasciatus taylori,Passeriformes,Tyrannidae (Tyrant Flycatchers),,logkin 15066,issf,logkin2,Loggerhead Kingbird (Hispaniolan),Tyrannus caudifasciatus gabbii,Passeriformes,Tyrannidae (Tyrant Flycatchers),,logkin 15067,species,giakin1,Giant Kingbird,Tyrannus cubensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15068,species,sctfly,Scissor-tailed Flycatcher,Tyrannus forficatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15068.3,hybrid,x00441,Couch's Kingbird x Scissor-tailed Flycatcher (hybrid),Tyrannus couchii x forficatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15068.6,hybrid,x00442,Western Kingbird x Scissor-tailed Flycatcher (hybrid),Tyrannus verticalis x forficatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15069,species,fotfly,Fork-tailed Flycatcher,Tyrannus savana,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15070,issf,fotfly1,Fork-tailed Flycatcher (savana),Tyrannus savana savana,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly 15071,issf,fotfly2,Fork-tailed Flycatcher (monachus),Tyrannus savana monachus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly 15072,issf,fotfly3,Fork-tailed Flycatcher (sanctaemartae),Tyrannus savana sanctaemartae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly 15073,issf,fotfly4,Fork-tailed Flycatcher (circumdatus),Tyrannus savana circumdatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly 15074,spuh,flycat1,flycatcher sp. (Tyrannidae sp.),Tyrannidae sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, 15075,species,sharpb1,Sharpbill,Oxyruncus cristatus,Passeriformes,Oxyruncidae (Sharpbill),Sharpbill, 15082,species,hoober2,Hooded Berryeater,Carpornis cucullata,Passeriformes,Cotingidae (Cotingas),Cotingas, 15083,species,bkhber1,Black-headed Berryeater,Carpornis melanocephala,Passeriformes,Cotingidae (Cotingas),, 15084,species,gabfru1,Green-and-black Fruiteater,Pipreola riefferii,Passeriformes,Cotingidae (Cotingas),, 15085,issf,gabfru4,Green-and-black Fruiteater (Green-and-black),Pipreola riefferii [riefferii Group],Passeriformes,Cotingidae (Cotingas),,gabfru1 15091,issf,gabfru3,Green-and-black Fruiteater (Sira),Pipreola riefferii tallmanorum,Passeriformes,Cotingidae (Cotingas),,gabfru1 15092,species,batfru1,Band-tailed Fruiteater,Pipreola intermedia,Passeriformes,Cotingidae (Cotingas),, 15093,issf,batfru2,Band-tailed Fruiteater (intermedia),Pipreola intermedia intermedia,Passeriformes,Cotingidae (Cotingas),,batfru1 15094,issf,batfru3,Band-tailed Fruiteater (signata),Pipreola intermedia signata,Passeriformes,Cotingidae (Cotingas),,batfru1 15095,species,barfru1,Barred Fruiteater,Pipreola arcuata,Passeriformes,Cotingidae (Cotingas),, 15098,species,gobfru1,Golden-breasted Fruiteater,Pipreola aureopectus,Passeriformes,Cotingidae (Cotingas),, 15102,species,orbfru1,Orange-breasted Fruiteater,Pipreola jucunda,Passeriformes,Cotingidae (Cotingas),, 15103,species,blcfru1,Black-chested Fruiteater,Pipreola lubomirskii,Passeriformes,Cotingidae (Cotingas),, 15104,species,masfru1,Masked Fruiteater,Pipreola pulchra,Passeriformes,Cotingidae (Cotingas),, 15105,species,scbfru1,Scarlet-breasted Fruiteater,Pipreola frontalis,Passeriformes,Cotingidae (Cotingas),, 15106,issf,scbfru2,Scarlet-breasted Fruiteater (squamipectus),Pipreola frontalis squamipectus,Passeriformes,Cotingidae (Cotingas),,scbfru1 15107,issf,scbfru3,Scarlet-breasted Fruiteater (frontalis),Pipreola frontalis frontalis,Passeriformes,Cotingidae (Cotingas),,scbfru1 15108,species,fitfru1,Fiery-throated Fruiteater,Pipreola chlorolepidota,Passeriformes,Cotingidae (Cotingas),, 15109,species,hanfru1,Handsome Fruiteater,Pipreola formosa,Passeriformes,Cotingidae (Cotingas),, 15113,species,rebfru1,Red-banded Fruiteater,Pipreola whitelyi,Passeriformes,Cotingidae (Cotingas),, 15113.2,spuh,pipreo1,Pipreola sp.,Pipreola sp.,Passeriformes,Cotingidae (Cotingas),, 15116,species,scafru1,Scaled Fruiteater,Ampelioides tschudii,Passeriformes,Cotingidae (Cotingas),, 15117,species,whccot1,White-cheeked Cotinga,Zaratornis stresemanni,Passeriformes,Cotingidae (Cotingas),, 15118,species,perpla1,Peruvian Plantcutter,Phytotoma raimondii,Passeriformes,Cotingidae (Cotingas),, 15119,species,whtpla1,White-tipped Plantcutter,Phytotoma rutila,Passeriformes,Cotingidae (Cotingas),, 15122,species,rutpla1,Rufous-tailed Plantcutter,Phytotoma rara,Passeriformes,Cotingidae (Cotingas),, 15122.3,species,swtcot1,Swallow-tailed Cotinga,Phibalura flavirostris,Passeriformes,Cotingidae (Cotingas),, 15122.6,issf,swtcot2,Swallow-tailed Cotinga (Palkachupa),Phibalura flavirostris boliviana,Passeriformes,Cotingidae (Cotingas),,swtcot1 15122.8,issf,swtcot3,Swallow-tailed Cotinga (Swallow-tailed),Phibalura flavirostris flavirostris,Passeriformes,Cotingidae (Cotingas),,swtcot1 15123,species,chbcot1,Chestnut-bellied Cotinga,Doliornis remseni,Passeriformes,Cotingidae (Cotingas),, 15124,species,bavcot1,Bay-vented Cotinga,Doliornis sclateri,Passeriformes,Cotingidae (Cotingas),, 15125,species,reccot1,Red-crested Cotinga,Ampelion rubrocristatus,Passeriformes,Cotingidae (Cotingas),, 15126,species,chccot1,Chestnut-crested Cotinga,Ampelion rufaxilla,Passeriformes,Cotingidae (Cotingas),, 15129,species,gurcot1,Guianan Red-Cotinga,Phoenicircus carnifex,Passeriformes,Cotingidae (Cotingas),, 15130,species,bnrcot1,Black-necked Red-Cotinga,Phoenicircus nigricollis,Passeriformes,Cotingidae (Cotingas),, 15131,species,gcoroc1,Guianan Cock-of-the-rock,Rupicola rupicola,Passeriformes,Cotingidae (Cotingas),, 15132,species,andcot1,Andean Cock-of-the-rock,Rupicola peruvianus,Passeriformes,Cotingidae (Cotingas),, 15137,species,gytpih1,Gray-tailed Piha,Snowornis subalaris,Passeriformes,Cotingidae (Cotingas),, 15138,species,olipih2,Olivaceous Piha,Snowornis cryptolophus,Passeriformes,Cotingidae (Cotingas),, 15141,species,crifru1,Crimson Fruitcrow,Haematoderus militaris,Passeriformes,Cotingidae (Cotingas),, 15142,species,putfru1,Purple-throated Fruitcrow,Querula purpurata,Passeriformes,Cotingidae (Cotingas),, 15143,species,rerfru1,Red-ruffed Fruitcrow,Pyroderus scutatus,Passeriformes,Cotingidae (Cotingas),, 15149,species,banumb1,Bare-necked Umbrellabird,Cephalopterus glabricollis,Passeriformes,Cotingidae (Cotingas),, 15150,species,amaumb1,Amazonian Umbrellabird,Cephalopterus ornatus,Passeriformes,Cotingidae (Cotingas),, 15151,species,lowumb1,Long-wattled Umbrellabird,Cephalopterus penduliger,Passeriformes,Cotingidae (Cotingas),, 15152,species,capuch1,Capuchinbird,Perissocephalus tricolor,Passeriformes,Cotingidae (Cotingas),, 15153,species,lovcot1,Lovely Cotinga,Cotinga amabilis,Passeriformes,Cotingidae (Cotingas),, 15154,species,turcot1,Turquoise Cotinga,Cotinga ridgwayi,Passeriformes,Cotingidae (Cotingas),, 15155,species,blucot1,Blue Cotinga,Cotinga nattererii,Passeriformes,Cotingidae (Cotingas),, 15156,species,pltcot1,Plum-throated Cotinga,Cotinga maynana,Passeriformes,Cotingidae (Cotingas),, 15157,species,pubcot1,Purple-breasted Cotinga,Cotinga cotinga,Passeriformes,Cotingidae (Cotingas),, 15158,species,bancot1,Banded Cotinga,Cotinga maculata,Passeriformes,Cotingidae (Cotingas),, 15159,species,spacot1,Spangled Cotinga,Cotinga cayana,Passeriformes,Cotingidae (Cotingas),, 15159.5,spuh,blucot2,blue cotinga sp.,Cotinga sp.,Passeriformes,Cotingidae (Cotingas),, 15160,species,chcpih1,Chestnut-capped Piha,Lipaugus weberi,Passeriformes,Cotingidae (Cotingas),, 15161,species,duspih1,Dusky Piha,Lipaugus fuscocinereus,Passeriformes,Cotingidae (Cotingas),, 15162,species,scwpih1,Scimitar-winged Piha,Lipaugus uropygialis,Passeriformes,Cotingidae (Cotingas),, 15163,species,rufpih1,Rufous Piha,Lipaugus unirufus,Passeriformes,Cotingidae (Cotingas),, 15166,species,scrpih1,Screaming Piha,Lipaugus vociferans,Passeriformes,Cotingidae (Cotingas),, 15167,species,civpih1,Cinnamon-vented Piha,Lipaugus lanioides,Passeriformes,Cotingidae (Cotingas),, 15168,species,rocpih1,Rose-collared Piha,Lipaugus streptophorus,Passeriformes,Cotingidae (Cotingas),, 15169,species,bagcot1,Black-and-gold Cotinga,Tijuca atra,Passeriformes,Cotingidae (Cotingas),, 15170,species,gywcot1,Gray-winged Cotinga,Tijuca condita,Passeriformes,Cotingidae (Cotingas),, 15171,species,thwbel,Three-wattled Bellbird,Procnias tricarunculatus,Passeriformes,Cotingidae (Cotingas),, 15172,species,whibel2,White Bellbird,Procnias albus,Passeriformes,Cotingidae (Cotingas),, 15175,species,beabel1,Bearded Bellbird,Procnias averano,Passeriformes,Cotingidae (Cotingas),, 15178,species,batbel1,Bare-throated Bellbird,Procnias nudicollis,Passeriformes,Cotingidae (Cotingas),, 15179,species,putcot1,Purple-throated Cotinga,Porphyrolaema porphyrolaema,Passeriformes,Cotingidae (Cotingas),, 15180,species,bltcot1,Black-tipped Cotinga,Carpodectes hopkei,Passeriformes,Cotingidae (Cotingas),, 15181,species,yebcot1,Yellow-billed Cotinga,Carpodectes antoniae,Passeriformes,Cotingidae (Cotingas),, 15182,species,snocot1,Snowy Cotinga,Carpodectes nitidus,Passeriformes,Cotingidae (Cotingas),, 15183,species,pomcot1,Pompadour Cotinga,Xipholena punicea,Passeriformes,Cotingidae (Cotingas),, 15184,species,whtcot1,White-tailed Cotinga,Xipholena lamellipennis,Passeriformes,Cotingidae (Cotingas),, 15185,species,whwcot1,White-winged Cotinga,Xipholena atropurpurea,Passeriformes,Cotingidae (Cotingas),, 15186,species,banfru1,Bare-necked Fruitcrow,Gymnoderus foetidus,Passeriformes,Cotingidae (Cotingas),, 15187,species,blfcot1,Black-faced Cotinga,Conioptilon mcilhennyi,Passeriformes,Cotingidae (Cotingas),, 15191.3,species,dwtman1,Dwarf Tyrant-Manakin,Tyranneutes stolzmanni,Passeriformes,Pipridae (Manakins),Manakins, 15191.6,species,titman1,Tiny Tyrant-Manakin,Tyranneutes virescens,Passeriformes,Pipridae (Manakins),, 15192,species,pbtman1,Pale-bellied Tyrant-Manakin,Neopelma pallescens,Passeriformes,Pipridae (Manakins),, 15193,species,sctman1,Saffron-crested Tyrant-Manakin,Neopelma chrysocephalum,Passeriformes,Pipridae (Manakins),, 15194,species,witman1,Wied's Tyrant-Manakin,Neopelma aurifrons,Passeriformes,Pipridae (Manakins),, 15195,species,sdmman1,Serra do Mar Tyrant-Manakin,Neopelma chrysolophum,Passeriformes,Pipridae (Manakins),, 15196,species,sbtman1,Sulphur-bellied Tyrant-Manakin,Neopelma sulphureiventer,Passeriformes,Pipridae (Manakins),, 15198,species,yehman2,Yellow-headed Manakin,Chloropipo flavicapilla,Passeriformes,Pipridae (Manakins),, 15200,species,jetman2,Jet Manakin,Chloropipo unicolor,Passeriformes,Pipridae (Manakins),, 15211,species,araman1,Araripe Manakin,Antilophia bokermanni,Passeriformes,Pipridae (Manakins),, 15212,species,helman1,Helmeted Manakin,Antilophia galeata,Passeriformes,Pipridae (Manakins),, 15213,species,latman1,Lance-tailed Manakin,Chiroxiphia lanceolata,Passeriformes,Pipridae (Manakins),, 15214,species,lotman1,Long-tailed Manakin,Chiroxiphia linearis,Passeriformes,Pipridae (Manakins),, 15215,species,blbman1,Blue-backed Manakin,Chiroxiphia pareola,Passeriformes,Pipridae (Manakins),, 15220,species,yunman1,Yungas Manakin,Chiroxiphia boliviana,Passeriformes,Pipridae (Manakins),, 15221,species,swtman1,Swallow-tailed Manakin,Chiroxiphia caudata,Passeriformes,Pipridae (Manakins),, 15221.5,species,pitman1,Pin-tailed Manakin,Ilicura militaris,Passeriformes,Pipridae (Manakins),, 15222,species,gowman1,Golden-winged Manakin,Masius chrysopterus,Passeriformes,Pipridae (Manakins),, 15225,species,whrman1,White-ruffed Manakin,Corapipo altera,Passeriformes,Pipridae (Manakins),, 15226.5,species,whbman2,White-bibbed Manakin,Corapipo leucorrhoa,Passeriformes,Pipridae (Manakins),, 15226.7,species,whtman1,White-throated Manakin,Corapipo gutturalis,Passeriformes,Pipridae (Manakins),, 15227,species,oliman2,Olive Manakin,Xenopipo uniformis,Passeriformes,Pipridae (Manakins),, 15232,species,blaman1,Black Manakin,Xenopipo atronitens,Passeriformes,Pipridae (Manakins),, 15250,species,greman2,Green Manakin,Cryptopipo holochlora,Passeriformes,Pipridae (Manakins),, 15250.2,issf,grnman1,Green Manakin (Choco),Cryptopipo holochlora litae/suffusa,Passeriformes,Pipridae (Manakins),,greman2 15250.4,issf,grnman2,Green Manakin (Green),Cryptopipo holochlora holochlora/viridior,Passeriformes,Pipridae (Manakins),,greman2 15313,species,blcman1,Blue-crowned Manakin,Lepidothrix coronata,Passeriformes,Pipridae (Manakins),, 15314,issf,bucman1,Blue-crowned Manakin (Velvety),Lepidothrix coronata velutina/minuscula,Passeriformes,Pipridae (Manakins),,blcman1 15317,issf,bucman2,Blue-crowned Manakin (Blue-crowned),Lepidothrix coronata [coronata Group],Passeriformes,Pipridae (Manakins),,blcman1 15321,issf,bucman3,Blue-crowned Manakin (Exquisite),Lepidothrix coronata [exquisita Group],Passeriformes,Pipridae (Manakins),,blcman1 15325,species,sncman1,Snow-capped Manakin,Lepidothrix nattereri,Passeriformes,Pipridae (Manakins),, 15328,species,gocman2,Golden-crowned Manakin,Lepidothrix vilasboasi,Passeriformes,Pipridae (Manakins),, 15329,species,opcman1,Opal-crowned Manakin,Lepidothrix iris,Passeriformes,Pipridae (Manakins),, 15332,species,orbman1,Orange-bellied Manakin,Lepidothrix suavissima,Passeriformes,Pipridae (Manakins),, 15333,species,whfman1,White-fronted Manakin,Lepidothrix serena,Passeriformes,Pipridae (Manakins),, 15333.2,slash,y00886,Orange-bellied/White-fronted Manakin,Lepidothrix suavissima/serena,Passeriformes,Pipridae (Manakins),, 15334,species,blrman1,Blue-rumped Manakin,Lepidothrix isidorei,Passeriformes,Pipridae (Manakins),, 15337,species,cecman1,Cerulean-capped Manakin,Lepidothrix coeruleocapilla,Passeriformes,Pipridae (Manakins),, 15337.005,spuh,lepido2,Lepidothrix sp.,Lepidothrix sp.,Passeriformes,Pipridae (Manakins),, 15337.01,species,orcman3,Orange-crowned Manakin,Heterocercus aurantiivertex,Passeriformes,Pipridae (Manakins),, 15337.015,species,yecman2,Yellow-crowned Manakin,Heterocercus flavivertex,Passeriformes,Pipridae (Manakins),, 15337.02,species,flcman2,Flame-crowned Manakin,Heterocercus linteatus,Passeriformes,Pipridae (Manakins),, 15337.03,species,whcman1,White-collared Manakin,Manacus candei,Passeriformes,Pipridae (Manakins),, 15337.04,species,orcman1,Orange-collared Manakin,Manacus aurantiacus,Passeriformes,Pipridae (Manakins),, 15337.045,species,gocman1,Golden-collared Manakin,Manacus vitellinus,Passeriformes,Pipridae (Manakins),, 15337.06,hybrid,x00811,White-collared x Golden-collared Manakin (hybrid),Manacus candei x vitellinus,Passeriformes,Pipridae (Manakins),, 15337.08,species,whbman1,White-bearded Manakin,Manacus manacus,Passeriformes,Pipridae (Manakins),, 15337.2,species,crhman1,Crimson-hooded Manakin,Pipra aureola,Passeriformes,Pipridae (Manakins),, 15337.24,species,witman2,Wire-tailed Manakin,Pipra filicauda,Passeriformes,Pipridae (Manakins),, 15337.26,species,batman1,Band-tailed Manakin,Pipra fasciicauda,Passeriformes,Pipridae (Manakins),, 15337.3,species,clwman1,Club-winged Manakin,Machaeropterus deliciosus,Passeriformes,Pipridae (Manakins),, 15337.315,species,strman1,Striped Manakin,Machaeropterus regulus,Passeriformes,Pipridae (Manakins),, 15337.32,issf,strman3,Striped Manakin (Western),Machaeropterus regulus [striolatus Group],Passeriformes,Pipridae (Manakins),,strman1 15337.36,issf,strman4,Striped Manakin (aureopectus),Machaeropterus regulus aureopectus,Passeriformes,Pipridae (Manakins),,strman1 15337.365,issf,strman2,Striped Manakin (Eastern),Machaeropterus regulus regulus,Passeriformes,Pipridae (Manakins),,strman1 15337.37,form,paiman1,Painted Manakin (undescribed form),Machaeropterus [undescribed form],Passeriformes,Pipridae (Manakins),, 15337.375,species,ficman1,Fiery-capped Manakin,Machaeropterus pyrocephalus,Passeriformes,Pipridae (Manakins),, 15337.4,species,whcman2,White-crowned Manakin,Dixiphia pipra,Passeriformes,Pipridae (Manakins),, 15337.405,issf,whcman3,White-crowned Manakin (Zeledon's),Dixiphia pipra anthracina,Passeriformes,Pipridae (Manakins),,whcman2 15337.41,issf,whcman4,White-crowned Manakin (White-crowned),Dixiphia pipra [pipra Group],Passeriformes,Pipridae (Manakins),,whcman2 15337.51,species,schman1,Scarlet-horned Manakin,Ceratopipra cornuta,Passeriformes,Pipridae (Manakins),, 15337.53,species,recman1,Red-capped Manakin,Ceratopipra mentalis,Passeriformes,Pipridae (Manakins),, 15337.55,species,gohman1,Golden-headed Manakin,Ceratopipra erythrocephala,Passeriformes,Pipridae (Manakins),, 15337.58,species,rehman1,Red-headed Manakin,Ceratopipra rubrocapilla,Passeriformes,Pipridae (Manakins),, 15337.585,species,rotman1,Round-tailed Manakin,Ceratopipra chloromeros,Passeriformes,Pipridae (Manakins),, 15337.59,spuh,manaki1,manakin sp.,Pipridae sp.,Passeriformes,Pipridae (Manakins),, 15338,species,wibpip1,Wing-barred Piprites,Piprites chloris,Passeriformes,Pipridae (Manakins),, 15346,species,grhpip1,Gray-headed Piprites,Piprites griseiceps,Passeriformes,Pipridae (Manakins),, 15347,species,bkcpip1,Black-capped Piprites,Piprites pileata,Passeriformes,Pipridae (Manakins),, 15348,species,blttit1,Black-tailed Tityra,Tityra cayana,Passeriformes,Tityridae (Tityras and Allies),"Becards, Tityras, and Allies", 15348.2,issf,bkttit4,Black-tailed Tityra (Eastern),Tityra cayana braziliensis,Passeriformes,Tityridae (Tityras and Allies),,blttit1 15348.4,issf,bkttit5,Black-tailed Tityra (Western),Tityra cayana cayana,Passeriformes,Tityridae (Tityras and Allies),,blttit1 15351,species,blctit1,Black-crowned Tityra,Tityra inquisitor,Passeriformes,Tityridae (Tityras and Allies),, 15358,species,mastit1,Masked Tityra,Tityra semifasciata,Passeriformes,Tityridae (Tityras and Allies),, 15367.5,spuh,tityra1,Tityra sp.,Tityra sp.,Passeriformes,Tityridae (Tityras and Allies),, 15368,species,varsch1,Varzea Schiffornis,Schiffornis major,Passeriformes,Tityridae (Tityras and Allies),, 15371,species,thlsch7,Olivaceous Schiffornis,Schiffornis olivacea,Passeriformes,Tityridae (Tityras and Allies),, 15372,species,thlsch2,Northern Schiffornis,Schiffornis veraepacis,Passeriformes,Tityridae (Tityras and Allies),, 15373,issf,norsch1,Northern Schiffornis (Northern),Schiffornis veraepacis [veraepacis Group],Passeriformes,Tityridae (Tityras and Allies),,thlsch2 15377,issf,thlsch5,Northern Schiffornis (Ecuadorian),Schiffornis veraepacis rosenbergi,Passeriformes,Tityridae (Tityras and Allies),,thlsch2 15379,species,thlsch8,Foothill Schiffornis,Schiffornis aenea,Passeriformes,Tityridae (Tityras and Allies),, 15380,species,thlsch4,Russet-winged Schiffornis,Schiffornis stenorhyncha,Passeriformes,Tityridae (Tityras and Allies),, 15384,species,thlsch3,Brown-winged Schiffornis,Schiffornis turdina,Passeriformes,Tityridae (Tityras and Allies),, 15384.5,issf,thlsch6,Brown-winged Schiffornis (Amazonian),Schiffornis turdina amazonum,Passeriformes,Tityridae (Tityras and Allies),,thlsch3 15384.7,issf,bnwsch1,Brown-winged Schiffornis (Brown-winged),Schiffornis turdina [turdina Group],Passeriformes,Tityridae (Tityras and Allies),,thlsch3 15389,species,gresch2,Greenish Schiffornis,Schiffornis virescens,Passeriformes,Tityridae (Tityras and Allies),, 15389.5,spuh,thlsch,Schiffornis sp.,Schiffornis sp.,Passeriformes,Tityridae (Tityras and Allies),, 15390,species,cinmou1,Cinereous Mourner,Laniocera hypopyrra,Passeriformes,Tityridae (Tityras and Allies),, 15391,species,spemou1,Speckled Mourner,Laniocera rufescens,Passeriformes,Tityridae (Tityras and Allies),, 15395,species,whbpur1,White-browed Purpletuft,Iodopleura isabellae,Passeriformes,Tityridae (Tityras and Allies),, 15398,species,duspur1,Dusky Purpletuft,Iodopleura fusca,Passeriformes,Tityridae (Tityras and Allies),, 15399,species,butpur1,Buff-throated Purpletuft,Iodopleura pipra,Passeriformes,Tityridae (Tityras and Allies),, 15402,species,shlcot1,Shrike-like Cotinga,Laniisoma elegans,Passeriformes,Tityridae (Tityras and Allies),, 15403,issf,shlcot2,Shrike-like Cotinga (Andean),Laniisoma elegans [buckleyi Group],Passeriformes,Tityridae (Tityras and Allies),,shlcot1 15406,issf,shlcot3,Shrike-like Cotinga (Brazilian),Laniisoma elegans elegans,Passeriformes,Tityridae (Tityras and Allies),,shlcot1 15407,species,whnxen1,White-naped Xenopsaris,Xenopsaris albinucha,Passeriformes,Tityridae (Tityras and Allies),, 15410,species,grbbec1,Green-backed Becard,Pachyramphus viridis,Passeriformes,Tityridae (Tityras and Allies),, 15411,issf,gnbbec1,Green-backed Becard (Green-backed),Pachyramphus viridis viridis/griseigularis,Passeriformes,Tityridae (Tityras and Allies),,grbbec1 15414,issf,gnbbec2,Green-backed Becard (Yellow-cheeked),Pachyramphus viridis xanthogenys/peruanus,Passeriformes,Tityridae (Tityras and Allies),,grbbec1 15417,species,barbec1,Barred Becard,Pachyramphus versicolor,Passeriformes,Tityridae (Tityras and Allies),, 15421,species,slabec1,Slaty Becard,Pachyramphus spodiurus,Passeriformes,Tityridae (Tityras and Allies),, 15422,species,cinbec2,Cinereous Becard,Pachyramphus rufus,Passeriformes,Tityridae (Tityras and Allies),, 15425,species,cinbec1,Cinnamon Becard,Pachyramphus cinnamomeus,Passeriformes,Tityridae (Tityras and Allies),, 15430,species,chcbec1,Chestnut-crowned Becard,Pachyramphus castaneus,Passeriformes,Tityridae (Tityras and Allies),, 15436,species,whwbec1,White-winged Becard,Pachyramphus polychopterus,Passeriformes,Tityridae (Tityras and Allies),, 15445,species,bawbec1,Black-and-white Becard,Pachyramphus albogriseus,Passeriformes,Tityridae (Tityras and Allies),, 15451,species,grcbec1,Gray-collared Becard,Pachyramphus major,Passeriformes,Tityridae (Tityras and Allies),, 15451.2,issf,gycbec1,Gray-collared Becard (Eastern),Pachyramphus major [major Group],Passeriformes,Tityridae (Tityras and Allies),,grcbec1 15451.4,issf,gycbec2,Gray-collared Becard (Western),Pachyramphus major uropygialis,Passeriformes,Tityridae (Tityras and Allies),,grcbec1 15457,species,blcbec1,Black-capped Becard,Pachyramphus marginatus,Passeriformes,Tityridae (Tityras and Allies),, 15460,species,glbbec1,Glossy-backed Becard,Pachyramphus surinamus,Passeriformes,Tityridae (Tityras and Allies),, 15461,species,rotbec,Rose-throated Becard,Pachyramphus aglaiae,Passeriformes,Tityridae (Tityras and Allies),, 15470,species,jambec1,Jamaican Becard,Pachyramphus niger,Passeriformes,Tityridae (Tityras and Allies),, 15471,species,oncbec1,One-colored Becard,Pachyramphus homochrous,Passeriformes,Tityridae (Tityras and Allies),, 15475,species,pitbec1,Pink-throated Becard,Pachyramphus minor,Passeriformes,Tityridae (Tityras and Allies),, 15476,species,crebec1,Crested Becard,Pachyramphus validus,Passeriformes,Tityridae (Tityras and Allies),, 15479,spuh,becard1,becard sp.,Pachyramphus sp.,Passeriformes,Tityridae (Tityras and Allies),, 15480,species,alblyr1,Albert's Lyrebird,Menura alberti,Passeriformes,Menuridae (Lyrebirds),Lyrebirds, 15481,species,suplyr1,Superb Lyrebird,Menura novaehollandiae,Passeriformes,Menuridae (Lyrebirds),, 15485,species,rusbir1,Rufous Scrub-bird,Atrichornis rufescens,Passeriformes,Atrichornithidae (Scrub-birds),Scrub-birds and Bowerbirds, 15488,species,nosbir1,Noisy Scrub-bird,Atrichornis clamosus,Passeriformes,Atrichornithidae (Scrub-birds),, 15489,species,whecat1,White-eared Catbird,Ailuroedus buccoides,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15490,species,ocbcat1,Ochre-breasted Catbird,Ailuroedus stonii,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15491,species,taccat1,Tan-capped Catbird,Ailuroedus geislerorum,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15494.6,species,spocat2,Spotted Catbird,Ailuroedus maculosus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15495,species,huocat1,Huon Catbird,Ailuroedus astigmaticus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15496,species,bkccat1,Black-capped Catbird,Ailuroedus melanocephalus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15497,species,norcat1,Northern Catbird,Ailuroedus jobiensis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15498,species,arfcat1,Arfak Catbird,Ailuroedus arfakianus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15499,species,spocat1,Black-eared Catbird,Ailuroedus melanotis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15508.5,species,grecat1,Green Catbird,Ailuroedus crassirostris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15509,species,tobcat2,Tooth-billed Catbird,Scenopoeetes dentirostris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15510,species,arcbow1,Archbold's Bowerbird,Archboldia papuensis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15512,species,vogbow2,Vogelkop Bowerbird,Amblyornis inornata,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15513,species,macbow2,Macgregor's Bowerbird,Amblyornis macgregoriae,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15520,species,strbow1,Streaked Bowerbird,Amblyornis subalaris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15521,species,gofbow1,Golden-fronted Bowerbird,Amblyornis flavifrons,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15522,species,golbow1,Golden Bowerbird,Amblyornis newtoniana,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15523,species,flabow1,Flame Bowerbird,Sericulus aureus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15524,issf,flabow3,Flame Bowerbird (Masked),Sericulus aureus aureus,Passeriformes,Ptilonorhynchidae (Bowerbirds),,flabow1 15525,issf,flabow2,Flame Bowerbird (Flame),Sericulus aureus ardens,Passeriformes,Ptilonorhynchidae (Bowerbirds),,flabow1 15526,species,fimbow1,Fire-maned Bowerbird,Sericulus bakeri,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15527,species,regbow1,Regent Bowerbird,Sericulus chrysocephalus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15528,species,satbow1,Satin Bowerbird,Ptilonorhynchus violaceus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15531,species,wesbow1,Western Bowerbird,Chlamydera guttata,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15534,species,spobow1,Spotted Bowerbird,Chlamydera maculata,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15535,species,grebow1,Great Bowerbird,Chlamydera nuchalis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15538,species,yebbow1,Yellow-breasted Bowerbird,Chlamydera lauterbachi,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15541,species,fabbow1,Fawn-breasted Bowerbird,Chlamydera cerviniventris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, 15542,species,paptre1,Papuan Treecreeper,Cormobates placens,Passeriformes,Climacteridae (Australasian Treecreepers),Australian Treecreepers, 15547,species,whttre3,White-throated Treecreeper,Cormobates leucophaea,Passeriformes,Climacteridae (Australasian Treecreepers),, 15548,issf,whttre1,White-throated Treecreeper (Little),Cormobates leucophaea minor,Passeriformes,Climacteridae (Australasian Treecreepers),,whttre3 15551,issf,whttre4,White-throated Treecreeper (White-throated),Cormobates leucophaea [leucophaea Group],Passeriformes,Climacteridae (Australasian Treecreepers),,whttre3 15553,species,whbtre2,White-browed Treecreeper,Climacteris affinis,Passeriformes,Climacteridae (Australasian Treecreepers),, 15556,species,rebtre1,Red-browed Treecreeper,Climacteris erythrops,Passeriformes,Climacteridae (Australasian Treecreepers),, 15557,species,brotre2,Brown Treecreeper,Climacteris picumnus,Passeriformes,Climacteridae (Australasian Treecreepers),, 15561,species,bkttre1,Black-tailed Treecreeper,Climacteris melanurus,Passeriformes,Climacteridae (Australasian Treecreepers),, 15564,species,ruftre3,Rufous Treecreeper,Climacteris rufus,Passeriformes,Climacteridae (Australasian Treecreepers),, 15565,species,grygra1,Gray Grasswren,Amytornis barbatus,Passeriformes,Maluridae (Fairywrens),Fairywrens, 15567,species,strgra4,Pilbara Grasswren,Amytornis whitei,Passeriformes,Maluridae (Fairywrens),, 15569,species,sangra1,Sandhill Grasswren,Amytornis oweni,Passeriformes,Maluridae (Fairywrens),, 15571,species,rusgra1,Rusty Grasswren,Amytornis rowleyi,Passeriformes,Maluridae (Fairywrens),, 15573,species,strgra2,Striated Grasswren,Amytornis striatus,Passeriformes,Maluridae (Fairywrens),, 15574,species,whtgra1,White-throated Grasswren,Amytornis woodwardi,Passeriformes,Maluridae (Fairywrens),, 15575,species,cargra2,Carpentarian Grasswren,Amytornis dorotheae,Passeriformes,Maluridae (Fairywrens),, 15576,species,shtgra1,Short-tailed Grasswren,Amytornis merrotsyi,Passeriformes,Maluridae (Fairywrens),, 15577,species,thbgra1,Western Grasswren,Amytornis textilis,Passeriformes,Maluridae (Fairywrens),, 15578,issf,thbgra2,Western Grasswren (Western),Amytornis textilis textilis,Passeriformes,Maluridae (Fairywrens),,thbgra1 15579,issf,thbgra3,Western Grasswren (Gawler Range),Amytornis textilis myall,Passeriformes,Maluridae (Fairywrens),,thbgra1 15580,species,thbgra4,Thick-billed Grasswren,Amytornis modestus,Passeriformes,Maluridae (Fairywrens),, 15581,species,blagra1,Black Grasswren,Amytornis housei,Passeriformes,Maluridae (Fairywrens),, 15582,species,eyrgra1,Eyrean Grasswren,Amytornis goyderi,Passeriformes,Maluridae (Fairywrens),, 15583,species,dusgra1,Dusky Grasswren,Amytornis purnelli,Passeriformes,Maluridae (Fairywrens),, 15584,species,kalgra1,Kalkadoon Grasswren,Amytornis ballarae,Passeriformes,Maluridae (Fairywrens),, 15585,species,souemu1,Southern Emuwren,Stipiturus malachurus,Passeriformes,Maluridae (Fairywrens),, 15593,species,rucemu1,Rufous-crowned Emuwren,Stipiturus ruficeps,Passeriformes,Maluridae (Fairywrens),, 15594,species,malemu1,Mallee Emuwren,Stipiturus mallee,Passeriformes,Maluridae (Fairywrens),, 15595,species,walfai1,Wallace's Fairywren,Sipodotus wallacii,Passeriformes,Maluridae (Fairywrens),, 15596,species,orcfai1,Orange-crowned Fairywren,Clytomyias insignis,Passeriformes,Maluridae (Fairywrens),, 15599,species,brbfai1,Broad-billed Fairywren,Chenorhamphus grayi,Passeriformes,Maluridae (Fairywrens),, 15599.3,species,brbfai2,Campbell's Fairywren,Chenorhamphus campbelli,Passeriformes,Maluridae (Fairywrens),, 15599.6,species,empfai1,Emperor Fairywren,Malurus cyanocephalus,Passeriformes,Maluridae (Fairywrens),, 15603.5,species,pucfai2,Purple-crowned Fairywren,Malurus coronatus,Passeriformes,Maluridae (Fairywrens),, 15606,species,rewfai1,Red-winged Fairywren,Malurus elegans,Passeriformes,Maluridae (Fairywrens),, 15607,species,blbfai1,Blue-breasted Fairywren,Malurus pulcherrimus,Passeriformes,Maluridae (Fairywrens),, 15608,species,varfai1,Variegated Fairywren,Malurus lamberti,Passeriformes,Maluridae (Fairywrens),, 15609,issf,varfai2,Variegated Fairywren (Lavender-flanked),Malurus lamberti dulcis/rogersi,Passeriformes,Maluridae (Fairywrens),,varfai1 15612,issf,varfai3,Variegated Fairywren (Purple-backed),Malurus lamberti assimilis,Passeriformes,Maluridae (Fairywrens),,varfai1 15613,issf,varfai4,Variegated Fairywren (Variegated),Malurus lamberti lamberti/bernieri,Passeriformes,Maluridae (Fairywrens),,varfai1 15616,species,lovfai1,Lovely Fairywren,Malurus amabilis,Passeriformes,Maluridae (Fairywrens),, 15617,species,splfai1,Splendid Fairywren,Malurus splendens,Passeriformes,Maluridae (Fairywrens),, 15622,species,supfai1,Superb Fairywren,Malurus cyaneus,Passeriformes,Maluridae (Fairywrens),, 15629,species,whwfai1,White-winged Fairywren,Malurus leucopterus,Passeriformes,Maluridae (Fairywrens),, 15630,issf,whwfai2,White-winged Fairywren (Blue-and-white),Malurus leucopterus leuconotus,Passeriformes,Maluridae (Fairywrens),,whwfai1 15631,issf,whwfai3,White-winged Fairywren (Black-and-white),Malurus leucopterus leucopterus/edouardi,Passeriformes,Maluridae (Fairywrens),,whwfai1 15634,species,rebfai1,Red-backed Fairywren,Malurus melanocephalus,Passeriformes,Maluridae (Fairywrens),, 15635,species,whsfai1,White-shouldered Fairywren,Malurus alboscapulatus,Passeriformes,Maluridae (Fairywrens),, 15643,spuh,fairyw1,fairywren sp.,Malurus sp.,Passeriformes,Maluridae (Fairywrens),, 15643.2,species,daehon1,Dark-eared Myza,Myza celebensis,Passeriformes,Meliphagidae (Honeyeaters),Honeyeaters, 15643.4,species,grshon1,White-eared Myza,Myza sarasinorum,Passeriformes,Meliphagidae (Honeyeaters),, 15643.6,slash,y00887,Dark-eared/White-eared Myza,Myza celebensis/sarasinorum,Passeriformes,Meliphagidae (Honeyeaters),, 15644,species,easspi1,Eastern Spinebill,Acanthorhynchus tenuirostris,Passeriformes,Meliphagidae (Honeyeaters),, 15645,species,wesspi1,Western Spinebill,Acanthorhynchus superciliosus,Passeriformes,Meliphagidae (Honeyeaters),, 15646,species,piehon1,Pied Honeyeater,Certhionyx variegatus,Passeriformes,Meliphagidae (Honeyeaters),, 15647,species,plahon1,Plain Honeyeater,Pycnopygius ixoides,Passeriformes,Meliphagidae (Honeyeaters),, 15648,species,marhon1,Marbled Honeyeater,Pycnopygius cinereus,Passeriformes,Meliphagidae (Honeyeaters),, 15648.3,species,sthhon1,Streak-headed Honeyeater,Pycnopygius stictocephalus,Passeriformes,Meliphagidae (Honeyeaters),, 15648.6,species,tui1,Tui,Prosthemadera novaeseelandiae,Passeriformes,Meliphagidae (Honeyeaters),, 15649,species,nezbel1,New Zealand Bellbird,Anthornis melanura,Passeriformes,Meliphagidae (Honeyeaters),, 15651,species,chibel1,Chatham Island Bellbird,Anthornis melanocephala,Passeriformes,Meliphagidae (Honeyeaters),, 15653,species,orchon1,Orange-cheeked Honeyeater,Oreornis chrysogenys,Passeriformes,Meliphagidae (Honeyeaters),, 15655,species,pubhon1,Puff-backed Honeyeater,Meliphaga aruensis,Passeriformes,Meliphagidae (Honeyeaters),, 15657,species,yeshon1,Yellow-spotted Honeyeater,Meliphaga notata,Passeriformes,Meliphagidae (Honeyeaters),, 15659,species,lewhon1,Lewin's Honeyeater,Meliphaga lewinii,Passeriformes,Meliphagidae (Honeyeaters),, 15661,species,scrhon1,Scrub Honeyeater,Meliphaga albonotata,Passeriformes,Meliphagidae (Honeyeaters),, 15663,species,moumel1,Mountain Meliphaga,Meliphaga orientalis,Passeriformes,Meliphagidae (Honeyeaters),, 15665.1,species,mimhon1,Mimic Honeyeater,Meliphaga analoga,Passeriformes,Meliphagidae (Honeyeaters),, 15665.7,species,forhon1,Forest Honeyeater,Meliphaga montana,Passeriformes,Meliphagidae (Honeyeaters),, 15666.9,species,spbmel1,Spot-breasted Meliphaga,Meliphaga mimikae,Passeriformes,Meliphagidae (Honeyeaters),, 15667,species,yeghon1,Yellow-gaped Honeyeater,Meliphaga flavirictus,Passeriformes,Meliphagidae (Honeyeaters),, 15669,species,whlhon1,White-lined Honeyeater,Meliphaga albilineata,Passeriformes,Meliphagidae (Honeyeaters),, 15671,species,kimhon1,Kimberley Honeyeater,Meliphaga fordiana,Passeriformes,Meliphagidae (Honeyeaters),, 15673,species,stbhon3,Streak-breasted Honeyeater,Meliphaga reticulata,Passeriformes,Meliphagidae (Honeyeaters),, 15675,species,taghon1,Tagula Honeyeater,Meliphaga vicina,Passeriformes,Meliphagidae (Honeyeaters),, 15677,species,grahon2,Graceful Honeyeater,Meliphaga gracilis,Passeriformes,Meliphagidae (Honeyeaters),, 15679,species,grahon3,Elegant Honeyeater,Meliphaga cinereifrons,Passeriformes,Meliphagidae (Honeyeaters),, 15681,slash,grahon1,Graceful/Elegant Honeyeater,Meliphaga gracilis/cinereifrons,Passeriformes,Meliphagidae (Honeyeaters),, 15683,spuh,meliph1,Meliphaga sp.,Meliphaga sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15685,species,yelhon1,Yellow Honeyeater,Stomiopera flava,Passeriformes,Meliphagidae (Honeyeaters),, 15687,species,whghon1,White-gaped Honeyeater,Stomiopera unicolor,Passeriformes,Meliphagidae (Honeyeaters),, 15689,species,whfhon1,White-fronted Honeyeater,Purnella albifrons,Passeriformes,Meliphagidae (Honeyeaters),, 15691,species,yefhon1,Yellow-faced Honeyeater,Caligavis chrysops,Passeriformes,Meliphagidae (Honeyeaters),, 15693,species,blthon1,Black-throated Honeyeater,Caligavis subfrenata,Passeriformes,Meliphagidae (Honeyeaters),, 15695,species,obshon1,Obscure Honeyeater,Caligavis obscura,Passeriformes,Meliphagidae (Honeyeaters),, 15695.2,species,yethon3,Yellow-tufted Honeyeater,Lichenostomus melanops,Passeriformes,Meliphagidae (Honeyeaters),, 15697,issf,yethon4,Yellow-tufted Honeyeater (Yellow-tufted),Lichenostomus melanops melanops/meltoni,Passeriformes,Meliphagidae (Honeyeaters),,yethon3 15699,issf,yethon5,Yellow-tufted Honeyeater (Helmeted),Lichenostomus melanops cassidix,Passeriformes,Meliphagidae (Honeyeaters),,yethon3 15701,species,pughon1,Purple-gaped Honeyeater,Lichenostomus cratitius,Passeriformes,Meliphagidae (Honeyeaters),, 15703,species,belmin1,Bell Miner,Manorina melanophrys,Passeriformes,Meliphagidae (Honeyeaters),, 15705,species,noimin1,Noisy Miner,Manorina melanocephala,Passeriformes,Meliphagidae (Honeyeaters),, 15707,species,yetmin1,Yellow-throated Miner,Manorina flavigula,Passeriformes,Meliphagidae (Honeyeaters),, 15709,species,blemin1,Black-eared Miner,Manorina melanotis,Passeriformes,Meliphagidae (Honeyeaters),, 15711,hybrid,x00741,Yellow-throated x Black-eared Miner (hybrid),Manorina flavigula x melanotis,Passeriformes,Meliphagidae (Honeyeaters),, 15712,spuh,miner2,miner sp. (Manorina sp.),Manorina sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15713,species,soomel1,Sooty Melidectes,Melidectes fuscus,Passeriformes,Meliphagidae (Honeyeaters),, 15715,species,shbmel1,Short-bearded Melidectes,Melidectes nouhuysi,Passeriformes,Meliphagidae (Honeyeaters),, 15717,species,lobmel1,Long-bearded Melidectes,Melidectes princeps,Passeriformes,Meliphagidae (Honeyeaters),, 15719,species,ornmel1,Ornate Melidectes,Melidectes torquatus,Passeriformes,Meliphagidae (Honeyeaters),, 15721,species,cibmel1,Cinnamon-browed Melidectes,Melidectes ochromelas,Passeriformes,Meliphagidae (Honeyeaters),, 15723,species,vogmel1,Vogelkop Melidectes,Melidectes leucostephes,Passeriformes,Meliphagidae (Honeyeaters),, 15727,species,huomel1,Huon Melidectes,Melidectes foersteri,Passeriformes,Meliphagidae (Honeyeaters),, 15729,species,belmel1,Belford's Melidectes,Melidectes belfordi,Passeriformes,Meliphagidae (Honeyeaters),, 15731,species,yebmel1,Yellow-browed Melidectes,Melidectes rufocrissalis,Passeriformes,Meliphagidae (Honeyeaters),, 15733,hybrid,x00742,Belford's x Yellow-browed Melidectes (hybrid),Melidectes belfordi x rufocrissalis,Passeriformes,Meliphagidae (Honeyeaters),, 15733.2,spuh,melide1,melidectes sp.,Melidectes sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15735,species,brihon1,Bridled Honeyeater,Bolemoreus frenatus,Passeriformes,Meliphagidae (Honeyeaters),, 15737,species,eunhon1,Eungella Honeyeater,Bolemoreus hindwoodi,Passeriformes,Meliphagidae (Honeyeaters),, 15739,species,spchon1,Spiny-cheeked Honeyeater,Acanthagenys rufogularis,Passeriformes,Meliphagidae (Honeyeaters),, 15740,species,bruwat1,Little Wattlebird,Anthochaera chrysoptera,Passeriformes,Meliphagidae (Honeyeaters),, 15741,species,litwat1,Western Wattlebird,Anthochaera lunulata,Passeriformes,Meliphagidae (Honeyeaters),, 15743,species,reghon1,Regent Honeyeater,Anthochaera phrygia,Passeriformes,Meliphagidae (Honeyeaters),, 15745,species,redwat1,Red Wattlebird,Anthochaera carunculata,Passeriformes,Meliphagidae (Honeyeaters),, 15747,species,yelwat1,Yellow Wattlebird,Anthochaera paradoxa,Passeriformes,Meliphagidae (Honeyeaters),, 15749,spuh,wattle1,wattlebird sp.,Anthochaera sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15749.5,species,varhon1,Varied Honeyeater,Gavicalis versicolor,Passeriformes,Meliphagidae (Honeyeaters),, 15751,species,manhon1,Mangrove Honeyeater,Gavicalis fasciogularis,Passeriformes,Meliphagidae (Honeyeaters),, 15755,species,sinhon1,Singing Honeyeater,Gavicalis virescens,Passeriformes,Meliphagidae (Honeyeaters),, 15757,spuh,gavica1,Gavicalis sp.,Gavicalis sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15759,species,yephon1,Yellow-plumed Honeyeater,Ptilotula ornata,Passeriformes,Meliphagidae (Honeyeaters),, 15761,species,whphon1,White-plumed Honeyeater,Ptilotula penicillata,Passeriformes,Meliphagidae (Honeyeaters),, 15763,species,yethon2,Yellow-tinted Honeyeater,Ptilotula flavescens,Passeriformes,Meliphagidae (Honeyeaters),, 15765,species,fushon1,Fuscous Honeyeater,Ptilotula fusca,Passeriformes,Meliphagidae (Honeyeaters),, 15767,species,gyhhon1,Gray-headed Honeyeater,Ptilotula keartlandi,Passeriformes,Meliphagidae (Honeyeaters),, 15769,species,gyfhon1,Gray-fronted Honeyeater,Ptilotula plumula,Passeriformes,Meliphagidae (Honeyeaters),, 15771,species,bouhon1,Bougainville Honeyeater,Stresemannia bougainvillei,Passeriformes,Meliphagidae (Honeyeaters),, 15773,species,brbhon1,Brown-backed Honeyeater,Ramsayornis modestus,Passeriformes,Meliphagidae (Honeyeaters),, 15775,species,babhon1,Bar-breasted Honeyeater,Ramsayornis fasciatus,Passeriformes,Meliphagidae (Honeyeaters),, 15776,species,rubhon2,Rufous-banded Honeyeater,Conopophila albogularis,Passeriformes,Meliphagidae (Honeyeaters),, 15777,species,ruthon1,Rufous-throated Honeyeater,Conopophila rufogularis,Passeriformes,Meliphagidae (Honeyeaters),, 15779,species,gryhon1,Gray Honeyeater,Conopophila whitei,Passeriformes,Meliphagidae (Honeyeaters),, 15781,species,descha1,Gibber Chat,Ashbyia lovensis,Passeriformes,Meliphagidae (Honeyeaters),, 15783,species,yelcha1,Yellow Chat,Epthianura crocea,Passeriformes,Meliphagidae (Honeyeaters),, 15785,species,cricha1,Crimson Chat,Epthianura tricolor,Passeriformes,Meliphagidae (Honeyeaters),, 15787,species,oracha1,Orange Chat,Epthianura aurifrons,Passeriformes,Meliphagidae (Honeyeaters),, 15789,species,whfcha1,White-fronted Chat,Epthianura albifrons,Passeriformes,Meliphagidae (Honeyeaters),, 15791,species,arfhon1,Arfak Honeyeater,Melipotes gymnops,Passeriformes,Meliphagidae (Honeyeaters),, 15795,species,smohon1,Smoky Honeyeater,Melipotes fumigatus,Passeriformes,Meliphagidae (Honeyeaters),, 15797,species,washon1,Foja Honeyeater,Melipotes carolae,Passeriformes,Meliphagidae (Honeyeaters),, 15799,species,spahon1,Spangled Honeyeater,Melipotes ater,Passeriformes,Meliphagidae (Honeyeaters),, 15799.5,spuh,melipo1,Melipotes sp.,Melipotes sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15801,species,machon3,Macgregor's Honeyeater,Macgregoria pulchra,Passeriformes,Meliphagidae (Honeyeaters),, 15803,species,lobhon2,Long-billed Honeyeater,Melilestes megarhynchus,Passeriformes,Meliphagidae (Honeyeaters),, 15805,species,olistr1,Olive Straightbill,Timeliopsis fulvigula,Passeriformes,Meliphagidae (Honeyeaters),, 15807,species,tawstr1,Tawny Straightbill,Timeliopsis griseigula,Passeriformes,Meliphagidae (Honeyeaters),, 15809,species,blahon1,Black Honeyeater,Sugomel nigrum,Passeriformes,Meliphagidae (Honeyeaters),, 15811,species,bismel1,Bismarck Honeyeater,Vosea whitemanensis,Passeriformes,Meliphagidae (Honeyeaters),, 15813,species,sermyz1,Seram Myzomela,Myzomela blasii,Passeriformes,Meliphagidae (Honeyeaters),, 15815,species,whcmyz1,White-chinned Myzomela,Myzomela albigula,Passeriformes,Meliphagidae (Honeyeaters),, 15817,species,retmyz1,Ruby-throated Myzomela,Myzomela eques,Passeriformes,Meliphagidae (Honeyeaters),, 15819,species,ashmyz1,Ashy Myzomela,Myzomela cineracea,Passeriformes,Meliphagidae (Honeyeaters),, 15821,species,dusmyz1,Dusky Myzomela,Myzomela obscura,Passeriformes,Meliphagidae (Honeyeaters),, 15821.2,issf,dusmyz2,Dusky Myzomela (Red-brown),Myzomela obscura rubrobrunnea,Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 15821.4,issf,dusmyz3,Dusky Myzomela (Obi),Myzomela obscura rubrotincta,Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 15821.6,issf,dusmyz4,Dusky Myzomela (Moluccan),Myzomela obscura simplex/mortyana,Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 15821.8,issf,dusmyz5,Dusky Myzomela (Dusky),Myzomela obscura [obscura Group],Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 15823,species,redmyz1,Red Myzomela,Myzomela cruentata,Passeriformes,Meliphagidae (Honeyeaters),, 15823.2,issf,redmyz2,Red Myzomela (Red),Myzomela cruentata cruentata/coccinea,Passeriformes,Meliphagidae (Honeyeaters),,redmyz1 15823.4,issf,redmyz3,Red Myzomela (Reddish),Myzomela cruentata [erythrina Group],Passeriformes,Meliphagidae (Honeyeaters),,redmyz1 15825,species,blamyz1,Papuan Black Myzomela,Myzomela nigrita,Passeriformes,Meliphagidae (Honeyeaters),, 15827,species,neimyz1,New Ireland Myzomela,Myzomela pulchella,Passeriformes,Meliphagidae (Honeyeaters),, 15829,species,crhmyz1,Crimson-hooded Myzomela,Myzomela kuehni,Passeriformes,Meliphagidae (Honeyeaters),, 15830,form,alomyz1,Alor Myzomela (undescribed form),Myzomela [undescribed Alor form],Passeriformes,Meliphagidae (Honeyeaters),, 15831,species,rehmyz1,Red-headed Myzomela,Myzomela erythrocephala,Passeriformes,Meliphagidae (Honeyeaters),, 15833,species,summyz1,Sumba Myzomela,Myzomela dammermani,Passeriformes,Meliphagidae (Honeyeaters),, 15834,form,rotmyz2,Rote Myzomela (undescribed form),Myzomela [undescribed Rote form],Passeriformes,Meliphagidae (Honeyeaters),, 15835,species,moumyz1,Elfin Myzomela,Myzomela adolphinae,Passeriformes,Meliphagidae (Honeyeaters),, 15837,species,sulmyz1,Sulawesi Myzomela,Myzomela chloroptera,Passeriformes,Meliphagidae (Honeyeaters),, 15837.2,issf,sulmyz2,Sulawesi Myzomela (Sulawesi),Myzomela chloroptera [chloroptera Group],Passeriformes,Meliphagidae (Honeyeaters),,sulmyz1 15837.4,issf,sulmyz3,Sulawesi Myzomela (Bacan),Myzomela chloroptera batjanensis,Passeriformes,Meliphagidae (Honeyeaters),,sulmyz1 15838,form,talmyz1,Taliabu Myzomela (undescribed form),Myzomela [undescribed Taliabu form],Passeriformes,Meliphagidae (Honeyeaters),, 15839,species,wakmyz1,Wakolo Myzomela,Myzomela wakoloensis,Passeriformes,Meliphagidae (Honeyeaters),, 15839.3,issf,wakmyz2,Wakolo Myzomela (Seram),Myzomela wakoloensis elisabethae,Passeriformes,Meliphagidae (Honeyeaters),,wakmyz1 15839.6,issf,wakmyz3,Wakolo Myzomela (Buru),Myzomela wakoloensis wakoloensis,Passeriformes,Meliphagidae (Honeyeaters),,wakmyz1 15841,species,banmyz1,Banda Myzomela,Myzomela boiei,Passeriformes,Meliphagidae (Honeyeaters),, 15842.8,species,necmyz1,New Caledonian Myzomela,Myzomela caledonica,Passeriformes,Meliphagidae (Honeyeaters),, 15843,species,scamyz1,Scarlet Myzomela,Myzomela sanguinolenta,Passeriformes,Meliphagidae (Honeyeaters),, 15844.3,species,micmyz1,Micronesian Myzomela,Myzomela rubratra,Passeriformes,Meliphagidae (Honeyeaters),, 15845,species,carmyz1,Cardinal Myzomela,Myzomela cardinalis,Passeriformes,Meliphagidae (Honeyeaters),, 15846,issf,carmyz2,Cardinal Myzomela (Loyalty),Myzomela cardinalis lifuensis,Passeriformes,Meliphagidae (Honeyeaters),,carmyz1 15847,issf,carmyz3,Cardinal Myzomela (Cardinal),Myzomela cardinalis [cardinalis Group],Passeriformes,Meliphagidae (Honeyeaters),,carmyz1 15848,species,carmyz4,Samoan Myzomela,Myzomela nigriventris,Passeriformes,Meliphagidae (Honeyeaters),, 15848.3,species,rotmyz1,Rotuma Myzomela,Myzomela chermesina,Passeriformes,Meliphagidae (Honeyeaters),, 15848.6,species,scbmyz1,Sclater's Myzomela,Myzomela sclateri,Passeriformes,Meliphagidae (Honeyeaters),, 15849,species,ebomyz1,Bismarck Black Myzomela,Myzomela pammelaena,Passeriformes,Meliphagidae (Honeyeaters),, 15851,species,scnmyz1,Scarlet-naped Myzomela,Myzomela lafargei,Passeriformes,Meliphagidae (Honeyeaters),, 15853,species,yevmyz1,Yellow-vented Myzomela,Myzomela eichhorni,Passeriformes,Meliphagidae (Honeyeaters),, 15855,species,rebmyz1,Red-bellied Myzomela,Myzomela malaitae,Passeriformes,Meliphagidae (Honeyeaters),, 15857,species,blhmyz1,Black-headed Myzomela,Myzomela melanocephala,Passeriformes,Meliphagidae (Honeyeaters),, 15859,species,soomyz1,Sooty Myzomela,Myzomela tristrami,Passeriformes,Meliphagidae (Honeyeaters),, 15861,species,orbmyz1,Orange-breasted Myzomela,Myzomela jugularis,Passeriformes,Meliphagidae (Honeyeaters),, 15863,species,blbmyz1,Black-bellied Myzomela,Myzomela erythromelas,Passeriformes,Meliphagidae (Honeyeaters),, 15865,species,bkbmyz1,Black-breasted Myzomela,Myzomela vulnerata,Passeriformes,Meliphagidae (Honeyeaters),, 15867,species,recmyz1,Red-collared Myzomela,Myzomela rosenbergii,Passeriformes,Meliphagidae (Honeyeaters),, 15867.2,issf,recmyz2,Red-collared Myzomela (Red-collared),Myzomela rosenbergii rosenbergii/wahgiensis,Passeriformes,Meliphagidae (Honeyeaters),,recmyz1 15867.4,issf,recmyz3,Red-collared Myzomela (Long-billed),Myzomela rosenbergii longirostris,Passeriformes,Meliphagidae (Honeyeaters),,recmyz1 15869,spuh,myzome1,myzomela sp.,Myzomela sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15871,species,barhon2,Barred Honeyeater,Gliciphila undulata,Passeriformes,Meliphagidae (Honeyeaters),, 15873,species,tachon1,Tawny-crowned Honeyeater,Gliciphila melanops,Passeriformes,Meliphagidae (Honeyeaters),, 15875,species,nehhon1,Vanuatu Honeyeater,Gliciphila notabilis,Passeriformes,Meliphagidae (Honeyeaters),, 15881,species,grbhon1,Green-backed Honeyeater,Glycichaera fallax,Passeriformes,Meliphagidae (Honeyeaters),, 15884,species,leahon1,Leaden Honeyeater,Ptiloprora plumbea,Passeriformes,Meliphagidae (Honeyeaters),, 15884.3,species,olshon1,Yellow-streaked Honeyeater,Ptiloprora meekiana,Passeriformes,Meliphagidae (Honeyeaters),, 15884.6,species,rushon1,Rufous-sided Honeyeater,Ptiloprora erythropleura,Passeriformes,Meliphagidae (Honeyeaters),, 15885.5,species,mayhon1,Mayr's Honeyeater,Ptiloprora mayri,Passeriformes,Meliphagidae (Honeyeaters),, 15886,species,rubhon1,Rufous-backed Honeyeater,Ptiloprora guisei,Passeriformes,Meliphagidae (Honeyeaters),, 15887,species,blbhon1,Gray-streaked Honeyeater,Ptiloprora perstriata,Passeriformes,Meliphagidae (Honeyeaters),, 15889,species,banhon1,Banded Honeyeater,Cissomela pectoralis,Passeriformes,Meliphagidae (Honeyeaters),, 15890,species,sunhon1,Sunda Honeyeater,Lichmera lombokia,Passeriformes,Meliphagidae (Honeyeaters),, 15893,species,olihon1,Olive Honeyeater,Lichmera argentauris,Passeriformes,Meliphagidae (Honeyeaters),, 15895,species,brohon1,Brown Honeyeater,Lichmera indistincta,Passeriformes,Meliphagidae (Honeyeaters),, 15897,species,indhon1,Indonesian Honeyeater,Lichmera limbata,Passeriformes,Meliphagidae (Honeyeaters),, 15899,species,dabhon1,Dark-brown Honeyeater,Lichmera incana,Passeriformes,Meliphagidae (Honeyeaters),, 15901,species,whthon2,White-tufted Honeyeater,Lichmera squamata,Passeriformes,Meliphagidae (Honeyeaters),, 15903,species,siehon1,Silver-eared Honeyeater,Lichmera alboauricularis,Passeriformes,Meliphagidae (Honeyeaters),, 15905,species,burhon1,Buru Honeyeater,Lichmera deningeri,Passeriformes,Meliphagidae (Honeyeaters),, 15907,species,serhon1,Seram Honeyeater,Lichmera monticola,Passeriformes,Meliphagidae (Honeyeaters),, 15909,species,yeehon1,Yellow-eared Honeyeater,Lichmera flavicans,Passeriformes,Meliphagidae (Honeyeaters),, 15911,species,blchon1,Black-chested Honeyeater,Lichmera notabilis,Passeriformes,Meliphagidae (Honeyeaters),, 15913,species,crehon2,Crescent Honeyeater,Phylidonyris pyrrhopterus,Passeriformes,Meliphagidae (Honeyeaters),, 15915,species,nehhon2,New Holland Honeyeater,Phylidonyris novaehollandiae,Passeriformes,Meliphagidae (Honeyeaters),, 15917,species,whchon2,White-cheeked Honeyeater,Phylidonyris niger,Passeriformes,Meliphagidae (Honeyeaters),, 15919,species,whshon1,White-streaked Honeyeater,Trichodere cockerelli,Passeriformes,Meliphagidae (Honeyeaters),, 15921,species,whehon1,White-eared Honeyeater,Nesoptilotis leucotis,Passeriformes,Meliphagidae (Honeyeaters),, 15923,species,yethon1,Yellow-throated Honeyeater,Nesoptilotis flavicollis,Passeriformes,Meliphagidae (Honeyeaters),, 15925,species,blfhon1,Blue-faced Honeyeater,Entomyzon cyanotis,Passeriformes,Meliphagidae (Honeyeaters),, 15925.2,issf,bufhon1,Blue-faced Honeyeater (White-quilled),Entomyzon cyanotis albipennis,Passeriformes,Meliphagidae (Honeyeaters),,blfhon1 15925.4,issf,bufhon2,Blue-faced Honeyeater (Blue-faced),Entomyzon cyanotis [cyanotis Group],Passeriformes,Meliphagidae (Honeyeaters),,blfhon1 15925.5,species,whthon1,White-throated Honeyeater,Melithreptus albogularis,Passeriformes,Meliphagidae (Honeyeaters),, 15926,species,whnhon3,Gilbert's Honeyeater,Melithreptus chloropsis,Passeriformes,Meliphagidae (Honeyeaters),, 15927,species,whnhon2,White-naped Honeyeater,Melithreptus lunatus,Passeriformes,Meliphagidae (Honeyeaters),, 15929,species,blhhon1,Black-headed Honeyeater,Melithreptus affinis,Passeriformes,Meliphagidae (Honeyeaters),, 15929.2,species,brhhon1,Brown-headed Honeyeater,Melithreptus brevirostris,Passeriformes,Meliphagidae (Honeyeaters),, 15929.3,species,blchon2,Black-chinned Honeyeater,Melithreptus gularis,Passeriformes,Meliphagidae (Honeyeaters),, 15929.5,issf,bkchon1,Black-chinned Honeyeater (Golden-backed),Melithreptus gularis laetior,Passeriformes,Meliphagidae (Honeyeaters),,blchon2 15931,issf,bkchon2,Black-chinned Honeyeater (Black-chinned),Melithreptus gularis gularis,Passeriformes,Meliphagidae (Honeyeaters),,blchon2 15933,species,stbhon2,Strong-billed Honeyeater,Melithreptus validirostris,Passeriformes,Meliphagidae (Honeyeaters),, 15933.2,spuh,melith1,Melithreptus sp.,Melithreptus sp.,Passeriformes,Meliphagidae (Honeyeaters),, 15935,species,sacmel1,Makira Honeyeater,Meliarchus sclateri,Passeriformes,Meliphagidae (Honeyeaters),, 15937,species,guahon1,Guadalcanal Honeyeater,Guadalcanaria inexpectata,Passeriformes,Meliphagidae (Honeyeaters),, 15939,species,kanhon1,Kadavu Honeyeater,Meliphacator provocator,Passeriformes,Meliphagidae (Honeyeaters),, 15941,species,chagih1,Chattering Giant-Honeyeater,Gymnomyza viridis,Passeriformes,Meliphagidae (Honeyeaters),, 15941.2,species,duegih1,Duetting Giant-Honeyeater,Gymnomyza brunneirostris,Passeriformes,Meliphagidae (Honeyeaters),, 15941.4,species,mao1,Mao,Gymnomyza samoensis,Passeriformes,Meliphagidae (Honeyeaters),, 15943,species,crohon1,Crow Honeyeater,Gymnomyza aubryana,Passeriformes,Meliphagidae (Honeyeaters),, 15945,species,weswah1,Western Wattled-Honeyeater,Foulehaio procerior,Passeriformes,Meliphagidae (Honeyeaters),, 15947,species,easwah1,Eastern Wattled-Honeyeater,Foulehaio carunculatus,Passeriformes,Meliphagidae (Honeyeaters),, 15949,species,norwah1,Northern Wattled-Honeyeater,Foulehaio taviunensis,Passeriformes,Meliphagidae (Honeyeaters),, 15951,species,tabhon1,Tawny-breasted Honeyeater,Xanthotis flaviventer,Passeriformes,Meliphagidae (Honeyeaters),, 15953,species,spohon3,Spotted Honeyeater,Xanthotis polygrammus,Passeriformes,Meliphagidae (Honeyeaters),, 15955,species,machon2,Macleay's Honeyeater,Xanthotis macleayanus,Passeriformes,Meliphagidae (Honeyeaters),, 15957,species,strhon1,Striped Honeyeater,Plectorhyncha lanceolata,Passeriformes,Meliphagidae (Honeyeaters),, 15959,species,paihon1,Painted Honeyeater,Grantiella picta,Passeriformes,Meliphagidae (Honeyeaters),, 15961,species,whsfri1,White-streaked Friarbird,Melitograis gilolensis,Passeriformes,Meliphagidae (Honeyeaters),, 15963,species,litfri1,Little Friarbird,Philemon citreogularis,Passeriformes,Meliphagidae (Honeyeaters),, 15964,species,meyfri1,Meyer's Friarbird,Philemon meyeri,Passeriformes,Meliphagidae (Honeyeaters),, 15965,species,timfri1,Timor Friarbird,Philemon inornatus,Passeriformes,Meliphagidae (Honeyeaters),, 15967,species,gryfri1,Gray Friarbird,Philemon kisserensis,Passeriformes,Meliphagidae (Honeyeaters),, 15969,species,brafri1,Brass's Friarbird,Philemon brassi,Passeriformes,Meliphagidae (Honeyeaters),, 15971,species,dusfri1,Dusky Friarbird,Philemon fuscicapillus,Passeriformes,Meliphagidae (Honeyeaters),, 15973,species,blffri1,Black-faced Friarbird,Philemon moluccensis,Passeriformes,Meliphagidae (Honeyeaters),, 15977,issf,bkffri1,Black-faced Friarbird (Black-faced),Philemon moluccensis moluccensis,Passeriformes,Meliphagidae (Honeyeaters),,blffri1 15979,issf,bkffri2,Black-faced Friarbird (Tanimbar),Philemon moluccensis plumigenis,Passeriformes,Meliphagidae (Honeyeaters),,blffri1 15981,species,serfri1,Seram Friarbird,Philemon subcorniculatus,Passeriformes,Meliphagidae (Honeyeaters),, 15983,species,neifri1,New Ireland Friarbird,Philemon eichhorni,Passeriformes,Meliphagidae (Honeyeaters),, 15985,species,helfri1,Helmeted Friarbird,Philemon buceroides,Passeriformes,Meliphagidae (Honeyeaters),, 15987,issf,helfri3,Helmeted Friarbird (New Guinea),Philemon buceroides novaeguineae,Passeriformes,Meliphagidae (Honeyeaters),,helfri1 15988,issf,helfri4,Helmeted Friarbird (Hornbill),Philemon buceroides yorki,Passeriformes,Meliphagidae (Honeyeaters),,helfri1 15989,issf,helfri2,Helmeted Friarbird (Helmeted),Philemon buceroides [buceroides Group],Passeriformes,Meliphagidae (Honeyeaters),,helfri1 15991,species,whnfri1,White-naped Friarbird,Philemon albitorques,Passeriformes,Meliphagidae (Honeyeaters),, 15995,species,nebfri1,New Britain Friarbird,Philemon cockerelli,Passeriformes,Meliphagidae (Honeyeaters),, 15997,species,sicfri1,Silver-crowned Friarbird,Philemon argenticeps,Passeriformes,Meliphagidae (Honeyeaters),, 15999,species,noifri1,Noisy Friarbird,Philemon corniculatus,Passeriformes,Meliphagidae (Honeyeaters),, 16001,species,necfri1,New Caledonian Friarbird,Philemon diemenensis,Passeriformes,Meliphagidae (Honeyeaters),, 16003,spuh,friarb1,friarbird sp.,Philemon sp.,Passeriformes,Meliphagidae (Honeyeaters),, 16005,spuh,meliph2,Meliphagidae sp.,Meliphagidae sp.,Passeriformes,Meliphagidae (Honeyeaters),, 16011,species,wesbri1,Western Bristlebird,Dasyornis longirostris,Passeriformes,Dasyornithidae (Bristlebirds),Bristlebirds, 16013,species,easbri1,Eastern Bristlebird,Dasyornis brachypterus,Passeriformes,Dasyornithidae (Bristlebirds),, 16015,species,rufbri1,Rufous Bristlebird,Dasyornis broadbenti,Passeriformes,Dasyornithidae (Bristlebirds),, 16017,species,spopar1,Spotted Pardalote,Pardalotus punctatus,Passeriformes,Pardalotidae (Pardalotes),Pardalotes, 16017.2,issf,spopar2,Spotted Pardalote (Wet Tropics),Pardalotus punctatus millitaris,Passeriformes,Pardalotidae (Pardalotes),,spopar1 16017.4,issf,spopar3,Spotted Pardalote (Spotted),Pardalotus punctatus punctatus,Passeriformes,Pardalotidae (Pardalotes),,spopar1 16017.6,issf,spopar4,Spotted Pardalote (Yellow-rumped),Pardalotus punctatus xanthopyge,Passeriformes,Pardalotidae (Pardalotes),,spopar1 16019,species,fospar1,Forty-spotted Pardalote,Pardalotus quadragintus,Passeriformes,Pardalotidae (Pardalotes),, 16021,species,rebpar6,Red-browed Pardalote,Pardalotus rubricatus,Passeriformes,Pardalotidae (Pardalotes),, 16023,species,strpar1,Striated Pardalote,Pardalotus striatus,Passeriformes,Pardalotidae (Pardalotes),, 16025,issf,strpar2,Striated Pardalote (Black-headed),Pardalotus striatus [melanocephalus Group],Passeriformes,Pardalotidae (Pardalotes),,strpar1 16027,issf,strpar3,Striated Pardalote (Eastern),Pardalotus striatus ornatus,Passeriformes,Pardalotidae (Pardalotes),,strpar1 16029,issf,strpar4,Striated Pardalote (Yellow-tipped),Pardalotus striatus striatus,Passeriformes,Pardalotidae (Pardalotes),,strpar1 16031,issf,strpar5,Striated Pardalote (Striated),Pardalotus striatus substriatus,Passeriformes,Pardalotidae (Pardalotes),,strpar1 16033,spuh,pardal1,pardalote sp.,Pardalotus sp.,Passeriformes,Pardalotidae (Pardalotes),, 16033.1,species,dwawhi1,Goldenface,Pachycare flavogriseum,Passeriformes,Acanthizidae (Thornbills and Allies),Thornbills and Allies, 16168,species,pilotb1,Pilotbird,Pycnoptilus floccosus,Passeriformes,Acanthizidae (Thornbills and Allies),, 16171,species,rocwar1,Rockwarbler,Origma solitaria,Passeriformes,Acanthizidae (Thornbills and Allies),, 16172,species,fernwr1,Fernwren,Oreoscopus gutturalis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16173,species,rumwar1,Rusty Mouse-Warbler,Crateroscelis murina,Passeriformes,Acanthizidae (Thornbills and Allies),, 16179,species,bimwar1,Bicolored Mouse-Warbler,Crateroscelis nigrorufa,Passeriformes,Acanthizidae (Thornbills and Allies),, 16182,species,momwar1,Mountain Mouse-Warbler,Crateroscelis robusta,Passeriformes,Acanthizidae (Thornbills and Allies),, 16182.2,spuh,mouse-1,mouse-warbler sp.,Crateroscelis sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, 16189,species,yetscr1,Yellow-throated Scrubwren,Sericornis citreogularis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16193,species,whbscr1,White-browed Scrubwren,Sericornis frontalis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16194,issf,whbscr2,White-browed Scrubwren (Buff-breasted),Sericornis frontalis laevigaster,Passeriformes,Acanthizidae (Thornbills and Allies),,whbscr1 16195,issf,whbscr3,White-browed Scrubwren (Spotted),Sericornis frontalis [maculatus Group],Passeriformes,Acanthizidae (Thornbills and Allies),,whbscr1 16196,issf,whbscr4,White-browed Scrubwren (White-browed),Sericornis frontalis [frontalis Group],Passeriformes,Acanthizidae (Thornbills and Allies),,whbscr1 16204,species,tasscr1,Tasmanian Scrubwren,Sericornis humilis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16207,species,athscr1,Atherton Scrubwren,Sericornis keri,Passeriformes,Acanthizidae (Thornbills and Allies),, 16208,species,becscr1,Tropical Scrubwren,Sericornis beccarii,Passeriformes,Acanthizidae (Thornbills and Allies),, 16220,species,perscr1,Perplexing Scrubwren,Sericornis virgatus,Passeriformes,Acanthizidae (Thornbills and Allies),, 16223,species,larscr1,Large Scrubwren,Sericornis nouhuysi,Passeriformes,Acanthizidae (Thornbills and Allies),, 16230,species,labscr2,Large-billed Scrubwren,Sericornis magnirostra,Passeriformes,Acanthizidae (Thornbills and Allies),, 16234,species,vogscr1,Vogelkop Scrubwren,Sericornis rufescens,Passeriformes,Acanthizidae (Thornbills and Allies),, 16235,species,bufscr1,Buff-faced Scrubwren,Sericornis perspicillatus,Passeriformes,Acanthizidae (Thornbills and Allies),, 16236,species,papscr1,Papuan Scrubwren,Sericornis papuensis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16240,species,gygscr1,Gray-green Scrubwren,Sericornis arfakianus,Passeriformes,Acanthizidae (Thornbills and Allies),, 16241,species,pabscr1,Pale-billed Scrubwren,Sericornis spilodera,Passeriformes,Acanthizidae (Thornbills and Allies),, 16244,spuh,scrubw1,scrubwren sp.,Sericornis sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, 16249,species,scrubt2,Scrubtit,Acanthornis magna,Passeriformes,Acanthizidae (Thornbills and Allies),, 16252,species,redthr1,Redthroat,Pyrrholaemus brunneus,Passeriformes,Acanthizidae (Thornbills and Allies),, 16253,species,spewar3,Speckled Warbler,Pyrrholaemus sagittatus,Passeriformes,Acanthizidae (Thornbills and Allies),, 16254,species,ruffie1,Rufous Fieldwren,Calamanthus campestris,Passeriformes,Acanthizidae (Thornbills and Allies),, 16254.5,issf,ruffie2,Rufous Fieldwren (Rufous),Calamanthus campestris [campestris Group],Passeriformes,Acanthizidae (Thornbills and Allies),,ruffie1 16262.5,issf,ruffie3,Rufous Fieldwren (Western),Calamanthus campestris montanellus,Passeriformes,Acanthizidae (Thornbills and Allies),,ruffie1 16263,species,strfie1,Striated Fieldwren,Calamanthus fuliginosus,Passeriformes,Acanthizidae (Thornbills and Allies),, 16268,species,chrhea1,Chestnut-rumped Heathwren,Hylacola pyrrhopygia,Passeriformes,Acanthizidae (Thornbills and Allies),, 16272,species,shyhea1,Shy Heathwren,Hylacola cauta,Passeriformes,Acanthizidae (Thornbills and Allies),, 16277,species,paptho1,Papuan Thornbill,Acanthiza murina,Passeriformes,Acanthizidae (Thornbills and Allies),, 16278,species,burtho1,Buff-rumped Thornbill,Acanthiza reguloides,Passeriformes,Acanthizidae (Thornbills and Allies),, 16283,species,westho1,Western Thornbill,Acanthiza inornata,Passeriformes,Acanthizidae (Thornbills and Allies),, 16284,species,slbtho2,Slender-billed Thornbill,Acanthiza iredalei,Passeriformes,Acanthizidae (Thornbills and Allies),, 16288,species,moutho1,Mountain Thornbill,Acanthiza katherina,Passeriformes,Acanthizidae (Thornbills and Allies),, 16289,species,brotho1,Brown Thornbill,Acanthiza pusilla,Passeriformes,Acanthizidae (Thornbills and Allies),, 16295,species,tastho1,Tasmanian Thornbill,Acanthiza ewingii,Passeriformes,Acanthizidae (Thornbills and Allies),, 16297.5,slash,y00973,Brown/Tasmanian Thornbill,Acanthiza pusilla/ewingii,Passeriformes,Acanthizidae (Thornbills and Allies),, 16298,species,inltho1,Inland Thornbill,Acanthiza apicalis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16303,species,yertho1,Yellow-rumped Thornbill,Acanthiza chrysorrhoa,Passeriformes,Acanthizidae (Thornbills and Allies),, 16308,species,chrtho1,Chestnut-rumped Thornbill,Acanthiza uropygialis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16309,species,slbtho1,Slaty-backed Thornbill,Acanthiza robustirostris,Passeriformes,Acanthizidae (Thornbills and Allies),, 16310,species,yeltho1,Yellow Thornbill,Acanthiza nana,Passeriformes,Acanthizidae (Thornbills and Allies),, 16312,species,mouger1,Gray Thornbill,Acanthiza cinerea,Passeriformes,Acanthizidae (Thornbills and Allies),, 16314,species,strtho1,Striated Thornbill,Acanthiza lineata,Passeriformes,Acanthizidae (Thornbills and Allies),, 16316,spuh,thornb1,thornbill sp.,Acanthiza sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, 16319,species,weebil1,Weebill,Smicrornis brevirostris,Passeriformes,Acanthizidae (Thornbills and Allies),, 16325,species,gnbger1,Green-backed Gerygone,Gerygone chloronota,Passeriformes,Acanthizidae (Thornbills and Allies),, 16330,species,faiger1,Fairy Gerygone,Gerygone palpebrosa,Passeriformes,Acanthizidae (Thornbills and Allies),, 16332,issf,faiger2,Fairy Gerygone (Black-throated),Gerygone palpebrosa [palpebrosa Group],Passeriformes,Acanthizidae (Thornbills and Allies),,faiger1 16334,issf,faiger3,Fairy Gerygone (Fairy),Gerygone palpebrosa flavida,Passeriformes,Acanthizidae (Thornbills and Allies),,faiger1 16337,species,biager1,Biak Gerygone,Gerygone hypoxantha,Passeriformes,Acanthizidae (Thornbills and Allies),, 16338,species,whtger1,White-throated Gerygone,Gerygone olivacea,Passeriformes,Acanthizidae (Thornbills and Allies),, 16342,species,yebger1,Yellow-bellied Gerygone,Gerygone chrysogaster,Passeriformes,Acanthizidae (Thornbills and Allies),, 16348,species,labger1,Large-billed Gerygone,Gerygone magnirostris,Passeriformes,Acanthizidae (Thornbills and Allies),, 16361,species,dusger1,Dusky Gerygone,Gerygone tenebrosa,Passeriformes,Acanthizidae (Thornbills and Allies),, 16364,species,broger1,Brown Gerygone,Gerygone mouki,Passeriformes,Acanthizidae (Thornbills and Allies),, 16368,species,gobger1,Golden-bellied Gerygone,Gerygone sulphurea,Passeriformes,Acanthizidae (Thornbills and Allies),, 16373,species,plager1,Plain Gerygone,Gerygone inornata,Passeriformes,Acanthizidae (Thornbills and Allies),, 16374,species,rusger1,Rufous-sided Gerygone,Gerygone dorsalis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16380,species,brbger1,Brown-breasted Gerygone,Gerygone ruficollis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16383,species,wesger1,Western Gerygone,Gerygone fusca,Passeriformes,Acanthizidae (Thornbills and Allies),, 16387,species,manger1,Mangrove Gerygone,Gerygone levigaster,Passeriformes,Acanthizidae (Thornbills and Allies),, 16390,species,noiger1,Norfolk Island Gerygone,Gerygone modesta,Passeriformes,Acanthizidae (Thornbills and Allies),, 16391,species,lohger1,Lord Howe Gerygone,Gerygone insularis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16392,species,gryger1,Gray Gerygone,Gerygone igata,Passeriformes,Acanthizidae (Thornbills and Allies),, 16393,species,chiger2,Chatham Island Gerygone,Gerygone albofrontata,Passeriformes,Acanthizidae (Thornbills and Allies),, 16394,species,fatger1,Fan-tailed Gerygone,Gerygone flavolateralis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16394.2,issf,fatger2,Fan-tailed Gerygone (Fan-tailed),Gerygone flavolateralis [flavolateralis Group],Passeriformes,Acanthizidae (Thornbills and Allies),,fatger1 16394.4,issf,fatger3,Fan-tailed Gerygone (Rennell),Gerygone flavolateralis citrina,Passeriformes,Acanthizidae (Thornbills and Allies),,fatger1 16400,spuh,gerygo1,gerygone sp.,Gerygone sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, 16401,species,souwhi1,Southern Whiteface,Aphelocephala leucopsis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16404,species,chbwhi1,Chestnut-breasted Whiteface,Aphelocephala pectoralis,Passeriformes,Acanthizidae (Thornbills and Allies),, 16405,species,banwhi1,Banded Whiteface,Aphelocephala nigricincta,Passeriformes,Acanthizidae (Thornbills and Allies),, 16406,species,negbab1,Papuan Babbler,Pomatostomus isidorei,Passeriformes,Pomatostomidae (Pseudo-Babblers),Pseudo-Babblers, 16409,species,gycbab1,Gray-crowned Babbler,Pomatostomus temporalis,Passeriformes,Pomatostomidae (Pseudo-Babblers),, 16413,species,whbbab3,White-browed Babbler,Pomatostomus superciliosus,Passeriformes,Pomatostomidae (Pseudo-Babblers),, 16418,species,halbab1,Hall's Babbler,Pomatostomus halli,Passeriformes,Pomatostomidae (Pseudo-Babblers),, 16419,species,chcbab2,Chestnut-crowned Babbler,Pomatostomus ruficeps,Passeriformes,Pomatostomidae (Pseudo-Babblers),, 16419.5,spuh,pseudo1,pseudo-babbler sp.,Pomatostomus sp.,Passeriformes,Pomatostomidae (Pseudo-Babblers),, 16420,species,norlog1,Papuan Logrunner,Orthonyx novaeguineae,Passeriformes,Orthonychidae (Logrunners),Logrunners, 16424,species,soulog1,Australian Logrunner,Orthonyx temminckii,Passeriformes,Orthonychidae (Logrunners),, 16425,species,chowch1,Chowchilla,Orthonyx spaldingii,Passeriformes,Orthonychidae (Logrunners),, 16428,species,lorsat1,Loria's Satinbird,Cnemophilus loriae,Passeriformes,Cnemophilidae (Satinbirds),Satinbirds, 16432,species,cresat1,Crested Satinbird,Cnemophilus macgregorii,Passeriformes,Cnemophilidae (Satinbirds),, 16432.2,issf,cresat2,Crested Satinbird (Red),Cnemophilus macgregorii sanguineus,Passeriformes,Cnemophilidae (Satinbirds),,cresat1 16432.4,issf,cresat3,Crested Satinbird (Yellow),Cnemophilus macgregorii macgregorii,Passeriformes,Cnemophilidae (Satinbirds),,cresat1 16435,species,yebsat1,Yellow-breasted Satinbird,Loboparadisea sericea,Passeriformes,Cnemophilidae (Satinbirds),, 16438,species,obsber1,Obscure Berrypecker,Melanocharis arfakiana,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),Berrypeckers and Longbills, 16439,species,blaber1,Black Berrypecker,Melanocharis nigra,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16444,species,lebber1,Mid-mountain Berrypecker,Melanocharis longicauda,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16450,species,fatber1,Fan-tailed Berrypecker,Melanocharis versteri,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16455,species,strber1,Streaked Berrypecker,Melanocharis striativentris,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16460,species,spober1,Spotted Berrypecker,Melanocharis crassirostris,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16460.2,issf,spober2,Spotted Berrypecker (Thick-billed),Melanocharis crassirostris crassirostris,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),,spober1 16460.4,issf,spober3,Spotted Berrypecker (Spotted),Melanocharis crassirostris piperata/viridescens,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),,spober1 16460.6,spuh,melber1,Melanocharis berrypecker sp.,Melanocharis sp.,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16464,species,yeblon1,Yellow-bellied Longbill,Toxorhamphus novaeguineae,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16467,species,slclon1,Slaty-chinned Longbill,Toxorhamphus poliopterus,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16467.2,slash,y00888,Yellow-bellied/Slaty-chinned Longbill,Toxorhamphus novaeguineae/poliopterus,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16470,species,dwahon2,Spectacled Longbill,Oedistoma iliolophus,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16476,species,pyghon1,Pygmy Longbill,Oedistoma pygmaeum,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, 16481.3,species,whiteh1,Whitehead,Mohoua albicilla,Passeriformes,Mohouidae (Whiteheads),Whiteheads, 16481.6,species,yellow3,Yellowhead,Mohoua ochrocephala,Passeriformes,Mohouidae (Whiteheads),, 16481.9,species,pipipi1,Pipipi,Mohoua novaeseelandiae,Passeriformes,Mohouidae (Whiteheads),, 16482,species,titber1,Tit Berrypecker,Oreocharis arfaki,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),Tit Berrypecker and Crested Berrypecker, 16483,species,creber1,Crested Berrypecker,Paramythia montium,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),, 16483.2,issf,creber2,Crested Berrypecker (Eastern),Paramythia montium montium/brevicauda,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),,creber1 16483.4,issf,creber3,Crested Berrypecker (Western),Paramythia montium olivacea/alpina,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),,creber1 16489,species,kokako3,North Island Kokako,Callaeas wilsoni,Passeriformes,Callaeidae (Wattlebirds),Wattlebirds, 16490,species,kokako4,South Island Kokako,Callaeas cinereus,Passeriformes,Callaeidae (Wattlebirds),, 16492,species,saddle2,North Island Saddleback,Philesturnus rufusater,Passeriformes,Callaeidae (Wattlebirds),, 16493,species,saddle3,South Island Saddleback,Philesturnus carunculatus,Passeriformes,Callaeidae (Wattlebirds),, 16494,species,huia1,Huia,Heteralocha acutirostris,Passeriformes,Callaeidae (Wattlebirds),, 16495,species,stitch1,Stitchbird,Notiomystis cincta,Passeriformes,Notiomystidae (Stitchbird),Stitchbird, 16498,species,papwhi1,Papuan Whipbird,Androphobus viridis,Passeriformes,Psophodidae (Whipbirds and Wedgebills),Whipbirds and Wedgebills, 16499,species,easwhi1,Eastern Whipbird,Psophodes olivaceus,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, 16502,species,weswhi1,Western Whipbird,Psophodes nigrogularis,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, 16502.2,issf,weswhi3,Western Whipbird (Black-throated),Psophodes nigrogularis nigrogularis/oberon,Passeriformes,Psophodidae (Whipbirds and Wedgebills),,weswhi1 16502.4,issf,weswhi4,Western Whipbird (White-bellied),Psophodes nigrogularis leucogaster/lashmari,Passeriformes,Psophodidae (Whipbirds and Wedgebills),,weswhi1 16507,species,chiwed1,Chiming Wedgebill,Psophodes occidentalis,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, 16508,species,chiwed2,Chirruping Wedgebill,Psophodes cristatus,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, 16509,species,spqthr1,Spotted Quail-thrush,Cinclosoma punctatum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),Quail-thrushes and Jewel-babblers, 16513,species,chequt1,Chestnut Quail-thrush,Cinclosoma castanotum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16513.2,species,copqut1,Copperback Quail-thrush,Cinclosoma clarum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16517,species,cbqthr1,Chestnut-breasted Quail-thrush,Cinclosoma castaneothorax,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16518,species,chbqut1,Western Quail-thrush,Cinclosoma marginatum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16520,species,ciqthr1,Cinnamon Quail-thrush,Cinclosoma cinnamomeum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16522,species,nulqut1,Nullarbor Quail-thrush,Cinclosoma alisteri,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16523,species,paqthr1,Painted Quail-thrush,Cinclosoma ajax,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16528,species,spjbab1,Spotted Jewel-babbler,Ptilorrhoa leucosticta,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16536,species,bljbab1,Blue Jewel-babbler,Ptilorrhoa caerulescens,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16536.5,issf,blujeb1,Blue Jewel-babbler (Blue),Ptilorrhoa caerulescens [caerulescens Group],Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),,bljbab1 16540,issf,blujeb2,Blue Jewel-babbler (Brown-headed),Ptilorrhoa caerulescens geislerorum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),,bljbab1 16541,species,cbjbab1,Chestnut-backed Jewel-babbler,Ptilorrhoa castanonota,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16541.2,spuh,jewel-1,jewel-babbler sp.,Ptilorrhoa sp.,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, 16549,species,whtshr1,White-tailed Shrike,Lanioturdus torquatus,Passeriformes,Platysteiridae (Wattle-eyes and Batises),Wattle-eyes and Batises, 16550,species,btweye2,Brown-throated Wattle-eye,Platysteira cyanea,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16554,species,wfweye1,White-fronted Wattle-eye,Platysteira albifrons,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16555,species,btweye1,Black-throated Wattle-eye,Platysteira peltata,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16559,species,baweye1,Banded Wattle-eye,Platysteira laticincta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16560,species,chweye1,Chestnut Wattle-eye,Platysteira castanea,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16561,species,weawae1,West African Wattle-eye,Platysteira hormophora,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16562,species,wsweye1,White-spotted Wattle-eye,Platysteira tonsa,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16563,species,rcweye1,Red-cheeked Wattle-eye,Platysteira blissetti,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16564,species,bnweye1,Black-necked Wattle-eye,Platysteira chalybea,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16565,species,jaweye1,Jameson's Wattle-eye,Platysteira jamesoni,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16566,species,ybweye1,Yellow-bellied Wattle-eye,Platysteira concreta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16567,issf,yebwae1,Yellow-bellied Wattle-eye (West African),Platysteira concreta concreta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 16569,issf,yebwae2,Yellow-bellied Wattle-eye (Angolan),Platysteira concreta ansorgei,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 16570,issf,yebwae3,Yellow-bellied Wattle-eye (Central African),Platysteira concreta graueri,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 16571,issf,yebwae4,Yellow-bellied Wattle-eye (Kungwe),Platysteira concreta kungwensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 16571.2,spuh,wattle2,wattle-eye sp.,Platysteira sp.,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16572,species,boubat1,Boulton's Batis,Batis margaritae,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16573,issf,boubat2,Boulton's Batis (Angolan),Batis margaritae margaritae,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,boubat1 16574,issf,boubat3,Boulton's Batis (Eastern),Batis margaritae kathleenae,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,boubat1 16575,species,shtbat1,Short-tailed Batis,Batis mixta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16576,issf,shtbat2,Short-tailed Batis (Short-tailed),Batis mixta mixta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,shtbat1 16577,issf,shtbat3,Short-tailed Batis (Reichenow's),Batis mixta reichenowi,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,shtbat1 16578,species,darbat1,Dark Batis,Batis crypta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16579,species,ruwbat1,Ruwenzori Batis,Batis diops,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16580,species,capbat1,Cape Batis,Batis capensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16580.5,issf,capbat2,Cape Batis (Malawi),Batis capensis dimorpha/sola,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,capbat1 16581,issf,capbat3,Cape Batis (Gray-mantled),Batis capensis [erythrophthalma Group],Passeriformes,Platysteiridae (Wattle-eyes and Batises),,capbat1 16584,issf,capbat4,Cape Batis (Cape),Batis capensis capensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,capbat1 16587,species,woobat1,Woodward's Batis,Batis fratrum,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16588,species,chibat1,Chinspot Batis,Batis molitor,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16593,species,palbat1,Pale Batis,Batis soror,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16594,species,pribat1,Pririt Batis,Batis pririt,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16597,species,senbat1,Senegal Batis,Batis senegalensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16598,species,gyhbat1,Gray-headed Batis,Batis orientalis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16603,species,blhbat1,Black-headed Batis,Batis minor,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16604,issf,bkhbat1,Black-headed Batis (Western),Batis minor erlangeri,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,blhbat1 16605,issf,bkhbat2,Black-headed Batis (Eastern),Batis minor minor/suahelicus,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,blhbat1 16608,species,pygbat1,Pygmy Batis,Batis perkeo,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16609,species,verbat1,Verreaux's Batis,Batis minima,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16610,species,itubat1,Ituri Batis,Batis ituriensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16610.5,species,fepbat1,Bioko Batis,Batis poensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16611,species,weabat1,West African Batis,Batis occulta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16612,species,angbat1,Angola Batis,Batis minulla,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16613,spuh,batis1,Batis sp.,Batis sp.,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, 16614,species,whihel1,White Helmetshrike,Prionops plumatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)","Vangas, Helmetshrikes, and Allies", 16615,issf,whihel2,White Helmetshrike (Long-crested),Prionops plumatus plumatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,whihel1 16615.5,issf,whihel3,White Helmetshrike (Yellow-eyed),Prionops plumatus [poliocephalus Group],Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,whihel1 16620,species,gychel1,Gray-crested Helmetshrike,Prionops poliolophus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16621,species,yechel1,Yellow-crested Helmetshrike,Prionops alberti,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16622,species,chbhel1,Red-billed Helmetshrike,Prionops caniceps,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16623,issf,rebhel1,Red-billed Helmetshrike (Red-billed),Prionops caniceps caniceps,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chbhel1 16624,issf,rebhel2,Red-billed Helmetshrike (Gray-cheeked),Prionops caniceps harterti,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chbhel1 16625,species,rubhel1,Rufous-bellied Helmetshrike,Prionops rufiventris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16628,species,rethel1,Retz's Helmetshrike,Prionops retzii,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16633,species,anghel1,Angola Helmetshrike,Prionops gabela,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16634,species,chfhel1,Chestnut-fronted Helmetshrike,Prionops scopifrons,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16638,species,afrshf1,African Shrike-flycatcher,Megabyas flammulatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16641,species,bawfly1,Black-and-white Shrike-flycatcher,Bias musicus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16645,species,malwoo1,Malabar Woodshrike,Tephrodornis sylvicola,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16646,species,larwoo1,Large Woodshrike,Tephrodornis virgatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16657,species,comwoo1,Common Woodshrike,Tephrodornis pondicerianus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16658,slash,y00663,Large/Common Woodshrike,Tephrodornis virgatus/pondicerianus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16661,species,srlwoo1,Sri Lanka Woodshrike,Tephrodornis affinis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16662,species,bwfshr1,Bar-winged Flycatcher-shrike,Hemipus picatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16667,species,bwfshr2,Black-winged Flycatcher-shrike,Hemipus hirundinaceus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16668,species,ruwphi2,Rufous-winged Philentoma,Philentoma pyrhoptera,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16671,species,mabphi2,Maroon-breasted Philentoma,Philentoma velata,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16671.2,slash,y00889,Rufous-winged/Maroon-breasted Philentoma,Philentoma pyrhoptera/velata,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16674,species,arcnew1,Archbold's Newtonia,Newtonia archboldi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16675,species,comnew1,Common Newtonia,Newtonia brunneicauda,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16678,species,darnew1,Dark Newtonia,Newtonia amphichroa,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16679,species,retnew1,Red-tailed Newtonia,Newtonia fanovanae,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16680,species,tylvan1,Tylas Vanga,Tylas eduardi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16681,issf,tylvan2,Tylas Vanga (Eduard's),Tylas eduardi eduardi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,tylvan1 16682,issf,tylvan3,Tylas Vanga (White-throated),Tylas eduardi albigularis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,tylvan1 16683,species,retvan1,Red-tailed Vanga,Calicalicus madagascariensis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16684,species,resvan1,Red-shouldered Vanga,Calicalicus rufocarpalis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16685,species,nuthat2,Nuthatch-Vanga,Hypositta corallirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16686,species,chavan2,Chabert Vanga,Leptopterus chabert,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16687,issf,chavan1,Chabert Vanga (Chabert),Leptopterus chabert chabert,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chavan2 16688,issf,chavan3,Chabert Vanga (White-tailed),Leptopterus chabert schistocercus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chavan2 16689,species,crobab1,Crossley's Vanga,Mystacornis crossleyi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16690,species,bluvan1,Blue Vanga,Cyanolanius madagascarinus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16691,issf,bluvan3,Blue Vanga (Madagascar),Cyanolanius madagascarinus madagascarinus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,bluvan1 16692,issf,bluvan2,Blue Vanga (Comoro),Cyanolanius madagascarinus comorensis/bensoni,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,bluvan1 16695,species,hobvan1,Hook-billed Vanga,Vanga curvirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16696,issf,hobvan2,Hook-billed Vanga (Hook-billed),Vanga curvirostris curvirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,hobvan1 16697,issf,hobvan3,Hook-billed Vanga (Black-crowned),Vanga curvirostris cetera,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,hobvan1 16697.5,species,warfly1,Ward's Flycatcher,Pseudobias wardi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16698,species,rufvan1,Rufous Vanga,Schetba rufa,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16701,species,helvan1,Helmet Vanga,Euryceros prevostii,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16702,species,bervan1,Bernier's Vanga,Oriolia bernieri,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16703,species,sibvan1,Sickle-billed Vanga,Falculea palliata,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16704,species,whhvan1,White-headed Vanga,Artamella viridis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16707,species,polvan1,Pollen's Vanga,Xenopirostris polleni,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16708,species,lafvan1,Lafresnaye's Vanga,Xenopirostris xenopirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16709,species,vadvan1,Van Dam's Vanga,Xenopirostris damii,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16709.2,spuh,vangid1,Vangidae sp.,Vangidae sp.,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, 16710,species,brubru1,Brubru,Nilaus afer,Passeriformes,Malaconotidae (Bushshrikes and Allies),Bushshrikes and Allies, 16720,species,norpuf1,Northern Puffback,Dryoscopus gambensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16725,species,pripuf1,Pringle's Puffback,Dryoscopus pringlii,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16726,species,blbpuf2,Black-backed Puffback,Dryoscopus cubla,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16732,species,reepuf1,Red-eyed Puffback,Dryoscopus senegalensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16733,species,pifpuf1,Pink-footed Puffback,Dryoscopus angolensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16737,species,labpuf1,Sabine's Puffback,Dryoscopus sabini,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16740,spuh,puffba1,puffback sp.,Dryoscopus sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16741,species,martch2,Marsh Tchagra,Tchagra minutus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16741.5,issf,martch1,Marsh Tchagra (Marsh),Tchagra minutus minutus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,martch2 16741.8,issf,martch3,Marsh Tchagra (Anchieta's),Tchagra minutus anchietae/reichenowi,Passeriformes,Malaconotidae (Bushshrikes and Allies),,martch2 16744,species,bkctch1,Black-crowned Tchagra,Tchagra senegalus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16745,issf,bkctch2,Black-crowned Tchagra (Hooded),Tchagra senegalus cucullatus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,bkctch1 16745.5,issf,bkctch3,Black-crowned Tchagra (Black-crowned),Tchagra senegalus [senegalus Group],Passeriformes,Malaconotidae (Bushshrikes and Allies),,bkctch1 16755,species,brctch1,Brown-crowned Tchagra,Tchagra australis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16765,species,thstch1,Three-streaked Tchagra,Tchagra jamesi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16768,species,soutch1,Southern Tchagra,Tchagra tchagra,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16771,spuh,tchagr1,Tchagra sp.,Tchagra sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16772,species,renbus1,Red-naped Bushshrike,Laniarius ruficeps,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16775.5,species,sombou1,Coastal Boubou,Laniarius nigerrimus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16776,species,luebus1,LŸhder's Bushshrike,Laniarius luehderi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16777,species,brabus1,Braun's Bushshrike,Laniarius brauni,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16778,species,gabbus1,Gabela Bushshrike,Laniarius amboimensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16779,species,turbou1,Turati's Boubou,Laniarius turatii,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16780,species,trobou2,Ethiopian Boubou,Laniarius aethiopicus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16780.5,species,trobou1,Tropical Boubou,Laniarius major,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16787,species,zanbou1,Zanzibar Boubou,Laniarius sublacteus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16788,species,gabbou1,Gabon Boubou,Laniarius bicolor,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16788.5,issf,gabbou2,Gabon Boubou (Gabon),Laniarius bicolor bicolor/guttatus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,gabbou1 16791,issf,gabbou3,Gabon Boubou (Okavango),Laniarius bicolor sticturus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,gabbou1 16792,species,soubou1,Southern Boubou,Laniarius ferrugineus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16799,species,comgon1,Yellow-crowned Gonolek,Laniarius barbarus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16802,species,blhgon1,Black-headed Gonolek,Laniarius erythrogaster,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16803,species,crbgon1,Crimson-breasted Gonolek,Laniarius atrococcineus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16804,species,papgon1,Papyrus Gonolek,Laniarius mufumbiri,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16805,species,yebbou1,Yellow-breasted Boubou,Laniarius atroflavus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16806,species,slcbou1,Slate-colored Boubou,Laniarius funebris,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16808,species,soobou1,Lowland Sooty Boubou,Laniarius leucorhynchus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16809,species,wisbou1,Willard's Sooty Boubou,Laniarius willardi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16810,species,mosbou1,Mountain Sooty Boubou,Laniarius poensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16811,issf,mosbou2,Mountain Sooty Boubou (Cameroon),Laniarius poensis camerunensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,mosbou1 16812,issf,mosbou3,Mountain Sooty Boubou (Bioko),Laniarius poensis poensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,mosbou1 16813,issf,mosbou4,Mountain Sooty Boubou (Ruwenzori),Laniarius poensis holomelas,Passeriformes,Malaconotidae (Bushshrikes and Allies),,mosbou1 16814,species,fuebou1,FŸlleborn's Boubou,Laniarius fuelleborni,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16815,issf,fuebou2,FŸlleborn's Boubou (Usambara),Laniarius fuelleborni usambaricus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,fuebou1 16816,issf,fuebou3,FŸlleborn's Boubou (FŸlleborn's),Laniarius fuelleborni fuelleborni,Passeriformes,Malaconotidae (Bushshrikes and Allies),,fuebou1 16817,spuh,boubou1,boubou sp.,Laniarius sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16818,species,ropbus1,Rosy-patched Bushshrike,Rhodophoneus cruentus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16823,species,bokmak1,Bokmakierie,Telophorus zeylonus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16823.5,issf,bokmak2,Bokmakierie (Southern),Telophorus zeylonus [zeylonus Group],Passeriformes,Malaconotidae (Bushshrikes and Allies),,bokmak1 16827.5,issf,bokmak3,Bokmakierie (Chimanimani),Telophorus zeylonus restrictus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,bokmak1 16828,species,gygbus1,Gray-green Bushshrike,Telophorus bocagei,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16830,species,subbus1,Sulphur-breasted Bushshrike,Telophorus sulfureopectus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16833,species,olibus1,Olive Bushshrike,Telophorus olivaceus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16839,species,macbus2,Many-colored Bushshrike,Telophorus multicolor,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16843,species,blfbus1,Black-fronted Bushshrike,Telophorus nigrifrons,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16847,species,mtkbus1,Mount Kupe Bushshrike,Telophorus kupeensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16848,species,focbus2,Four-colored Bushshrike,Telophorus viridis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16849,issf,focbus1,Four-colored Bushshrike (Gorgeous),Telophorus viridis viridis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,focbus2 16850.5,issf,focbus3,Four-colored Bushshrike (Four-colored),Telophorus viridis [quadricolor Group],Passeriformes,Malaconotidae (Bushshrikes and Allies),,focbus2 16854,species,dohbus1,Doherty's Bushshrike,Telophorus dohertyi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16854.1,species,fibbus1,Fiery-breasted Bushshrike,Malaconotus cruentus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16855,species,lagbus1,Lagden's Bushshrike,Malaconotus lagdeni,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16856,issf,lagbus2,Lagden's Bushshrike (Lagden's),Malaconotus lagdeni lagdeni,Passeriformes,Malaconotidae (Bushshrikes and Allies),,lagbus1 16857,issf,lagbus3,Lagden's Bushshrike (Eastern),Malaconotus lagdeni centralis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,lagbus1 16858,species,grbbus1,Green-breasted Bushshrike,Malaconotus gladiator,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16859,species,gyhbus1,Gray-headed Bushshrike,Malaconotus blanchoti,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16867,species,monbus1,Monteiro's Bushshrike,Malaconotus monteiri,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16868,issf,monbus2,Monteiro's Bushshrike (Mt. Cameroon),Malaconotus monteiri perspicillatus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,monbus1 16869,issf,monbus3,Monteiro's Bushshrike (Monteiro's),Malaconotus monteiri monteiri,Passeriformes,Malaconotidae (Bushshrikes and Allies),,monbus1 16870,species,ulubus1,Uluguru Bushshrike,Malaconotus alius,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16871,spuh,bushsh1,bushshrike sp.,Telophorus/Malaconotus sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, 16872,species,blbboa1,Black-breasted Boatbill,Machaerirhynchus nigripectus,Passeriformes,Machaerirhynchidae (Boatbills),Boatbills, 16876,species,yebboa1,Yellow-breasted Boatbill,Machaerirhynchus flaviventer,Passeriformes,Machaerirhynchidae (Boatbills),, 16883,species,ashwoo2,Ashy Woodswallow,Artamus fuscus,Passeriformes,Artamidae (Woodswallows),Woodswallows, 16884,species,fijwoo1,Fiji Woodswallow,Artamus mentalis,Passeriformes,Artamidae (Woodswallows),, 16885,species,whbwoo8,Ivory-backed Woodswallow,Artamus monachus,Passeriformes,Artamidae (Woodswallows),, 16886,species,grewoo1,Great Woodswallow,Artamus maximus,Passeriformes,Artamidae (Woodswallows),, 16887,species,whbwoo4,White-breasted Woodswallow,Artamus leucorynchus,Passeriformes,Artamidae (Woodswallows),, 16897,species,biswoo1,Bismarck Woodswallow,Artamus insignis,Passeriformes,Artamidae (Woodswallows),, 16898,species,maswoo1,Masked Woodswallow,Artamus personatus,Passeriformes,Artamidae (Woodswallows),, 16898.5,species,whbwoo5,White-browed Woodswallow,Artamus superciliosus,Passeriformes,Artamidae (Woodswallows),, 16898.7,slash,y01039,Masked/White-browed Woodswallow,Artamus personatus/superciliosus,Passeriformes,Artamidae (Woodswallows),, 16899,species,blfwoo1,Black-faced Woodswallow,Artamus cinereus,Passeriformes,Artamidae (Woodswallows),, 16899.5,issf,bkfwoo1,Black-faced Woodswallow (White-vented),Artamus cinereus normani/dealbatus,Passeriformes,Artamidae (Woodswallows),,blfwoo1 16902,issf,bkfwoo2,Black-faced Woodswallow (Black-vented),Artamus cinereus [cinereus Group],Passeriformes,Artamidae (Woodswallows),,blfwoo1 16905,species,duswoo1,Dusky Woodswallow,Artamus cyanopterus,Passeriformes,Artamidae (Woodswallows),, 16908,species,litwoo4,Little Woodswallow,Artamus minor,Passeriformes,Artamidae (Woodswallows),, 16911,spuh,woodsw1,woodswallow sp.,Artamus sp.,Passeriformes,Artamidae (Woodswallows),, 16912,species,moupel1,Mountain Peltops,Peltops montanus,Passeriformes,Cracticidae (Bellmagpies and Allies),Bellmagpies and Allies, 16913,species,lowpel1,Lowland Peltops,Peltops blainvillii,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16914,species,blbbut1,Black-backed Butcherbird,Cracticus mentalis,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16917,species,grybut1,Gray Butcherbird,Cracticus torquatus,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16921,species,sibbut1,Silver-backed Butcherbird,Cracticus argenteus,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16924,species,hoobut1,Hooded Butcherbird,Cracticus cassicus,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16927,species,tagbut1,Tagula Butcherbird,Cracticus louisiadensis,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16928,species,piebut1,Pied Butcherbird,Cracticus nigrogularis,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16931,species,blabut1,Black Butcherbird,Cracticus quoyi,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16933.9,species,ausmag2,Australian Magpie,Gymnorhina tibicen,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16936,issf,ausmag1,Australian Magpie (Papuan),Gymnorhina tibicen papuana,Passeriformes,Cracticidae (Bellmagpies and Allies),,ausmag2 16936.5,issf,ausmag3,Australian Magpie (Black-backed),Gymnorhina tibicen [tibicen Group],Passeriformes,Cracticidae (Bellmagpies and Allies),,ausmag2 16938,issf,ausmag6,Australian Magpie (Western),Gymnorhina tibicen dorsalis,Passeriformes,Cracticidae (Bellmagpies and Allies),,ausmag2 16941,intergrade,ausmag4,Australian Magpie (Black-backed x Western),Gymnorhina tibicen [tibicen Group] x dorsalis,Passeriformes,Cracticidae (Bellmagpies and Allies),,ausmag2 16942,issf,ausmag7,Australian Magpie (White-backed),Gymnorhina tibicen telonocua/tyrannica,Passeriformes,Cracticidae (Bellmagpies and Allies),,ausmag2 16945,intergrade,ausmag5,Australian Magpie (Black-backed x White-backed),Gymnorhina tibicen [tibicen Group] x telonocua/tyrannica,Passeriformes,Cracticidae (Bellmagpies and Allies),,ausmag2 16946,issf,ausmag8,Australian Magpie (Tasmanian),Gymnorhina tibicen hypoleuca,Passeriformes,Cracticidae (Bellmagpies and Allies),,ausmag2 16947,species,piecur1,Pied Currawong,Strepera graculina,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16953.4,species,blacur2,Black Currawong,Strepera fuliginosa,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16956,species,grycur1,Gray Currawong,Strepera versicolor,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16957,issf,grycur2,Gray Currawong (Gray),Strepera versicolor versicolor/plumbea,Passeriformes,Cracticidae (Bellmagpies and Allies),,grycur1 16961,issf,grycur3,Gray Currawong (Clinking),Strepera versicolor arguta,Passeriformes,Cracticidae (Bellmagpies and Allies),,grycur1 16962,issf,grycur4,Gray Currawong (Black-winged),Strepera versicolor melanoptera,Passeriformes,Cracticidae (Bellmagpies and Allies),,grycur1 16963,issf,grycur5,Gray Currawong (Brown),Strepera versicolor intermedia,Passeriformes,Cracticidae (Bellmagpies and Allies),,grycur1 16964,issf,grycur6,Gray Currawong (Kangaroo I.),Strepera versicolor halmaturina,Passeriformes,Cracticidae (Bellmagpies and Allies),,grycur1 16964.2,spuh,curraw1,currawong sp.,Strepera sp.,Passeriformes,Cracticidae (Bellmagpies and Allies),, 16965,species,borbri1,Bornean Bristlehead,Pityriasis gymnocephala,Passeriformes,Pityriaseidae (Bristlehead),Bristlehead, 16966,species,comior1,Common Iora,Aegithina tiphia,Passeriformes,Aegithinidae (Ioras),Ioras, 16978,species,whtior1,White-tailed Iora,Aegithina nigrolutea,Passeriformes,Aegithinidae (Ioras),, 16978.2,slash,y00890,Common/White-tailed Iora,Aegithina tiphia/nigrolutea,Passeriformes,Aegithinidae (Ioras),, 16979,species,greior2,Green Iora,Aegithina viridissima,Passeriformes,Aegithinidae (Ioras),, 16982,species,greior1,Great Iora,Aegithina lafresnayei,Passeriformes,Aegithinidae (Ioras),, 16986,species,whbmin1,White-bellied Minivet,Pericrocotus erythropygius,Passeriformes,Campephagidae (Cuckooshrikes),Cuckooshrikes, 16987,issf,whbmin3,White-bellied Minivet (White-bellied),Pericrocotus erythropygius erythropygius,Passeriformes,Campephagidae (Cuckooshrikes),,whbmin1 16988,issf,whbmin2,White-bellied Minivet (Jerdon's),Pericrocotus erythropygius albifrons,Passeriformes,Campephagidae (Cuckooshrikes),,whbmin1 16989,species,fiemin1,Fiery Minivet,Pericrocotus igneus,Passeriformes,Campephagidae (Cuckooshrikes),, 16992,species,smamin1,Small Minivet,Pericrocotus cinnamomeus,Passeriformes,Campephagidae (Cuckooshrikes),, 17002,species,gycmin1,Gray-chinned Minivet,Pericrocotus solaris,Passeriformes,Campephagidae (Cuckooshrikes),, 17002.2,issf,gycmin2,Gray-chinned Minivet (Gray-chinned),Pericrocotus solaris [solaris Group],Passeriformes,Campephagidae (Cuckooshrikes),,gycmin1 17002.4,issf,gycmin3,Gray-chinned Minivet (Gray-throated),Pericrocotus solaris montanus/cinereigula,Passeriformes,Campephagidae (Cuckooshrikes),,gycmin1 17010,species,sunmin1,Sunda Minivet,Pericrocotus miniatus,Passeriformes,Campephagidae (Cuckooshrikes),, 17011,species,shbmin2,Short-billed Minivet,Pericrocotus brevirostris,Passeriformes,Campephagidae (Cuckooshrikes),, 17016,species,flomin1,Flores Minivet,Pericrocotus lansbergei,Passeriformes,Campephagidae (Cuckooshrikes),, 17017,species,lotmin1,Long-tailed Minivet,Pericrocotus ethologus,Passeriformes,Campephagidae (Cuckooshrikes),, 17024,species,scamin3,Orange Minivet,Pericrocotus flammeus,Passeriformes,Campephagidae (Cuckooshrikes),, 17025,species,scamin1,Scarlet Minivet,Pericrocotus speciosus,Passeriformes,Campephagidae (Cuckooshrikes),, 17026,issf,scamin2,Scarlet Minivet (Scarlet),Pericrocotus speciosus [speciosus Group],Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 17038,issf,scamin6,Scarlet Minivet (Philippine Red),Pericrocotus speciosus leytensis/novus,Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 17041,issf,scamin4,Scarlet Minivet (Philippine Yellow),Pericrocotus speciosus [marchesae Group],Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 17046,issf,scamin5,Scarlet Minivet (Javan),Pericrocotus speciosus exul/siebersi,Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 17049,species,ryumin1,Ryukyu Minivet,Pericrocotus tegimae,Passeriformes,Campephagidae (Cuckooshrikes),, 17050,species,ashmin1,Ashy Minivet,Pericrocotus divaricatus,Passeriformes,Campephagidae (Cuckooshrikes),, 17051,species,brrmin1,Brown-rumped Minivet,Pericrocotus cantonensis,Passeriformes,Campephagidae (Cuckooshrikes),, 17051.5,slash,y00974,Ashy/Brown-rumped Minivet,Pericrocotus divaricatus/cantonensis,Passeriformes,Campephagidae (Cuckooshrikes),, 17052,species,rosmin1,Rosy Minivet,Pericrocotus roseus,Passeriformes,Campephagidae (Cuckooshrikes),, 17054.3,spuh,minive2,minivet sp. (red minivet sp.),Pericrocotus sp. (red minivet sp.),Passeriformes,Campephagidae (Cuckooshrikes),, 17054.6,spuh,minive3,minivet sp. (gray minivet sp.),Pericrocotus sp. (grey minivet sp.),Passeriformes,Campephagidae (Cuckooshrikes),, 17055,spuh,minive1,minivet sp.,Pericrocotus sp.,Passeriformes,Campephagidae (Cuckooshrikes),, 17056,species,ashcus1,Ashy Cuckooshrike,Coracina cinerea,Passeriformes,Campephagidae (Cuckooshrikes),, 17057,issf,ashcus3,Ashy Cuckooshrike (Comoros),Coracina cinerea cucullata,Passeriformes,Campephagidae (Cuckooshrikes),,ashcus1 17058,issf,ashcus2,Ashy Cuckooshrike (Madagascar),Coracina cinerea cinerea/pallida,Passeriformes,Campephagidae (Cuckooshrikes),,ashcus1 17061,species,gracus1,Grauer's Cuckooshrike,Coracina graueri,Passeriformes,Campephagidae (Cuckooshrikes),, 17062,species,grycus1,Gray Cuckooshrike,Coracina caesia,Passeriformes,Campephagidae (Cuckooshrikes),, 17066,species,whbcus2,White-breasted Cuckooshrike,Coracina pectoralis,Passeriformes,Campephagidae (Cuckooshrikes),, 17067,species,stbcus1,Stout-billed Cuckooshrike,Coracina caeruleogrisea,Passeriformes,Campephagidae (Cuckooshrikes),, 17072,species,hoocus1,Hooded Cuckooshrike,Coracina longicauda,Passeriformes,Campephagidae (Cuckooshrikes),, 17075,species,piecus1,Pied Cuckooshrike,Coracina bicolor,Passeriformes,Campephagidae (Cuckooshrikes),, 17076,species,cercus1,Cerulean Cuckooshrike,Coracina temminckii,Passeriformes,Campephagidae (Cuckooshrikes),, 17079,species,grocus1,Ground Cuckooshrike,Coracina maxima,Passeriformes,Campephagidae (Cuckooshrikes),, 17080,species,yeecus1,Barred Cuckooshrike,Coracina lineata,Passeriformes,Campephagidae (Cuckooshrikes),, 17091,species,boycus1,Boyer's Cuckooshrike,Coracina boyeri,Passeriformes,Campephagidae (Cuckooshrikes),, 17093,species,bkfcus1,Black-faced Cuckooshrike,Coracina novaehollandiae,Passeriformes,Campephagidae (Cuckooshrikes),, 17097,species,melcus3,North Melanesian Cuckooshrike,Coracina welchmani,Passeriformes,Campephagidae (Cuckooshrikes),, 17101,species,whbcus1,White-bellied Cuckooshrike,Coracina papuensis,Passeriformes,Campephagidae (Cuckooshrikes),, 17117,species,molcus1,Moluccan Cuckooshrike,Coracina atriceps,Passeriformes,Campephagidae (Cuckooshrikes),, 17121,species,whbcus4,Manus Cuckooshrike,Coracina ingens,Passeriformes,Campephagidae (Cuckooshrikes),, 17122,species,melcus1,South Melanesian Cuckooshrike,Coracina caledonica,Passeriformes,Campephagidae (Cuckooshrikes),, 17125,species,larcus1,Large Cuckooshrike,Coracina macei,Passeriformes,Campephagidae (Cuckooshrikes),, 17127,issf,larcuc1,Large Cuckooshrike (Indian),Coracina macei macei/layardi,Passeriformes,Campephagidae (Cuckooshrikes),,larcus1 17129,issf,larcuc2,Large Cuckooshrike (Large),Coracina macei [nipalensis Group],Passeriformes,Campephagidae (Cuckooshrikes),,larcus1 17131,issf,larcuc3,Large Cuckooshrike (Malay),Coracina macei larutensis,Passeriformes,Campephagidae (Cuckooshrikes),,larcus1 17134,species,babcus1,Bar-bellied Cuckooshrike,Coracina striata,Passeriformes,Campephagidae (Cuckooshrikes),, 17134.2,issf,babcuc3,Bar-bellied Cuckooshrike (Bar-bellied),Coracina striata [striata Group],Passeriformes,Campephagidae (Cuckooshrikes),,babcus1 17134.4,issf,babcuc5,Bar-bellied Cuckooshrike (Visayan),Coracina striata panayensis,Passeriformes,Campephagidae (Cuckooshrikes),,babcus1 17150,species,andcus1,Andaman Cuckooshrike,Coracina dobsoni,Passeriformes,Campephagidae (Cuckooshrikes),, 17151,species,suncus1,Sunda Cuckooshrike,Coracina larvata,Passeriformes,Campephagidae (Cuckooshrikes),, 17155,species,javcus1,Javan Cuckooshrike,Coracina javensis,Passeriformes,Campephagidae (Cuckooshrikes),, 17156,species,walcus1,Wallacean Cuckooshrike,Coracina personata,Passeriformes,Campephagidae (Cuckooshrikes),, 17163,species,burcus1,Buru Cuckooshrike,Coracina fortis,Passeriformes,Campephagidae (Cuckooshrikes),, 17164,species,whrcus1,White-rumped Cuckooshrike,Coracina leucopygia,Passeriformes,Campephagidae (Cuckooshrikes),, 17165,species,slacus1,Slaty Cuckooshrike,Coracina schistacea,Passeriformes,Campephagidae (Cuckooshrikes),, 17166,spuh,cuckoo2,Coracina sp.,Coracina sp.,Passeriformes,Campephagidae (Cuckooshrikes),, 17167,species,ghacus1,Ghana Cuckooshrike,Lobotos lobatus,Passeriformes,Campephagidae (Cuckooshrikes),, 17168,species,oricus1,Oriole Cuckooshrike,Lobotos oriolinus,Passeriformes,Campephagidae (Cuckooshrikes),, 17169,species,blkcus1,Black Cuckooshrike,Campephaga flava,Passeriformes,Campephagidae (Cuckooshrikes),, 17170,species,petcus1,Petit's Cuckooshrike,Campephaga petiti,Passeriformes,Campephagidae (Cuckooshrikes),, 17171,species,rescus1,Red-shouldered Cuckooshrike,Campephaga phoenicea,Passeriformes,Campephagidae (Cuckooshrikes),, 17172,species,putcus1,Purple-throated Cuckooshrike,Campephaga quiscalina,Passeriformes,Campephagidae (Cuckooshrikes),, 17176,spuh,afrcuc2,african cuckooshrike sp.,Campephaga sp.,Passeriformes,Campephagidae (Cuckooshrikes),, 17177,species,golcus1,Golden Cuckooshrike,Campochaera sloetii,Passeriformes,Campephagidae (Cuckooshrikes),, 17180,species,mcgcus1,McGregor's Cuckooshrike,Malindangia mcgregori,Passeriformes,Campephagidae (Cuckooshrikes),, 17181,species,poltri1,Polynesian Triller,Lalage maculosa,Passeriformes,Campephagidae (Cuckooshrikes),, 17198,species,samtri1,Samoan Triller,Lalage sharpei,Passeriformes,Campephagidae (Cuckooshrikes),, 17201,species,lottri1,Long-tailed Triller,Lalage leucopyga,Passeriformes,Campephagidae (Cuckooshrikes),, 17208,species,whwtri2,White-shouldered Triller,Lalage sueurii,Passeriformes,Campephagidae (Cuckooshrikes),, 17209,species,whwtri1,White-winged Triller,Lalage tricolor,Passeriformes,Campephagidae (Cuckooshrikes),, 17210,species,blbtri1,Black-browed Triller,Lalage atrovirens,Passeriformes,Campephagidae (Cuckooshrikes),, 17210.2,issf,bkbtri1,Black-browed Triller (Black-browed),Lalage atrovirens atrovirens,Passeriformes,Campephagidae (Cuckooshrikes),,blbtri1 17210.4,issf,bkbtri2,Black-browed Triller (Biak),Lalage atrovirens leucoptera,Passeriformes,Campephagidae (Cuckooshrikes),,blbtri1 17213,species,whbtri1,White-browed Triller,Lalage moesta,Passeriformes,Campephagidae (Cuckooshrikes),, 17214,species,vartri1,Varied Triller,Lalage leucomela,Passeriformes,Campephagidae (Cuckooshrikes),, 17230,species,vartri3,Mussau Triller,Lalage conjuncta,Passeriformes,Campephagidae (Cuckooshrikes),, 17231,species,bawtri1,Black-and-white Triller,Lalage melanoleuca,Passeriformes,Campephagidae (Cuckooshrikes),, 17231.2,issf,bawtri2,Black-and-white Triller (Northern),Lalage melanoleuca melanoleuca,Passeriformes,Campephagidae (Cuckooshrikes),,bawtri1 17231.4,issf,bawtri3,Black-and-white Triller (Southern),Lalage melanoleuca minor,Passeriformes,Campephagidae (Cuckooshrikes),,bawtri1 17234,species,whrtri1,White-rumped Triller,Lalage leucopygialis,Passeriformes,Campephagidae (Cuckooshrikes),, 17235,species,pietri1,Pied Triller,Lalage nigra,Passeriformes,Campephagidae (Cuckooshrikes),, 17239,species,rubtri1,Rufous-bellied Triller,Lalage aurea,Passeriformes,Campephagidae (Cuckooshrikes),, 17240,species,reucus1,Reunion Cuckooshrike,Lalage newtoni,Passeriformes,Campephagidae (Cuckooshrikes),, 17241,species,maucus1,Mauritius Cuckooshrike,Lalage typica,Passeriformes,Campephagidae (Cuckooshrikes),, 17242,species,bkwcus1,Black-winged Cuckooshrike,Lalage melaschistos,Passeriformes,Campephagidae (Cuckooshrikes),, 17247,species,bkhcus1,Black-headed Cuckooshrike,Lalage melanoptera,Passeriformes,Campephagidae (Cuckooshrikes),, 17250,species,lescus1,Lesser Cuckooshrike,Lalage fimbriata,Passeriformes,Campephagidae (Cuckooshrikes),, 17256,species,indcus1,Indochinese Cuckooshrike,Lalage polioptera,Passeriformes,Campephagidae (Cuckooshrikes),, 17260,spuh,trille1,Lalage sp.,Lalage sp.,Passeriformes,Campephagidae (Cuckooshrikes),, 17260.5,species,pygcus1,Pygmy Cuckooshrike,Celebesia abbotti,Passeriformes,Campephagidae (Cuckooshrikes),, 17261,species,halcus1,Halmahera Cuckooshrike,Celebesia parvula,Passeriformes,Campephagidae (Cuckooshrikes),, 17262,species,blucus1,Blue Cuckooshrike,Cyanograucalus azureus,Passeriformes,Campephagidae (Cuckooshrikes),, 17263,species,neccus1,New Caledonian Cuckooshrike,Analisoma analis,Passeriformes,Campephagidae (Cuckooshrikes),, 17264,species,blacus1,Blackish Cuckooshrike,Analisoma coerulescens,Passeriformes,Campephagidae (Cuckooshrikes),, 17268,species,whwcus1,White-winged Cuckooshrike,Analisoma ostenta,Passeriformes,Campephagidae (Cuckooshrikes),, 17269,species,bkbcus2,Black-bellied Cicadabird,Edolisoma montanum,Passeriformes,Campephagidae (Cuckooshrikes),, 17272,species,pagcus1,Pale Cicadabird,Edolisoma ceramense,Passeriformes,Campephagidae (Cuckooshrikes),, 17275,species,kaicus1,Kai Cicadabird,Edolisoma dispar,Passeriformes,Campephagidae (Cuckooshrikes),, 17276,species,sumcus1,Pale-shouldered Cicadabird,Edolisoma dohertyi,Passeriformes,Campephagidae (Cuckooshrikes),, 17277,species,bkbcus1,Black-bibbed Cuckooshrike,Edolisoma mindanense,Passeriformes,Campephagidae (Cuckooshrikes),, 17283,species,mancic1,Manus Cicadabird,Edolisoma admiralitatis,Passeriformes,Campephagidae (Cuckooshrikes),, 17284,species,cicada7,Makira Cicadabird,Edolisoma salomonis,Passeriformes,Campephagidae (Cuckooshrikes),, 17285,species,soicus1,Solomons Cuckooshrike,Edolisoma holopolium,Passeriformes,Campephagidae (Cuckooshrikes),, 17285.2,issf,solcuc1,Solomons Cuckooshrike (Solomon),Edolisoma holopolium holopolium/tricolor,Passeriformes,Campephagidae (Cuckooshrikes),,soicus1 17285.4,issf,solcuc2,Solomons Cuckooshrike (New Georgia),Edolisoma holopolium pygmaeum,Passeriformes,Campephagidae (Cuckooshrikes),,soicus1 17289,species,papcus1,Papuan Cicadabird,Edolisoma incertum,Passeriformes,Campephagidae (Cuckooshrikes),, 17290,species,sulcus2,Sulawesi Cicadabird,Edolisoma morio,Passeriformes,Campephagidae (Cuckooshrikes),, 17294,species,sulcus1,Sula Cicadabird,Edolisoma sula,Passeriformes,Campephagidae (Cuckooshrikes),, 17295,species,cicada1,Common Cicadabird,Edolisoma tenuirostre,Passeriformes,Campephagidae (Cuckooshrikes),, 17296,issf,cicada2,Common Cicadabird (Common),Edolisoma tenuirostre [tenuirostre Group],Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 17316,issf,cicada6,Common Cicadabird (Gray-capped),Edolisoma tenuirostre remotus,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 17317,issf,cicada4,Common Cicadabird (Palau),Edolisoma tenuirostre monacha,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 17318,issf,cicada5,Common Cicadabird (Yap),Edolisoma tenuirostre nesiotis,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 17319,issf,cicada3,Common Cicadabird (Pohnpei),Edolisoma tenuirostre insperatum,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 17320,species,gyhcus1,Gray-headed Cicadabird,Edolisoma schisticeps,Passeriformes,Campephagidae (Cuckooshrikes),, 17325,species,negcus1,Black Cicadabird,Edolisoma melan,Passeriformes,Campephagidae (Cuckooshrikes),, 17331,spuh,edolis1,Edolisoma sp.,Edolisoma sp.,Passeriformes,Campephagidae (Cuckooshrikes),, 17331.2,spuh,cuckoo4,cuckooshrike sp.,Campephagidae sp.,Passeriformes,Campephagidae (Cuckooshrikes),, 17332,species,blksit1,Black Sittella,Daphoenositta miranda,Passeriformes,Neosittidae (Sittellas),Sittellas, 17336,species,varsit2,Varied Sittella,Daphoenositta chrysoptera,Passeriformes,Neosittidae (Sittellas),, 17337,issf,varsit1,Varied Sittella (Papuan),Daphoenositta chrysoptera [papuensis Group],Passeriformes,Neosittidae (Sittellas),,varsit2 17338,issf,varsit3,Varied Sittella (White-winged),Daphoenositta chrysoptera leucoptera,Passeriformes,Neosittidae (Sittellas),,varsit2 17339,issf,varsit4,Varied Sittella (Striated),Daphoenositta chrysoptera striata,Passeriformes,Neosittidae (Sittellas),,varsit2 17340,issf,varsit5,Varied Sittella (White-headed),Daphoenositta chrysoptera leucocephala,Passeriformes,Neosittidae (Sittellas),,varsit2 17341,issf,varsit6,Varied Sittella (Orange-winged),Daphoenositta chrysoptera chrysoptera,Passeriformes,Neosittidae (Sittellas),,varsit2 17342,issf,varsit7,Varied Sittella (Black-capped),Daphoenositta chrysoptera pileata,Passeriformes,Neosittidae (Sittellas),,varsit2 17348,species,watplo1,Wattled Ploughbill,Eulacestoma nigropectus,Passeriformes,Eulacestomatidae (Ploughbill),Ploughbill, 17351,species,crstit1,Crested Shrike-tit,Falcunculus frontatus,Passeriformes,Falcunculidae (Shrike-tit),Shrike-tit, 17352,issf,cresht1,Crested Shrike-tit (Eastern),Falcunculus frontatus frontatus,Passeriformes,Falcunculidae (Shrike-tit),,crstit1 17353,issf,cresht2,Crested Shrike-tit (Western),Falcunculus frontatus leucogaster,Passeriformes,Falcunculidae (Shrike-tit),,crstit1 17354,issf,cresht3,Crested Shrike-tit (Northern),Falcunculus frontatus whitei,Passeriformes,Falcunculidae (Shrike-tit),,crstit1 17355,species,ruspit1,Rusty Pitohui,Colluricincla ferruginea,Passeriformes,Pachycephalidae (Whistlers and Allies),Whistlers and Allies, 17367,species,whbpit1,White-bellied Pitohui,Colluricincla incerta,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17368,species,rufsht1,Little Shrikethrush,Colluricincla megarhyncha,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17369,issf,rufsht2,Little Shrikethrush (Rufous),Colluricincla megarhyncha [megarhyncha Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 17398,issf,rufsht3,Little Shrikethrush (Little),Colluricincla megarhyncha parvula,Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 17399,species,soosht1,Sooty Shrikethrush,Colluricincla tenebrosa,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17402,species,sansht2,Sandstone Shrikethrush,Colluricincla woodwardi,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17403,species,grysht1,Gray Shrikethrush,Colluricincla harmonica,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17410,species,bowsht1,Bower's Shrikethrush,Colluricincla boweri,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17410.2,spuh,collur1,Colluricincla sp.,Colluricincla sp.,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17411,species,blapit1,Black Pitohui,Melanorectes nigrescens,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17418,species,sansht1,Sangihe Whistler,Coracornis sanghirensis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17419,species,mabwhi1,Maroon-backed Whistler,Coracornis raveni,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17419.1,species,oliwhi1,Olive Whistler,Pachycephala olivacea,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17425,species,relwhi1,Red-lored Whistler,Pachycephala rufogularis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17426,species,gilwhi1,Gilbert's Whistler,Pachycephala inornata,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17426.1,species,batwhi1,Bare-throated Whistler,Pachycephala nudigula,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17429,species,fabwhi1,Fawn-breasted Whistler,Pachycephala orpheus,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17430,species,regwhi1,Regent Whistler,Pachycephala schlegelii,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17438,species,necwhi2,Vanuatu Whistler,Pachycephala chlorura,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17441.5,species,vogwhi1,Vogelkop Whistler,Pachycephala meyeri,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17442,species,sclwhi1,Sclater's Whistler,Pachycephala soror,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17449,species,fijwhi2,Fiji Whistler,Pachycephala vitiensis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17450,issf,whtwhi1,Fiji Whistler (White-throated),Pachycephala vitiensis [vitiensis Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,fijwhi2 17454,issf,fijwhi1,Fiji Whistler (Fiji),Pachycephala vitiensis [graeffii Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,fijwhi2 17461,species,samwhi1,Samoan Whistler,Pachycephala flavifrons,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17462,species,tonwhi1,Tongan Whistler,Pachycephala jacquinoti,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17463,species,necwhi3,New Caledonian Whistler,Pachycephala caledonica,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17464,species,guhwhi1,Guadalcanal Hooded Whistler,Pachycephala implicata,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17465,species,bohwhi1,Bougainville Hooded Whistler,Pachycephala richardsi,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17465.5,species,biswhi1,Bismarck Whistler,Pachycephala citreogaster,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17468,species,louwhi1,Louisiade Whistler,Pachycephala collaris,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17470,species,temwhi1,Temotu Whistler,Pachycephala utupuae,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17471,species,oriwhi1,Oriole Whistler,Pachycephala orioloides,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17481,species,renwhi1,Rennell Whistler,Pachycephala feminina,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17482,species,rubwhi1,Rusty-breasted Whistler,Pachycephala fulvotincta,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17482.2,issf,rubwhi2,Rusty-breasted Whistler (Salayar),Pachycephala fulvotincta teysmanni,Passeriformes,Pachycephalidae (Whistlers and Allies),,rubwhi1 17482.4,issf,rubwhi3,Rusty-breasted Whistler (Rusty-breasted),Pachycephala fulvotincta [fulvotincta Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rubwhi1 17488,species,yetwhi1,Yellow-throated Whistler,Pachycephala macrorhyncha,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17498,species,bkcwhi1,Black-chinned Whistler,Pachycephala mentalis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17502,species,golwhi2,Baliem Whistler,Pachycephala balim,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17503,species,golwhi1,Golden Whistler,Pachycephala pectoralis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17504,issf,golwhi3,Golden Whistler (Golden),Pachycephala pectoralis [pectoralis Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,golwhi1 17510,issf,golwhi4,Golden Whistler (fuliginosa),Pachycephala pectoralis fuliginosa,Passeriformes,Pachycephalidae (Whistlers and Allies),,golwhi1 17510.5,species,weswhi2,Western Whistler,Pachycephala occidentalis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17511,species,bltwhi1,Black-tailed Whistler,Pachycephala melanura,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17517,species,mornin1,Morningbird,Pachycephala tenebrosa,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17517.5,species,brbwhi1,Brown-backed Whistler,Pachycephala modesta,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17521,species,lorwhi1,Lorentz's Whistler,Pachycephala lorentzi,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17522,species,gobwhi1,Golden-backed Whistler,Pachycephala aurea,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17523,species,yebwhi1,Yellow-bellied Whistler,Pachycephala philippinensis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17531,species,borwhi1,Bornean Whistler,Pachycephala hypoxantha,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17534,species,subwhi1,Sulphur-bellied Whistler,Pachycephala sulfuriventer,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17535,species,manwhi1,Mangrove Whistler,Pachycephala cinerea,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17536,species,grbwhi1,Green-backed Whistler,Pachycephala albiventris,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17537,species,whvwhi1,White-vented Whistler,Pachycephala homeyeri,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17537.3,issf,whvwhi2,White-vented Whistler (Sulu),Pachycephala homeyeri homeyeri,Passeriformes,Pachycephalidae (Whistlers and Allies),,whvwhi1 17537.6,issf,whvwhi3,White-vented Whistler (Cebu),Pachycephala homeyeri major,Passeriformes,Pachycephalidae (Whistlers and Allies),,whvwhi1 17537.8,issf,whvwhi4,White-vented Whistler (White-vented),Pachycephala homeyeri winchelli,Passeriformes,Pachycephalidae (Whistlers and Allies),,whvwhi1 17538,species,islwhi2,Island Whistler,Pachycephala phaionota,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17539,species,ruswhi1,Rusty Whistler,Pachycephala hyperythra,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17546,species,grywhi2,Gray Whistler,Pachycephala simplex,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17546.5,issf,grywhi1,Gray Whistler (Brown),Pachycephala simplex simplex/brunnescens,Passeriformes,Pachycephalidae (Whistlers and Allies),,grywhi2 17548,issf,gyhwhi1,Gray Whistler (Gray-headed),Pachycephala simplex [griseiceps Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,grywhi2 17553,species,walwhi1,Wallacean Whistler,Pachycephala arctitorquis,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17555,species,drawhi1,Drab Whistler,Pachycephala griseonota,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17555.5,issf,drawhi2,Drab Whistler (Drab),Pachycephala griseonota [griseonota Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,drawhi1 17558.5,issf,drawhi3,Drab Whistler (Cinnamon-breasted),Pachycephala griseonota johni,Passeriformes,Pachycephalidae (Whistlers and Allies),,drawhi1 17559,species,whbwhi1,White-bellied Whistler,Pachycephala leucogastra,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17573,species,blhwhi1,Black-headed Whistler,Pachycephala monacha,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17574,species,rufwhi1,Rufous Whistler,Pachycephala rufiventris,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17580,species,whbwhi2,White-breasted Whistler,Pachycephala lanioides,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17587,spuh,pachyc1,Pachycephala sp.,Pachycephala sp.,Passeriformes,Pachycephalidae (Whistlers and Allies),, 17591,species,motwhi1,Mottled Berryhunter,Rhagologus leucostigma,Passeriformes,Rhagologidae (Mottled Berryhunter),Mottled Berryhunter, 17595,species,crebel1,Crested Bellbird,Oreoica gutturalis,Passeriformes,Oreoicidae (Australo-Papuan Bellbirds),Australo-Papuan Bellbirds, 17620,species,runwhi1,Rufous-naped Bellbird,Aleadryas rufinucha,Passeriformes,Oreoicidae (Australo-Papuan Bellbirds),, 17625,species,crepit1,Piping Bellbird,Ornorectes cristatus,Passeriformes,Oreoicidae (Australo-Papuan Bellbirds),, 17629,species,tigshr1,Tiger Shrike,Lanius tigrinus,Passeriformes,Laniidae (Shrikes),Shrikes, 17630,species,buhshr1,Bull-headed Shrike,Lanius bucephalus,Passeriformes,Laniidae (Shrikes),, 17633,species,rebshr1,Red-backed Shrike,Lanius collurio,Passeriformes,Laniidae (Shrikes),, 17634,species,rutshr2,Red-tailed Shrike,Lanius phoenicuroides,Passeriformes,Laniidae (Shrikes),, 17634.5,hybrid,x00860,Red-backed x Red-tailed Shrike (hybrid),Lanius collurio x phoenicuroides,Passeriformes,Laniidae (Shrikes),, 17635,species,isashr1,Isabelline Shrike,Lanius isabellinus,Passeriformes,Laniidae (Shrikes),, 17636,issf,rutshr3,Isabelline Shrike (Daurian),Lanius isabellinus isabellinus,Passeriformes,Laniidae (Shrikes),,isashr1 17637,issf,rutshr4,Isabelline Shrike (Chinese),Lanius isabellinus arenarius/tsaidamensis,Passeriformes,Laniidae (Shrikes),,isashr1 17639.5,slash,rutshr1,Red-tailed/Isabelline Shrike,Lanius phoenicuroides/isabellinus,Passeriformes,Laniidae (Shrikes),, 17640,species,brnshr,Brown Shrike,Lanius cristatus,Passeriformes,Laniidae (Shrikes),, 17641,issf,brnshr1,Brown Shrike (Brown),Lanius cristatus cristatus/confusus,Passeriformes,Laniidae (Shrikes),,brnshr 17642,issf,brnshr2,Brown Shrike (Japanese),Lanius cristatus superciliosus,Passeriformes,Laniidae (Shrikes),,brnshr 17643,issf,brnshr3,Brown Shrike (Philippine),Lanius cristatus lucionensis,Passeriformes,Laniidae (Shrikes),,brnshr 17643.5,slash,y00975,Red-tailed/Isabelline/Brown Shrike,Lanius phoenicuroides/isabellinus/cristatus,Passeriformes,Laniidae (Shrikes),, 17644,species,burshr1,Burmese Shrike,Lanius collurioides,Passeriformes,Laniidae (Shrikes),, 17647,species,emishr1,Emin's Shrike,Lanius gubernator,Passeriformes,Laniidae (Shrikes),, 17652,species,babshr1,Bay-backed Shrike,Lanius vittatus,Passeriformes,Laniidae (Shrikes),, 17655,species,lotshr1,Long-tailed Shrike,Lanius schach,Passeriformes,Laniidae (Shrikes),, 17655.2,issf,lotshr2,Long-tailed Shrike (erythronotus/caniceps),Lanius schach erythronotus/caniceps,Passeriformes,Laniidae (Shrikes),,lotshr1 17655.4,issf,lotshr3,Long-tailed Shrike (schach),Lanius schach schach,Passeriformes,Laniidae (Shrikes),,lotshr1 17655.6,issf,lotshr4,Long-tailed Shrike (tricolor/longicaudatus),Lanius schach tricolor/longicaudatus,Passeriformes,Laniidae (Shrikes),,lotshr1 17655.8,issf,lotshr5,Long-tailed Shrike (bentet),Lanius schach bentet,Passeriformes,Laniidae (Shrikes),,lotshr1 17656,issf,lotshr6,Long-tailed Shrike (nasutus Group),Lanius schach [nasutus Group],Passeriformes,Laniidae (Shrikes),,lotshr1 17665,species,gybshr1,Gray-backed Shrike,Lanius tephronotus,Passeriformes,Laniidae (Shrikes),, 17668,species,gycshr1,Gray-capped Shrike,Lanius validirostris,Passeriformes,Laniidae (Shrikes),, 17672,species,logshr,Loggerhead Shrike,Lanius ludovicianus,Passeriformes,Laniidae (Shrikes),, 17684.5,species,norshr1,Great Gray Shrike,Lanius excubitor,Passeriformes,Laniidae (Shrikes),, 17684.7,species,norshr4,Northern Shrike,Lanius borealis,Passeriformes,Laniidae (Shrikes),, 17687.5,issf,norshr2,Northern Shrike (Asian),Lanius borealis [mollis Group],Passeriformes,Laniidae (Shrikes),,norshr4 17691.5,issf,norshr3,Northern Shrike (American),Lanius borealis borealis,Passeriformes,Laniidae (Shrikes),,norshr4 17694,slash,y00620,Loggerhead/Northern Shrike,Lanius ludovicianus/borealis,Passeriformes,Laniidae (Shrikes),, 17694.5,slash,norshr,Great Gray/Northern Shrike,Lanius excubitor/borealis,Passeriformes,Laniidae (Shrikes),, 17695,species,sogshr2,Southern Gray Shrike,Lanius meridionalis,Passeriformes,Laniidae (Shrikes),, 17695.5,issf,sogshr1,Southern Gray Shrike (Southern),Lanius meridionalis [meridionalis Group],Passeriformes,Laniidae (Shrikes),,sogshr2 17707,issf,sogshr3,Southern Gray Shrike (Steppe),Lanius meridionalis pallidirostris,Passeriformes,Laniidae (Shrikes),,sogshr2 17707.2,slash,y01040,Great Gray/Southern Gray Shrike,Lanius excubitor/meridionalis,Passeriformes,Laniidae (Shrikes),, 17708,species,legshr2,Lesser Gray Shrike,Lanius minor,Passeriformes,Laniidae (Shrikes),, 17709,species,chgshr2,Chinese Gray Shrike,Lanius sphenocercus,Passeriformes,Laniidae (Shrikes),, 17709.2,issf,chgshr1,Chinese Gray Shrike (Chinese),Lanius sphenocercus sphenocercus,Passeriformes,Laniidae (Shrikes),,chgshr2 17709.4,issf,chgshr3,Chinese Gray Shrike (Giant),Lanius sphenocercus giganteus,Passeriformes,Laniidae (Shrikes),,chgshr2 17712,species,gybfis1,Gray-backed Fiscal,Lanius excubitoroides,Passeriformes,Laniidae (Shrikes),, 17716,species,lotfis1,Long-tailed Fiscal,Lanius cabanisi,Passeriformes,Laniidae (Shrikes),, 17717,species,taifis1,Taita Fiscal,Lanius dorsalis,Passeriformes,Laniidae (Shrikes),, 17718,species,somfis1,Somali Fiscal,Lanius somalicus,Passeriformes,Laniidae (Shrikes),, 17719,species,macshr1,Mackinnon's Shrike,Lanius mackinnoni,Passeriformes,Laniidae (Shrikes),, 17720,species,norfis1,Northern Fiscal,Lanius humeralis,Passeriformes,Laniidae (Shrikes),, 17724,species,soufis1,Southern Fiscal,Lanius collaris,Passeriformes,Laniidae (Shrikes),, 17724.5,issf,soufis2,Southern Fiscal (Uhehe),Lanius collaris marwitzi,Passeriformes,Laniidae (Shrikes),,soufis1 17724.7,issf,soufis3,Southern Fiscal (Southern),Lanius collaris [collaris Group],Passeriformes,Laniidae (Shrikes),,soufis1 17728.1,slash,comfis1,Northern/Southern Fiscal (Common Fiscal),Lanius humeralis/collaris,Passeriformes,Laniidae (Shrikes),, 17728.2,species,soushr3,Souza's Shrike,Lanius souzae,Passeriformes,Laniidae (Shrikes),, 17729,species,newfis1,Newton's Fiscal,Lanius newtoni,Passeriformes,Laniidae (Shrikes),, 17730,species,masshr1,Masked Shrike,Lanius nubicus,Passeriformes,Laniidae (Shrikes),, 17731,species,wooshr1,Woodchat Shrike,Lanius senator,Passeriformes,Laniidae (Shrikes),, 17731.2,issf,wooshr2,Woodchat Shrike (Western),Lanius senator senator,Passeriformes,Laniidae (Shrikes),,wooshr1 17731.4,issf,wooshr3,Woodchat Shrike (Balearic),Lanius senator badius,Passeriformes,Laniidae (Shrikes),,wooshr1 17731.6,issf,wooshr4,Woodchat Shrike (Caucasian),Lanius senator niloticus,Passeriformes,Laniidae (Shrikes),,wooshr1 17734.5,hybrid,x00861,Red-backed x Woodchat Shrike (hybrid),Lanius collurio x senator,Passeriformes,Laniidae (Shrikes),, 17735,spuh,shrike,shrike sp.,Lanius sp.,Passeriformes,Laniidae (Shrikes),, 17736,species,yebshr1,Yellow-billed Shrike,Corvinella corvina,Passeriformes,Laniidae (Shrikes),, 17741,species,magshr1,Magpie Shrike,Corvinella melanoleuca,Passeriformes,Laniidae (Shrikes),, 17745,species,whrshr1,White-rumped Shrike,Eurocephalus ruppelli,Passeriformes,Laniidae (Shrikes),, 17746,species,whcshr1,White-crowned Shrike,Eurocephalus anguitimens,Passeriformes,Laniidae (Shrikes),, 17748.01,species,bhsbab1,Black-headed Shrike-Babbler,Pteruthius rufiventer,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",Shrike-Babblers and Erpornis, 17748.06,species,wbsbab2,Pied Shrike-Babbler,Pteruthius flaviscapis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.07,species,himshb1,Himalayan Shrike-Babbler,Pteruthius ripleyi,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.08,species,blyshb1,Blyth's Shrike-Babbler,Pteruthius aeralatus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.09,issf,blyshb4,Blyth's Shrike-Babbler (Chestnut-winged),Pteruthius aeralatus validirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,blyshb1 17748.1,issf,blyshb3,Blyth's Shrike-Babbler (Gray-breasted),Pteruthius aeralatus ricketti,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,blyshb1 17748.11,issf,blyshb2,Blyth's Shrike-Babbler (Blyth's),Pteruthius aeralatus [aeralatus Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,blyshb1 17748.16,species,dalshb1,Dalat Shrike-Babbler,Pteruthius annamensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.17,species,grsbab1,Green Shrike-Babbler,Pteruthius xanthochlorus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.18,issf,grnshb2,Green Shrike-Babbler (Black-crowned),Pteruthius xanthochlorus xanthochlorus/occidentalis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,grsbab1 17748.21,issf,grnshb1,Green Shrike-Babbler (Eye-ringed),Pteruthius xanthochlorus pallidus/hybrida,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,grsbab1 17748.24,species,besbab1,Black-eared Shrike-Babbler,Pteruthius melanotis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.27,species,cfsbab1,Trilling Shrike-Babbler,Pteruthius aenobarbus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.29,species,clishb1,Clicking Shrike-Babbler,Pteruthius intermedius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.3,issf,clishb2,Clicking Shrike-Babbler (Garo Hills),Pteruthius intermedius aenobarbulus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,clishb1 17748.31,issf,clishb3,Clicking Shrike-Babbler (Clicking),Pteruthius intermedius intermedius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,clishb1 17748.315,spuh,shrike2,shrike-babbler sp.,Pteruthius sp.,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.32,species,whbyuh1,White-bellied Erpornis,Erpornis zantholeuca,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17748.33,species,rubpep1,Rufous-browed Peppershrike,Cyclarhis gujanensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",Vireos, 17748.34,issf,rubpep2,Rufous-browed Peppershrike (Northern),Cyclarhis gujanensis [gujanensis Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 17748.35,issf,rubpep3,Rufous-browed Peppershrike (Cozumel I.),Cyclarhis gujanensis insularis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 17748.36,issf,rubpep4,Rufous-browed Peppershrike (Yellow-backed),Cyclarhis gujanensis [virenticeps Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 17748.37,issf,rubpep5,Rufous-browed Peppershrike (Chaco),Cyclarhis gujanensis viridis/cearensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 17748.38,issf,rubpep6,Rufous-browed Peppershrike (Ochre-crowned),Cyclarhis gujanensis ochrocephala,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 17749,species,blbpep1,Black-billed Peppershrike,Cyclarhis nigrirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.05,slash,y00891,Rufous-browed/Black-billed Peppershrike,Cyclarhis gujanensis/nigrirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.1,species,gyegre1,Gray-eyed Greenlet,Hylophilus amaurocephalus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.15,species,rucgre1,Rufous-crowned Greenlet,Hylophilus poicilotis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.2,species,oligre1,Olivaceous Greenlet,Hylophilus olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.25,species,ashgre1,Ashy-headed Greenlet,Hylophilus pectoralis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.3,species,scrgre1,Scrub Greenlet,Hylophilus flavipes,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.31,issf,scrgre2,Scrub Greenlet (Yellow-green),Hylophilus flavipes viridiflavus/xuthus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scrgre1 17749.32,issf,scrgre3,Scrub Greenlet (Scrub),Hylophilus flavipes [flavipes Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scrgre1 17749.33,issf,scrgre4,Scrub Greenlet (Tobago),Hylophilus flavipes insularis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scrgre1 17749.35,species,gycgre1,Gray-chested Greenlet,Hylophilus semicinereus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.4,species,brhgre1,Brown-headed Greenlet,Hylophilus brunneiceps,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.45,species,lecgre2,Lemon-chested Greenlet,Hylophilus thoracicus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.46,issf,lecgre1,Lemon-chested Greenlet (Lemon-chested),Hylophilus thoracicus griseiventris/aemulus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lecgre2 17749.47,issf,lecgre3,Lemon-chested Greenlet (Rio de Janeiro),Hylophilus thoracicus thoracicus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lecgre2 17749.5,species,cssvir1,Chestnut-sided Shrike-Vireo,Vireolanius melitophrys,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.55,species,grsvir1,Green Shrike-Vireo,Vireolanius pulchellus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.6,species,ybsvir1,Yellow-browed Shrike-Vireo,Vireolanius eximius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.65,species,scsvir1,Slaty-capped Shrike-Vireo,Vireolanius leucotis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.66,issf,slcshv1,Slaty-capped Shrike-Vireo (Pale-legged),Vireolanius leucotis mikettae,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scsvir1 17749.67,issf,slcshv2,Slaty-capped Shrike-Vireo (Slaty-capped),Vireolanius leucotis [leucotis Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scsvir1 17749.7,species,tacgre1,Tawny-crowned Greenlet,Tunchiornis ochraceiceps,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.75,issf,tacgre2,Tawny-crowned Greenlet (Tawny-crowned),Tunchiornis ochraceiceps [ochraceiceps Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 17749.76,issf,tacgre4,Tawny-crowned Greenlet (Rufous-fronted),Tunchiornis ochraceiceps ferrugineifrons/viridior,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 17749.77,issf,tacgre5,Tawny-crowned Greenlet (Olive-crowned),Tunchiornis ochraceiceps luteifrons,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 17749.8,issf,tacgre3,Tawny-crowned Greenlet (Red-fronted),Tunchiornis ochraceiceps rubrifrons/lutescens,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 17749.85,species,lesgre1,Lesser Greenlet,Pachysylvia decurtata,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.9,issf,lesgre2,Lesser Greenlet (Northern),Pachysylvia decurtata decurtata/darienensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lesgre1 17749.91,issf,lesgre3,Lesser Greenlet (Gray-headed),Pachysylvia decurtata minor,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lesgre1 17749.92,species,ducgre1,Dusky-capped Greenlet,Pachysylvia hypoxantha,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.93,species,bucgre1,Buff-cheeked Greenlet,Pachysylvia muscicapina,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.94,species,gofgre1,Golden-fronted Greenlet,Pachysylvia aurantiifrons,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.95,species,rungre1,Rufous-naped Greenlet,Pachysylvia semibrunnea,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.96,spuh,greenl1,greenlet sp.,Hylophilus/Tunchiornis/Pachyslvia sp.,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.97,species,golvir1,Golden Vireo,Vireo hypochryseus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.98,species,blmvir1,Blue Mountain Vireo,Vireo osburni,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.99,species,slavir1,Slaty Vireo,Vireo brevipennis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.993,species,bkcvir1,Black-capped Vireo,Vireo atricapilla,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17749.996,species,dwavir1,Dwarf Vireo,Vireo nelsoni,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17750,species,whevir,White-eyed Vireo,Vireo griseus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17751,issf,whevir1,White-eyed Vireo (White-eyed),Vireo griseus [griseus Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,whevir 17757,issf,whevir2,White-eyed Vireo (Veracruz),Vireo griseus perquisitor,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,whevir 17758,species,thbvir,Thick-billed Vireo,Vireo crassirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17759,issf,thbvir1,Thick-billed Vireo (Thick-billed),Vireo crassirostris [crassirostris Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,thbvir 17765,issf,thbvir2,Thick-billed Vireo (Old Providence),Vireo crassirostris approximans,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,thbvir 17766,species,manvir1,Mangrove Vireo,Vireo pallens,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17767,issf,manvir4,Mangrove Vireo (West Mexico),Vireo pallens paluster,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,manvir1 17768,issf,manvir3,Mangrove Vireo (Northern Central America),Vireo pallens ochraceus/semiflavus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,manvir1 17771,issf,manvir2,Mangrove Vireo (Southern Central America),Vireo pallens pallens,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,manvir1 17772,species,cozvir1,Cozumel Vireo,Vireo bairdi,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17773,species,stavir1,San Andres Vireo,Vireo caribaeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17774,species,jamvir1,Jamaican Vireo,Vireo modestus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17775,species,cubvir1,Cuban Vireo,Vireo gundlachii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17776,species,purvir1,Puerto Rican Vireo,Vireo latimeri,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17777,species,flbvir1,Flat-billed Vireo,Vireo nanus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17778,species,belvir,Bell's Vireo,Vireo bellii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17779,issf,belvir1,Bell's Vireo (Eastern),Vireo bellii bellii/medius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,belvir 17782,issf,belvir2,Bell's Vireo (Arizona),Vireo bellii arizonae,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,belvir 17783,issf,belvir3,Bell's Vireo (Least),Vireo bellii pusillus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,belvir 17786,species,gryvir,Gray Vireo,Vireo vicinior,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17786.5,species,hutvir,Hutton's Vireo,Vireo huttoni,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17787,issf,hutvir1,Hutton's Vireo (Pacific),Vireo huttoni [huttoni Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,hutvir 17787.5,issf,hutvir2,Hutton's Vireo (Interior),Vireo huttoni [stephensi Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,hutvir 17788,species,yetvir,Yellow-throated Vireo,Vireo flavifrons,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17789,species,yewvir1,Yellow-winged Vireo,Vireo carmioli,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17790,species,chovir1,Choco Vireo,Vireo masteri,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17797,species,casvir,Cassin's Vireo,Vireo cassinii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17798,issf,casvir1,Cassin's Vireo (Cassin's),Vireo cassinii cassinii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,casvir 17799,issf,casvir2,Cassin's Vireo (San Lucas),Vireo cassinii lucasanus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,casvir 17801,species,buhvir,Blue-headed Vireo,Vireo solitarius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17804,slash,y00485,Cassin's/Blue-headed Vireo,Vireo cassinii/solitarius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17804.2,species,plsvir,Plumbeous Vireo,Vireo plumbeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17804.4,issf,pluvir1,Plumbeous Vireo (Plumbeous),Vireo plumbeus [plumbeus Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,plsvir 17804.6,issf,pluvir2,Plumbeous Vireo (Central American),Vireo plumbeus notius/montanus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,plsvir 17804.8,slash,y00484,Cassin's/Plumbeous Vireo,Vireo cassinii/plumbeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17805,spuh,solvir1,solitary vireo sp.,Vireo cassinii/solitarius/plumbeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17827.5,species,tepgre1,Tepui Vireo,Vireo sclateri,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17827.8,species,phivir,Philadelphia Vireo,Vireo philadelphicus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17828,species,warvir,Warbling Vireo,Vireo gilvus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17829,issf,eawvir1,Warbling Vireo (Eastern),Vireo gilvus gilvus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,warvir 17830,issf,wewvir2,Warbling Vireo (Western),Vireo gilvus [swainsoni Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,warvir 17833,slash,y00704,Philadelphia/Warbling Vireo,Vireo philadelphicus/gilvus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17836,species,brcvir1,Brown-capped Vireo,Vireo leucophrys,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17850,species,reevir,Red-eyed Vireo,Vireo olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17851,issf,reevir1,Red-eyed Vireo (Red-eyed),Vireo olivaceus olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,reevir 17852,issf,reevir3,Red-eyed Vireo (resident Chivi),Vireo olivaceus [agilis Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,reevir 17860,issf,reevir2,Red-eyed Vireo (migratory Chivi),Vireo olivaceus chivi/diversus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,reevir 17862.5,slash,y00741,Philadelphia/Red-eyed Vireo,Vireo philadelphicus/olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17862.7,hybrid,x00889,Philadelphia x Red-eyed Vireo (hybrid),Vireo philadelphicus x olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17862.9,hybrid,x00890,Warbling x Red-eyed Vireo (hybrid),Vireo gilvus x olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17863,species,norvir1,Noronha Vireo,Vireo gracilirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17864,species,yegvir,Yellow-green Vireo,Vireo flavoviridis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17868,species,bkwvir,Black-whiskered Vireo,Vireo altiloquus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17875,species,yucvir,Yucatan Vireo,Vireo magister,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17878,spuh,vireo1,vireo sp.,Vireo sp.,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, 17977.01,species,hoopit1,Hooded Pitohui,Pitohui dichrous,Passeriformes,Oriolidae (Old World Orioles),Old World Orioles, 17977.04,species,varpit1,Variable Pitohui,Pitohui kirhocephalus,Passeriformes,Oriolidae (Old World Orioles),, 17977.045,issf,varpit2,Variable Pitohui (Northern),Pitohui kirhocephalus [kirhocephalus Group],Passeriformes,Oriolidae (Old World Orioles),,varpit1 17977.185,issf,varpit3,Variable Pitohui (Southern),Pitohui kirhocephalus [uropygialis Group],Passeriformes,Oriolidae (Old World Orioles),,varpit1 17977.235,issf,varpit4,Variable Pitohui (Raja Ampat),Pitohui kirhocephalus cervineiventris/pallidus,Passeriformes,Oriolidae (Old World Orioles),,varpit1 17978,species,timori1,Timor Oriole,Oriolus melanotis,Passeriformes,Oriolidae (Old World Orioles),, 17978.2,issf,timori2,Timor Oriole (Timor),Oriolus melanotis melanotis,Passeriformes,Oriolidae (Old World Orioles),,timori1 17978.4,issf,timori3,Timor Oriole (Wetar),Oriolus melanotis finschi,Passeriformes,Oriolidae (Old World Orioles),,timori1 17982,species,burori2,Buru Oriole,Oriolus bouroensis,Passeriformes,Oriolidae (Old World Orioles),, 17983,species,burori3,Tanimbar Oriole,Oriolus decipiens,Passeriformes,Oriolidae (Old World Orioles),, 17984,species,serori1,Seram Oriole,Oriolus forsteni,Passeriformes,Oriolidae (Old World Orioles),, 17985,species,halori1,Halmahera Oriole,Oriolus phaeochromus,Passeriformes,Oriolidae (Old World Orioles),, 17986,species,broori1,Brown Oriole,Oriolus szalayi,Passeriformes,Oriolidae (Old World Orioles),, 17987,species,olbori1,Olive-backed Oriole,Oriolus sagittatus,Passeriformes,Oriolidae (Old World Orioles),, 17992,species,greori1,Green Oriole,Oriolus flavocinctus,Passeriformes,Oriolidae (Old World Orioles),, 17997,species,datori1,Dark-throated Oriole,Oriolus xanthonotus,Passeriformes,Oriolidae (Old World Orioles),, 18002,species,whlori1,White-lored Oriole,Oriolus albiloris,Passeriformes,Oriolidae (Old World Orioles),, 18003,species,phiori1,Philippine Oriole,Oriolus steerii,Passeriformes,Oriolidae (Old World Orioles),, 18009,species,isaori1,Isabela Oriole,Oriolus isabellae,Passeriformes,Oriolidae (Old World Orioles),, 18010,species,eugori2,Eurasian Golden Oriole,Oriolus oriolus,Passeriformes,Oriolidae (Old World Orioles),, 18012,species,ingori1,Indian Golden Oriole,Oriolus kundoo,Passeriformes,Oriolidae (Old World Orioles),, 18012.5,slash,y00691,Eurasian/Indian Golden Oriole,Oriolus oriolus/kundoo,Passeriformes,Oriolidae (Old World Orioles),, 18013,species,afgori2,African Golden Oriole,Oriolus auratus,Passeriformes,Oriolidae (Old World Orioles),, 18013.2,slash,y01041,Eurasian/African Golden Oriole,Oriolus oriolus/auratus,Passeriformes,Oriolidae (Old World Orioles),, 18016,species,blnori1,Black-naped Oriole,Oriolus chinensis,Passeriformes,Oriolidae (Old World Orioles),, 18016.2,issf,bknori1,Black-naped Oriole (East Asian),Oriolus chinensis diffusus,Passeriformes,Oriolidae (Old World Orioles),,blnori1 18016.4,issf,bknori2,Black-naped Oriole (Sunda),Oriolus chinensis [maculatus Group],Passeriformes,Oriolidae (Old World Orioles),,blnori1 18016.6,issf,bknori3,Black-naped Oriole (Black-naped),Oriolus chinensis [chinensis Group],Passeriformes,Oriolidae (Old World Orioles),,blnori1 18035.5,slash,y00800,Indian Golden/Black-naped Oriole,Oriolus kundoo/chinensis,Passeriformes,Oriolidae (Old World Orioles),, 18036,species,slbori1,Slender-billed Oriole,Oriolus tenuirostris,Passeriformes,Oriolidae (Old World Orioles),, 18037,species,grhori1,Green-headed Oriole,Oriolus chlorocephalus,Passeriformes,Oriolidae (Old World Orioles),, 18037.5,issf,gnhori1,Green-headed Oriole (Green-headed),Oriolus chlorocephalus chlorocephalus/amani,Passeriformes,Oriolidae (Old World Orioles),,grhori1 18040,issf,gnhori2,Green-headed Oriole (Gorongosa),Oriolus chlorocephalus speculifer,Passeriformes,Oriolidae (Old World Orioles),,grhori1 18041,species,satori1,Sao Tome Oriole,Oriolus crassirostris,Passeriformes,Oriolidae (Old World Orioles),, 18042,species,wbhori1,Western Black-headed Oriole,Oriolus brachyrynchus,Passeriformes,Oriolidae (Old World Orioles),, 18045,species,dahori1,Ethiopian Black-headed Oriole,Oriolus monacha,Passeriformes,Oriolidae (Old World Orioles),, 18048,species,abhori1,African Black-headed Oriole,Oriolus larvatus,Passeriformes,Oriolidae (Old World Orioles),, 18055,species,bltori1,Black-tailed Oriole,Oriolus percivali,Passeriformes,Oriolidae (Old World Orioles),, 18056,species,blwori1,Black-winged Oriole,Oriolus nigripennis,Passeriformes,Oriolidae (Old World Orioles),, 18057,species,blhori1,Black-hooded Oriole,Oriolus xanthornus,Passeriformes,Oriolidae (Old World Orioles),, 18063,species,blaori1,Black Oriole,Oriolus hosii,Passeriformes,Oriolidae (Old World Orioles),, 18064,species,bacori1,Black-and-crimson Oriole,Oriolus cruentus,Passeriformes,Oriolidae (Old World Orioles),, 18064.2,issf,bacori2,Black-and-crimson Oriole (Black-and-crimson),Oriolus cruentus [consanguineus Group],Passeriformes,Oriolidae (Old World Orioles),,bacori1 18064.4,issf,bacori3,Black-and-crimson Oriole (Javan),Oriolus cruentus cruentus,Passeriformes,Oriolidae (Old World Orioles),,bacori1 18069,species,marori2,Maroon Oriole,Oriolus traillii,Passeriformes,Oriolidae (Old World Orioles),, 18074,species,silori1,Silver Oriole,Oriolus mellianus,Passeriformes,Oriolidae (Old World Orioles),, 18075,spuh,oriolu1,old world oriole sp.,Oriolus sp.,Passeriformes,Oriolidae (Old World Orioles),, 18076,species,wetfig1,Wetar Figbird,Sphecotheres hypoleucus,Passeriformes,Oriolidae (Old World Orioles),, 18077,species,grnfig1,Green Figbird,Sphecotheres viridis,Passeriformes,Oriolidae (Old World Orioles),, 18078,species,ausfig1,Australasian Figbird,Sphecotheres vieilloti,Passeriformes,Oriolidae (Old World Orioles),, 18078.2,species,noipio1,North Island Piopio,Turnagra tanagra,Passeriformes,Oriolidae (Old World Orioles),, 18078.4,species,soipio1,South Island Piopio,Turnagra capensis,Passeriformes,Oriolidae (Old World Orioles),, 18083,species,sqtdro1,Square-tailed Drongo,Dicrurus ludwigii,Passeriformes,Dicruridae (Drongos),Drongos, 18089,species,shidro1,Shining Drongo,Dicrurus atripennis,Passeriformes,Dicruridae (Drongos),, 18090,species,fotdro1,Fork-tailed Drongo,Dicrurus adsimilis,Passeriformes,Dicruridae (Drongos),, 18095,species,vemdro1,Velvet-mantled Drongo,Dicrurus modestus,Passeriformes,Dicruridae (Drongos),, 18095.5,issf,vemdro2,Velvet-mantled Drongo (Velvet-mantled),Dicrurus modestus coracinus/atactus,Passeriformes,Dicruridae (Drongos),,vemdro1 18098,issf,vemdro3,Velvet-mantled Drongo (Principe),Dicrurus modestus modestus,Passeriformes,Dicruridae (Drongos),,vemdro1 18099,species,alddro1,Aldabra Drongo,Dicrurus aldabranus,Passeriformes,Dicruridae (Drongos),, 18100,species,comdro1,Comoro Drongo,Dicrurus fuscipennis,Passeriformes,Dicruridae (Drongos),, 18101,species,credro1,Crested Drongo,Dicrurus forficatus,Passeriformes,Dicruridae (Drongos),, 18102,issf,credro2,Crested Drongo (Malagasy),Dicrurus forficatus forficatus,Passeriformes,Dicruridae (Drongos),,credro1 18103,issf,credro3,Crested Drongo (Comoro),Dicrurus forficatus potior,Passeriformes,Dicruridae (Drongos),,credro1 18104,species,maydro1,Mayotte Drongo,Dicrurus waldenii,Passeriformes,Dicruridae (Drongos),, 18105,species,bladro1,Black Drongo,Dicrurus macrocercus,Passeriformes,Dicruridae (Drongos),, 18113,species,ashdro1,Ashy Drongo,Dicrurus leucophaeus,Passeriformes,Dicruridae (Drongos),, 18113.05,issf,ashdro4,Ashy Drongo (Blackish),Dicrurus leucophaeus [longicaudatus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 18113.2,issf,ashdro2,Ashy Drongo (Sooty),Dicrurus leucophaeus [leucophaeus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 18113.7,issf,ashdro3,Ashy Drongo (Chinese White-faced),Dicrurus leucophaeus [innexus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 18113.83,issf,ashdro5,Ashy Drongo (Island White-faced),Dicrurus leucophaeus [periophthalmicus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 18113.95,issf,ashdro6,Ashy Drongo (Bornean),Dicrurus leucophaeus stigmatops,Passeriformes,Dicruridae (Drongos),,ashdro1 18114,slash,y00638,Black/Ashy Drongo,Dicrurus macrocercus/leucophaeus,Passeriformes,Dicruridae (Drongos),, 18128,species,whbdro1,White-bellied Drongo,Dicrurus caerulescens,Passeriformes,Dicruridae (Drongos),, 18129,issf,whbdro2,White-bellied Drongo (White-bellied),Dicrurus caerulescens caerulescens,Passeriformes,Dicruridae (Drongos),,whbdro1 18129.5,issf,whbdro3,White-bellied Drongo (White-vented),Dicrurus caerulescens leucopygialis/insularis,Passeriformes,Dicruridae (Drongos),,whbdro1 18132,species,crbdro1,Crow-billed Drongo,Dicrurus annectans,Passeriformes,Dicruridae (Drongos),, 18133,species,brodro1,Bronzed Drongo,Dicrurus aeneus,Passeriformes,Dicruridae (Drongos),, 18137,species,lrtdro1,Lesser Racket-tailed Drongo,Dicrurus remifer,Passeriformes,Dicruridae (Drongos),, 18142,species,hacdro1,Hair-crested Drongo,Dicrurus hottentottus,Passeriformes,Dicruridae (Drongos),, 18142.2,issf,hacdro2,Hair-crested Drongo (Hair-crested),Dicrurus hottentottus [hottentottus Group],Passeriformes,Dicruridae (Drongos),,hacdro1 18142.4,issf,hacdro3,Hair-crested Drongo (Short-tailed),Dicrurus hottentottus striatus/samarensis,Passeriformes,Dicruridae (Drongos),,hacdro1 18151,species,balica1,Balicassiao,Dicrurus balicassius,Passeriformes,Dicruridae (Drongos),, 18151.5,issf,balica2,Balicassiao (Balicassiao),Dicrurus balicassius balicassius/abraensis,Passeriformes,Dicruridae (Drongos),,balica1 18154,issf,balica3,Balicassiao (Visayan),Dicrurus balicassius mirabilis,Passeriformes,Dicruridae (Drongos),,balica1 18155,species,suldro1,Sulawesi Drongo,Dicrurus montanus,Passeriformes,Dicruridae (Drongos),, 18156,species,sumdro1,Sumatran Drongo,Dicrurus sumatranus,Passeriformes,Dicruridae (Drongos),, 18157,species,waldro1,Wallacean Drongo,Dicrurus densus,Passeriformes,Dicruridae (Drongos),, 18164,species,ritdro1,Ribbon-tailed Drongo,Dicrurus megarhynchus,Passeriformes,Dicruridae (Drongos),, 18165,species,spadro1,Spangled Drongo,Dicrurus bracteatus,Passeriformes,Dicruridae (Drongos),, 18166,species,tabdro1,Tablas Drongo,Dicrurus menagei,Passeriformes,Dicruridae (Drongos),, 18183,species,anddro1,Andaman Drongo,Dicrurus andamanensis,Passeriformes,Dicruridae (Drongos),, 18186,species,grtdro1,Greater Racket-tailed Drongo,Dicrurus paradiseus,Passeriformes,Dicruridae (Drongos),, 18200.5,species,srldro1,Sri Lanka Drongo,Dicrurus lophorinus,Passeriformes,Dicruridae (Drongos),, 18201,spuh,drongo1,drongo sp.,Dicrurus sp.,Passeriformes,Dicruridae (Drongos),, 18201.5,species,papdro1,Pygmy Drongo-Fantail,Chaetorhynchus papuensis,Passeriformes,Rhipiduridae (Fantails),Fantails, 18202.5,species,silkta2,Taveuni Silktail,Lamprolia victoriae,Passeriformes,Rhipiduridae (Fantails),, 18202.7,species,silkta3,Natewa Silktail,Lamprolia klinesmithi,Passeriformes,Rhipiduridae (Fantails),, 18202.9,species,blafan1,Black Fantail,Rhipidura atra,Passeriformes,Rhipiduridae (Fantails),, 18205,species,bacfan1,Black-and-cinnamon Fantail,Rhipidura nigrocinnamomea,Passeriformes,Rhipiduridae (Fantails),, 18208,species,blufan1,Mindanao Blue-Fantail,Rhipidura superciliaris,Passeriformes,Rhipiduridae (Fantails),, 18211,species,visblf1,Visayan Blue-Fantail,Rhipidura samarensis,Passeriformes,Rhipiduridae (Fantails),, 18212,species,tabfan1,Tablas Fantail,Rhipidura sauli,Passeriformes,Rhipiduridae (Fantails),, 18213,species,visfan1,Visayan Fantail,Rhipidura albiventris,Passeriformes,Rhipiduridae (Fantails),, 18214,species,blhfan1,Blue-headed Fantail,Rhipidura cyaniceps,Passeriformes,Rhipiduridae (Fantails),, 18217,species,spofan1,Spotted Fantail,Rhipidura perlata,Passeriformes,Rhipiduridae (Fantails),, 18218,species,citfan1,Cinnamon-tailed Fantail,Rhipidura fuscorufa,Passeriformes,Rhipiduridae (Fantails),, 18219,species,whwfan1,Cockerell's Fantail,Rhipidura cockerelli,Passeriformes,Rhipiduridae (Fantails),, 18220,issf,cocfan1,Cockerell's Fantail (White-winged),Rhipidura cockerelli [cockerelli Group],Passeriformes,Rhipiduridae (Fantails),,whwfan1 18225,issf,cocfan2,Cockerell's Fantail (Dot-breasted),Rhipidura cockerelli lavellae,Passeriformes,Rhipiduridae (Fantails),,whwfan1 18226,issf,cocfan3,Cockerell's Fantail (Black-breasted),Rhipidura cockerelli albina,Passeriformes,Rhipiduridae (Fantails),,whwfan1 18227,issf,cocfan4,Cockerell's Fantail (Spot-breasted),Rhipidura cockerelli coultasi,Passeriformes,Rhipiduridae (Fantails),,whwfan1 18228,species,norfan1,Northern Fantail,Rhipidura rufiventris,Passeriformes,Rhipiduridae (Fantails),, 18229,issf,norfan2,Northern Fantail (Obi),Rhipidura rufiventris obiensis,Passeriformes,Rhipiduridae (Fantails),,norfan1 18230,issf,norfan3,Northern Fantail (Buru),Rhipidura rufiventris bouruensis,Passeriformes,Rhipiduridae (Fantails),,norfan1 18231,issf,norfan4,Northern Fantail (Kai),Rhipidura rufiventris assimilis/finitima,Passeriformes,Rhipiduridae (Fantails),,norfan1 18233,issf,norfan10,Northern Fantail (Seram),Rhipidura rufiventris cinerea,Passeriformes,Rhipiduridae (Fantails),,norfan1 18235.5,issf,norfan5,Northern Fantail (Rote),Rhipidura rufiventris tenkatei,Passeriformes,Rhipiduridae (Fantails),,norfan1 18236,issf,norfan6,Northern Fantail (Timor),Rhipidura rufiventris rufiventris/pallidiceps,Passeriformes,Rhipiduridae (Fantails),,norfan1 18238,issf,norfan11,Northern Fantail (Banda Sea),Rhipidura rufiventris hoedti,Passeriformes,Rhipiduridae (Fantails),,norfan1 18240,issf,norfan12,Northern Fantail (Biak),Rhipidura rufiventris kordensis,Passeriformes,Rhipiduridae (Fantails),,norfan1 18244,issf,norfan8,Northern Fantail (Chin-spot),Rhipidura rufiventris nigromentalis,Passeriformes,Rhipiduridae (Fantails),,norfan1 18245,issf,norfan9,Northern Fantail (Melanesian),Rhipidura rufiventris [setosa Group],Passeriformes,Rhipiduridae (Fantails),,norfan1 18247,issf,norfan13,Northern Fantail (Northern),Rhipidura rufiventris isura,Passeriformes,Rhipiduridae (Fantails),,norfan1 18251,species,brcfan1,Brown-capped Fantail,Rhipidura diluta,Passeriformes,Rhipiduridae (Fantails),, 18254,species,sotfan1,Sooty Thicket-Fantail,Rhipidura threnothorax,Passeriformes,Rhipiduridae (Fantails),, 18256,species,bltfan1,Black Thicket-Fantail,Rhipidura maculipectus,Passeriformes,Rhipiduridae (Fantails),, 18257,species,wbtfan1,White-bellied Thicket-Fantail,Rhipidura leucothorax,Passeriformes,Rhipiduridae (Fantails),, 18261,species,wilwag1,Willie-wagtail,Rhipidura leucophrys,Passeriformes,Rhipiduridae (Fantails),, 18265,species,piefan1,Malaysian Pied-Fantail,Rhipidura javanica,Passeriformes,Rhipiduridae (Fantails),, 18268,species,phipif1,Philippine Pied-Fantail,Rhipidura nigritorquis,Passeriformes,Rhipiduridae (Fantails),, 18268.1,species,whtfan1,White-throated Fantail,Rhipidura albicollis,Passeriformes,Rhipiduridae (Fantails),, 18279,species,spbfan1,Spot-breasted Fantail,Rhipidura albogularis,Passeriformes,Rhipiduridae (Fantails),, 18279.2,hybrid,x00812,White-throated x Spot-breasted Fantail (hybrid),Rhipidura albicollis x albogularis,Passeriformes,Rhipiduridae (Fantails),, 18279.4,slash,y00892,White-throated/Spot-breasted Fantail,Rhipidura albicollis/albogularis,Passeriformes,Rhipiduridae (Fantails),, 18280,species,rutfan1,Rufous-tailed Fantail,Rhipidura phoenicura,Passeriformes,Rhipiduridae (Fantails),, 18281,species,whbfan1,White-bellied Fantail,Rhipidura euryura,Passeriformes,Rhipiduridae (Fantails),, 18282,species,whbfan2,White-browed Fantail,Rhipidura aureola,Passeriformes,Rhipiduridae (Fantails),, 18282.2,slash,y00893,White-throated/White-browed Fantail,Rhipidura albicollis/aureola,Passeriformes,Rhipiduridae (Fantails),, 18285.5,slash,y00801,Spot-breasted/White-browed Fantail,Rhipidura albogularis/aureola,Passeriformes,Rhipiduridae (Fantails),, 18286,species,rubfan1,Rufous-backed Fantail,Rhipidura rufidorsa,Passeriformes,Rhipiduridae (Fantails),, 18290,species,dimfan1,Dimorphic Fantail,Rhipidura brachyrhyncha,Passeriformes,Rhipiduridae (Fantails),, 18294,species,bisfan1,Bismarck Fantail,Rhipidura dahli,Passeriformes,Rhipiduridae (Fantails),, 18297,species,matfan1,Mussau Fantail,Rhipidura matthiae,Passeriformes,Rhipiduridae (Fantails),, 18298,species,malfan1,Malaita Fantail,Rhipidura malaitae,Passeriformes,Rhipiduridae (Fantails),, 18299,species,ruffan2,Rusty-bellied Fantail,Rhipidura teysmanni,Passeriformes,Rhipiduridae (Fantails),, 18299.2,issf,rubfan2,Rusty-bellied Fantail (Sulawesi),Rhipidura teysmanni teysmanni/toradja,Passeriformes,Rhipiduridae (Fantails),,ruffan2 18299.4,issf,rubfan3,Rusty-bellied Fantail (Taliabu),Rhipidura teysmanni sulaensis,Passeriformes,Rhipiduridae (Fantails),,ruffan2 18299.6,form,pelfan1,Peleng Fantail (undescribed form),Rhipidura (undescribed form),Passeriformes,Rhipiduridae (Fantails),, 18302,species,cibfan1,Tawny-backed Fantail,Rhipidura superflua,Passeriformes,Rhipiduridae (Fantails),, 18303,species,stbfan1,Streak-breasted Fantail,Rhipidura dedemi,Passeriformes,Rhipiduridae (Fantails),, 18304,species,lotfan1,Long-tailed Fantail,Rhipidura opistherythra,Passeriformes,Rhipiduridae (Fantails),, 18304.5,species,palfan1,Palau Fantail,Rhipidura lepida,Passeriformes,Rhipiduridae (Fantails),, 18305,species,manfan2,Manus Fantail,Rhipidura semirubra,Passeriformes,Rhipiduridae (Fantails),, 18306,species,ruffan1,Rufous Fantail,Rhipidura rufifrons,Passeriformes,Rhipiduridae (Fantails),, 18307,issf,ruffan3,Rufous Fantail (Moluccan),Rhipidura rufifrons torrida,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18308,issf,ruffan4,Rufous Fantail (Gray-tailed),Rhipidura rufifrons louisiadensis,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18309,issf,ruffan5,Rufous Fantail (Guam),Rhipidura rufifrons uraniae,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18310,issf,ruffan6,Rufous Fantail (Marianas),Rhipidura rufifrons saipanensis/mariae,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18313,issf,ruffan7,Rufous Fantail (Yap),Rhipidura rufifrons versicolor,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18314,issf,ruffan8,Rufous Fantail (White-fronted),Rhipidura rufifrons melaenolaema/utupuae,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18317,issf,ruffan9,Rufous Fantail (Brown-capped),Rhipidura rufifrons agilis,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18318,issf,ruffan10,Rufous Fantail (Brown-backed),Rhipidura rufifrons [rufofronta Group],Passeriformes,Rhipiduridae (Fantails),,ruffan1 18323,issf,ruffan11,Rufous Fantail (Rufous-backed),Rhipidura rufifrons russata/kuperi,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18326,issf,ruffan12,Rufous Fantail (Dark-throated),Rhipidura rufifrons ugiensis,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18327,issf,ruffan13,Rufous Fantail (Rufous-fronted),Rhipidura rufifrons rufifrons/intermedia,Passeriformes,Rhipiduridae (Fantails),,ruffan1 18330,species,arafan1,Arafura Fantail,Rhipidura dryas,Passeriformes,Rhipiduridae (Fantails),, 18333,issf,arafan2,Arafura Fantail (Supertramp),Rhipidura dryas [semicollaris Group],Passeriformes,Rhipiduridae (Fantails),,arafan1 18336,issf,arafan3,Arafura Fantail (Arafura),Rhipidura dryas dryas,Passeriformes,Rhipiduridae (Fantails),,arafan1 18342,species,pohfan1,Pohnpei Fantail,Rhipidura kubaryi,Passeriformes,Rhipiduridae (Fantails),, 18343,species,frifan1,Friendly Fantail,Rhipidura albolimbata,Passeriformes,Rhipiduridae (Fantails),, 18346,species,chbfan1,Chestnut-bellied Fantail,Rhipidura hyperythra,Passeriformes,Rhipiduridae (Fantails),, 18349,species,brofan1,Brown Fantail,Rhipidura drownei,Passeriformes,Rhipiduridae (Fantails),, 18349.2,issf,brnfan1,Brown Fantail (Bougainville),Rhipidura drownei drownei,Passeriformes,Rhipiduridae (Fantails),,brofan1 18349.4,issf,brnfan2,Brown Fantail (Guadalcanal),Rhipidura drownei ocularis,Passeriformes,Rhipiduridae (Fantails),,brofan1 18351.5,species,strfan1,Streaked Fantail,Rhipidura verreauxi,Passeriformes,Rhipiduridae (Fantails),, 18351.7,issf,strfan2,Streaked Fantail (Vanuatu),Rhipidura verreauxi spilodera,Passeriformes,Rhipiduridae (Fantails),,strfan1 18351.9,issf,strfan3,Streaked Fantail (Fiji),Rhipidura verreauxi layardi/erythronota,Passeriformes,Rhipiduridae (Fantails),,strfan1 18352.1,issf,strfan4,Streaked Fantail (Taveuni),Rhipidura verreauxi rufilateralis,Passeriformes,Rhipiduridae (Fantails),,strfan1 18352.3,issf,strfan5,Streaked Fantail (New Caledonia),Rhipidura verreauxi verreauxi,Passeriformes,Rhipiduridae (Fantails),,strfan1 18356,species,dusfan1,Dusky Fantail,Rhipidura tenebrosa,Passeriformes,Rhipiduridae (Fantails),, 18357,species,renfan1,Rennell Fantail,Rhipidura rennelliana,Passeriformes,Rhipiduridae (Fantails),, 18358,species,kanfan1,Kadavu Fantail,Rhipidura personata,Passeriformes,Rhipiduridae (Fantails),, 18359,species,samfan1,Samoan Fantail,Rhipidura nebulosa,Passeriformes,Rhipiduridae (Fantails),, 18361,species,gryfan1,Gray Fantail,Rhipidura albiscapa,Passeriformes,Rhipiduridae (Fantails),, 18361.5,issf,gryfan2,Gray Fantail (Melanesian),Rhipidura albiscapa [pelzelni Group],Passeriformes,Rhipiduridae (Fantails),,gryfan1 18361.7,issf,gryfan4,Gray Fantail (keasti),Rhipidura albiscapa keasti,Passeriformes,Rhipiduridae (Fantails),,gryfan1 18361.9,issf,gryfan5,Gray Fantail (alisteri),Rhipidura albiscapa alisteri,Passeriformes,Rhipiduridae (Fantails),,gryfan1 18362.1,issf,gryfan6,Gray Fantail (albiscapa),Rhipidura albiscapa albiscapa,Passeriformes,Rhipiduridae (Fantails),,gryfan1 18362.3,issf,gryfan7,Gray Fantail (preissi),Rhipidura albiscapa preissi,Passeriformes,Rhipiduridae (Fantails),,gryfan1 18362.5,issf,gryfan8,Gray Fantail (albicauda),Rhipidura albiscapa albicauda,Passeriformes,Rhipiduridae (Fantails),,gryfan1 18371,species,manfan1,Mangrove Fantail,Rhipidura phasiana,Passeriformes,Rhipiduridae (Fantails),, 18372,species,nezfan1,New Zealand Fantail,Rhipidura fuliginosa,Passeriformes,Rhipiduridae (Fantails),, 18376.5,spuh,fantai1,fantail sp.,Rhipidura sp.,Passeriformes,Rhipiduridae (Fantails),, 18378,species,bucifr1,Blue-capped Ifrita,Ifrita kowaldi,Passeriformes,Ifritidae (Ifrita),Ifrita, 18386,species,bhcfly1,Blue-headed Crested-Flycatcher,Trochocercus nitens,Passeriformes,Monarchidae (Monarch Flycatchers),Monarch Flycatchers, 18389,species,afcfly1,African Crested-Flycatcher,Trochocercus cyanomelas,Passeriformes,Monarchidae (Monarch Flycatchers),, 18389.2,issf,afrcrf1,African Crested-Flycatcher (Eastern),Trochocercus cyanomelas [bivittatus Group],Passeriformes,Monarchidae (Monarch Flycatchers),,afcfly1 18389.4,issf,afrcrf2,African Crested-Flycatcher (Southern),Trochocercus cyanomelas cyanomelas/segregus,Passeriformes,Monarchidae (Monarch Flycatchers),,afcfly1 18395,species,shcmon1,Short-crested Monarch,Hypothymis helenae,Passeriformes,Monarchidae (Monarch Flycatchers),, 18399,species,blnmon1,Black-naped Monarch,Hypothymis azurea,Passeriformes,Monarchidae (Monarch Flycatchers),, 18423,species,pabmon1,Pale-blue Monarch,Hypothymis puella,Passeriformes,Monarchidae (Monarch Flycatchers),, 18426,species,celmon1,Celestial Monarch,Hypothymis coelestis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18427,species,cepfly1,Cerulean Paradise-Flycatcher,Eutrichomyias rowleyi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18428,species,blpfly1,Blue Paradise-Flycatcher,Terpsiphone cyanescens,Passeriformes,Monarchidae (Monarch Flycatchers),, 18428.5,species,rupfly1,Rufous Paradise-Flycatcher,Terpsiphone cinnamomea,Passeriformes,Monarchidae (Monarch Flycatchers),, 18428.7,issf,rufpaf1,Rufous Paradise-Flycatcher (Northern),Terpsiphone cinnamomea unirufa,Passeriformes,Monarchidae (Monarch Flycatchers),,rupfly1 18428.9,issf,rufpaf2,Rufous Paradise-Flycatcher (Southern),Terpsiphone cinnamomea cinnamomea/talautensis,Passeriformes,Monarchidae (Monarch Flycatchers),,rupfly1 18433,species,japfly1,Japanese Paradise-Flycatcher,Terpsiphone atrocaudata,Passeriformes,Monarchidae (Monarch Flycatchers),, 18435,species,amupaf1,Amur Paradise-Flycatcher,Terpsiphone incei,Passeriformes,Monarchidae (Monarch Flycatchers),, 18437.5,slash,y00976,Japanese/Amur Paradise-Flycatcher,Terpsiphone atrocaudata/incei,Passeriformes,Monarchidae (Monarch Flycatchers),, 18438,species,blypaf1,Blyth's Paradise-Flycatcher,Terpsiphone affinis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18439,issf,blypaf2,Blyth's Paradise-Flycatcher (Blyth's),Terpsiphone affinis [affinis Group],Passeriformes,Monarchidae (Monarch Flycatchers),,blypaf1 18441,issf,blypaf3,Blyth's Paradise-Flycatcher (Lesser Sundas),Terpsiphone affinis floris/sumbaensis,Passeriformes,Monarchidae (Monarch Flycatchers),,blypaf1 18442,slash,y00977,Amur/Blyth's Paradise-Flycatcher,Terpsiphone incei/affinis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18443,species,mapfly2,Mascarene Paradise-Flycatcher,Terpsiphone bourbonnensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18445,species,aspfly1,Indian Paradise-Flycatcher,Terpsiphone paradisi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18455.6,slash,y00978,Blyth's/Indian Paradise-Flycatcher,Terpsiphone affinis/paradisi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18455.8,slash,y00742,Amur/Blyth's/Indian Paradise-Flycatcher,Terpsiphone incei/affinis/paradisi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18456,species,stpfly1,Sao Tome Paradise-Flycatcher,Terpsiphone atrochalybeia,Passeriformes,Monarchidae (Monarch Flycatchers),, 18457,species,sepfly1,Seychelles Paradise-Flycatcher,Terpsiphone corvina,Passeriformes,Monarchidae (Monarch Flycatchers),, 18457.2,species,mapfly1,Madagascar Paradise-Flycatcher,Terpsiphone mutata,Passeriformes,Monarchidae (Monarch Flycatchers),, 18457.4,issf,madpaf1,Madagascar Paradise-Flycatcher (Madagascar),Terpsiphone mutata [mutata Group],Passeriformes,Monarchidae (Monarch Flycatchers),,mapfly1 18457.6,issf,madpaf2,Madagascar Paradise-Flycatcher (Comoro),Terpsiphone mutata vulpina/voeltzkowiana,Passeriformes,Monarchidae (Monarch Flycatchers),,mapfly1 18464,issf,madpaf3,Madagascar Paradise-Flycatcher (Grand Comoro),Terpsiphone mutata comoroensis,Passeriformes,Monarchidae (Monarch Flycatchers),,mapfly1 18465,species,bhpfly1,Black-headed Paradise-Flycatcher,Terpsiphone rufiventer,Passeriformes,Monarchidae (Monarch Flycatchers),, 18468,issf,bkhpaf1,Black-headed Paradise-Flycatcher (Red-bellied),Terpsiphone rufiventer [rufiventer Group],Passeriformes,Monarchidae (Monarch Flycatchers),,bhpfly1 18468.2,issf,bkhpaf3,Black-headed Paradise-Flycatcher (Tricolored),Terpsiphone rufiventer tricolor/neumanni,Passeriformes,Monarchidae (Monarch Flycatchers),,bhpfly1 18472,issf,bkhpaf2,Black-headed Paradise-Flycatcher (Annobon),Terpsiphone rufiventer smithii,Passeriformes,Monarchidae (Monarch Flycatchers),,bhpfly1 18473,species,bepfly1,Bedford's Paradise-Flycatcher,Terpsiphone bedfordi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18477,species,rvpfly1,Rufous-vented Paradise-Flycatcher,Terpsiphone rufocinerea,Passeriformes,Monarchidae (Monarch Flycatchers),, 18492,species,batpaf1,Bates's Paradise-Flycatcher,Terpsiphone batesi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18493,species,afpfly1,African Paradise-Flycatcher,Terpsiphone viridis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18493.5,hybrid,x00862,Black-headed x African Paradise-Flycatcher (hybrid),Terpsiphone rufiventer x viridis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18493.9,spuh,paradi1,paradise-flycatcher sp.,Terpsiphone sp.,Passeriformes,Monarchidae (Monarch Flycatchers),, 18494,species,elepai,Hawaii Elepaio,Chasiempis sandwichensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18495,issf,elepai1,Hawaii Elepaio (Kona coast),Chasiempis sandwichensis sandwichensis,Passeriformes,Monarchidae (Monarch Flycatchers),,elepai 18496,issf,elepai3,Hawaii Elepaio (Mauna Kea),Chasiempis sandwichensis bryani,Passeriformes,Monarchidae (Monarch Flycatchers),,elepai 18497,issf,elepai2,Hawaii Elepaio (Hilo coast),Chasiempis sandwichensis ridgwayi,Passeriformes,Monarchidae (Monarch Flycatchers),,elepai 18498,species,elepai5,Kauai Elepaio,Chasiempis sclateri,Passeriformes,Monarchidae (Monarch Flycatchers),, 18499,species,elepai4,Oahu Elepaio,Chasiempis ibidis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18502,species,tahmon2,Tahiti Monarch,Pomarea nigra,Passeriformes,Monarchidae (Monarch Flycatchers),, 18503,species,maumon1,Maupiti Monarch,Pomarea pomarea,Passeriformes,Monarchidae (Monarch Flycatchers),, 18504,species,rarmon1,Rarotonga Monarch,Pomarea dimidiata,Passeriformes,Monarchidae (Monarch Flycatchers),, 18505,species,eiamon1,Eiao Monarch,Pomarea fluxa,Passeriformes,Monarchidae (Monarch Flycatchers),, 18505.5,species,nuhmon1,Nuku Hiva Monarch,Pomarea nukuhivae,Passeriformes,Monarchidae (Monarch Flycatchers),, 18506,species,iphmon2,Iphis Monarch,Pomarea iphis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18506.5,species,uapmon1,Ua Pou Monarch,Pomarea mira,Passeriformes,Monarchidae (Monarch Flycatchers),, 18507,species,marmon2,Marquesas Monarch,Pomarea mendozae,Passeriformes,Monarchidae (Monarch Flycatchers),, 18508,species,fatmon1,Fatuhiva Monarch,Pomarea whitneyi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18509,species,ogemon1,Ogea Monarch,Mayrornis versicolor,Passeriformes,Monarchidae (Monarch Flycatchers),, 18510,species,slamon1,Slaty Monarch,Mayrornis lessoni,Passeriformes,Monarchidae (Monarch Flycatchers),, 18513,species,vanmon1,Vanikoro Monarch,Mayrornis schistaceus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18514,species,bubmon1,Buff-bellied Monarch,Neolalage banksiana,Passeriformes,Monarchidae (Monarch Flycatchers),, 18515,species,soushr2,Southern Shrikebill,Clytorhynchus pachycephaloides,Passeriformes,Monarchidae (Monarch Flycatchers),, 18518,species,renshr1,Rennell Shrikebill,Clytorhynchus hamlini,Passeriformes,Monarchidae (Monarch Flycatchers),, 18519,species,fijshr1,Fiji Shrikebill,Clytorhynchus vitiensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18522,issf,fijshr2,Fiji Shrikebill (Manua),Clytorhynchus vitiensis powelli,Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 18524,issf,fijshr3,Fiji Shrikebill (Fiji),Clytorhynchus vitiensis [vitiensis Group],Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 18526,issf,fijshr4,Fiji Shrikebill (Fortuna),Clytorhynchus vitiensis fortunae,Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 18528,issf,fijshr5,Fiji Shrikebill (Dusky),Clytorhynchus vitiensis keppeli,Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 18532,species,bltshr1,Black-throated Shrikebill,Clytorhynchus nigrogularis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18533,issf,bktshr1,Black-throated Shrikebill (Black-throated),Clytorhynchus nigrogularis nigrogularis,Passeriformes,Monarchidae (Monarch Flycatchers),,bltshr1 18534,issf,bktshr2,Black-throated Shrikebill (Santa Cruz),Clytorhynchus nigrogularis sanctaecrucis,Passeriformes,Monarchidae (Monarch Flycatchers),,bltshr1 18535,slash,y00802,Fiji/Black-throated Shrikebill,Clytorhynchus vitiensis/nigrogularis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18536,species,whnmon1,White-naped Monarch,Carterornis pileatus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18538,species,loemon1,Loetoe Monarch,Carterornis castus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18539,species,whemon1,White-eared Monarch,Carterornis leucotis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18540,species,golmon1,Golden Monarch,Carterornis chrysomela,Passeriformes,Monarchidae (Monarch Flycatchers),, 18541.9,species,trumon1,Truk Monarch,Metabolus rugensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18542,species,yapmon1,Yap Monarch,Monarcha godeffroyi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18543,species,tinmon1,Tinian Monarch,Monarcha takatsukasae,Passeriformes,Monarchidae (Monarch Flycatchers),, 18545,species,islmon1,Island Monarch,Monarcha cinerascens,Passeriformes,Monarchidae (Monarch Flycatchers),, 18547,species,whcmon1,White-capped Monarch,Monarcha richardsii,Passeriformes,Monarchidae (Monarch Flycatchers),, 18547.5,species,chbmon1,Chestnut-bellied Monarch,Monarcha castaneiventris,Passeriformes,Monarchidae (Monarch Flycatchers),, 18551,species,boumon1,Bougainville Monarch,Monarcha erythrostictus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18553,species,blfmon1,Black-faced Monarch,Monarcha melanopsis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18553.5,species,blwmon1,Black-winged Monarch,Monarcha frater,Passeriformes,Monarchidae (Monarch Flycatchers),, 18553.7,spuh,monarc1,Monarcha sp.,Monarcha sp.,Passeriformes,Monarchidae (Monarch Flycatchers),, 18559,species,blamon1,Fantailed Monarch,Symposiachrus axillaris,Passeriformes,Monarchidae (Monarch Flycatchers),, 18565,species,rufmon1,Rufous Monarch,Symposiachrus rubiensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18567,species,flomon1,Flores Monarch,Symposiachrus sacerdotum,Passeriformes,Monarchidae (Monarch Flycatchers),, 18569,species,blcmon1,Black-chinned Monarch,Symposiachrus boanensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18571,species,spemon1,Spectacled Monarch,Symposiachrus trivirgatus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18573,issf,spemon3,Spectacled Monarch (Halmahera),Symposiachrus trivirgatus bimaculatus,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 18575,issf,spemon4,Spectacled Monarch (Obi),Symposiachrus trivirgatus diadematus,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 18577,issf,spemon6,Spectacled Monarch (Seram),Symposiachrus trivirgatus nigrimentum,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 18583,issf,spemon2,Spectacled Monarch (Spectacled),Symposiachrus trivirgatus [trivirgatus Group],Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 18587.15,issf,spemon5,Spectacled Monarch (Australian),Symposiachrus trivirgatus gouldii/melanorrhous,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 18587.5,species,whtmon1,White-tailed Monarch,Symposiachrus leucurus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18587.6,species,whtmon2,White-tipped Monarch,Symposiachrus everetti,Passeriformes,Monarchidae (Monarch Flycatchers),, 18587.7,species,bltmon2,Black-tipped Monarch,Symposiachrus loricatus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18587.8,species,blbmon1,Kofiau Monarch,Symposiachrus julianae,Passeriformes,Monarchidae (Monarch Flycatchers),, 18587.9,species,biamon1,Biak Monarch,Symposiachrus brehmii,Passeriformes,Monarchidae (Monarch Flycatchers),, 18588,species,hoomon1,Hooded Monarch,Symposiachrus manadensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18588.3,species,manmon1,Manus Monarch,Symposiachrus infelix,Passeriformes,Monarchidae (Monarch Flycatchers),, 18591,species,whbmon1,White-breasted Monarch,Symposiachrus menckei,Passeriformes,Monarchidae (Monarch Flycatchers),, 18592,species,bltmon1,Black-tailed Monarch,Symposiachrus verticalis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18592.2,issf,bktmon1,Black-tailed Monarch (Djaul),Symposiachrus verticalis ateralbus,Passeriformes,Monarchidae (Monarch Flycatchers),,bltmon1 18592.4,issf,bktmon2,Black-tailed Monarch (Black-tailed),Symposiachrus verticalis verticalis,Passeriformes,Monarchidae (Monarch Flycatchers),,bltmon1 18593.5,species,bawmon1,Black-and-white Monarch,Symposiachrus barbatus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18594,issf,bawmon2,Black-and-white Monarch (Solomons),Symposiachrus barbatus barbatus,Passeriformes,Monarchidae (Monarch Flycatchers),,bawmon1 18595,issf,bawmon4,Black-and-white Monarch (White-cheeked),Symposiachrus barbatus malaitae,Passeriformes,Monarchidae (Monarch Flycatchers),,bawmon1 18595.3,species,kulmon1,Kolombangra Monarch,Symposiachrus browni,Passeriformes,Monarchidae (Monarch Flycatchers),, 18597.5,species,blbmon2,Black-bibbed Monarch,Symposiachrus mundus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18617,species,whcmon2,White-collared Monarch,Symposiachrus vidua,Passeriformes,Monarchidae (Monarch Flycatchers),, 18618,species,spwmon1,Spot-winged Monarch,Symposiachrus guttula,Passeriformes,Monarchidae (Monarch Flycatchers),, 18619,species,frimon1,Frilled Monarch,Arses telescopthalmus,Passeriformes,Monarchidae (Monarch Flycatchers),, 18633,species,frnmon1,Frill-necked Monarch,Arses lorealis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18634,species,rucmon1,Ochre-collared Monarch,Arses insularis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18634.2,hybrid,x00813,Frill-necked x Ochre-collared Monarch (hybrid),Arses telescopthalmus x insularis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18635,species,piemon1,Pied Monarch,Arses kaupi,Passeriformes,Monarchidae (Monarch Flycatchers),, 18638,species,maglar1,Magpie-lark,Grallina cyanoleuca,Passeriformes,Monarchidae (Monarch Flycatchers),, 18641,species,torlar1,Torrent-lark,Grallina bruijnii,Passeriformes,Monarchidae (Monarch Flycatchers),, 18642,species,palfly3,Palau Flycatcher,Myiagra erythrops,Passeriformes,Monarchidae (Monarch Flycatchers),, 18643,species,guafly1,Guam Flycatcher,Myiagra freycineti,Passeriformes,Monarchidae (Monarch Flycatchers),, 18644,species,pohfly1,Pohnpei Flycatcher,Myiagra pluto,Passeriformes,Monarchidae (Monarch Flycatchers),, 18645,species,ocefly1,Oceanic Flycatcher,Myiagra oceanica,Passeriformes,Monarchidae (Monarch Flycatchers),, 18646,species,biafly1,Biak Flycatcher,Myiagra atra,Passeriformes,Monarchidae (Monarch Flycatchers),, 18647,species,molfly1,Moluccan Flycatcher,Myiagra galeata,Passeriformes,Monarchidae (Monarch Flycatchers),, 18652,species,leafly2,Leaden Flycatcher,Myiagra rubecula,Passeriformes,Monarchidae (Monarch Flycatchers),, 18659,species,stbfly1,Steel-blue Flycatcher,Myiagra ferrocyanea,Passeriformes,Monarchidae (Monarch Flycatchers),, 18664,species,ochfly1,Ochre-headed Flycatcher,Myiagra cervinicauda,Passeriformes,Monarchidae (Monarch Flycatchers),, 18665,species,melfly1,Melanesian Flycatcher,Myiagra caledonica,Passeriformes,Monarchidae (Monarch Flycatchers),, 18671,species,vanfly1,Vanikoro Flycatcher,Myiagra vanikorensis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18677,species,samfly1,Samoan Flycatcher,Myiagra albiventris,Passeriformes,Monarchidae (Monarch Flycatchers),, 18678,species,blcfly2,Azure-crested Flycatcher,Myiagra azureocapilla,Passeriformes,Monarchidae (Monarch Flycatchers),, 18679,species,chtfly1,Chestnut-throated Flycatcher,Myiagra castaneigularis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18682,species,brbfly1,Broad-billed Flycatcher,Myiagra ruficollis,Passeriformes,Monarchidae (Monarch Flycatchers),, 18686,species,satfly1,Satin Flycatcher,Myiagra cyanoleuca,Passeriformes,Monarchidae (Monarch Flycatchers),, 18686.5,slash,y00803,Leaden/Satin Flycatcher,Myiagra rubecula/cyanoleuca,Passeriformes,Monarchidae (Monarch Flycatchers),, 18687,species,resfly1,Restless Flycatcher,Myiagra inquieta,Passeriformes,Monarchidae (Monarch Flycatchers),, 18688,species,papfly1,Paperbark Flycatcher,Myiagra nana,Passeriformes,Monarchidae (Monarch Flycatchers),, 18688.2,slash,y00894,Restless/Paperbark Flycatcher,Myiagra inquieta/nana,Passeriformes,Monarchidae (Monarch Flycatchers),, 18689,species,shifly1,Shining Flycatcher,Myiagra alecto,Passeriformes,Monarchidae (Monarch Flycatchers),, 18697,species,dulfly1,Dull Flycatcher,Myiagra hebetior,Passeriformes,Monarchidae (Monarch Flycatchers),, 18697.2,issf,dulfly2,Dull Flycatcher (Mussau),Myiagra hebetior hebetior,Passeriformes,Monarchidae (Monarch Flycatchers),,dulfly1 18697.4,issf,dulfly3,Dull Flycatcher (Velvet),Myiagra hebetior eichhorni,Passeriformes,Monarchidae (Monarch Flycatchers),,dulfly1 18697.6,issf,dulfly4,Dull Flycatcher (Djaul),Myiagra hebetior cervinicolor,Passeriformes,Monarchidae (Monarch Flycatchers),,dulfly1 18697.8,spuh,myiagr1,Myiagra sp.,Myiagra sp.,Passeriformes,Monarchidae (Monarch Flycatchers),, 18704,species,crejay1,Crested Jay,Platylophus galericulatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)","Jays, Magpies, Crows, and Ravens", 18708,species,blamag1,Black Magpie,Platysmurus leucopterus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18708.2,issf,blkmag1,Black Magpie (Malay),Platysmurus leucopterus leucopterus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blamag1 18708.4,issf,blkmag2,Black Magpie (Bornean),Platysmurus leucopterus aterrimus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blamag1 18711,species,sibjay1,Siberian Jay,Perisoreus infaustus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18721,species,sicjay1,Sichuan Jay,Perisoreus internigrans,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18722,species,gryjay,Gray Jay,Perisoreus canadensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18723,issf,gryjay1,Gray Jay (Northern),Perisoreus canadensis [canadensis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gryjay 18728,issf,gryjay2,Gray Jay (Rocky Mts.),Perisoreus canadensis capitalis/albescens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gryjay 18731,issf,gryjay3,Gray Jay (Pacific),Perisoreus canadensis [obscurus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gryjay 18735,species,whtjay1,White-throated Jay,Cyanolyca mirabilis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18736,species,dwajay1,Dwarf Jay,Cyanolyca nanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18741,species,bltjay1,Black-throated Jay,Cyanolyca pumilo,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18746,species,sitjay1,Silvery-throated Jay,Cyanolyca argentigula,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18755,species,azhjay1,Azure-hooded Jay,Cyanolyca cucullata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18756,species,beajay1,Beautiful Jay,Cyanolyca pulchra,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18758,species,blcjay2,Black-collared Jay,Cyanolyca armillata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18758.2,issf,bkcjay1,Black-collared Jay (Black-collared),Cyanolyca armillata armillata/meridana,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blcjay2 18758.4,issf,bkcjay2,Black-collared Jay (Quindio),Cyanolyca armillata quindiuna,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blcjay2 18759,species,turjay1,Turquoise Jay,Cyanolyca turcosa,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18760,species,whcjay2,White-collared Jay,Cyanolyca viridicyanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18762,species,btmjay,Black-throated Magpie-Jay,Calocitta colliei,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18763,species,wtmjay1,White-throated Magpie-Jay,Calocitta formosa,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18766.5,hybrid,x00443,Black-throated x White-throated Magpie-Jay (hybrid),Calocitta colliei x formosa,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18767.5,species,brnjay,Brown Jay,Psilorhinus morio,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18768,species,tufjay1,Tufted Jay,Cyanocorax dickeyi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18769,species,blcjay1,Black-chested Jay,Cyanocorax affinis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18772,species,grnjay,Green Jay,Cyanocorax yncas,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18773,issf,grnjay1,Green Jay (Green),Cyanocorax yncas [luxuosus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,grnjay 18780,issf,grnjay2,Green Jay (Inca),Cyanocorax yncas [yncas Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,grnjay 18792,species,bucjay1,Bushy-crested Jay,Cyanocorax melanocyaneus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18795,species,sabjay,San Blas Jay,Cyanocorax sanblasianus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18798,species,yucjay1,Yucatan Jay,Cyanocorax yucatanicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18801,species,pubjay1,Purplish-backed Jay,Cyanocorax beecheii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18802,species,purjay1,Purplish Jay,Cyanocorax cyanomelas,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18803,species,azujay1,Azure Jay,Cyanocorax caeruleus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18804,species,viojay1,Violaceous Jay,Cyanocorax violaceus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18807,species,cucjay1,Curl-crested Jay,Cyanocorax cristatellus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18808,species,whtjay2,White-tailed Jay,Cyanocorax mystacalis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18809,species,cayjay1,Cayenne Jay,Cyanocorax cayanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18810,species,aznjay1,Azure-naped Jay,Cyanocorax heilprini,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18810.2,issf,aznjay2,Azure-naped Jay (Azure-naped),Cyanocorax heilprini heilprini,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,aznjay1 18810.5,issf,camjay1,Azure-naped Jay (Campina),Cyanocorax heilprini hafferi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,aznjay1 18811,species,plcjay1,Plush-crested Jay,Cyanocorax chrysops,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18815,species,whnjay1,White-naped Jay,Cyanocorax cyanopogon,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18815.2,spuh,cyanoc1,Cyanocorax sp.,Cyanocorax sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18815.5,species,pinjay,Pinyon Jay,Gymnorhinus cyanocephalus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18816,species,stejay,Steller's Jay,Cyanocitta stelleri,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18820,issf,stejay1,Steller's Jay (Coastal),Cyanocitta stelleri [stelleri Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,stejay 18824,issf,stejay2,Steller's Jay (Interior),Cyanocitta stelleri [diademata Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,stejay 18825,issf,stejay3,Steller's Jay (Central American),Cyanocitta stelleri [coronata Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,stejay 18831,species,blujay,Blue Jay,Cyanocitta cristata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18835,hybrid,bxgjay1,Green x Blue Jay (hybrid),Cyanocorax yncas x Cyanocitta cristata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18836,hybrid,x00622,Steller's x Blue Jay (hybrid),Cyanocitta stelleri x cristata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18837,species,flsjay,Florida Scrub-Jay,Aphelocoma coerulescens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18838,species,issjay,Island Scrub-Jay,Aphelocoma insularis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18840,species,cowscj1,California Scrub-Jay,Aphelocoma californica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18847.5,species,wooscj2,Woodhouse's Scrub-Jay,Aphelocoma woodhouseii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18848,issf,wooscj1,Woodhouse's Scrub-Jay (Woodhouse's),Aphelocoma woodhouseii [woodhouseii Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,wooscj2 18855,issf,wesscj1,Woodhouse's Scrub-Jay (Sumichrast's),Aphelocoma woodhouseii sumichrasti/remota,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,wooscj2 18855.2,hybrid,x00891,Steller's Jay x Woodhouse's Scrub-Jay (hybrid),Cyanocitta stelleri x Aphelocoma woodhouseii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18857,slash,wesjay,California/Woodhouse's Scrub-Jay,Aphelocoma californica/woodhouseii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18858,species,mexjay4,Mexican Jay,Aphelocoma wollweberi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18859,issf,mexjay1,Mexican Jay (Arizona),Aphelocoma wollweberi [wollweberi Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,mexjay4 18863,issf,mexjay2,Mexican Jay (Couch's),Aphelocoma wollweberi couchii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,mexjay4 18865,issf,mexjay5,Mexican Jay (San Luis Potosi),Aphelocoma wollweberi potosina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,mexjay4 18866,species,mexjay3,Transvolcanic Jay,Aphelocoma ultramarina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18868.5,slash,mexjay,Mexican/Transvolcanic Jay,Aphelocoma wollweberi/ultramarina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18869,species,unijay1,Unicolored Jay,Aphelocoma unicolor,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18875,spuh,scrjay,Aphelocoma sp.,Aphelocoma sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18877,species,eurjay1,Eurasian Jay,Garrulus glandarius,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18878,issf,eurjay2,Eurasian Jay (Eurasian),Garrulus glandarius [glandarius Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18892,issf,eurjay3,Eurasian Jay (Black-capped),Garrulus glandarius [atricapillus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18898,issf,eurjay4,Eurasian Jay (Black-crowned),Garrulus glandarius [cervicalis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18902,issf,eurjay5,Eurasian Jay (Iranian),Garrulus glandarius hyrcanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18903,issf,eurjay6,Eurasian Jay (Brandt's),Garrulus glandarius [brandtii Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18908,issf,eurjay7,Eurasian Jay (Himalayan),Garrulus glandarius [bispecularis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18915,issf,eurjay8,Eurasian Jay (White-faced),Garrulus glandarius leucotis/oatesi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18917,issf,eurjay9,Eurasian Jay (Japanese),Garrulus glandarius [japonicus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 18918,species,blhjay1,Black-headed Jay,Garrulus lanceolatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18919,species,lidjay1,Lidth's Jay,Garrulus lidthi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18919.5,spuh,jay1,jay sp.,Corvidae sp. (jay sp.),Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18920,species,azwmag3,Iberian Magpie,Cyanopica cooki,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18921,species,azwmag2,Azure-winged Magpie,Cyanopica cyanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18921.5,issf,azwmag1,Azure-winged Magpie (Azure-winged),Cyanopica cyanus [cyanus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,azwmag2 18929,issf,azwmag4,Azure-winged Magpie (Japanese),Cyanopica cyanus japonica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,azwmag2 18930,species,ceymag1,Sri Lanka Blue-Magpie,Urocissa ornata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18931,species,formag1,Taiwan Blue-Magpie,Urocissa caerulea,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18932,species,gobmag1,Yellow-billed Blue-Magpie,Urocissa flavirostris,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18937,species,rbbmag,Red-billed Blue-Magpie,Urocissa erythroryncha,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18942.5,slash,y00804,Yellow-billed/Red-billed Blue-Magpie,Urocissa flavirostris/erythroryncha,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18943,species,whwmag1,White-winged Magpie,Urocissa whiteheadi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18944,issf,whwmag2,White-winged Magpie (Black-tailed),Urocissa whiteheadi xanthomelana,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,whwmag1 18945,issf,whwmag3,White-winged Magpie (Gray-tailed),Urocissa whiteheadi whiteheadi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,whwmag1 18946,species,gremag1,Common Green-Magpie,Cissa chinensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18946.5,issf,comgrm1,Common Green-Magpie (Common),Cissa chinensis [chinensis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gremag1 18951,issf,comgrm2,Common Green-Magpie (Yellow-crowned),Cissa chinensis margaritae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gremag1 18952,species,yebmag1,Indochinese Green-Magpie,Cissa hypoleuca,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18958,species,shtmag1,Javan Green-Magpie,Cissa thalassina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18960,species,borgrm1,Bornean Green-Magpie,Cissa jefferyi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18960.2,spuh,green-1,green-magpie sp.,Cissa sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18961,species,ruftre2,Rufous Treepie,Dendrocitta vagabunda,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18970,species,grytre1,Gray Treepie,Dendrocitta formosae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18979,species,sumtre1,Sumatran Treepie,Dendrocitta occipitalis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18980,species,bortre1,Bornean Treepie,Dendrocitta cinerascens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18981,species,whbtre1,White-bellied Treepie,Dendrocitta leucogastra,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18982,species,coltre1,Collared Treepie,Dendrocitta frontalis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18983,species,andtre1,Andaman Treepie,Dendrocitta bayleii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18984,species,rattre1,Racket-tailed Treepie,Crypsirina temia,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18985,species,hootre1,Hooded Treepie,Crypsirina cucullata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18986,species,rattre2,Ratchet-tailed Treepie,Temnurus temnurus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18986.5,spuh,treepi1,treepie sp.,Dendrocitta/Crypsirina/Temnurus sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18987,species,eurmag1,Eurasian Magpie,Pica pica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 18987.3,issf,eurmag2,Eurasian Magpie (Iberian),Pica pica melanotos,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 18987.6,issf,eurmag3,Eurasian Magpie (North African),Pica pica mauritanica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 18988,issf,eurmag4,Eurasian Magpie (Eurasian),Pica pica [pica Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 18999.5,issf,eurmag5,Eurasian Magpie (Arabian),Pica pica asirensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 18999.8,issf,eurmag6,Eurasian Magpie (Black-rumped),Pica pica bottanensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 18999.9,issf,eurmag7,Eurasian Magpie (Kamchatkan),Pica pica camtschatica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 19000,species,bkbmag1,Black-billed Magpie,Pica hudsonia,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19001,species,yebmag,Yellow-billed Magpie,Pica nuttalli,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19001.2,spuh,pica1,Pica sp.,Pica sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19002,species,stbcro1,Stresemann's Bush-Crow,Zavattariornis stresemanni,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19003,species,mogjay1,Mongolian Ground-Jay,Podoces hendersoni,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19004,species,xigjay1,Xinjiang Ground-Jay,Podoces biddulphi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19005,species,tugjay1,Turkestan Ground-Jay,Podoces panderi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19006,species,irgjay1,Iranian Ground-Jay,Podoces pleskei,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19007,species,clanut,Clark's Nutcracker,Nucifraga columbiana,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19008,species,eurnut1,Eurasian Nutcracker,Nucifraga caryocatactes,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19009,issf,eurnut3,Eurasian Nutcracker (Northern),Nucifraga caryocatactes [caryocatactes Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurnut1 19013,issf,eurnut4,Eurasian Nutcracker (Southern),Nucifraga caryocatactes [hemispila Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurnut1 19018,species,sponut1,Kashmir Nutcracker,Nucifraga multipunctata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19019,species,rebcho1,Red-billed Chough,Pyrrhocorax pyrrhocorax,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19019.5,issf,rebcho2,Red-billed Chough (Red-billed),Pyrrhocorax pyrrhocorax [pyrrhocorax Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,rebcho1 19027.5,issf,rebcho3,Red-billed Chough (Ethiopian),Pyrrhocorax pyrrhocorax baileyi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,rebcho1 19028,species,yebcho1,Yellow-billed Chough,Pyrrhocorax graculus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19028.2,slash,y00895,Red-billed/Yellow-billed Chough,Pyrrhocorax pyrrhocorax/graculus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19031,species,piapia1,Piapiac,Ptilostomus afer,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19032,species,eurjac,Eurasian Jackdaw,Corvus monedula,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19037,species,daujac1,Daurian Jackdaw,Corvus dauuricus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19038,species,houcro1,House Crow,Corvus splendens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19044,species,neccro1,New Caledonian Crow,Corvus moneduloides,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19045,species,bancro1,Banggai Crow,Corvus unicolor,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19046,species,slbcro1,Slender-billed Crow,Corvus enca,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19046.5,issf,slbcro4,Slender-billed Crow (Sierra Madre),Corvus enca samarensis/sierramadrensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,slbcro1 19048.5,issf,slbcro2,Slender-billed Crow (Slender-billed),Corvus enca [enca Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,slbcro1 19054,issf,slbcro3,Slender-billed Crow (Violet),Corvus enca violaceus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,slbcro1 19055,species,pipcro1,Piping Crow,Corvus typicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19056,species,flocro1,Flores Crow,Corvus florensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19057,species,marcro1,Mariana Crow,Corvus kubaryi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19058,species,lobcro1,Long-billed Crow,Corvus validus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19059,species,guacro1,Guadalcanal Crow,Corvus woodfordi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19062,species,boucro1,Bougainville Crow,Corvus meeki,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19063,species,brhcro1,Brown-headed Crow,Corvus fuscicapillus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19066,species,grycro1,Gray Crow,Corvus tristis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19067,species,capcro2,Cape Crow,Corvus capensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19070,species,rook1,Rook,Corvus frugilegus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19073,species,amecro,American Crow,Corvus brachyrhynchos,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19078,species,norcro,Northwestern Crow,Corvus caurinus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19079,slash,y00486,American/Northwestern Crow,Corvus brachyrhynchos/caurinus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19079.5,species,palcro2,Palm Crow,Corvus palmarum,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19080,issf,cupcro1,Palm Crow (Cuban),Corvus palmarum minutus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,palcro2 19081,issf,palcro1,Palm Crow (Hispaniolan),Corvus palmarum palmarum,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,palcro2 19082,species,cubcro1,Cuban Crow,Corvus nasicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19083,species,whncro1,White-necked Crow,Corvus leucognaphalus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19084,species,jamcro1,Jamaican Crow,Corvus jamaicensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19085,species,tamcro,Tamaulipas Crow,Corvus imparatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19086,species,sincro1,Sinaloa Crow,Corvus sinaloae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19087,species,fiscro,Fish Crow,Corvus ossifragus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19088,species,hawcro,Hawaiian Crow,Corvus hawaiiensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19089,species,chirav,Chihuahuan Raven,Corvus cryptoleucus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19090,species,carcro1,Carrion Crow,Corvus corone,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19094,species,hoocro1,Hooded Crow,Corvus cornix,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19098.5,hybrid,x00636,Carrion x Hooded Crow (hybrid),Corvus corone x cornix,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19098.7,slash,y00743,Carrion/Hooded Crow,Corvus corone/cornix,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19099,species,labcro1,Large-billed Crow,Corvus macrorhynchos,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19099.5,issf,labcro2,Large-billed Crow (Large-billed),Corvus macrorhynchos [macrorhynchos Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,labcro1 19111,issf,labcro3,Large-billed Crow (Indian Jungle),Corvus macrorhynchos culminatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,labcro1 19112,issf,labcro4,Large-billed Crow (Eastern),Corvus macrorhynchos levaillantii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,labcro1 19113.5,species,torcro2,Torresian Crow,Corvus orru,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19117.5,species,torcro3,Bismarck Crow,Corvus insularis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19118,species,litcro1,Little Crow,Corvus bennetti,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19119,spuh,crow,crow sp.,Corvus sp. (crow sp.),Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19120,species,ausrav1,Australian Raven,Corvus coronoides,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19123,species,litrav1,Little Raven,Corvus mellori,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19124,species,forrav1,Forest Raven,Corvus tasmanicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19127,species,colcro1,Collared Crow,Corvus torquatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19128,species,piecro1,Pied Crow,Corvus albus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19129,species,brnrav1,Brown-necked Raven,Corvus ruficollis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19130,species,somcro2,Somali Crow,Corvus edithae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19131,species,fatrav1,Fan-tailed Raven,Corvus rhipidurus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19132,species,whnrav1,White-necked Raven,Corvus albicollis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19133,species,thbrav1,Thick-billed Raven,Corvus crassirostris,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19134,species,comrav,Common Raven,Corvus corax,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19143,spuh,raven,raven sp.,Corvus sp. (raven sp.),Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19143.5,spuh,y00639,crow/raven sp.,Corvus sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, 19144,species,whwcho1,White-winged Chough,Corcorax melanorhamphos,Passeriformes,Corcoracidae (White-winged Chough and Apostlebird),White-winged Chough and Apostlebird, 19147,species,apostl1,Apostlebird,Struthidea cinerea,Passeriformes,Corcoracidae (White-winged Chough and Apostlebird),, 19150,species,parcro1,Paradise-crow,Lycocorax pyrrhopterus,Passeriformes,Paradisaeidae (Birds-of-Paradise),Birds-of-Paradise, 19150.2,issf,paradi2,Paradise-crow (Halmahera),Lycocorax pyrrhopterus pyrrhopterus/morotensis,Passeriformes,Paradisaeidae (Birds-of-Paradise),,parcro1 19150.4,issf,paradi3,Paradise-crow (Obi),Lycocorax pyrrhopterus obiensis,Passeriformes,Paradisaeidae (Birds-of-Paradise),,parcro1 19163,species,truman1,Trumpet Manucode,Phonygammus keraudrenii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19172.1,species,cucman1,Curl-crested Manucode,Manucodia comrii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19172.4,species,crcman2,Crinkle-collared Manucode,Manucodia chalybatus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19172.5,species,jobman1,Jobi Manucode,Manucodia jobiensis,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19172.6,species,glmman2,Glossy-mantled Manucode,Manucodia ater,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19172.8,spuh,manuco1,manucode sp.,Phonygammus/Manucodia sp.,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19180,species,kospar1,King-of-Saxony Bird-of-Paradise,Pteridophora alberti,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19186,species,carpar1,Carola's Parotia,Parotia carolae,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19192.5,species,carpar3,Bronze Parotia,Parotia berlepschi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19192.7,species,wespar1,Western Parotia,Parotia sefilata,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19192.8,species,wahpar1,Wahnes's Parotia,Parotia wahnesi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19193,species,lawpar1,Lawes's Parotia,Parotia lawesii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19194,issf,lawpar3,Lawes's Parotia (Lawes's),Parotia lawesii lawesii,Passeriformes,Paradisaeidae (Birds-of-Paradise),,lawpar1 19195,issf,lawpar2,Lawes's Parotia (Eastern),Parotia lawesii helenae,Passeriformes,Paradisaeidae (Birds-of-Paradise),,lawpar1 19196,species,twwbop1,Twelve-wired Bird-of-Paradise,Seleucidis melanoleucus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19199,species,blbsic1,Black-billed Sicklebill,Drepanornis albertisi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19202,species,pabsic1,Pale-billed Sicklebill,Drepanornis bruijnii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19203,species,walsta2,Standardwing Bird-of-Paradise,Semioptera wallacii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19205,species,vosbop1,Vogelkop Superb Bird-of-Paradise,Lophorina niedda,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19206,species,grsbop1,Greater Superb Bird-of-Paradise,Lophorina superba,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19207,species,lesbop1,Lesser Superb Bird-of-Paradise,Lophorina minor,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19210.1,species,parrif1,Paradise Riflebird,Ptiloris paradiseus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19210.2,species,vicrif1,Victoria's Riflebird,Ptiloris victoriae,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19210.4,species,magrif3,Magnificent Riflebird,Ptiloris magnificus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19210.7,species,magrif2,Growling Riflebird,Ptiloris intercedens,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19211,species,blasic1,Black Sicklebill,Epimachus fastosus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19215,species,brosic1,Brown Sicklebill,Epimachus meyeri,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19218.1,species,lotpar1,Long-tailed Paradigalla,Paradigalla carunculata,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19218.2,species,shtpar1,Short-tailed Paradigalla,Paradigalla brevicauda,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19218.3,species,splast1,Splendid Astrapia,Astrapia splendidissima,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19218.6,species,arfast1,Arfak Astrapia,Astrapia nigra,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19218.7,species,huoast1,Huon Astrapia,Astrapia rothschildi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19218.8,species,prsast1,Stephanie's Astrapia,Astrapia stephaniae,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19219.95,species,ritast1,Ribbon-tailed Astrapia,Astrapia mayeri,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19223,species,kbopar1,King Bird-of-Paradise,Cicinnurus regius,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19226,species,wbopar1,Wilson's Bird-of-Paradise,Cicinnurus respublica,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19227,species,mbopar2,Magnificent Bird-of-Paradise,Cicinnurus magnificus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19237,species,bbopar1,Blue Bird-of-Paradise,Paradisaea rudolphi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19240,species,ebopar1,Emperor Bird-of-Paradise,Paradisaea guilielmi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19241,species,rbopar2,Red Bird-of-Paradise,Paradisaea rubra,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19242,species,gbopar1,Goldie's Bird-of-Paradise,Paradisaea decora,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19243,species,lbopar1,Lesser Bird-of-Paradise,Paradisaea minor,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19247,species,rbopar1,Raggiana Bird-of-Paradise,Paradisaea raggiana,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19247.2,hybrid,x00814,Lesser x Raggiana Bird-of-Paradise (hybrid),Paradisaea minor x raggiana,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19252,species,gbopar2,Greater Bird-of-Paradise,Paradisaea apoda,Passeriformes,Paradisaeidae (Birds-of-Paradise),, 19255,species,lesmel1,Lesser Melampitta,Melampitta lugubris,Passeriformes,Melampittidae (Melampittas),Melampittas, 19259,species,gremel1,Greater Melampitta,Melampitta gigantea,Passeriformes,Melampittidae (Melampittas),, 19260,species,grgrob1,Greater Ground-Robin,Amalocichla sclateriana,Passeriformes,Petroicidae (Australasian Robins),Australasian Robins, 19263,species,legrob1,Lesser Ground-Robin,Amalocichla incerta,Passeriformes,Petroicidae (Australasian Robins),, 19267,species,torfly1,Torrent Flycatcher,Monachella muelleriana,Passeriformes,Petroicidae (Australasian Robins),, 19267.2,issf,torfly2,Torrent Flycatcher (Torrent),Monachella muelleriana muelleriana,Passeriformes,Petroicidae (Australasian Robins),,torfly1 19267.4,issf,torfly3,Torrent Flycatcher (New Britain),Monachella muelleriana coultasi,Passeriformes,Petroicidae (Australasian Robins),,torfly1 19270,species,jacwin1,Jacky-winter,Microeca fascinans,Passeriformes,Petroicidae (Australasian Robins),, 19275,species,gobfly2,Golden-bellied Flyrobin,Microeca hemixantha,Passeriformes,Petroicidae (Australasian Robins),, 19276,species,lebfly3,Lemon-bellied Flycatcher,Microeca flavigaster,Passeriformes,Petroicidae (Australasian Robins),, 19276.2,issf,lebfly1,Lemon-bellied Flycatcher (Lemon-bellied),Microeca flavigaster [flavigaster Group],Passeriformes,Petroicidae (Australasian Robins),,lebfly3 19276.4,issf,lebfly4,Lemon-bellied Flycatcher (Kimberley),Microeca flavigaster tormenti,Passeriformes,Petroicidae (Australasian Robins),,lebfly3 19283.5,form,bisfly1,Bismarck Flyrobin (undescribed form),Microeca [undescribed form],Passeriformes,Petroicidae (Australasian Robins),, 19284,species,yelfly4,Yellow-legged Flycatcher,Microeca griseoceps,Passeriformes,Petroicidae (Australasian Robins),, 19288,species,olifly3,Olive Flyrobin,Microeca flavovirescens,Passeriformes,Petroicidae (Australasian Robins),, 19291,species,canfly2,Papuan Flycatcher,Microeca papuana,Passeriformes,Petroicidae (Australasian Robins),, 19291.2,spuh,microe1,Microeca sp.,Microeca sp.,Passeriformes,Petroicidae (Australasian Robins),, 19292,species,garrob1,Garnet Robin,Eugerygone rubra,Passeriformes,Petroicidae (Australasian Robins),, 19295,species,alprob1,Subalpine Robin,Petroica bivittata,Passeriformes,Petroicidae (Australasian Robins),, 19298,species,snmrob1,Snow Mountain Robin,Petroica archboldi,Passeriformes,Petroicidae (Australasian Robins),, 19299,species,scarob1,Pacific Robin,Petroica multicolor,Passeriformes,Petroicidae (Australasian Robins),, 19299.2,issf,pacrob1,Pacific Robin (Pacific),Petroica multicolor [pusilla Group],Passeriformes,Petroicidae (Australasian Robins),,scarob1 19299.4,issf,pacrob2,Pacific Robin (Norfolk),Petroica multicolor multicolor,Passeriformes,Petroicidae (Australasian Robins),,scarob1 19304,species,scarob2,Scarlet Robin,Petroica boodang,Passeriformes,Petroicidae (Australasian Robins),, 19304.2,issf,scarob3,Scarlet Robin (Campbell's),Petroica boodang campbelli,Passeriformes,Petroicidae (Australasian Robins),,scarob2 19304.4,issf,scarob4,Scarlet Robin (Scarlet),Petroica boodang boodang/leggii,Passeriformes,Petroicidae (Australasian Robins),,scarob2 19317,species,tomtit1,Tomtit,Petroica macrocephala,Passeriformes,Petroicidae (Australasian Robins),, 19318,issf,tomtit2,Tomtit (New Zealand),Petroica macrocephala [macrocephala Group],Passeriformes,Petroicidae (Australasian Robins),,tomtit1 19323,issf,tomtit3,Tomtit (Snares Is.),Petroica macrocephala dannefaerdi,Passeriformes,Petroicidae (Australasian Robins),,tomtit1 19324,species,recrob1,Red-capped Robin,Petroica goodenovii,Passeriformes,Petroicidae (Australasian Robins),, 19325,species,flarob1,Flame Robin,Petroica phoenicea,Passeriformes,Petroicidae (Australasian Robins),, 19326,species,rosrob1,Rose Robin,Petroica rosea,Passeriformes,Petroicidae (Australasian Robins),, 19327,species,pinrob1,Pink Robin,Petroica rodinogaster,Passeriformes,Petroicidae (Australasian Robins),, 19330,species,nezrob1,New Zealand Robin,Petroica australis,Passeriformes,Petroicidae (Australasian Robins),, 19331,issf,nezrob2,New Zealand Robin (North I.),Petroica australis longipes,Passeriformes,Petroicidae (Australasian Robins),,nezrob1 19332,issf,nezrob3,New Zealand Robin (South I.),Petroica australis australis/rakiura,Passeriformes,Petroicidae (Australasian Robins),,nezrob1 19334,species,charob1,Chatham Robin,Petroica traversi,Passeriformes,Petroicidae (Australasian Robins),, 19334.5,spuh,petroi1,Petroica sp.,Petroica sp.,Passeriformes,Petroicidae (Australasian Robins),, 19335,species,hoorob1,Hooded Robin,Melanodryas cucullata,Passeriformes,Petroicidae (Australasian Robins),, 19340,species,dusrob1,Dusky Robin,Melanodryas vittata,Passeriformes,Petroicidae (Australasian Robins),, 19343,species,whfrob1,White-faced Robin,Tregellasia leucops,Passeriformes,Petroicidae (Australasian Robins),, 19354,species,payrob1,Pale-yellow Robin,Tregellasia capito,Passeriformes,Petroicidae (Australasian Robins),, 19357,species,yelrob1,Eastern Yellow Robin,Eopsaltria australis,Passeriformes,Petroicidae (Australasian Robins),, 19360,species,gybrob1,Western Yellow Robin,Eopsaltria griseogularis,Passeriformes,Petroicidae (Australasian Robins),, 19363,species,yebrob1,Yellow-bellied Robin,Eopsaltria flaviventris,Passeriformes,Petroicidae (Australasian Robins),, 19364,species,whbrob1,White-breasted Robin,Eopsaltria georgiana,Passeriformes,Petroicidae (Australasian Robins),, 19365,species,manrob1,Mangrove Robin,Eopsaltria pulverulenta,Passeriformes,Petroicidae (Australasian Robins),, 19370,species,blcrob1,Black-chinned Robin,Poecilodryas brachyura,Passeriformes,Petroicidae (Australasian Robins),, 19374,species,blsrob2,Black-sided Robin,Poecilodryas hypoleuca,Passeriformes,Petroicidae (Australasian Robins),, 19378,species,whbrob2,White-browed Robin,Poecilodryas superciliosa,Passeriformes,Petroicidae (Australasian Robins),, 19380,species,busrob1,Buff-sided Robin,Poecilodryas cerviniventris,Passeriformes,Petroicidae (Australasian Robins),, 19381,species,olyrob1,Olive-yellow Robin,Poecilodryas placens,Passeriformes,Petroicidae (Australasian Robins),, 19382,species,bltrob1,Black-throated Robin,Poecilodryas albonotata,Passeriformes,Petroicidae (Australasian Robins),, 19386,species,whwrob2,White-winged Robin,Peneothello sigillata,Passeriformes,Petroicidae (Australasian Robins),, 19391,species,smorob2,Smoky Robin,Peneothello cryptoleuca,Passeriformes,Petroicidae (Australasian Robins),, 19395,species,whrrob2,White-rumped Robin,Peneothello bimaculata,Passeriformes,Petroicidae (Australasian Robins),, 19398,species,bugrob1,Blue-gray Robin,Peneothello cyanus,Passeriformes,Petroicidae (Australasian Robins),, 19402,species,gyhrob1,Ashy Robin,Heteromyias albispecularis,Passeriformes,Petroicidae (Australasian Robins),, 19402.2,issf,ashrob1,Ashy Robin (Ashy),Heteromyias albispecularis albispecularis,Passeriformes,Petroicidae (Australasian Robins),,gyhrob1 19402.4,issf,ashrob2,Ashy Robin (Black-capped),Heteromyias albispecularis [armiti Group],Passeriformes,Petroicidae (Australasian Robins),,gyhrob1 19408,species,gyhrob2,Gray-headed Robin,Heteromyias cinereifrons,Passeriformes,Petroicidae (Australasian Robins),, 19409,species,grbrob1,Green-backed Robin,Pachycephalopsis hattamensis,Passeriformes,Petroicidae (Australasian Robins),, 19415,species,wherob1,White-eyed Robin,Pachycephalopsis poliosoma,Passeriformes,Petroicidae (Australasian Robins),, 19415.2,species,papscr2,Papuan Scrub-Robin,Drymodes beccarii,Passeriformes,Petroicidae (Australasian Robins),, 19423,species,nosrob1,Northern Scrub-Robin,Drymodes superciliaris,Passeriformes,Petroicidae (Australasian Robins),, 19428,species,sosrob1,Southern Scrub-Robin,Drymodes brunneopygia,Passeriformes,Petroicidae (Australasian Robins),, 19430,species,whnroc1,White-necked Rockfowl,Picathartes gymnocephalus,Passeriformes,Picathartidae (Rockfowl),Rockfowl, 19431,species,gynroc1,Gray-necked Rockfowl,Picathartes oreas,Passeriformes,Picathartidae (Rockfowl),, 19435,species,rufroc1,Cape Rockjumper,Chaetops frenatus,Passeriformes,Chaetopidae (Rockjumpers),Rockjumpers, 19436,species,orbroc1,Drakensberg Rockjumper,Chaetops aurantius,Passeriformes,Chaetopidae (Rockjumpers),, 19437,species,marbab1,Malaysian Rail-babbler,Eupetes macrocerus,Passeriformes,Eupetidae (Rail-babbler),Rail-babbler, 19443,species,bearee1,Bearded Reedling,Panurus biarmicus,Passeriformes,Panuridae (Bearded Reedling),Bearded Reedling, 19447,species,yesnic1,Western Nicator,Nicator chloris,Passeriformes,Nicatoridae (Nicators),Nicators, 19448,species,easnic1,Eastern Nicator,Nicator gularis,Passeriformes,Nicatoridae (Nicators),, 19449,species,yetnic1,Yellow-throated Nicator,Nicator vireo,Passeriformes,Nicatoridae (Nicators),, 19449.2,slash,y00896,Western/Yellow-throated Nicator,Nicator chloris/vireo,Passeriformes,Nicatoridae (Nicators),, 19627,species,grhlar1,Greater Hoopoe-Lark,Alaemon alaudipes,Passeriformes,Alaudidae (Larks),Larks, 19628,issf,grehol1,Greater Hoopoe-Lark (Cape Verde),Alaemon alaudipes boavistae,Passeriformes,Alaudidae (Larks),,grhlar1 19628.5,issf,grehol2,Greater Hoopoe-Lark (Mainland),Alaemon alaudipes [alaudipes Group],Passeriformes,Alaudidae (Larks),,grhlar1 19632,species,lehlar1,Lesser Hoopoe-Lark,Alaemon hamertoni,Passeriformes,Alaudidae (Larks),, 19634,species,sphlar1,Spike-heeled Lark,Chersomanes albofasciata,Passeriformes,Alaudidae (Larks),, 19636,species,beelar1,Beesley's Lark,Chersomanes beesleyi,Passeriformes,Alaudidae (Larks),, 19638,species,gralar2,Gray's Lark,Ammomanopsis grayi,Passeriformes,Alaudidae (Larks),, 19640,species,shclar1,Short-clawed Lark,Certhilauda chuana,Passeriformes,Alaudidae (Larks),, 19642,species,klblar1,Karoo Long-billed Lark,Certhilauda subcoronata,Passeriformes,Alaudidae (Larks),, 19644,species,benlar1,Benguela Lark,Certhilauda benguelensis,Passeriformes,Alaudidae (Larks),, 19646,species,elblar1,Eastern Long-billed Lark,Certhilauda semitorquata,Passeriformes,Alaudidae (Larks),, 19648,species,caplar1,Cape Lark,Certhilauda curvirostris,Passeriformes,Alaudidae (Larks),, 19650,species,agular1,Agulhas Lark,Certhilauda brevirostris,Passeriformes,Alaudidae (Larks),, 19652,species,rurlar1,Rufous-rumped Lark,Pinarocorys erythropygia,Passeriformes,Alaudidae (Larks),, 19654,species,duslar1,Dusky Lark,Pinarocorys nigricans,Passeriformes,Alaudidae (Larks),, 19656,species,thblar1,Thick-billed Lark,Ramphocoris clotbey,Passeriformes,Alaudidae (Larks),, 19661,species,batlar1,Bar-tailed Lark,Ammomanes cinctura,Passeriformes,Alaudidae (Larks),, 19665,species,rutlar2,Rufous-tailed Lark,Ammomanes phoenicura,Passeriformes,Alaudidae (Larks),, 19666,species,deslar1,Desert Lark,Ammomanes deserti,Passeriformes,Alaudidae (Larks),, 19667,spuh,ammoma1,Ammomanes sp.,Ammomanes sp.,Passeriformes,Alaudidae (Larks),, 19668,species,beslar1,Black-eared Sparrow-Lark,Eremopterix australis,Passeriformes,Alaudidae (Larks),, 19669,species,madlar1,Madagascar Lark,Eremopterix hova,Passeriformes,Alaudidae (Larks),, 19670,species,cbslar1,Chestnut-backed Sparrow-Lark,Eremopterix leucotis,Passeriformes,Alaudidae (Larks),, 19671,species,bcslar1,Black-crowned Sparrow-Lark,Eremopterix nigriceps,Passeriformes,Alaudidae (Larks),, 19672,species,ascspl1,Ashy-crowned Sparrow-Lark,Eremopterix griseus,Passeriformes,Alaudidae (Larks),, 19673,species,chhspl1,Chestnut-headed Sparrow-Lark,Eremopterix signatus,Passeriformes,Alaudidae (Larks),, 19674,species,gybspl1,Gray-backed Sparrow-Lark,Eremopterix verticalis,Passeriformes,Alaudidae (Larks),, 19675,species,fislar1,Fischer's Sparrow-Lark,Eremopterix leucopareia,Passeriformes,Alaudidae (Larks),, 19676,species,sablar2,Sabota Lark,Calendulauda sabota,Passeriformes,Alaudidae (Larks),, 19677,issf,sablar1,Sabota Lark (Bradfield's),Calendulauda sabota [naevia Group],Passeriformes,Alaudidae (Larks),,sablar2 19678,issf,sablar3,Sabota Lark (Sabota),Calendulauda sabota [sabota Group],Passeriformes,Alaudidae (Larks),,sablar2 19679,species,piblar3,Pink-breasted Lark,Calendulauda poecilosterna,Passeriformes,Alaudidae (Larks),, 19680,species,faclar2,Fawn-colored Lark,Calendulauda africanoides,Passeriformes,Alaudidae (Larks),, 19681,species,foxlar1,Foxy Lark,Calendulauda alopex,Passeriformes,Alaudidae (Larks),, 19682,species,karlar2,Karoo Lark,Calendulauda albescens,Passeriformes,Alaudidae (Larks),, 19683,species,ferlar2,Red Lark,Calendulauda burra,Passeriformes,Alaudidae (Larks),, 19684,species,barlar1,Barlow's Lark,Calendulauda barlowi,Passeriformes,Alaudidae (Larks),, 19685,issf,barlar2,Barlow's Lark (Barlow's),Calendulauda barlowi barlowi,Passeriformes,Alaudidae (Larks),,barlar1 19686,issf,barlar4,Barlow's Lark (Coastal),Calendulauda barlowi patae,Passeriformes,Alaudidae (Larks),,barlar1 19687,issf,barlar3,Barlow's Lark (Cave's),Calendulauda barlowi cavei,Passeriformes,Alaudidae (Larks),,barlar1 19688,hybrid,x00863,Karoo x Barlow's Lark (hybrid),Calendulauda albescens x barlowi,Passeriformes,Alaudidae (Larks),, 19689,species,dunlar3,Dune Lark,Calendulauda erythrochlamys,Passeriformes,Alaudidae (Larks),, 19690,species,liblar1,Liben Lark,Heteromirafra archeri,Passeriformes,Alaudidae (Larks),, 19691,species,rudlar1,Rudd's Lark,Heteromirafra ruddi,Passeriformes,Alaudidae (Larks),, 19692,species,caclar1,Cape Clapper Lark,Mirafra apiata,Passeriformes,Alaudidae (Larks),, 19693,issf,caclar2,Cape Clapper Lark (Cape),Mirafra apiata apiata,Passeriformes,Alaudidae (Larks),,caclar1 19694,issf,caclar3,Cape Clapper Lark (Agulhas),Mirafra apiata marjoriae,Passeriformes,Alaudidae (Larks),,caclar1 19695,species,eaclar1,Eastern Clapper Lark,Mirafra fasciolata,Passeriformes,Alaudidae (Larks),, 19696,species,collar1,Collared Lark,Mirafra collaris,Passeriformes,Alaudidae (Larks),, 19697,species,rewlar1,Red-winged Lark,Mirafra hypermetra,Passeriformes,Alaudidae (Larks),, 19698,issf,rewlar2,Red-winged Lark (Red-winged),Mirafra hypermetra [hypermetra Group],Passeriformes,Alaudidae (Larks),,rewlar1 19699,issf,rewlar3,Red-winged Lark (Rift Valley),Mirafra hypermetra gallarum,Passeriformes,Alaudidae (Larks),,rewlar1 19700,species,runlar1,Rufous-naped Lark,Mirafra africana,Passeriformes,Alaudidae (Larks),, 19701,issf,runlar2,Rufous-naped Lark (Somali),Mirafra africana sharpii,Passeriformes,Alaudidae (Larks),,runlar1 19702,issf,runlar3,Rufous-naped Lark (Sudan),Mirafra africana kurrae,Passeriformes,Alaudidae (Larks),,runlar1 19703,issf,runlar4,Rufous-naped Lark (Bamenda),Mirafra africana stresemanni/bamendae,Passeriformes,Alaudidae (Larks),,runlar1 19704,issf,runlar5,Rufous-naped Lark (Rufous-naped),Mirafra africana [africana Group],Passeriformes,Alaudidae (Larks),,runlar1 19705,issf,runlar6,Rufous-naped Lark (Serengeti),Mirafra africana tropicalis,Passeriformes,Alaudidae (Larks),,runlar1 19706,issf,runlar7,Rufous-naped Lark (Blackish),Mirafra africana nigrescens/nyikae,Passeriformes,Alaudidae (Larks),,runlar1 19707,issf,runlar8,Rufous-naped Lark (Malbrant's),Mirafra africana malbranti,Passeriformes,Alaudidae (Larks),,runlar1 19708,species,ashlar1,Ash's Lark,Mirafra ashi,Passeriformes,Alaudidae (Larks),, 19709,species,slblar1,Somali Long-billed Lark,Mirafra somalica,Passeriformes,Alaudidae (Larks),, 19710,species,anglar1,Angola Lark,Mirafra angolensis,Passeriformes,Alaudidae (Larks),, 19711,species,flalar1,Flappet Lark,Mirafra rufocinnamomea,Passeriformes,Alaudidae (Larks),, 19712,species,korlar1,Kordofan Lark,Mirafra cordofanica,Passeriformes,Alaudidae (Larks),, 19713,species,willar1,Williams's Lark,Mirafra williamsi,Passeriformes,Alaudidae (Larks),, 19714,species,frilar1,Friedmann's Lark,Mirafra pulpa,Passeriformes,Alaudidae (Larks),, 19715,species,monlar2,Monotonous Lark,Mirafra passerina,Passeriformes,Alaudidae (Larks),, 19716,species,whtlar1,White-tailed Lark,Mirafra albicauda,Passeriformes,Alaudidae (Larks),, 19717,species,latlar1,Latakoo Lark,Mirafra cheniana,Passeriformes,Alaudidae (Larks),, 19718,species,ausbus2,Australasian Bushlark,Mirafra javanica,Passeriformes,Alaudidae (Larks),, 19719,species,sinbus1,Singing Bushlark,Mirafra cantillans,Passeriformes,Alaudidae (Larks),, 19720,species,burbus1,Burmese Bushlark,Mirafra microptera,Passeriformes,Alaudidae (Larks),, 19721,species,benbus1,Bengal Bushlark,Mirafra assamica,Passeriformes,Alaudidae (Larks),, 19722,species,indbus3,Indochinese Bushlark,Mirafra erythrocephala,Passeriformes,Alaudidae (Larks),, 19723,species,jerbus2,Jerdon's Bushlark,Mirafra affinis,Passeriformes,Alaudidae (Larks),, 19724,species,indbus2,Indian Bushlark,Mirafra erythroptera,Passeriformes,Alaudidae (Larks),, 19725,slash,y00744,Jerdon's/Indian Bushlark,Mirafra affinis/erythroptera,Passeriformes,Alaudidae (Larks),, 19726,species,ruslar1,Rusty Lark,Mirafra rufa,Passeriformes,Alaudidae (Larks),, 19727,species,gillar1,Gillett's Lark,Mirafra gilletti,Passeriformes,Alaudidae (Larks),, 19728,spuh,mirafr1,Mirafra sp.,Mirafra sp.,Passeriformes,Alaudidae (Larks),, 19870,species,horlar,Horned Lark,Eremophila alpestris,Passeriformes,Alaudidae (Larks),, 19871,issf,horlar5,Horned Lark (Atlas),Eremophila alpestris atlas,Passeriformes,Alaudidae (Larks),,horlar 19872,issf,horlar6,Horned Lark (Black-necklaced),Eremophila alpestris [penicillata Group],Passeriformes,Alaudidae (Larks),,horlar 19877,issf,horlar7,Horned Lark (Tibetan),Eremophila alpestris [longirostris Group],Passeriformes,Alaudidae (Larks),,horlar 19885,issf,horlar8,Horned Lark (Brandt's),Eremophila alpestris brandti,Passeriformes,Alaudidae (Larks),,horlar 19885.5,issf,horlar4,Horned Lark (Shore),Eremophila alpestris flava,Passeriformes,Alaudidae (Larks),,horlar 19886,issf,horlar3,Horned Lark (Eastern dark Group),Eremophila alpestris [alpestris Group],Passeriformes,Alaudidae (Larks),,horlar 19891,issf,horlar2,Horned Lark (Western pale Group),Eremophila alpestris [occidentalis Group],Passeriformes,Alaudidae (Larks),,horlar 19902,issf,horlar1,Horned Lark (Western rufous Group),Eremophila alpestris [strigata Group],Passeriformes,Alaudidae (Larks),,horlar 19909,issf,horlar9,Horned Lark (South Baja),Eremophila alpestris enertera,Passeriformes,Alaudidae (Larks),,horlar 19910,issf,horlar10,Horned Lark (Mexican),Eremophila alpestris [chrysolaema Group],Passeriformes,Alaudidae (Larks),,horlar 19915.5,issf,horlar11,Horned Lark (Colombian),Eremophila alpestris peregrina,Passeriformes,Alaudidae (Larks),,horlar 19916,species,temlar1,Temminck's Lark,Eremophila bilopha,Passeriformes,Alaudidae (Larks),, 19916.2,slash,y00898,Horned/Temminck's Lark,Eremophila alpestris/bilopha,Passeriformes,Alaudidae (Larks),, 19916.4,species,blalar2,Blanford's Lark,Calandrella blanfordi,Passeriformes,Alaudidae (Larks),, 19916.6,issf,blalar3,Blanford's Lark (blanfordi),Calandrella blanfordi blanfordi,Passeriformes,Alaudidae (Larks),,blalar2 19916.8,issf,blalar4,Blanford's Lark (eremica/daaroodensis),Calandrella blanfordi eremica/daaroodensis,Passeriformes,Alaudidae (Larks),,blalar2 19916.802,species,erllar1,Erlanger's Lark,Calandrella erlangeri,Passeriformes,Alaudidae (Larks),, 19916.804,species,reclar1,Red-capped Lark,Calandrella cinerea,Passeriformes,Alaudidae (Larks),, 19916.806,species,gstlar1,Greater Short-toed Lark,Calandrella brachydactyla,Passeriformes,Alaudidae (Larks),, 19916.808,species,sstlar4,Sykes's Short-toed Lark,Calandrella dukhunensis,Passeriformes,Alaudidae (Larks),, 19916.8085,slash,y01042,Greater/Sykes's Short-toed Lark,Calandrella brachydactyla/dukhunensis,Passeriformes,Alaudidae (Larks),, 19916.81,species,humlar1,Hume's Lark,Calandrella acutirostris,Passeriformes,Alaudidae (Larks),, 19916.812,slash,y00897,Greater Short-toed/Hume's Lark,Calandrella brachydactyla/acutirostris,Passeriformes,Alaudidae (Larks),, 19916.814,spuh,caland1,Calandrella sp.,Calandrella sp.,Passeriformes,Alaudidae (Larks),, 19916.816,species,bimlar1,Bimaculated Lark,Melanocorypha bimaculata,Passeriformes,Alaudidae (Larks),, 19916.818,species,callar1,Calandra Lark,Melanocorypha calandra,Passeriformes,Alaudidae (Larks),, 19916.82,slash,y00687,Bimaculated/Calandra Lark,Melanocorypha bimaculata/calandra,Passeriformes,Alaudidae (Larks),, 19916.822,species,tiblar1,Tibetan Lark,Melanocorypha maxima,Passeriformes,Alaudidae (Larks),, 19916.824,species,blalar1,Black Lark,Melanocorypha yeltoniensis,Passeriformes,Alaudidae (Larks),, 19916.826,species,monlar1,Mongolian Lark,Melanocorypha mongolica,Passeriformes,Alaudidae (Larks),, 19916.828,species,duplar1,Dupont's Lark,Chersophilus duponti,Passeriformes,Alaudidae (Larks),, 19916.83,species,dunlar2,Dunn's Lark,Eremalauda dunni,Passeriformes,Alaudidae (Larks),, 19916.8301,issf,dunlar1,Dunn's Lark (African),Eremalauda dunni dunni,Passeriformes,Alaudidae (Larks),,dunlar2 19916.83017,issf,dunlar4,Dunn's Lark (Arabian),Eremalauda dunni eremodites,Passeriformes,Alaudidae (Larks),,dunlar2 19916.832,species,sstlar1,Somali Short-toed Lark,Alaudala somalica,Passeriformes,Alaudidae (Larks),, 19916.834,issf,sstlar2,Somali Short-toed Lark (Somali),Alaudala somalica [somalica Group],Passeriformes,Alaudidae (Larks),,sstlar1 19916.836,issf,sstlar3,Somali Short-toed Lark (Athi),Alaudala somalica athensis,Passeriformes,Alaudidae (Larks),,sstlar1 19916.838,species,lstlar2,Asian Short-toed Lark,Alaudala cheleensis,Passeriformes,Alaudidae (Larks),, 19916.84,species,lstlar3,Lesser Short-toed Lark,Alaudala rufescens,Passeriformes,Alaudidae (Larks),, 19916.842,slash,y00675,Greater/Asian/Lesser Short-toed Lark,Calandrella brachydactyla/Alaudala cheleensis/Alaudala rufescens,Passeriformes,Alaudidae (Larks),, 19916.843,slash,y01043,Greater/Lesser Short-toed Lark,Calandrella brachydactyla/Alaudala rufescens,Passeriformes,Alaudidae (Larks),, 19916.844,slash,lstlar1,Asian/Lesser Short-toed Lark,Alaudala cheleensis/rufescens,Passeriformes,Alaudidae (Larks),, 19916.846,species,sanlar1,Sand Lark,Alaudala raytal,Passeriformes,Alaudidae (Larks),, 19916.848,spuh,y00979,Calandrella/Alaudala sp.,Calandrella/Alaudala sp.,Passeriformes,Alaudidae (Larks),, 19916.85,species,woolar1,Wood Lark,Lullula arborea,Passeriformes,Alaudidae (Larks),, 19916.852,species,stalar2,Stark's Lark,Spizocorys starki,Passeriformes,Alaudidae (Larks),, 19916.854,species,scllar1,Sclater's Lark,Spizocorys sclateri,Passeriformes,Alaudidae (Larks),, 19916.856,species,shtlar1,Short-tailed Lark,Spizocorys fremantlii,Passeriformes,Alaudidae (Larks),, 19916.858,species,piblar1,Pink-billed Lark,Spizocorys conirostris,Passeriformes,Alaudidae (Larks),, 19916.86,species,botlar1,Botha's Lark,Spizocorys fringillaris,Passeriformes,Alaudidae (Larks),, 19916.862,species,obblar1,Obbia Lark,Spizocorys obbiensis,Passeriformes,Alaudidae (Larks),, 19916.864,species,maslar1,Masked Lark,Spizocorys personata,Passeriformes,Alaudidae (Larks),, 19916.866,species,whwlar1,White-winged Lark,Alauda leucoptera,Passeriformes,Alaudidae (Larks),, 19916.868,species,skylar,Eurasian Skylark,Alauda arvensis,Passeriformes,Alaudidae (Larks),, 19916.87,issf,skylar1,Eurasian Skylark (European),Alauda arvensis [arvensis Group],Passeriformes,Alaudidae (Larks),,skylar 19916.872,issf,skylar2,Eurasian Skylark (Asian),Alauda arvensis [japonica Group],Passeriformes,Alaudidae (Larks),,skylar 19916.874,species,orisky1,Oriental Skylark,Alauda gulgula,Passeriformes,Alaudidae (Larks),, 19916.876,slash,y00652,Eurasian/Oriental Skylark,Alauda arvensis/gulgula,Passeriformes,Alaudidae (Larks),, 19916.878,species,razsky1,Razo Skylark,Alauda razae,Passeriformes,Alaudidae (Larks),, 19916.88,species,sunlar1,Sun Lark,Galerida modesta,Passeriformes,Alaudidae (Larks),, 19916.882,species,lablar1,Large-billed Lark,Galerida magnirostris,Passeriformes,Alaudidae (Larks),, 19916.884,species,thelar1,Thekla's Lark,Galerida theklae,Passeriformes,Alaudidae (Larks),, 19916.886,species,crelar2,Crested Lark,Galerida cristata,Passeriformes,Alaudidae (Larks),, 19916.888,slash,y00980,Thekla/Crested Lark,Galerida theklae/cristata,Passeriformes,Alaudidae (Larks),, 19916.89,species,crelar3,Maghreb Lark,Galerida macrorhyncha,Passeriformes,Alaudidae (Larks),, 19916.892,slash,crelar1,Crested/Maghreb Lark,Galerida cristata/macrorhyncha,Passeriformes,Alaudidae (Larks),, 19916.894,species,mallar1,Malabar Lark,Galerida malabarica,Passeriformes,Alaudidae (Larks),, 19916.896,slash,y00655,Thekla/Crested/Maghreb Lark,Galerida theklae/cristata/macrorhyncha,Passeriformes,Alaudidae (Larks),, 19916.898,species,tawlar1,Tawny Lark,Galerida deva,Passeriformes,Alaudidae (Larks),, 19917,spuh,lark1,lark sp.,Alaudidae sp.,Passeriformes,Alaudidae (Larks),, 19918,species,afrmar2,African River Martin,Pseudochelidon eurystomina,Passeriformes,Hirundinidae (Swallows),Martins and Swallows, 19919,species,wermar2,White-eyed River Martin,Pseudochelidon sirintarae,Passeriformes,Hirundinidae (Swallows),, 19920,species,bawswa1,Blue-and-white Swallow,Pygochelidon cyanoleuca,Passeriformes,Hirundinidae (Swallows),, 19921,issf,bawswa3,Blue-and-white Swallow (cyanoleuca),Pygochelidon cyanoleuca cyanoleuca,Passeriformes,Hirundinidae (Swallows),,bawswa1 19922,issf,bawswa5,Blue-and-white Swallow (peruviana),Pygochelidon cyanoleuca peruviana,Passeriformes,Hirundinidae (Swallows),,bawswa1 19923,issf,bawswa4,Blue-and-white Swallow (patagonica),Pygochelidon cyanoleuca patagonica,Passeriformes,Hirundinidae (Swallows),,bawswa1 19924,species,blcswa2,Black-collared Swallow,Pygochelidon melanoleuca,Passeriformes,Hirundinidae (Swallows),, 19925,species,tahswa2,Tawny-headed Swallow,Alopochelidon fucata,Passeriformes,Hirundinidae (Swallows),, 19926,species,pafswa1,Pale-footed Swallow,Orochelidon flavipes,Passeriformes,Hirundinidae (Swallows),, 19927,species,brbswa1,Brown-bellied Swallow,Orochelidon murina,Passeriformes,Hirundinidae (Swallows),, 19931,species,andswa2,Andean Swallow,Orochelidon andecola,Passeriformes,Hirundinidae (Swallows),, 19934,species,blcswa1,Black-capped Swallow,Atticora pileata,Passeriformes,Hirundinidae (Swallows),, 19935,species,whtswa1,White-thighed Swallow,Atticora tibialis,Passeriformes,Hirundinidae (Swallows),, 19939,species,whbswa2,White-banded Swallow,Atticora fasciata,Passeriformes,Hirundinidae (Swallows),, 19940,species,nrwswa,Northern Rough-winged Swallow,Stelgidopteryx serripennis,Passeriformes,Hirundinidae (Swallows),, 19941,issf,nrwswa1,Northern Rough-winged Swallow (Northern),Stelgidopteryx serripennis [serripennis Group],Passeriformes,Hirundinidae (Swallows),,nrwswa 19947,issf,nrwswa2,Northern Rough-winged Swallow (Ridgway's),Stelgidopteryx serripennis ridgwayi,Passeriformes,Hirundinidae (Swallows),,nrwswa 19948,species,srwswa1,Southern Rough-winged Swallow,Stelgidopteryx ruficollis,Passeriformes,Hirundinidae (Swallows),, 19949,slash,y00899,Northern/Southern Rough-winged Swallow,Stelgidopteryx serripennis/ruficollis,Passeriformes,Hirundinidae (Swallows),, 19953,species,purmar,Purple Martin,Progne subis,Passeriformes,Hirundinidae (Swallows),, 19954,issf,purmar1,Purple Martin (subis/arboricola),Progne subis subis/arboricola,Passeriformes,Hirundinidae (Swallows),,purmar 19957,issf,purmar2,Purple Martin (hesperia),Progne subis hesperia,Passeriformes,Hirundinidae (Swallows),,purmar 19958,species,cubmar,Cuban Martin,Progne cryptoleuca,Passeriformes,Hirundinidae (Swallows),, 19958.5,slash,y00805,Purple/Cuban Martin,Progne subis/cryptoleuca,Passeriformes,Hirundinidae (Swallows),, 19959,species,carmar1,Caribbean Martin,Progne dominicensis,Passeriformes,Hirundinidae (Swallows),, 19960,species,sinmar1,Sinaloa Martin,Progne sinaloae,Passeriformes,Hirundinidae (Swallows),, 19960.3,slash,y00806,Caribbean/Sinaloa Martin,Progne dominicensis/sinaloae,Passeriformes,Hirundinidae (Swallows),, 19960.6,slash,y00807,Cuban/Caribbean/Sinaloa Martin (Snowy-bellied Martin),Progne cryptoleuca/dominicensis/sinaloae,Passeriformes,Hirundinidae (Swallows),, 19961,species,gybmar,Gray-breasted Martin,Progne chalybea,Passeriformes,Hirundinidae (Swallows),, 19965,species,soumar,Southern Martin,Progne elegans,Passeriformes,Hirundinidae (Swallows),, 19965.5,slash,y00745,Purple/Southern Martin,Progne subis/elegans,Passeriformes,Hirundinidae (Swallows),, 19966,species,permar1,Peruvian Martin,Progne murphyi,Passeriformes,Hirundinidae (Swallows),, 19967,species,galmar1,Galapagos Martin,Progne modesta,Passeriformes,Hirundinidae (Swallows),, 19968,species,brcmar1,Brown-chested Martin,Progne tapera,Passeriformes,Hirundinidae (Swallows),, 19969,issf,bncmar1,Brown-chested Martin (tapera),Progne tapera tapera,Passeriformes,Hirundinidae (Swallows),,brcmar1 19970,issf,bncmar2,Brown-chested Martin (fusca),Progne tapera fusca,Passeriformes,Hirundinidae (Swallows),,brcmar1 19971,spuh,martin1,martin sp. (Progne sp.),Progne sp.,Passeriformes,Hirundinidae (Swallows),, 19972,species,treswa,Tree Swallow,Tachycineta bicolor,Passeriformes,Hirundinidae (Swallows),, 19973,species,tumswa1,Tumbes Swallow,Tachycineta stolzmanni,Passeriformes,Hirundinidae (Swallows),, 19974,species,whwswa1,White-winged Swallow,Tachycineta albiventer,Passeriformes,Hirundinidae (Swallows),, 19975,species,whrswa1,White-rumped Swallow,Tachycineta leucorrhoa,Passeriformes,Hirundinidae (Swallows),, 19976,species,chiswa1,Chilean Swallow,Tachycineta leucopyga,Passeriformes,Hirundinidae (Swallows),, 19976.5,slash,y00702,White-rumped/Chilean Swallow,Tachycineta leucorrhoa/leucopyga,Passeriformes,Hirundinidae (Swallows),, 19977,species,manswa1,Mangrove Swallow,Tachycineta albilinea,Passeriformes,Hirundinidae (Swallows),, 19978,species,golswa1,Golden Swallow,Tachycineta euchrysea,Passeriformes,Hirundinidae (Swallows),, 19981,species,vigswa,Violet-green Swallow,Tachycineta thalassina,Passeriformes,Hirundinidae (Swallows),, 19982,hybrid,x00715,Northern Rough-winged x Violet-green Swallow (hybrid),Stelgidopteryx serripennis x Tachycineta thalassina,Passeriformes,Hirundinidae (Swallows),, 19983.6,hybrid,x00716,Tree x Violet-green Swallow (hybrid),Tachycineta bicolor x thalassina,Passeriformes,Hirundinidae (Swallows),, 19983.7,slash,y00701,Tree/Violet-green Swallow,Tachycineta bicolor/thalassina,Passeriformes,Hirundinidae (Swallows),, 19984,species,bahswa,Bahama Swallow,Tachycineta cyaneoviridis,Passeriformes,Hirundinidae (Swallows),, 19984.5,spuh,tachyc1,Tachycineta sp.,Tachycineta sp.,Passeriformes,Hirundinidae (Swallows),, 19985,species,plamar1,Plain Martin,Riparia paludicola,Passeriformes,Hirundinidae (Swallows),, 19985.5,issf,plamar2,Plain Martin (African),Riparia paludicola [paludicola Group],Passeriformes,Hirundinidae (Swallows),,plamar1 19992,issf,plamar3,Plain Martin (Madagascar),Riparia paludicola cowani,Passeriformes,Hirundinidae (Swallows),,plamar1 19993,species,gytmar1,Gray-throated Martin,Riparia chinensis,Passeriformes,Hirundinidae (Swallows),, 19995,species,conmar1,Congo Martin,Riparia congica,Passeriformes,Hirundinidae (Swallows),, 19996,species,banswa,Bank Swallow,Riparia riparia,Passeriformes,Hirundinidae (Swallows),, 20002,species,pasmar1,Pale Sand Martin,Riparia diluta,Passeriformes,Hirundinidae (Swallows),, 20008.5,slash,y00808,Bank Swallow/Pale Sand Martin,Riparia riparia/diluta,Passeriformes,Hirundinidae (Swallows),, 20009,species,banmar1,Banded Martin,Riparia cincta,Passeriformes,Hirundinidae (Swallows),, 20014.5,spuh,ripari1,Riparia sp.,Riparia sp.,Passeriformes,Hirundinidae (Swallows),, 20015,species,masmar1,Mascarene Martin,Phedina borbonica,Passeriformes,Hirundinidae (Swallows),, 20018,species,bramar1,Brazza's Martin,Phedina brazzae,Passeriformes,Hirundinidae (Swallows),, 20019,species,eurcrm1,Eurasian Crag-Martin,Ptyonoprogne rupestris,Passeriformes,Hirundinidae (Swallows),, 20020,species,rocmar2,Rock Martin,Ptyonoprogne fuligula,Passeriformes,Hirundinidae (Swallows),, 20025,issf,rocmar1,Rock Martin (Pale Crag-Martin),Ptyonoprogne fuligula [obsoleta Group],Passeriformes,Hirundinidae (Swallows),,rocmar2 20028,issf,rocmar3,Rock Martin (Rock),Ptyonoprogne fuligula [fuligula Group],Passeriformes,Hirundinidae (Swallows),,rocmar2 20033.5,slash,y00981,Eurasian Crag-Martin/Rock Martin,Ptyonoprogne rupestris/fuligula,Passeriformes,Hirundinidae (Swallows),, 20034,species,duscrm1,Dusky Crag-Martin,Ptyonoprogne concolor,Passeriformes,Hirundinidae (Swallows),, 20037,species,barswa,Barn Swallow,Hirundo rustica,Passeriformes,Hirundinidae (Swallows),, 20039,issf,barswa2,Barn Swallow (White-bellied),Hirundo rustica rustica,Passeriformes,Hirundinidae (Swallows),,barswa 20040,issf,barswa6,Barn Swallow (Egyptian),Hirundo rustica savignii,Passeriformes,Hirundinidae (Swallows),,barswa 20041,issf,barswa7,Barn Swallow (Levant),Hirundo rustica transitiva,Passeriformes,Hirundinidae (Swallows),,barswa 20042,issf,barswa8,Barn Swallow (Tytler's),Hirundo rustica tytleri,Passeriformes,Hirundinidae (Swallows),,barswa 20043,issf,barswa4,Barn Swallow (Buff-bellied),Hirundo rustica gutturalis/mandschurica,Passeriformes,Hirundinidae (Swallows),,barswa 20045,issf,barswa5,Barn Swallow (American),Hirundo rustica erythrogaster,Passeriformes,Hirundinidae (Swallows),,barswa 20045.5,hybrid,x00666,Tree x Barn Swallow (hybrid),Tachycineta bicolor x Hirundo rustica,Passeriformes,Hirundinidae (Swallows),, 20045.7,hybrid,x00710,Bank x Barn Swallow (hybrid),Riparia riparia x Hirundo rustica,Passeriformes,Hirundinidae (Swallows),, 20046,species,recswa1,Red-chested Swallow,Hirundo lucida,Passeriformes,Hirundinidae (Swallows),, 20050,species,ethswa1,Ethiopian Swallow,Hirundo aethiopica,Passeriformes,Hirundinidae (Swallows),, 20053,species,angswa1,Angola Swallow,Hirundo angolensis,Passeriformes,Hirundinidae (Swallows),, 20054,species,wtbswa1,White-throated Blue Swallow,Hirundo nigrita,Passeriformes,Hirundinidae (Swallows),, 20055,species,whtswa3,White-throated Swallow,Hirundo albigularis,Passeriformes,Hirundinidae (Swallows),, 20056,species,witswa1,Wire-tailed Swallow,Hirundo smithii,Passeriformes,Hirundinidae (Swallows),, 20059,species,welswa1,Welcome Swallow,Hirundo neoxena,Passeriformes,Hirundinidae (Swallows),, 20062,species,pacswa3,Hill Swallow,Hirundo domicola,Passeriformes,Hirundinidae (Swallows),, 20063,species,pacswa1,Pacific Swallow,Hirundo tahitica,Passeriformes,Hirundinidae (Swallows),, 20070.5,slash,y00746,Barn/Pacific Swallow,Hirundo rustica/tahitica,Passeriformes,Hirundinidae (Swallows),, 20071,species,piwswa1,Pied-winged Swallow,Hirundo leucosoma,Passeriformes,Hirundinidae (Swallows),, 20072,species,whtswa2,White-tailed Swallow,Hirundo megaensis,Passeriformes,Hirundinidae (Swallows),, 20073,species,pebswa1,Pearl-breasted Swallow,Hirundo dimidiata,Passeriformes,Hirundinidae (Swallows),, 20076,species,bluswa1,Montane Blue Swallow,Hirundo atrocaerulea,Passeriformes,Hirundinidae (Swallows),, 20077,species,barswa1,Black-and-rufous Swallow,Hirundo nigrorufa,Passeriformes,Hirundinidae (Swallows),, 20078,species,grests1,Greater Striped-Swallow,Cecropis cucullata,Passeriformes,Hirundinidae (Swallows),, 20079,species,rerswa1,Red-rumped Swallow,Cecropis daurica,Passeriformes,Hirundinidae (Swallows),, 20079.5,issf,rerswa2,Red-rumped Swallow (Red-rumped),Cecropis daurica [daurica Group],Passeriformes,Hirundinidae (Swallows),,rerswa1 20089.3,issf,rerswa3,Red-rumped Swallow (West African),Cecropis daurica domicella,Passeriformes,Hirundinidae (Swallows),,rerswa1 20089.5,hybrid,x00658,Barn x Red-rumped Swallow (hybrid),Hirundo rustica x Cecropis daurica,Passeriformes,Hirundinidae (Swallows),, 20089.6,species,srlswa1,Sri Lanka Swallow,Cecropis hyperythra,Passeriformes,Hirundinidae (Swallows),, 20090,species,strswa2,Striated Swallow,Cecropis striolata,Passeriformes,Hirundinidae (Swallows),, 20095,slash,y00621,Red-rumped/Striated Swallow,Cecropis daurica/striolata,Passeriformes,Hirundinidae (Swallows),, 20096,species,lessts1,Lesser Striped-Swallow,Cecropis abyssinica,Passeriformes,Hirundinidae (Swallows),, 20103,species,rucswa2,Rufous-chested Swallow,Cecropis semirufa,Passeriformes,Hirundinidae (Swallows),, 20106,species,mosswa2,Mosque Swallow,Cecropis senegalensis,Passeriformes,Hirundinidae (Swallows),, 20110,species,rubswa1,Rufous-bellied Swallow,Cecropis badia,Passeriformes,Hirundinidae (Swallows),, 20111,species,retswa2,Red-throated Swallow,Petrochelidon rufigula,Passeriformes,Hirundinidae (Swallows),, 20112,species,preswa2,Preuss's Swallow,Petrochelidon preussi,Passeriformes,Hirundinidae (Swallows),, 20113,species,resswa2,Red Sea Swallow,Petrochelidon perdita,Passeriformes,Hirundinidae (Swallows),, 20114,species,soaswa2,South African Swallow,Petrochelidon spilodera,Passeriformes,Hirundinidae (Swallows),, 20115,species,forswa2,Forest Swallow,Petrochelidon fuliginosa,Passeriformes,Hirundinidae (Swallows),, 20116,species,sttswa2,Streak-throated Swallow,Petrochelidon fluvicola,Passeriformes,Hirundinidae (Swallows),, 20117,species,faimar2,Fairy Martin,Petrochelidon ariel,Passeriformes,Hirundinidae (Swallows),, 20118,species,tremar2,Tree Martin,Petrochelidon nigricans,Passeriformes,Hirundinidae (Swallows),, 20118.2,slash,y00900,Fairy/Tree Martin,Petrochelidon ariel/nigricans,Passeriformes,Hirundinidae (Swallows),, 20122,species,cliswa,Cliff Swallow,Petrochelidon pyrrhonota,Passeriformes,Hirundinidae (Swallows),, 20123,issf,cliswa2,Cliff Swallow (pyrrhonota Group),Petrochelidon pyrrhonota [pyrrhonota Group],Passeriformes,Hirundinidae (Swallows),,cliswa 20127,issf,cliswa3,Cliff Swallow (melanogaster),Petrochelidon pyrrhonota melanogaster,Passeriformes,Hirundinidae (Swallows),,cliswa 20127.3,hybrid,x00717,Barn x Cliff Swallow (hybrid),Hirundo rustica x Petrochelidon pyrrhonota,Passeriformes,Hirundinidae (Swallows),, 20127.5,hybrid,x00661,Violet-green x Cliff Swallow (hybrid),Tachycineta thalassina x Petrochelidon pyrrhonota,Passeriformes,Hirundinidae (Swallows),, 20128,species,cavswa,Cave Swallow,Petrochelidon fulva,Passeriformes,Hirundinidae (Swallows),, 20129,issf,cavswa2,Cave Swallow (Caribbean),Petrochelidon fulva [fulva Group],Passeriformes,Hirundinidae (Swallows),,cavswa 20134,issf,cavswa3,Cave Swallow (Texas),Petrochelidon fulva pallida,Passeriformes,Hirundinidae (Swallows),,cavswa 20135,issf,cavswa4,Cave Swallow (Yucatan),Petrochelidon fulva citata,Passeriformes,Hirundinidae (Swallows),,cavswa 20135.5,hybrid,x00660,Barn x Cave Swallow (hybrid),Hirundo rustica x Petrochelidon fulva,Passeriformes,Hirundinidae (Swallows),, 20135.7,hybrid,x00892,Cliff x Cave Swallow (hybrid),Petrochelidon pyrrhonota x fulva,Passeriformes,Hirundinidae (Swallows),, 20136,slash,y00604,Cliff/Cave Swallow,Petrochelidon pyrrhonota/fulva,Passeriformes,Hirundinidae (Swallows),, 20137,species,chcswa2,Chestnut-collared Swallow,Petrochelidon rufocollaris,Passeriformes,Hirundinidae (Swallows),, 20139.5,slash,y00809,Cliff/Chestnut-collared Swallow,Petrochelidon pyrrhonota/rufocollaris,Passeriformes,Hirundinidae (Swallows),, 20139.7,spuh,petroc1,Petrochelidon sp.,Petrochelidon sp.,Passeriformes,Hirundinidae (Swallows),, 20140,species,cohmar1,Common House-Martin,Delichon urbicum,Passeriformes,Hirundinidae (Swallows),, 20140.2,issf,comhom1,Common House-Martin (Western),Delichon urbicum urbicum/meridionale,Passeriformes,Hirundinidae (Swallows),,cohmar1 20140.4,issf,comhom2,Common House-Martin (Eastern),Delichon urbicum lagopodum,Passeriformes,Hirundinidae (Swallows),,cohmar1 20143.5,hybrid,x00659,Barn Swallow x Common House-Martin (hybrid),Hirundo rustica x Delichon urbicum,Passeriformes,Hirundinidae (Swallows),, 20144,species,ashmar1,Asian House-Martin,Delichon dasypus,Passeriformes,Hirundinidae (Swallows),, 20146,slash,y00649,Common/Asian House-Martin,Delichon urbicum/dasypus,Passeriformes,Hirundinidae (Swallows),, 20148,species,nephom1,Nepal House-Martin,Delichon nipalense,Passeriformes,Hirundinidae (Swallows),, 20150.5,spuh,house-1,house-martin sp.,Delichon sp.,Passeriformes,Hirundinidae (Swallows),, 20151,species,sqtsaw1,Square-tailed Sawwing,Psalidoprocne nitens,Passeriformes,Hirundinidae (Swallows),, 20151.2,slash,y00901,Forest Swallow/Square-tailed Sawwing,Petrochelidon fuliginosa/Psalidoprocne nitens,Passeriformes,Hirundinidae (Swallows),, 20154,species,mousaw1,Mountain Sawwing,Psalidoprocne fuliginosa,Passeriformes,Hirundinidae (Swallows),, 20155,species,whhsaw1,White-headed Sawwing,Psalidoprocne albiceps,Passeriformes,Hirundinidae (Swallows),, 20156,issf,whhsaw2,White-headed Sawwing (White-headed),Psalidoprocne albiceps albiceps,Passeriformes,Hirundinidae (Swallows),,whhsaw1 20157,issf,whhsaw3,White-headed Sawwing (Dusky-throated),Psalidoprocne albiceps suffusa,Passeriformes,Hirundinidae (Swallows),,whhsaw1 20158,species,blksaw1,Black Sawwing,Psalidoprocne pristoptera,Passeriformes,Hirundinidae (Swallows),, 20171,species,fansaw1,Fanti Sawwing,Psalidoprocne obscura,Passeriformes,Hirundinidae (Swallows),, 20171.2,spuh,sawwin1,sawwing sp.,Psalidoprocne sp.,Passeriformes,Hirundinidae (Swallows),, 20172,species,gyrswa1,Gray-rumped Swallow,Pseudhirundo griseopyga,Passeriformes,Hirundinidae (Swallows),, 20175,species,whbswa3,White-backed Swallow,Cheramoeca leucosterna,Passeriformes,Hirundinidae (Swallows),, 20176,spuh,swallo,swallow sp.,Hirundinidae sp.,Passeriformes,Hirundinidae (Swallows),, 20177,species,faifly1,Fairy Flycatcher,Stenostira scita,Passeriformes,Stenostiridae (Fairy Flycatchers),Fairy Flycatchers, 20180.1,species,yebfan1,Yellow-bellied Fairy-Fantail,Chelidorhynx hypoxantha,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20181,species,afbfly1,African Blue Flycatcher,Elminia longicauda,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20184,species,wtbfly1,White-tailed Blue Flycatcher,Elminia albicauda,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20185,species,ducfly1,Dusky Crested-Flycatcher,Elminia nigromitrata,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20188,species,wbcfly1,White-bellied Crested-Flycatcher,Elminia albiventris,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20189,issf,whbcrf1,White-bellied Crested-Flycatcher (White-bellied),Elminia albiventris albiventris,Passeriformes,Stenostiridae (Fairy Flycatchers),,wbcfly1 20190,issf,whbcrf2,White-bellied Crested-Flycatcher (Toro),Elminia albiventris toroensis,Passeriformes,Stenostiridae (Fairy Flycatchers),,wbcfly1 20191,species,wtcfly1,White-tailed Crested-Flycatcher,Elminia albonotata,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20195,species,gyhcaf1,Gray-headed Canary-Flycatcher,Culicicapa ceylonensis,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20200,species,citcaf1,Citrine Canary-Flycatcher,Culicicapa helianthea,Passeriformes,Stenostiridae (Fairy Flycatchers),, 20204,species,fictit1,Fire-capped Tit,Cephalopyrus flammiceps,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)","Tits, Chickadees, and Titmice", 20205.6,species,yebtit3,Yellow-browed Tit,Sylviparus modestus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20205.8,species,sultit1,Sultan Tit,Melanochlora sultanea,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20206,species,coatit2,Coal Tit,Periparus ater,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20210,issf,coatit1,Coal Tit (British),Periparus ater britannicus/hibernicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20219,issf,coatit3,Coal Tit (Continental),Periparus ater [ater Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20220,issf,coatit4,Coal Tit (Atlas),Periparus ater ledouci/atlas,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20223,issf,coatit5,Coal Tit (Cyprus),Periparus ater cypriotes,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20223.1,issf,coatit6,Coal Tit (Caucasus),Periparus ater [phaeonotus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20235,issf,bkctit2,Coal Tit (Black-crested),Periparus ater melanolophus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20239,issf,coatit7,Coal Tit (Himalayan),Periparus ater aemodius/rufipectus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20239.1,issf,coatit8,Coal Tit (Chinese),Periparus ater ptilosus/kuatunensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 20239.11,species,bkbtit2,Black-breasted Tit,Periparus rufonuchalis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.12,species,ruvtit2,Rufous-vented Tit,Periparus rubidiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.13,species,yebtit4,Yellow-bellied Tit,Periparus venustulus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.14,species,eletit2,Elegant Tit,Periparus elegans,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.15,species,paltit2,Palawan Tit,Periparus amabilis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.16,species,cretit2,Crested Tit,Lophophanes cristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.17,species,gyctit1,Gray-crested Tit,Lophophanes dichrous,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.21,species,vartit3,Chestnut-bellied Tit,Sittiparus castaneoventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.22,species,vartit2,Iriomote Tit,Sittiparus olivaceus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.23,species,vartit1,Varied Tit,Sittiparus varius,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.24,slash,y00982,Chestnut-bellied/Varied Tit,Sittiparus castaneoventris/varius,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.241,species,vartit4,Owston's Tit,Sittiparus owstoni,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.242,species,whftit2,White-fronted Tit,Sittiparus semilarvatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.243,species,whbtit4,White-browed Tit,Poecile superciliosus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.25,species,somtit3,Sombre Tit,Poecile lugubris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.255,species,pedtit1,Pere David's Tit,Poecile davidi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.26,species,martit2,Marsh Tit,Poecile palustris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.27,species,castit2,Caspian Tit,Poecile hyrcanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.28,species,bkbtit1,Black-bibbed Tit,Poecile hypermelaenus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.29,species,wiltit1,Willow Tit,Poecile montanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.3,issf,wiltit2,Willow Tit (Willow),Poecile montanus [montanus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,wiltit1 20239.31,issf,sontit2,Willow Tit (Songar),Poecile montanus [songarus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,wiltit1 20239.32,slash,y00696,Marsh/Willow Tit,Poecile palustris/montanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20239.33,species,sictit1,Sichuan Tit,Poecile weigoldicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20240,species,carchi,Carolina Chickadee,Poecile carolinensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20246,species,bkcchi,Black-capped Chickadee,Poecile atricapillus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20256,hybrid,x00195,Carolina x Black-capped Chickadee (hybrid),Poecile carolinensis x atricapillus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20256.5,slash,y00033,Carolina/Black-capped Chickadee,Poecile carolinensis/atricapillus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20258,species,mouchi,Mountain Chickadee,Poecile gambeli,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20259,issf,mouchi3,Mountain Chickadee (Rocky Mts.),Poecile gambeli [gambeli Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,mouchi 20263,issf,mouchi4,Mountain Chickadee (Sierra Nevada),Poecile gambeli [baileyae Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,mouchi 20267,hybrid,x00623,Black-capped x Mountain Chickadee (hybrid),Poecile atricapillus x gambeli,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20267.5,slash,y00983,Black-capped/Mountain Chickadee,Poecile atricapillus/gambeli,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20268,species,mexchi,Mexican Chickadee,Poecile sclateri,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20275,species,chbchi,Chestnut-backed Chickadee,Poecile rufescens,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20279,species,borchi2,Boreal Chickadee,Poecile hudsonicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20284.3,hybrid,x00708,Black-capped x Boreal Chickadee (hybrid),Poecile atricapillus x hudsonicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20284.5,hybrid,x00637,Mountain x Boreal Chickadee (hybrid),Poecile gambeli x hudsonicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20285,species,gyhchi,Gray-headed Chickadee,Poecile cinctus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20289.05,hybrid,x00743,Willow Tit x Gray-headed Chickadee (hybrid),Poecile montanus x cinctus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20290,spuh,chicka1,chickadee sp.,Poecile sp.,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20429,species,blutit,Eurasian Blue Tit,Cyanistes caeruleus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20439,species,afbtit2,African Blue Tit,Cyanistes teneriffae,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20446,species,azutit2,Azure Tit,Cyanistes cyanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20446.5,issf,azutit1,Azure Tit (Azure),Cyanistes cyanus [cyanus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,azutit2 20452,issf,yebtit5,Azure Tit (Yellow-breasted),Cyanistes cyanus [flavipectus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,azutit2 20470,species,britit,Bridled Titmouse,Baeolophus wollweberi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20475,species,oaktit,Oak Titmouse,Baeolophus inornatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20480,species,juntit1,Juniper Titmouse,Baeolophus ridgwayi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20483,slash,y00326,Oak/Juniper Titmouse (Plain Titmouse),Baeolophus inornatus/ridgwayi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20484,species,tuftit,Tufted Titmouse,Baeolophus bicolor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20484.5,hybrid,x00709,Carolina Chickadee x Tufted Titmouse (hybrid),Poecile carolinensis x Baeolophus bicolor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20485,hybrid,x00642,Black-capped Chickadee x Tufted Titmouse (hybrid),Poecile atricapillus x Baeolophus bicolor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20486,species,blctit4,Black-crested Titmouse,Baeolophus atricristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20489.5,hybrid,bcxtit1,Tufted x Black-crested Titmouse (hybrid),Baeolophus bicolor x atricristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20490,slash,y00327,Tufted/Black-crested Titmouse,Baeolophus bicolor/atricristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500,species,grotit1,Ground Tit,Pseudopodoces humilis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.002,species,grbtit1,Green-backed Tit,Parus monticolus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.004,species,gretit1,Great Tit,Parus major,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.006,issf,gretit3,Great Tit (Great),Parus major [major Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit1 20500.008,issf,turtit1,Great Tit (Turkestan),Parus major [bokharensis Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit1 20500.01,species,gretit2,Cinereous Tit,Parus cinereus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.012,species,gretit4,Japanese Tit,Parus minor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.014,spuh,parus1,Parus sp.,Parus sp.,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.016,species,whwtit2,White-naped Tit,Machlolophus nuchalis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.018,species,yeltit2,Yellow Tit,Machlolophus holsti,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.02,species,blltit1,Black-lored Tit,Machlolophus xanthogenys,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.022,species,indtit1,Indian Tit,Machlolophus aplonotus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.024,species,yectit1,Yellow-cheeked Tit,Machlolophus spilonotus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.026,species,whsblt1,White-shouldered Black-Tit,Melaniparus guineensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.028,species,whwblt3,White-winged Black-Tit,Melaniparus leucomelas,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.03,species,rubtit3,Rufous-bellied Tit,Melaniparus rufiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.032,issf,rubtit1,Rufous-bellied Tit (Rufous-bellied),Melaniparus rufiventris rufiventris/masukuensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,rubtit3 20500.034,issf,rubtit2,Rufous-bellied Tit (Cinnamon-breasted),Melaniparus rufiventris pallidiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,rubtit3 20500.036,species,whbtit5,White-bellied Tit,Melaniparus albiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.038,species,soublt1,Southern Black-Tit,Melaniparus niger,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.04,species,cartit2,Carp's Tit,Melaniparus carpi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.042,species,dustit2,Dusky Tit,Melaniparus funereus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.044,species,miotit2,Miombo Tit,Melaniparus griseiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.046,species,stbtit2,Stripe-breasted Tit,Melaniparus fasciiventer,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.047,species,somtit4,Somali Tit,Melaniparus thruppi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.048,species,rettit2,Red-throated Tit,Melaniparus fringillinus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.0485,species,whbblt1,White-backed Black-Tit,Melaniparus leuconotus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.049,species,ashtit2,Ashy Tit,Melaniparus cinerascens,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.0495,species,grytit1,Gray Tit,Melaniparus afer,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20500.5,spuh,parid1,Parid sp.,Paridae sp.,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, 20501,species,verdin,Verdin,Auriparus flaviceps,Passeriformes,Remizidae (Penduline-Tits),Penduline-Tits and Long-tailed Tits, 20508,species,euptit1,Eurasian Penduline-Tit,Remiz pendulinus,Passeriformes,Remizidae (Penduline-Tits),, 20513,species,bhptit1,Black-headed Penduline-Tit,Remiz macronyx,Passeriformes,Remizidae (Penduline-Tits),, 20518,species,wcptit1,White-crowned Penduline-Tit,Remiz coronatus,Passeriformes,Remizidae (Penduline-Tits),, 20519,species,chptit1,Chinese Penduline-Tit,Remiz consobrinus,Passeriformes,Remizidae (Penduline-Tits),, 20520,species,septit1,Sennar Penduline-Tit,Anthoscopus punctifrons,Passeriformes,Remizidae (Penduline-Tits),, 20521,species,mcptit1,Mouse-colored Penduline-Tit,Anthoscopus musculus,Passeriformes,Remizidae (Penduline-Tits),, 20522,species,yeptit1,Yellow Penduline-Tit,Anthoscopus parvulus,Passeriformes,Remizidae (Penduline-Tits),, 20526,species,foptit1,Forest Penduline-Tit,Anthoscopus flavifrons,Passeriformes,Remizidae (Penduline-Tits),, 20530,species,afptit1,African Penduline-Tit,Anthoscopus caroli,Passeriformes,Remizidae (Penduline-Tits),, 20530.5,issf,afrpet2,African Penduline-Tit (White-bellied),Anthoscopus caroli [ansorgei Group],Passeriformes,Remizidae (Penduline-Tits),,afptit1 20533,issf,afrpet1,African Penduline-Tit (Buff-bellied),Anthoscopus caroli sylviella/sharpei,Passeriformes,Remizidae (Penduline-Tits),,afptit1 20535.5,issf,afrpet3,African Penduline-Tit (Yellow-bellied),Anthoscopus caroli roccatii,Passeriformes,Remizidae (Penduline-Tits),,afptit1 20536,issf,afrpet4,African Penduline-Tit (Slaty-backed),Anthoscopus caroli rankinei,Passeriformes,Remizidae (Penduline-Tits),,afptit1 20537,issf,afrpet5,African Penduline-Tit (Buff-vented),Anthoscopus caroli [caroli Group],Passeriformes,Remizidae (Penduline-Tits),,afptit1 20542,species,soptit1,Southern Penduline-Tit,Anthoscopus minutus,Passeriformes,Remizidae (Penduline-Tits),, 20665,species,wbtwar1,White-browed Tit-Warbler,Leptopoecile sophiae,Passeriformes,Aegithalidae (Long-tailed Tits),, 20670,species,crtwar1,Crested Tit-Warbler,Leptopoecile elegans,Passeriformes,Aegithalidae (Long-tailed Tits),, 20671,species,lottit1,Long-tailed Tit,Aegithalos caudatus,Passeriformes,Aegithalidae (Long-tailed Tits),, 20672,issf,lottit2,Long-tailed Tit (caudatus),Aegithalos caudatus caudatus,Passeriformes,Aegithalidae (Long-tailed Tits),,lottit1 20673,issf,lottit3,Long-tailed Tit (europaeus),Aegithalos caudatus [europaeus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,lottit1 20683,issf,lottit4,Long-tailed Tit (alpinus),Aegithalos caudatus [alpinus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,lottit1 20691,species,lottit5,Silver-throated Tit,Aegithalos glaucogularis,Passeriformes,Aegithalidae (Long-tailed Tits),, 20693,species,whctit1,White-cheeked Tit,Aegithalos leucogenys,Passeriformes,Aegithalidae (Long-tailed Tits),, 20694,species,blttit2,Black-throated Tit,Aegithalos concinnus,Passeriformes,Aegithalidae (Long-tailed Tits),, 20694.5,issf,bkttit1,Black-throated Tit (Black-throated),Aegithalos concinnus [concinnus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,blttit2 20695,issf,bkttit3,Black-throated Tit (Red-headed),Aegithalos concinnus iredalei,Passeriformes,Aegithalidae (Long-tailed Tits),,blttit2 20700,issf,bkttit2,Black-throated Tit (Gray-crowned),Aegithalos concinnus annamensis,Passeriformes,Aegithalidae (Long-tailed Tits),,blttit2 20701,species,whttit1,White-throated Tit,Aegithalos niveogularis,Passeriformes,Aegithalidae (Long-tailed Tits),, 20702,species,bkbtit3,Black-browed Tit,Aegithalos iouschistos,Passeriformes,Aegithalidae (Long-tailed Tits),, 20703,issf,bkbtit5,Black-browed Tit (Rufous-fronted),Aegithalos iouschistos iouschistos,Passeriformes,Aegithalidae (Long-tailed Tits),,bkbtit3 20703.3,issf,bkbtit6,Black-browed Tit (Burmese),Aegithalos iouschistos sharpei,Passeriformes,Aegithalidae (Long-tailed Tits),,bkbtit3 20703.6,issf,bkbtit4,Black-browed Tit (Black-browed),Aegithalos iouschistos bonvaloti/obscuratus,Passeriformes,Aegithalidae (Long-tailed Tits),,bkbtit3 20707,species,sootit1,Sooty Tit,Aegithalos fuliginosus,Passeriformes,Aegithalidae (Long-tailed Tits),, 20708,species,bushti,Bushtit,Psaltriparus minimus,Passeriformes,Aegithalidae (Long-tailed Tits),, 20709,issf,bushti1,Bushtit (Pacific),Psaltriparus minimus [minimus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,bushti 20714,issf,bushti2,Bushtit (Interior),Psaltriparus minimus plumbeus,Passeriformes,Aegithalidae (Long-tailed Tits),,bushti 20718,issf,bkebus,Bushtit (melanotis Group),Psaltriparus minimus [melanotis Group],Passeriformes,Aegithalidae (Long-tailed Tits),,bushti 20723,species,pygtit1,Pygmy Tit,Psaltria exilis,Passeriformes,Aegithalidae (Long-tailed Tits),, 20724,species,chbnut2,Indian Nuthatch,Sitta castanea,Passeriformes,Sittidae (Nuthatches),Nuthatches, 20725,species,chbnut3,Chestnut-bellied Nuthatch,Sitta cinnamoventris,Passeriformes,Sittidae (Nuthatches),, 20725.2,slash,y00902,Indian/Chestnut-bellied Nuthatch,Sitta castanea/cinnamoventris,Passeriformes,Sittidae (Nuthatches),, 20730,species,chbnut4,Burmese Nuthatch,Sitta neglecta,Passeriformes,Sittidae (Nuthatches),, 20731,species,eurnut2,Eurasian Nuthatch,Sitta europaea,Passeriformes,Sittidae (Nuthatches),, 20731.5,issf,eurnut5,Eurasian Nuthatch (Eurasian),Sitta europaea [europaea Group],Passeriformes,Sittidae (Nuthatches),,eurnut2 20750.5,issf,eurnut6,Eurasian Nuthatch (Siberian),Sitta europaea arctica,Passeriformes,Sittidae (Nuthatches),,eurnut2 20751,species,chvnut1,Chestnut-vented Nuthatch,Sitta nagaensis,Passeriformes,Sittidae (Nuthatches),, 20754,species,kasnut1,Kashmir Nuthatch,Sitta cashmirensis,Passeriformes,Sittidae (Nuthatches),, 20755,species,whtnut1,White-tailed Nuthatch,Sitta himalayensis,Passeriformes,Sittidae (Nuthatches),, 20756,species,whbnut1,White-browed Nuthatch,Sitta victoriae,Passeriformes,Sittidae (Nuthatches),, 20757,species,rebnut,Red-breasted Nuthatch,Sitta canadensis,Passeriformes,Sittidae (Nuthatches),, 20758,species,whcnut1,White-cheeked Nuthatch,Sitta leucopsis,Passeriformes,Sittidae (Nuthatches),, 20760,species,prznut1,Przevalski's Nuthatch,Sitta przewalskii,Passeriformes,Sittidae (Nuthatches),, 20761,species,whbnut,White-breasted Nuthatch,Sitta carolinensis,Passeriformes,Sittidae (Nuthatches),, 20762,issf,whbnut2,White-breasted Nuthatch (Eastern),Sitta carolinensis carolinensis,Passeriformes,Sittidae (Nuthatches),,whbnut 20763,issf,whbnut3,White-breasted Nuthatch (Interior West),Sitta carolinensis [lagunae Group],Passeriformes,Sittidae (Nuthatches),,whbnut 20768,issf,whbnut4,White-breasted Nuthatch (Pacific),Sitta carolinensis aculeata/alexandrae,Passeriformes,Sittidae (Nuthatches),,whbnut 20773,species,pygnut,Pygmy Nuthatch,Sitta pygmaea,Passeriformes,Sittidae (Nuthatches),, 20781,species,bnhnut,Brown-headed Nuthatch,Sitta pusilla,Passeriformes,Sittidae (Nuthatches),, 20782,issf,bnhnut1,Brown-headed Nuthatch (Southeast),Sitta pusilla pusilla,Passeriformes,Sittidae (Nuthatches),,bnhnut 20783,issf,bnhnut2,Brown-headed Nuthatch (Grand Bahama),Sitta pusilla insularis,Passeriformes,Sittidae (Nuthatches),,bnhnut 20784,species,cornut1,Corsican Nuthatch,Sitta whiteheadi,Passeriformes,Sittidae (Nuthatches),, 20785,species,algnut1,Algerian Nuthatch,Sitta ledanti,Passeriformes,Sittidae (Nuthatches),, 20786,species,krunut1,KrŸper's Nuthatch,Sitta krueperi,Passeriformes,Sittidae (Nuthatches),, 20787,species,snbnut1,Snowy-browed Nuthatch,Sitta villosa,Passeriformes,Sittidae (Nuthatches),, 20790,species,yunnut1,Yunnan Nuthatch,Sitta yunnanensis,Passeriformes,Sittidae (Nuthatches),, 20791,species,rocnut1,Western Rock Nuthatch,Sitta neumayer,Passeriformes,Sittidae (Nuthatches),, 20797,species,pernut1,Eastern Rock Nuthatch,Sitta tephronota,Passeriformes,Sittidae (Nuthatches),, 20797.2,slash,y00903,Rock/Persian Nuthatch,Sitta neumayer/tephronota,Passeriformes,Sittidae (Nuthatches),, 20802,species,vefnut1,Velvet-fronted Nuthatch,Sitta frontalis,Passeriformes,Sittidae (Nuthatches),, 20808,species,yebnut1,Yellow-billed Nuthatch,Sitta solangiae,Passeriformes,Sittidae (Nuthatches),, 20808.2,slash,y01044,Velvet-fronted/Yellow-billed Nuthatch,Sitta frontalis/solangiae,Passeriformes,Sittidae (Nuthatches),, 20812,species,subnut1,Sulphur-billed Nuthatch,Sitta oenochlamys,Passeriformes,Sittidae (Nuthatches),, 20819,species,blunut1,Blue Nuthatch,Sitta azurea,Passeriformes,Sittidae (Nuthatches),, 20823,species,gianut1,Giant Nuthatch,Sitta magna,Passeriformes,Sittidae (Nuthatches),, 20826,species,beanut1,Beautiful Nuthatch,Sitta formosa,Passeriformes,Sittidae (Nuthatches),, 20827,spuh,nuthat1,nuthatch sp.,Sitta sp.,Passeriformes,Sittidae (Nuthatches),, 20828,species,wallcr1,Wallcreeper,Tichodroma muraria,Passeriformes,Tichodromidae (Wallcreeper),Wallcreeper, 20831,species,eurtre1,Eurasian Treecreeper,Certhia familiaris,Passeriformes,Certhiidae (Treecreepers),Treecreepers, 20841.5,species,eurtre3,Hodgson's Treecreeper,Certhia hodgsoni,Passeriformes,Certhiidae (Treecreepers),, 20845,species,sictre1,Sichuan Treecreeper,Certhia tianquanensis,Passeriformes,Certhiidae (Treecreepers),, 20846,species,brncre,Brown Creeper,Certhia americana,Passeriformes,Certhiidae (Treecreepers),, 20847,issf,brncre1,Brown Creeper (occidentalis Group),Certhia americana [occidentalis Group],Passeriformes,Certhiidae (Treecreepers),,brncre 20852,issf,brncre5,Brown Creeper (montana/idahoensis),Certhia americana montana/idahoensis,Passeriformes,Certhiidae (Treecreepers),,brncre 20855,issf,brncre3,Brown Creeper (americana/nigrescens),Certhia americana americana/nigrescens,Passeriformes,Certhiidae (Treecreepers),,brncre 20856.5,issf,brncre2,Brown Creeper (albescens/alticola),Certhia americana albescens/alticola,Passeriformes,Certhiidae (Treecreepers),,brncre 20858,issf,brncre6,Brown Creeper (pernigra),Certhia americana pernigra,Passeriformes,Certhiidae (Treecreepers),,brncre 20858.5,issf,brncre4,Brown Creeper (extima),Certhia americana extima,Passeriformes,Certhiidae (Treecreepers),,brncre 20859,species,shttre1,Short-toed Treecreeper,Certhia brachydactyla,Passeriformes,Certhiidae (Treecreepers),, 20863,slash,y00640,Eurasian/Short-toed Treecreeper,Certhia familiaris/brachydactyla,Passeriformes,Certhiidae (Treecreepers),, 20865,species,battre1,Bar-tailed Treecreeper,Certhia himalayana,Passeriformes,Certhiidae (Treecreepers),, 20870,species,ruftre4,Rusty-flanked Treecreeper,Certhia nipalensis,Passeriformes,Certhiidae (Treecreepers),, 20871,species,bnttre1,Sikkim Treecreeper,Certhia discolor,Passeriformes,Certhiidae (Treecreepers),, 20872.5,species,bnttre2,Hume's Treecreeper,Certhia manipurensis,Passeriformes,Certhiidae (Treecreepers),, 20877,spuh,certhi1,treecreeper sp.,Certhia sp.,Passeriformes,Certhiidae (Treecreepers),, 20878.5,species,spocre2,African Spotted-Creeper,Salpornis salvadori,Passeriformes,Certhiidae (Treecreepers),, 20882,species,spocre3,Indian Spotted-Creeper,Salpornis spilonotus,Passeriformes,Certhiidae (Treecreepers),, 20884.1,species,rocwre,Rock Wren,Salpinctes obsoletus,Passeriformes,Troglodytidae (Wrens),Wrens, 20884.2,issf,rocwre1,Rock Wren (Northern),Salpinctes obsoletus [obsoletus Group],Passeriformes,Troglodytidae (Wrens),,rocwre 20884.8,issf,rocwre2,Rock Wren (Central American),Salpinctes obsoletus [guttatus Group],Passeriformes,Troglodytidae (Wrens),,rocwre 20885,species,nigwre1,Nightingale Wren,Microcerculus philomela,Passeriformes,Troglodytidae (Wrens),, 20886,species,scbwre1,Scaly-breasted Wren,Microcerculus marginatus,Passeriformes,Troglodytidae (Wrens),, 20887,issf,scbwre2,Scaly-breasted Wren (Whistling),Microcerculus marginatus luscinia,Passeriformes,Troglodytidae (Wrens),,scbwre1 20888,issf,scbwre3,Scaly-breasted Wren (Scaly),Microcerculus marginatus taeniatus/occidentalis,Passeriformes,Troglodytidae (Wrens),,scbwre1 20891,issf,scbwre4,Scaly-breasted Wren (Southern),Microcerculus marginatus [marginatus Group],Passeriformes,Troglodytidae (Wrens),,scbwre1 20895,species,fluwre1,Flutist Wren,Microcerculus ustulatus,Passeriformes,Troglodytidae (Wrens),, 20900,species,wibwre1,Wing-banded Wren,Microcerculus bambla,Passeriformes,Troglodytidae (Wrens),, 20903.2,species,gymwre1,Gray-mantled Wren,Odontorchilus branickii,Passeriformes,Troglodytidae (Wrens),, 20903.8,species,tobwre1,Tooth-billed Wren,Odontorchilus cinereus,Passeriformes,Troglodytidae (Wrens),, 20904,species,canwre,Canyon Wren,Catherpes mexicanus,Passeriformes,Troglodytidae (Wrens),, 20960,species,sumwre1,Sumichrast's Wren,Hylorchilus sumichrasti,Passeriformes,Troglodytidae (Wrens),, 20961,species,navwre1,Nava's Wren,Hylorchilus navai,Passeriformes,Troglodytidae (Wrens),, 20961.5,species,zapwre1,Zapata Wren,Ferminia cerverai,Passeriformes,Troglodytidae (Wrens),, 21138,species,houwre,House Wren,Troglodytes aedon,Passeriformes,Troglodytidae (Wrens),, 21139,issf,houwre1,House Wren (Northern),Troglodytes aedon [aedon Group],Passeriformes,Troglodytidae (Wrens),,houwre 21144,issf,houwre6,House Wren (Dominica),Troglodytes aedon rufescens,Passeriformes,Troglodytidae (Wrens),,houwre 21145,issf,houwre7,House Wren (Martinique),Troglodytes aedon martinicensis,Passeriformes,Troglodytidae (Wrens),,houwre 21146,issf,houwre8,House Wren (St. Lucia),Troglodytes aedon mesoleucus,Passeriformes,Troglodytidae (Wrens),,houwre 21147,issf,houwre9,House Wren (Guadeloupe),Troglodytes aedon guadeloupensis,Passeriformes,Troglodytidae (Wrens),,houwre 21148,issf,houwre10,House Wren (St. Vincent),Troglodytes aedon musicus,Passeriformes,Troglodytidae (Wrens),,houwre 21149,issf,houwre11,House Wren (Grenada),Troglodytes aedon grenadensis,Passeriformes,Troglodytidae (Wrens),,houwre 21150,issf,houwre3,House Wren (Cozumel I.),Troglodytes aedon beani,Passeriformes,Troglodytidae (Wrens),,houwre 21151,issf,bntwre1,House Wren (Brown-throated),Troglodytes aedon [brunneicollis Group],Passeriformes,Troglodytidae (Wrens),,houwre 21156,issf,houwre4,House Wren (Southern),Troglodytes aedon [musculus Group],Passeriformes,Troglodytidae (Wrens),,houwre 21175,species,houwre5,Cobb's Wren,Troglodytes cobbi,Passeriformes,Troglodytidae (Wrens),, 21176,species,socwre2,Socorro Wren,Troglodytes sissonii,Passeriformes,Troglodytidae (Wrens),, 21177,species,clawre1,Clarion Wren,Troglodytes tanneri,Passeriformes,Troglodytidae (Wrens),, 21178,species,rubwre2,Rufous-browed Wren,Troglodytes rufociliatus,Passeriformes,Troglodytidae (Wrens),, 21183,species,ochwre1,Ochraceous Wren,Troglodytes ochraceus,Passeriformes,Troglodytidae (Wrens),, 21187,species,mouwre1,Mountain Wren,Troglodytes solstitialis,Passeriformes,Troglodytidae (Wrens),, 21193,species,samwre1,Santa Marta Wren,Troglodytes monticola,Passeriformes,Troglodytidae (Wrens),, 21194,species,tepwre1,Tepui Wren,Troglodytes rufulus,Passeriformes,Troglodytidae (Wrens),, 21201,species,winwre4,Eurasian Wren,Troglodytes troglodytes,Passeriformes,Troglodytidae (Wrens),, 21202,issf,eurwre1,Eurasian Wren (Iceland),Troglodytes troglodytes islandicus,Passeriformes,Troglodytidae (Wrens),,winwre4 21203,issf,eurwre2,Eurasian Wren (Faeroe),Troglodytes troglodytes borealis,Passeriformes,Troglodytidae (Wrens),,winwre4 21204,issf,eurwre3,Eurasian Wren (Shetland),Troglodytes troglodytes zetlandicus,Passeriformes,Troglodytidae (Wrens),,winwre4 21205,issf,eurwre4,Eurasian Wren (Hebridean),Troglodytes troglodytes hebridensis,Passeriformes,Troglodytidae (Wrens),,winwre4 21206,issf,eurwre5,Eurasian Wren (Fair Isle),Troglodytes troglodytes fridariensis,Passeriformes,Troglodytidae (Wrens),,winwre4 21207,issf,eurwre6,Eurasian Wren (St. Kilda),Troglodytes troglodytes hirtensis,Passeriformes,Troglodytidae (Wrens),,winwre4 21208,issf,eurwre7,Eurasian Wren (British),Troglodytes troglodytes indigenus,Passeriformes,Troglodytidae (Wrens),,winwre4 21209,issf,eurwre8,Eurasian Wren (Eurasian),Troglodytes troglodytes [troglodytes Group],Passeriformes,Troglodytidae (Wrens),,winwre4 21229,species,pacwre1,Pacific Wren,Troglodytes pacificus,Passeriformes,Troglodytidae (Wrens),, 21230,issf,winwre1,Pacific Wren (alascensis Group),Troglodytes pacificus [alascensis Group],Passeriformes,Troglodytidae (Wrens),,pacwre1 21239,issf,winwre2,Pacific Wren (pacificus Group),Troglodytes pacificus [pacificus Group],Passeriformes,Troglodytidae (Wrens),,pacwre1 21245,species,winwre3,Winter Wren,Troglodytes hiemalis,Passeriformes,Troglodytidae (Wrens),, 21247.1,slash,winwre,Pacific/Winter Wren,Troglodytes pacificus/hiemalis,Passeriformes,Troglodytidae (Wrens),, 21247.3,species,timwre1,Timberline Wren,Thryorchilus browni,Passeriformes,Troglodytidae (Wrens),, 21248,species,sedwre,Sedge Wren,Cistothorus platensis,Passeriformes,Troglodytidae (Wrens),, 21249,issf,sedwre1,Sedge Wren (Sedge),Cistothorus platensis stellaris,Passeriformes,Troglodytidae (Wrens),,sedwre 21250,issf,sedwre2,Sedge Wren (Grass),Cistothorus platensis [elegans Group],Passeriformes,Troglodytidae (Wrens),,sedwre 21250.2,issf,sedwre6,Sedge Wren (Venezuelan),Cistothorus platensis alticola,Passeriformes,Troglodytidae (Wrens),,sedwre 21250.4,issf,sedwre7,Sedge Wren (Paramo),Cistothorus platensis aequatorialis,Passeriformes,Troglodytidae (Wrens),,sedwre 21250.6,issf,sedwre8,Sedge Wren (Junin),Cistothorus platensis graminicola,Passeriformes,Troglodytidae (Wrens),,sedwre 21250.8,issf,sedwre9,Sedge Wren (Puna),Cistothorus platensis minimus,Passeriformes,Troglodytidae (Wrens),,sedwre 21251,issf,sedwre10,Sedge Wren (Tucuman),Cistothorus platensis tucumanus,Passeriformes,Troglodytidae (Wrens),,sedwre 21268,issf,sedwre11,Sedge Wren (Pampas),Cistothorus platensis platensis/polyglottus,Passeriformes,Troglodytidae (Wrens),,sedwre 21268.2,issf,sedwre12,Sedge Wren (Austral),Cistothorus platensis hornensis/falklandicus,Passeriformes,Troglodytidae (Wrens),,sedwre 21272,species,merwre1,Merida Wren,Cistothorus meridae,Passeriformes,Troglodytidae (Wrens),, 21273,species,apowre1,Apolinar's Wren,Cistothorus apolinari,Passeriformes,Troglodytidae (Wrens),, 21276,species,marwre,Marsh Wren,Cistothorus palustris,Passeriformes,Troglodytidae (Wrens),, 21277,issf,marwre1,Marsh Wren (paludicola Group),Cistothorus palustris [paludicola Group],Passeriformes,Troglodytidae (Wrens),,marwre 21282,issf,marwre2,Marsh Wren (plesius Group),Cistothorus palustris [plesius Group],Passeriformes,Troglodytidae (Wrens),,marwre 21286,issf,marwre3,Marsh Wren (palustris Group),Cistothorus palustris [palustris Group],Passeriformes,Troglodytidae (Wrens),,marwre 21293,issf,marwre5,Marsh Wren (griseus),Cistothorus palustris griseus,Passeriformes,Troglodytidae (Wrens),,marwre 21294,issf,marwre4,Marsh Wren (tolucensis),Cistothorus palustris tolucensis,Passeriformes,Troglodytidae (Wrens),,marwre 21295,slash,y00328,Sedge/Marsh Wren,Cistothorus platensis/palustris,Passeriformes,Troglodytidae (Wrens),, 21319,species,carwre,Carolina Wren,Thryothorus ludovicianus,Passeriformes,Troglodytidae (Wrens),, 21320,issf,carwre1,Carolina Wren (Northern),Thryothorus ludovicianus [ludovicianus Group],Passeriformes,Troglodytidae (Wrens),,carwre 21325,issf,y00487,Carolina Wren (Northeast Mexico/South Texas),Thryothorus ludovicianus [berlandieri Group],Passeriformes,Troglodytidae (Wrens),,carwre 21329,issf,carwre2,Carolina Wren (White-browed),Thryothorus ludovicianus albinucha/subfulvus,Passeriformes,Troglodytidae (Wrens),,carwre 21330,species,bewwre,Bewick's Wren,Thryomanes bewickii,Passeriformes,Troglodytidae (Wrens),, 21330.05,issf,bewwre3,Bewick's Wren (bewickii),Thryomanes bewickii bewickii,Passeriformes,Troglodytidae (Wrens),,bewwre 21330.2,issf,bewwre2,Bewick's Wren (mexicanus Group),Thryomanes bewickii [mexicanus Group],Passeriformes,Troglodytidae (Wrens),,bewwre 21331,issf,bewwre1,Bewick's Wren (spilurus Group),Thryomanes bewickii [spilurus Group],Passeriformes,Troglodytidae (Wrens),,bewwre 21331.3,species,whhwre1,White-headed Wren,Campylorhynchus albobrunneus,Passeriformes,Troglodytidae (Wrens),, 21333,species,babwre1,Band-backed Wren,Campylorhynchus zonatus,Passeriformes,Troglodytidae (Wrens),, 21337,species,grbwre1,Gray-barred Wren,Campylorhynchus megalopterus,Passeriformes,Troglodytidae (Wrens),, 21338.5,species,giawre1,Giant Wren,Campylorhynchus chiapensis,Passeriformes,Troglodytidae (Wrens),, 21339,species,runwre1,Rufous-naped Wren,Campylorhynchus rufinucha,Passeriformes,Troglodytidae (Wrens),, 21339.5,issf,runwre3,Rufous-naped Wren (Sclater's),Campylorhynchus rufinucha humilis,Passeriformes,Troglodytidae (Wrens),,runwre1 21341,issf,runwre2,Rufous-naped Wren (Veracruz),Campylorhynchus rufinucha rufinucha,Passeriformes,Troglodytidae (Wrens),,runwre1 21341.5,issf,runwre4,Rufous-naped Wren (Rufous-backed),Campylorhynchus rufinucha [capistratus Group],Passeriformes,Troglodytidae (Wrens),,runwre1 21344,species,spowre1,Spotted Wren,Campylorhynchus gularis,Passeriformes,Troglodytidae (Wrens),, 21344.5,species,bouwre1,Boucard's Wren,Campylorhynchus jocosus,Passeriformes,Troglodytidae (Wrens),, 21345,species,yucwre1,Yucatan Wren,Campylorhynchus yucatanicus,Passeriformes,Troglodytidae (Wrens),, 21345.5,species,cacwre,Cactus Wren,Campylorhynchus brunneicapillus,Passeriformes,Troglodytidae (Wrens),, 21346,issf,cacwre2,Cactus Wren (brunneicapillus Group),Campylorhynchus brunneicapillus [brunneicapillus Group],Passeriformes,Troglodytidae (Wrens),,cacwre 21348.5,issf,cacwre1,Cactus Wren (affinis Group),Campylorhynchus brunneicapillus [affinis Group],Passeriformes,Troglodytidae (Wrens),,cacwre 21351,species,stbwre2,Stripe-backed Wren,Campylorhynchus nuchalis,Passeriformes,Troglodytidae (Wrens),, 21353,species,faswre1,Fasciated Wren,Campylorhynchus fasciatus,Passeriformes,Troglodytidae (Wrens),, 21354.5,species,bicwre1,Bicolored Wren,Campylorhynchus griseus,Passeriformes,Troglodytidae (Wrens),, 21358,species,thlwre1,Thrush-like Wren,Campylorhynchus turdinus,Passeriformes,Troglodytidae (Wrens),, 21360,species,sohwre1,Sooty-headed Wren,Pheugopedius spadix,Passeriformes,Troglodytidae (Wrens),, 21361.5,species,blbwre1,Black-bellied Wren,Pheugopedius fasciatoventris,Passeriformes,Troglodytidae (Wrens),, 21363.5,species,pltwre1,Plain-tailed Wren,Pheugopedius euophrys,Passeriformes,Troglodytidae (Wrens),, 21363.7,issf,pltwre2,Plain-tailed Wren (Plain-tailed),Pheugopedius euophrys [euophrys Group],Passeriformes,Troglodytidae (Wrens),,pltwre1 21363.9,issf,pltwre3,Plain-tailed Wren (Gray-browed),Pheugopedius euophrys schulenbergi,Passeriformes,Troglodytidae (Wrens),,pltwre1 21366,form,manwre1,Mantaro Wren (undescribed form),Pheugopedius [undescribed form],Passeriformes,Troglodytidae (Wrens),, 21366.5,species,incwre1,Inca Wren,Pheugopedius eisenmanni,Passeriformes,Troglodytidae (Wrens),, 21367,species,whiwre1,Whiskered Wren,Pheugopedius mystacalis,Passeriformes,Troglodytidae (Wrens),, 21371.5,species,mouwre2,Moustached Wren,Pheugopedius genibarbis,Passeriformes,Troglodytidae (Wrens),, 21373.02,species,corwre1,Coraya Wren,Pheugopedius coraya,Passeriformes,Troglodytidae (Wrens),, 21373.126,slash,y00984,Moustached/Coraya Wren,Pheugopedius genibarbis/coraya,Passeriformes,Troglodytidae (Wrens),, 21373.13,species,rubwre1,Rufous-breasted Wren,Pheugopedius rutilus,Passeriformes,Troglodytidae (Wrens),, 21373.21,species,spbwre1,Spot-breasted Wren,Pheugopedius maculipectus,Passeriformes,Troglodytidae (Wrens),, 21373.28,species,spbwre2,Speckle-breasted Wren,Pheugopedius sclateri,Passeriformes,Troglodytidae (Wrens),, 21373.29,issf,spbwre5,Speckle-breasted Wren (Colombian),Pheugopedius sclateri columbianus,Passeriformes,Troglodytidae (Wrens),,spbwre2 21373.3,issf,spbwre3,Speckle-breasted Wren (Speckle-breasted),Pheugopedius sclateri paucimaculatus,Passeriformes,Troglodytidae (Wrens),,spbwre2 21373.31,issf,spbwre4,Speckle-breasted Wren (Mara–on),Pheugopedius sclateri sclateri,Passeriformes,Troglodytidae (Wrens),,spbwre2 21373.32,species,hapwre1,Happy Wren,Pheugopedius felix,Passeriformes,Troglodytidae (Wrens),, 21373.39,species,bltwre1,Black-throated Wren,Pheugopedius atrogularis,Passeriformes,Troglodytidae (Wrens),, 21373.4,spuh,pheugo1,Pheugopedius sp.,Pheugopedius sp.,Passeriformes,Troglodytidae (Wrens),, 21373.41,species,sinwre1,Sinaloa Wren,Thryophilus sinaloa,Passeriformes,Troglodytidae (Wrens),, 21373.45,species,banwre1,Banded Wren,Thryophilus pleurostictus,Passeriformes,Troglodytidae (Wrens),, 21373.53,species,rawwre1,Rufous-and-white Wren,Thryophilus rufalbus,Passeriformes,Troglodytidae (Wrens),, 21373.59,species,antwre2,Antioquia Wren,Thryophilus sernai,Passeriformes,Troglodytidae (Wrens),, 21373.6,species,nicwre1,Niceforo's Wren,Thryophilus nicefori,Passeriformes,Troglodytidae (Wrens),, 21373.61,species,stbwre1,Stripe-breasted Wren,Cantorchilus thoracicus,Passeriformes,Troglodytidae (Wrens),, 21373.62,species,sttwre1,Stripe-throated Wren,Cantorchilus leucopogon,Passeriformes,Troglodytidae (Wrens),, 21373.65,species,plawre1,Cabanis's Wren,Cantorchilus modestus,Passeriformes,Troglodytidae (Wrens),, 21373.71,species,plawre3,Canebrake Wren,Cantorchilus zeledoni,Passeriformes,Troglodytidae (Wrens),, 21373.713,slash,y00985,Cabanis's/Canebrake Wren,Cantorchilus modestus/zeledoni,Passeriformes,Troglodytidae (Wrens),, 21373.716,species,istwre1,Isthmian Wren,Cantorchilus elutus,Passeriformes,Troglodytidae (Wrens),, 21373.719,slash,y00986,Cabanis's/Isthmian Wren,Cantorchilus modestus/elutus,Passeriformes,Troglodytidae (Wrens),, 21373.72,species,rivwre1,Riverside Wren,Cantorchilus semibadius,Passeriformes,Troglodytidae (Wrens),, 21373.73,species,baywre1,Bay Wren,Cantorchilus nigricapillus,Passeriformes,Troglodytidae (Wrens),, 21373.74,issf,baywre2,Bay Wren (Central American),Cantorchilus nigricapillus [castaneus Group],Passeriformes,Troglodytidae (Wrens),,baywre1 21373.8,issf,baywre3,Bay Wren (South American),Cantorchilus nigricapillus nigricapillus/connectens,Passeriformes,Troglodytidae (Wrens),,baywre1 21373.83,species,supwre1,Superciliated Wren,Cantorchilus superciliaris,Passeriformes,Troglodytidae (Wrens),, 21373.86,species,bubwre1,Buff-breasted Wren,Cantorchilus leucotis,Passeriformes,Troglodytidae (Wrens),, 21373.98,species,lobwre1,Long-billed Wren,Cantorchilus longirostris,Passeriformes,Troglodytidae (Wrens),, 21374.01,species,fabwre1,Fawn-breasted Wren,Cantorchilus guarayanus,Passeriformes,Troglodytidae (Wrens),, 21374.02,species,grywre1,Gray Wren,Cantorchilus griseus,Passeriformes,Troglodytidae (Wrens),, 21374.03,spuh,cantor1,Cantorchilus sp.,Cantorchilus sp.,Passeriformes,Troglodytidae (Wrens),, 21374.04,species,rufwre1,Rufous Wren,Cinnycerthia unirufa,Passeriformes,Troglodytidae (Wrens),, 21374.08,species,shawre1,Sharpe's Wren,Cinnycerthia olivascens,Passeriformes,Troglodytidae (Wrens),, 21374.11,species,perwre1,Peruvian Wren,Cinnycerthia peruana,Passeriformes,Troglodytidae (Wrens),, 21374.12,species,fulwre1,Fulvous Wren,Cinnycerthia fulva,Passeriformes,Troglodytidae (Wrens),, 21374.15,spuh,cinnyc1,Cinnycerthia sp.,Cinnycerthia sp.,Passeriformes,Troglodytidae (Wrens),, 21374.16,species,whbwre1,White-bellied Wren,Uropsila leucogastra,Passeriformes,Troglodytidae (Wrens),, 21374.17,issf,whbwre3,White-bellied Wren (Middle America),Uropsila leucogastra [leucogastra Group],Passeriformes,Troglodytidae (Wrens),,whbwre1 21374.22,issf,whbwre4,White-bellied Wren (West Mexico),Uropsila leucogastra pacifica,Passeriformes,Troglodytidae (Wrens),,whbwre1 21374.23,species,wbwwre1,White-breasted Wood-Wren,Henicorhina leucosticta,Passeriformes,Troglodytidae (Wrens),, 21374.24,issf,whbwow1,White-breasted Wood-Wren (Sclater's),Henicorhina leucosticta [prostheleuca Group],Passeriformes,Troglodytidae (Wrens),,wbwwre1 21374.29,issf,whbwow2,White-breasted Wood-Wren (Cherrie's),Henicorhina leucosticta pittieri/costaricensis,Passeriformes,Troglodytidae (Wrens),,wbwwre1 21374.33,issf,whbwow4,White-breasted Wood-Wren (Choco),Henicorhina leucosticta inornata/eucharis,Passeriformes,Troglodytidae (Wrens),,wbwwre1 21374.36,issf,whbwow3,White-breasted Wood-Wren (Black-capped),Henicorhina leucosticta [leucosticta Group],Passeriformes,Troglodytidae (Wrens),,wbwwre1 21374.39,species,bwwwre1,Bar-winged Wood-Wren,Henicorhina leucoptera,Passeriformes,Troglodytidae (Wrens),, 21374.4,species,gbwwre1,Gray-breasted Wood-Wren,Henicorhina leucophrys,Passeriformes,Troglodytidae (Wrens),, 21374.41,issf,gybwow1,Gray-breasted Wood-Wren (Central American),Henicorhina leucophrys [mexicana Group],Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.42,issf,gybwow2,Gray-breasted Wood-Wren (Choco),Henicorhina leucophrys brunneiceps,Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.44,issf,gybwow4,Gray-breasted Wood-Wren (bangsi),Henicorhina leucophrys bangsi,Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.45,issf,gybwow5,Gray-breasted Wood-Wren (Perija),Henicorhina leucophrys manastarae,Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.46,issf,gybwow6,Gray-breasted Wood-Wren (meridana),Henicorhina leucophrys meridana,Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.47,issf,gybwow7,Gray-breasted Wood-Wren (venezuelensis),Henicorhina leucophrys venezuelensis,Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.475,issf,gybwow9,Gray-breasted Wood-Wren (hilaris),Henicorhina leucophrys hilaris,Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.48,issf,gybwow8,Gray-breasted Wood-Wren (Andean),Henicorhina leucophrys leucophrys/boliviana,Passeriformes,Troglodytidae (Wrens),,gbwwre1 21374.49,species,gybwow3,Hermit Wood-Wren,Henicorhina anachoreta,Passeriformes,Troglodytidae (Wrens),, 21374.54,species,munwow1,Munchique Wood-Wren,Henicorhina negreti,Passeriformes,Troglodytidae (Wrens),, 21374.545,spuh,wood-w1,wood-wren sp.,Henicorhina sp.,Passeriformes,Troglodytidae (Wrens),, 21374.55,species,chbwre1,Chestnut-breasted Wren,Cyphorhinus thoracicus,Passeriformes,Troglodytidae (Wrens),, 21374.56,issf,chbwre2,Chestnut-breasted Wren (Northern),Cyphorhinus thoracicus dichrous,Passeriformes,Troglodytidae (Wrens),,chbwre1 21374.57,issf,chbwre3,Chestnut-breasted Wren (Southern),Cyphorhinus thoracicus thoracicus,Passeriformes,Troglodytidae (Wrens),,chbwre1 21374.58,species,sonwre1,Song Wren,Cyphorhinus phaeocephalus,Passeriformes,Troglodytidae (Wrens),, 21374.64,species,muswre2,Musician Wren,Cyphorhinus arada,Passeriformes,Troglodytidae (Wrens),, 21374.65,issf,muswre1,Musician Wren (Imeri),Cyphorhinus arada transfluvialis,Passeriformes,Troglodytidae (Wrens),,muswre2 21374.66,issf,muswre3,Musician Wren (Gray-eared),Cyphorhinus arada salvini,Passeriformes,Troglodytidae (Wrens),,muswre2 21374.67,issf,muswre4,Musician Wren (Musician),Cyphorhinus arada arada,Passeriformes,Troglodytidae (Wrens),,muswre2 21374.68,issf,muswre5,Musician Wren (Gray-flanked),Cyphorhinus arada griseolateralis,Passeriformes,Troglodytidae (Wrens),,muswre2 21374.69,issf,muswre6,Musician Wren (Rondonia),Cyphorhinus arada interpositus,Passeriformes,Troglodytidae (Wrens),,muswre2 21374.7,issf,muswre7,Musician Wren (Ferruginous),Cyphorhinus arada modulator,Passeriformes,Troglodytidae (Wrens),,muswre2 21374.73,spuh,wren1,wren sp.,Troglodytidae sp.,Passeriformes,Troglodytidae (Wrens),, 21377,species,colgna1,Collared Gnatwren,Microbates collaris,Passeriformes,Polioptilidae (Gnatcatchers),Gnatcatchers, 21381,species,tafgna1,Tawny-faced Gnatwren,Microbates cinereiventris,Passeriformes,Polioptilidae (Gnatcatchers),, 21386,species,lobgna1,Long-billed Gnatwren,Ramphocaenus melanurus,Passeriformes,Polioptilidae (Gnatcatchers),, 21387,issf,lobgna3,Long-billed Gnatwren (rufiventris),Ramphocaenus melanurus [rufiventris Group],Passeriformes,Polioptilidae (Gnatcatchers),,lobgna1 21392,issf,lobgna2,Long-billed Gnatwren (Long-billed),Ramphocaenus melanurus [melanurus Group],Passeriformes,Polioptilidae (Gnatcatchers),,lobgna1 21402,issf,lobgna4,Long-billed Gnatwren (Chattering),Ramphocaenus melanurus sticturus/obscurus,Passeriformes,Polioptilidae (Gnatcatchers),,lobgna1 21403,species,buggna,Blue-gray Gnatcatcher,Polioptila caerulea,Passeriformes,Polioptilidae (Gnatcatchers),, 21404,issf,buggna1,Blue-gray Gnatcatcher (caerulea),Polioptila caerulea caerulea,Passeriformes,Polioptilidae (Gnatcatchers),,buggna 21405,issf,buggna2,Blue-gray Gnatcatcher (obscura Group),Polioptila caerulea [obscura Group],Passeriformes,Polioptilidae (Gnatcatchers),,buggna 21412,issf,buggna3,Blue-gray Gnatcatcher (Cozumel),Polioptila caerulea cozumelae,Passeriformes,Polioptilidae (Gnatcatchers),,buggna 21413,species,cubgna1,Cuban Gnatcatcher,Polioptila lembeyei,Passeriformes,Polioptilidae (Gnatcatchers),, 21414,species,calgna,California Gnatcatcher,Polioptila californica,Passeriformes,Polioptilidae (Gnatcatchers),, 21415,species,bktgna,Black-tailed Gnatcatcher,Polioptila melanura,Passeriformes,Polioptilidae (Gnatcatchers),, 21421,species,bkcgna,Black-capped Gnatcatcher,Polioptila nigriceps,Passeriformes,Polioptilidae (Gnatcatchers),, 21423.5,hybrid,x00643,Black-tailed x Black-capped Gnatcatcher (hybrid),Polioptila melanura x nigriceps,Passeriformes,Polioptilidae (Gnatcatchers),, 21424,species,whlgna1,White-lored Gnatcatcher,Polioptila albiloris,Passeriformes,Polioptilidae (Gnatcatchers),, 21428,species,trogna1,Tropical Gnatcatcher,Polioptila plumbea,Passeriformes,Polioptilidae (Gnatcatchers),, 21429,issf,trogna2,Tropical Gnatcatcher (White-browed),Polioptila plumbea [bilineata Group],Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 21437,issf,trogna3,Tropical Gnatcatcher (Mara–on),Polioptila plumbea maior,Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 21438,issf,trogna4,Tropical Gnatcatcher (Tropical),Polioptila plumbea [plumbea Group],Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 21444,species,crbgna1,Creamy-bellied Gnatcatcher,Polioptila lactea,Passeriformes,Polioptilidae (Gnatcatchers),, 21445,species,guigna1,Guianan Gnatcatcher,Polioptila guianensis,Passeriformes,Polioptilidae (Gnatcatchers),, 21446,issf,guigna2,Guianan Gnatcatcher (Rio Negro),Polioptila guianensis facilis,Passeriformes,Polioptilidae (Gnatcatchers),,guigna1 21447,issf,guigna3,Guianan Gnatcatcher (Guianan),Polioptila guianensis guianensis,Passeriformes,Polioptilidae (Gnatcatchers),,guigna1 21448,issf,guigna4,Guianan Gnatcatcher (Para),Polioptila guianensis paraensis,Passeriformes,Polioptilidae (Gnatcatchers),,guigna1 21448.5,issf,inagna1,Guianan Gnatcatcher (Inambari),Polioptila guianensis attenboroughi,Passeriformes,Polioptilidae (Gnatcatchers),,guigna1 21449,species,iqugna1,Iquitos Gnatcatcher,Polioptila clementsi,Passeriformes,Polioptilidae (Gnatcatchers),, 21450,species,sltgna1,Slate-throated Gnatcatcher,Polioptila schistaceigula,Passeriformes,Polioptilidae (Gnatcatchers),, 21451,species,masgna1,Masked Gnatcatcher,Polioptila dumicola,Passeriformes,Polioptilidae (Gnatcatchers),, 21455,spuh,gnatca1,gnatcatcher sp.,Polioptila sp.,Passeriformes,Polioptilidae (Gnatcatchers),, 21456,species,whtdip1,White-throated Dipper,Cinclus cinclus,Passeriformes,Cinclidae (Dippers),Dippers, 21470,species,brodip1,Brown Dipper,Cinclus pallasii,Passeriformes,Cinclidae (Dippers),, 21475,species,amedip,American Dipper,Cinclus mexicanus,Passeriformes,Cinclidae (Dippers),, 21476,issf,amedip1,American Dipper (Northern),Cinclus mexicanus [mexicanus Group],Passeriformes,Cinclidae (Dippers),,amedip 21480,issf,amedip2,American Dipper (Costa Rican),Cinclus mexicanus ardesiacus,Passeriformes,Cinclidae (Dippers),,amedip 21481,species,whcdip1,White-capped Dipper,Cinclus leucocephalus,Passeriformes,Cinclidae (Dippers),, 21482,issf,whcdip2,White-capped Dipper (Santa Marta),Cinclus leucocephalus rivularis,Passeriformes,Cinclidae (Dippers),,whcdip1 21483,issf,whcdip3,White-capped Dipper (White-bellied),Cinclus leucocephalus leuconotus,Passeriformes,Cinclidae (Dippers),,whcdip1 21484,issf,whcdip4,White-capped Dipper (White-capped),Cinclus leucocephalus leucocephalus,Passeriformes,Cinclidae (Dippers),,whcdip1 21485,species,rutdip1,Rufous-throated Dipper,Cinclus schulzi,Passeriformes,Cinclidae (Dippers),, 21485.001,species,somgre1,Sombre Greenbul,Andropadus importunus,Passeriformes,Pycnonotidae (Bulbuls),Bulbuls, 21485.006,species,slbgre1,Slender-billed Greenbul,Stelgidillas gracilirostris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.009,species,golgre1,Golden Greenbul,Calyptocichla serinus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.01,species,blcbul1,Black-collared Bulbul,Neolestes torquatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.011,species,combri2,Red-tailed Bristlebill,Bleda syndactylus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.015,species,gntbri1,Green-tailed Bristlebill,Bleda eximius,Passeriformes,Pycnonotidae (Bulbuls),, 21485.016,species,lesbri2,Lesser Bristlebill,Bleda notatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.017,issf,lesbri1,Lesser Bristlebill (Brown-eyed),Bleda notatus notatus,Passeriformes,Pycnonotidae (Bulbuls),,lesbri2 21485.018,issf,lesbri3,Lesser Bristlebill (Yellow-eyed),Bleda notatus ugandae,Passeriformes,Pycnonotidae (Bulbuls),,lesbri2 21485.019,species,gyhbri1,Gray-headed Bristlebill,Bleda canicapillus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.02,spuh,bristl1,bristlebill sp.,Bleda sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21485.022,species,camgre2,Cameroon Mountain Greenbul,Arizelocichla montana,Passeriformes,Pycnonotidae (Bulbuls),, 21485.023,species,shegre1,Shelley's Greenbul,Arizelocichla masukuensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.024,issf,shebul1,Shelley's Greenbul (Kakamega),Arizelocichla masukuensis kakamegae,Passeriformes,Pycnonotidae (Bulbuls),,shegre1 21485.0245,issf,shegre2,Shelley's Greenbul (Shelley's),Arizelocichla masukuensis masukuensis/roehli,Passeriformes,Pycnonotidae (Bulbuls),,shegre1 21485.027,species,wesmog1,Western Mountain-Greenbul,Arizelocichla tephrolaema,Passeriformes,Pycnonotidae (Bulbuls),, 21485.031,species,easmog1,Eastern Mountain-Greenbul,Arizelocichla nigriceps,Passeriformes,Pycnonotidae (Bulbuls),, 21485.032,issf,easmog5,Eastern Mountain-Greenbul (Olive-breasted),Arizelocichla nigriceps kikuyuensis,Passeriformes,Pycnonotidae (Bulbuls),,easmog1 21485.035,issf,easmog2,Eastern Mountain-Greenbul (Mountain),Arizelocichla nigriceps [nigriceps Group],Passeriformes,Pycnonotidae (Bulbuls),,easmog1 21485.04,issf,easmog6,Eastern Mountain-Greenbul (Uluguru),Arizelocichla nigriceps neumanni,Passeriformes,Pycnonotidae (Bulbuls),,easmog1 21485.041,issf,easmog3,Eastern Mountain-Greenbul (Yellow-throated),Arizelocichla nigriceps chlorigula,Passeriformes,Pycnonotidae (Bulbuls),,easmog1 21485.042,issf,easmog4,Eastern Mountain-Greenbul (Black-browed),Arizelocichla nigriceps fusciceps,Passeriformes,Pycnonotidae (Bulbuls),,easmog1 21485.043,species,stcgre1,Stripe-cheeked Greenbul,Arizelocichla milanjensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.044,issf,stcgre4,Stripe-cheeked Greenbul (Stripe-faced),Arizelocichla milanjensis striifacies,Passeriformes,Pycnonotidae (Bulbuls),,stcgre1 21485.045,issf,stcgre3,Stripe-cheeked Greenbul (Olive-headed),Arizelocichla milanjensis olivaceiceps,Passeriformes,Pycnonotidae (Bulbuls),,stcgre1 21485.046,issf,stcgre2,Stripe-cheeked Greenbul (Stripe-cheeked),Arizelocichla milanjensis milanjensis,Passeriformes,Pycnonotidae (Bulbuls),,stcgre1 21485.047,spuh,arizel1,Arizelocichla sp.,Arizelocichla sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21485.048,species,simgre1,Simple Greenbul,Chlorocichla simplex,Passeriformes,Pycnonotidae (Bulbuls),, 21485.049,species,yengre1,Yellow-necked Greenbul,Chlorocichla falkensteini,Passeriformes,Pycnonotidae (Bulbuls),, 21485.052,species,yebgre1,Yellow-bellied Greenbul,Chlorocichla flaviventris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.056,species,joygre1,Joyful Greenbul,Chlorocichla laetissima,Passeriformes,Pycnonotidae (Bulbuls),, 21485.059,species,prigre1,Prigogine's Greenbul,Chlorocichla prigoginei,Passeriformes,Pycnonotidae (Bulbuls),, 21485.06,species,hongre1,Honeyguide Greenbul,Baeopogon indicator,Passeriformes,Pycnonotidae (Bulbuls),, 21485.063,species,sjogre1,Sjšstedt's Greenbul,Baeopogon clamans,Passeriformes,Pycnonotidae (Bulbuls),, 21485.064,species,yetgre1,Yellow-throated Greenbul,Atimastillas flavicollis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.065,issf,yetgre2,Yellow-throated Greenbul (flavicollis),Atimastillas flavicollis flavicollis,Passeriformes,Pycnonotidae (Bulbuls),,yetgre1 21485.066,issf,yetgre3,Yellow-throated Greenbul (soror),Atimastillas flavicollis soror,Passeriformes,Pycnonotidae (Bulbuls),,yetgre1 21485.067,issf,yetgre4,Yellow-throated Greenbul (flavigula),Atimastillas flavicollis flavigula,Passeriformes,Pycnonotidae (Bulbuls),,yetgre1 21485.07,species,spogre1,Spotted Greenbul,Ixonotus guttatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.071,species,swagre1,Swamp Greenbul,Thescelocichla leucopleura,Passeriformes,Pycnonotidae (Bulbuls),, 21485.072,species,retgre1,Red-tailed Greenbul,Criniger calurus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.076,species,wesbeg1,Western Bearded-Greenbul,Criniger barbatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.079,species,easbeg1,Eastern Bearded-Greenbul,Criniger chloronotus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.08,species,yebgre3,Yellow-bearded Greenbul,Criniger olivaceus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.081,species,whbgre1,White-bearded Greenbul,Criniger ndussumensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.0815,slash,y00904,Red-tailed/White-bearded Greenbul,Criniger calurus/ndussumensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.0817,spuh,crinig1,Criniger sp.,Criniger sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21485.082,species,grygre1,Gray Greenbul,Eurillas gracilis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.086,species,ansgre1,Ansorge's Greenbul,Eurillas ansorgei,Passeriformes,Pycnonotidae (Bulbuls),, 21485.089,species,plagre2,Plain Greenbul,Eurillas curvirostris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.09,issf,plagre1,Plain Greenbul (leonina),Eurillas curvirostris leonina,Passeriformes,Pycnonotidae (Bulbuls),,plagre2 21485.091,issf,plagre3,Plain Greenbul (curvirostris),Eurillas curvirostris curvirostris,Passeriformes,Pycnonotidae (Bulbuls),,plagre2 21485.092,species,yewgre1,Yellow-whiskered Greenbul,Eurillas latirostris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.095,species,litgre2,Little Greenbul,Eurillas virens,Passeriformes,Pycnonotidae (Bulbuls),, 21485.103,spuh,eurill1,Eurillas sp.,Eurillas sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21485.104,species,leaf-l1,Leaf-love,Phyllastrephus scandens,Passeriformes,Pycnonotidae (Bulbuls),, 21485.107,species,terbro1,Terrestrial Brownbul,Phyllastrephus terrestris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.111,species,norbro1,Northern Brownbul,Phyllastrephus strepitans,Passeriformes,Pycnonotidae (Bulbuls),, 21485.112,species,paogre1,Pale-olive Greenbul,Phyllastrephus fulviventris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.113,species,gyogre1,Gray-olive Greenbul,Phyllastrephus cerviniventris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.114,species,baugre1,Baumann's Greenbul,Phyllastrephus baumanni,Passeriformes,Pycnonotidae (Bulbuls),, 21485.115,species,toogre1,Toro Olive-Greenbul,Phyllastrephus hypochloris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.116,species,fisgre1,Fischer's Greenbul,Phyllastrephus fischeri,Passeriformes,Pycnonotidae (Bulbuls),, 21485.117,species,cabgre1,Cabanis's Greenbul,Phyllastrephus cabanisi,Passeriformes,Pycnonotidae (Bulbuls),, 21485.118,issf,cabgre3,Cabanis's Greenbul (Placid),Phyllastrephus cabanisi placidus,Passeriformes,Pycnonotidae (Bulbuls),,cabgre1 21485.119,issf,cabgre2,Cabanis's Greenbul (Cabanis's),Phyllastrephus cabanisi [cabanisi Group],Passeriformes,Pycnonotidae (Bulbuls),,cabgre1 21485.126,species,caogre1,Cameroon Olive-Greenbul,Phyllastrephus poensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.127,species,ictgre1,Icterine Greenbul,Phyllastrephus icterinus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.128,species,libgre1,Liberian Greenbul,Phyllastrephus leucolepis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.129,species,sasgre1,Sassi's Greenbul,Phyllastrephus lorenzi,Passeriformes,Pycnonotidae (Bulbuls),, 21485.13,species,xavgre1,Xavier's Greenbul,Phyllastrephus xavieri,Passeriformes,Pycnonotidae (Bulbuls),, 21485.132,slash,y00905,Icterine/Xavier's Greenbul,Phyllastrephus icterinus/xavieri,Passeriformes,Pycnonotidae (Bulbuls),, 21485.133,species,whtgre2,White-throated Greenbul,Phyllastrephus albigularis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.134,issf,whtgre1,White-throated Greenbul (White-throated),Phyllastrephus albigularis albigularis,Passeriformes,Pycnonotidae (Bulbuls),,whtgre2 21485.135,issf,whtgre4,White-throated Greenbul (Green-crowned),Phyllastrephus albigularis viridiceps,Passeriformes,Pycnonotidae (Bulbuls),,whtgre2 21485.136,species,yesbul1,Yellow-streaked Greenbul,Phyllastrephus flavostriatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.137,issf,yesgre2,Yellow-streaked Greenbul (Sharpe's),Phyllastrephus flavostriatus alfredi,Passeriformes,Pycnonotidae (Bulbuls),,yesbul1 21485.138,issf,yesgre1,Yellow-streaked Greenbul (Yellow-streaked),Phyllastrephus flavostriatus [flavostriatus Group],Passeriformes,Pycnonotidae (Bulbuls),,yesbul1 21485.145,species,gyhgre1,Gray-headed Greenbul,Phyllastrephus poliocephalus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.146,species,tingre1,Tiny Greenbul,Phyllastrephus debilis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.149,species,usabul1,Usambara Greenbul,Phyllastrephus albigula,Passeriformes,Pycnonotidae (Bulbuls),, 21485.15,spuh,phylla1,Phyllastrephus sp.,Phyllastrephus sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21485.151,spuh,greenb1,greenbul sp.,Pycnonotidae sp. (greenbul sp.),Passeriformes,Pycnonotidae (Bulbuls),, 21485.152,species,crefin1,Crested Finchbill,Spizixos canifrons,Passeriformes,Pycnonotidae (Bulbuls),, 21485.155,species,colfin1,Collared Finchbill,Spizixos semitorques,Passeriformes,Pycnonotidae (Bulbuls),, 21485.158,species,bawbul2,Black-and-white Bulbul,Pycnonotus melanoleucos,Passeriformes,Pycnonotidae (Bulbuls),, 21485.159,species,pubbul1,Puff-backed Bulbul,Pycnonotus eutilotus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.16,species,blhbul1,Black-headed Bulbul,Pycnonotus atriceps,Passeriformes,Pycnonotidae (Bulbuls),, 21485.166,species,andbul1,Andaman Bulbul,Pycnonotus fuscoflavescens,Passeriformes,Pycnonotidae (Bulbuls),, 21485.167,species,yewbul1,Yellow-wattled Bulbul,Pycnonotus urostictus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.173,species,sthbul1,Straw-headed Bulbul,Pycnonotus zeylanicus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.174,species,strbul2,Striated Bulbul,Pycnonotus striatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.178,species,crsbul1,Cream-striped Bulbul,Pycnonotus leucogrammicus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.179,species,spnbul1,Spot-necked Bulbul,Pycnonotus tympanistrigus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.18,species,gyhbul1,Gray-headed Bulbul,Pycnonotus priocephalus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.182,species,bkcbul1,Flame-throated Bulbul,Pycnonotus gularis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.183,species,bkcbul2,Black-capped Bulbul,Pycnonotus melanicterus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.184,species,blcbul2,Black-crested Bulbul,Pycnonotus flaviventris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.193,species,bkcbul3,Ruby-throated Bulbul,Pycnonotus dispar,Passeriformes,Pycnonotidae (Bulbuls),, 21485.194,species,bkcbul4,Bornean Bulbul,Pycnonotus montis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.195,species,stybul1,Styan's Bulbul,Pycnonotus taivanus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.196,species,scbbul1,Scaly-breasted Bulbul,Pycnonotus squamatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.2,species,gybbul1,Gray-bellied Bulbul,Pycnonotus cyaniventris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.203,species,revbul,Red-vented Bulbul,Pycnonotus cafer,Passeriformes,Pycnonotidae (Bulbuls),, 21485.213,species,rewbul,Red-whiskered Bulbul,Pycnonotus jocosus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.2225,slash,y00810,Red-vented/Red-whiskered Bulbul,Pycnonotus cafer/jocosus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.223,species,brbbul1,Brown-breasted Bulbul,Pycnonotus xanthorrhous,Passeriformes,Pycnonotidae (Bulbuls),, 21485.226,species,livbul1,Light-vented Bulbul,Pycnonotus sinensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.228,issf,livbul2,Light-vented Bulbul (sinensis),Pycnonotus sinensis sinensis,Passeriformes,Pycnonotidae (Bulbuls),,livbul1 21485.229,issf,livbul3,Light-vented Bulbul (hainanus),Pycnonotus sinensis hainanus,Passeriformes,Pycnonotidae (Bulbuls),,livbul1 21485.23,issf,livbul4,Light-vented Bulbul (formosae/orii),Pycnonotus sinensis formosae/orii,Passeriformes,Pycnonotidae (Bulbuls),,livbul1 21485.2315,hybrid,x00744,Styan's x Light-vented Bulbul (hybrid),Pycnonotus taivanus x sinensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.2317,slash,y00987,Styan's/Light-vented Bulbul,Pycnonotus taivanus/sinensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.232,species,combul2,Common Bulbul,Pycnonotus barbatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.233,issf,combul3,Common Bulbul (Common),Pycnonotus barbatus [barbatus Group],Passeriformes,Pycnonotidae (Bulbuls),,combul2 21485.239,issf,combul5,Common Bulbul (Somali),Pycnonotus barbatus somaliensis,Passeriformes,Pycnonotidae (Bulbuls),,combul2 21485.24,issf,combul4,Common Bulbul (Dodson's),Pycnonotus barbatus dodsoni,Passeriformes,Pycnonotidae (Bulbuls),,combul2 21485.241,issf,combul6,Common Bulbul (Dark-capped),Pycnonotus barbatus [tricolor Group],Passeriformes,Pycnonotidae (Bulbuls),,combul2 21485.244,species,blfbul1,Black-fronted Bulbul,Pycnonotus nigricans,Passeriformes,Pycnonotidae (Bulbuls),, 21485.247,species,capbul1,Cape Bulbul,Pycnonotus capensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.248,species,whsbul1,White-spectacled Bulbul,Pycnonotus xanthopygos,Passeriformes,Pycnonotidae (Bulbuls),, 21485.249,species,whebul1,White-eared Bulbul,Pycnonotus leucotis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.25,species,whcbul2,Himalayan Bulbul,Pycnonotus leucogenys,Passeriformes,Pycnonotidae (Bulbuls),, 21485.255,species,sohbul1,Sooty-headed Bulbul,Pycnonotus aurigaster,Passeriformes,Pycnonotidae (Bulbuls),, 21485.265,species,blwbul1,Blue-wattled Bulbul,Pycnonotus nieuwenhuisii,Passeriformes,Pycnonotidae (Bulbuls),, 21485.268,species,orsbul1,Orange-spotted Bulbul,Pycnonotus bimaculatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.2685,issf,orsbul2,Orange-spotted Bulbul (Aceh),Pycnonotus bimaculatus snouckaerti,Passeriformes,Pycnonotidae (Bulbuls),,orsbul1 21485.269,issf,orsbul3,Orange-spotted Bulbul (Orange-spotted),Pycnonotus bimaculatus bimaculatus/tenggerensis,Passeriformes,Pycnonotidae (Bulbuls),,orsbul1 21485.272,species,sttbul1,Stripe-throated Bulbul,Pycnonotus finlaysoni,Passeriformes,Pycnonotidae (Bulbuls),, 21485.2723,issf,sttbul2,Stripe-throated Bulbul (Pale-eyed),Pycnonotus finlaysoni davisoni,Passeriformes,Pycnonotidae (Bulbuls),,sttbul1 21485.2725,issf,sttbul3,Stripe-throated Bulbul (Stripe-throated),Pycnonotus finlaysoni finlaysoni/eous,Passeriformes,Pycnonotidae (Bulbuls),,sttbul1 21485.276,species,yetbul1,Yellow-throated Bulbul,Pycnonotus xantholaemus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.277,species,yeebul1,Yellow-eared Bulbul,Pycnonotus penicillatus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.278,species,flabul1,Flavescent Bulbul,Pycnonotus flavescens,Passeriformes,Pycnonotidae (Bulbuls),, 21485.2785,issf,flabul2,Flavescent Bulbul (Flavescent),Pycnonotus flavescens [flavescens Group],Passeriformes,Pycnonotidae (Bulbuls),,flabul1 21485.282,issf,flabul3,Flavescent Bulbul (Pale-faced),Pycnonotus flavescens leucops,Passeriformes,Pycnonotidae (Bulbuls),,flabul1 21485.283,species,whbbul2,White-browed Bulbul,Pycnonotus luteolus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.286,species,yevbul1,Yellow-vented Bulbul,Pycnonotus goiavier,Passeriformes,Pycnonotidae (Bulbuls),, 21485.297,species,olwbul1,Olive-winged Bulbul,Pycnonotus plumosus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.305,species,asfbul1,Ashy-fronted Bulbul,Pycnonotus cinereifrons,Passeriformes,Pycnonotidae (Bulbuls),, 21485.3051,species,ayebul1,Ayeyarwady Bulbul,Pycnonotus blanfordi,Passeriformes,Pycnonotidae (Bulbuls),, 21485.3055,species,stebul2,Streak-eared Bulbul,Pycnonotus conradi,Passeriformes,Pycnonotidae (Bulbuls),, 21485.31,species,crvbul1,Cream-vented Bulbul,Pycnonotus simplex,Passeriformes,Pycnonotidae (Bulbuls),, 21485.316,species,reebul1,Red-eyed Bulbul,Pycnonotus brunneus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.319,species,spebul1,Spectacled Bulbul,Pycnonotus erythropthalmos,Passeriformes,Pycnonotidae (Bulbuls),, 21485.322,species,bafbul1,Bare-faced Bulbul,Pycnonotus hualon,Passeriformes,Pycnonotidae (Bulbuls),, 21485.323,spuh,pycnon1,Pycnonotus sp.,Pycnonotus sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21485.324,species,habbul1,Hairy-backed Bulbul,Tricholestes criniger,Passeriformes,Pycnonotidae (Bulbuls),, 21485.328,species,hobbul1,Hook-billed Bulbul,Setornis criniger,Passeriformes,Pycnonotidae (Bulbuls),, 21485.329,species,finbul1,Finsch's Bulbul,Alophoixus finschii,Passeriformes,Pycnonotidae (Bulbuls),, 21485.33,species,whtbul1,White-throated Bulbul,Alophoixus flaveolus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.333,species,putbul1,Puff-throated Bulbul,Alophoixus pallidus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.334,issf,putbul2,Puff-throated Bulbul (Gray-crowned),Alophoixus pallidus griseiceps,Passeriformes,Pycnonotidae (Bulbuls),,putbul1 21485.335,issf,putbul3,Puff-throated Bulbul (Puff-throated),Alophoixus pallidus [pallidus Group],Passeriformes,Pycnonotidae (Bulbuls),,putbul1 21485.341,species,ochbul1,Ochraceous Bulbul,Alophoixus ochraceus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.342,issf,ochbul2,Ochraceous Bulbul (Ochraceous),Alophoixus ochraceus [ochraceus Group],Passeriformes,Pycnonotidae (Bulbuls),,ochbul1 21485.343,issf,ochbul3,Ochraceous Bulbul (Chestnut-vented),Alophoixus ochraceus ruficrissus/fowleri,Passeriformes,Pycnonotidae (Bulbuls),,ochbul1 21485.35,species,gycbul1,Gray-cheeked Bulbul,Alophoixus bres,Passeriformes,Pycnonotidae (Bulbuls),, 21485.351,issf,gycbul2,Gray-cheeked Bulbul (Gray-cheeked),Alophoixus bres tephrogenys/gutturalis,Passeriformes,Pycnonotidae (Bulbuls),,gycbul1 21485.352,issf,gycbul3,Gray-cheeked Bulbul (Brown-cheeked),Alophoixus bres bres/balicus,Passeriformes,Pycnonotidae (Bulbuls),,gycbul1 21485.355,species,gytbul1,Gray-throated Bulbul,Alophoixus frater,Passeriformes,Pycnonotidae (Bulbuls),, 21485.356,species,yebbul2,Yellow-bellied Bulbul,Alophoixus phaeocephalus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.365,species,sangob1,Sangihe Golden-Bulbul,Alophoixus platenae,Passeriformes,Pycnonotidae (Bulbuls),, 21485.366,species,toggob1,Togian Golden-Bulbul,Alophoixus aureus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.367,species,sulgob1,Sula Golden-Bulbul,Alophoixus longirostris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.3673,issf,sulgob2,Sula Golden-Bulbul (Banggai),Alophoixus longirostris harterti,Passeriformes,Pycnonotidae (Bulbuls),,sulgob1 21485.3676,issf,sulgob3,Sula Golden-Bulbul (Sula),Alophoixus longirostris longirostris,Passeriformes,Pycnonotidae (Bulbuls),,sulgob1 21485.369,species,halgob1,Halmahera Golden-Bulbul,Alophoixus chloris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.37,species,obigob1,Obi Golden-Bulbul,Alophoixus lucasi,Passeriformes,Pycnonotidae (Bulbuls),, 21485.371,species,golbul4,Buru Golden-Bulbul,Alophoixus mystacalis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.3715,species,golbul3,Seram Golden-Bulbul,Alophoixus affinis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.3716,species,subbul1,Sulphur-bellied Bulbul,Iole palawanensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.3717,species,buvbul1,Buff-vented Bulbul,Iole crypta,Passeriformes,Pycnonotidae (Bulbuls),, 21485.3718,species,chabul1,Charlotte's Bulbul,Iole charlottae,Passeriformes,Pycnonotidae (Bulbuls),, 21485.375,species,gyebul1,Gray-eyed Bulbul,Iole propinqua,Passeriformes,Pycnonotidae (Bulbuls),, 21485.376,issf,gyebul2,Gray-eyed Bulbul (Gray-eyed),Iole propinqua [propinqua Group],Passeriformes,Pycnonotidae (Bulbuls),,gyebul1 21485.377,issf,gyebul3,Gray-eyed Bulbul (innectens),Iole propinqua innectens,Passeriformes,Pycnonotidae (Bulbuls),,gyebul1 21485.378,species,cacbul1,Cachar Bulbul,Iole cacharensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.379,species,olibul1,Olive Bulbul,Iole viridescens,Passeriformes,Pycnonotidae (Bulbuls),, 21485.38,issf,olibul2,Olive Bulbul (Olive),Iole viridescens viridescens/lekhakuni,Passeriformes,Pycnonotidae (Bulbuls),,olibul1 21485.381,issf,olibul3,Olive Bulbul (Baker's),Iole viridescens cinnamomeoventris,Passeriformes,Pycnonotidae (Bulbuls),,olibul1 21485.384,species,yebbul3,Yellow-browed Bulbul,Iole indica,Passeriformes,Pycnonotidae (Bulbuls),, 21485.385,spuh,iole1,Iole sp.,Iole sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21485.388,species,madbul1,Madagascar Bulbul,Hypsipetes madagascariensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.392,species,seybul1,Seychelles Bulbul,Hypsipetes crassirostris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.393,species,combul1,Grand Comoro Bulbul,Hypsipetes parvirostris,Passeriformes,Pycnonotidae (Bulbuls),, 21485.394,species,mohbul1,Moheli Bulbul,Hypsipetes moheliensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.395,species,reubul1,Reunion Bulbul,Hypsipetes borbonicus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.396,species,maubul1,Mauritius Bulbul,Hypsipetes olivaceus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.397,species,blabul1,Black Bulbul,Hypsipetes leucocephalus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.398,issf,blkbul1,Black Bulbul (psaroides Group),Hypsipetes leucocephalus [psaroides Group],Passeriformes,Pycnonotidae (Bulbuls),,blabul1 21485.4005,issf,blkbul2,Black Bulbul (Black),Hypsipetes leucocephalus sinensis/ambiens,Passeriformes,Pycnonotidae (Bulbuls),,blabul1 21485.403,issf,blkbul3,Black Bulbul (leucocephalus Group),Hypsipetes leucocephalus [leucocephalus Group],Passeriformes,Pycnonotidae (Bulbuls),,blabul1 21485.407,issf,blkbul4,Black Bulbul (perniger),Hypsipetes leucocephalus perniger,Passeriformes,Pycnonotidae (Bulbuls),,blabul1 21485.408,issf,blkbul5,Black Bulbul (Gray-winged),Hypsipetes leucocephalus nigerrimus,Passeriformes,Pycnonotidae (Bulbuls),,blabul1 21485.409,species,sqtbul1,Square-tailed Bulbul,Hypsipetes ganeesa,Passeriformes,Pycnonotidae (Bulbuls),, 21485.41,issf,sqtbul2,Square-tailed Bulbul (Indian),Hypsipetes ganeesa ganeesa,Passeriformes,Pycnonotidae (Bulbuls),,sqtbul1 21485.411,issf,sqtbul3,Square-tailed Bulbul (Sri Lanka),Hypsipetes ganeesa humii,Passeriformes,Pycnonotidae (Bulbuls),,sqtbul1 21485.412,species,nicbul2,Nicobar Bulbul,Hypsipetes virescens,Passeriformes,Pycnonotidae (Bulbuls),, 21485.413,species,whhbul1,White-headed Bulbul,Hypsipetes thompsoni,Passeriformes,Pycnonotidae (Bulbuls),, 21485.414,species,brebul1,Brown-eared Bulbul,Hypsipetes amaurotis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.429,species,visbul1,Visayan Bulbul,Hypsipetes guimarasensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.43,species,zambul1,Zamboanga Bulbul,Hypsipetes rufigularis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.431,species,yelbul1,Yellowish Bulbul,Hypsipetes everetti,Passeriformes,Pycnonotidae (Bulbuls),, 21485.433,issf,yelbul2,Yellowish Bulbul (Yellowish),Hypsipetes everetti everetti/samarensis,Passeriformes,Pycnonotidae (Bulbuls),,yelbul1 21485.435,issf,yelbul3,Yellowish Bulbul (Sulu),Hypsipetes everetti haynaldi,Passeriformes,Pycnonotidae (Bulbuls),,yelbul1 21485.4355,issf,yelbul4,Yellowish Bulbul (Camiguin),Hypsipetes everetti catarmanensis,Passeriformes,Pycnonotidae (Bulbuls),,yelbul1 21485.436,species,minbul1,Mindoro Bulbul,Hypsipetes mindorensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.437,species,stbbul1,Streak-breasted Bulbul,Hypsipetes siquijorensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.438,issf,stbbul2,Streak-breasted Bulbul (Tablas),Hypsipetes siquijorensis cinereiceps,Passeriformes,Pycnonotidae (Bulbuls),,stbbul1 21485.439,issf,stbbul3,Streak-breasted Bulbul (Cebu),Hypsipetes siquijorensis monticola,Passeriformes,Pycnonotidae (Bulbuls),,stbbul1 21485.44,issf,stbbul4,Streak-breasted Bulbul (Siquijor),Hypsipetes siquijorensis siquijorensis,Passeriformes,Pycnonotidae (Bulbuls),,stbbul1 21485.441,species,phibul1,Philippine Bulbul,Hypsipetes philippinus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.445,species,ashbul1,Ashy Bulbul,Hemixos flavala,Passeriformes,Pycnonotidae (Bulbuls),, 21485.446,issf,ashbul2,Ashy Bulbul (Ashy),Hemixos flavala [flavala Group],Passeriformes,Pycnonotidae (Bulbuls),,ashbul1 21485.447,issf,ashbul4,Ashy Bulbul (Cinereous),Hemixos flavala cinereus,Passeriformes,Pycnonotidae (Bulbuls),,ashbul1 21485.448,issf,ashbul5,Ashy Bulbul (Green-winged),Hemixos flavala connectens,Passeriformes,Pycnonotidae (Bulbuls),,ashbul1 21485.455,species,chebul1,Chestnut Bulbul,Hemixos castanonotus,Passeriformes,Pycnonotidae (Bulbuls),, 21485.458,species,moubul2,Mountain Bulbul,Ixos mcclellandii,Passeriformes,Pycnonotidae (Bulbuls),, 21485.468,species,sunbul2,Sunda Bulbul,Ixos virescens,Passeriformes,Pycnonotidae (Bulbuls),, 21485.469,issf,sunbul1,Sunda Bulbul (Sumatran),Ixos virescens sumatranus,Passeriformes,Pycnonotidae (Bulbuls),,sunbul2 21485.47,issf,sunbul3,Sunda Bulbul (Javan),Ixos virescens virescens,Passeriformes,Pycnonotidae (Bulbuls),,sunbul2 21485.471,species,strbul1,Streaked Bulbul,Ixos malaccensis,Passeriformes,Pycnonotidae (Bulbuls),, 21485.671,spuh,pycnon2,Pycnonotidae sp.,Pycnonotidae sp.,Passeriformes,Pycnonotidae (Bulbuls),, 21932,species,gockin,Golden-crowned Kinglet,Regulus satrapa,Passeriformes,Regulidae (Kinglets),Kinglets, 21939,species,ruckin,Ruby-crowned Kinglet,Regulus calendula,Passeriformes,Regulidae (Kinglets),, 21943,species,goldcr1,Goldcrest,Regulus regulus,Passeriformes,Regulidae (Kinglets),, 21945,issf,goldcr2,Goldcrest (Sao Miguel),Regulus regulus azoricus,Passeriformes,Regulidae (Kinglets),,goldcr1 21946,issf,goldcr3,Goldcrest (Santa Maria),Regulus regulus sanctaemariae,Passeriformes,Regulidae (Kinglets),,goldcr1 21947,issf,goldcr4,Goldcrest (Western Azores),Regulus regulus inermis,Passeriformes,Regulidae (Kinglets),,goldcr1 21956,species,caikin1,Canary Islands Kinglet,Regulus teneriffae,Passeriformes,Regulidae (Kinglets),, 21957,species,flamec1,Flamecrest,Regulus goodfellowi,Passeriformes,Regulidae (Kinglets),, 21958,species,firecr2,Firecrest,Regulus ignicapilla,Passeriformes,Regulidae (Kinglets),, 21959,issf,firecr3,Firecrest (Madeira),Regulus ignicapilla madeirensis,Passeriformes,Regulidae (Kinglets),,firecr2 21959.5,issf,firecr1,Firecrest (European),Regulus ignicapilla ignicapilla/balearicus,Passeriformes,Regulidae (Kinglets),,firecr2 21962,slash,y00622,Goldcrest/Firecrest,Regulus regulus/ignicapilla,Passeriformes,Regulidae (Kinglets),, 21963,spuh,kingle,kinglet sp.,Regulus sp.,Passeriformes,Regulidae (Kinglets),, 21963.001,species,sbwbab1,Scaly-breasted Cupwing,Pnoepyga albiventer,Passeriformes,Pnoepygidae (Cupwings),Cupwings, 21963.0035,species,chicup1,Chinese Cupwing,Pnoepyga mutica,Passeriformes,Pnoepygidae (Cupwings),, 21963.004,species,taiwrb1,Taiwan Cupwing,Pnoepyga formosana,Passeriformes,Pnoepygidae (Cupwings),, 21963.005,species,immwrb1,Immaculate Cupwing,Pnoepyga immaculata,Passeriformes,Pnoepygidae (Cupwings),, 21963.0055,slash,y00811,Scaly-breasted/Immaculate Cupwing,Pnoepyga albiventer/immaculata,Passeriformes,Pnoepygidae (Cupwings),, 21963.006,species,pywbab1,Pygmy Cupwing,Pnoepyga pusilla,Passeriformes,Pnoepygidae (Cupwings),, 21963.0065,spuh,cupwin1,cupwing sp.,Pnoepyga sp.,Passeriformes,Pnoepygidae (Cupwings),, 21963.014,species,grecro1,Green Crombec,Sylvietta virens,Passeriformes,Macrosphenidae (African Warblers),African Warblers, 21963.019,species,lebcro1,Lemon-bellied Crombec,Sylvietta denti,Passeriformes,Macrosphenidae (African Warblers),, 21963.022,species,whbcro2,White-browed Crombec,Sylvietta leucophrys,Passeriformes,Macrosphenidae (African Warblers),, 21963.0225,issf,whbcro1,White-browed Crombec (White-browed),Sylvietta leucophrys leucophrys/chloronota,Passeriformes,Macrosphenidae (African Warblers),,whbcro2 21963.025,issf,whbcro3,White-browed Crombec (Chapin's),Sylvietta leucophrys chapini,Passeriformes,Macrosphenidae (African Warblers),,whbcro2 21963.026,species,norcro1,Northern Crombec,Sylvietta brachyura,Passeriformes,Macrosphenidae (African Warblers),, 21963.03,species,shbcro1,Short-billed Crombec,Sylvietta philippae,Passeriformes,Macrosphenidae (African Warblers),, 21963.031,species,reccro1,Red-capped Crombec,Sylvietta ruficapilla,Passeriformes,Macrosphenidae (African Warblers),, 21963.038,species,refcro1,Red-faced Crombec,Sylvietta whytii,Passeriformes,Macrosphenidae (African Warblers),, 21963.043,species,somcro1,Somali Crombec,Sylvietta isabellina,Passeriformes,Macrosphenidae (African Warblers),, 21963.044,species,capcro1,Cape Crombec,Sylvietta rufescens,Passeriformes,Macrosphenidae (African Warblers),, 21963.052,spuh,crombe1,crombec sp.,Sylvietta sp.,Passeriformes,Macrosphenidae (African Warblers),, 21963.053,species,damroc1,Rockrunner,Achaetops pycnopygius,Passeriformes,Macrosphenidae (African Warblers),, 21963.056,species,mogwar1,Moustached Grass-Warbler,Melocichla mentalis,Passeriformes,Macrosphenidae (African Warblers),, 21963.062,species,capgra1,Cape Grassbird,Sphenoeacus afer,Passeriformes,Macrosphenidae (African Warblers),, 21963.067,species,viswar1,Victorin's Warbler,Cryptillas victorini,Passeriformes,Macrosphenidae (African Warblers),, 21963.068,species,kemlon1,Kemp's Longbill,Macrosphenus kempi,Passeriformes,Macrosphenidae (African Warblers),, 21963.071,species,yellon1,Yellow Longbill,Macrosphenus flavicans,Passeriformes,Macrosphenidae (African Warblers),, 21963.074,species,grylon1,Gray Longbill,Macrosphenus concolor,Passeriformes,Macrosphenidae (African Warblers),, 21963.075,species,pullon1,Pulitzer's Longbill,Macrosphenus pulitzeri,Passeriformes,Macrosphenidae (African Warblers),, 21963.076,species,krelon1,Kretschmer's Longbill,Macrosphenus kretschmeri,Passeriformes,Macrosphenidae (African Warblers),, 21963.077,spuh,longbi1,longbill sp.,Macrosphenus sp.,Passeriformes,Macrosphenidae (African Warblers),, 21963.0781,species,grawar1,Grauer's Warbler,Graueria vittata,Passeriformes,Macrosphenidae (African Warblers),, 21963.0782,species,grehyl1,Green Hylia,Hylia prasina,Passeriformes,Macrosphenidae (African Warblers),, 21963.0785,species,tithyl1,Tit-hylia,Pholidornis rushiae,Passeriformes,Macrosphenidae (African Warblers),, 21963.079,species,chcfly1,Chestnut-capped Flycatcher,Erythrocercus mccallii,Passeriformes,Scotocercidae (Bush Warblers and Allies),Bush Warblers and Allies, 21963.0794,species,yelfly2,Yellow Flycatcher,Erythrocercus holochlorus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.0795,species,livfly1,Livingstone's Flycatcher,Erythrocercus livingstonei,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.088,species,stswar1,Scrub Warbler,Scotocerca inquieta,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.09,issf,scrwar1,Scrub Warbler (Western),Scotocerca inquieta saharae/theresae,Passeriformes,Scotocercidae (Bush Warblers and Allies),,stswar1 21963.092,issf,scrwar2,Scrub Warbler (Eastern),Scotocerca inquieta [inquieta Group],Passeriformes,Scotocercidae (Bush Warblers and Allies),,stswar1 21963.097,species,neuwar1,Neumann's Warbler,Urosphena neumanni,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.0972,species,pfbwar1,Pale-footed Bush Warbler,Urosphena pallidipes,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.098,species,timstu1,Timor Stubtail,Urosphena subulata,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.101,species,borstu1,Bornean Stubtail,Urosphena whiteheadi,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.106,species,asistu1,Asian Stubtail,Urosphena squameiceps,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.107,species,gybtes1,Gray-bellied Tesia,Tesia cyaniventer,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.108,species,slbtes1,Slaty-bellied Tesia,Tesia olivea,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1085,slash,y00906,Gray-bellied/Slaty-bellied Tesia,Tesia cyaniventer/olivea,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.109,species,javtes1,Javan Tesia,Tesia superciliaris,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.11,species,ructes1,Russet-capped Tesia,Tesia everetti,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.112,spuh,tesia1,tesia sp.,Tesia sp.,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1121,species,ccbwar1,Chestnut-crowned Bush Warbler,Cettia major,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1124,species,gysbuw1,Gray-sided Bush Warbler,Cettia brunnifrons,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1129,species,chhtes1,Chestnut-headed Tesia,Cettia castaneocoronata,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1133,species,cetwar1,Cetti's Warbler,Cettia cetti,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1135,spuh,cettia1,Cettia sp.,Cettia sp.,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1137,species,yebwar1,Yellow-bellied Warbler,Abroscopus superciliaris,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1139,species,rufwar1,Rufous-faced Warbler,Abroscopus albogularis,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.128,species,blfwar1,Black-faced Warbler,Abroscopus schisticeps,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.132,species,moutai2,Mountain Tailorbird,Phyllergates cucullatus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.146,species,ruhtai2,Rufous-headed Tailorbird,Phyllergates heterolaemus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.147,species,brbwar1,Broad-billed Warbler,Tickellia hodgsoni,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.15,species,phbwar1,Philippine Bush Warbler,Horornis seebohmi,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.155,species,jabwar,Japanese Bush Warbler,Horornis diphone,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1615,species,manbuw1,Manchurian Bush Warbler,Horornis borealis,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.162,slash,y00747,Japanese/Manchurian Bush Warbler,Horornis diphone/borealis,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.163,species,pabwar1,Palau Bush Warbler,Horornis annae,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1635,species,tabwar1,Tanimbar Bush Warbler,Horornis carolinae,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.164,species,shawar1,Shade Warbler,Horornis parens,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.165,species,odedi1,Odedi,Horornis haddeni,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.166,species,fibwar1,Fiji Bush Warbler,Horornis ruficapilla,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.172,species,bfbwar1,Brownish-flanked Bush Warbler,Horornis fortipes,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.173,issf,bfbwar2,Brownish-flanked Bush Warbler (Brownish-flanked),Horornis fortipes [fortipes Group],Passeriformes,Scotocercidae (Bush Warblers and Allies),,bfbwar1 21963.175,issf,bfbwar3,Brownish-flanked Bush Warbler (Taiwan),Horornis fortipes robustipes,Passeriformes,Scotocercidae (Bush Warblers and Allies),,bfbwar1 21963.177,species,yebbuw2,Hume's Bush Warbler,Horornis brunnescens,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.178,species,ybbwar1,Yellowish-bellied Bush Warbler,Horornis acanthizoides,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.1805,slash,y00748,Brownish-flanked/Yellowish-bellied Bush Warbler,Horornis fortipes/acanthizoides,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.181,species,subwar4,Sunda Bush Warbler,Horornis vulcanius,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.192,species,abbwar1,Aberrant Bush Warbler,Horornis flavolivaceus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21963.193,issf,abbwar2,Aberrant Bush Warbler (Aberrant),Horornis flavolivaceus [flavolivaceus Group],Passeriformes,Scotocercidae (Bush Warblers and Allies),,abbwar1 21963.194,issf,abbwar3,Aberrant Bush Warbler (Perplexing),Horornis flavolivaceus intricatus/oblitus,Passeriformes,Scotocercidae (Bush Warblers and Allies),,abbwar1 21963.1995,spuh,bush-w1,bush warbler sp.,Horornis sp.,Passeriformes,Scotocercidae (Bush Warblers and Allies),, 21964,species,rfwwar1,Red-faced Woodland-Warbler,Phylloscopus laetus,Passeriformes,Phylloscopidae (Leaf Warblers),Leaf Warblers, 21967,species,lauwow1,Laura's Woodland-Warbler,Phylloscopus laurae,Passeriformes,Phylloscopidae (Leaf Warblers),, 21970,species,yetwow1,Yellow-throated Woodland-Warbler,Phylloscopus ruficapilla,Passeriformes,Phylloscopidae (Leaf Warblers),, 21978,species,ugawow1,Uganda Woodland-Warbler,Phylloscopus budongoensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 21979,species,brwwar1,Brown Woodland-Warbler,Phylloscopus umbrovirens,Passeriformes,Phylloscopidae (Leaf Warblers),, 21989,species,bcwwar1,Black-capped Woodland-Warbler,Phylloscopus herberti,Passeriformes,Phylloscopidae (Leaf Warblers),, 21992,species,wlwwar,Willow Warbler,Phylloscopus trochilus,Passeriformes,Phylloscopidae (Leaf Warblers),, 21996,species,comchi1,Common Chiffchaff,Phylloscopus collybita,Passeriformes,Phylloscopidae (Leaf Warblers),, 21998,issf,comchi3,Common Chiffchaff (Common),Phylloscopus collybita [collybita Group],Passeriformes,Phylloscopidae (Leaf Warblers),,comchi1 22002,issf,comchi4,Common Chiffchaff (Siberian),Phylloscopus collybita tristis,Passeriformes,Phylloscopidae (Leaf Warblers),,comchi1 22002.5,slash,y00812,Willow Warbler/Common Chiffchaff,Phylloscopus trochilus/collybita,Passeriformes,Phylloscopidae (Leaf Warblers),, 22003,species,caichi1,Canary Islands Chiffchaff,Phylloscopus canariensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22006,species,ibechi2,Iberian Chiffchaff,Phylloscopus ibericus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22006.2,slash,y01045,Willow Warbler/Common Chiffchaff/Iberian Chiffchaff,Phylloscopus trochilus/collybita/ibericus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22008.5,slash,y00813,Common/Iberian Chiffchaff,Phylloscopus collybita/ibericus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22009,species,mouchi2,Mountain Chiffchaff,Phylloscopus sindianus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22010,issf,mouchi1,Mountain Chiffchaff (Caucasian),Phylloscopus sindianus lorenzii,Passeriformes,Phylloscopidae (Leaf Warblers),,mouchi2 22011,issf,mouchi5,Mountain Chiffchaff (Kashmir),Phylloscopus sindianus sindianus,Passeriformes,Phylloscopidae (Leaf Warblers),,mouchi2 22012,species,pllwar2,Plain Leaf Warbler,Phylloscopus neglectus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22013,species,webwar1,Western Bonelli's Warbler,Phylloscopus bonelli,Passeriformes,Phylloscopidae (Leaf Warblers),, 22014,species,eabwar1,Eastern Bonelli's Warbler,Phylloscopus orientalis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22014.5,slash,y00814,Western/Eastern Bonelli's Warbler,Phylloscopus bonelli/orientalis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22015,species,woowar,Wood Warbler,Phylloscopus sibilatrix,Passeriformes,Phylloscopidae (Leaf Warblers),, 22016,species,duswar,Dusky Warbler,Phylloscopus fuscatus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22019,species,smowar1,Smoky Warbler,Phylloscopus fuligiventer,Passeriformes,Phylloscopidae (Leaf Warblers),, 22022.5,slash,y00988,Dusky/Smoky Warbler,Phylloscopus fuscatus/fuligiventer,Passeriformes,Phylloscopidae (Leaf Warblers),, 22023,species,tilwar1,Tickell's Leaf Warbler,Phylloscopus affinis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22023.03,species,butwar1,Buff-throated Warbler,Phylloscopus subaffinis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22023.04,species,subwar2,Sulphur-bellied Warbler,Phylloscopus griseolus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22023.05,species,alplew1,Alpine Leaf Warbler,Phylloscopus occisinensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22023.08,slash,y00989,Tickell's/Alpine Leaf Warbler,Phylloscopus affinis/occisinensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22026,species,yeswar1,Yellow-streaked Warbler,Phylloscopus armandii,Passeriformes,Phylloscopidae (Leaf Warblers),, 22029,species,radwar1,Radde's Warbler,Phylloscopus schwarzi,Passeriformes,Phylloscopidae (Leaf Warblers),, 22029.5,slash,y00749,Dusky/Radde's Warbler,Phylloscopus fuscatus/schwarzi,Passeriformes,Phylloscopidae (Leaf Warblers),, 22029.7,slash,y00990,Dusky/Yellow-streaked/Radde's Warbler,Phylloscopus fuscatus/armandii/schwarzi,Passeriformes,Phylloscopidae (Leaf Warblers),, 22030,species,bubwar1,Buff-barred Warbler,Phylloscopus pulcher,Passeriformes,Phylloscopidae (Leaf Warblers),, 22033,species,astwar2,Ashy-throated Warbler,Phylloscopus maculipennis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22036,species,palwar5,Pallas's Leaf Warbler,Phylloscopus proregulus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22037,species,ganlew1,Gansu Leaf Warbler,Phylloscopus kansuensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22038,species,parwar1,Pale-rumped Warbler,Phylloscopus chloronotus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22041,species,siclew1,Sichuan Leaf Warbler,Phylloscopus forresti,Passeriformes,Phylloscopidae (Leaf Warblers),, 22041.5,slash,y00991,Pale-rumped/Sichuan Leaf Warbler,Phylloscopus chloronotus/forresti,Passeriformes,Phylloscopidae (Leaf Warblers),, 22042,species,chilew1,Chinese Leaf Warbler,Phylloscopus yunnanensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22043,species,brlwar1,Brooks's Leaf Warbler,Phylloscopus subviridis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22044,species,yebwar3,Yellow-browed Warbler,Phylloscopus inornatus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22045,species,humwar1,Hume's Warbler,Phylloscopus humei,Passeriformes,Phylloscopidae (Leaf Warblers),, 22047.5,slash,y00641,Yellow-browed/Hume's Warbler,Phylloscopus inornatus/humei,Passeriformes,Phylloscopidae (Leaf Warblers),, 22048.5,species,arcwar1,Arctic Warbler,Phylloscopus borealis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22053,species,arcwar2,Kamchatka Leaf Warbler,Phylloscopus examinandus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22053.5,slash,y00815,Arctic/Kamchatka Leaf Warbler,Phylloscopus borealis/examinandus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22053.7,species,arcwar3,Japanese Leaf Warbler,Phylloscopus xanthodryas,Passeriformes,Phylloscopidae (Leaf Warblers),, 22053.75,slash,y00907,Arctic/Japanese Leaf Warbler,Phylloscopus borealis/xanthodryas,Passeriformes,Phylloscopidae (Leaf Warblers),, 22053.8,slash,arcwar,Arctic/Kamchatka Leaf/Japanese Leaf Warbler,Phylloscopus borealis/examinandus/xanthodryas,Passeriformes,Phylloscopidae (Leaf Warblers),, 22054,species,grnwar1,Green Warbler,Phylloscopus nitidus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22055.5,species,grewar3,Greenish Warbler,Phylloscopus trochiloides,Passeriformes,Phylloscopidae (Leaf Warblers),, 22058,species,grewar2,Two-barred Warbler,Phylloscopus plumbeitarsus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22059,slash,y00642,Green/Greenish Warbler,Phylloscopus nitidus/trochiloides,Passeriformes,Phylloscopidae (Leaf Warblers),, 22059.5,slash,grewar1,Greenish/Two-barred Warbler,Phylloscopus trochiloides/plumbeitarsus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22061,species,pllwar1,Pale-legged Leaf Warbler,Phylloscopus tenellipes,Passeriformes,Phylloscopidae (Leaf Warblers),, 22062,species,salwar1,Sakhalin Leaf Warbler,Phylloscopus borealoides,Passeriformes,Phylloscopidae (Leaf Warblers),, 22062.5,slash,y00750,Pale-legged/Sakhalin Leaf Warbler,Phylloscopus tenellipes/borealoides,Passeriformes,Phylloscopidae (Leaf Warblers),, 22063,species,lblwar1,Large-billed Leaf Warbler,Phylloscopus magnirostris,Passeriformes,Phylloscopidae (Leaf Warblers),, 22064,species,tylwar1,Tytler's Leaf Warbler,Phylloscopus tytleri,Passeriformes,Phylloscopidae (Leaf Warblers),, 22065,species,weclew1,Western Crowned Warbler,Phylloscopus occipitalis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22066,species,eacwar1,Eastern Crowned Warbler,Phylloscopus coronatus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22067,species,ijlwar1,Ijima's Leaf Warbler,Phylloscopus ijimae,Passeriformes,Phylloscopidae (Leaf Warblers),, 22068,species,blylew1,Blyth's Leaf Warbler,Phylloscopus reguloides,Passeriformes,Phylloscopidae (Leaf Warblers),, 22073,species,clalew1,Claudia's Leaf Warbler,Phylloscopus claudiae,Passeriformes,Phylloscopidae (Leaf Warblers),, 22074,species,harlew1,Hartert's Leaf Warbler,Phylloscopus goodsoni,Passeriformes,Phylloscopidae (Leaf Warblers),, 22075.8,slash,bllwar1,Blyth's/Claudia's/Hartert's Leaf Warbler,Phylloscopus reguloides/claudiae/goodsoni,Passeriformes,Phylloscopidae (Leaf Warblers),, 22076,species,halwar1,Hainan Leaf Warbler,Phylloscopus hainanus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22077,species,emlwar1,Emei Leaf Warbler,Phylloscopus emeiensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22078,species,davlew1,Davison's Leaf Warbler,Phylloscopus davisoni,Passeriformes,Phylloscopidae (Leaf Warblers),, 22078.8,species,klolew1,Kloss's Leaf Warbler,Phylloscopus ogilviegranti,Passeriformes,Phylloscopidae (Leaf Warblers),, 22080.9,slash,wtlwar1,Davison's/Kloss's Leaf Warbler,Phylloscopus davisoni/ogilviegranti,Passeriformes,Phylloscopidae (Leaf Warblers),, 22081,species,limlew1,Limestone Leaf Warbler,Phylloscopus calciatilis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22084,species,yevwar1,Yellow-vented Warbler,Phylloscopus cantator,Passeriformes,Phylloscopidae (Leaf Warblers),, 22087,species,subwar3,Sulphur-breasted Warbler,Phylloscopus ricketti,Passeriformes,Phylloscopidae (Leaf Warblers),, 22087.5,slash,y00992,Limestone Leaf/Sulphur-breasted Warbler,Phylloscopus calciatilis/ricketti,Passeriformes,Phylloscopidae (Leaf Warblers),, 22088,species,letwar1,Lemon-throated Leaf Warbler,Phylloscopus cebuensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22092,species,mouwar2,Mountain Leaf Warbler,Phylloscopus trivirgatus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22092.5,issf,mouwar3,Mountain Leaf Warbler (Mountain),Phylloscopus trivirgatus [trivirgatus Group],Passeriformes,Phylloscopidae (Leaf Warblers),,mouwar2 22103,issf,mouwar4,Mountain Leaf Warbler (Philippines),Phylloscopus trivirgatus [nigrorum Group],Passeriformes,Phylloscopidae (Leaf Warblers),,mouwar2 22104,species,sulwar1,Sulawesi Leaf Warbler,Phylloscopus sarasinorum,Passeriformes,Phylloscopidae (Leaf Warblers),, 22105,issf,sulwar2,Sulawesi Leaf Warbler (Sulawesi),Phylloscopus sarasinorum nesophilus,Passeriformes,Phylloscopidae (Leaf Warblers),,sulwar1 22106,issf,sulwar3,Sulawesi Leaf Warbler (Lompobattang),Phylloscopus sarasinorum sarasinorum,Passeriformes,Phylloscopidae (Leaf Warblers),,sulwar1 22107,species,tilwar2,Timor Leaf Warbler,Phylloscopus presbytes,Passeriformes,Phylloscopidae (Leaf Warblers),, 22108,issf,tilwar3,Timor Leaf Warbler (Flores),Phylloscopus presbytes floris,Passeriformes,Phylloscopidae (Leaf Warblers),,tilwar2 22109,issf,tilwar4,Timor Leaf Warbler (Timor),Phylloscopus presbytes presbytes,Passeriformes,Phylloscopidae (Leaf Warblers),,tilwar2 22109.5,form,rolwar1,Rote Leaf Warbler (undescribed form),Phylloscopus (undescribed Rote form),Passeriformes,Phylloscopidae (Leaf Warblers),, 22110,species,islwar1,Island Leaf Warbler,Phylloscopus maforensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22111,issf,isllew8,Island Leaf Warbler (Halmahera),Phylloscopus maforensis henrietta,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22112,issf,isllew11,Island Leaf Warbler (Bacan),Phylloscopus maforensis waterstradti,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22113,issf,isllew7,Island Leaf Warbler (Buru),Phylloscopus maforensis everetti,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22114,issf,isllew6,Island Leaf Warbler (Seram),Phylloscopus maforensis ceramensis,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22115,issf,isllew5,Island Leaf Warbler (Kai),Phylloscopus maforensis avicola,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22116,issf,isllew9,Island Leaf Warbler (Numfor),Phylloscopus maforensis maforensis,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22117,issf,isllew10,Island Leaf Warbler (Biak),Phylloscopus maforensis misoriensis,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22117.5,issf,isllew2,Island Leaf Warbler (New Guinea),Phylloscopus maforensis [poliocephalus Group],Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22123.5,issf,isllew1,Island Leaf Warbler (South Pacific),Phylloscopus maforensis [matthiae Group],Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 22128,form,isllew3,Taliabu Leaf Warbler (undescribed form),Phylloscopus [undescribed form 1],Passeriformes,Phylloscopidae (Leaf Warblers),, 22129,form,isllew4,Banggai Leaf Warbler (undescribed form),Phylloscopus [undescribed form 2],Passeriformes,Phylloscopidae (Leaf Warblers),, 22130,species,phlwar1,Philippine Leaf Warbler,Phylloscopus olivaceus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22131,species,sclwar1,Makira Leaf Warbler,Phylloscopus makirensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22132,species,kullew1,Kolombangra Leaf Warbler,Phylloscopus amoenus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22133,species,gyhwar2,Gray-hooded Warbler,Phylloscopus xanthoschistos,Passeriformes,Phylloscopidae (Leaf Warblers),, 22138,spuh,phyllo1,Phylloscopus sp.,Phylloscopus sp.,Passeriformes,Phylloscopidae (Leaf Warblers),, 22139,species,goswar1,Golden-spectacled Warbler,Seicercus burkii,Passeriformes,Phylloscopidae (Leaf Warblers),, 22140,species,gycwar1,Gray-crowned Warbler,Seicercus tephrocephalus,Passeriformes,Phylloscopidae (Leaf Warblers),, 22141,species,pltwar1,Plain-tailed Warbler,Seicercus soror,Passeriformes,Phylloscopidae (Leaf Warblers),, 22142,species,marwar4,Martens's Warbler,Seicercus omeiensis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22143,species,whiwar2,Whistler's Warbler,Seicercus whistleri,Passeriformes,Phylloscopidae (Leaf Warblers),, 22144,slash,y00993,Golden-spectacled/Whistler's Warbler,Seicercus burkii/whistleri,Passeriformes,Phylloscopidae (Leaf Warblers),, 22145,slash,y00994,Gray-crowned/Whistler's Warbler,Seicercus tephrocephalus/whistleri,Passeriformes,Phylloscopidae (Leaf Warblers),, 22146,species,biawar1,Bianchi's Warbler,Seicercus valentini,Passeriformes,Phylloscopidae (Leaf Warblers),, 22147,slash,y00650,Gray-crowned/Bianchi's Warbler,Seicercus tephrocephalus/valentini,Passeriformes,Phylloscopidae (Leaf Warblers),, 22148,slash,y00995,Martens's/Bianchi's Warbler,Seicercus omeiensis/valentini,Passeriformes,Phylloscopidae (Leaf Warblers),, 22149,species,whswar1,White-spectacled Warbler,Seicercus affinis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22152,species,gycwar2,Gray-cheeked Warbler,Seicercus poliogenys,Passeriformes,Phylloscopidae (Leaf Warblers),, 22153,species,chcwar2,Chestnut-crowned Warbler,Seicercus castaniceps,Passeriformes,Phylloscopidae (Leaf Warblers),, 22163,species,yebwar2,Yellow-breasted Warbler,Seicercus montis,Passeriformes,Phylloscopidae (Leaf Warblers),, 22170,species,sunwar1,Sunda Warbler,Seicercus grammiceps,Passeriformes,Phylloscopidae (Leaf Warblers),, 22170.2,issf,sunwar2,Sunda Warbler (Sumatran),Seicercus grammiceps sumatrensis,Passeriformes,Phylloscopidae (Leaf Warblers),,sunwar1 22170.4,issf,sunwar3,Sunda Warbler (Javan),Seicercus grammiceps grammiceps,Passeriformes,Phylloscopidae (Leaf Warblers),,sunwar1 22172,spuh,seicer2,Seicercus sp. (Golden-spectacled Warbler complex),Seicercus sp. (burkii complex),Passeriformes,Phylloscopidae (Leaf Warblers),, 22173,spuh,seicer1,Seicercus sp.,Seicercus sp.,Passeriformes,Phylloscopidae (Leaf Warblers),, 22174,species,albwar1,Aldabra Brush-Warbler,Nesillas aldabrana,Passeriformes,Acrocephalidae (Reed Warblers and Allies),Reed Warblers and Allies, 22175,species,anbwar1,Anjouan Brush-Warbler,Nesillas longicaudata,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22176,species,madbrw1,Madagascar Brush-Warbler,Nesillas typica,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22180,species,subbrw1,Subdesert Brush-Warbler,Nesillas lantzii,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22181,species,gcbwar1,Grand Comoro Brush-Warbler,Nesillas brevicaudata,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22182,species,mohbrw1,Moheli Brush-Warbler,Nesillas mariae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22182.3,species,paywar1,Papyrus Yellow-Warbler,Calamonastides gracilirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22182.5,issf,papyew1,Papyrus Yellow-Warbler (Papyrus),Calamonastides gracilirostris gracilirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,paywar1 22182.7,issf,papyew2,Papyrus Yellow-Warbler (Zambian),Calamonastides gracilirostris bensoni,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,paywar1 22182.9,species,thbwar1,Thick-billed Warbler,Iduna aedon,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22183.5,species,boowar1,Booted Warbler,Iduna caligata,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22184,species,sykwar2,Sykes's Warbler,Iduna rama,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22184.5,slash,y00643,Booted/Sykes's Warbler,Iduna caligata/rama,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22185,species,eaowar1,Eastern Olivaceous Warbler,Iduna pallida,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22190,species,weowar1,Western Olivaceous Warbler,Iduna opaca,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22191,slash,y00623,Eastern/Western Olivaceous Warbler,Iduna pallida/opaca,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22192,species,afywar1,African Yellow-Warbler,Iduna natalensis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22197,species,moywar1,Mountain Yellow-Warbler,Iduna similis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22197.2,spuh,iduna1,Iduna sp.,Iduna sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22197.5,species,upcwar1,Upcher's Warbler,Hippolais languida,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22198,species,oltwar1,Olive-tree Warbler,Hippolais olivetorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22199,species,melwar1,Melodious Warbler,Hippolais polyglotta,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22200,species,ictwar1,Icterine Warbler,Hippolais icterina,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22201,slash,y00644,Melodious/Icterine Warbler,Hippolais polyglotta/icterina,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22202,spuh,hippol1,Hippolais sp.,Hippolais sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22206,species,aquwar1,Aquatic Warbler,Acrocephalus paludicola,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22207,species,bbrwar1,Black-browed Reed Warbler,Acrocephalus bistrigiceps,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22208,species,strwar1,Streaked Reed Warbler,Acrocephalus sorghophilus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22209,species,mouwar1,Moustached Warbler,Acrocephalus melanopogon,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22213,species,sedwar1,Sedge Warbler,Acrocephalus schoenobaenus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22214,species,padwar1,Paddyfield Warbler,Acrocephalus agricola,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22215,species,blwwar1,Blunt-winged Warbler,Acrocephalus concinens,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22219,species,manrew1,Manchurian Reed Warbler,Acrocephalus tangorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22220,species,blrwar1,Blyth's Reed Warbler,Acrocephalus dumetorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22221,slash,y00751,Paddyfield/Blyth's Reed Warbler,Acrocephalus agricola/dumetorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22222,species,labrew1,Large-billed Reed Warbler,Acrocephalus orinus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22223,species,marwar3,Marsh Warbler,Acrocephalus palustris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22224,species,eurwar1,Eurasian Reed Warbler,Acrocephalus scirpaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22225,issf,eurrew1,Eurasian Reed Warbler (Eurasian),Acrocephalus scirpaceus scirpaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 22226,issf,eurrew2,Eurasian Reed Warbler (Caspian),Acrocephalus scirpaceus fuscus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 22226.3,issf,afrrew2,Eurasian Reed Warbler (Mangrove),Acrocephalus scirpaceus avicenniae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 22226.6,issf,eurwar3,Eurasian Reed Warbler (Siwa),Acrocephalus scirpaceus ammon,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 22227,slash,y00624,Marsh Warbler/Eurasian Reed Warbler,Acrocephalus palustris/scirpaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22228,species,afrwar1,African Reed Warbler,Acrocephalus baeticatus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22228.2,slash,y01046,Marsh/Eurasian Reed/African Reed Warbler,Acrocephalus palustris/scirpaceus/baeticatus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22228.4,slash,y01047,Eurasian Reed/African Reed Warbler,Acrocephalus scirpaceus/baeticatus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22234,species,barwar2,Basra Reed Warbler,Acrocephalus griseldis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22235,species,leswar1,Lesser Swamp Warbler,Acrocephalus gracilirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22240,species,grswar2,Greater Swamp Warbler,Acrocephalus rufescens,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22245,species,cvswar1,Cape Verde Swamp Warbler,Acrocephalus brevipennis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22246,species,maswar1,Madagascar Swamp Warbler,Acrocephalus newtoni,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22247,species,rodbrw1,Rodrigues Warbler,Acrocephalus rodericanus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22248,species,sebwar1,Seychelles Warbler,Acrocephalus sechellensis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22249,species,grrwar1,Great Reed Warbler,Acrocephalus arundinaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22252,slash,y00667,Eurasian/Great Reed Warbler,Acrocephalus scirpaceus/arundinaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22253,species,orrwar1,Oriental Reed Warbler,Acrocephalus orientalis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22254,species,clrwar1,Clamorous Reed Warbler,Acrocephalus stentoreus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22254.5,issf,clarew3,Clamorous Reed Warbler (Clamorous),Acrocephalus stentoreus stentoreus/levantinus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,clrwar1 22258,issf,clarew2,Clamorous Reed Warbler (Brown),Acrocephalus stentoreus [brunnescens Group],Passeriformes,Acrocephalidae (Reed Warblers and Allies),,clrwar1 22259,slash,y00996,Great/Oriental/Clamorous Reed Warbler,Acrocephalus arundinaceus/orientalis/stentoreus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22267,species,nigrew1,Nightingale Reed Warbler,Acrocephalus luscinius,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22268,species,sairew1,Saipan Reed Warbler,Acrocephalus hiwae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22269,species,aurwar1,Australian Reed Warbler,Acrocephalus australis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22274,species,carrew1,Caroline Reed Warbler,Acrocephalus syrinx,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22275,species,agurew1,Aguiguan Reed Warbler,Acrocephalus nijoi,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22276,species,chiwar1,Kiritimati Reed Warbler,Acrocephalus aequinoctialis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22277.3,species,marwar2,Southern Marquesan Reed Warbler,Acrocephalus mendanae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22282,species,pagrew1,Pagan Reed Warbler,Acrocephalus yamashinae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22283,species,narwar1,Nauru Reed Warbler,Acrocephalus rehsei,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22284,species,miller,Millerbird,Acrocephalus familiaris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22284.3,issf,miller1,Millerbird (Nihoa),Acrocephalus familiaris kingi,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,miller 22284.6,issf,miller2,Millerbird (Laysan),Acrocephalus familiaris familiaris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,miller 22284.8,species,pirwar2,Pitcairn Reed Warbler,Acrocephalus vaughani,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22285,species,hirwar1,Henderson Island Reed Warbler,Acrocephalus taiti,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22287,species,cirwar2,Cook Islands Reed Warbler,Acrocephalus kerearako,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22290,species,rimrew1,Rimitara Reed Warbler,Acrocephalus rimitarae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22291,species,soirew1,Society Islands Reed Warbler,Acrocephalus musae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22295,species,tahrew1,Tahiti Reed Warbler,Acrocephalus caffer,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22296,species,moorew1,Moorea Reed Warbler,Acrocephalus longirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22297,species,marrew2,Northern Marquesan Reed Warbler,Acrocephalus percernis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22302,species,turwar1,Tuamotu Reed Warbler,Acrocephalus atyphus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22312,species,manrew2,Mangareva Reed Warbler,Acrocephalus astrolabii,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22313,spuh,acroce1,Acrocephalus sp.,Acrocephalus sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22313.002,spuh,y00908,Iduna/Hippolais/Acrocephalus sp.,Iduna/Hippolais/Acrocephalus sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, 22313.003,species,luzwrb1,Cordillera Ground-Warbler,Robsonius rabori,Passeriformes,Locustellidae (Grassbirds and Allies),Grassbirds and Allies, 22313.006,species,simgrw1,Sierra Madre Ground-Warbler,Robsonius thompsoni,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.008,species,gybbab2,Bicol Ground-Warbler,Robsonius sorsogonensis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.01,species,spibir1,Spinifexbird,Megalurus carteri,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.02,species,fernbi1,Fernbird,Megalurus punctatus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.023,issf,fernbi2,Fernbird (New Zealand),Megalurus punctatus [punctatus Group],Passeriformes,Locustellidae (Grassbirds and Allies),,fernbi1 22313.026,issf,fernbi3,Fernbird (Snares),Megalurus punctatus caudatus,Passeriformes,Locustellidae (Grassbirds and Allies),,fernbi1 22313.08,species,chifer1,Chatham Islands Fernbird,Megalurus rufescens,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.09,species,litgra1,Little Grassbird,Megalurus gramineus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.14,species,broson1,Brown Songlark,Megalurus cruralis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.15,species,tawgra1,Tawny Grassbird,Megalurus timoriensis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.16,issf,tawgra3,Tawny Grassbird (Tawny),Megalurus timoriensis [timoriensis Group],Passeriformes,Locustellidae (Grassbirds and Allies),,tawgra1 22313.27,issf,tawgra2,Tawny Grassbird (Papuan),Megalurus timoriensis [macrurus Group],Passeriformes,Locustellidae (Grassbirds and Allies),,tawgra1 22313.36,species,rufson1,Rufous Songlark,Megalurus mathewsi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.37,species,strgra1,Striated Grassbird,Megalurus palustris,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.41,species,flrgra1,Fly River Grassbird,Megalurus albolimbatus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.411,spuh,megalu1,Megalurus sp.,Megalurus sp.,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.412,species,malia1,Malia,Malia grata,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.42,species,fatgra1,Fan-tailed Grassbird,Schoenicola brevirostris,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.45,species,brtgra2,Broad-tailed Grassbird,Schoenicola platyurus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.46,species,afswar1,Barratt's Warbler,Bradypterus barratti,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.51,species,banscw1,Bangwa Warbler,Bradypterus bangwaensis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.52,species,camscw1,Evergreen-forest Warbler,Bradypterus lopezi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.525,issf,evfwar1,Evergreen-forest Warbler (Lopez's),Bradypterus lopezi lopezi/camerunensis,Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 22313.55,issf,evfwar2,Evergreen-forest Warbler (Volcanic),Bradypterus lopezi barakae,Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 22313.56,issf,evfwar3,Evergreen-forest Warbler (Boulton's),Bradypterus lopezi boultoni,Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 22313.565,issf,evfwar4,Evergreen-forest Warbler (Eastern),Bradypterus lopezi [mariae Group],Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 22313.61,species,cibwar1,Cinnamon Bracken-Warbler,Bradypterus cinnamomeus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.66,species,knswar1,Knysna Warbler,Bradypterus sylvaticus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.69,species,bretai1,Brown Emutail,Bradypterus brunneus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22313.7,species,grswar1,Grauer's Swamp Warbler,Bradypterus graueri,Passeriformes,Locustellidae (Grassbirds and Allies),, 22314,species,afbwar1,Little Rush-Warbler,Bradypterus baboecala,Passeriformes,Locustellidae (Grassbirds and Allies),, 22314.4,issf,litruw1,Little Rush-Warbler (Kenyan Highlands),Bradypterus baboecala elgonensis,Passeriformes,Locustellidae (Grassbirds and Allies),,afbwar1 22314.5,issf,litruw2,Little Rush-Warbler (Little),Bradypterus baboecala [baboecala Group],Passeriformes,Locustellidae (Grassbirds and Allies),,afbwar1 22325,species,jrswar1,Dja River Swamp Warbler,Bradypterus grandis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22326,species,wwswar1,White-winged Swamp Warbler,Bradypterus carpalis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22328,species,baswar1,Bamboo Warbler,Bradypterus alfredi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22331,spuh,bradyp1,Bradypterus sp.,Bradypterus sp.,Passeriformes,Locustellidae (Grassbirds and Allies),, 22332,species,grgwar1,Gray's Grasshopper-Warbler,Locustella fasciolata,Passeriformes,Locustellidae (Grassbirds and Allies),, 22333,species,sakwar1,Sakhalin Grasshopper-Warbler,Locustella amnicola,Passeriformes,Locustellidae (Grassbirds and Allies),, 22333.5,slash,y00997,Gray's/Sakhalin Grasshopper-Warbler,Locustella fasciolata/amnicola,Passeriformes,Locustellidae (Grassbirds and Allies),, 22334,species,margra1,Marsh Grassbird,Locustella pryeri,Passeriformes,Locustellidae (Grassbirds and Allies),, 22335,species,pagwar1,Pallas's Grasshopper-Warbler,Locustella certhiola,Passeriformes,Locustellidae (Grassbirds and Allies),, 22336,species,migwar,Middendorff's Grasshopper-Warbler,Locustella ochotensis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22337,species,plewar1,Pleske's Grasshopper-Warbler,Locustella pleskei,Passeriformes,Locustellidae (Grassbirds and Allies),, 22338,species,lanwar,Lanceolated Warbler,Locustella lanceolata,Passeriformes,Locustellidae (Grassbirds and Allies),, 22339,species,eurwar2,Eurasian River Warbler,Locustella fluviatilis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22340,species,savwar1,Savi's Warbler,Locustella luscinioides,Passeriformes,Locustellidae (Grassbirds and Allies),, 22341,species,brbwar2,Brown Bush Warbler,Locustella luteoventris,Passeriformes,Locustellidae (Grassbirds and Allies),, 22342,species,chbwar1,Chinese Bush Warbler,Locustella tacsanowskia,Passeriformes,Locustellidae (Grassbirds and Allies),, 22343,species,lbbwar1,Long-billed Bush Warbler,Locustella major,Passeriformes,Locustellidae (Grassbirds and Allies),, 22344,species,cogwar1,Common Grasshopper-Warbler,Locustella naevia,Passeriformes,Locustellidae (Grassbirds and Allies),, 22345,species,ltbwar1,Long-tailed Bush Warbler,Locustella caudata,Passeriformes,Locustellidae (Grassbirds and Allies),, 22346,species,cbbwar1,Chestnut-backed Bush Warbler,Locustella castanea,Passeriformes,Locustellidae (Grassbirds and Allies),, 22347,issf,cbbwar2,Chestnut-backed Bush Warbler (Sulawesi),Locustella castanea castanea,Passeriformes,Locustellidae (Grassbirds and Allies),,cbbwar1 22348,issf,cbbwar3,Chestnut-backed Bush Warbler (Buru),Locustella castanea disturbans,Passeriformes,Locustellidae (Grassbirds and Allies),,cbbwar1 22349,issf,cbbwar4,Chestnut-backed Bush Warbler (Seram),Locustella castanea musculus,Passeriformes,Locustellidae (Grassbirds and Allies),,cbbwar1 22350,form,talgrw1,Taliabu Grasshopper-Warbler (undescribed form),Locustella [undescribed form],Passeriformes,Locustellidae (Grassbirds and Allies),, 22355.5,species,spobuw1,Baikal Bush Warbler,Locustella davidi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22356,slash,y00998,Chinese/Baikal Bush Warbler,Locustella tacsanowskia/davidi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22358,species,spobuw2,West Himalayan Bush Warbler,Locustella kashmirensis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22358.5,species,spobuw3,Spotted Bush Warbler,Locustella thoracica,Passeriformes,Locustellidae (Grassbirds and Allies),, 22358.9,slash,y00999,Baikal/Spotted Bush Warbler,Locustella davidi/thoracica,Passeriformes,Locustellidae (Grassbirds and Allies),, 22364,species,taibuw1,Taiwan Bush Warbler,Locustella alishanensis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22365,species,frbwar1,Friendly Bush Warbler,Locustella accentor,Passeriformes,Locustellidae (Grassbirds and Allies),, 22366,species,rubwar1,Russet Bush Warbler,Locustella mandelli,Passeriformes,Locustellidae (Grassbirds and Allies),, 22368,slash,y01000,Brown/Russet Bush Warbler,Locustella luteoventris/mandelli,Passeriformes,Locustellidae (Grassbirds and Allies),, 22370,species,sicbuw1,Sichuan Bush Warbler,Locustella chengi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22371,species,benbuw1,Benguet Bush Warbler,Locustella seebohmi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22372,species,javbuw1,Javan Bush Warbler,Locustella montis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22373,species,timbuw1,Timor Bush Warbler,Locustella timorensis,Passeriformes,Locustellidae (Grassbirds and Allies),, 22411,spuh,locust2,Locustella sp.,Locustella sp.,Passeriformes,Locustellidae (Grassbirds and Allies),, 22416,species,ceybuw1,Sri Lanka Bush Warbler,Elaphrornis palliseri,Passeriformes,Locustellidae (Grassbirds and Allies),, 22420,species,gryemt1,Gray Emutail,Amphilais seebohmi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22454,species,bubbus1,Buff-banded Bushbird,Buettikoferella bivittata,Passeriformes,Locustellidae (Grassbirds and Allies),, 22455,species,necgra1,New Caledonian Grassbird,Megalurulus mariei,Passeriformes,Locustellidae (Grassbirds and Allies),, 22456,species,bisthi1,Bismarck Thicketbird,Megalurulus grosvenori,Passeriformes,Locustellidae (Grassbirds and Allies),, 22457,species,bouthi1,Bougainville Thicketbird,Megalurulus llaneae,Passeriformes,Locustellidae (Grassbirds and Allies),, 22458,species,guathi1,Guadalcanal Thicketbird,Megalurulus whitneyi,Passeriformes,Locustellidae (Grassbirds and Allies),, 22458.2,issf,guathi2,Guadalcanal Thicketbird (Santo),Megalurulus whitneyi whitneyi,Passeriformes,Locustellidae (Grassbirds and Allies),,guathi1 22458.4,issf,guathi3,Guadalcanal Thicketbird (Guadalcanal),Megalurulus whitneyi turipavae,Passeriformes,Locustellidae (Grassbirds and Allies),,guathi1 22461,species,rusthi1,Rusty Thicketbird,Megalurulus rubiginosus,Passeriformes,Locustellidae (Grassbirds and Allies),, 22462,species,lolwar1,Long-legged Warbler,Trichocichla rufa,Passeriformes,Locustellidae (Grassbirds and Allies),, 22465,species,brigra2,Bristled Grassbird,Chaetornis striata,Passeriformes,Locustellidae (Grassbirds and Allies),, 22470,species,bkcdon,Black-capped Donacobius,Donacobius atricapilla,Passeriformes,Donacobiidae (Donacobius),Donacobius, 22475,species,whtoxy1,White-throated Oxylabes,Oxylabes madagascariensis,Passeriformes,Bernieridae (Malagasy Warblers),Malagasy Warblers, 22476,species,lobber1,Long-billed Bernieria,Bernieria madagascariensis,Passeriformes,Bernieridae (Malagasy Warblers),, 22479,species,crywar1,Cryptic Warbler,Cryptosylvicola randrianasoloi,Passeriformes,Bernieridae (Malagasy Warblers),, 22480,species,wetjer2,Wedge-tailed Jery,Hartertula flavoviridis,Passeriformes,Bernieridae (Malagasy Warblers),, 22481,species,thamno2,Thamnornis,Thamnornis chloropetoides,Passeriformes,Bernieridae (Malagasy Warblers),, 22482,species,yeboxy1,Yellow-browed Oxylabes,Crossleyia xanthophrys,Passeriformes,Bernieridae (Malagasy Warblers),, 22483,species,spetet1,Spectacled Tetraka,Xanthomixis zosterops,Passeriformes,Bernieridae (Malagasy Warblers),, 22488,species,apptet1,Appert's Tetraka,Xanthomixis apperti,Passeriformes,Bernieridae (Malagasy Warblers),, 22489,species,dustet1,Dusky Tetraka,Xanthomixis tenebrosa,Passeriformes,Bernieridae (Malagasy Warblers),, 22490,species,gyctet1,Gray-crowned Tetraka,Xanthomixis cinereiceps,Passeriformes,Bernieridae (Malagasy Warblers),, 22491,species,ranwar1,Rand's Warbler,Randia pseudozosterops,Passeriformes,Bernieridae (Malagasy Warblers),, 22492,species,comjer1,Common Jery,Neomixis tenella,Passeriformes,Cisticolidae (Cisticolas and Allies),Cisticolas and Allies, 22497,species,grejer1,Green Jery,Neomixis viridis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22500,species,sttjer1,Stripe-throated Jery,Neomixis striatigula,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22500.2,spuh,jery1,jery sp.,Neomixis sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22504,species,blcapa2,Black-collared Apalis,Apalis pulchra,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22507,species,ruwapa1,Ruwenzori Apalis,Apalis ruwenzorii,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22508,species,batapa1,Bar-throated Apalis,Apalis thoracica,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22509,issf,batapa4,Bar-throated Apalis (Taita),Apalis thoracica fuscigularis,Passeriformes,Cisticolidae (Cisticolas and Allies),,batapa1 22509.3,issf,batapa3,Bar-throated Apalis (Yellow-throated),Apalis thoracica flavigularis,Passeriformes,Cisticolidae (Cisticolas and Allies),,batapa1 22509.5,issf,batapa5,Bar-throated Apalis (Namuli),Apalis thoracica lynesi,Passeriformes,Cisticolidae (Cisticolas and Allies),,batapa1 22509.8,issf,batapa2,Bar-throated Apalis (Bar-throated),Apalis thoracica [thoracica Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,batapa1 22530,species,blcapa1,Black-capped Apalis,Apalis nigriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22531,issf,bkcapa1,Black-capped Apalis (Black-capped),Apalis nigriceps nigriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),,blcapa1 22532,issf,bkcapa2,Black-capped Apalis (White-tailed),Apalis nigriceps collaris,Passeriformes,Cisticolidae (Cisticolas and Allies),,blcapa1 22533,species,bltapa1,Black-throated Apalis,Apalis jacksoni,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22537,species,whwapa1,White-winged Apalis,Apalis chariessa,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22540,species,masapa1,Masked Apalis,Apalis binotata,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22541,species,blfapa1,Black-faced Apalis,Apalis personata,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22544,species,yebapa1,Yellow-breasted Apalis,Apalis flavida,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22546,issf,yebapa2,Yellow-breasted Apalis (Brown-tailed),Apalis flavida flavocincta/viridiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),,yebapa1 22548,issf,yebapa3,Yellow-breasted Apalis (Yellow-breasted),Apalis flavida [flavida Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,yebapa1 22554,species,rudapa1,Rudd's Apalis,Apalis ruddi,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22558,species,shaapa2,Sharpe's Apalis,Apalis sharpii,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22559,species,butapa1,Buff-throated Apalis,Apalis rufogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22559.1,issf,butapa2,Buff-throated Apalis (Black-breasted),Apalis rufogularis rufogularis/sanderi,Passeriformes,Cisticolidae (Cisticolas and Allies),,butapa1 22562,issf,butapa3,Buff-throated Apalis (Angola),Apalis rufogularis angolensis/brauni,Passeriformes,Cisticolidae (Cisticolas and Allies),,butapa1 22564.1,issf,butapa4,Buff-throated Apalis (Buff-throated),Apalis rufogularis nigrescens/kigezi,Passeriformes,Cisticolidae (Cisticolas and Allies),,butapa1 22566,species,kunapa1,Kungwe Apalis,Apalis argentea,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22567,species,bamapa1,Bamenda Apalis,Apalis bamendae,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22568,species,gosapa1,Gosling's Apalis,Apalis goslingi,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22569,species,chtapa1,Chestnut-throated Apalis,Apalis porphyrolaema,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22570,issf,chtapa2,Chestnut-throated Apalis (Kabobo),Apalis porphyrolaema kaboboensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,chtapa1 22570.5,issf,chtapa3,Chestnut-throated Apalis (Chestnut-throated),Apalis porphyrolaema porphyrolaema/affinis,Passeriformes,Cisticolidae (Cisticolas and Allies),,chtapa1 22573,species,chaapa1,Chapin's Apalis,Apalis chapini,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22576,species,blhapa1,Black-headed Apalis,Apalis melanocephala,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22586,species,chiapa1,Chirinda Apalis,Apalis chirindensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22589,species,gryapa1,Gray Apalis,Apalis cinerea,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22590,issf,gryapa2,Gray Apalis (Sclater's),Apalis cinerea sclateri,Passeriformes,Cisticolidae (Cisticolas and Allies),,gryapa1 22591,issf,gryapa3,Gray Apalis (Angola),Apalis cinerea grandis,Passeriformes,Cisticolidae (Cisticolas and Allies),,gryapa1 22592,issf,gryapa4,Gray Apalis (Gray),Apalis cinerea cinerea/funebris,Passeriformes,Cisticolidae (Cisticolas and Allies),,gryapa1 22594,species,brhapa1,Brown-headed Apalis,Apalis alticola,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22597,species,karapa1,Karamoja Apalis,Apalis karamojae,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22600,spuh,apalis1,Apalis sp.,Apalis sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22600.3,species,mitbab1,Leyte Plumed-Warbler,Micromacronus leytensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22600.4,species,minmib1,Mindanao Plumed-Warbler,Micromacronus sordidus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22600.5,species,whtwar1,White-tailed Warbler,Poliolais lopezi,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22600.6,issf,whtwar2,White-tailed Warbler (Highland),Poliolais lopezi manengubae,Passeriformes,Cisticolidae (Cisticolas and Allies),,whtwar1 22600.7,issf,whtwar3,White-tailed Warbler (Alexander's),Poliolais lopezi alexanderi,Passeriformes,Cisticolidae (Cisticolas and Allies),,whtwar1 22600.8,issf,whtwar4,White-tailed Warbler (Bioko),Poliolais lopezi lopezi,Passeriformes,Cisticolidae (Cisticolas and Allies),,whtwar1 22601,species,grbcam1,Green-backed Camaroptera,Camaroptera brachyura,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22602,issf,gnbcam3,Green-backed Camaroptera (Hartert's),Camaroptera brachyura harterti,Passeriformes,Cisticolidae (Cisticolas and Allies),,grbcam1 22602.5,issf,gnbcam2,Green-backed Camaroptera (Gray-backed),Camaroptera brachyura [brevicaudata Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,grbcam1 22613,issf,gnbcam1,Green-backed Camaroptera (Green-backed),Camaroptera brachyura [brachyura Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,grbcam1 22619,species,yebcam1,Yellow-browed Camaroptera,Camaroptera superciliaris,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22620,species,olgcam1,Olive-green Camaroptera,Camaroptera chloronota,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22620.2,spuh,camaro1,Camaroptera sp.,Camaroptera sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22626,species,refwar2,Red-fronted Warbler,Urorhipis rufifrons,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22626.5,issf,refwar1,Red-fronted Warbler (Red-fronted),Urorhipis rufifrons rufifrons/smithi,Passeriformes,Cisticolidae (Cisticolas and Allies),,refwar2 22629,issf,refwar3,Red-fronted Warbler (Rufous-backed),Urorhipis rufifrons rufidorsalis,Passeriformes,Cisticolidae (Cisticolas and Allies),,refwar2 22630,species,miowrw1,Miombo Wren-Warbler,Calamonastes undosus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22630.5,issf,miowrw2,Miombo Wren-Warbler (Miombo),Calamonastes undosus [undosus Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,miowrw1 22634.5,issf,miowrw3,Miombo Wren-Warbler (Stierling's),Calamonastes undosus [stierlingi Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,miowrw1 22639,species,grywrw1,Gray Wren-Warbler,Calamonastes simplex,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22640,species,bawwar1,Barred Wren-Warbler,Calamonastes fasciolatus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22644,species,kopwar1,Kopje Warbler,Euryptila subcinnamomea,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22647,species,silpri2,Sierra Leone Prinia,Schistolais leontica,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22648,species,whcpri2,White-chinned Prinia,Schistolais leucopogon,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22651,species,afrtai2,African Tailorbird,Artisornis metopias,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22654,species,lobtai1,Long-billed Tailorbird,Artisornis moreaui,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22655,issf,lobtai2,Long-billed Tailorbird (Long-billed),Artisornis moreaui moreaui,Passeriformes,Cisticolidae (Cisticolas and Allies),,lobtai1 22656,issf,lobtai3,Long-billed Tailorbird (Njesi),Artisornis moreaui sousae,Passeriformes,Cisticolidae (Cisticolas and Allies),,lobtai1 22657,species,ruewar2,Rufous-eared Warbler,Malcorus pectoralis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22661,species,rwgwar2,Red-winged Gray Warbler,Drymocichla incana,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22662,species,grnlon1,Green Longtail,Urolais epichlorus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22662.5,issf,grnlon2,Green Longtail (Green),Urolais epichlorus epichlorus,Passeriformes,Cisticolidae (Cisticolas and Allies),,grnlon1 22664,issf,grnlon3,Green Longtail (Bioko),Urolais epichlorus mariae,Passeriformes,Cisticolidae (Cisticolas and Allies),,grnlon1 22665,species,crilon1,Cricket Longtail,Spiloptila clamans,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22665.3,species,mrmwar1,Mrs. Moreau's Warbler,Scepomycter winifredae,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22665.6,issf,mrmwar2,Mrs. Moreau's Warbler (Mrs. Moreau's),Scepomycter winifredae winifredae,Passeriformes,Cisticolidae (Cisticolas and Allies),,mrmwar1 22665.9,issf,mrmwar3,Mrs. Moreau's Warbler (Rubeho),Scepomycter winifredae rubehoensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,mrmwar1 22666,species,refcis1,Red-faced Cisticola,Cisticola erythrops,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22666.5,issf,refcis2,Red-faced Cisticola (Red-faced),Cisticola erythrops [erythrops Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,refcis1 22672,issf,refcis3,Red-faced Cisticola (Lepe),Cisticola erythrops lepe,Passeriformes,Cisticolidae (Cisticolas and Allies),,refcis1 22673,species,sincis1,Singing Cisticola,Cisticola cantans,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22681,species,whicis1,Whistling Cisticola,Cisticola lateralis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22685,species,chacis1,Chattering Cisticola,Cisticola anonymus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22686,species,tricis1,Trilling Cisticola,Cisticola woosnami,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22689,species,bubcis1,Bubbling Cisticola,Cisticola bulliens,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22692,species,chucis1,Chubb's Cisticola,Cisticola chubbi,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22692.5,issf,chucis3,Chubb's Cisticola (Discolored),Cisticola chubbi discolor/adametzi,Passeriformes,Cisticolidae (Cisticolas and Allies),,chucis1 22694.5,issf,chucis4,Chubb's Cisticola (Chubb's),Cisticola chubbi chubbi/marungensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,chucis1 22697,species,huncis1,Hunter's Cisticola,Cisticola hunteri,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22698,species,bllcis1,Black-lored Cisticola,Cisticola nigriloris,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22698.5,form,kilcis1,Kilombero Cisticola (undescribed form),Cisticola [undescribed Kilombero form],Passeriformes,Cisticolidae (Cisticolas and Allies),, 22699,species,rolcis2,Rock-loving Cisticola,Cisticola aberrans,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22699.5,issf,rolcis1,Rock-loving Cisticola (Rock-loving),Cisticola aberrans [emini Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,rolcis2 22703.5,issf,rolcis3,Rock-loving Cisticola (Lazy),Cisticola aberrans [aberrans Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,rolcis2 22708,species,borcis1,Boran Cisticola,Cisticola bodessa,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22711,species,ratcis1,Rattling Cisticola,Cisticola chiniana,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22729,species,ashcis1,Ashy Cisticola,Cisticola cinereolus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22732,species,repcis1,Red-pate Cisticola,Cisticola ruficeps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22737,species,dorcis1,Dorst's Cisticola,Cisticola guinea,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22738,species,grycis1,Tinkling Cisticola,Cisticola rufilatus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22742,species,rehcis2,Red-headed Cisticola,Cisticola subruficapilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22743,issf,rehcis1,Red-headed Cisticola (Namib),Cisticola subruficapilla newtoni,Passeriformes,Cisticolidae (Cisticolas and Allies),,rehcis2 22743.5,issf,rehcis3,Red-headed Cisticola (Red-headed),Cisticola subruficapilla [subruficapilla Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,rehcis2 22748,issf,rehcis4,Red-headed Cisticola (Plain-breasted),Cisticola subruficapilla jamesi,Passeriformes,Cisticolidae (Cisticolas and Allies),,rehcis2 22749,species,waicis1,Wailing Cisticola,Cisticola lais,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22751,issf,waicis2,Wailing Cisticola (Lynes's),Cisticola lais distinctus,Passeriformes,Cisticolidae (Cisticolas and Allies),,waicis1 22751.5,issf,waicis3,Wailing Cisticola (Wailing),Cisticola lais [lais Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,waicis1 22758,species,tarcis1,Tana River Cisticola,Cisticola restrictus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22759,species,chucis2,Churring Cisticola,Cisticola njombe,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22762,species,wincis1,Winding Cisticola,Cisticola galactotes,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22762.5,issf,wincis3,Winding Cisticola (Winding),Cisticola galactotes [marginatus Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,wincis1 22767.5,issf,wincis2,Winding Cisticola (Rufous-winged),Cisticola galactotes [galactotes Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,wincis1 22771,issf,wincis5,Winding Cisticola (Luapula),Cisticola galactotes luapula,Passeriformes,Cisticolidae (Cisticolas and Allies),,wincis1 22772,issf,wincis6,Winding Cisticola (Ethiopian),Cisticola galactotes lugubris,Passeriformes,Cisticolidae (Cisticolas and Allies),,wincis1 22773,issf,wincis4,Winding Cisticola (Coastal),Cisticola galactotes haematocephala,Passeriformes,Cisticolidae (Cisticolas and Allies),,wincis1 22773.5,form,whtcis1,White-tailed Cisticola (undescribed form),Cisticola [undescribed White-tailed form],Passeriformes,Cisticolidae (Cisticolas and Allies),, 22774,species,chicis1,Chirping Cisticola,Cisticola pipiens,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22778,species,carcis1,Carruthers's Cisticola,Cisticola carruthersi,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22779,species,tincis1,Levaillant's Cisticola,Cisticola tinniens,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22785,species,stocis1,Stout Cisticola,Cisticola robustus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22786,issf,stocis2,Stout Cisticola (Western),Cisticola robustus santae,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 22786.5,issf,stocis3,Stout Cisticola (Stout),Cisticola robustus robustus/schraderi,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 22788.3,issf,stocis4,Stout Cisticola (Omo),Cisticola robustus omo,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 22788.5,issf,stocis5,Stout Cisticola (Rufous-crowned),Cisticola robustus nuchalis/awemba,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 22792.5,issf,stocis6,Stout Cisticola (Angola),Cisticola robustus angolensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 22793,species,crocis1,Croaking Cisticola,Cisticola natalensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22801,species,pipcis2,Piping Cisticola,Cisticola fulvicapilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22811,species,abecis1,Aberdare Cisticola,Cisticola aberdare,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22812,species,tabcis1,Tabora Cisticola,Cisticola angusticauda,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22813,species,sltcis1,Slender-tailed Cisticola,Cisticola melanurus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22814,species,sifcis1,Siffling Cisticola,Cisticola brachypterus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22824,species,rufcis1,Rufous Cisticola,Cisticola rufus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22825,species,foxcis1,Foxy Cisticola,Cisticola troglodytes,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22828,species,tincis3,Tiny Cisticola,Cisticola nana,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22829,species,zitcis1,Zitting Cisticola,Cisticola juncidis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22829.5,issf,zitcis2,Zitting Cisticola (Zitting),Cisticola juncidis [juncidis Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,zitcis1 22844,issf,zitcis3,Zitting Cisticola (African),Cisticola juncidis terrestris/uropygialis,Passeriformes,Cisticolidae (Cisticolas and Allies),,zitcis1 22847,species,soccis1,Socotra Cisticola,Cisticola haesitatus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22848,species,madcis2,Madagascar Cisticola,Cisticola cherina,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22849,species,descis1,Desert Cisticola,Cisticola aridulus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22859,species,clocis1,Cloud Cisticola,Cisticola textrix,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22859.5,issf,clocis2,Cloud Cisticola (Cloud),Cisticola textrix [major Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,clocis1 22864,issf,clocis3,Cloud Cisticola (Cape),Cisticola textrix textrix,Passeriformes,Cisticolidae (Cisticolas and Allies),,clocis1 22865,species,blncis1,Black-backed Cisticola,Cisticola eximius,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22865.3,issf,bkncis1,Black-backed Cisticola (winneba),Cisticola eximius winneba,Passeriformes,Cisticolidae (Cisticolas and Allies),,blncis1 22865.7,issf,bkncis2,Black-backed Cisticola (Black-backed),Cisticola eximius eximius/occidens,Passeriformes,Cisticolidae (Cisticolas and Allies),,blncis1 22869,species,clscis1,Cloud-scraping Cisticola,Cisticola dambo,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22872,species,pepcis1,Pectoral-patch Cisticola,Cisticola brunnescens,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22873,issf,pepcis2,Pectoral-patch Cisticola (Lynes's),Cisticola brunnescens lynesi/mbangensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,pepcis1 22873.6,issf,pepcis3,Pectoral-patch Cisticola (Pectoral-patch),Cisticola brunnescens [brunnescens Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,pepcis1 22879,species,paccis1,Pale-crowned Cisticola,Cisticola cinnamomeus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22883,species,wiscis1,Wing-snapping Cisticola,Cisticola ayresii,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22884,issf,wiscis2,Wing-snapping Cisticola (Gabon),Cisticola ayresii gabun,Passeriformes,Cisticolidae (Cisticolas and Allies),,wiscis1 22884.5,issf,wiscis3,Wing-snapping Cisticola (Wing-snapping),Cisticola ayresii [ayresii Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,wiscis1 22890,species,gohcis1,Golden-headed Cisticola,Cisticola exilis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22903,spuh,cistic1,cisticola sp.,Cisticola sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22904,species,socwar2,Socotra Warbler,Incana incana,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22914,species,oriwar2,Oriole Warbler,Hypergerus atriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22915,species,gycwar3,Gray-capped Warbler,Eminia lepida,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22916,species,bkcruw1,Black-capped Rufous-Warbler,Bathmocercus cerviniventris,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22917,species,bkfruw1,Black-faced Rufous-Warbler,Bathmocercus rufus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22921,species,bubwar2,Buff-bellied Warbler,Phyllolais pulchella,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22922,species,comtai1,Common Tailorbird,Orthotomus sutorius,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22932,species,ruftai1,Rufous-fronted Tailorbird,Orthotomus frontalis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22935,species,dantai1,Dark-necked Tailorbird,Orthotomus atrogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22939,species,camtai1,Cambodian Tailorbird,Orthotomus chaktomuk,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22940,species,ashtai1,Ashy Tailorbird,Orthotomus ruficeps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22949,species,olbtai1,Olive-backed Tailorbird,Orthotomus sepium,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22952,species,ruttai1,Rufous-tailed Tailorbird,Orthotomus sericeus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22957,species,phitai1,Visayan Tailorbird,Orthotomus castaneiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22960,species,gybtai1,Gray-backed Tailorbird,Orthotomus derbianus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22963,species,gnbtai1,Green-backed Tailorbird,Orthotomus chloronotus,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22964,species,yebtai1,Yellow-breasted Tailorbird,Orthotomus samarensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22965,species,whbtai1,White-browed Tailorbird,Orthotomus nigriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22966,species,whetai1,White-eared Tailorbird,Orthotomus cinereiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22969,spuh,tailor1,tailorbird sp.,Orthotomus sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22970,species,ruvpri1,Rufous-vented Prinia,Prinia burnesii,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22971,species,swapri1,Swamp Prinia,Prinia cinerascens,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22972,species,strpri2,Striated Prinia,Prinia crinigera,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22979,species,bropri1,Brown Prinia,Prinia polychroa,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22984,species,hilpri1,Black-throated Prinia,Prinia atrogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22984.2,issf,bktpri1,Black-throated Prinia (Black-throated),Prinia atrogularis atrogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),,hilpri1 22984.4,issf,bktpri2,Black-throated Prinia (Rufous-crowned),Prinia atrogularis khasiana,Passeriformes,Cisticolidae (Cisticolas and Allies),,hilpri1 22986.5,species,hilpri2,Hill Prinia,Prinia superciliaris,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22992,species,gycpri1,Gray-crowned Prinia,Prinia cinereocapilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22993,species,rufpri2,Rufous-fronted Prinia,Prinia buchanani,Passeriformes,Cisticolidae (Cisticolas and Allies),, 22994,species,rufpri1,Rufescent Prinia,Prinia rufescens,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23001,species,gybpri1,Gray-breasted Prinia,Prinia hodgsonii,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23008,species,bawpri1,Bar-winged Prinia,Prinia familiaris,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23011,species,grapri1,Graceful Prinia,Prinia gracilis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23024,species,junpri1,Jungle Prinia,Prinia sylvatica,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23030,species,yebpri1,Yellow-bellied Prinia,Prinia flaviventris,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23030.2,issf,yebpri2,Yellow-bellied Prinia (Yellow-bellied),Prinia flaviventris [flaviventris Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,yebpri1 23030.4,issf,yebpri3,Yellow-bellied Prinia (Chinese),Prinia flaviventris sonitans,Passeriformes,Cisticolidae (Cisticolas and Allies),,yebpri1 23038,species,ashpri1,Ashy Prinia,Prinia socialis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23042.5,slash,y01001,Yellow-bellied/Ashy Prinia,Prinia flaviventris/socialis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23043,species,tafpri1,Tawny-flanked Prinia,Prinia subflava,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23054,species,plapri1,Plain Prinia,Prinia inornata,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23065,species,palpri1,Pale Prinia,Prinia somalica,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23068,species,rivpri1,River Prinia,Prinia fluviatilis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23069,species,blcpri1,Black-chested Prinia,Prinia flavicans,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23075,species,karpri1,Karoo Prinia,Prinia maculosa,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23079,species,drapri1,Drakensberg Prinia,Prinia hypoxantha,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23080,species,nampri1,Namaqua Prinia,Prinia substriata,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23083,species,satpri1,Sao Tome Prinia,Prinia molleri,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23084,species,robpri1,Roberts's Prinia,Prinia robertsi,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23085,species,banpri1,Banded Prinia,Prinia bairdii,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23085.5,issf,banpri2,Banded Prinia (Banded),Prinia bairdii bairdii/heinrichi,Passeriformes,Cisticolidae (Cisticolas and Allies),,banpri1 23087.5,issf,banpri3,Banded Prinia (Black-faced),Prinia bairdii melanops/obscura,Passeriformes,Cisticolidae (Cisticolas and Allies),,banpri1 23090,species,rewpri1,Red-winged Prinia,Prinia erythroptera,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23095,spuh,prinia1,prinia sp.,Prinia sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23096,species,salere1,Salvadori's Eremomela,Eremomela salvadorii,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23097,species,yevere1,Yellow-vented Eremomela,Eremomela flavicrissalis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23098,species,yebere1,Yellow-bellied Eremomela,Eremomela icteropygialis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23108,species,senere1,Senegal Eremomela,Eremomela pusilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23109,species,grbere1,Green-backed Eremomela,Eremomela canescens,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23114,species,greere1,Greencap Eremomela,Eremomela scotops,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23120,species,yerere1,Yellow-rumped Eremomela,Eremomela gregalis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23123,species,rucere1,Rufous-crowned Eremomela,Eremomela badiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23127,species,turere1,Turner's Eremomela,Eremomela turneri,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23130,species,blnere1,Black-necked Eremomela,Eremomela atricollis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23131,species,bunere1,Burnt-neck Eremomela,Eremomela usticollis,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23134,spuh,eremom1,Eremomela sp.,Eremomela sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, 23135,species,abycat1,Abyssinian Catbird,Parophasma galinieri,Passeriformes,Sylviidae (Sylviid Warblers),Sylviid Warblers, 23136,species,afhbab1,African Hill Babbler,Sylvia abyssinica,Passeriformes,Sylviidae (Sylviid Warblers),, 23136.01,issf,afhbab2,African Hill Babbler (African),Sylvia abyssinica abyssinica/stictigula,Passeriformes,Sylviidae (Sylviid Warblers),,afhbab1 23136.02,issf,afhbab4,African Hill Babbler (Mt. Cameroon),Sylvia abyssinica monachus,Passeriformes,Sylviidae (Sylviid Warblers),,afhbab1 23136.03,issf,afhbab5,African Hill Babbler (Claude's),Sylvia abyssinica claudei,Passeriformes,Sylviidae (Sylviid Warblers),,afhbab1 23136.04,issf,afhbab6,African Hill Babbler (Stierling's),Sylvia abyssinica stierlingi,Passeriformes,Sylviidae (Sylviid Warblers),,afhbab1 23136.06,issf,afhbab3,African Hill Babbler (Ruwenzori),Sylvia abyssinica atriceps,Passeriformes,Sylviidae (Sylviid Warblers),,afhbab1 23136.07,species,busbla1,Bush Blackcap,Sylvia nigricapilla,Passeriformes,Sylviidae (Sylviid Warblers),, 23136.08,species,dohthb1,Dohrn's Thrush-Babbler,Sylvia dohrni,Passeriformes,Sylviidae (Sylviid Warblers),, 23136.09,species,blackc1,Eurasian Blackcap,Sylvia atricapilla,Passeriformes,Sylviidae (Sylviid Warblers),, 23142,species,garwar1,Garden Warbler,Sylvia borin,Passeriformes,Sylviidae (Sylviid Warblers),, 23145,species,afdwar1,African Desert Warbler,Sylvia deserti,Passeriformes,Sylviidae (Sylviid Warblers),, 23146,species,asdwar1,Asian Desert Warbler,Sylvia nana,Passeriformes,Sylviidae (Sylviid Warblers),, 23147,species,barwar1,Barred Warbler,Sylvia nisoria,Passeriformes,Sylviidae (Sylviid Warblers),, 23150,species,laywar2,Layard's Warbler,Sylvia layardi,Passeriformes,Sylviidae (Sylviid Warblers),, 23155,species,banwar2,Banded Warbler,Sylvia boehmi,Passeriformes,Sylviidae (Sylviid Warblers),, 23159,species,ruvwar2,Rufous-vented Warbler,Sylvia subcaerulea,Passeriformes,Sylviidae (Sylviid Warblers),, 23164,species,smawhi1,Desert Whitethroat,Sylvia minula,Passeriformes,Sylviidae (Sylviid Warblers),, 23165,species,humwhi1,Hume's Whitethroat,Sylvia althaea,Passeriformes,Sylviidae (Sylviid Warblers),, 23166,species,leswhi1,Lesser Whitethroat,Sylvia curruca,Passeriformes,Sylviidae (Sylviid Warblers),, 23166.2,issf,leswhi2,Lesser Whitethroat (curruca/blythi),Sylvia curruca curruca/blythi,Passeriformes,Sylviidae (Sylviid Warblers),,leswhi1 23166.4,issf,leswhi3,Lesser Whitethroat (halimodendri),Sylvia curruca halimodendri,Passeriformes,Sylviidae (Sylviid Warblers),,leswhi1 23166.6,slash,y01048,Desert/Lesser Whitethroat,Sylvia minula/curruca,Passeriformes,Sylviidae (Sylviid Warblers),, 23172,slash,y00752,Hume's/Lesser Whitethroat,Sylvia althaea/curruca,Passeriformes,Sylviidae (Sylviid Warblers),, 23172.2,slash,y01049,Desert/Hume's/Lesser Whitethroat,Sylvia minula/althaea/curruca,Passeriformes,Sylviidae (Sylviid Warblers),, 23173,species,marwhi1,Margelanic Whitethroat,Sylvia margelanica,Passeriformes,Sylviidae (Sylviid Warblers),, 23173.2,slash,y01050,Desert/Margelanic Whitethroat,Sylvia minula/margelanica,Passeriformes,Sylviidae (Sylviid Warblers),, 23174,species,yemwar1,Yemen Warbler,Sylvia buryi,Passeriformes,Sylviidae (Sylviid Warblers),, 23175,species,brnwar1,Brown Warbler,Sylvia lugens,Passeriformes,Sylviidae (Sylviid Warblers),, 23175.5,issf,brnwar2,Brown Warbler (Brown),Sylvia lugens [lugens Group],Passeriformes,Sylviidae (Sylviid Warblers),,brnwar1 23181.3,issf,brnwar3,Brown Warbler (Gray-vented),Sylvia lugens griseiventris,Passeriformes,Sylviidae (Sylviid Warblers),,brnwar1 23181.5,species,reswar1,Arabian Warbler,Sylvia leucomelaena,Passeriformes,Sylviidae (Sylviid Warblers),, 23186,species,weowar2,Western Orphean Warbler,Sylvia hortensis,Passeriformes,Sylviidae (Sylviid Warblers),, 23187,species,eaowar2,Eastern Orphean Warbler,Sylvia crassirostris,Passeriformes,Sylviidae (Sylviid Warblers),, 23190.5,slash,y00816,Western/Eastern Orphean Warbler,Sylvia hortensis/crassirostris,Passeriformes,Sylviidae (Sylviid Warblers),, 23191,species,triwar1,Tristram's Warbler,Sylvia deserticola,Passeriformes,Sylviidae (Sylviid Warblers),, 23194,species,cypwar1,Cyprus Warbler,Sylvia melanothorax,Passeriformes,Sylviidae (Sylviid Warblers),, 23195,species,menwar1,Menetries's Warbler,Sylvia mystacea,Passeriformes,Sylviidae (Sylviid Warblers),, 23199,species,ruewar1,RŸppell's Warbler,Sylvia ruppeli,Passeriformes,Sylviidae (Sylviid Warblers),, 23200,species,subwar1,Subalpine Warbler,Sylvia cantillans,Passeriformes,Sylviidae (Sylviid Warblers),, 23200.5,form,subwar9,Subalpine Warbler (cantillans/inornata),Sylvia cantillans cantillans/inornata,Passeriformes,Sylviidae (Sylviid Warblers),,subwar1 23201,issf,subwar5,Subalpine Warbler (cantillans),Sylvia cantillans cantillans,Passeriformes,Sylviidae (Sylviid Warblers),,subwar1 23203,issf,subwar6,Subalpine Warbler (inornata),Sylvia cantillans inornata,Passeriformes,Sylviidae (Sylviid Warblers),,subwar1 23204,issf,subwar7,Subalpine Warbler (albistriata),Sylvia cantillans albistriata,Passeriformes,Sylviidae (Sylviid Warblers),,subwar1 23204.3,species,subwar8,Moltoni's Warbler,Sylvia subalpina,Passeriformes,Sylviidae (Sylviid Warblers),, 23204.6,slash,y00909,Subalpine/Moltoni's Warbler,Sylvia cantillans/subalpina,Passeriformes,Sylviidae (Sylviid Warblers),, 23205,species,sarwar1,Sardinian Warbler,Sylvia melanocephala,Passeriformes,Sylviidae (Sylviid Warblers),, 23209,species,grewhi1,Greater Whitethroat,Sylvia communis,Passeriformes,Sylviidae (Sylviid Warblers),, 23214,species,spewar2,Spectacled Warbler,Sylvia conspicillata,Passeriformes,Sylviidae (Sylviid Warblers),, 23217,species,marwar1,Marmora's Warbler,Sylvia sarda,Passeriformes,Sylviidae (Sylviid Warblers),, 23218,species,darwar1,Dartford Warbler,Sylvia undata,Passeriformes,Sylviidae (Sylviid Warblers),, 23222,species,balwar1,Balearic Warbler,Sylvia balearica,Passeriformes,Sylviidae (Sylviid Warblers),, 23223,spuh,sylvia1,Sylvia sp.,Sylvia sp.,Passeriformes,Sylviidae (Sylviid Warblers),, 23224,species,fitmyz1,Fire-tailed Myzornis,Myzornis pyrrhoura,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)","Parrotbills, Wrentit, and Allies", 23295.1,species,gobful1,Golden-breasted Fulvetta,Lioparus chrysotis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23296,species,yeebab1,Yellow-eyed Babbler,Chrysomma sinense,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23301,species,jerbab1,Jerdon's Babbler,Chrysomma altirostre,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305,species,rutbab1,Rufous-tailed Babbler,Chrysomma poecilotis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.01,species,speful1,Spectacled Fulvetta,Fulvetta ruficapilla,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.04,species,indful1,Indochinese Fulvetta,Fulvetta danisi,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.07,species,chiful1,Chinese Fulvetta,Fulvetta striaticollis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.08,species,whbful1,White-browed Fulvetta,Fulvetta vinipectus,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.17,species,taiful1,Taiwan Fulvetta,Fulvetta formosana,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.18,species,sttful1,Gray-hooded Fulvetta,Fulvetta cinereiceps,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.23,species,sttful2,Streak-throated Fulvetta,Fulvetta manipurensis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23305.3,spuh,fulvet2,Fulvetta sp.,Fulvetta sp.,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23306.5,species,tarbab1,Tarim Babbler,Rhopophilus albosuperciliaris,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23307.5,species,beibab1,Beijing Babbler,Rhopophilus pekinensis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23308,species,wrenti,Wrentit,Chamaea fasciata,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23310,species,grepar1,Great Parrotbill,Conostoma aemodium,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23311,species,bropar1,Brown Parrotbill,Cholornis unicolor,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23311.3,species,thtpar1,Three-toed Parrotbill,Cholornis paradoxa,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23312,species,gyhpar3,Gray-headed Parrotbill,Psittiparus gularis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23319,species,bkhpar1,Black-headed Parrotbill,Psittiparus margaritae,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23319.2,hybrid,x00815,Gray-headed x Black-headed Parrotbill (hybrid),Psittiparus gularis x margaritae,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23320,species,ruhpar3,White-breasted Parrotbill,Psittiparus ruficeps,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23321,species,ruhpar2,Rufous-headed Parrotbill,Psittiparus bakeri,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23323,species,blbpar2,Black-breasted Parrotbill,Paradoxornis flavirostris,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23324,species,spbpar1,Spot-breasted Parrotbill,Paradoxornis guttaticollis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23325,species,reepar3,Reed Parrotbill,Paradoxornis heudei,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23326,issf,reepar5,Reed Parrotbill (Northern),Paradoxornis heudei polivanovi,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,reepar3 23327,issf,reepar4,Reed Parrotbill (Reed),Paradoxornis heudei heudei,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,reepar3 23328,species,blbpar3,Pale-billed Parrotbill,Chleuasicus atrosuperciliaris,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23331,species,spepar2,Spectacled Parrotbill,Sinosuthora conspicillata,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23334,species,vitpar1,Vinous-throated Parrotbill,Sinosuthora webbiana,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23341,species,brwpar2,Brown-winged Parrotbill,Sinosuthora brunnea,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23341.2,issf,bnwpar1,Brown-winged Parrotbill (Yunnan),Sinosuthora brunnea ricketti,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,brwpar2 23341.4,issf,bnwpar2,Brown-winged Parrotbill (Brown-winged),Sinosuthora brunnea brunnea/styani,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,brwpar2 23345,species,astpar1,Ashy-throated Parrotbill,Sinosuthora alphonsiana,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23348,species,gyhpar4,Gray-hooded Parrotbill,Sinosuthora zappeyi,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23349,species,rutpar2,Rusty-throated Parrotbill,Sinosuthora przewalskii,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23349.5,species,fulpar1,Fulvous Parrotbill,Suthora fulvifrons,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23353,species,bltpar1,Black-throated Parrotbill,Suthora nipalensis,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23354,issf,bktpar1,Black-throated Parrotbill (Black-throated),Suthora nipalensis nipalensis/crocotius,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,bltpar1 23355,issf,bktpar2,Black-throated Parrotbill (Orange-eared),Suthora nipalensis humii,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,bltpar1 23355.5,issf,bktpar3,Black-throated Parrotbill (Gray-breasted),Suthora nipalensis poliotis/feae,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,bltpar1 23358,issf,bktpar4,Black-throated Parrotbill (Buff-breasted),Suthora nipalensis ripponi/patriciae,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,bltpar1 23362,issf,bktpar5,Black-throated Parrotbill (Black-eared),Suthora nipalensis beaulieu/kamoli,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",,bltpar1 23365,species,golpar2,Golden Parrotbill,Suthora verreauxi,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23370,species,shtpar3,Short-tailed Parrotbill,Neosuthora davidiana,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23370.2,spuh,parrot1,parrotbill sp.,Paradoxornithidae sp.,Passeriformes,"Paradoxornithidae (Parrotbills, Wrentit, and Allies)",, 23377.0001,species,stryuh1,Striated Yuhina,Yuhina castaniceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)","White-eyes, Yuhinas, and Allies", 23377.0006,species,indyuh1,Indochinese Yuhina,Yuhina torqueola,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0007,species,chcyuh1,Chestnut-crested Yuhina,Yuhina everetti,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0008,species,whnyuh1,White-naped Yuhina,Yuhina bakeri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0009,species,whiyuh1,Whiskered Yuhina,Yuhina flavicollis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0016,species,buryuh1,Burmese Yuhina,Yuhina humilis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0017,species,sttyuh1,Stripe-throated Yuhina,Yuhina gularis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0022,species,whcyuh1,White-collared Yuhina,Yuhina diademata,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0023,species,ruvyuh1,Rufous-vented Yuhina,Yuhina occipitalis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0026,species,taiyuh1,Taiwan Yuhina,Yuhina brunneiceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0027,species,blcyuh1,Black-chinned Yuhina,Yuhina nigrimenta,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00275,spuh,yuhina1,yuhina sp.,Yuhina sp.,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00301,species,chfbab1,Chestnut-faced Babbler,Zosterornis whiteheadi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00304,species,lusbab1,Luzon Striped-Babbler,Zosterornis striatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00305,species,pasbab2,Panay Striped-Babbler,Zosterornis latistriatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00306,species,nesbab1,Negros Striped-Babbler,Zosterornis nigrorum,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00307,species,pasbab1,Palawan Striped-Babbler,Zosterornis hypogrammicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00308,species,jgtwhe1,Javan Gray-throated White-eye,Lophozosterops javanicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00312,species,sthwhe1,Streak-headed White-eye,Lophozosterops squamiceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00319,species,gyhwhe1,Gray-hooded White-eye,Lophozosterops pinaiae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0032,species,minwhe1,Mindanao White-eye,Lophozosterops goodfellowi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00324,species,whbwhe1,White-browed White-eye,Lophozosterops superciliaris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00327,species,dacwhe1,Dark-crowned White-eye,Lophozosterops dohertyi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0033,species,pyweye1,Pygmy White-eye,Oculocincta squamifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00331,species,flowhe1,Flores White-eye,Heleia crassirostris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00332,species,timwhe1,Timor White-eye,Heleia muelleri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00333,species,mouble1,Mountain Black-eye,Chlorocharis emiliae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00338,species,beweye1,Bare-eyed White-eye,Woodfordia superciliosa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00339,species,saweye2,Sanford's White-eye,Woodfordia lacertosa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0034,species,giweye1,Giant White-eye,Megazosterops palauensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00341,species,trweye1,Truk White-eye,Rukia ruki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00342,species,lbweye2,Long-billed White-eye,Rukia longirostra,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00343,species,goweye1,Golden White-eye,Cleptornis marchei,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00344,species,bonhon1,Bonin White-eye,Apalopteron familiare,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00347,species,rufwhe1,Rufescent White-eye,Tephrozosterops stalkeri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0035,species,gocbab1,Golden-crowned Babbler,Sterrhoptilus dennistouni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00351,species,blcbab3,Black-crowned Babbler,Sterrhoptilus nigrocapitatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00355,species,rucbab3,Rusty-crowned Babbler,Sterrhoptilus capitalis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00359,species,fltbab1,Flame-templed Babbler,Dasycrotapha speciosa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0036,species,vispyb1,Visayan Pygmy-Babbler,Dasycrotapha pygmaea,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00361,species,pygbab1,Mindanao Pygmy-Babbler,Dasycrotapha plateni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00362,species,marwhe1,Marianne White-eye,Zosterops semiflavus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00363,species,coweye1,Comoro White-eye,Zosterops mouroniensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00363,species,reuwhe1,Reunion White-eye,Zosterops olivaceus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00363,species,mauwhe1,Mauritius White-eye,Zosterops chloronothos,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00364,species,maswhe2,Reunion Gray White-eye,Zosterops borbonicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00364,species,maswhe3,Mauritius Gray White-eye,Zosterops mauritianus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00364,species,ayweye1,African Yellow White-eye,Zosterops senegalensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00364,issf,afywhe1,African Yellow White-eye (Forest),Zosterops senegalensis stenocricotus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,ayweye1 23377.00364,issf,afywhe2,African Yellow White-eye (African Yellow),Zosterops senegalensis [senegalensis Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,ayweye1 23377.00378,species,camspe1,Cameroon Speirops,Zosterops melanocephalus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00379,species,fepspe1,Bioko Speirops,Zosterops brunneus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0038,species,brrwhe1,Broad-ringed White-eye,Zosterops poliogastrus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00381,issf,brrwhe2,Broad-ringed White-eye (Montane),Zosterops poliogastrus [poliogastrus Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brrwhe1 23377.00388,issf,brrwhe5,Broad-ringed White-eye (Kulal),Zosterops poliogastrus kulalensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brrwhe1 23377.00388,issf,brrwhe3,Broad-ringed White-eye (Kikuyu),Zosterops poliogastrus kikuyuensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brrwhe1 23377.00389,issf,brrwhe4,Broad-ringed White-eye (Taita),Zosterops poliogastrus silvanus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brrwhe1 23377.0039,species,wbweye1,White-breasted White-eye,Zosterops abyssinicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00392,issf,whbwhe2,White-breasted White-eye (Abyssinian),Zosterops abyssinicus [abyssinicus Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,wbweye1 23377.00395,issf,whbwhe3,White-breasted White-eye (Kenya),Zosterops abyssinicus flavilateralis/jubaensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,wbweye1 23377.00397,species,capwhe2,Cape White-eye,Zosterops capensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00398,issf,capwhe4,Cape White-eye (Cape),Zosterops capensis [capensis Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe2 23377.00402,issf,capwhe5,Cape White-eye (Green),Zosterops capensis virens,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe2 23377.00403,species,capwhe6,Orange River White-eye,Zosterops pallidus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00406,species,peweye1,Pemba White-eye,Zosterops vaughani,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00407,species,seywhe1,Seychelles White-eye,Zosterops modestus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00408,species,mohwhe1,Moheli White-eye,Zosterops comorensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00408,species,madwhe1,Madagascar White-eye,Zosterops maderaspatanus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00416,species,aldwhe1,Aldabra White-eye,Zosterops aldabrensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00417,species,anjwhe1,Anjouan White-eye,Zosterops anjuanensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00418,species,kirwhe1,Kirk's White-eye,Zosterops kirki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00418,species,maywhe1,Mayotte White-eye,Zosterops mayottensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00418,species,blcspe1,Black-capped Speirops,Zosterops lugubris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00418,species,prispe1,Principe Speirops,Zosterops leucophaeus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00419,species,satwhe2,Sao Tome White-eye,Zosterops feae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0042,species,anweye1,Annobon White-eye,Zosterops griseovirescens,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00421,species,satwhe1,Principe White-eye,Zosterops ficedulinus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00428,species,ceywhe1,Sri Lanka White-eye,Zosterops ceylonensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00429,species,cfweye1,Chestnut-flanked White-eye,Zosterops erythropleurus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0043,species,orweye1,Oriental White-eye,Zosterops palpebrosus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00433,form,merwhe1,Meratus White-eye (undescribed Meratus form),Zosterops [undescribed form],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00443,species,jaweye,Japanese White-eye,Zosterops japonicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00444,issf,japwhe1,Japanese White-eye (Japanese),Zosterops japonicus [japonicus Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,jaweye 23377.00451,issf,japwhe2,Japanese White-eye (simplex/hainanus),Zosterops japonicus simplex/hainanus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,jaweye 23377.00453,species,loweye2,Lowland White-eye,Zosterops meyeni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00456,species,enweye1,Enggano White-eye,Zosterops salvadorii,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00457,species,brweye1,Bridled White-eye,Zosterops conspicillatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00457,issf,briwhe1,Bridled White-eye (Bridled),Zosterops conspicillatus conspicillatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brweye1 23377.00457,issf,briwhe2,Bridled White-eye (Saipan),Zosterops conspicillatus saypani,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brweye1 23377.0046,species,rotwhe1,Rota White-eye,Zosterops rotensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00461,species,ciweye1,Caroline Islands White-eye,Zosterops semperi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00465,species,plweye1,Plain White-eye,Zosterops hypolais,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00466,species,bkcwhe1,Black-capped White-eye,Zosterops atricapilla,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00469,species,evweye1,Everett's White-eye,Zosterops everetti,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00478,species,yelwhe1,Yellowish White-eye,Zosterops nigrorum,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00487,species,moweye2,Mountain White-eye,Zosterops montanus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00498,species,ciweye2,Christmas Island White-eye,Zosterops natalis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00499,species,jaweye2,Javan White-eye,Zosterops flavus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.005,species,yebwhe1,Lemon-bellied White-eye,Zosterops chloris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00508,species,asbwhe1,Ashy-bellied White-eye,Zosterops citrinella,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00512,species,grkwhe1,Great Kai White-eye,Zosterops grayi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00513,species,likwhe1,Little Kai White-eye,Zosterops uropygialis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00514,species,sulwhe1,Sulawesi White-eye,Zosterops consobrinorum,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00515,form,wawwhe1,Wangi-Wangi White-eye (undescribed form),Zosterops [undescribed Wangi-Wangi form],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00515,species,bkrwhe1,Black-ringed White-eye,Zosterops anomalus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00516,species,ysweye1,Yellow-spectacled White-eye,Zosterops wallacei,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00517,species,bcweye2,Black-crowned White-eye,Zosterops atrifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00522,species,togwhe1,Togian White-eye,Zosterops somadikartai,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00523,species,sanwhe1,Sangihe White-eye,Zosterops nehrkorni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00524,species,serwhe1,Seram White-eye,Zosterops stalkeri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00525,species,crtwhe1,Cream-throated White-eye,Zosterops atriceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00526,issf,crtwhe2,Cream-throated White-eye (Morotai),Zosterops atriceps dehaani,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,crtwhe1 23377.00527,issf,crtwhe3,Cream-throated White-eye (Helmahera),Zosterops atriceps fuscifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,crtwhe1 23377.00528,issf,crtwhe4,Cream-throated White-eye (Bacan),Zosterops atriceps atriceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,crtwhe1 23377.00529,form,obiwhe1,Obi White-eye (undescribed form),Zosterops [undescribed Obi form],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00529,species,bfweye1,Black-fronted White-eye,Zosterops minor,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00529,issf,bkfwhe1,Black-fronted White-eye (Black-fronted),Zosterops minor [chrysolaemus Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,bfweye1 23377.0053,issf,bkfwhe2,Black-fronted White-eye (Green-fronted),Zosterops minor minor/rothschildi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,bfweye1 23377.00536,species,wtweye1,Tagula White-eye,Zosterops meeki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00537,species,bhweye1,Black-headed White-eye,Zosterops hypoxanthus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00541,species,biweye1,Biak White-eye,Zosterops mysorensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00542,species,capwhe3,Capped White-eye,Zosterops fuscicapilla,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00543,issf,capwhe7,Capped White-eye (Capped),Zosterops fuscicapilla fuscicapilla,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe3 23377.00544,issf,capwhe8,Capped White-eye (Oya Tabu),Zosterops fuscicapilla crookshanki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe3 23377.00545,species,burwhe1,Buru White-eye,Zosterops buruensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00546,species,ambwhe1,Ambon White-eye,Zosterops kuehni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00547,species,ngweye1,New Guinea White-eye,Zosterops novaeguineae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00555,species,ayweye3,Australian Yellow White-eye,Zosterops luteus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00558,species,loweye1,Louisiade White-eye,Zosterops griseotinctus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00563,species,reweye1,Rennell White-eye,Zosterops rennellianus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00564,species,baweye2,Banded White-eye,Zosterops vellalavella,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00565,species,gaweye1,Ganongga White-eye,Zosterops splendidus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00566,species,spweye2,Splendid White-eye,Zosterops luteirostris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00567,species,ytweye1,Yellow-throated White-eye,Zosterops metcalfii,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0057,species,soiwhe1,Solomons White-eye,Zosterops kulambangrae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00571,issf,soiwhe2,Solomons White-eye (Solomons),Zosterops kulambangrae kulambangrae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,soiwhe1 23377.00572,issf,soiwhe3,Solomons White-eye (Rendova),Zosterops kulambangrae tetiparius/paradoxus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,soiwhe1 23377.00575,species,kulwhe1,Kolombangra White-eye,Zosterops murphyi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00576,species,gytwhe1,Gray-throated White-eye,Zosterops ugiensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00576,issf,gytwhe2,Gray-throated White-eye (Bougainville),Zosterops ugiensis hamlini,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,gytwhe1 23377.00577,issf,gytwhe3,Gray-throated White-eye (Gray-throated),Zosterops ugiensis ugiensis/oblitus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,gytwhe1 23377.0058,species,maweye2,Malaita White-eye,Zosterops stresemanni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00581,species,sacwhe1,Santa Cruz White-eye,Zosterops sanctaecrucis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00582,species,vanwhe1,Vanikoro White-eye,Zosterops gibbsi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00583,species,llweye1,Large Lifou White-eye,Zosterops inornatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00584,species,gnbwhe1,Green-backed White-eye,Zosterops xanthochroa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00585,species,slweye1,Small Lifou White-eye,Zosterops minutus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00586,species,lohwhe1,Lord Howe White-eye,Zosterops tephropleurus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00587,species,sbweye1,Slender-billed White-eye,Zosterops tenuirostris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00588,species,robwhe1,Robust White-eye,Zosterops strenuus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00589,species,wcweye1,White-chested White-eye,Zosterops albogularis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.0059,species,laweye1,Layard's White-eye,Zosterops explorator,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00591,species,silver3,Silver-eye,Zosterops lateralis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00609,slash,y00817,Layard's White-eye/Silver-eye,Zosterops explorator/lateralis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00609,species,yfweye1,Yellow-fronted White-eye,Zosterops flavifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00617,species,saweye1,Samoan White-eye,Zosterops samoensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00618,species,duweye1,Dusky White-eye,Zosterops finschii,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00618,species,pohwhe1,Pohnpei White-eye,Zosterops ponapensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00618,species,koswhe1,Kosrae White-eye,Zosterops cinereus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00622,species,yapwhe1,Yap White-eye,Zosterops oleagineus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00623,spuh,zoster1,Zosterops sp.,Zosterops sp.,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00624,spuh,white-1,white-eye sp.,Zosteropidae sp.,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, 23377.00658,species,chcbab1,Chestnut-capped Babbler,Timalia pileata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)","Tree-Babblers, Scimitar-Babblers, and Allies", 23377.00665,species,sttbab1,Pin-striped Tit-Babbler,Mixornis gularis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00666,issf,pistib1,Pin-striped Tit-Babbler (Pin-striped),Mixornis gularis [gularis Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,sttbab1 23377.00679,issf,pistib2,Pin-striped Tit-Babbler (Palawan),Mixornis gularis woodi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,sttbab1 23377.0068,species,bostib1,Bold-striped Tit-Babbler,Mixornis bornensis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00681,issf,bostib2,Bold-striped Tit-Babbler (Bold-striped),Mixornis bornensis [bornensis Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,bostib1 23377.0069,issf,bostib3,Bold-striped Tit-Babbler (Mapun),Mixornis bornensis cagayanensis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,bostib1 23377.00691,species,gyctib1,Gray-cheeked Tit-Babbler,Mixornis flavicollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00691,issf,gyctib2,Gray-cheeked Tit-Babbler (Gray-cheeked),Mixornis flavicollis flavicollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,gyctib1 23377.00691,issf,gyctib3,Gray-cheeked Tit-Babbler (Kangean),Mixornis flavicollis prillwitzi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,gyctib1 23377.00694,species,gyftib1,Gray-faced Tit-Babbler,Mixornis kelleyi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00695,slash,y01051,Pin-striped/Gray-faced Tit-Babbler,Mixornis gularis/kelleyi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00695,species,tabbab1,Tawny-bellied Babbler,Dumetia hyperythra,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.007,species,dafbab1,Dark-fronted Babbler,Rhopocichla atriceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00701,issf,dafbab2,Dark-fronted Babbler (atriceps),Rhopocichla atriceps atriceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 23377.00702,issf,dafbab3,Dark-fronted Babbler (bourdilloni),Rhopocichla atriceps bourdilloni,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 23377.00703,issf,dafbab4,Dark-fronted Babbler (siccata),Rhopocichla atriceps siccata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 23377.00704,issf,dafbab5,Dark-fronted Babbler (nigrifrons),Rhopocichla atriceps nigrifrons,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 23377.00705,species,brtbab1,Brown Tit-Babbler,Macronus striaticeps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.0071,species,fbtbab1,Fluffy-backed Tit-Babbler,Macronus ptilosus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00715,species,golbab1,Golden Babbler,Cyanoderma chrysaeum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00722,species,chwbab1,Chestnut-winged Babbler,Cyanoderma erythropterum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00722,issf,chwbab2,Chestnut-winged Babbler (Chestnut-winged),Cyanoderma erythropterum [erythropterum Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,chwbab1 23377.00723,issf,chwbab3,Chestnut-winged Babbler (Gray-hooded),Cyanoderma erythropterum bicolor/rufum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,chwbab1 23377.00728,species,crcbab1,Crescent-chested Babbler,Cyanoderma melanothorax,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00735,species,blcbab2,Black-chinned Babbler,Cyanoderma pyrrhops,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00735,species,rucbab1,Rufous-capped Babbler,Cyanoderma ruficeps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00743,species,bucbab1,Buff-chested Babbler,Cyanoderma ambiguum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00748,species,rufbab2,Rufous-fronted Babbler,Cyanoderma rufifrons,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00754,spuh,cyanod1,Cyanoderma sp.,Cyanoderma sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00755,species,rtwbab1,Rufous-throated Wren-Babbler,Spelaeornis caudatus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00756,species,miswrb1,Rusty-throated Wren-Babbler,Spelaeornis badeigularis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00757,species,bwwbab1,Bar-winged Wren-Babbler,Spelaeornis troglodytoides,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00764,species,ltwbab1,Long-tailed Wren-Babbler,Spelaeornis chocolatinus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00765,species,chhwrb1,Chin Hills Wren-Babbler,Spelaeornis oatesi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00766,species,gybwrb1,Gray-bellied Wren-Babbler,Spelaeornis reptatus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00767,species,patwrb1,Pale-throated Wren-Babbler,Spelaeornis kinneari,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00768,species,tbwbab1,Tawny-breasted Wren-Babbler,Spelaeornis longicaudatus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.0077,species,rbsbab1,Red-billed Scimitar-Babbler,Pomatorhinus ochraceiceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00775,species,cbsbab2,Coral-billed Scimitar-Babbler,Pomatorhinus ferruginosus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00775,issf,cobscb1,Coral-billed Scimitar-Babbler (Black-crowned),Pomatorhinus ferruginosus ferruginosus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab2 23377.00775,issf,cobscb2,Coral-billed Scimitar-Babbler (Phayre's),Pomatorhinus ferruginosus phayrei/stanfordi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab2 23377.00776,issf,cobscb3,Coral-billed Scimitar-Babbler (albogularis Group),Pomatorhinus ferruginosus [albogularis Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab2 23377.00784,species,sbsbab1,Slender-billed Scimitar-Babbler,Pomatorhinus superciliaris,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00789,species,sbsbab3,Streak-breasted Scimitar-Babbler,Pomatorhinus ruficollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00803,species,taiscb1,Taiwan Scimitar-Babbler,Pomatorhinus musicus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00804,species,insbab1,Indian Scimitar-Babbler,Pomatorhinus horsfieldii,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00809,species,srlscb1,Sri Lanka Scimitar-Babbler,Pomatorhinus melanurus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.0081,species,wbsbab1,White-browed Scimitar-Babbler,Pomatorhinus schisticeps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00824,species,cbsbab1,Chestnut-backed Scimitar-Babbler,Pomatorhinus montanus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00826,spuh,pomato1,Pomatorhinus sp.,Pomatorhinus sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00829,species,lasbab1,Large Scimitar-Babbler,Megapomatorhinus hypoleucos,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00835,species,sbsbab2,Black-necklaced Scimitar-Babbler,Megapomatorhinus erythrocnemis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00836,species,rcsbab1,Rusty-cheeked Scimitar-Babbler,Megapomatorhinus erythrogenys,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00842,species,spbscb1,Spot-breasted Scimitar-Babbler,Megapomatorhinus mcclellandi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00843,species,bksscb1,Black-streaked Scimitar-Babbler,Megapomatorhinus gravivox,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.0085,species,gysscb1,Gray-sided Scimitar-Babbler,Megapomatorhinus swinhoei,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00853,species,whbbab2,White-breasted Babbler,Stachyris grammiceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00854,species,bltbab1,Black-throated Babbler,Stachyris nigricollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00855,species,chrbab1,Chestnut-rumped Babbler,Stachyris maculata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.0086,species,gytbab1,Gray-throated Babbler,Stachyris nigriceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00874,species,gyhbab1,Gray-headed Babbler,Stachyris poliocephala,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00875,species,whnbab1,White-necked Babbler,Stachyris leucotis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00879,species,whbbab1,White-bibbed Babbler,Stachyris thoracica,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00882,species,sntbab1,Snowy-throated Babbler,Stachyris oglei,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00883,species,spnbab1,Spot-necked Babbler,Stachyris strialata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00891,species,soobab1,Sooty Babbler,Stachyris herberti,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00892,species,nonbab1,Nonggang Babbler,Stachyris nonggangensis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00893,species,wbwbab1,Blackish-breasted Babbler,Stachyris humei,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00894,species,chbbab1,Chevron-breasted Babbler,Stachyris roberti,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00894,spuh,stachy1,Stachyris sp.,Stachyris sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00901,spuh,babble1,babbler sp.,Timaliidae sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, 23377.00902,species,palbab1,Palawan Babbler,Malacopteron palawanense,Passeriformes,Pellorneidae (Ground Babblers and Allies),Ground Babblers and Allies, 23377.00903,species,moubab1,Moustached Babbler,Malacopteron magnirostre,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00906,species,socbab1,Sooty-capped Babbler,Malacopteron affine,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.0091,species,sccbab1,Scaly-crowned Babbler,Malacopteron cinereum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00916,species,rucbab2,Rufous-crowned Babbler,Malacopteron magnum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00919,species,gybbab1,Gray-breasted Babbler,Malacopteron albogulare,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.0092,spuh,malaco1,Malacopteron sp.,Malacopteron sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00922,species,whhbab2,White-hooded Babbler,Gampsorhynchus rufulus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00923,species,colbab1,Collared Babbler,Gampsorhynchus torquatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00926,species,yetful1,Yellow-throated Fulvetta,Schoeniparus cinereus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00927,species,ruwful1,Rufous-winged Fulvetta,Schoeniparus castaneceps,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00932,species,bkcful1,Black-crowned Fulvetta,Schoeniparus klossi,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00933,species,rutful1,Rufous-throated Fulvetta,Schoeniparus rufogularis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.0094,species,dusful1,Dusky Fulvetta,Schoeniparus brunneus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00948,species,rucful1,Rusty-capped Fulvetta,Schoeniparus dubius,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00951,spuh,fulvet1,Schoeniparus sp.,Schoeniparus sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00952,species,broill1,Brown Illadopsis,Illadopsis fulvescens,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00955,issf,brnill1,Brown Illadopsis (Moloney's),Illadopsis fulvescens moloneyana/iboensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,broill1 23377.00956,issf,brnill2,Brown Illadopsis (Brown),Illadopsis fulvescens [fulvescens Group],Passeriformes,Pellorneidae (Ground Babblers and Allies),,broill1 23377.00959,species,pabill1,Pale-breasted Illadopsis,Illadopsis rufipennis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00959,issf,pabill2,Pale-breasted Illadopsis (Pale-breasted),Illadopsis rufipennis rufipennis/extrema,Passeriformes,Pellorneidae (Ground Babblers and Allies),,pabill1 23377.0096,issf,pabill3,Pale-breasted Illadopsis (Gray-breasted),Illadopsis rufipennis distans/pugensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,pabill1 23377.00964,species,mouill1,Mountain Illadopsis,Illadopsis pyrrhoptera,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00967,species,blaill1,Blackcap Illadopsis,Illadopsis cleaveri,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00968,issf,blaill2,Blackcap Illadopsis (Western),Illadopsis cleaveri cleaveri/johnsoni,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blaill1 23377.0097,issf,blaill3,Blackcap Illadopsis (Eastern),Illadopsis cleaveri batesi/marchanti,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blaill1 23377.00972,issf,blaill4,Blackcap Illadopsis (Bioko),Illadopsis cleaveri poensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blaill1 23377.00973,species,scbill1,Scaly-breasted Illadopsis,Illadopsis albipectus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00974,species,ruwill1,Rufous-winged Illadopsis,Illadopsis rufescens,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00975,species,puvill1,Puvel's Illadopsis,Illadopsis puveli,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00978,species,thrbab1,Thrush Babbler,Illadopsis turdina,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00979,issf,thrbab2,Thrush Babbler (Rufous-tailed),Illadopsis turdina harterti,Passeriformes,Pellorneidae (Ground Babblers and Allies),,thrbab1 23377.0098,issf,thrbab3,Thrush Babbler (Thrush),Illadopsis turdina turdina,Passeriformes,Pellorneidae (Ground Babblers and Allies),,thrbab1 23377.00981,issf,thrbab4,Thrush Babbler (Olive),Illadopsis turdina upembae,Passeriformes,Pellorneidae (Ground Babblers and Allies),,thrbab1 23377.00982,spuh,illado1,Illadopsis sp.,Illadopsis sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.00983,species,putbab1,Puff-throated Babbler,Pellorneum ruficeps,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.0101,species,blcbab1,Black-capped Babbler,Pellorneum capistratum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01012,issf,bkcbab1,Black-capped Babbler (Black-capped),Pellorneum capistratum [nigrocapitatum Group],Passeriformes,Pellorneidae (Ground Babblers and Allies),,blcbab1 23377.01014,issf,bkcbab2,Black-capped Babbler (Rufous-browed),Pellorneum capistratum capistratum,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blcbab1 23377.01016,species,bncbab1,Brown-capped Babbler,Pellorneum fuscocapillus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.0102,species,marbab2,Marsh Babbler,Pellorneum palustre,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01021,species,sptbab1,Spot-throated Babbler,Pellorneum albiventre,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01026,species,bubbab1,Buff-breasted Babbler,Pellorneum tickelli,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01032,species,sumbab1,Sumatran Babbler,Pellorneum buettikoferi,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01033,species,tembab1,Temminck's Babbler,Pellorneum pyrrogenys,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01039,species,shtbab1,Short-tailed Babbler,Pellorneum malaccense,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01044,species,ashbab1,Ashy-headed Babbler,Pellorneum cinereiceps,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01045,species,whcbab1,White-chested Babbler,Pellorneum rostratum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01048,species,sulbab1,Sulawesi Babbler,Pellorneum celebense,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01053,species,ferbab1,Ferruginous Babbler,Pellorneum bicolor,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01054,species,stwbab3,Striped Wren-Babbler,Kenopia striata,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01055,species,eywbab1,Eyebrowed Wren-Babbler,Napothera epilepidota,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01057,species,shtscb1,Short-tailed Scimitar-Babbler,Napothera danjoui,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01058,issf,stsbab1,Short-tailed Scimitar-Babbler (Short-tailed),Napothera danjoui danjoui/parvirostris,Passeriformes,Pellorneidae (Ground Babblers and Allies),,shtscb1 23377.01058,issf,namscb1,Short-tailed Scimitar-Babbler (Naung Mung),Napothera danjoui naungmungensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,shtscb1 23377.01058,species,lbwbab1,Long-billed Wren-Babbler,Napothera malacoptila,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01058,species,whtwrb1,White-throated Wren-Babbler,Napothera pasquieri,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01058,species,sumwrb1,Sumatran Wren-Babbler,Napothera albostriata,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01058,species,bowbab1,Bornean Wren-Babbler,Ptilocichla leucogrammica,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01058,species,stwbab2,Striated Wren-Babbler,Ptilocichla mindanensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01059,species,fawbab1,Falcated Wren-Babbler,Ptilocichla falcata,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01059,species,abbbab1,Abbott's Babbler,Turdinus abbotti,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.0106,species,horbab2,Horsfield's Babbler,Turdinus sepiarius,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01062,species,blbbab1,Black-browed Babbler,Turdinus perspicillatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01063,species,lawbab1,Large Wren-Babbler,Turdinus macrodactylus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01067,species,rbwbab1,Rusty-breasted Wren-Babbler,Turdinus rufipectus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01068,species,btwbab1,Black-throated Wren-Babbler,Turdinus atrigularis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01069,species,mawbab1,Marbled Wren-Babbler,Turdinus marmoratus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01072,species,liwbab1,Limestone Wren-Babbler,Turdinus crispifrons,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01072,issf,limwrb1,Limestone Wren-Babbler (Grayish),Turdinus crispifrons crispifrons/annamensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,liwbab1 23377.01073,issf,limwrb2,Limestone Wren-Babbler (Rufous),Turdinus crispifrons calcicola,Passeriformes,Pellorneidae (Ground Babblers and Allies),,liwbab1 23377.01076,species,stwbab1,Streaked Wren-Babbler,Turdinus brevicaudatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01085,species,mowbab1,Mountain Wren-Babbler,Turdinus crassus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01086,species,rurgra1,Indian Grassbird,Graminicola bengalensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01087,species,chigra1,Chinese Grassbird,Graminicola striatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.0109,spuh,pellor1,Pellorneidae sp.,Pellorneidae sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, 23377.01095,species,gofful2,Gold-fronted Fulvetta,Alcippe variegaticeps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),Laughingthrushes and Allies, 23377.01096,species,ludful1,Ludlow's Fulvetta,Alcippe ludlowi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01096,species,broful1,Brown Fulvetta,Alcippe brunneicauda,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01099,species,brcful1,Brown-cheeked Fulvetta,Alcippe poioicephala,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01108,species,gycful1,Morrison's Fulvetta,Alcippe morrisonia,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01109,species,gycful4,Yunnan Fulvetta,Alcippe fratercula,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01112,species,gycful3,David's Fulvetta,Alcippe davidi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01115,species,gycful5,Huet's Fulvetta,Alcippe hueti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01118,species,javful1,Javan Fulvetta,Alcippe pyrrhoptera,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01119,species,mouful1,Mountain Fulvetta,Alcippe peracensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01122,species,nepful1,Nepal Fulvetta,Alcippe nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01126,species,bkbful1,Black-browed Fulvetta,Alcippe grotei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01129,slash,y00653,Mountain/Black-browed Fulvetta,Alcippe peracensis/grotei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0113,spuh,alcipp1,Alcippe sp.,Alcippe sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01131,species,strlau2,Striated Laughingthrush,Grammatoptila striata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01136,species,cutia1,Himalayan Cutia,Cutia nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0114,species,viecut1,Vietnamese Cutia,Cutia legalleni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01143,species,spibab1,Spiny Babbler,Turdoides nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01144,species,irabab1,Iraq Babbler,Turdoides altirostris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01146,species,combab1,Afghan Babbler,Turdoides huttoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01149,species,combab3,Common Babbler,Turdoides caudata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01152,species,strbab1,Striated Babbler,Turdoides earlei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01155,species,whtbab1,White-throated Babbler,Turdoides gularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01156,species,slbbab1,Slender-billed Babbler,Turdoides longirostris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01157,species,lagbab2,Large Gray Babbler,Turdoides malcolmi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01158,species,arabab1,Arabian Babbler,Turdoides squamiceps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01162,species,fulcha1,Fulvous Chatterer,Turdoides fulva,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01167,species,scacha1,Scaly Chatterer,Turdoides aylmeri,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01172,species,rufcha2,Rufous Chatterer,Turdoides rubiginosa,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01177,species,rufbab3,Rufous Babbler,Turdoides subrufa,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0118,species,junbab2,Jungle Babbler,Turdoides striata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01184,issf,junbab1,Jungle Babbler (Jungle),Turdoides striata [striata Group],Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,junbab2 23377.01185,issf,junbab3,Jungle Babbler (Black-winged),Turdoides striata somervillei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,junbab2 23377.01186,species,orbbab1,Orange-billed Babbler,Turdoides rufescens,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01187,species,yebbab1,Yellow-billed Babbler,Turdoides affinis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0119,slash,y00818,Jungle/Yellow-billed Babbler,Turdoides striata/affinis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0119,species,blabab2,Blackcap Babbler,Turdoides reinwardtii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01191,issf,blabab1,Blackcap Babbler (Blackcap),Turdoides reinwardtii reinwardtii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blabab2 23377.01192,issf,blabab3,Blackcap Babbler (Dusky-throated),Turdoides reinwardtii stictilaema,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blabab2 23377.01193,species,dusbab2,Dusky Babbler,Turdoides tenebrosa,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01194,species,bklbab1,Black-lored Babbler,Turdoides sharpei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01195,issf,bklbab2,Black-lored Babbler (Sharpe's),Turdoides sharpei sharpei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bklbab1 23377.01196,issf,bklbab3,Black-lored Babbler (Nanyuki),Turdoides sharpei vepres,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bklbab1 23377.01197,species,harbab1,Hartlaub's Babbler,Turdoides hartlaubii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.012,species,bkfbab1,Black-faced Babbler,Turdoides melanops,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01203,species,scabab2,Scaly Babbler,Turdoides squamulata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01209,species,whrbab2,White-rumped Babbler,Turdoides leucopygia,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01215,species,sopbab1,Southern Pied-Babbler,Turdoides bicolor,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01216,species,norpib1,Northern Pied-Babbler,Turdoides hypoleuca,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01219,species,hipbab1,Hinde's Pied-Babbler,Turdoides hindei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0122,species,crebab1,Cretzschmar's Babbler,Turdoides leucocephala,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01221,species,brobab1,Brown Babbler,Turdoides plebejus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01225,species,armbab1,Arrow-marked Babbler,Turdoides jardineii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01232,species,bacbab1,Bare-cheeked Babbler,Turdoides gymnogenys,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01233,species,wtmbab1,White-throated Mountain-Babbler,Turdoides gilberti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01234,species,rcmbab1,Red-collared Mountain-Babbler,Turdoides rufocincta,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01235,species,chmbab1,Chapin's Mountain-Babbler,Turdoides chapini,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01239,species,capbab1,Capuchin Babbler,Turdoides atripennis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0124,issf,capbab2,Capuchin Babbler (Capuchin),Turdoides atripennis atripennis/rubiginosus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,capbab1 23377.01242,issf,capbab3,Capuchin Babbler (Brown-throated),Turdoides atripennis bohndorffi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,capbab1 23377.01243,spuh,turdoi1,Turdoides sp.,Turdoides sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01244,species,ashlau1,Ashy-headed Laughingthrush,Garrulax cinereifrons,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01245,species,sunlau1,Sunda Laughingthrush,Garrulax palliatus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01248,species,ruflau1,Rufous-fronted Laughingthrush,Garrulax rufifrons,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01252,species,maslau1,Masked Laughingthrush,Garrulax perspicillatus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01253,species,whclau2,White-crested Laughingthrush,Garrulax leucolophus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01257,species,sumlau1,Sumatran Laughingthrush,Garrulax bicolor,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01258,species,lenlau1,Lesser Necklaced Laughingthrush,Garrulax monileger,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01269,species,blalau1,Black Laughingthrush,Garrulax lugubris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0127,species,bahlau1,Bare-headed Laughingthrush,Garrulax calvus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01271,species,camlau1,Cambodian Laughingthrush,Garrulax ferrarius,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01273,species,whnlau1,White-necked Laughingthrush,Garrulax strepitans,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01273,species,blhlau1,Black-hooded Laughingthrush,Garrulax milleti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01275,species,grylau1,Gray Laughingthrush,Garrulax maesi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01278,species,ruclau3,Rufous-cheeked Laughingthrush,Garrulax castanotis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01281,species,spblau1,Spot-breasted Laughingthrush,Garrulax merulinus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01284,species,orblau1,Orange-breasted Laughingthrush,Garrulax annamensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01285,species,melthr,Chinese Hwamei,Garrulax canorus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01288,species,taihwa1,Taiwan Hwamei,Garrulax taewanus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01288,hybrid,x00816,Chinese x Taiwan Hwamei (hybrid),Garrulax canorus x taewanus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01289,slash,y00910,Chinese/Taiwan Hwamei,Garrulax canorus/taewanus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01289,spuh,garrul1,Garrulax sp.,Garrulax sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0129,species,suklau1,Sukatschev's Laughingthrush,Ianthocincla sukatschewi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01291,species,moulau1,Moustached Laughingthrush,Ianthocincla cineracea,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01291,issf,moulau2,Moustached Laughingthrush (Western),Ianthocincla cineracea cineracea/strenua,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,moulau1 23377.01292,issf,moulau3,Moustached Laughingthrush (Eastern),Ianthocincla cineracea cinereiceps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,moulau1 23377.01295,species,ruclau1,Rufous-chinned Laughingthrush,Ianthocincla rufogularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01299,species,chelau1,Chestnut-eared Laughingthrush,Ianthocincla konkakinhensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01299,species,spolau1,Spotted Laughingthrush,Ianthocincla ocellata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01299,species,barlau1,Barred Laughingthrush,Ianthocincla lunulata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01299,species,bielau1,Biet's Laughingthrush,Ianthocincla bieti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01299,species,gialau1,Giant Laughingthrush,Ianthocincla maxima,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01299,species,gnlthr,Greater Necklaced Laughingthrush,Ianthocincla pectoralis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.013,slash,y01002,Lesser/Greater Necklaced Laughingthrush,Garrulax monileger/Ianthocincla pectoralis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.013,species,whtlau1,White-throated Laughingthrush,Ianthocincla albogularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01301,species,ruclau2,Rufous-crowned Laughingthrush,Ianthocincla ruficeps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01302,species,runlau1,Rufous-necked Laughingthrush,Ianthocincla ruficollis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01303,species,chblau1,Chestnut-backed Laughingthrush,Ianthocincla nuchalis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01304,species,bltlau1,Black-throated Laughingthrush,Ianthocincla chinensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01304,issf,bktlau1,Black-throated Laughingthrush (Black-throated),Ianthocincla chinensis [chinensis Group],Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bltlau1 23377.01304,issf,bktlau2,Black-throated Laughingthrush (Hainan),Ianthocincla chinensis monachus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bltlau1 23377.0131,species,whclau1,White-cheeked Laughingthrush,Ianthocincla vassali,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01311,species,yetlau1,Yellow-throated Laughingthrush,Ianthocincla galbana,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01312,species,buclau1,Blue-crowned Laughingthrush,Ianthocincla courtoisi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01315,species,wynlau1,Wynaad Laughingthrush,Ianthocincla delesserti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01316,species,ruvlau1,Rufous-vented Laughingthrush,Ianthocincla gularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01317,species,pedlau1,Pere David's Laughingthrush,Ianthocincla davidi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01322,species,gyslau,Gray-sided Laughingthrush,Ianthocincla caerulata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01328,species,ruslau1,Rusty Laughingthrush,Ianthocincla poecilorhyncha,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01329,species,buflau1,Buffy Laughingthrush,Ianthocincla berthemyi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0133,species,chclau3,Chestnut-capped Laughingthrush,Ianthocincla mitrata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01333,species,chhlau1,Chestnut-hooded Laughingthrush,Ianthocincla treacheri,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01337,species,whblau1,White-browed Laughingthrush,Ianthocincla sannio,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01342,species,chibab1,Chinese Babax,Ianthocincla lanceolata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01343,issf,chibab2,Chinese Babax (Chinese),Ianthocincla lanceolata lanceolata/latouchei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,chibab1 23377.01346,issf,chibub1,Chinese Babax (Mt. Victoria),Ianthocincla lanceolata woodi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,chibab1 23377.01347,species,giabab1,Giant Babax,Ianthocincla waddelli,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01351,species,tibbab1,Tibetan Babax,Ianthocincla koslowi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01354,spuh,iantho1,Ianthocincla sp.,Ianthocincla sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01361,species,strlau1,Streaked Laughingthrush,Trochalopteron lineatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01366,species,bhulau1,Bhutan Laughingthrush,Trochalopteron imbricatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01367,species,strlau3,Striped Laughingthrush,Trochalopteron virgatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01368,species,scalau1,Scaly Laughingthrush,Trochalopteron subunicolor,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01372,species,brclau1,Brown-capped Laughingthrush,Trochalopteron austeni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01375,species,blwlau1,Blue-winged Laughingthrush,Trochalopteron squamatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.01376,species,elllau1,Elliot's Laughingthrush,Trochalopteron elliotii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0413,species,varlau1,Variegated Laughingthrush,Trochalopteron variegatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04133,species,prhlau1,Prince Henry's Laughingthrush,Trochalopteron henrici,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04134,species,blflau1,Black-faced Laughingthrush,Trochalopteron affine,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04141,species,whwlau1,White-whiskered Laughingthrush,Trochalopteron morrisonianum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04142,species,chclau2,Chestnut-crowned Laughingthrush,Trochalopteron erythrocephalum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04148,species,asslau1,Assam Laughingthrush,Trochalopteron chrysopterum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04152,species,sielau1,Silver-eared Laughingthrush,Trochalopteron melanostigma,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04158,species,mallau1,Malayan Laughingthrush,Trochalopteron peninsulae,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04159,species,gowlau1,Golden-winged Laughingthrush,Trochalopteron ngoclinhense,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0416,species,collau1,Collared Laughingthrush,Trochalopteron yersini,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04161,species,rewlau1,Red-winged Laughingthrush,Trochalopteron formosum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04164,species,retlau1,Red-tailed Laughingthrush,Trochalopteron milnei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04169,spuh,trocha1,Trochalopteron sp.,Trochalopteron sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04169,species,bkclau1,Banasura Laughingthrush,Montecincla jerdoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04169,species,bkclau2,Nilgiri Laughingthrush,Montecincla cachinnans,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04169,species,kerlau2,Palani Laughingthrush,Montecincla fairbanki,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04169,species,kerlau3,Ashambu Laughingthrush,Montecincla meridionale,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04169,spuh,laughi1,laughingthrush sp.,Garrulax/Ianthocincla/Trochalopteron/Montecincla sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0417,species,rufsib1,Rufous Sibia,Heterophasia capistrata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04174,species,grysib1,Gray Sibia,Heterophasia gracilis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04175,species,blbsib1,Black-backed Sibia,Heterophasia melanoleuca,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04178,species,blhsib1,Black-headed Sibia,Heterophasia desgodinsi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04179,issf,bkhsib1,Black-headed Sibia (Black-headed),Heterophasia desgodinsi desgodinsi/tonkinensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blhsib1 23377.04181,issf,bkhsib2,Black-headed Sibia (engelbachi/kingi),Heterophasia desgodinsi engelbachi/kingi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blhsib1 23377.04183,issf,bkhsib3,Black-headed Sibia (Lang Bian),Heterophasia desgodinsi robinsoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blhsib1 23377.04184,species,whesib1,White-eared Sibia,Heterophasia auricularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04185,species,beasib1,Beautiful Sibia,Heterophasia pulchella,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04186,species,lotsib1,Long-tailed Sibia,Heterophasia picaoides,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04191,species,siemes1,Silver-eared Mesia,Leiothrix argentauris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04191,issf,siemes2,Silver-eared Mesia (Silver-eared),Leiothrix argentauris [argentauris Group],Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,siemes1 23377.04192,issf,siemes3,Silver-eared Mesia (Sumatran),Leiothrix argentauris laurinae/rookmakeri,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,siemes1 23377.04202,species,reblei,Red-billed Leiothrix,Leiothrix lutea,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04209,species,retmin1,Red-tailed Minla,Minla ignotincta,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04214,species,rubsib1,Rufous-backed Sibia,Minla annectens,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0422,species,gyccro1,Gray-crowned Crocias,Crocias langbianis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04221,species,spocro1,Spotted Crocias,Crocias albonotatus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04222,species,gyflio1,Gray-faced Liocichla,Liocichla omeiensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04223,species,buglio1,Bugun Liocichla,Liocichla bugunorum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04224,species,stelio1,Steere's Liocichla,Liocichla steerii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04225,species,reflio2,Red-faced Liocichla,Liocichla phoenicea,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04228,species,reflio3,Scarlet-faced Liocichla,Liocichla ripponi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04231,species,bkcbar1,Black-crowned Barwing,Actinodura sodangorum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04232,species,hotbar1,Hoary-throated Barwing,Actinodura nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04235,species,sttbar1,Streak-throated Barwing,Actinodura waldeni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0424,slash,y00753,Hoary-throated/Streak-throated Barwing,Actinodura nipalensis/waldeni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04241,species,strbar1,Streaked Barwing,Actinodura souliei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04244,species,taibar1,Taiwan Barwing,Actinodura morrisoniana,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04245,species,rufbar1,Rusty-fronted Barwing,Actinodura egertoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.0425,species,spebar1,Spectacled Barwing,Actinodura ramsayi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04251,issf,spebar2,Spectacled Barwing (Eastern),Actinodura ramsayi radcliffei/yunnanensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,spebar1 23377.04252,issf,spebar3,Spectacled Barwing (Western),Actinodura ramsayi ramsayi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,spebar1 23377.04254,species,blwmin1,Blue-winged Minla,Actinodura cyanouroptera,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23377.04263,species,chtmin1,Chestnut-tailed Minla,Actinodura strigula,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, 23378,species,gursug1,Gurney's Sugarbird,Promerops gurneyi,Passeriformes,Promeropidae (Sugarbirds),Sugarbirds, 23381,species,capsug1,Cape Sugarbird,Promerops cafer,Passeriformes,Promeropidae (Sugarbirds),, 23381.01,species,spothr1,Spot-throat,Modulatrix stictigula,Passeriformes,Modulatricidae (Dapple-throat and Allies),Dapple-throats, 23381.04,species,dapthr1,Dapple-throat,Arcanator orostruthus,Passeriformes,Modulatricidae (Dapple-throat and Allies),, 23381.08,species,gycill1,Gray-chested Babbler,Kakamega poliothorax,Passeriformes,Modulatricidae (Dapple-throat and Allies),, 23382,species,asfblu1,Asian Fairy-bluebird,Irena puella,Passeriformes,Irenidae (Fairy-bluebirds),Fairy-bluebirds, 23382.2,issf,asifab1,Asian Fairy-bluebird (Asian),Irena puella [puella Group],Passeriformes,Irenidae (Fairy-bluebirds),,asfblu1 23382.4,issf,asifab2,Asian Fairy-bluebird (Palawan),Irena puella tweeddalii,Passeriformes,Irenidae (Fairy-bluebirds),,asfblu1 23388,species,phifab1,Philippine Fairy-bluebird,Irena cyanogastra,Passeriformes,Irenidae (Fairy-bluebirds),, 23393,species,yebhyl1,Yellow-bellied Hyliota,Hyliota flavigaster,Passeriformes,Hyliotidae (Hyliotas),Hyliotas, 23396,species,souhyl1,Southern Hyliota,Hyliota australis,Passeriformes,Hyliotidae (Hyliotas),, 23400,species,usahyl1,Usambara Hyliota,Hyliota usambara,Passeriformes,Hyliotidae (Hyliotas),, 23401,species,vibhyl1,Violet-backed Hyliota,Hyliota violacea,Passeriformes,Hyliotidae (Hyliotas),, 23403.0001,species,gysfly1,Gray-streaked Flycatcher,Muscicapa griseisticta,Passeriformes,Muscicapidae (Old World Flycatchers),Old World Flycatchers, 23403.0002,species,dasfly,Dark-sided Flycatcher,Muscicapa sibirica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.00025,species,ferfly1,Ferruginous Flycatcher,Muscicapa ferruginea,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0013,species,asbfly,Asian Brown Flycatcher,Muscicapa dauurica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0014,species,asbfly1,Ashy-breasted Flycatcher,Muscicapa randi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0016,species,subfly2,Sumba Brown Flycatcher,Muscicapa segregata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0022,species,brbfly2,Brown-breasted Flycatcher,Muscicapa muttui,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0026,species,subfly3,Sulawesi Brown Flycatcher,Muscicapa sodhii,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0027,species,bnsfly1,Brown-streaked Flycatcher,Muscicapa williamsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.00273,issf,bnsfly2,Brown-streaked Flycatcher (Brown-streaked),Muscicapa williamsoni williamsoni,Passeriformes,Muscicapidae (Old World Flycatchers),,bnsfly1 23403.00276,issf,bnsfly3,Brown-streaked Flycatcher (Umber),Muscicapa williamsoni umbrosa,Passeriformes,Muscicapidae (Old World Flycatchers),,bnsfly1 23403.0028,slash,y00754,Asian Brown/Brown-streaked Flycatcher,Muscicapa dauurica/williamsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.003,species,afdfly1,Dusky-brown Flycatcher,Muscicapa adusta,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0033,species,ligfly2,Little Flycatcher,Muscicapa epulata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0035,species,yeffly1,Yellow-footed Flycatcher,Muscicapa sethsmithi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0036,species,spofly1,Spotted Flycatcher,Muscicapa striata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0039,issf,spofly2,Spotted Flycatcher (Spotted),Muscicapa striata [striata Group],Passeriformes,Muscicapidae (Old World Flycatchers),,spofly1 23403.0041,issf,spofly3,Spotted Flycatcher (Mediterranean),Muscicapa striata tyrrhenica/balearica,Passeriformes,Muscicapidae (Old World Flycatchers),,spofly1 23403.0044,species,gamfly1,Gambaga Flycatcher,Muscicapa gambagae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0048,species,swafly3,Swamp Flycatcher,Muscicapa aquatica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0054,species,casfly1,Cassin's Flycatcher,Muscicapa cassini,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0055,spuh,muscic1,Muscicapa sp.,Muscicapa sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0056,species,boefly1,Bšhm's Flycatcher,Bradornis boehmi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.00565,species,ussfly1,Ussher's Flycatcher,Bradornis ussheri,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0059,species,soofly1,Sooty Flycatcher,Bradornis fuliginosus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.006,species,dubfly2,Dusky-blue Flycatcher,Bradornis comitatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0063,species,marfly1,Mariqua Flycatcher,Bradornis mariquensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0064,species,afgfly1,Grayish Flycatcher,Bradornis microrhynchus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0071,issf,grafly2,Grayish Flycatcher (Ethiopian),Bradornis microrhynchus pumilus,Passeriformes,Muscicapidae (Old World Flycatchers),,afgfly1 23403.0072,issf,grafly1,Grayish Flycatcher (Grayish),Bradornis microrhynchus [microrhynchus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,afgfly1 23403.0073,spuh,brador1,Bradornis sp.,Bradornis sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0079,spuh,y01003,Muscicapa/Bradornis sp.,Muscicapa/Bradornis sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.008,species,palfly2,Pale Flycatcher,Agricola pallidus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0083,issf,palfly6,Pale Flycatcher (Pale),Agricola pallidus [pallidus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,palfly2 23403.00834,issf,palfly4,Pale Flycatcher (Wajir),Agricola pallidus bafirawari,Passeriformes,Muscicapidae (Old World Flycatchers),,palfly2 23403.00835,issf,palfly5,Pale Flycatcher (East Coast),Agricola pallidus subalaris/erlangeri,Passeriformes,Muscicapidae (Old World Flycatchers),,palfly2 23403.0084,species,chafly2,Chat Flycatcher,Agricola infuscatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0085,species,wbffly1,White-browed Forest-Flycatcher,Fraseria cinerascens,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0087,species,afffly1,African Forest-Flycatcher,Fraseria ocreata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0088,issf,afrfof1,African Forest-Flycatcher (Western),Fraseria ocreata prosphora/kelsalli,Passeriformes,Muscicapidae (Old World Flycatchers),,afffly1 23403.0089,issf,afrfof2,African Forest-Flycatcher (Eastern),Fraseria ocreata ocreata,Passeriformes,Muscicapidae (Old World Flycatchers),,afffly1 23403.009,species,gyttif1,Gray-throated Tit-Flycatcher,Fraseria griseigularis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0093,species,grytif1,Gray Tit-Flycatcher,Fraseria plumbea,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0094,species,olifly1,Olivaceous Flycatcher,Fraseria olivascens,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0099,issf,olifly4,Olivaceous Flycatcher (Olivaceous),Fraseria olivascens olivascens,Passeriformes,Muscicapidae (Old World Flycatchers),,olifly1 23403.01,issf,olifly5,Olivaceous Flycatcher (Mt. Nimba),Fraseria olivascens nimbae,Passeriformes,Muscicapidae (Old World Flycatchers),,olifly1 23403.0101,species,chafly1,Chapin's Flycatcher,Fraseria lendu,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0102,issf,chafly5,Chapin's Flycatcher (Chapin's),Fraseria lendu lendu,Passeriformes,Muscicapidae (Old World Flycatchers),,chafly1 23403.0103,issf,chafly4,Chapin's Flycatcher (Itombwe),Fraseria lendu itombwensis,Passeriformes,Muscicapidae (Old World Flycatchers),,chafly1 23403.0104,species,tesfly1,Tessmann's Flycatcher,Fraseria tessmanni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0105,species,ashfly1,Ashy Flycatcher,Fraseria caerulescens,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0116,species,hercha1,Herero Chat,Melaenornis herero,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0117,species,silver1,Silverbird,Melaenornis semipartitus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0118,species,fisfly1,Fiscal Flycatcher,Melaenornis silens,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0122,species,yebfly2,Yellow-eyed Black-Flycatcher,Melaenornis ardesiacus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0123,species,nimfly1,Nimba Flycatcher,Melaenornis annamarulae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0124,species,nobfly1,Northern Black-Flycatcher,Melaenornis edolioides,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.01315,species,sobfly1,Southern Black-Flycatcher,Melaenornis pammelaina,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0132,species,wheslf1,White-eyed Slaty-Flycatcher,Melaenornis fischeri,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0135,species,angslf1,Angola Slaty-Flycatcher,Melaenornis brunneus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0139,species,abyslf1,Abyssinian Slaty-Flycatcher,Melaenornis chocolatinus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.014,species,grcfly3,Grand Comoro Flycatcher,Humblotia flavirostris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0141,species,ficale1,Fire-crested Alethe,Alethe diademata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0142,issf,ficale3,Fire-crested Alethe (White-tailed),Alethe diademata diademata,Passeriformes,Muscicapidae (Old World Flycatchers),,ficale1 23403.0145,issf,ficale2,Fire-crested Alethe (Fire-crested),Alethe diademata castanea/woosnami,Passeriformes,Muscicapidae (Old World Flycatchers),,ficale1 23403.0149,species,kasrob2,Karoo Scrub-Robin,Cercotrichas coryphoeus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.01495,species,fosrob1,Forest Scrub-Robin,Cercotrichas leucosticta,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0153,issf,forscr2,Forest Scrub-Robin (Forest),Cercotrichas leucosticta [leucosticta Group],Passeriformes,Muscicapidae (Old World Flycatchers),,fosrob1 23403.0154,issf,forscr3,Forest Scrub-Robin (Huila),Cercotrichas leucosticta reichenowi,Passeriformes,Muscicapidae (Old World Flycatchers),,fosrob1 23403.0157,species,brsrob1,Brown Scrub-Robin,Cercotrichas signata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0158,species,besrob1,Bearded Scrub-Robin,Cercotrichas quadrivirgata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.01589,issf,beascr1,Bearded Scrub-Robin (Bearded),Cercotrichas quadrivirgata quadrivirgata,Passeriformes,Muscicapidae (Old World Flycatchers),,besrob1 23403.016,issf,beascr2,Bearded Scrub-Robin (Zanzibar),Cercotrichas quadrivirgata greenwayi,Passeriformes,Muscicapidae (Old World Flycatchers),,besrob1 23403.0161,species,misrob1,Miombo Scrub-Robin,Cercotrichas barbata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0164,species,blsrob1,Black Scrub-Robin,Cercotrichas podobe,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0168,species,rtsrob1,Rufous-tailed Scrub-Robin,Cercotrichas galactotes,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0171,species,afrscr1,African Scrub-Robin,Cercotrichas minor,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0176,species,kasrob1,Kalahari Scrub-Robin,Cercotrichas paena,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0177,species,bbsrob1,Brown-backed Scrub-Robin,Cercotrichas hartlaubi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0178,species,rbsrob1,Red-backed Scrub-Robin,Cercotrichas leucophrys,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.018,issf,rebscr1,Red-backed Scrub-Robin (White-winged),Cercotrichas leucophrys [leucoptera Group],Passeriformes,Muscicapidae (Old World Flycatchers),,rbsrob1 23403.0187,issf,rebscr2,Red-backed Scrub-Robin (Red-backed),Cercotrichas leucophrys [leucophrys Group],Passeriformes,Muscicapidae (Old World Flycatchers),,rbsrob1 23403.0188,spuh,scrub-1,scrub-robin sp.,Cercotrichas sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0189,species,indrob1,Indian Robin,Copsychus fulicatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0195,species,magrob,Oriental Magpie-Robin,Copsychus saularis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.01953,issf,orimar1,Oriental Magpie-Robin (Oriental),Copsychus saularis [saularis Group],Passeriformes,Muscicapidae (Old World Flycatchers),,magrob 23403.01956,issf,orimar2,Oriental Magpie-Robin (Black),Copsychus saularis [amoenus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,magrob 23403.0212,species,rutsha2,Rufous-tailed Shama,Copsychus pyrropygus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0213,species,mamrob1,Madagascar Magpie-Robin,Copsychus albospecularis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0214,issf,madmar1,Madagascar Magpie-Robin (Black-bellied),Copsychus albospecularis albospecularis,Passeriformes,Muscicapidae (Old World Flycatchers),,mamrob1 23403.0215,issf,madmar2,Madagascar Magpie-Robin (White-bellied),Copsychus albospecularis inexspectatus,Passeriformes,Muscicapidae (Old World Flycatchers),,mamrob1 23403.0216,issf,madmar3,Madagascar Magpie-Robin (White-winged),Copsychus albospecularis pica,Passeriformes,Muscicapidae (Old World Flycatchers),,mamrob1 23403.0218,species,semrob1,Seychelles Magpie-Robin,Copsychus sechellarum,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0219,species,phimar1,Philippine Magpie-Robin,Copsychus mindanensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.022,species,whrsha,White-rumped Shama,Copsychus malabaricus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0221,issf,whrsha1,White-rumped Shama (White-rumped),Copsychus malabaricus [malabaricus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whrsha 23403.0228,issf,whrsha3,White-rumped Shama (Barusan),Copsychus malabaricus [melanurus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whrsha 23403.0239,issf,whrsha2,White-rumped Shama (White-crowned),Copsychus malabaricus stricklandii/barbouri,Passeriformes,Muscicapidae (Old World Flycatchers),,whrsha 23403.0242,species,andsha1,Andaman Shama,Copsychus albiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0243,species,whbsha1,White-browed Shama,Copsychus luzoniensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0247,species,vissha1,Visayan Shama,Copsychus superciliaris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0248,species,whvsha1,White-vented Shama,Copsychus niger,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0249,species,blasha1,Black Shama,Copsychus cebuensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.025,species,whgfly1,White-gorgeted Flycatcher,Anthipes monileger,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0254,species,rubfly3,Rufous-browed Flycatcher,Anthipes solitaris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.02543,species,whbsho1,Nilgiri Blue Robin,Sholicola major,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.02546,species,whbsho3,White-bellied Blue Robin,Sholicola albiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0258,species,matfly2,Matinan Flycatcher,Cyornis sanfordi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0259,species,blffly1,Blue-fronted Flycatcher,Cyornis hoevelli,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.026,species,tibfly2,Timor Blue Flycatcher,Cyornis hyacinthinus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0263,species,whtfly2,White-tailed Flycatcher,Cyornis concretus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0267,species,rubfly1,RŸck's Blue Flycatcher,Cyornis ruckii,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0268,species,blbfly3,Blue-breasted Flycatcher,Cyornis herioti,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.02683,issf,bubfly1,Blue-breasted Flycatcher (Blue-breasted),Cyornis herioti herioti,Passeriformes,Muscicapidae (Old World Flycatchers),,blbfly3 23403.02686,issf,bubfly2,Blue-breasted Flycatcher (Rufous-breasted),Cyornis herioti camarinensis,Passeriformes,Muscicapidae (Old World Flycatchers),,blbfly3 23403.0271,species,habfly1,Hainan Blue Flycatcher,Cyornis hainanus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0272,species,wbbfly1,White-bellied Blue Flycatcher,Cyornis pallipes,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0273,species,pacblf1,Pale-chinned Blue Flycatcher,Cyornis poliogenys,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0278,species,pabfly2,Pale Blue Flycatcher,Cyornis unicolor,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0279,issf,pabfly3,Pale Blue Flycatcher (Unicolored),Cyornis unicolor unicolor,Passeriformes,Muscicapidae (Old World Flycatchers),,pabfly2 23403.028,issf,pabfly4,Pale Blue Flycatcher (Diao Luo),Cyornis unicolor diaoluoensis,Passeriformes,Muscicapidae (Old World Flycatchers),,pabfly2 23403.0281,issf,pabfly5,Pale Blue Flycatcher (Hartert's),Cyornis unicolor harterti,Passeriformes,Muscicapidae (Old World Flycatchers),,pabfly2 23403.0283,species,butfly1,Blue-throated Flycatcher,Cyornis rubeculoides,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0288,species,butfly2,Chinese Blue Flycatcher,Cyornis glaucicomans,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.02885,slash,bltfly2,Blue-throated/Chinese Blue Flycatcher,Cyornis rubeculoides/glaucicomans,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0289,species,larblf1,Large Blue Flycatcher,Cyornis magnirostris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.029,species,hibfly1,Hill Blue Flycatcher,Cyornis banyumas,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0293,form,merjuf1,Meratus Jungle-Flycatcher (undescribed form),Cyornis [undescribed Meratus form],Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0299,species,lobblf1,Sunda Blue Flycatcher,Cyornis caerulatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0303,species,mabfly1,Malaysian Blue Flycatcher,Cyornis turcosus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0306,species,pabfly1,Palawan Blue Flycatcher,Cyornis lemprieri,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0307,species,bobfly2,Bornean Blue Flycatcher,Cyornis superbus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0308,species,tibfly1,Tickell's Blue Flycatcher,Cyornis tickelliae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0309,issf,tibfly3,Tickell's Blue Flycatcher (Tickell's),Cyornis tickelliae tickelliae/jerdoni,Passeriformes,Muscicapidae (Old World Flycatchers),,tibfly1 23403.031,issf,tibfly4,Tickell's Blue Flycatcher (Indochinese),Cyornis tickelliae [sumatrensis Group],Passeriformes,Muscicapidae (Old World Flycatchers),,tibfly1 23403.0314,species,mabfly2,Mangrove Blue Flycatcher,Cyornis rufigastra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.03145,issf,manblf1,Mangrove Blue Flycatcher (Mangrove),Cyornis rufigastra [rufigastra Group],Passeriformes,Muscicapidae (Old World Flycatchers),,mabfly2 23403.03185,issf,manblf2,Mangrove Blue Flycatcher (Philippine),Cyornis rufigastra [blythi Group],Passeriformes,Muscicapidae (Old World Flycatchers),,mabfly2 23403.0323,species,subfly1,Sulawesi Blue Flycatcher,Cyornis omissus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0324,issf,sulblf1,Sulawesi Blue Flycatcher (Sulawesi),Cyornis omissus omissus/peromissus,Passeriformes,Muscicapidae (Old World Flycatchers),,subfly1 23403.0328,issf,sulblf2,Sulawesi Blue Flycatcher (Tanahjampea),Cyornis omissus djampeanus/kalaoensis,Passeriformes,Muscicapidae (Old World Flycatchers),,subfly1 23403.03285,form,togjuf1,Togian Jungle-Flycatcher (undescribed form),Cyornis [undescribed Togian form],Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0329,species,bncjuf1,Brown-chested Jungle-Flycatcher,Cyornis brunneatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.033,species,nicjuf1,Nicobar Jungle-Flycatcher,Cyornis nicobaricus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0331,species,gycjuf1,Gray-chested Jungle-Flycatcher,Cyornis umbratilis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0332,species,fucjuf1,Fulvous-chested Jungle-Flycatcher,Cyornis olivaceus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0336,species,flojuf1,Flores Jungle-Flycatcher,Cyornis oscillans,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0337,issf,flojuf2,Flores Jungle-Flycatcher (Russet-backed),Cyornis oscillans oscillans,Passeriformes,Muscicapidae (Old World Flycatchers),,flojuf1 23403.0338,issf,flojuf3,Flores Jungle-Flycatcher (Sumba),Cyornis oscillans stresemanni,Passeriformes,Muscicapidae (Old World Flycatchers),,flojuf1 23403.0339,species,chtjuf1,Chestnut-tailed Jungle-Flycatcher,Cyornis ruficauda,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.034,issf,chtjuf2,Chestnut-tailed Jungle-Flycatcher (Philippine),Cyornis ruficauda [ruficauda Group],Passeriformes,Muscicapidae (Old World Flycatchers),,chtjuf1 23403.0341,issf,chtjuf3,Chestnut-tailed Jungle-Flycatcher (Sulu),Cyornis ruficauda ocularis,Passeriformes,Muscicapidae (Old World Flycatchers),,chtjuf1 23403.0342,issf,chtjuf4,Chestnut-tailed Jungle-Flycatcher (Crocker),Cyornis ruficauda ruficrissa/isola,Passeriformes,Muscicapidae (Old World Flycatchers),,chtjuf1 23403.0347,species,htjfly1,Henna-tailed Jungle-Flycatcher,Cyornis colonus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0351,spuh,blue-f1,blue flycatcher sp.,Cyornis sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0352,species,larnil1,Large Niltava,Niltava grandis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0357,species,smanil1,Small Niltava,Niltava macgrigoriae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.036,species,fujnil1,Fujian Niltava,Niltava davidi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0361,species,rubnil1,Rufous-bellied Niltava,Niltava sundara,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0365,species,ruvnil1,Rufous-vented Niltava,Niltava sumatrana,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0366,species,vivnil1,Vivid Niltava,Niltava vivida,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.03662,issf,vivnil2,Vivid Niltava (Large),Niltava vivida oatesi,Passeriformes,Muscicapidae (Old World Flycatchers),,vivnil1 23403.03665,issf,vivnil3,Vivid Niltava (Small),Niltava vivida vivida,Passeriformes,Muscicapidae (Old World Flycatchers),,vivnil1 23403.0369,spuh,niltav1,niltava sp.,Niltava sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0373,species,bawfly2,Blue-and-white Flycatcher,Cyanoptila cyanomelana,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.03755,species,zapfly1,Zappey's Flycatcher,Cyanoptila cumatilis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.03757,slash,y00911,Blue-and-white/Zappey's Flycatcher,Cyanoptila cyanomelana/cumatilis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0376,species,dubfly3,Dull-blue Flycatcher,Eumyias sordidus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0377,species,nilfly2,Nilgiri Flycatcher,Eumyias albicaudatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0378,species,indfly1,Indigo Flycatcher,Eumyias indigo,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.03783,issf,indfly2,Indigo Flycatcher (Rufous-vented),Eumyias indigo ruficrissa/cerviniventris,Passeriformes,Muscicapidae (Old World Flycatchers),,indfly1 23403.03786,issf,indfly3,Indigo Flycatcher (Javan),Eumyias indigo indigo,Passeriformes,Muscicapidae (Old World Flycatchers),,indfly1 23403.0382,species,verfly4,Verditer Flycatcher,Eumyias thalassinus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0385,species,burjuf1,Buru Jungle-Flycatcher,Eumyias additus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0386,species,islfly1,Turquoise Flycatcher,Eumyias panayensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0395,species,wbrcha1,White-bellied Robin-Chat,Cossyphicula roberti,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0396,issf,whbroc1,White-bellied Robin-Chat (White-bellied),Cossyphicula roberti roberti,Passeriformes,Muscicapidae (Old World Flycatchers),,wbrcha1 23403.0397,issf,whbroc2,White-bellied Robin-Chat (Albertine),Cossyphicula roberti rufescentior,Passeriformes,Muscicapidae (Old World Flycatchers),,wbrcha1 23403.0398,species,morcha1,Mountain Robin-Chat,Cossypha isabellae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0399,issf,mouroc1,Mountain Robin-Chat (Highland),Cossypha isabellae batesi,Passeriformes,Muscicapidae (Old World Flycatchers),,morcha1 23403.04,issf,mouroc2,Mountain Robin-Chat (Mountain),Cossypha isabellae isabellae,Passeriformes,Muscicapidae (Old World Flycatchers),,morcha1 23403.0401,species,arrcha1,Archer's Robin-Chat,Cossypha archeri,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0402,issf,arcroc1,Archer's Robin-Chat (Archer's),Cossypha archeri archeri,Passeriformes,Muscicapidae (Old World Flycatchers),,arrcha1 23403.0403,issf,arcroc2,Archer's Robin-Chat (Kabobo),Cossypha archeri kimbutui,Passeriformes,Muscicapidae (Old World Flycatchers),,arrcha1 23403.0404,species,ofrcha1,Olive-flanked Robin-Chat,Cossypha anomala,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0405,issf,olfroc1,Olive-flanked Robin-Chat (White-bellied),Cossypha anomala grotei,Passeriformes,Muscicapidae (Old World Flycatchers),,ofrcha1 23403.0406,issf,olfroc2,Olive-flanked Robin-Chat (Black),Cossypha anomala mbuluensis,Passeriformes,Muscicapidae (Old World Flycatchers),,ofrcha1 23403.04065,issf,olfroc3,Olive-flanked Robin-Chat (Olive-flanked),Cossypha anomala [anomala Group],Passeriformes,Muscicapidae (Old World Flycatchers),,ofrcha1 23403.041,species,carcha1,Cape Robin-Chat,Cossypha caffra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0417,species,wtrcha1,White-throated Robin-Chat,Cossypha humeralis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0418,species,bsrcha1,Blue-shouldered Robin-Chat,Cossypha cyanocampter,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0421,species,gywroc1,Gray-winged Robin-Chat,Cossypha polioptera,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.04215,issf,gywroc2,Gray-winged Robin-Chat (Black-capped),Cossypha polioptera nigriceps/tessmanni,Passeriformes,Muscicapidae (Old World Flycatchers),,gywroc1 23403.0424,issf,gywroc3,Gray-winged Robin-Chat (Gray-winged),Cossypha polioptera polioptera,Passeriformes,Muscicapidae (Old World Flycatchers),,gywroc1 23403.0425,species,rurcha1,RŸppell's Robin-Chat,Cossypha semirufa,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0429,species,wbrcha2,White-browed Robin-Chat,Cossypha heuglini,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0433,species,rcrcha1,Red-capped Robin-Chat,Cossypha natalensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0437,species,chrcha1,Chorister Robin-Chat,Cossypha dichroa,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.044,species,whrcha1,White-headed Robin-Chat,Cossypha heinrichi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0441,species,scrcha1,Snowy-crowned Robin-Chat,Cossypha niveicapilla,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0444,species,wcrcha1,White-crowned Robin-Chat,Cossypha albicapillus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0448,spuh,robin-1,robin-chat sp.,Cossypha sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0449,species,anccha1,Angola Cave-Chat,Xenocopsychus ansorgei,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.045,species,copthr1,Collared Palm-Thrush,Cichladusa arquata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0451,species,rtpthr1,Rufous-tailed Palm-Thrush,Cichladusa ruficauda,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0452,species,spmthr1,Spotted Morning-Thrush,Cichladusa guttata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0456,species,eurrob1,European Robin,Erithacus rubecula,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0465,species,whsrob1,White-starred Robin,Pogonocichla stellata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0476,species,swyrob1,Swynnerton's Robin,Swynnertonia swynnertoni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0477,issf,swyrob2,Swynnerton's Robin (Udzungwa),Swynnertonia swynnertoni rodgersi,Passeriformes,Muscicapidae (Old World Flycatchers),,swyrob1 23403.0478,issf,swyrob3,Swynnerton's Robin (Swynnerton's),Swynnertonia swynnertoni swynnertoni,Passeriformes,Muscicapidae (Old World Flycatchers),,swyrob1 23403.0479,species,brcale1,Brown-chested Alethe,Pseudalethe poliocephala,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.048,issf,bncale1,Brown-chested Alethe (Gray-headed),Pseudalethe poliocephala poliocephala,Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 23403.0481,issf,bncale2,Brown-chested Alethe (Gabela),Pseudalethe poliocephala hallae,Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 23403.04813,issf,bncale3,Brown-chested Alethe (Chestnut-backed),Pseudalethe poliocephala compsonota,Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 23403.04816,issf,bncale4,Brown-chested Alethe (Brown-chested),Pseudalethe poliocephala [carruthersi Group],Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 23403.049,species,retale1,Red-throated Alethe,Pseudalethe poliophrys,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0493,species,choale1,Cholo Alethe,Pseudalethe choloensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0496,species,whcale1,White-chested Alethe,Pseudalethe fuelleborni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0497,species,forrob1,Forest Robin,Stiphrornis erythrothorax,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0498,issf,forrob2,Forest Robin (Western),Stiphrornis erythrothorax erythrothorax,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 23403.0499,issf,forrob3,Forest Robin (Gabon),Stiphrornis erythrothorax gabonensis,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 23403.05,issf,forrob4,Forest Robin (Sangha),Stiphrornis erythrothorax sanghensis,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 23403.05005,issf,forrob6,Forest Robin (Olive-backed),Stiphrornis erythrothorax pyrrholaemus,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 23403.0501,issf,forrob5,Forest Robin (Eastern),Stiphrornis erythrothorax xanthogaster,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 23403.0502,species,bocaka1,Bocage's Akalat,Sheppardia bocagei,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0503,issf,bocaka2,Bocage's Akalat (Grant's),Sheppardia bocagei granti,Passeriformes,Muscicapidae (Old World Flycatchers),,bocaka1 23403.0504,issf,bocaka3,Bocage's Akalat (Bioko),Sheppardia bocagei poensis,Passeriformes,Muscicapidae (Old World Flycatchers),,bocaka1 23403.05045,issf,bocaka4,Bocage's Akalat (Bocage's),Sheppardia bocagei [bocagei Group],Passeriformes,Muscicapidae (Old World Flycatchers),,bocaka1 23403.0511,species,lowaka1,Lowland Akalat,Sheppardia cyornithopsis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0515,species,equaka1,Equatorial Akalat,Sheppardia aequatorialis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0518,species,shaaka1,Sharpe's Akalat,Sheppardia sharpei,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0521,species,eacaka1,East Coast Akalat,Sheppardia gunningi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0522,issf,eacaka2,East Coast Akalat (East Coast),Sheppardia gunningi sokokensis,Passeriformes,Muscicapidae (Old World Flycatchers),,eacaka1 23403.05225,issf,eacaka3,East Coast Akalat (Gunning's),Sheppardia gunningi [gunningi Group],Passeriformes,Muscicapidae (Old World Flycatchers),,eacaka1 23403.0526,species,gabaka1,Gabela Akalat,Sheppardia gabela,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0527,species,usaaka1,Usambara Akalat,Sheppardia montana,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0528,species,iriaka1,Iringa Akalat,Sheppardia lowei,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0529,species,rubaka1,Rubeho Akalat,Sheppardia aurantiithorax,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.05295,species,bagbab2,Bagobo Robin,Leonardina woodi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.053,species,eyjfly1,Eyebrowed Jungle-Flycatcher,Vauriella gularis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0531,species,rufjuf1,Rusty-flanked Jungle-Flycatcher,Vauriella insignis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0532,species,negjuf1,Negros Jungle-Flycatcher,Vauriella albigularis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0533,species,minjuf1,Mindanao Jungle-Flycatcher,Vauriella goodfellowi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0534,species,gresho1,Great Shortwing,Heinrichia calligyna,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.05343,issf,gresho2,Great Shortwing (Minahasa),Heinrichia calligyna simplex,Passeriformes,Muscicapidae (Old World Flycatchers),,gresho1 23403.05346,issf,gresho3,Great Shortwing (Great),Heinrichia calligyna calligyna/picta,Passeriformes,Muscicapidae (Old World Flycatchers),,gresho1 23403.0538,species,rubsho1,Rusty-bellied Shortwing,Brachypteryx hyperythra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0539,species,gousho1,Gould's Shortwing,Brachypteryx stellata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0545,species,lessho1,Lesser Shortwing,Brachypteryx leucophris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0551,species,whbsho2,White-browed Shortwing,Brachypteryx montana,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.05511,issf,whbsho4,White-browed Shortwing (Himalayan),Brachypteryx montana cruralis,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.05512,issf,whbsho5,White-browed Shortwing (Chinese),Brachypteryx montana sinensis,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.05513,issf,whbsho6,White-browed Shortwing (Taiwan),Brachypteryx montana goodfellowi,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.05514,issf,whbsho7,White-browed Shortwing (Philippine),Brachypteryx montana [poliogyna Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.05515,issf,whbsho8,White-browed Shortwing (Bornean),Brachypteryx montana erythrogyna,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.05516,issf,whbsho9,White-browed Shortwing (Sumatran),Brachypteryx montana saturata,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.05517,issf,whbsho10,White-browed Shortwing (Javan),Brachypteryx montana montana,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.05518,issf,whbsho11,White-browed Shortwing (Flores),Brachypteryx montana floris,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho2 23403.0555,spuh,brachy1,Brachypteryx sp.,Brachypteryx sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0566,species,rutrob1,Rufous-tailed Robin,Larvivora sibilans,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0567,species,ruhrob1,Rufous-headed Robin,Larvivora ruficeps,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0568,species,japrob1,Japanese Robin,Larvivora akahige,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.05683,issf,japrob2,Japanese Robin (Japanese),Larvivora akahige akahige/rishirensis,Passeriformes,Muscicapidae (Old World Flycatchers),,japrob1 23403.05686,issf,japrob3,Japanese Robin (Izu),Larvivora akahige tanensis,Passeriformes,Muscicapidae (Old World Flycatchers),,japrob1 23403.0572,species,ryurob1,Ryukyu Robin,Larvivora komadori,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.05723,issf,ryurob2,Ryukyu Robin (Ryukyu),Larvivora komadori komadori/subrufus,Passeriformes,Muscicapidae (Old World Flycatchers),,ryurob1 23403.05726,issf,ryurob3,Ryukyu Robin (Okinawa),Larvivora komadori namiyei,Passeriformes,Muscicapidae (Old World Flycatchers),,ryurob1 23403.0576,species,inbrob1,Indian Blue Robin,Larvivora brunnea,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0579,species,sibrob,Siberian Blue Robin,Larvivora cyane,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0582,species,whtrob3,White-throated Robin,Irania gutturalis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0583,species,thrnig1,Thrush Nightingale,Luscinia luscinia,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0584,species,comnig1,Common Nightingale,Luscinia megarhynchos,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0585,issf,comnig2,Common Nightingale (megarhynchos/africana),Luscinia megarhynchos megarhynchos/africana,Passeriformes,Muscicapidae (Old World Flycatchers),,comnig1 23403.0586,issf,comnig3,Common Nightingale (golzii),Luscinia megarhynchos golzii,Passeriformes,Muscicapidae (Old World Flycatchers),,comnig1 23403.05879,slash,y00625,Thrush/Common Nightingale,Luscinia luscinia/megarhynchos,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0589,species,whbred1,White-bellied Redstart,Luscinia phaenicuroides,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0592,species,blueth,Bluethroat,Luscinia svecica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0593,issf,blueth1,Bluethroat (Red-spotted),Luscinia svecica [svecica Group],Passeriformes,Muscicapidae (Old World Flycatchers),,blueth 23403.0602,issf,blueth4,Bluethroat (Iberian),Luscinia svecica azuricollis,Passeriformes,Muscicapidae (Old World Flycatchers),,blueth 23403.0603,issf,blueth2,Bluethroat (White-spotted),Luscinia svecica cyanecula/namnetum,Passeriformes,Muscicapidae (Old World Flycatchers),,blueth 23403.0606,issf,blueth3,Bluethroat (Caucasian),Luscinia svecica magna,Passeriformes,Muscicapidae (Old World Flycatchers),,blueth 23403.0607,species,ceywht1,Sri Lanka Whistling-Thrush,Myophonus blighi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0608,species,shwthr1,Shiny Whistling-Thrush,Myophonus melanurus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0609,species,javwht1,Javan Whistling-Thrush,Myophonus glaucinus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.061,species,chwwht1,Sumatran Whistling-Thrush,Myophonus castaneus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0611,species,borwht1,Bornean Whistling-Thrush,Myophonus borneensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0612,species,mawthr2,Malayan Whistling-Thrush,Myophonus robinsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0613,species,mawthr1,Malabar Whistling-Thrush,Myophonus horsfieldii,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0614,species,fowthr1,Taiwan Whistling-Thrush,Myophonus insularis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0615,species,blwthr1,Blue Whistling-Thrush,Myophonus caeruleus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0616,issf,bluwht1,Blue Whistling-Thrush (Black-billed),Myophonus caeruleus caeruleus,Passeriformes,Muscicapidae (Old World Flycatchers),,blwthr1 23403.0617,issf,bluwht2,Blue Whistling-Thrush (Yellow-billed),Myophonus caeruleus [flavirostris Group],Passeriformes,Muscicapidae (Old World Flycatchers),,blwthr1 23403.062,spuh,whistl2,whistling-thrush sp.,Myophonus sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0622,species,litfor1,Little Forktail,Enicurus scouleri,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0625,species,whcfor1,White-crowned Forktail,Enicurus leschenaulti,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.06255,issf,whcfor4,White-crowned Forktail (White-crowned),Enicurus leschenaulti [frontalis Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whcfor1 23403.0628,issf,whcfor5,White-crowned Forktail (Javan),Enicurus leschenaulti leschenaulti,Passeriformes,Muscicapidae (Old World Flycatchers),,whcfor1 23403.0631,issf,whcfor3,White-crowned Forktail (Bornean),Enicurus leschenaulti borneensis,Passeriformes,Muscicapidae (Old World Flycatchers),,whcfor1 23403.0632,species,spofor1,Spotted Forktail,Enicurus maculatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0637,species,sunfor1,Sunda Forktail,Enicurus velatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.064,species,chnfor1,Chestnut-naped Forktail,Enicurus ruficapillus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0641,species,blbfor1,Black-backed Forktail,Enicurus immaculatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0642,species,slbfor1,Slaty-backed Forktail,Enicurus schistaceus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.06425,spuh,forkta1,forktail sp.,Enicurus sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0643,species,fireth1,Firethroat,Calliope pectardens,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0644,species,btbrob1,Black-throated Blue Robin,Calliope obscura,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0645,species,sibrub,Siberian Rubythroat,Calliope calliope,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.06452,species,himrub1,Himalayan Rubythroat,Calliope pectoralis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.06456,species,chirub1,Chinese Rubythroat,Calliope tschebaiewi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0646,slash,whtrub1,Himalayan/Chinese Rubythroat (White-tailed Rubythroat),Calliope pectoralis/tschebaiewi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0651,species,whtrob2,White-tailed Robin,Myiomela leucura,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0653,issf,whtrob4,White-tailed Robin (White-tailed),Myiomela leucura leucura/montium,Passeriformes,Muscicapidae (Old World Flycatchers),,whtrob2 23403.0654,issf,whtrob5,White-tailed Robin (Cambodian),Myiomela leucura cambodiana,Passeriformes,Muscicapidae (Old World Flycatchers),,whtrob2 23403.0655,species,sunrob1,Sunda Robin,Myiomela diana,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0656,issf,sunrob2,Sunda Robin (Sumatran),Myiomela diana sumatrana,Passeriformes,Muscicapidae (Old World Flycatchers),,sunrob1 23403.0657,issf,sunrob3,Sunda Robin (Javan),Myiomela diana diana,Passeriformes,Muscicapidae (Old World Flycatchers),,sunrob1 23403.0658,species,blfrob1,Blue-fronted Robin,Cinclidium frontale,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0661,species,granda1,Grandala,Grandala coelicolor,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0662,species,refblu,Red-flanked Bluetail,Tarsiger cyanurus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0663,species,himblu1,Himalayan Bluetail,Tarsiger rufilatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.06635,slash,y00912,Red-flanked/Himalayan Bluetail,Tarsiger cyanurus/rufilatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0664,species,rbbrob1,Rufous-breasted Bush-Robin,Tarsiger hyperythrus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0665,species,wbbrob1,White-browed Bush-Robin,Tarsiger indicus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0669,species,gobrob1,Golden Bush-Robin,Tarsiger chrysaeus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0672,species,cobrob1,Collared Bush-Robin,Tarsiger johnstoniae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.06725,spuh,tarsig1,Tarsiger sp.,Tarsiger sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0673,species,korfly1,Korean Flycatcher,Ficedula zanthopygia,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0677,species,narfly1,Green-backed Flycatcher,Ficedula elisae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0678,species,narfly,Narcissus Flycatcher,Ficedula narcissina,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0679,issf,narfly2,Narcissus Flycatcher (Narcissus),Ficedula narcissina narcissina,Passeriformes,Muscicapidae (Old World Flycatchers),,narfly 23403.0683,issf,narfly3,Narcissus Flycatcher (Green-crowned),Ficedula narcissina owstoni,Passeriformes,Muscicapidae (Old World Flycatchers),,narfly 23403.0686,slash,y00913,Korean/Green-backed/Narcissus Flycatcher,Ficedula zanthopygia/elisae/narcissina,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0687,species,mugfly,Mugimaki Flycatcher,Ficedula mugimaki,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0688,species,slbfly1,Slaty-backed Flycatcher,Ficedula sordida,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0689,species,barfly1,Black-and-rufous Flycatcher,Ficedula nigrorufa,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.06895,species,slbfly2,Slaty-blue Flycatcher,Ficedula tricolor,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.069,species,snbfly1,Snowy-browed Flycatcher,Ficedula hyperythra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0691,species,pybfly1,Pygmy Flycatcher,Ficedula hodgsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0692,species,rugfly1,Rufous-gorgeted Flycatcher,Ficedula strophiata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0701,species,sapfly1,Sapphire Flycatcher,Ficedula sapphira,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0705,species,lipfly1,Little Pied Flycatcher,Ficedula westermanni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0706,species,ultfly1,Ultramarine Flycatcher,Ficedula superciliaris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07065,species,rutfly6,Rusty-tailed Flycatcher,Ficedula ruficauda,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0707,species,taifly1,Taiga Flycatcher,Ficedula albicilla,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07073,species,kasfly1,Kashmir Flycatcher,Ficedula subrubra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07075,species,rebfly,Red-breasted Flycatcher,Ficedula parva,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0708,slash,y00821,Taiga/Red-breasted Flycatcher,Ficedula albicilla/parva,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07085,species,semfly1,Semicollared Flycatcher,Ficedula semitorquata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0709,species,eupfly1,European Pied Flycatcher,Ficedula hypoleuca,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.071,species,atlfly1,Atlas Flycatcher,Ficedula speculigera,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0711,slash,y00819,European Pied/Atlas Flycatcher,Ficedula hypoleuca/speculigera,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0714,species,colfly1,Collared Flycatcher,Ficedula albicollis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0717,hybrid,x00817,European Pied x Collared Flycatcher (hybrid),Ficedula hypoleuca x albicollis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07175,slash,y00820,European Pied/Collared/Semicollared Flycatcher,Ficedula hypoleuca/albicollis/semitorquata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0718,species,rucfly3,Tanimbar Flycatcher,Ficedula riedeli,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.072,species,rucfly1,Rufous-chested Flycatcher,Ficedula dumetoria,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0721,species,palfly1,Palawan Flycatcher,Ficedula platenae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07215,species,furfly1,Furtive Flycatcher,Ficedula disposita,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0722,species,rutfly5,Rufous-throated Flycatcher,Ficedula rufigula,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0723,species,damfly1,Damar Flycatcher,Ficedula henrici,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0724,species,cicfly1,Cinnamon-chested Flycatcher,Ficedula buruensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07245,species,lomfly1,Lompobattang Flycatcher,Ficedula bonthaina,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0746,species,sumfly1,Sumba Flycatcher,Ficedula harterti,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.07465,species,blbfly2,Black-banded Flycatcher,Ficedula timorensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0747,species,lisfly1,Little Slaty Flycatcher,Ficedula basilanica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0752,species,rutfly7,Cryptic Flycatcher,Ficedula crypta,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0753,species,bunfly1,Bundok Flycatcher,Ficedula luzoniensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0757,spuh,ficedu1,Ficedula sp.,Ficedula sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0758,species,blfred1,Blue-fronted Redstart,Phoenicurus frontalis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0759,species,plured1,Plumbeous Redstart,Phoenicurus fuliginosus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0762,species,luzred1,Luzon Redstart,Phoenicurus bicolor,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0763,species,rubred2,Rufous-backed Redstart,Phoenicurus erythronotus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0764,species,whcred1,White-capped Redstart,Phoenicurus leucocephalus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0765,species,alsred1,Ala Shan Redstart,Phoenicurus alaschanicus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0766,species,bucred1,Blue-capped Redstart,Phoenicurus coeruleocephala,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0767,species,moured1,Moussier's Redstart,Phoenicurus moussieri,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0768,species,comred2,Common Redstart,Phoenicurus phoenicurus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0769,issf,comred5,Common Redstart (Common),Phoenicurus phoenicurus phoenicurus,Passeriformes,Muscicapidae (Old World Flycatchers),,comred2 23403.077,issf,comred6,Common Redstart (Ehrenberg's),Phoenicurus phoenicurus samamisicus,Passeriformes,Muscicapidae (Old World Flycatchers),,comred2 23403.0771,species,hodred1,Hodgson's Redstart,Phoenicurus hodgsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0772,species,whtred1,White-throated Redstart,Phoenicurus schisticeps,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0773,species,whwred2,White-winged Redstart,Phoenicurus erythrogastrus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0776,species,blared1,Black Redstart,Phoenicurus ochruros,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0777,issf,blkred2,Black Redstart (Western),Phoenicurus ochruros gibraltariensis/aterrimus,Passeriformes,Muscicapidae (Old World Flycatchers),,blared1 23403.078,issf,blkred1,Black Redstart (Eastern),Phoenicurus ochruros [ochruros Group],Passeriformes,Muscicapidae (Old World Flycatchers),,blared1 23403.07855,hybrid,x00745,Common x Black Redstart (hybrid),Phoenicurus phoenicurus x ochruros,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0786,species,daured1,Daurian Redstart,Phoenicurus auroreus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0789,spuh,redsta1,redstart sp.,Phoenicurus sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.079,species,lirthr1,Little Rock-Thrush,Monticola rufocinereus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0793,species,cbrthr1,Chestnut-bellied Rock-Thrush,Monticola rufiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0794,species,wtrthr1,White-throated Rock-Thrush,Monticola gularis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0795,species,bcrthr1,Blue-capped Rock-Thrush,Monticola cinclorhynchus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0796,species,strthr1,Short-toed Rock-Thrush,Monticola brevipes,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0797,issf,shtrot1,Short-toed Rock-Thrush (Short-toed),Monticola brevipes brevipes,Passeriformes,Muscicapidae (Old World Flycatchers),,strthr1 23403.0799,issf,shtrot2,Short-toed Rock-Thrush (White-crowned),Monticola brevipes pretoriae,Passeriformes,Muscicapidae (Old World Flycatchers),,strthr1 23403.08,species,serthr1,Sentinel Rock-Thrush,Monticola explorator,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08021,species,forrot2,Forest Rock-Thrush,Monticola sharpei,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08022,issf,ammrot1,Forest Rock-Thrush (Amber Mountain),Monticola sharpei erythronotus,Passeriformes,Muscicapidae (Old World Flycatchers),,forrot2 23403.08025,issf,forrot1,Forest Rock-Thrush (Forest),Monticola sharpei sharpei,Passeriformes,Muscicapidae (Old World Flycatchers),,forrot2 23403.08026,issf,benrot1,Forest Rock-Thrush (Benson's),Monticola sharpei bensoni,Passeriformes,Muscicapidae (Old World Flycatchers),,forrot2 23403.0806,species,litrot1,Littoral Rock-Thrush,Monticola imerina,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0807,species,rtrthr1,Rufous-tailed Rock-Thrush,Monticola saxatilis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0808,species,burthr,Blue Rock-Thrush,Monticola solitarius,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0809,issf,blurot1,Blue Rock-Thrush (solitarius/longirostris),Monticola solitarius solitarius/longirostris,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr 23403.08095,issf,blurot5,Blue Rock-Thrush (pandoo),Monticola solitarius pandoo,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr 23403.081,issf,blurot2,Blue Rock-Thrush (philippensis),Monticola solitarius philippensis,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr 23403.0812,intergrade,blurot3,Blue Rock-Thrush (pandoo x philippensis),Monticola solitarius pandoo x philippensis,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr 23403.0813,issf,blurot4,Blue Rock-Thrush (madoci),Monticola solitarius madoci,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr 23403.0814,species,mirthr1,Miombo Rock-Thrush,Monticola angolensis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0817,species,carthr1,Cape Rock-Thrush,Monticola rupestris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08175,spuh,rock-t1,rock-thrush sp.,Monticola sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0818,species,whinch1,Whinchat,Saxicola rubetra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08185,hybrid,x00818,Common Redstart x Whinchat (hybrid),Phoenicurus phoenicurus x Saxicola rubetra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0819,species,whbbus4,White-browed Bushchat,Saxicola macrorhynchus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.082,species,whtbus1,White-throated Bushchat,Saxicola insignis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08209,species,caisto1,Fuerteventura Stonechat,Saxicola dacotiae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0824,species,stonec4,European Stonechat,Saxicola rubicola,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08275,species,sibsto1,Siberian Stonechat,Saxicola maurus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08277,issf,sibsto2,Siberian Stonechat (Caspian),Saxicola maurus hemprichii,Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 23403.0828,issf,stonec2,Siberian Stonechat (Siberian),Saxicola maurus [maurus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 23403.0829,issf,sibsto3,Siberian Stonechat (Przevalski's),Saxicola maurus przewalskii,Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 23403.0834,issf,stonec7,Siberian Stonechat (Stejneger's),Saxicola maurus stejnegeri,Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 23403.08343,slash,stonec1,European/Siberian Stonechat,Saxicola rubicola/maurus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08345,species,afrsto1,African Stonechat,Saxicola torquatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0835,issf,stonec3,African Stonechat (African),Saxicola torquatus [torquatus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,afrsto1 23403.0851,issf,stonec5,African Stonechat (Ethiopian),Saxicola torquatus albofasciatus,Passeriformes,Muscicapidae (Old World Flycatchers),,afrsto1 23403.0852,issf,stonec6,African Stonechat (Madagascar),Saxicola torquatus sibilla,Passeriformes,Muscicapidae (Old World Flycatchers),,afrsto1 23403.0853,species,reusto1,Reunion Stonechat,Saxicola tectes,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0854,species,whtsto2,White-tailed Stonechat,Saxicola leucurus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08545,slash,y00914,Siberian/White-tailed Stonechat,Saxicola maurus/leucurus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0855,species,piebus1,Pied Bushchat,Saxicola caprata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0872,species,jerbus1,Jerdon's Bushchat,Saxicola jerdoni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0875,species,grybus1,Gray Bushchat,Saxicola ferreus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0876,species,timbus1,Timor Bushchat,Saxicola gutturalis,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0879,species,busbus1,Buff-streaked Bushchat,Saxicola bifasciatus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.08795,spuh,saxico1,Saxicola sp.,Saxicola sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.088,species,boucha1,Boulder Chat,Pinarornis plumosus,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0881,species,conmoo1,Congo Moorchat,Myrmecocichla tholloni,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0882,species,noacha1,Northern Anteater-Chat,Myrmecocichla aethiops,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0886,species,soacha1,Southern Anteater-Chat,Myrmecocichla formicivora,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0887,species,soocha1,Sooty Chat,Myrmecocichla nigra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0888,species,ruecha1,RŸppell's Chat,Myrmecocichla melaena,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0889,species,wfbcha1,White-fronted Black-Chat,Myrmecocichla albifrons,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0895,species,whbcha2,White-headed Black-Chat,Myrmecocichla arnotti,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0898,species,ruacha1,Ruaha Chat,Myrmecocichla collaris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0899,species,moccha1,Mocking Cliff-Chat,Thamnolaea cinnamomeiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0908,species,wwccha1,White-winged Cliff-Chat,Thamnolaea semirufa,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0909,species,siccha1,Sicklewing Chat,Cercomela sinuata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0913,species,karcha1,Karoo Chat,Cercomela schlegelii,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0919,species,tracha1,Tractrac Chat,Cercomela tractrac,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0925,species,famcha1,Familiar Chat,Cercomela familiaris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0934,species,brtcha1,Brown-tailed Chat,Cercomela scotocerca,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.09345,issf,bntcha1,Brown-tailed Chat (Brown-tailed),Cercomela scotocerca [scotocerca Group],Passeriformes,Muscicapidae (Old World Flycatchers),,brtcha1 23403.09375,issf,bntcha2,Brown-tailed Chat (Pale),Cercomela scotocerca spectatrix/validior,Passeriformes,Muscicapidae (Old World Flycatchers),,brtcha1 23403.094,species,indcha1,Indian Chat,Cercomela fusca,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0941,species,somcha1,Sombre Chat,Cercomela dubia,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0942,species,blacks1,Blackstart,Cercomela melanura,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0949,species,moocha1,Moorland Chat,Cercomela sordida,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.095,issf,moocha2,Moorland Chat (Abyssinian),Cercomela sordida sordida,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 23403.0951,issf,moocha3,Moorland Chat (Rudolf's),Cercomela sordida rudolfi,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 23403.0952,issf,moocha4,Moorland Chat (Mt. Kenya),Cercomela sordida ernesti,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 23403.0953,issf,moocha5,Moorland Chat (Ngorongoro),Cercomela sordida olimotiensis,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 23403.0954,issf,moocha6,Moorland Chat (Mt. Kilimanjaro),Cercomela sordida hypospodia,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 23403.0955,species,whtwhe1,White-crowned Wheatear,Oenanthe leucopyga,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0959,species,hoowhe1,Hooded Wheatear,Oenanthe monacha,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.096,species,humwhe2,Hume's Wheatear,Oenanthe albonigra,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0961,species,blawhe1,Black Wheatear,Oenanthe leucura,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0964,species,mouwhe1,Mountain Wheatear,Oenanthe monticola,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0969,species,somwhe1,Somali Wheatear,Oenanthe phillipsi,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.097,species,norwhe,Northern Wheatear,Oenanthe oenanthe,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0971,issf,norwhe2,Northern Wheatear (Greenland),Oenanthe oenanthe leucorhoa,Passeriformes,Muscicapidae (Old World Flycatchers),,norwhe 23403.0972,issf,norwhe1,Northern Wheatear (Eurasian),Oenanthe oenanthe oenanthe/libanotica,Passeriformes,Muscicapidae (Old World Flycatchers),,norwhe 23403.0975,issf,norwhe3,Northern Wheatear (Black-throated),Oenanthe oenanthe seebohmi,Passeriformes,Muscicapidae (Old World Flycatchers),,norwhe 23403.0976,species,mouwhe2,Mourning Wheatear,Oenanthe lugens,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0977,issf,mouwhe3,Mourning Wheatear (Mourning),Oenanthe lugens lugens/persica,Passeriformes,Muscicapidae (Old World Flycatchers),,mouwhe2 23403.098,issf,mouwhe6,Mourning Wheatear (Maghreb),Oenanthe lugens halophila,Passeriformes,Muscicapidae (Old World Flycatchers),,mouwhe2 23403.0981,issf,mouwhe7,Mourning Wheatear (Basalt),Oenanthe lugens warriae,Passeriformes,Muscicapidae (Old World Flycatchers),,mouwhe2 23403.09811,species,mouwhe5,Arabian Wheatear,Oenanthe lugentoides,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.09832,species,mouwhe4,Abyssinian Wheatear,Oenanthe lugubris,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0987,species,finwhe1,Finsch's Wheatear,Oenanthe finschii,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.099,species,varwhe1,Variable Wheatear,Oenanthe picata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0991,species,rerwhe1,Red-rumped Wheatear,Oenanthe moesta,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0994,species,piewhe1,Pied Wheatear,Oenanthe pleschanka,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0995,species,cypwhe1,Cyprus Wheatear,Oenanthe cypriaca,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.09955,slash,y01004,Pied/Cyprus Wheatear,Oenanthe pleschanka/cypriaca,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0996,species,blewhe1,Black-eared Wheatear,Oenanthe hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0997,issf,bkewhe1,Black-eared Wheatear (Western),Oenanthe hispanica hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),,blewhe1 23403.0998,issf,bkewhe2,Black-eared Wheatear (Eastern),Oenanthe hispanica melanoleuca,Passeriformes,Muscicapidae (Old World Flycatchers),,blewhe1 23403.09983,slash,y00915,Northern/Black-eared Wheatear,Oenanthe oenanthe/hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.09985,hybrid,x00771,Pied x Black-eared Wheatear (hybrid),Oenanthe pleschanka x hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.0999,species,retwhe1,Red-tailed Wheatear,Oenanthe xanthoprymna,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.1,issf,retwhe2,Red-tailed Wheatear (Red-tailed),Oenanthe xanthoprymna chrysopygia,Passeriformes,Muscicapidae (Old World Flycatchers),,retwhe1 23403.1001,issf,retwhe3,Red-tailed Wheatear (Kurdistan),Oenanthe xanthoprymna xanthoprymna,Passeriformes,Muscicapidae (Old World Flycatchers),,retwhe1 23403.1002,species,deswhe1,Desert Wheatear,Oenanthe deserti,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.1007,species,capwhe1,Capped Wheatear,Oenanthe pileata,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.1011,species,isawhe1,Isabelline Wheatear,Oenanthe isabellina,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.1012,species,rebwhe1,Red-breasted Wheatear,Oenanthe bottae,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.10123,issf,rebwhe2,Red-breasted Wheatear (Buff-breasted),Oenanthe bottae bottae,Passeriformes,Muscicapidae (Old World Flycatchers),,rebwhe1 23403.10124,issf,rebwhe3,Red-breasted Wheatear (Rusty-breasted),Oenanthe bottae frenata,Passeriformes,Muscicapidae (Old World Flycatchers),,rebwhe1 23403.1015,species,heuwhe1,Heuglin's Wheatear,Oenanthe heuglini,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.1016,spuh,wheate1,wheatear sp.,Oenanthe sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 23403.10165,spuh,muscic2,Muscicapid sp.,Muscicapidae sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, 24315,species,rufthr1,Rufous Flycatcher-Thrush,Neocossyphus fraseri,Passeriformes,Turdidae (Thrushes and Allies),Thrushes, 24319,species,fifthr1,Finsch's Flycatcher-Thrush,Neocossyphus finschii,Passeriformes,Turdidae (Thrushes and Allies),, 24320,species,rtathr1,Red-tailed Ant-Thrush,Neocossyphus rufus,Passeriformes,Turdidae (Thrushes and Allies),, 24321,issf,retant3,Red-tailed Ant-Thrush (Red-tailed),Neocossyphus rufus gabunensis,Passeriformes,Turdidae (Thrushes and Allies),,rtathr1 24322,issf,retant4,Red-tailed Ant-Thrush (Coastal),Neocossyphus rufus rufus,Passeriformes,Turdidae (Thrushes and Allies),,rtathr1 24323,species,wtathr1,White-tailed Ant-Thrush,Neocossyphus poensis,Passeriformes,Turdidae (Thrushes and Allies),, 24373,species,sibthr1,Siberian Thrush,Geokichla sibirica,Passeriformes,Turdidae (Thrushes and Allies),, 24376,species,piethr1,Pied Thrush,Geokichla wardii,Passeriformes,Turdidae (Thrushes and Allies),, 24377,species,spgthr1,Spotted Ground-Thrush,Geokichla guttata,Passeriformes,Turdidae (Thrushes and Allies),, 24378,issf,spogrt1,Spotted Ground-Thrush (Lotti),Geokichla guttata maxis,Passeriformes,Turdidae (Thrushes and Allies),,spgthr1 24379,issf,spogrt2,Spotted Ground-Thrush (Congo),Geokichla guttata lippensi,Passeriformes,Turdidae (Thrushes and Allies),,spgthr1 24380,issf,spogrt3,Spotted Ground-Thrush (Spotted),Geokichla guttata [guttata Group],Passeriformes,Turdidae (Thrushes and Allies),,spgthr1 24383,species,bkegrt1,Black-eared Ground-Thrush,Geokichla camaronensis,Passeriformes,Turdidae (Thrushes and Allies),, 24384,issf,bkegrt2,Black-eared Ground-Thrush (Cameroon),Geokichla camaronensis camaronensis,Passeriformes,Turdidae (Thrushes and Allies),,bkegrt1 24385,issf,bkegrt3,Black-eared Ground-Thrush (Grauer's),Geokichla camaronensis graueri,Passeriformes,Turdidae (Thrushes and Allies),,bkegrt1 24386,species,grygrt1,Gray Ground-Thrush,Geokichla princei,Passeriformes,Turdidae (Thrushes and Allies),, 24387,issf,grygrt2,Gray Ground-Thrush (Prince's),Geokichla princei princei,Passeriformes,Turdidae (Thrushes and Allies),,grygrt1 24388,issf,grygrt3,Gray Ground-Thrush (Bates's),Geokichla princei batesi,Passeriformes,Turdidae (Thrushes and Allies),,grygrt1 24389,species,crgthr1,Crossley's Ground-Thrush,Geokichla crossleyi,Passeriformes,Turdidae (Thrushes and Allies),, 24390,issf,crogrt1,Crossley's Ground-Thrush (Crossley's),Geokichla crossleyi crossleyi,Passeriformes,Turdidae (Thrushes and Allies),,crgthr1 24391,issf,crogrt2,Crossley's Ground-Thrush (Itombwe),Geokichla crossleyi pilettei,Passeriformes,Turdidae (Thrushes and Allies),,crgthr1 24392,species,obgthr1,Oberlaender's Ground-Thrush,Geokichla oberlaenderi,Passeriformes,Turdidae (Thrushes and Allies),, 24393,species,abgthr1,Abyssinian Ground-Thrush,Geokichla piaggiae,Passeriformes,Turdidae (Thrushes and Allies),, 24399,species,kigthr1,Kivu Ground-Thrush,Geokichla tanganjicae,Passeriformes,Turdidae (Thrushes and Allies),, 24400,species,orgthr1,Orange Ground-Thrush,Geokichla gurneyi,Passeriformes,Turdidae (Thrushes and Allies),, 24409,species,spwthr1,Spot-winged Thrush,Geokichla spiloptera,Passeriformes,Turdidae (Thrushes and Allies),, 24410,species,ashthr1,Ashy Thrush,Geokichla cinerea,Passeriformes,Turdidae (Thrushes and Allies),, 24410.1,species,burthr1,Buru Thrush,Geokichla dumasi,Passeriformes,Turdidae (Thrushes and Allies),, 24410.2,species,serthr2,Seram Thrush,Geokichla joiceyi,Passeriformes,Turdidae (Thrushes and Allies),, 24410.5,species,chcthr1,Chestnut-capped Thrush,Geokichla interpres,Passeriformes,Turdidae (Thrushes and Allies),, 24411,species,engthr1,Enggano Thrush,Geokichla leucolaema,Passeriformes,Turdidae (Thrushes and Allies),, 24412,species,chbthr1,Chestnut-backed Thrush,Geokichla dohertyi,Passeriformes,Turdidae (Thrushes and Allies),, 24413,species,orbthr1,Orange-banded Thrush,Geokichla peronii,Passeriformes,Turdidae (Thrushes and Allies),, 24416,species,slbthr1,Slaty-backed Thrush,Geokichla schistacea,Passeriformes,Turdidae (Thrushes and Allies),, 24417,species,rubthr2,Rusty-backed Thrush,Geokichla erythronota,Passeriformes,Turdidae (Thrushes and Allies),, 24421,species,rabthr1,Red-and-black Thrush,Geokichla mendeni,Passeriformes,Turdidae (Thrushes and Allies),, 24422,species,orhthr1,Orange-headed Thrush,Geokichla citrina,Passeriformes,Turdidae (Thrushes and Allies),, 24422.2,issf,orhthr2,Orange-headed Thrush (Orange-headed),Geokichla citrina [citrina Group],Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 24422.4,issf,orhthr3,Orange-headed Thrush (White-throated),Geokichla citrina cyanota,Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 24422.6,issf,orhthr4,Orange-headed Thrush (Plain-winged),Geokichla citrina albogularis/andamanensis,Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 24422.8,issf,orhthr5,Orange-headed Thrush (Buff-throated),Geokichla citrina [aurimacula Group],Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 24434.5,spuh,geokic1,Geokichla sp.,Geokichla sp.,Passeriformes,Turdidae (Thrushes and Allies),, 24435,species,lotthr1,Long-tailed Thrush,Zoothera dixoni,Passeriformes,Turdidae (Thrushes and Allies),, 24436,species,alpthr1,Alpine Thrush,Zoothera mollissima,Passeriformes,Turdidae (Thrushes and Allies),, 24437,species,himthr1,Himalayan Thrush,Zoothera salimalii,Passeriformes,Turdidae (Thrushes and Allies),, 24438,slash,y01005,Alpine/Himalayan Thrush,Zoothera mollissima/salimalii,Passeriformes,Turdidae (Thrushes and Allies),, 24439,species,sicthr1,Sichuan Thrush,Zoothera griseiceps,Passeriformes,Turdidae (Thrushes and Allies),, 24439.5,slash,y01006,Alpine/Sichuan Thrush,Zoothera mollissima/griseiceps,Passeriformes,Turdidae (Thrushes and Allies),, 24439.6,slash,y01052,Alpine/Himalayan/Sichuan Thrush,Zoothera mollissima/salimalii/griseiceps,Passeriformes,Turdidae (Thrushes and Allies),, 24439.7,species,geomal1,Geomalia,Zoothera heinrichi,Passeriformes,Turdidae (Thrushes and Allies),, 24440,species,dasthr1,Dark-sided Thrush,Zoothera marginata,Passeriformes,Turdidae (Thrushes and Allies),, 24441,species,lobthr1,Long-billed Thrush,Zoothera monticola,Passeriformes,Turdidae (Thrushes and Allies),, 24444,species,evethr1,Everett's Thrush,Zoothera everetti,Passeriformes,Turdidae (Thrushes and Allies),, 24445,species,sunthr1,Sunda Thrush,Zoothera andromedae,Passeriformes,Turdidae (Thrushes and Allies),, 24447,species,scathr2,White's Thrush,Zoothera aurea,Passeriformes,Turdidae (Thrushes and Allies),, 24450,species,scathr8,Scaly Thrush,Zoothera dauma,Passeriformes,Turdidae (Thrushes and Allies),, 24451,issf,scathr3,Scaly Thrush (Scaly),Zoothera dauma dauma,Passeriformes,Turdidae (Thrushes and Allies),,scathr8 24452,issf,scathr6,Scaly Thrush (Amami),Zoothera dauma major,Passeriformes,Turdidae (Thrushes and Allies),,scathr8 24453,issf,scathr7,Scaly Thrush (Horsfield's),Zoothera dauma horsfieldi,Passeriformes,Turdidae (Thrushes and Allies),,scathr8 24453.5,slash,scathr1,White's/Scaly Thrush,Zoothera aurea/dauma,Passeriformes,Turdidae (Thrushes and Allies),, 24454,species,scathr4,Nilgiri Thrush,Zoothera neilgherriensis,Passeriformes,Turdidae (Thrushes and Allies),, 24455,species,scathr5,Sri Lanka Thrush,Zoothera imbricata,Passeriformes,Turdidae (Thrushes and Allies),, 24457,species,bonthr2,Bonin Thrush,Zoothera terrestris,Passeriformes,Turdidae (Thrushes and Allies),, 24459,species,sacthr2,Makira Thrush,Zoothera margaretae,Passeriformes,Turdidae (Thrushes and Allies),, 24460,species,sacthr3,Guadalcanal Thrush,Zoothera turipavae,Passeriformes,Turdidae (Thrushes and Allies),, 24461,species,oltthr1,Bassian Thrush,Zoothera lunulata,Passeriformes,Turdidae (Thrushes and Allies),, 24465,species,nebthr1,New Britain Thrush,Zoothera talaseae,Passeriformes,Turdidae (Thrushes and Allies),, 24465.5,species,bouthr1,Bougainville Thrush,Zoothera atrigena,Passeriformes,Turdidae (Thrushes and Allies),, 24466,species,rutthr1,Russet-tailed Thrush,Zoothera heinei,Passeriformes,Turdidae (Thrushes and Allies),, 24466.2,issf,rutthr2,Russet-tailed Thrush (Russet-tailed),Zoothera heinei [heinei Group],Passeriformes,Turdidae (Thrushes and Allies),,rutthr1 24466.4,issf,rutthr3,Russet-tailed Thrush (Mussau),Zoothera heinei eichhorni,Passeriformes,Turdidae (Thrushes and Allies),,rutthr1 24470.5,slash,y01007,Bassian/Russet-tailed Thrush,Zoothera lunulata/heinei,Passeriformes,Turdidae (Thrushes and Allies),, 24471,species,fabthr1,Fawn-breasted Thrush,Zoothera machiki,Passeriformes,Turdidae (Thrushes and Allies),, 24472,spuh,zoothe1,Zoothera sp.,Zoothera sp.,Passeriformes,Turdidae (Thrushes and Allies),, 24473,species,sulthr1,Sulawesi Thrush,Cataponera turdoides,Passeriformes,Turdidae (Thrushes and Allies),, 24478,species,trithr1,Tristan Thrush,Nesocichla eremita,Passeriformes,Turdidae (Thrushes and Allies),, 24482,species,easblu,Eastern Bluebird,Sialia sialis,Passeriformes,Turdidae (Thrushes and Allies),, 24483,issf,easblu1,Eastern Bluebird (Eastern),Sialia sialis sialis/bermudensis,Passeriformes,Turdidae (Thrushes and Allies),,easblu 24487,issf,easblu2,Eastern Bluebird (Mexican),Sialia sialis [guatemalae Group],Passeriformes,Turdidae (Thrushes and Allies),,easblu 24491,species,wesblu,Western Bluebird,Sialia mexicana,Passeriformes,Turdidae (Thrushes and Allies),, 24499,species,moublu,Mountain Bluebird,Sialia currucoides,Passeriformes,Turdidae (Thrushes and Allies),, 24499.3,hybrid,x00864,Eastern x Mountain Bluebird (hybrid),Sialia sialis x currucoides,Passeriformes,Turdidae (Thrushes and Allies),, 24499.5,hybrid,x00204,Western x Mountain Bluebird (hybrid),Sialia mexicana x currucoides,Passeriformes,Turdidae (Thrushes and Allies),, 24500,spuh,bluebi,bluebird sp.,Sialia sp.,Passeriformes,Turdidae (Thrushes and Allies),, 24501,species,towsol,Townsend's Solitaire,Myadestes townsendi,Passeriformes,Turdidae (Thrushes and Allies),, 24504,species,brbsol1,Brown-backed Solitaire,Myadestes occidentalis,Passeriformes,Turdidae (Thrushes and Allies),, 24510,species,cubsol1,Cuban Solitaire,Myadestes elisabeth,Passeriformes,Turdidae (Thrushes and Allies),, 24513,species,rutsol1,Rufous-throated Solitaire,Myadestes genibarbis,Passeriformes,Turdidae (Thrushes and Allies),, 24514,issf,rutsol2,Rufous-throated Solitaire (Rufous-throated),Myadestes genibarbis [genibarbis Group],Passeriformes,Turdidae (Thrushes and Allies),,rutsol1 24520,issf,rutsol3,Rufous-throated Solitaire (St. Vincent),Myadestes genibarbis sibilans,Passeriformes,Turdidae (Thrushes and Allies),,rutsol1 24521,species,blfsol1,Black-faced Solitaire,Myadestes melanops,Passeriformes,Turdidae (Thrushes and Allies),, 24522,species,varsol1,Varied Solitaire,Myadestes coloratus,Passeriformes,Turdidae (Thrushes and Allies),, 24523,species,slcsol1,Slate-colored Solitaire,Myadestes unicolor,Passeriformes,Turdidae (Thrushes and Allies),, 24526,species,andsol1,Andean Solitaire,Myadestes ralloides,Passeriformes,Turdidae (Thrushes and Allies),, 24526.2,issf,andsol2,Andean Solitaire (plumbeiceps),Myadestes ralloides plumbeiceps,Passeriformes,Turdidae (Thrushes and Allies),,andsol1 24526.4,issf,andsol3,Andean Solitaire (venezuelensis/candelae),Myadestes ralloides venezuelensis/candelae,Passeriformes,Turdidae (Thrushes and Allies),,andsol1 24526.6,issf,andsol4,Andean Solitaire (ralloides),Myadestes ralloides ralloides,Passeriformes,Turdidae (Thrushes and Allies),,andsol1 24531,species,kamao,Kamao,Myadestes myadestinus,Passeriformes,Turdidae (Thrushes and Allies),, 24532,species,amaui,Amaui,Myadestes woahensis,Passeriformes,Turdidae (Thrushes and Allies),, 24533,species,olomao,Olomao,Myadestes lanaiensis,Passeriformes,Turdidae (Thrushes and Allies),, 24536,species,omao,Omao,Myadestes obscurus,Passeriformes,Turdidae (Thrushes and Allies),, 24537,species,puaioh,Puaiohi,Myadestes palmeri,Passeriformes,Turdidae (Thrushes and Allies),, 24538,species,bbnthr1,Black-billed Nightingale-Thrush,Catharus gracilirostris,Passeriformes,Turdidae (Thrushes and Allies),, 24541,species,obnthr1,Orange-billed Nightingale-Thrush,Catharus aurantiirostris,Passeriformes,Turdidae (Thrushes and Allies),, 24542,issf,orbnit1,Orange-billed Nightingale-Thrush (Brown-headed),Catharus aurantiirostris [melpomene Group],Passeriformes,Turdidae (Thrushes and Allies),,obnthr1 24548,issf,orbnit2,Orange-billed Nightingale-Thrush (Gray-headed),Catharus aurantiirostris [griseiceps Group],Passeriformes,Turdidae (Thrushes and Allies),,obnthr1 24554,issf,orbnit3,Orange-billed Nightingale-Thrush (Orange-billed),Catharus aurantiirostris [aurantiirostris Group],Passeriformes,Turdidae (Thrushes and Allies),,obnthr1 24558,species,sbnthr1,Slaty-backed Nightingale-Thrush,Catharus fuscater,Passeriformes,Turdidae (Thrushes and Allies),, 24559,issf,slbnit2,Slaty-backed Nightingale-Thrush (Black-backed),Catharus fuscater hellmayri,Passeriformes,Turdidae (Thrushes and Allies),,sbnthr1 24560,issf,slbnit1,Slaty-backed Nightingale-Thrush (Slaty-backed),Catharus fuscater [fuscater Group],Passeriformes,Turdidae (Thrushes and Allies),,sbnthr1 24567,species,runthr1,Russet Nightingale-Thrush,Catharus occidentalis,Passeriformes,Turdidae (Thrushes and Allies),, 24573,species,rcnthr1,Ruddy-capped Nightingale-Thrush,Catharus frantzii,Passeriformes,Turdidae (Thrushes and Allies),, 24581,species,bhnthr1,Black-headed Nightingale-Thrush,Catharus mexicanus,Passeriformes,Turdidae (Thrushes and Allies),, 24585,species,spnthr1,Spotted Nightingale-Thrush,Catharus dryas,Passeriformes,Turdidae (Thrushes and Allies),, 24585.2,issf,sponit1,Spotted Nightingale-Thrush (Gould's),Catharus dryas dryas/ovandensis,Passeriformes,Turdidae (Thrushes and Allies),,spnthr1 24585.4,issf,sponit2,Spotted Nightingale-Thrush (Sclater's),Catharus dryas maculatus/blakei,Passeriformes,Turdidae (Thrushes and Allies),,spnthr1 24592,species,veery,Veery,Catharus fuscescens,Passeriformes,Turdidae (Thrushes and Allies),, 24597,species,gycthr,Gray-cheeked Thrush,Catharus minimus,Passeriformes,Turdidae (Thrushes and Allies),, 24600,species,bicthr,Bicknell's Thrush,Catharus bicknelli,Passeriformes,Turdidae (Thrushes and Allies),, 24600.5,hybrid,x00865,Veery x Bicknell's Thrush (hybrid),Catharus fuscescens x bicknelli,Passeriformes,Turdidae (Thrushes and Allies),, 24601,slash,y00225,Gray-cheeked/Bicknell's Thrush,Catharus minimus/bicknelli,Passeriformes,Turdidae (Thrushes and Allies),, 24602,species,swathr,Swainson's Thrush,Catharus ustulatus,Passeriformes,Turdidae (Thrushes and Allies),, 24603,issf,swathr1,Swainson's Thrush (Russet-backed),Catharus ustulatus [ustulatus Group],Passeriformes,Turdidae (Thrushes and Allies),,swathr 24607,issf,swathr2,Swainson's Thrush (Olive-backed),Catharus ustulatus [swainsoni Group],Passeriformes,Turdidae (Thrushes and Allies),,swathr 24608,species,herthr,Hermit Thrush,Catharus guttatus,Passeriformes,Turdidae (Thrushes and Allies),, 24609,issf,herthr1,Hermit Thrush (guttatus Group),Catharus guttatus [guttatus Group],Passeriformes,Turdidae (Thrushes and Allies),,herthr 24614,issf,herthr2,Hermit Thrush (auduboni Group),Catharus guttatus [auduboni Group],Passeriformes,Turdidae (Thrushes and Allies),,herthr 24618,issf,herthr3,Hermit Thrush (faxoni/crymophilus),Catharus guttatus faxoni/crymophilus,Passeriformes,Turdidae (Thrushes and Allies),,herthr 24621,spuh,cathus,Catharus sp.,Catharus sp.,Passeriformes,Turdidae (Thrushes and Allies),, 24622,species,woothr,Wood Thrush,Hylocichla mustelina,Passeriformes,Turdidae (Thrushes and Allies),, 24623,species,grothr1,Groundscraper Thrush,Psophocichla litsitsirupa,Passeriformes,Turdidae (Thrushes and Allies),, 24624,issf,grothr2,Groundscraper Thrush (Heath),Psophocichla litsitsirupa simensis,Passeriformes,Turdidae (Thrushes and Allies),,grothr1 24624.5,issf,grothr3,Groundscraper Thrush (Groundscraper),Psophocichla litsitsirupa [litsitsirupa Group],Passeriformes,Turdidae (Thrushes and Allies),,grothr1 24628,species,blasol1,Black Solitaire,Entomodestes coracinus,Passeriformes,Turdidae (Thrushes and Allies),, 24629,species,whesol1,White-eared Solitaire,Entomodestes leucotis,Passeriformes,Turdidae (Thrushes and Allies),, 24630,species,rubsol1,Rufous-brown Solitaire,Cichlopsis leucogenys,Passeriformes,Turdidae (Thrushes and Allies),, 24630.2,issf,rubsol2,Rufous-brown Solitaire (Chestnut-throated),Cichlopsis leucogenys chubbi,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 24630.4,issf,rubsol3,Rufous-brown Solitaire (Peruvian),Cichlopsis leucogenys peruviana,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 24630.6,issf,rubsol4,Rufous-brown Solitaire (Guianan),Cichlopsis leucogenys gularis,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 24630.8,issf,rubsol5,Rufous-brown Solitaire (Rufous-brown),Cichlopsis leucogenys leucogenys,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 24635,species,yemthr1,Yemen Thrush,Turdus menachensis,Passeriformes,Turdidae (Thrushes and Allies),, 24635.07,species,somthr1,Somali Thrush,Turdus ludoviciae,Passeriformes,Turdidae (Thrushes and Allies),, 24635.08,species,taithr1,Taita Thrush,Turdus helleri,Passeriformes,Turdidae (Thrushes and Allies),, 24635.09,species,abythr1,Abyssinian Thrush,Turdus abyssinicus,Passeriformes,Turdidae (Thrushes and Allies),, 24635.1,issf,abythr2,Abyssinian Thrush (Ngorongoro),Turdus abyssinicus oldeani,Passeriformes,Turdidae (Thrushes and Allies),,abythr1 24635.101,issf,abythr3,Abyssinian Thrush (Abyssinian),Turdus abyssinicus [abyssinicus Group],Passeriformes,Turdidae (Thrushes and Allies),,abythr1 24635.16,species,usathr1,Usambara Thrush,Turdus roehli,Passeriformes,Turdidae (Thrushes and Allies),, 24635.17,species,comthr1,Comoro Thrush,Turdus bewsheri,Passeriformes,Turdidae (Thrushes and Allies),, 24635.21,species,kurthr1,Kurrichane Thrush,Turdus libonyana,Passeriformes,Turdidae (Thrushes and Allies),, 24635.26,species,olithr2,Olive Thrush,Turdus olivaceus,Passeriformes,Turdidae (Thrushes and Allies),, 24635.33,species,karthr1,Karoo Thrush,Turdus smithi,Passeriformes,Turdidae (Thrushes and Allies),, 24635.34,slash,y01008,Olive/Karoo Thrush,Turdus olivaceus/smithi,Passeriformes,Turdidae (Thrushes and Allies),, 24635.35,species,satthr1,Sao Tome Thrush,Turdus olivaceofuscus,Passeriformes,Turdidae (Thrushes and Allies),, 24635.36,species,prithr1,Principe Thrush,Turdus xanthorhynchus,Passeriformes,Turdidae (Thrushes and Allies),, 24635.37,species,afrthr1,African Thrush,Turdus pelios,Passeriformes,Turdidae (Thrushes and Allies),, 24635.38,issf,afrthr2,African Thrush (African),Turdus pelios [pelios Group],Passeriformes,Turdidae (Thrushes and Allies),,afrthr1 24635.43,issf,afrthr3,African Thrush (Black-lored),Turdus pelios nigrilorum/poensis,Passeriformes,Turdidae (Thrushes and Allies),,afrthr1 24635.46,issf,afrthr4,African Thrush (Orange-bellied),Turdus pelios stormsi/graueri,Passeriformes,Turdidae (Thrushes and Allies),,afrthr1 24676,species,abethr1,African Bare-eyed Thrush,Turdus tephronotus,Passeriformes,Turdidae (Thrushes and Allies),, 24677,species,gybthr1,Gray-backed Thrush,Turdus hortulorum,Passeriformes,Turdidae (Thrushes and Allies),, 24678,species,ticthr1,Tickell's Thrush,Turdus unicolor,Passeriformes,Turdidae (Thrushes and Allies),, 24679,species,blbthr2,Black-breasted Thrush,Turdus dissimilis,Passeriformes,Turdidae (Thrushes and Allies),, 24680,species,japthr1,Japanese Thrush,Turdus cardis,Passeriformes,Turdidae (Thrushes and Allies),, 24681,species,whcbla1,White-collared Blackbird,Turdus albocinctus,Passeriformes,Turdidae (Thrushes and Allies),, 24682,species,rinouz1,Ring Ouzel,Turdus torquatus,Passeriformes,Turdidae (Thrushes and Allies),, 24683,issf,rinouz2,Ring Ouzel (Northern),Turdus torquatus torquatus,Passeriformes,Turdidae (Thrushes and Allies),,rinouz1 24684,issf,rinouz3,Ring Ouzel (Alpine),Turdus torquatus alpestris,Passeriformes,Turdidae (Thrushes and Allies),,rinouz1 24685,issf,rinouz4,Ring Ouzel (Caucasian),Turdus torquatus amicorum,Passeriformes,Turdidae (Thrushes and Allies),,rinouz1 24686,species,gywbla1,Gray-winged Blackbird,Turdus boulboul,Passeriformes,Turdidae (Thrushes and Allies),, 24687,species,eurbla,Eurasian Blackbird,Turdus merula,Passeriformes,Turdidae (Thrushes and Allies),, 24687.2,species,chibla1,Chinese Blackbird,Turdus mandarinus,Passeriformes,Turdidae (Thrushes and Allies),, 24698.5,species,tibbla1,Tibetan Blackbird,Turdus maximus,Passeriformes,Turdidae (Thrushes and Allies),, 24699,species,eurbla2,Indian Blackbird,Turdus simillimus,Passeriformes,Turdidae (Thrushes and Allies),, 24699.2,issf,indbla1,Indian Blackbird (Indian),Turdus simillimus simillimus/bourdilloni,Passeriformes,Turdidae (Thrushes and Allies),,eurbla2 24699.4,issf,indbla2,Indian Blackbird (Black-capped),Turdus simillimus nigropileus/spencei,Passeriformes,Turdidae (Thrushes and Allies),,eurbla2 24699.6,issf,indbla3,Indian Blackbird (Sri Lanka),Turdus simillimus kinnisii,Passeriformes,Turdidae (Thrushes and Allies),,eurbla2 24705,species,islthr1,Island Thrush,Turdus poliocephalus,Passeriformes,Turdidae (Thrushes and Allies),, 24706,issf,islthr9,Island Thrush (Christmas),Turdus poliocephalus erythropleurus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24707,issf,islthr19,Island Thrush (Loeser's),Turdus poliocephalus loeseri,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24708,issf,islthr13,Island Thrush (Sumatran),Turdus poliocephalus indrapurae,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24708.5,issf,islthr14,Island Thrush (Javan),Turdus poliocephalus javanicus/biesenbachi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24710,issf,islthr10,Island Thrush (Sooty),Turdus poliocephalus fumidus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24710.5,issf,islthr34,Island Thrush (Stresemann's),Turdus poliocephalus whiteheadi/stresemanni,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24714,issf,islthr32,Island Thrush (Bornean),Turdus poliocephalus seebohmi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24715,issf,islthr24,Island Thrush (Taiwan),Turdus poliocephalus niveiceps,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24715.5,issf,islthr36,Island Thrush (Luzon),Turdus poliocephalus thomassoni/mayonensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24718,issf,islthr22,Island Thrush (Mindoro),Turdus poliocephalus mindorensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24719,issf,islthr23,Island Thrush (Negros),Turdus poliocephalus nigrorum,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24720,issf,islthr20,Island Thrush (Malindang),Turdus poliocephalus malindangensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24721,issf,islthr15,Island Thrush (Katanglad),Turdus poliocephalus katanglad,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24722,issf,islthr16,Island Thrush (Apo),Turdus poliocephalus kelleri,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24723,issf,islthr12,Island Thrush (Latimojong),Turdus poliocephalus hygroscopus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24724,issf,islthr6,Island Thrush (Lompobattang),Turdus poliocephalus celebensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24725,issf,islthr31,Island Thrush (Schlegel's),Turdus poliocephalus schlegelii,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24726,issf,islthr33,Island Thrush (Sterling's),Turdus poliocephalus sterlingi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24727,issf,islthr7,Island Thrush (Seram),Turdus poliocephalus deningeri,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24728,issf,islthr37,Island Thrush (Jayawijaya),Turdus poliocephalus versteegi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24729,issf,islthr5,Island Thrush (Ashy),Turdus poliocephalus erebus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24730,issf,islthr25,Island Thrush (Papuan),Turdus poliocephalus papuensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24731,issf,islthr4,Island Thrush (Goodenough),Turdus poliocephalus canescens,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24732,issf,islthr2,Island Thrush (North Melanesian),Turdus poliocephalus [heinrothi Group],Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24737,issf,islthr17,Island Thrush (Kolombangra),Turdus poliocephalus kulambangrae,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24738,issf,islthr3,Island Thrush (Vanuatu),Turdus poliocephalus [vanikorensis Group],Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24743,issf,islthr26,Island Thrush (Ureparapara),Turdus poliocephalus placens,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24744,issf,islthr8,Island Thrush (Efate),Turdus poliocephalus efatensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24744.5,issf,islthr28,Island Thrush (White-headed),Turdus poliocephalus pritzbueri/albifrons,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24747,issf,islthr40,Island Thrush (New Caledonia),Turdus poliocephalus xanthopus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24748,issf,islthr21,Island Thrush (Mare),Turdus poliocephalus mareensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24749,issf,islthr27,Island Thrush (Norfolk I.),Turdus poliocephalus poliocephalus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24750,issf,islthr38,Island Thrush (Lord Howe I.),Turdus poliocephalus vinitinctus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24751,issf,islthr18,Island Thrush (Viti Levu),Turdus poliocephalus layardi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24752,issf,islthr29,Island Thrush (Kadavu),Turdus poliocephalus ruficeps,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24753,issf,islthr39,Island Thrush (Vanua Levu),Turdus poliocephalus vitiensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24754,issf,islthr11,Island Thrush (Satanic),Turdus poliocephalus hades,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24755,issf,islthr35,Island Thrush (Taveuni),Turdus poliocephalus tempesti,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24756,issf,islthr30,Island Thrush (Samoan),Turdus poliocephalus samoensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 24757,species,chethr1,Chestnut Thrush,Turdus rubrocanus,Passeriformes,Turdidae (Thrushes and Allies),, 24760,species,whbthr2,White-backed Thrush,Turdus kessleri,Passeriformes,Turdidae (Thrushes and Allies),, 24761,species,gysthr1,Gray-sided Thrush,Turdus feae,Passeriformes,Turdidae (Thrushes and Allies),, 24762,species,eyethr,Eyebrowed Thrush,Turdus obscurus,Passeriformes,Turdidae (Thrushes and Allies),, 24762.2,slash,y01053,Gray-sided/Eyebrowed Thrush,Turdus feae/obscurus,Passeriformes,Turdidae (Thrushes and Allies),, 24763,species,palthr1,Pale Thrush,Turdus pallidus,Passeriformes,Turdidae (Thrushes and Allies),, 24764,species,brhthr1,Brown-headed Thrush,Turdus chrysolaus,Passeriformes,Turdidae (Thrushes and Allies),, 24767,species,izuthr1,Izu Thrush,Turdus celaenops,Passeriformes,Turdidae (Thrushes and Allies),, 24768,species,datthr1,Black-throated Thrush,Turdus atrogularis,Passeriformes,Turdidae (Thrushes and Allies),, 24769,species,retthr1,Red-throated Thrush,Turdus ruficollis,Passeriformes,Turdidae (Thrushes and Allies),, 24769.5,hybrid,x00644,Black-throated x Red-throated Thrush (hybrid),Turdus atrogularis x ruficollis,Passeriformes,Turdidae (Thrushes and Allies),, 24770,species,dusthr2,Dusky Thrush,Turdus eunomus,Passeriformes,Turdidae (Thrushes and Allies),, 24771,species,dusthr1,Naumann's Thrush,Turdus naumanni,Passeriformes,Turdidae (Thrushes and Allies),, 24772,slash,dusthr,Dusky/Naumann's Thrush,Turdus eunomus/naumanni,Passeriformes,Turdidae (Thrushes and Allies),, 24773,species,fieldf,Fieldfare,Turdus pilaris,Passeriformes,Turdidae (Thrushes and Allies),, 24774,species,redwin,Redwing,Turdus iliacus,Passeriformes,Turdidae (Thrushes and Allies),, 24775,issf,redwin1,Redwing (Icelandic),Turdus iliacus coburni,Passeriformes,Turdidae (Thrushes and Allies),,redwin 24776,issf,redwin2,Redwing (Eurasian),Turdus iliacus iliacus,Passeriformes,Turdidae (Thrushes and Allies),,redwin 24777,species,sonthr1,Song Thrush,Turdus philomelos,Passeriformes,Turdidae (Thrushes and Allies),, 24782,species,chithr2,Chinese Thrush,Turdus mupinensis,Passeriformes,Turdidae (Thrushes and Allies),, 24783,species,misthr1,Mistle Thrush,Turdus viscivorus,Passeriformes,Turdidae (Thrushes and Allies),, 24787,species,soorob1,Sooty Thrush,Turdus nigrescens,Passeriformes,Turdidae (Thrushes and Allies),, 24788,species,blarob1,Black Thrush,Turdus infuscatus,Passeriformes,Turdidae (Thrushes and Allies),, 24789,species,mourob1,Mountain Thrush,Turdus plebejus,Passeriformes,Turdidae (Thrushes and Allies),, 24793,species,paethr1,Pale-eyed Thrush,Turdus leucops,Passeriformes,Turdidae (Thrushes and Allies),, 24794,species,austhr1,Austral Thrush,Turdus falcklandii,Passeriformes,Turdidae (Thrushes and Allies),, 24795,issf,austhr2,Austral Thrush (Magellan),Turdus falcklandii magellanicus/pembertoni,Passeriformes,Turdidae (Thrushes and Allies),,austhr1 24798,issf,austhr3,Austral Thrush (Falkland),Turdus falcklandii falcklandii,Passeriformes,Turdidae (Thrushes and Allies),,austhr1 24799,species,plbthr2,Plumbeous-backed Thrush,Turdus reevei,Passeriformes,Turdidae (Thrushes and Allies),, 24800,species,yelthr1,Yellow-legged Thrush,Turdus flavipes,Passeriformes,Turdidae (Thrushes and Allies),, 24806,species,pabthr1,Pale-breasted Thrush,Turdus leucomelas,Passeriformes,Turdidae (Thrushes and Allies),, 24810,species,cocthr1,Cocoa Thrush,Turdus fumigatus,Passeriformes,Turdidae (Thrushes and Allies),, 24811,issf,cocthr2,Cocoa Thrush (Lesser Antillean),Turdus fumigatus personus,Passeriformes,Turdidae (Thrushes and Allies),,cocthr1 24812,issf,cocthr3,Cocoa Thrush (Cocoa),Turdus fumigatus [fumigatus Group],Passeriformes,Turdidae (Thrushes and Allies),,cocthr1 24816,species,hauthr1,Hauxwell's Thrush,Turdus hauxwelli,Passeriformes,Turdidae (Thrushes and Allies),, 24817,species,pavthr1,Pale-vented Thrush,Turdus obsoletus,Passeriformes,Turdidae (Thrushes and Allies),, 24817.08,species,rubthr1,Rufous-bellied Thrush,Turdus rufiventris,Passeriformes,Turdidae (Thrushes and Allies),, 24817.14,species,clcrob,Clay-colored Thrush,Turdus grayi,Passeriformes,Turdidae (Thrushes and Allies),, 24817.28,species,baerob1,Spectacled Thrush,Turdus nudigenis,Passeriformes,Turdidae (Thrushes and Allies),, 24817.34,species,ecuthr1,Ecuadorian Thrush,Turdus maculirostris,Passeriformes,Turdidae (Thrushes and Allies),, 24818,species,hauthr3,Varzea Thrush,Turdus sanchezorum,Passeriformes,Turdidae (Thrushes and Allies),, 24818.5,slash,y00755,Hauxwell's/Varzea Thrush,Turdus hauxwelli/sanchezorum,Passeriformes,Turdidae (Thrushes and Allies),, 24834,species,unithr1,Unicolored Thrush,Turdus haplochrous,Passeriformes,Turdidae (Thrushes and Allies),, 24837,species,whethr1,White-eyed Thrush,Turdus jamaicensis,Passeriformes,Turdidae (Thrushes and Allies),, 24839,species,lawthr1,Lawrence's Thrush,Turdus lawrencii,Passeriformes,Turdidae (Thrushes and Allies),, 24840,species,crbthr1,Creamy-bellied Thrush,Turdus amaurochalinus,Passeriformes,Turdidae (Thrushes and Allies),, 24841,species,blbthr1,Black-billed Thrush,Turdus ignobilis,Passeriformes,Turdidae (Thrushes and Allies),, 24842.5,issf,bkbthr1,Black-billed Thrush (Drab),Turdus ignobilis ignobilis/goodfellowi,Passeriformes,Turdidae (Thrushes and Allies),,blbthr1 24842.7,issf,bkbthr4,Black-billed Thrush (Pantepui),Turdus ignobilis murinus,Passeriformes,Turdidae (Thrushes and Allies),,blbthr1 24844,issf,bkbthr2,Black-billed Thrush (Amazonian),Turdus ignobilis debilis,Passeriformes,Turdidae (Thrushes and Allies),,blbthr1 24846,issf,bkbthr3,Black-billed Thrush (Campina),Turdus ignobilis arthuri,Passeriformes,Turdidae (Thrushes and Allies),,blbthr1 24847,species,marthr2,Mara–on Thrush,Turdus maranonicus,Passeriformes,Turdidae (Thrushes and Allies),, 24848,species,chbthr2,Chestnut-bellied Thrush,Turdus fulviventris,Passeriformes,Turdidae (Thrushes and Allies),, 24849,species,blhthr1,Black-hooded Thrush,Turdus olivater,Passeriformes,Turdidae (Thrushes and Allies),, 24858,species,slathr1,Slaty Thrush,Turdus nigriceps,Passeriformes,Turdidae (Thrushes and Allies),, 24859,issf,slathr2,Slaty Thrush (Andean),Turdus nigriceps nigriceps,Passeriformes,Turdidae (Thrushes and Allies),,slathr1 24860,issf,slathr3,Slaty Thrush (Eastern),Turdus nigriceps subalaris,Passeriformes,Turdidae (Thrushes and Allies),,slathr1 24861,species,grethr1,Great Thrush,Turdus fuscater,Passeriformes,Turdidae (Thrushes and Allies),, 24869,species,chithr1,Chiguanco Thrush,Turdus chiguanco,Passeriformes,Turdidae (Thrushes and Allies),, 24869.5,issf,chithr4,Chiguanco Thrush (chiguanco),Turdus chiguanco chiguanco/conradi,Passeriformes,Turdidae (Thrushes and Allies),,chithr1 24872,issf,chithr3,Chiguanco Thrush (anthracinus),Turdus chiguanco anthracinus,Passeriformes,Turdidae (Thrushes and Allies),,chithr1 24873,species,glbthr1,Glossy-black Thrush,Turdus serranus,Passeriformes,Turdidae (Thrushes and Allies),, 24878,species,whtrob1,White-throated Thrush,Turdus assimilis,Passeriformes,Turdidae (Thrushes and Allies),, 24879,issf,whtthr1,White-throated Thrush (White-throated),Turdus assimilis [assimilis Group],Passeriformes,Turdidae (Thrushes and Allies),,whtrob1 24890,issf,whtthr2,White-throated Thrush (Dagua),Turdus assimilis daguae,Passeriformes,Turdidae (Thrushes and Allies),,whtrob1 24891,species,whnrob1,White-necked Thrush,Turdus albicollis,Passeriformes,Turdidae (Thrushes and Allies),, 24891.5,issf,whnthr1,White-necked Thrush (Gray-flanked),Turdus albicollis [phaeopygus Group],Passeriformes,Turdidae (Thrushes and Allies),,whnrob1 24895,issf,whnthr2,White-necked Thrush (Rufous-flanked),Turdus albicollis [albicollis Group],Passeriformes,Turdidae (Thrushes and Allies),,whnrob1 24899,species,rubrob,Rufous-backed Robin,Turdus rufopalliatus,Passeriformes,Turdidae (Thrushes and Allies),, 24900,issf,rubrob1,Rufous-backed Robin (Rufous-backed),Turdus rufopalliatus rufopalliatus,Passeriformes,Turdidae (Thrushes and Allies),,rubrob 24901,issf,rubrob2,Rufous-backed Robin (Grayson's),Turdus rufopalliatus graysoni,Passeriformes,Turdidae (Thrushes and Allies),,rubrob 24902,species,rucrob1,Rufous-collared Robin,Turdus rufitorques,Passeriformes,Turdidae (Thrushes and Allies),, 24903,species,amerob,American Robin,Turdus migratorius,Passeriformes,Turdidae (Thrushes and Allies),, 24904,issf,amerob3,American Robin (nigrideus),Turdus migratorius nigrideus,Passeriformes,Turdidae (Thrushes and Allies),,amerob 24905,issf,amerob1,American Robin (migratorius Group),Turdus migratorius [migratorius Group],Passeriformes,Turdidae (Thrushes and Allies),,amerob 24912,issf,amerob2,American Robin (San Lucas),Turdus migratorius confinis,Passeriformes,Turdidae (Thrushes and Allies),,amerob 24913,species,lasthr1,La Selle Thrush,Turdus swalesi,Passeriformes,Turdidae (Thrushes and Allies),, 24916,species,whcthr1,White-chinned Thrush,Turdus aurantius,Passeriformes,Turdidae (Thrushes and Allies),, 24917,species,grcthr1,Grand Cayman Thrush,Turdus ravidus,Passeriformes,Turdidae (Thrushes and Allies),, 24918,species,relthr1,Red-legged Thrush,Turdus plumbeus,Passeriformes,Turdidae (Thrushes and Allies),, 24919,issf,relthr2,Red-legged Thrush (plumbeus/schistaceus),Turdus plumbeus plumbeus/schistaceus,Passeriformes,Turdidae (Thrushes and Allies),,relthr1 24922,issf,relthr4,Red-legged Thrush (rubripes/coryi),Turdus plumbeus rubripes/coryi,Passeriformes,Turdidae (Thrushes and Allies),,relthr1 24924,issf,relthr3,Red-legged Thrush (ardosiaceus/albiventris),Turdus plumbeus ardosiaceus/albiventris,Passeriformes,Turdidae (Thrushes and Allies),,relthr1 24927,species,forthr1,Forest Thrush,Turdus lherminieri,Passeriformes,Turdidae (Thrushes and Allies),, 24932,spuh,turdus1,Turdus sp.,Turdus sp.,Passeriformes,Turdidae (Thrushes and Allies),, 24933,species,varthr,Varied Thrush,Ixoreus naevius,Passeriformes,Turdidae (Thrushes and Allies),, 24936.5,slash,y00822,American Robin/Varied Thrush,Turdus migratorius/Ixoreus naevius,Passeriformes,Turdidae (Thrushes and Allies),, 24937,species,aztthr,Aztec Thrush,Ridgwayia pinicola,Passeriformes,Turdidae (Thrushes and Allies),, 24938,species,fruit-2,Fruit-hunter,Chlamydochaera jefferyi,Passeriformes,Turdidae (Thrushes and Allies),, 24938.1,species,purcoc1,Purple Cochoa,Cochoa purpurea,Passeriformes,Turdidae (Thrushes and Allies),, 24938.2,species,grecoc1,Green Cochoa,Cochoa viridis,Passeriformes,Turdidae (Thrushes and Allies),, 24938.25,slash,y01009,Purple/Green Cochoa,Cochoa purpurea/viridis,Passeriformes,Turdidae (Thrushes and Allies),, 24938.3,species,sumcoc1,Sumatran Cochoa,Cochoa beccarii,Passeriformes,Turdidae (Thrushes and Allies),, 24938.4,species,javcoc1,Javan Cochoa,Cochoa azurea,Passeriformes,Turdidae (Thrushes and Allies),, 24993,spuh,thrush1,thrush sp.,Turdidae sp.,Passeriformes,Turdidae (Thrushes and Allies),, 26353,species,blumoc,Blue Mockingbird,Melanotis caerulescens,Passeriformes,Mimidae (Mockingbirds and Thrashers),"Catbirds, Mockingbirds, and Thrashers", 26356,species,bawmoc1,Blue-and-white Mockingbird,Melanotis hypoleucus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26357,species,blacat1,Black Catbird,Melanoptila glabrirostris,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26358,species,grycat,Gray Catbird,Dumetella carolinensis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26359,species,whbthr1,White-breasted Thrasher,Ramphocinclus brachyurus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26362,species,scbthr,Scaly-breasted Thrasher,Allenia fusca,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26368,species,peethr1,Pearly-eyed Thrasher,Margarops fuscatus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26372,species,brotre1,Brown Trembler,Cinclocerthia ruficauda,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26377,species,gratre1,Gray Trembler,Cinclocerthia gutturalis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26379.5,slash,y01010,Brown/Gray Trembler,Cinclocerthia ruficauda/gutturalis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26380,species,cubthr,Curve-billed Thrasher,Toxostoma curvirostre,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26381,issf,cubthr1,Curve-billed Thrasher (curvirostre Group),Toxostoma curvirostre [curvirostre Group],Passeriformes,Mimidae (Mockingbirds and Thrashers),,cubthr 26385,issf,cubthr2,Curve-billed Thrasher (palmeri Group),Toxostoma curvirostre [palmeri Group],Passeriformes,Mimidae (Mockingbirds and Thrashers),,cubthr 26390,species,ocethr1,Ocellated Thrasher,Toxostoma ocellatum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26393,species,brnthr,Brown Thrasher,Toxostoma rufum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26396,species,lobthr,Long-billed Thrasher,Toxostoma longirostre,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26399,slash,y00329,Brown/Long-billed Thrasher,Toxostoma rufum/longirostre,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26400,species,cozthr1,Cozumel Thrasher,Toxostoma guttatum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26401,species,benthr,Bendire's Thrasher,Toxostoma bendirei,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26405,slash,y00330,Curve-billed/Bendire's Thrasher,Toxostoma curvirostre/bendirei,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26406,species,grathr1,Gray Thrasher,Toxostoma cinereum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26409,species,calthr,California Thrasher,Toxostoma redivivum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26412,species,lecthr,LeConte's Thrasher,Toxostoma lecontei,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26413,issf,lecthr1,LeConte's Thrasher (LeConte's),Toxostoma lecontei lecontei/macmillanorum,Passeriformes,Mimidae (Mockingbirds and Thrashers),,lecthr 26416,issf,lecthr2,LeConte's Thrasher (Vizcaino),Toxostoma lecontei arenicola,Passeriformes,Mimidae (Mockingbirds and Thrashers),,lecthr 26417,species,crithr,Crissal Thrasher,Toxostoma crissale,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26422,spuh,toxost1,Toxostoma sp.,Toxostoma sp.,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26423,species,sagthr,Sage Thrasher,Oreoscoptes montanus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26424,species,chimoc1,Chilean Mockingbird,Mimus thenca,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26425,species,patmoc1,Patagonian Mockingbird,Mimus patagonicus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26426,species,chbmoc1,Chalk-browed Mockingbird,Mimus saturninus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26431,species,whbmoc1,White-banded Mockingbird,Mimus triurus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26432,species,brbmoc1,Brown-backed Mockingbird,Mimus dorsalis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26433,species,bahmoc,Bahama Mockingbird,Mimus gundlachii,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26436,species,galmoc1,Galapagos Mockingbird,Mimus parvulus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26443,species,chamoc1,Floreana Mockingbird,Mimus trifasciatus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26444,species,hoomoc1,Espa–ola Mockingbird,Mimus macdonaldi,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26445,species,chamoc2,San Cristobal Mockingbird,Mimus melanotis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26446,species,lotmoc1,Long-tailed Mockingbird,Mimus longicaudatus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26451,species,socmoc1,Socorro Mockingbird,Mimus graysoni,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26452,species,tromoc,Tropical Mockingbird,Mimus gilvus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26453,issf,tromoc1,Tropical Mockingbird (Tropical),Mimus gilvus [gilvus Group],Passeriformes,Mimidae (Mockingbirds and Thrashers),,tromoc 26463,issf,tromoc2,Tropical Mockingbird (San Andres),Mimus gilvus magnirostris,Passeriformes,Mimidae (Mockingbirds and Thrashers),,tromoc 26464,species,normoc,Northern Mockingbird,Mimus polyglottos,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26468,hybrid,x00703,Tropical x Northern Mockingbird (hybrid),Mimus gilvus x polyglottos,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26468.2,spuh,mimida1,Mimidae sp.,Mimidae sp.,Passeriformes,Mimidae (Mockingbirds and Thrashers),, 26468.3,species,stsrha2,Stripe-sided Rhabdornis,Rhabdornis mystacalis,Passeriformes,Sturnidae (Starlings),Starlings and Mynas, 26468.4,species,lobrha1,Long-billed Rhabdornis,Rhabdornis grandis,Passeriformes,Sturnidae (Starlings),, 26468.5,species,stbrha1,Stripe-breasted Rhabdornis,Rhabdornis inornatus,Passeriformes,Sturnidae (Starlings),, 26468.6,species,visrha1,Visayan Rhabdornis,Rhabdornis rabori,Passeriformes,Sturnidae (Starlings),, 26468.7,species,fibmyn1,Fiery-browed Myna,Enodes erythrophris,Passeriformes,Sturnidae (Starlings),, 26468.8,species,fibmyn2,Finch-billed Myna,Scissirostrum dubium,Passeriformes,Sturnidae (Starlings),, 26469,species,metsta1,Metallic Starling,Aplonis metallica,Passeriformes,Sturnidae (Starlings),, 26470,issf,metsta3,Metallic Starling (Violet-hooded),Aplonis metallica circumscripta,Passeriformes,Sturnidae (Starlings),,metsta1 26470.5,issf,metsta2,Metallic Starling (Metallic),Aplonis metallica [metallica Group],Passeriformes,Sturnidae (Starlings),,metsta1 26475,species,yeesta1,Yellow-eyed Starling,Aplonis mystacea,Passeriformes,Sturnidae (Starlings),, 26477,species,tansta1,Tanimbar Starling,Aplonis crassa,Passeriformes,Sturnidae (Starlings),, 26478,species,atosta1,Atoll Starling,Aplonis feadensis,Passeriformes,Sturnidae (Starlings),, 26481,species,rensta1,Rennell Starling,Aplonis insularis,Passeriformes,Sturnidae (Starlings),, 26482,species,lotsta1,Long-tailed Starling,Aplonis magna,Passeriformes,Sturnidae (Starlings),, 26485,species,whesta2,White-eyed Starling,Aplonis brunneicapillus,Passeriformes,Sturnidae (Starlings),, 26486,species,brwsta1,Brown-winged Starling,Aplonis grandis,Passeriformes,Sturnidae (Starlings),, 26490,species,sacsta1,Makira Starling,Aplonis dichroa,Passeriformes,Sturnidae (Starlings),, 26491,species,ruwsta1,Rusty-winged Starling,Aplonis zelandica,Passeriformes,Sturnidae (Starlings),, 26495,species,strsta1,Striated Starling,Aplonis striata,Passeriformes,Sturnidae (Starlings),, 26496,species,pohsta1,Pohnpei Starling,Aplonis pelzelni,Passeriformes,Sturnidae (Starlings),, 26497,species,sinsta1,Singing Starling,Aplonis cantoroides,Passeriformes,Sturnidae (Starlings),, 26498,species,mousta1,Mountain Starling,Aplonis santovestris,Passeriformes,Sturnidae (Starlings),, 26499,species,asgsta1,Asian Glossy Starling,Aplonis panayensis,Passeriformes,Sturnidae (Starlings),, 26514,species,molsta1,Moluccan Starling,Aplonis mysolensis,Passeriformes,Sturnidae (Starlings),, 26517,species,shtsta1,Short-tailed Starling,Aplonis minor,Passeriformes,Sturnidae (Starlings),, 26518,species,micsta1,Micronesian Starling,Aplonis opaca,Passeriformes,Sturnidae (Starlings),, 26527,species,polsta1,Polynesian Starling,Aplonis tabuensis,Passeriformes,Sturnidae (Starlings),, 26529,issf,polsta2,Polynesian Starling (Polynesian),Aplonis tabuensis [tabuensis Group],Passeriformes,Sturnidae (Starlings),,polsta1 26535,issf,polsta3,Polynesian Starling (Manua),Aplonis tabuensis manuae,Passeriformes,Sturnidae (Starlings),,polsta1 26540,species,samsta1,Samoan Starling,Aplonis atrifusca,Passeriformes,Sturnidae (Starlings),, 26541,species,kossta1,Kosrae Starling,Aplonis corvina,Passeriformes,Sturnidae (Starlings),, 26542,species,rarsta1,Rarotonga Starling,Aplonis cinerascens,Passeriformes,Sturnidae (Starlings),, 26543,species,myssta1,Mysterious Starling,Aplonis mavornata,Passeriformes,Sturnidae (Starlings),, 26544,species,norsta1,Norfolk Starling,Aplonis fusca,Passeriformes,Sturnidae (Starlings),, 26544.2,spuh,aploni1,Aplonis sp.,Aplonis sp.,Passeriformes,Sturnidae (Starlings),, 26551,species,sulmyn1,Sulawesi Myna,Basilornis celebensis,Passeriformes,Sturnidae (Starlings),, 26552,species,helmyn1,Helmeted Myna,Basilornis galeatus,Passeriformes,Sturnidae (Starlings),, 26553,species,locmyn1,Long-crested Myna,Basilornis corythaix,Passeriformes,Sturnidae (Starlings),, 26554,species,apomyn2,Apo Myna,Goodfellowia miranda,Passeriformes,Sturnidae (Starlings),, 26555,species,coleto1,Coleto,Sarcops calvus,Passeriformes,Sturnidae (Starlings),, 26559,species,whnmyn1,White-necked Myna,Streptocitta albicollis,Passeriformes,Sturnidae (Starlings),, 26559.2,issf,whnmyn2,White-necked Myna (Northern),Streptocitta albicollis torquata,Passeriformes,Sturnidae (Starlings),,whnmyn1 26559.4,issf,whnmyn3,White-necked Myna (Southern),Streptocitta albicollis albicollis,Passeriformes,Sturnidae (Starlings),,whnmyn1 26562,species,baemyn1,Bare-eyed Myna,Streptocitta albertinae,Passeriformes,Sturnidae (Starlings),, 26563,species,yefmyn1,Yellow-faced Myna,Mino dumontii,Passeriformes,Sturnidae (Starlings),, 26564,species,golmyn1,Golden Myna,Mino anais,Passeriformes,Sturnidae (Starlings),, 26565,species,lotmyn1,Long-tailed Myna,Mino kreffti,Passeriformes,Sturnidae (Starlings),, 26567,species,gocmyn1,Golden-crested Myna,Ampeliceps coronatus,Passeriformes,Sturnidae (Starlings),, 26567.5,species,ceymyn1,Sri Lanka Myna,Gracula ptilogenys,Passeriformes,Sturnidae (Starlings),, 26568,species,hilmyn,Common Hill Myna,Gracula religiosa,Passeriformes,Sturnidae (Starlings),, 26576,species,sohmyn1,Southern Hill Myna,Gracula indica,Passeriformes,Sturnidae (Starlings),, 26577,species,engmyn1,Enggano Myna,Gracula enganensis,Passeriformes,Sturnidae (Starlings),, 26578,species,niamyn1,Nias Myna,Gracula robusta,Passeriformes,Sturnidae (Starlings),, 26621,species,eursta,European Starling,Sturnus vulgaris,Passeriformes,Sturnidae (Starlings),, 26634,species,sposta1,Spotless Starling,Sturnus unicolor,Passeriformes,Sturnidae (Starlings),, 26635,slash,y00626,European/Spotless Starling,Sturnus vulgaris/unicolor,Passeriformes,Sturnidae (Starlings),, 26637,species,watsta1,Wattled Starling,Creatophora cinerea,Passeriformes,Sturnidae (Starlings),, 26637.5,species,rossta2,Rosy Starling,Pastor roseus,Passeriformes,Sturnidae (Starlings),, 26638,species,dausta1,Daurian Starling,Agropsar sturninus,Passeriformes,Sturnidae (Starlings),, 26639,species,chcsta1,Chestnut-cheeked Starling,Agropsar philippensis,Passeriformes,Sturnidae (Starlings),, 26640,slash,y00756,Daurian/Chestnut-cheeked Starling,Agropsar sturninus/philippensis,Passeriformes,Sturnidae (Starlings),, 26640.1,species,bkcsta1,Black-collared Starling,Gracupica nigricollis,Passeriformes,Sturnidae (Starlings),, 26640.2,species,aspsta2,Asian Pied Starling,Gracupica contra,Passeriformes,Sturnidae (Starlings),, 26640.23,issf,aspsta1,Asian Pied Starling (Asian),Gracupica contra [contra Group],Passeriformes,Sturnidae (Starlings),,aspsta2 26640.24,issf,aspsta3,Asian Pied Starling (Javan),Gracupica contra jalla,Passeriformes,Sturnidae (Starlings),,aspsta2 26640.25,species,whfsta2,White-faced Starling,Sturnornis albofrontatus,Passeriformes,Sturnidae (Starlings),, 26640.3,species,balmyn1,Bali Myna,Leucopsar rothschildi,Passeriformes,Sturnidae (Starlings),, 26640.4,species,rodsta2,Rodrigues Starling,Necropsar rodericanus,Passeriformes,Sturnidae (Starlings),, 26640.5,species,reusta1,Reunion Starling,Fregilupus varius,Passeriformes,Sturnidae (Starlings),, 26640.6,species,whssta2,White-shouldered Starling,Sturnia sinensis,Passeriformes,Sturnidae (Starlings),, 26640.7,species,brasta1,Brahminy Starling,Sturnia pagodarum,Passeriformes,Sturnidae (Starlings),, 26640.9,species,chtsta2,Chestnut-tailed Starling,Sturnia malabarica,Passeriformes,Sturnidae (Starlings),, 26641,species,malsta1,Malabar Starling,Sturnia blythii,Passeriformes,Sturnidae (Starlings),, 26641.93,slash,y00824,Chestnut-tailed/Malabar Starling,Sturnia malabarica/blythii,Passeriformes,Sturnidae (Starlings),, 26641.95,species,whhsta2,White-headed Starling,Sturnia erythropygia,Passeriformes,Sturnidae (Starlings),, 26646,species,rebsta1,Red-billed Starling,Spodiopsar sericeus,Passeriformes,Sturnidae (Starlings),, 26647,species,whcsta1,White-cheeked Starling,Spodiopsar cineraceus,Passeriformes,Sturnidae (Starlings),, 26648,species,commyn,Common Myna,Acridotheres tristis,Passeriformes,Sturnidae (Starlings),, 26649,species,banmyn1,Bank Myna,Acridotheres ginginianus,Passeriformes,Sturnidae (Starlings),, 26652,species,vibsta3,Vinous-breasted Starling,Acridotheres burmannicus,Passeriformes,Sturnidae (Starlings),, 26652.2,issf,vibsta1,Vinous-breasted Starling (Burmese),Acridotheres burmannicus burmannicus,Passeriformes,Sturnidae (Starlings),,vibsta3 26652.4,issf,vibsta4,Vinous-breasted Starling (Vinous-breasted),Acridotheres burmannicus leucocephalus,Passeriformes,Sturnidae (Starlings),,vibsta3 26657,species,bkwsta1,Black-winged Starling,Acridotheres melanopterus,Passeriformes,Sturnidae (Starlings),, 26657.2,issf,bkwsta2,Black-winged Starling (Black-winged),Acridotheres melanopterus melanopterus,Passeriformes,Sturnidae (Starlings),,bkwsta1 26657.4,issf,bkwsta3,Black-winged Starling (Gray-backed),Acridotheres melanopterus tricolor,Passeriformes,Sturnidae (Starlings),,bkwsta1 26657.6,issf,bkwsta4,Black-winged Starling (Gray-rumped),Acridotheres melanopterus tertius,Passeriformes,Sturnidae (Starlings),,bkwsta1 26658,species,junmyn1,Jungle Myna,Acridotheres fuscus,Passeriformes,Sturnidae (Starlings),, 26659,slash,y00823,Common/Jungle Myna,Acridotheres tristis/fuscus,Passeriformes,Sturnidae (Starlings),, 26662,species,whvmyn,Javan Myna,Acridotheres javanicus,Passeriformes,Sturnidae (Starlings),, 26665,species,pabmyn1,Pale-bellied Myna,Acridotheres cinereus,Passeriformes,Sturnidae (Starlings),, 26666,species,colmyn1,Collared Myna,Acridotheres albocinctus,Passeriformes,Sturnidae (Starlings),, 26667,species,whvmyn1,Great Myna,Acridotheres grandis,Passeriformes,Sturnidae (Starlings),, 26667.2,hybrid,x00893,Javan x Great Myna (hybrid),Acridotheres javanicus x grandis,Passeriformes,Sturnidae (Starlings),, 26667.5,species,cremyn,Crested Myna,Acridotheres cristatellus,Passeriformes,Sturnidae (Starlings),, 26667.7,slash,y01011,Jungle/Crested Myna,Acridotheres fuscus/cristatellus,Passeriformes,Sturnidae (Starlings),, 26670,spuh,blkmyn1,black myna sp.,Acridotheres sp. (black myna sp.),Passeriformes,Sturnidae (Starlings),, 26671,spuh,acrido1,Acridotheres sp.,Acridotheres sp.,Passeriformes,Sturnidae (Starlings),, 26672,species,madsta1,Madagascar Starling,Hartlaubius auratus,Passeriformes,Sturnidae (Starlings),, 26675,species,vibsta2,Violet-backed Starling,Cinnyricinclus leucogaster,Passeriformes,Sturnidae (Starlings),, 26678,species,slbsta1,Slender-billed Starling,Onychognathus tenuirostris,Passeriformes,Sturnidae (Starlings),, 26679,species,pawsta1,Pale-winged Starling,Onychognathus nabouroup,Passeriformes,Sturnidae (Starlings),, 26680,species,neusta1,Neumann's Starling,Onychognathus neumanni,Passeriformes,Sturnidae (Starlings),, 26681,species,rewsta1,Red-winged Starling,Onychognathus morio,Passeriformes,Sturnidae (Starlings),, 26682,species,chwsta1,Chestnut-winged Starling,Onychognathus fulgidus,Passeriformes,Sturnidae (Starlings),, 26683,issf,chwsta2,Chestnut-winged Starling (Chestnut-winged),Onychognathus fulgidus fulgidus,Passeriformes,Sturnidae (Starlings),,chwsta1 26684,issf,chwsta3,Chestnut-winged Starling (Hartlaub's),Onychognathus fulgidus hartlaubii/intermedius,Passeriformes,Sturnidae (Starlings),,chwsta1 26685,species,walsta1,Waller's Starling,Onychognathus walleri,Passeriformes,Sturnidae (Starlings),, 26689,issf,walsta3,Waller's Starling (Preuss's),Onychognathus walleri preussi,Passeriformes,Sturnidae (Starlings),,walsta1 26690,issf,walsta4,Waller's Starling (Albertine),Onychognathus walleri elgonensis,Passeriformes,Sturnidae (Starlings),,walsta1 26691,issf,walsta5,Waller's Starling (Waller's),Onychognathus walleri walleri,Passeriformes,Sturnidae (Starlings),,walsta1 26692,species,trista1,Tristram's Starling,Onychognathus tristramii,Passeriformes,Sturnidae (Starlings),, 26695,species,whbsta1,White-billed Starling,Onychognathus albirostris,Passeriformes,Sturnidae (Starlings),, 26698,species,brcsta1,Bristle-crowned Starling,Onychognathus salvadorii,Passeriformes,Sturnidae (Starlings),, 26701,species,somsta1,Somali Starling,Onychognathus blythii,Passeriformes,Sturnidae (Starlings),, 26702,species,socsta1,Socotra Starling,Onychognathus frater,Passeriformes,Sturnidae (Starlings),, 26703,species,spwsta1,Spot-winged Starling,Saroglossa spiloptera,Passeriformes,Sturnidae (Starlings),, 26705,species,babsta1,Babbling Starling,Neocichla gutturalis,Passeriformes,Sturnidae (Starlings),, 26706,issf,babsta2,Babbling Starling (Western),Neocichla gutturalis gutturalis,Passeriformes,Sturnidae (Starlings),,babsta1 26707,issf,babsta3,Babbling Starling (Eastern),Neocichla gutturalis angusta,Passeriformes,Sturnidae (Starlings),,babsta1 26708,species,whcsta2,White-collared Starling,Grafisia torquata,Passeriformes,Sturnidae (Starlings),, 26709,species,magsta1,Magpie Starling,Speculipastor bicolor,Passeriformes,Sturnidae (Starlings),, 26710,species,shasta2,Sharpe's Starling,Pholia sharpii,Passeriformes,Sturnidae (Starlings),, 26710.5,species,abbsta2,Abbott's Starling,Poeoptera femoralis,Passeriformes,Sturnidae (Starlings),, 26711,species,natsta1,Narrow-tailed Starling,Poeoptera lugubris,Passeriformes,Sturnidae (Starlings),, 26712,species,stusta1,Stuhlmann's Starling,Poeoptera stuhlmanni,Passeriformes,Sturnidae (Starlings),, 26713,species,kensta1,Kenrick's Starling,Poeoptera kenricki,Passeriformes,Sturnidae (Starlings),, 26714,species,bbgsta1,Black-bellied Starling,Notopholia corrusca,Passeriformes,Sturnidae (Starlings),, 26715,species,phgsta1,Purple-headed Starling,Hylopsar purpureiceps,Passeriformes,Sturnidae (Starlings),, 26718,species,ctgsta1,Copper-tailed Starling,Hylopsar cupreocauda,Passeriformes,Sturnidae (Starlings),, 26719,species,hilsta1,Hildebrandt's Starling,Lamprotornis hildebrandti,Passeriformes,Sturnidae (Starlings),, 26720,species,shesta1,Shelley's Starling,Lamprotornis shelleyi,Passeriformes,Sturnidae (Starlings),, 26723,species,bugsta1,Burchell's Starling,Lamprotornis australis,Passeriformes,Sturnidae (Starlings),, 26724,species,ruegls1,RŸppell's Starling,Lamprotornis purpuroptera,Passeriformes,Sturnidae (Starlings),, 26725,species,ltgsta1,Long-tailed Glossy Starling,Lamprotornis caudatus,Passeriformes,Sturnidae (Starlings),, 26726,species,megsta1,Meves's Starling,Lamprotornis mevesii,Passeriformes,Sturnidae (Starlings),, 26727,issf,mevgls1,Meves's Starling (Meves's),Lamprotornis mevesii mevesii/violacior,Passeriformes,Sturnidae (Starlings),,megsta1 26728,issf,mevgls2,Meves's Starling (Benguela),Lamprotornis mevesii benguelensis,Passeriformes,Sturnidae (Starlings),,megsta1 26729,species,ashsta2,Ashy Starling,Lamprotornis unicolor,Passeriformes,Sturnidae (Starlings),, 26730,species,spgsta1,Splendid Starling,Lamprotornis splendidus,Passeriformes,Sturnidae (Starlings),, 26731,species,prgsta1,Principe Starling,Lamprotornis ornatus,Passeriformes,Sturnidae (Starlings),, 26732,species,gobsta5,Golden-breasted Starling,Lamprotornis regius,Passeriformes,Sturnidae (Starlings),, 26733,species,supsta1,Superb Starling,Lamprotornis superbus,Passeriformes,Sturnidae (Starlings),, 26734,species,chbsta1,Chestnut-bellied Starling,Lamprotornis pulcher,Passeriformes,Sturnidae (Starlings),, 26735,species,afpsta1,African Pied Starling,Lamprotornis bicolor,Passeriformes,Sturnidae (Starlings),, 26735.5,species,whcsta3,White-crowned Starling,Lamprotornis albicapillus,Passeriformes,Sturnidae (Starlings),, 26736,species,fissta1,Fischer's Starling,Lamprotornis fischeri,Passeriformes,Sturnidae (Starlings),, 26736.5,species,lbesta1,Lesser Blue-eared Starling,Lamprotornis chloropterus,Passeriformes,Sturnidae (Starlings),, 26736.7,issf,lbegls1,Lesser Blue-eared Starling (Lesser),Lamprotornis chloropterus chloropterus,Passeriformes,Sturnidae (Starlings),,lbesta1 26736.8,issf,lbegls2,Lesser Blue-eared Starling (Miombo),Lamprotornis chloropterus elisabeth,Passeriformes,Sturnidae (Starlings),,lbesta1 26737,species,stgsta1,Sharp-tailed Starling,Lamprotornis acuticaudus,Passeriformes,Sturnidae (Starlings),, 26737.5,species,gbesta1,Greater Blue-eared Starling,Lamprotornis chalybaeus,Passeriformes,Sturnidae (Starlings),, 26738,species,emesta1,Emerald Starling,Lamprotornis iris,Passeriformes,Sturnidae (Starlings),, 26738.5,species,pugsta1,Purple Starling,Lamprotornis purpureus,Passeriformes,Sturnidae (Starlings),, 26739,species,capgls1,Cape Starling,Lamprotornis nitens,Passeriformes,Sturnidae (Starlings),, 26739.5,species,btgsta1,Bronze-tailed Starling,Lamprotornis chalcurus,Passeriformes,Sturnidae (Starlings),, 26739.7,spuh,glossy1,Lamprotornis sp.,Lamprotornis sp.,Passeriformes,Sturnidae (Starlings),, 26739.9,spuh,y00757,myna/starling sp.,Sturnidae sp.,Passeriformes,Sturnidae (Starlings),, 26739.95,species,reboxp1,Red-billed Oxpecker,Buphagus erythrorhynchus,Passeriformes,Buphagidae (Oxpeckers),Oxpeckers, 26740,species,yeboxp1,Yellow-billed Oxpecker,Buphagus africanus,Passeriformes,Buphagidae (Oxpeckers),, 26742.5,slash,y00825,Red-billed/Yellow-billed Oxpecker,Buphagus erythrorhynchus/africanus,Passeriformes,Buphagidae (Oxpeckers),, 26743,species,philea1,Philippine Leafbird,Chloropsis flavipennis,Passeriformes,Chloropseidae (Leafbirds),Leafbirds, 26744,species,yetlea1,Yellow-throated Leafbird,Chloropsis palawanensis,Passeriformes,Chloropseidae (Leafbirds),, 26745,species,grglea1,Greater Green Leafbird,Chloropsis sonnerati,Passeriformes,Chloropseidae (Leafbirds),, 26748,species,leglea1,Lesser Green Leafbird,Chloropsis cyanopogon,Passeriformes,Chloropseidae (Leafbirds),, 26748.2,slash,y01054,Greater/Lesser Green Leafbird,Chloropsis sonnerati/cyanopogon,Passeriformes,Chloropseidae (Leafbirds),, 26751,species,blwlea1,Blue-winged Leafbird,Chloropsis cochinchinensis,Passeriformes,Chloropseidae (Leafbirds),, 26751.2,issf,buwlea1,Blue-winged Leafbird (Blue-winged),Chloropsis cochinchinensis [moluccensis Group],Passeriformes,Chloropseidae (Leafbirds),,blwlea1 26751.4,issf,buwlea2,Blue-winged Leafbird (Javan),Chloropsis cochinchinensis cochinchinensis,Passeriformes,Chloropseidae (Leafbirds),,blwlea1 26761,species,borlea1,Bornean Leafbird,Chloropsis kinabaluensis,Passeriformes,Chloropseidae (Leafbirds),, 26762,species,jerlea1,Jerdon's Leafbird,Chloropsis jerdoni,Passeriformes,Chloropseidae (Leafbirds),, 26763,species,goflea1,Golden-fronted Leafbird,Chloropsis aurifrons,Passeriformes,Chloropseidae (Leafbirds),, 26767,slash,y01012,Jerdon's/Golden-fronted Leafbird,Chloropsis jerdoni/aurifrons,Passeriformes,Chloropseidae (Leafbirds),, 26770,species,sumlea1,Sumatran Leafbird,Chloropsis media,Passeriformes,Chloropseidae (Leafbirds),, 26771,species,orblea1,Orange-bellied Leafbird,Chloropsis hardwickii,Passeriformes,Chloropseidae (Leafbirds),, 26771.2,issf,orblea2,Orange-bellied Leafbird (Orange-bellied),Chloropsis hardwickii hardwickii/malayana,Passeriformes,Chloropseidae (Leafbirds),,orblea1 26771.4,issf,orblea3,Orange-bellied Leafbird (Grayish-crowned),Chloropsis hardwickii lazulina/melliana,Passeriformes,Chloropseidae (Leafbirds),,orblea1 26776,species,blmlea1,Blue-masked Leafbird,Chloropsis venusta,Passeriformes,Chloropseidae (Leafbirds),, 26777,spuh,leafbi1,leafbird sp.,Chloropsis sp.,Passeriformes,Chloropseidae (Leafbirds),, 26778,species,olbflo1,Olive-backed Flowerpecker,Prionochilus olivaceus,Passeriformes,Dicaeidae (Flowerpeckers),Flowerpeckers, 26782,species,yebflo2,Yellow-breasted Flowerpecker,Prionochilus maculatus,Passeriformes,Dicaeidae (Flowerpeckers),, 26787,species,crbflo1,Crimson-breasted Flowerpecker,Prionochilus percussus,Passeriformes,Dicaeidae (Flowerpeckers),, 26791,species,palflo1,Palawan Flowerpecker,Prionochilus plateni,Passeriformes,Dicaeidae (Flowerpeckers),, 26794,species,yerflo1,Yellow-rumped Flowerpecker,Prionochilus xanthopygius,Passeriformes,Dicaeidae (Flowerpeckers),, 26795,species,scbflo2,Scarlet-breasted Flowerpecker,Prionochilus thoracicus,Passeriformes,Dicaeidae (Flowerpeckers),, 26796,spuh,priono1,Prionochilus sp.,Prionochilus sp.,Passeriformes,Dicaeidae (Flowerpeckers),, 26797,species,gorflo1,Golden-rumped Flowerpecker,Dicaeum annae,Passeriformes,Dicaeidae (Flowerpeckers),, 26800,species,thbflo1,Thick-billed Flowerpecker,Dicaeum agile,Passeriformes,Dicaeidae (Flowerpeckers),, 26800.5,issf,thbflo2,Thick-billed Flowerpecker (Indian),Dicaeum agile agile/zeylonicum,Passeriformes,Dicaeidae (Flowerpeckers),,thbflo1 26806,issf,thbflo4,Thick-billed Flowerpecker (obsoletum Group),Dicaeum agile [obsoletum Group],Passeriformes,Dicaeidae (Flowerpeckers),,thbflo1 26808.5,issf,thbflo3,Thick-billed Flowerpecker (Striped),Dicaeum agile [aeruginosum Group],Passeriformes,Dicaeidae (Flowerpeckers),,thbflo1 26812,species,brbflo1,Brown-backed Flowerpecker,Dicaeum everetti,Passeriformes,Dicaeidae (Flowerpeckers),, 26815,species,whiflo1,Whiskered Flowerpecker,Dicaeum proprium,Passeriformes,Dicaeidae (Flowerpeckers),, 26816,species,yevflo1,Yellow-vented Flowerpecker,Dicaeum chrysorrheum,Passeriformes,Dicaeidae (Flowerpeckers),, 26819,species,yebflo1,Yellow-bellied Flowerpecker,Dicaeum melanoxanthum,Passeriformes,Dicaeidae (Flowerpeckers),, 26820,species,whtflo1,White-throated Flowerpecker,Dicaeum vincens,Passeriformes,Dicaeidae (Flowerpeckers),, 26821,species,yesflo1,Yellow-sided Flowerpecker,Dicaeum aureolimbatum,Passeriformes,Dicaeidae (Flowerpeckers),, 26824,species,olcflo1,Olive-capped Flowerpecker,Dicaeum nigrilore,Passeriformes,Dicaeidae (Flowerpeckers),, 26827,species,flcflo1,Flame-crowned Flowerpecker,Dicaeum anthonyi,Passeriformes,Dicaeidae (Flowerpeckers),, 26827.2,issf,flcflo2,Flame-crowned Flowerpecker (Yellow-crowned),Dicaeum anthonyi anthonyi,Passeriformes,Dicaeidae (Flowerpeckers),,flcflo1 26827.4,issf,flcflo3,Flame-crowned Flowerpecker (Flame-crowned),Dicaeum anthonyi kampalili/masawan,Passeriformes,Dicaeidae (Flowerpeckers),,flcflo1 26831,species,bicflo1,Bicolored Flowerpecker,Dicaeum bicolor,Passeriformes,Dicaeidae (Flowerpeckers),, 26835,species,cebflo1,Cebu Flowerpecker,Dicaeum quadricolor,Passeriformes,Dicaeidae (Flowerpeckers),, 26836,species,resflo1,Red-keeled Flowerpecker,Dicaeum australe,Passeriformes,Dicaeidae (Flowerpeckers),, 26837,species,rekflo1,Black-belted Flowerpecker,Dicaeum haematostictum,Passeriformes,Dicaeidae (Flowerpeckers),, 26838,species,sccflo1,Scarlet-collared Flowerpecker,Dicaeum retrocinctum,Passeriformes,Dicaeidae (Flowerpeckers),, 26839,species,orbflo1,Orange-bellied Flowerpecker,Dicaeum trigonostigma,Passeriformes,Dicaeidae (Flowerpeckers),, 26857.5,form,speflo1,Spectacled Flowerpecker (undescribed form),Dicaeum [undescribed form],Passeriformes,Dicaeidae (Flowerpeckers),, 26858,species,whbflo1,White-bellied Flowerpecker,Dicaeum hypoleucum,Passeriformes,Dicaeidae (Flowerpeckers),, 26864,species,pabflo1,Pale-billed Flowerpecker,Dicaeum erythrorhynchos,Passeriformes,Dicaeidae (Flowerpeckers),, 26866.5,slash,y00826,Thick-billed/Pale-billed Flowerpecker,Dicaeum agile/erythrorhynchos,Passeriformes,Dicaeidae (Flowerpeckers),, 26867,species,plaflo1,Nilgiri Flowerpecker,Dicaeum concolor,Passeriformes,Dicaeidae (Flowerpeckers),, 26867.2,species,plaflo2,Plain Flowerpecker,Dicaeum minullum,Passeriformes,Dicaeidae (Flowerpeckers),, 26867.8,species,andflo1,Andaman Flowerpecker,Dicaeum virescens,Passeriformes,Dicaeidae (Flowerpeckers),, 26875,species,pygflo1,Pygmy Flowerpecker,Dicaeum pygmaeum,Passeriformes,Dicaeidae (Flowerpeckers),, 26881,species,crcflo1,Crimson-crowned Flowerpecker,Dicaeum nehrkorni,Passeriformes,Dicaeidae (Flowerpeckers),, 26883,species,flbflo3,Halmahera Flowerpecker,Dicaeum schistaceiceps,Passeriformes,Dicaeidae (Flowerpeckers),, 26884,species,flbflo2,Buru Flowerpecker,Dicaeum erythrothorax,Passeriformes,Dicaeidae (Flowerpeckers),, 26885,species,ashflo1,Ashy Flowerpecker,Dicaeum vulneratum,Passeriformes,Dicaeidae (Flowerpeckers),, 26886,species,olcflo2,Olive-crowned Flowerpecker,Dicaeum pectorale,Passeriformes,Dicaeidae (Flowerpeckers),, 26889,species,recflo1,Red-capped Flowerpecker,Dicaeum geelvinkianum,Passeriformes,Dicaeidae (Flowerpeckers),, 26901,species,louflo1,Louisiade Flowerpecker,Dicaeum nitidum,Passeriformes,Dicaeidae (Flowerpeckers),, 26904,species,rebflo1,Red-banded Flowerpecker,Dicaeum eximium,Passeriformes,Dicaeidae (Flowerpeckers),, 26908,species,midflo1,Midget Flowerpecker,Dicaeum aeneum,Passeriformes,Dicaeidae (Flowerpeckers),, 26912,species,motflo1,Mottled Flowerpecker,Dicaeum tristrami,Passeriformes,Dicaeidae (Flowerpeckers),, 26913,species,blfflo1,Black-fronted Flowerpecker,Dicaeum igniferum,Passeriformes,Dicaeidae (Flowerpeckers),, 26916,species,recflo2,Red-chested Flowerpecker,Dicaeum maugei,Passeriformes,Dicaeidae (Flowerpeckers),, 26921,species,fibflo2,Fire-breasted Flowerpecker,Dicaeum ignipectus,Passeriformes,Dicaeidae (Flowerpeckers),, 26921.2,issf,fibflo1,Fire-breasted Flowerpecker (Fire-breasted),Dicaeum ignipectus [ignipectus Group],Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 26921.4,issf,fibflo3,Fire-breasted Flowerpecker (Cambodian),Dicaeum ignipectus cambodianum,Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 26921.6,issf,fibflo4,Fire-breasted Flowerpecker (Fire-throated),Dicaeum ignipectus [luzoniense Group],Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 26921.8,issf,fibflo5,Fire-breasted Flowerpecker (Sumatran),Dicaeum ignipectus beccarii,Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 26930,species,blsflo1,Black-sided Flowerpecker,Dicaeum monticolum,Passeriformes,Dicaeidae (Flowerpeckers),, 26931,species,gysflo1,Gray-sided Flowerpecker,Dicaeum celebicum,Passeriformes,Dicaeidae (Flowerpeckers),, 26931.5,issf,gysflo2,Gray-sided Flowerpecker (Gray-sided),Dicaeum celebicum [celebicum Group],Passeriformes,Dicaeidae (Flowerpeckers),,gysflo1 26936,issf,gysflo3,Gray-sided Flowerpecker (Wakatobi),Dicaeum celebicum kuehni,Passeriformes,Dicaeidae (Flowerpeckers),,gysflo1 26937,species,blbflo1,Blood-breasted Flowerpecker,Dicaeum sanguinolentum,Passeriformes,Dicaeidae (Flowerpeckers),, 26937.2,issf,blbflo2,Blood-breasted Flowerpecker (Blood-breasted),Dicaeum sanguinolentum sanguinolentum/rhodopygiale,Passeriformes,Dicaeidae (Flowerpeckers),,blbflo1 26937.4,issf,blbflo3,Blood-breasted Flowerpecker (Sumba),Dicaeum sanguinolentum wilhelminae,Passeriformes,Dicaeidae (Flowerpeckers),,blbflo1 26937.6,issf,blbflo4,Blood-breasted Flowerpecker (Timor),Dicaeum sanguinolentum hanieli,Passeriformes,Dicaeidae (Flowerpeckers),,blbflo1 26942,species,mistle1,Mistletoebird,Dicaeum hirundinaceum,Passeriformes,Dicaeidae (Flowerpeckers),, 26942.2,issf,mistle2,Mistletoebird (Pink-breasted),Dicaeum hirundinaceum keiense/fulgidum,Passeriformes,Dicaeidae (Flowerpeckers),,mistle1 26942.4,issf,mistle3,Mistletoebird (Aru),Dicaeum hirundinaceum ignicolle,Passeriformes,Dicaeidae (Flowerpeckers),,mistle1 26942.6,issf,mistle4,Mistletoebird (Mistletoebird),Dicaeum hirundinaceum hirundinaceum,Passeriformes,Dicaeidae (Flowerpeckers),,mistle1 26947,species,scbflo1,Scarlet-backed Flowerpecker,Dicaeum cruentatum,Passeriformes,Dicaeidae (Flowerpeckers),, 26955,species,schflo1,Scarlet-headed Flowerpecker,Dicaeum trochileum,Passeriformes,Dicaeidae (Flowerpeckers),, 26958,spuh,dicaeu1,Dicaeum sp.,Dicaeum sp.,Passeriformes,Dicaeidae (Flowerpeckers),, 26958.5,spuh,flower2,flowerpecker sp.,Prionochilus/Dicaeum sp.,Passeriformes,Dicaeidae (Flowerpeckers),, 26959,species,rucsun2,Ruby-cheeked Sunbird,Chalcoparia singalensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),Sunbirds and Spiderhunters, 26971,species,sctsun2,Fraser's Sunbird,Deleornis fraseri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 26975,species,gyhsun1,Gray-headed Sunbird,Deleornis axillaris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 26976,species,plbsun1,Plain-backed Sunbird,Anthreptes reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 26979,species,ancsun1,Anchieta's Sunbird,Anthreptes anchietae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 26980,species,plasun1,Plain Sunbird,Anthreptes simplex,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 26981,species,pltsun1,Plain-throated Sunbird,Anthreptes malacensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 26982,issf,pltsun3,Plain-throated Sunbird (Gray-throated),Anthreptes malacensis griseigularis/birgitae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,pltsun1 26985,issf,pltsun2,Plain-throated Sunbird (Brown-throated),Anthreptes malacensis [malacensis Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,pltsun1 26999,species,retsun3,Red-throated Sunbird,Anthreptes rhodolaemus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27000,species,mobsun1,Mouse-brown Sunbird,Anthreptes gabonicus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27001,species,wvbsun1,Western Violet-backed Sunbird,Anthreptes longuemarei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27002,issf,wvbsun3,Western Violet-backed Sunbird (Northern),Anthreptes longuemarei longuemarei/haussarum,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,wvbsun1 27004,issf,wvbsun2,Western Violet-backed Sunbird (Southern),Anthreptes longuemarei angolensis/nyassae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,wvbsun1 27006,species,kvbsun1,Kenya Violet-backed Sunbird,Anthreptes orientalis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27007,species,uvbsun1,Uluguru Violet-backed Sunbird,Anthreptes neglectus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27008,species,vitsun1,Violet-tailed Sunbird,Anthreptes aurantius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27009,species,ligsun2,Seimund's Sunbird,Anthreptes seimundi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27013,species,gresun1,Green Sunbird,Anthreptes rectirostris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27014,issf,grnsun1,Green Sunbird (Yellow-throated),Anthreptes rectirostris rectirostris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gresun1 27015,issf,grnsun2,Green Sunbird (Gray-throated),Anthreptes rectirostris tephrolaemus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gresun1 27016,species,bansun1,Banded Sunbird,Anthreptes rubritorques,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27017,species,colsun2,Collared Sunbird,Hedydipna collaris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27027,species,pygsun2,Pygmy Sunbird,Hedydipna platura,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27028,species,nivsun2,Nile Valley Sunbird,Hedydipna metallica,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27029,species,amasun2,Amani Sunbird,Hedydipna pallidigaster,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27036,species,reisun2,Reichenbach's Sunbird,Anabathmis reichenbachii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27037,species,prisun2,Principe Sunbird,Anabathmis hartlaubii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27038,species,newsun2,Newton's Sunbird,Anabathmis newtonii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27039,species,satsun1,Sao Tome Sunbird,Dreptes thomensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27040,species,orbsun2,Orange-breasted Sunbird,Anthobaphes violacea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27041,species,gnhsun1,Green-headed Sunbird,Cyanomitra verticalis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27042,issf,gnhsun3,Green-headed Sunbird (Green-headed),Cyanomitra verticalis verticalis/viridisplendens,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gnhsun1 27044,issf,gnhsun2,Green-headed Sunbird (Blue-headed),Cyanomitra verticalis cyanocephala/bohndorffi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gnhsun1 27046,species,bansun3,Bannerman's Sunbird,Cyanomitra bannermani,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27047,species,btbsun2,Blue-throated Brown Sunbird,Cyanomitra cyanolaema,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27051,species,camsun2,Cameroon Sunbird,Cyanomitra oritis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27052.3,issf,camsun4,Cameroon Sunbird (Green-headed),Cyanomitra oritis bansoensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,camsun2 27052.5,issf,camsun5,Cameroon Sunbird (Bioko),Cyanomitra oritis poensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,camsun2 27054,issf,camsun3,Cameroon Sunbird (Blue-headed),Cyanomitra oritis oritis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,camsun2 27055,species,buhsun1,Blue-headed Sunbird,Cyanomitra alinae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27061,species,eaosun1,Olive Sunbird,Cyanomitra olivacea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27074,species,mocsun2,Mouse-colored Sunbird,Cyanomitra veroxii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27078,species,butsun2,Buff-throated Sunbird,Chalcomitra adelberti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27081,species,carsun2,Carmelite Sunbird,Chalcomitra fuliginosa,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27084,species,gntsun1,Green-throated Sunbird,Chalcomitra rubescens,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27088,species,amesun2,Amethyst Sunbird,Chalcomitra amethystina,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27092,species,sccsun2,Scarlet-chested Sunbird,Chalcomitra senegalensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27098,species,hunsun2,Hunter's Sunbird,Chalcomitra hunteri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27101,species,socsun2,Socotra Sunbird,Chalcomitra balfouri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27102,species,pursun3,Purple-rumped Sunbird,Leptocoma zeylonica,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27105,species,crbsun2,Crimson-backed Sunbird,Leptocoma minima,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27107,species,vahsun1,Van Hasselt's Sunbird,Leptocoma brasiliana,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27112,species,putsun3,Purple-throated Sunbird,Leptocoma sperata,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27112.2,issf,putsun5,Purple-throated Sunbird (Purple-throated),Leptocoma sperata [sperata Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,putsun3 27112.4,issf,putsun6,Purple-throated Sunbird (Orange-lined),Leptocoma sperata juliae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,putsun3 27116,species,blksun1,Black Sunbird,Leptocoma sericea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27140,species,cotsun2,Copper-throated Sunbird,Leptocoma calcostetha,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27141,species,bocsun2,Bocage's Sunbird,Nectarinia bocagii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27142,species,pubsun3,Purple-breasted Sunbird,Nectarinia purpureiventris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27143,species,tacsun1,Tacazze Sunbird,Nectarinia tacazze,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27146,species,brosun1,Bronze Sunbird,Nectarinia kilimensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27150,species,malsun1,Malachite Sunbird,Nectarinia famosa,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27153,species,retsun2,Red-tufted Sunbird,Nectarinia johnstoni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27158,species,gowsun2,Golden-winged Sunbird,Drepanorhynchus reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27162,species,olbsun3,Olive-bellied Sunbird,Cinnyris chloropygius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27167,species,tinsun2,Tiny Sunbird,Cinnyris minullus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27168,species,miosun1,Miombo Sunbird,Cinnyris manoensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27168.2,issf,miosun2,Miombo Sunbird (Western),Cinnyris manoensis pintoi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,miosun1 27168.4,issf,miosun3,Miombo Sunbird (Eastern),Cinnyris manoensis manoensis/amicorum,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,miosun1 27172,species,sdcsun3,Southern Double-collared Sunbird,Cinnyris chalybeus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27176,species,neesun2,Neergaard's Sunbird,Cinnyris neergaardi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27177,species,stusun1,Stuhlmann's Sunbird,Cinnyris stuhlmanni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27182,species,prisun3,Prigogine's Sunbird,Cinnyris prigoginei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27183,species,mdcsun3,Montane Double-collared Sunbird,Cinnyris ludovicensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27184,issf,mdcsun1,Montane Double-collared Sunbird (Western),Cinnyris ludovicensis ludovicensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,mdcsun3 27185,issf,mdcsun2,Montane Double-collared Sunbird (Eastern),Cinnyris ludovicensis whytei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,mdcsun3 27186,species,ndcsun2,Northern Double-collared Sunbird,Cinnyris reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27187,issf,ndcsun1,Northern Double-collared Sunbird (Western),Cinnyris reichenowi preussi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,ndcsun2 27188,issf,ndcsun3,Northern Double-collared Sunbird (Eastern),Cinnyris reichenowi reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,ndcsun2 27189,species,gdcsun2,Greater Double-collared Sunbird,Cinnyris afer,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27192,species,regsun2,Regal Sunbird,Cinnyris regius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27195,species,rocsun2,Rockefeller's Sunbird,Cinnyris rockefelleri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27196,species,edcsun2,Eastern Double-collared Sunbird,Cinnyris mediocris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27197,issf,edcsun3,Eastern Double-collared Sunbird (Eastern),Cinnyris mediocris mediocris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,edcsun2 27198,issf,edcsun4,Eastern Double-collared Sunbird (Usambara),Cinnyris mediocris usambaricus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,edcsun2 27199,issf,edcsun1,Eastern Double-collared Sunbird (Forest),Cinnyris mediocris fuelleborni/bensoni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,edcsun2 27201,species,morsun2,Moreau's Sunbird,Cinnyris moreaui,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27202,species,lovsun3,Loveridge's Sunbird,Cinnyris loveridgei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27203,species,beasun2,Beautiful Sunbird,Cinnyris pulchellus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27203.2,issf,beasun1,Beautiful Sunbird (Beautiful),Cinnyris pulchellus pulchellus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,beasun2 27203.4,issf,beasun3,Beautiful Sunbird (Gorgeous),Cinnyris pulchellus melanogastrus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,beasun2 27206,species,marsun2,Mariqua Sunbird,Cinnyris mariquensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27210,species,shesun2,Shelley's Sunbird,Cinnyris shelleyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27211,issf,shesun3,Shelley's Sunbird (Shelley's),Cinnyris shelleyi shelleyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shesun2 27212,issf,shesun1,Shelley's Sunbird (Hofmann's),Cinnyris shelleyi hofmanni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shesun2 27213,species,consun2,Congo Sunbird,Cinnyris congensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27214,species,recsun2,Red-chested Sunbird,Cinnyris erythrocercus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27215,species,bkbsun1,Black-bellied Sunbird,Cinnyris nectarinioides,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27218,species,pubsun4,Purple-banded Sunbird,Cinnyris bifasciatus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27221,species,tsasun1,Tsavo Sunbird,Cinnyris tsavoensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27222,species,vibsun2,Violet-breasted Sunbird,Cinnyris chalcomelas,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27223,species,pemsun2,Pemba Sunbird,Cinnyris pembae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27224,species,ortsun3,Orange-tufted Sunbird,Cinnyris bouvieri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27225,species,palsun2,Palestine Sunbird,Cinnyris osea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27226,issf,palsun1,Palestine Sunbird (Decorse's),Cinnyris osea decorsei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,palsun2 27227,issf,palsun3,Palestine Sunbird (Palestine),Cinnyris osea osea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,palsun2 27228,species,shisun3,Shining Sunbird,Cinnyris habessinicus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27228.2,issf,shisun2,Shining Sunbird (Shining),Cinnyris habessinicus [habessinicus Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shisun3 27228.4,issf,shisun4,Shining Sunbird (Arabian),Cinnyris habessinicus hellmayri/kinneari,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shisun3 27234,species,splsun2,Splendid Sunbird,Cinnyris coccinigastrus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27235,species,johsun2,Johanna's Sunbird,Cinnyris johannae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27238,species,supsun2,Superb Sunbird,Cinnyris superbus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27242,species,ruwsun2,Rufous-winged Sunbird,Cinnyris rufipennis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27243,species,oussun2,Oustalet's Sunbird,Cinnyris oustaleti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27244,issf,oussun1,Oustalet's Sunbird (Angola),Cinnyris oustaleti oustaleti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,oussun2 27245,issf,oussun3,Oustalet's Sunbird (Eastern),Cinnyris oustaleti rhodesiae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,oussun2 27246,species,whbsun2,White-breasted Sunbird,Cinnyris talatala,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27247,species,varsun2,Variable Sunbird,Cinnyris venustus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27247.5,issf,varsun1,Variable Sunbird (Yellow-bellied),Cinnyris venustus [venustus Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,varsun2 27251.5,issf,varsun4,Variable Sunbird (Orange-chested),Cinnyris venustus igneiventris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,varsun2 27252,issf,varsun3,Variable Sunbird (White-bellied),Cinnyris venustus albiventris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,varsun2 27253,species,dussun2,Dusky Sunbird,Cinnyris fuscus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27256,species,urssun2,Ursula's Sunbird,Cinnyris ursulae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27257,species,batsun2,Bates's Sunbird,Cinnyris batesi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27258,species,copsun2,Copper Sunbird,Cinnyris cupreus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27261,species,pursun4,Purple Sunbird,Cinnyris asiaticus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27265,species,olbsun4,Olive-backed Sunbird,Cinnyris jugularis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27265.5,issf,olbsun5,Olive-backed Sunbird (Olive-backed),Cinnyris jugularis [jugularis Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 27279.1,issf,olbsun7,Olive-backed Sunbird (Cream-bellied),Cinnyris jugularis rhizophorae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 27279.3,issf,olbsun2,Olive-backed Sunbird (Yellow-faced),Cinnyris jugularis [frenatus Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 27280.6,issf,olbsun6,Olive-backed Sunbird (Orange-breasted),Cinnyris jugularis aurora,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 27281,issf,olbsun1,Olive-backed Sunbird (Black-breasted),Cinnyris jugularis [clementiae Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 27286.8,issf,olbsun8,Olive-backed Sunbird (Black-bellied),Cinnyris jugularis teysmanni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 27287,species,apbsun2,Apricot-breasted Sunbird,Cinnyris buettikoferi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27288,species,flbsun2,Flame-breasted Sunbird,Cinnyris solaris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27291,species,sousun2,Souimanga Sunbird,Cinnyris sovimanga,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27292,issf,sousun3,Souimanga Sunbird (Sooty-bellied),Cinnyris sovimanga aldabrensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 27295,issf,sousun5,Souimanga Sunbird (Yellow-bellied),Cinnyris sovimanga sovimanga,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 27296,issf,sousun4,Souimanga Sunbird (White-bellied),Cinnyris sovimanga apolis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 27296.1,issf,sousun1,Souimanga Sunbird (Abbott's),Cinnyris sovimanga abbotti/buchenorum,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 27297,species,madsun1,Madagascar Sunbird,Cinnyris notatus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27297.2,issf,madsun2,Madagascar Sunbird (Grand Comoro),Cinnyris notatus moebii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,madsun1 27297.4,issf,madsun3,Madagascar Sunbird (Moheli),Cinnyris notatus voeltzkowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,madsun1 27297.6,issf,madsun4,Madagascar Sunbird (Long-billed),Cinnyris notatus notatus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,madsun1 27301,species,seysun2,Seychelles Sunbird,Cinnyris dussumieri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27302,species,humsun2,Humblot's Sunbird,Cinnyris humbloti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27305,species,anjsun2,Anjouan Sunbird,Cinnyris comorensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27306,species,maysun2,Mayotte Sunbird,Cinnyris coquerellii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27307,species,lobsun2,Long-billed Sunbird,Cinnyris lotenius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27310,spuh,cinnyr1,Cinnyris sp.,Cinnyris sp.,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27311,species,elesun1,Elegant Sunbird,Aethopyga duyvenbodei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27312,species,fitsun1,Fire-tailed Sunbird,Aethopyga ignicauda,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27315,species,bltsun1,Black-throated Sunbird,Aethopyga saturata,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27325,species,gousun1,Gould's Sunbird,Aethopyga gouldiae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27326,issf,gousun4,Gould's Sunbird (Yellow-breasted),Aethopyga gouldiae gouldiae/isolata,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gousun1 27329,issf,gousun3,Gould's Sunbird (Scarlet-breasted),Aethopyga gouldiae dabryii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gousun1 27330,issf,gousun2,Gould's Sunbird (Purple-rumped),Aethopyga gouldiae annamensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gousun1 27331,species,grtsun1,Green-tailed Sunbird,Aethopyga nipalensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27332,issf,gntsun3,Green-tailed Sunbird (Green-tailed),Aethopyga nipalensis [nipalensis Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,grtsun1 27340,issf,gntsun2,Green-tailed Sunbird (Doi Inthanon),Aethopyga nipalensis angkanensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,grtsun1 27341,species,lovsun1,Lovely Sunbird,Aethopyga shelleyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27342,species,temsun1,Temminck's Sunbird,Aethopyga temminckii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27342.5,species,scasun1,Javan Sunbird,Aethopyga mystacalis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27343,species,wecsun1,Vigors's Sunbird,Aethopyga vigorsii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27344,species,eacsun1,Crimson Sunbird,Aethopyga siparaja,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27345,issf,crisun1,Crimson Sunbird (Goulpourah),Aethopyga siparaja [seheriae Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,eacsun1 27353,issf,crisun2,Crimson Sunbird (Crimson),Aethopyga siparaja [siparaja Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,eacsun1 27359,issf,crisun3,Crimson Sunbird (Sulawesi),Aethopyga siparaja flavostriata/beccarii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,eacsun1 27359.2,slash,y00916,Temminck's/Crimson Sunbird,Aethopyga temminckii/siparaja,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27362,species,magsun1,Magnificent Sunbird,Aethopyga magnifica,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27363,species,fotsun1,Fork-tailed Sunbird,Aethopyga christinae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27363.2,issf,fotsun2,Fork-tailed Sunbird (Fork-tailed),Aethopyga christinae latouchii/sokolovi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,fotsun1 27363.4,issf,fotsun3,Fork-tailed Sunbird (Hainan),Aethopyga christinae christinae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,fotsun1 27367,species,hansun1,Handsome Sunbird,Aethopyga bella,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27372,species,whfsun1,White-flanked Sunbird,Aethopyga eximia,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27373,species,flasun1,Flaming Sunbird,Aethopyga flagrans,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27376,species,mansun1,Maroon-naped Sunbird,Aethopyga guimarasensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27380,species,mewsun2,Metallic-winged Sunbird,Aethopyga pulcherrima,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27381,species,mousun1,Mountain Sunbird,Aethopyga jefferyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27381.5,species,bohsun1,Bohol Sunbird,Aethopyga decorosa,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27382,species,linsun1,Lina's Sunbird,Aethopyga linaraborae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27383,species,gyhsun2,Gray-hooded Sunbird,Aethopyga primigenia,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27386,species,moasun1,Apo Sunbird,Aethopyga boltoni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27389,species,tbosun1,Tboli Sunbird,Aethopyga tibolii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27390,spuh,aethop1,Aethopyga sp.,Aethopyga sp.,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27391,spuh,sunbir1,sunbird sp.,Nectariniidae sp. (sunbird sp.),Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27392,species,thbspi1,Thick-billed Spiderhunter,Arachnothera crassirostris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27393,species,lobspi1,Long-billed Spiderhunter,Arachnothera robusta,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27396,species,ortspi1,Orange-tufted Spiderhunter,Arachnothera flammifera,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27399,species,palspi2,Pale Spiderhunter,Arachnothera dilutior,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27400,species,litspi1,Little Spiderhunter,Arachnothera longirostra,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27404,species,punsun1,Purple-naped Spiderhunter,Arachnothera hypogrammicum,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27409,species,whispi1,Whitehead's Spiderhunter,Arachnothera juliae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27410,species,nafspi1,Naked-faced Spiderhunter,Arachnothera clarae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27415,species,yeespi1,Yellow-eared Spiderhunter,Arachnothera chrysogenys,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27418,species,spespi2,Spectacled Spiderhunter,Arachnothera flavigaster,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27419,species,strspi1,Streaked Spiderhunter,Arachnothera magna,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27426,species,stbspi2,Streaky-breasted Spiderhunter,Arachnothera affinis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27427,species,gybspi2,Gray-breasted Spiderhunter,Arachnothera modesta,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27432,species,borspi1,Bornean Spiderhunter,Arachnothera everetti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27433,spuh,spider1,spiderhunter sp.,Arachnothera sp.,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, 27434,species,alpacc1,Alpine Accentor,Prunella collaris,Passeriformes,Prunellidae (Accentors),Accentors, 27444,species,himacc1,Himalayan Accentor,Prunella himalayana,Passeriformes,Prunellidae (Accentors),, 27445,species,robacc1,Robin Accentor,Prunella rubeculoides,Passeriformes,Prunellidae (Accentors),, 27448,species,rubacc1,Rufous-breasted Accentor,Prunella strophiata,Passeriformes,Prunellidae (Accentors),, 27451,species,sibacc,Siberian Accentor,Prunella montanella,Passeriformes,Prunellidae (Accentors),, 27454,species,radacc1,Radde's Accentor,Prunella ocularis,Passeriformes,Prunellidae (Accentors),, 27455,species,yemacc1,Yemen Accentor,Prunella fagani,Passeriformes,Prunellidae (Accentors),, 27456,species,broacc1,Brown Accentor,Prunella fulvescens,Passeriformes,Prunellidae (Accentors),, 27463,species,bltacc1,Black-throated Accentor,Prunella atrogularis,Passeriformes,Prunellidae (Accentors),, 27466,species,monacc1,Mongolian Accentor,Prunella koslowi,Passeriformes,Prunellidae (Accentors),, 27467,species,dunnoc1,Dunnock,Prunella modularis,Passeriformes,Prunellidae (Accentors),, 27476,species,japacc1,Japanese Accentor,Prunella rubida,Passeriformes,Prunellidae (Accentors),, 27479,species,mabacc1,Maroon-backed Accentor,Prunella immaculata,Passeriformes,Prunellidae (Accentors),, 27479.5,spuh,accent1,accentor sp.,Prunella sp.,Passeriformes,Prunellidae (Accentors),, 27479.6,species,forwag1,Forest Wagtail,Dendronanthus indicus,Passeriformes,Motacillidae (Wagtails and Pipits),Wagtails and Pipits, 27479.7,species,boclon2,Sao Tome Short-tail,Amaurocichla bocagii,Passeriformes,Motacillidae (Wagtails and Pipits),, 27480,species,eaywag1,Western Yellow Wagtail,Motacilla flava,Passeriformes,Motacillidae (Wagtails and Pipits),, 27480.5,form,weywag13,Western Yellow Wagtail (lutea/flavissima),Motacilla flava lutea/flavissima,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27480.7,issf,weywag14,Western Yellow Wagtail (flavissima),Motacilla flava flavissima,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27480.9,issf,weywag15,Western Yellow Wagtail (lutea),Motacilla flava lutea,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27482,issf,weywag2,Western Yellow Wagtail (thunbergi),Motacilla flava thunbergi,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27483,form,weywag3,Western Yellow Wagtail (flava/beema),Motacilla flava flava/beema,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27483.2,issf,weywag16,Western Yellow Wagtail (flava),Motacilla flava flava,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27483.4,issf,weywag17,Western Yellow Wagtail (beema),Motacilla flava beema,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27486,form,weywag4,Western Yellow Wagtail (iberiae/cinereocapilla/pygmaea),Motacilla flava [cinereocapilla Group],Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27486.2,issf,weywag18,Western Yellow Wagtail (iberiae),Motacilla flava iberiae,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27486.4,issf,weywag19,Western Yellow Wagtail (cinereocapilla),Motacilla flava cinereocapilla,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27486.6,issf,weywag20,Western Yellow Wagtail (pygmaea),Motacilla flava pygmaea,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27491,issf,weywag6,Western Yellow Wagtail (feldegg),Motacilla flava feldegg,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27492,issf,weywag7,Western Yellow Wagtail (leucocephala),Motacilla flava leucocephala,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27492.2,intergrade,weywag21,Western Yellow Wagtail (Channel Wagtail intergrade),Motacilla flava flava x flavissima,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27494.2,intergrade,weywag11,Western Yellow Wagtail (superciliaris-type intergrade),Motacilla flava (superciliaris intergrade),Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27494.4,intergrade,weywag10,Western Yellow Wagtail (dombrowskii-type intergrade),Motacilla flava (dombrowskii intergrade),Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27494.6,intergrade,weywag12,Western Yellow Wagtail (xanthophrys-type intergrade),Motacilla flava (xanthophrys intergrade),Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 27495,species,eaywag,Eastern Yellow Wagtail,Motacilla tschutschensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27495.5,issf,eaywag2,Eastern Yellow Wagtail (Eastern),Motacilla tschutschensis tschutschensis/plexa,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag 27498,issf,weywag8,Eastern Yellow Wagtail (Green-headed),Motacilla tschutschensis taivana,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag 27499,issf,weywag9,Eastern Yellow Wagtail (Manchurian),Motacilla tschutschensis macronyx,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag 27500,slash,y00597,Western/Eastern Yellow Wagtail,Motacilla flava/tschutschensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27501,species,citwag,Citrine Wagtail,Motacilla citreola,Passeriformes,Motacillidae (Wagtails and Pipits),, 27501.5,issf,citwag1,Citrine Wagtail (Gray-backed),Motacilla citreola citreola/werae,Passeriformes,Motacillidae (Wagtails and Pipits),,citwag 27504,issf,citwag2,Citrine Wagtail (Black-backed),Motacilla citreola calcarata,Passeriformes,Motacillidae (Wagtails and Pipits),,citwag 27505,species,capwag1,Cape Wagtail,Motacilla capensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27509,species,madwag1,Madagascar Wagtail,Motacilla flaviventris,Passeriformes,Motacillidae (Wagtails and Pipits),, 27510,species,grywag,Gray Wagtail,Motacilla cinerea,Passeriformes,Motacillidae (Wagtails and Pipits),, 27514,species,mouwag1,Mountain Wagtail,Motacilla clara,Passeriformes,Motacillidae (Wagtails and Pipits),, 27518,species,whiwag,White Wagtail,Motacilla alba,Passeriformes,Motacillidae (Wagtails and Pipits),, 27519,issf,whiwag1,White Wagtail (White-faced),Motacilla alba alba/dukhunensis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27521,issf,whiwag3,White Wagtail (British),Motacilla alba yarrellii,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27522,issf,whiwag2,White Wagtail (ocularis),Motacilla alba ocularis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27523,issf,whiwag4,White Wagtail (Moroccan),Motacilla alba subpersonata,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27525,issf,whiwag5,White Wagtail (Masked),Motacilla alba personata,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27526,issf,whiwag7,White Wagtail (Transbaikalian),Motacilla alba baicalensis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27527,issf,bkbwag,White Wagtail (Black-backed),Motacilla alba lugens,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27528,issf,whiwag8,White Wagtail (Chinese),Motacilla alba leucopsis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27529,issf,whiwag6,White Wagtail (Hodgson's),Motacilla alba alboides,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag 27530,species,whbwag1,White-browed Wagtail,Motacilla maderaspatensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27530.2,slash,y00917,White/White-browed Wagtail,Motacilla alba/maderaspatensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27531,species,japwag1,Japanese Wagtail,Motacilla grandis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27532,species,mekwag1,Mekong Wagtail,Motacilla samveasnae,Passeriformes,Motacillidae (Wagtails and Pipits),, 27533,species,afpwag1,African Pied Wagtail,Motacilla aguimp,Passeriformes,Motacillidae (Wagtails and Pipits),, 27536,spuh,wagtai1,wagtail sp.,Motacilla sp.,Passeriformes,Motacillidae (Wagtails and Pipits),, 27536.5,species,rtweye1,Madanga,Madanga ruficollis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27537,species,auspip1,Australasian Pipit,Anthus novaeseelandiae,Passeriformes,Motacillidae (Wagtails and Pipits),, 27537.5,issf,auspip2,Australasian Pipit (Australian),Anthus novaeseelandiae [australis Group],Passeriformes,Motacillidae (Wagtails and Pipits),,auspip1 27542.5,issf,auspip3,Australasian Pipit (New Zealand),Anthus novaeseelandiae [novaeseelandiae Group],Passeriformes,Motacillidae (Wagtails and Pipits),,auspip1 27547,species,ricpip1,Richard's Pipit,Anthus richardi,Passeriformes,Motacillidae (Wagtails and Pipits),, 27553,species,oripip1,Paddyfield Pipit,Anthus rufulus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27553.2,slash,y00918,Richard's/Paddyfield Pipit,Anthus richardi/rufulus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27560,species,afrpip1,African Pipit,Anthus cinnamomeus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27561,issf,afrpip2,African Pipit (Cameroon),Anthus cinnamomeus camaroonensis,Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 27561.5,issf,afrpip3,African Pipit (Yemen),Anthus cinnamomeus eximius,Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 27562,issf,afrpip4,African Pipit (African),Anthus cinnamomeus [cinnamomeus Group],Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 27573.5,issf,afrpip5,African Pipit (Etosha),Anthus cinnamomeus grotei,Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 27574,species,moupip1,Mountain Pipit,Anthus hoeschi,Passeriformes,Motacillidae (Wagtails and Pipits),, 27575,species,jacpip1,Jackson's Pipit,Anthus latistriatus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27576,species,woopip1,Woodland Pipit,Anthus nyassae,Passeriformes,Motacillidae (Wagtails and Pipits),, 27581,species,lobpip1,Long-billed Pipit,Anthus similis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27582,issf,lobpip3,Long-billed Pipit (West African),Anthus similis bannermani,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27583,issf,lobpip4,Long-billed Pipit (Middle Eastern),Anthus similis captus,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27584,issf,lobpip5,Long-billed Pipit (Arabian),Anthus similis arabicus,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27585.5,issf,lobpip6,Long-billed Pipit (Socotra),Anthus similis sokotrae,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27585.8,issf,lobpip2,Long-billed Pipit (Nairobi),Anthus similis chyuluensis,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27586,issf,lobpip7,Long-billed Pipit (Nicholson's),Anthus similis [nicholsoni Group],Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27595.5,issf,lobpip8,Long-billed Pipit (Persian),Anthus similis jerdoni/decaptus,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27597.5,issf,lobpip9,Long-billed Pipit (Indian),Anthus similis similis/travancoriensis,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27600,issf,lobpip10,Long-billed Pipit (Burmese),Anthus similis yamethini,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 27602,species,blypip1,Blyth's Pipit,Anthus godlewskii,Passeriformes,Motacillidae (Wagtails and Pipits),, 27602.5,slash,y01013,Richard's/Blyth's Pipit,Anthus richardi/godlewskii,Passeriformes,Motacillidae (Wagtails and Pipits),, 27603,species,tawpip1,Tawny Pipit,Anthus campestris,Passeriformes,Motacillidae (Wagtails and Pipits),, 27607,species,plbpip1,Plain-backed Pipit,Anthus leucophrys,Passeriformes,Motacillidae (Wagtails and Pipits),, 27616,species,bufpip1,Buffy Pipit,Anthus vaalensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27625,species,lolpip1,Long-legged Pipit,Anthus pallidiventris,Passeriformes,Motacillidae (Wagtails and Pipits),, 27628,species,nilpip1,Nilgiri Pipit,Anthus nilghiriensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27629,species,uplpip1,Upland Pipit,Anthus sylvanus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27630,species,berpip1,Berthelot's Pipit,Anthus berthelotii,Passeriformes,Motacillidae (Wagtails and Pipits),, 27633,species,malpip1,Malindi Pipit,Anthus melindae,Passeriformes,Motacillidae (Wagtails and Pipits),, 27636,species,strpip1,Striped Pipit,Anthus lineiventris,Passeriformes,Motacillidae (Wagtails and Pipits),, 27639,species,yetpip1,Yellow-tufted Pipit,Anthus crenatus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27640,species,alppip1,Alpine Pipit,Anthus gutturalis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27644,species,meapip1,Meadow Pipit,Anthus pratensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27647,species,rospip1,Rosy Pipit,Anthus roseatus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27648,species,trepip,Tree Pipit,Anthus trivialis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27651.5,slash,y00672,Meadow/Tree Pipit,Anthus pratensis/trivialis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27652,species,olbpip,Olive-backed Pipit,Anthus hodgsoni,Passeriformes,Motacillidae (Wagtails and Pipits),, 27654.5,slash,y00758,Tree/Olive-backed Pipit,Anthus trivialis/hodgsoni,Passeriformes,Motacillidae (Wagtails and Pipits),, 27655,species,pecpip,Pechora Pipit,Anthus gustavi,Passeriformes,Motacillidae (Wagtails and Pipits),, 27656,issf,pecpip1,Pechora Pipit (Pechora),Anthus gustavi gustavi/stejnegeri,Passeriformes,Motacillidae (Wagtails and Pipits),,pecpip 27659,issf,pecpip2,Pechora Pipit (Menzbier's),Anthus gustavi menzbieri,Passeriformes,Motacillidae (Wagtails and Pipits),,pecpip 27660,species,retpip,Red-throated Pipit,Anthus cervinus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27661,species,watpip1,Water Pipit,Anthus spinoletta,Passeriformes,Motacillidae (Wagtails and Pipits),, 27662,issf,watpip2,Water Pipit (Western),Anthus spinoletta spinoletta,Passeriformes,Motacillidae (Wagtails and Pipits),,watpip1 27663,issf,watpip3,Water Pipit (Caucasian),Anthus spinoletta coutellii,Passeriformes,Motacillidae (Wagtails and Pipits),,watpip1 27664,issf,watpip4,Water Pipit (Blakiston's),Anthus spinoletta blakistoni,Passeriformes,Motacillidae (Wagtails and Pipits),,watpip1 27665,slash,y00671,Meadow/Water Pipit,Anthus pratensis/spinoletta,Passeriformes,Motacillidae (Wagtails and Pipits),, 27665.5,species,rocpip1,Rock Pipit,Anthus petrosus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27666,issf,rocpip3,Rock Pipit (Western),Anthus petrosus petrosus/kleinschmidti,Passeriformes,Motacillidae (Wagtails and Pipits),,rocpip1 27668,issf,rocpip2,Rock Pipit (Eastern),Anthus petrosus littoralis,Passeriformes,Motacillidae (Wagtails and Pipits),,rocpip1 27668.5,slash,y00759,Water/Rock Pipit,Anthus spinoletta/petrosus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27669,species,amepip,American Pipit,Anthus rubescens,Passeriformes,Motacillidae (Wagtails and Pipits),, 27670,issf,sibpip1,American Pipit (japonicus),Anthus rubescens japonicus,Passeriformes,Motacillidae (Wagtails and Pipits),,amepip 27671,issf,amepip2,American Pipit (rubescens/pacificus),Anthus rubescens rubescens/pacificus,Passeriformes,Motacillidae (Wagtails and Pipits),,amepip 27674,issf,amepip1,American Pipit (alticola),Anthus rubescens alticola,Passeriformes,Motacillidae (Wagtails and Pipits),,amepip 27674.5,slash,y00760,Water/American Pipit,Anthus spinoletta/rubescens,Passeriformes,Motacillidae (Wagtails and Pipits),, 27675,species,sprpip,Sprague's Pipit,Anthus spragueii,Passeriformes,Motacillidae (Wagtails and Pipits),, 27676,species,yelpip1,Yellowish Pipit,Anthus lutescens,Passeriformes,Motacillidae (Wagtails and Pipits),, 27676.5,issf,yelpip2,Yellowish Pipit (Yellowish),Anthus lutescens lutescens/parvus,Passeriformes,Motacillidae (Wagtails and Pipits),,yelpip1 27679,issf,yelpip3,Yellowish Pipit (Peruvian),Anthus lutescens peruvianus,Passeriformes,Motacillidae (Wagtails and Pipits),,yelpip1 27680,species,shbpip1,Short-billed Pipit,Anthus furcatus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27683,species,chapip1,Pampas Pipit,Anthus chacoensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27684,species,corpip1,Correndera Pipit,Anthus correndera,Passeriformes,Motacillidae (Wagtails and Pipits),, 27685,issf,corpip2,Correndera Pipit (Correndera),Anthus correndera [correndera Group],Passeriformes,Motacillidae (Wagtails and Pipits),,corpip1 27690,issf,corpip3,Correndera Pipit (Falklands),Anthus correndera grayi,Passeriformes,Motacillidae (Wagtails and Pipits),,corpip1 27691,species,sogpip1,South Georgia Pipit,Anthus antarcticus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27692,species,ocbpip1,Ochre-breasted Pipit,Anthus nattereri,Passeriformes,Motacillidae (Wagtails and Pipits),, 27693,species,helpip1,Hellmayr's Pipit,Anthus hellmayri,Passeriformes,Motacillidae (Wagtails and Pipits),, 27697,species,parpip1,Paramo Pipit,Anthus bogotensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27702,species,shtpip1,Short-tailed Pipit,Anthus brachyurus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27705,species,buspip1,Bush Pipit,Anthus caffer,Passeriformes,Motacillidae (Wagtails and Pipits),, 27711,species,sokpip1,Sokoke Pipit,Anthus sokokensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27712,spuh,pipit1,pipit sp.,Anthus sp.,Passeriformes,Motacillidae (Wagtails and Pipits),, 27713,species,golpip1,Golden Pipit,Tmetothylacus tenellus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27714,species,yebpip2,Yellow-breasted Pipit,Hemimacronyx chloris,Passeriformes,Motacillidae (Wagtails and Pipits),, 27715,species,shalon1,Sharpe's Longclaw,Hemimacronyx sharpei,Passeriformes,Motacillidae (Wagtails and Pipits),, 27716,species,ortlon1,Orange-throated Longclaw,Macronyx capensis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27720,species,yetlon1,Yellow-throated Longclaw,Macronyx croceus,Passeriformes,Motacillidae (Wagtails and Pipits),, 27721,species,fuelon2,FŸlleborn's Longclaw,Macronyx fuelleborni,Passeriformes,Motacillidae (Wagtails and Pipits),, 27724,species,abylon1,Abyssinian Longclaw,Macronyx flavicollis,Passeriformes,Motacillidae (Wagtails and Pipits),, 27725,species,panlon1,Pangani Longclaw,Macronyx aurantiigula,Passeriformes,Motacillidae (Wagtails and Pipits),, 27726,species,rotlon1,Rosy-throated Longclaw,Macronyx ameliae,Passeriformes,Motacillidae (Wagtails and Pipits),, 27730,species,grilon1,Grimwood's Longclaw,Macronyx grimwoodi,Passeriformes,Motacillidae (Wagtails and Pipits),, 27731,spuh,longcl1,longclaw sp.,Macronyx sp.,Passeriformes,Motacillidae (Wagtails and Pipits),, 27733,species,przros1,Przevalski's Pinktail,Urocynchramus pylzowi,Passeriformes,Urocynchramidae (Przevalski's Pinktail),Przevalski's Pinktail, 27733.5,species,spwbab1,Spotted Elachura,Elachura formosa,Passeriformes,Elachuridae (Spotted Elachura),Elachura, 27734,species,bohwax,Bohemian Waxwing,Bombycilla garrulus,Passeriformes,Bombycillidae (Waxwings),Waxwings, 27738,species,cedwax,Cedar Waxwing,Bombycilla cedrorum,Passeriformes,Bombycillidae (Waxwings),, 27739,slash,waxwin,Bohemian/Cedar Waxwing,Bombycilla garrulus/cedrorum,Passeriformes,Bombycillidae (Waxwings),, 27740,species,japwax1,Japanese Waxwing,Bombycilla japonica,Passeriformes,Bombycillidae (Waxwings),, 27741,species,kauoo,Kauai Oo,Moho braccatus,Passeriformes,Mohoidae (Hawaiian Honeyeaters),Hawaiian Honeyeaters, 27742,species,oahoo,Oahu Oo,Moho apicalis,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, 27743,species,bisoo,Bishop's Oo,Moho bishopi,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, 27744,species,hawoo,Hawaii Oo,Moho nobilis,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, 27745,species,kioea,Kioea,Chaetoptila angustipluma,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, 27746,species,bayfly1,Black-and-yellow Silky-flycatcher,Phainoptila melanoxantha,Passeriformes,Ptiliogonatidae (Silky-flycatchers),Silky-flycatchers, 27749,species,grsfly1,Gray Silky-flycatcher,Ptiliogonys cinereus,Passeriformes,Ptiliogonatidae (Silky-flycatchers),, 27754,species,ltsfly1,Long-tailed Silky-flycatcher,Ptiliogonys caudatus,Passeriformes,Ptiliogonatidae (Silky-flycatchers),, 27755,species,phaino,Phainopepla,Phainopepla nitens,Passeriformes,Ptiliogonatidae (Silky-flycatchers),, 27758,species,palmch1,Palmchat,Dulus dominicus,Passeriformes,Dulidae (Palmchat),Palmchat, 27759,species,olfwhi1,Hylocitrea,Hylocitrea bonensis,Passeriformes,Hylocitreidae (Hylocitrea),Hylocitrea, 27759.2,issf,hyloci1,Hylocitrea (Northern),Hylocitrea bonensis bonensis,Passeriformes,Hylocitreidae (Hylocitrea),,olfwhi1 27759.4,issf,hyloci2,Hylocitrea (Southern),Hylocitrea bonensis bonthaina,Passeriformes,Hylocitreidae (Hylocitrea),,olfwhi1 27762,species,hypoco1,Hypocolius,Hypocolius ampelinus,Passeriformes,Hypocoliidae (Hypocolius),Hypocolius, 27763,species,oliwar,Olive Warbler,Peucedramus taeniatus,Passeriformes,Peucedramidae (Olive Warbler),Olive Warbler, 27763.5,species,laplon,Lapland Longspur,Calcarius lapponicus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),Longspurs and Snow Buntings, 27764,species,chclon,Chestnut-collared Longspur,Calcarius ornatus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27765,species,smilon,Smith's Longspur,Calcarius pictus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27766,species,mcclon,McCown's Longspur,Rhynchophanes mccownii,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27766.3,spuh,longsp1,longspur sp.,Calcarius/Rhynchophanes sp.,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27766.4,species,snobun,Snow Bunting,Plectrophenax nivalis,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27768,species,mckbun,McKay's Bunting,Plectrophenax hyperboreus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27768.5,hybrid,x00447,Snow x McKay's Bunting (hybrid),Plectrophenax nivalis x hyperboreus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27768.7,slash,y00695,Snow/McKay's Bunting,Plectrophenax nivalis/hyperboreus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, 27768.75,species,rottan2,Rosy Thrush-Tanager,Rhodinocichla rosea,Passeriformes,Rhodinocichlidae (Thrush-Tanager),Thrush-Tanager, 27769,species,ovenbi1,Ovenbird,Seiurus aurocapilla,Passeriformes,Parulidae (New World Warblers),Wood-Warblers, 27772,species,woewar1,Worm-eating Warbler,Helmitheros vermivorum,Passeriformes,Parulidae (New World Warblers),, 27773,species,louwat,Louisiana Waterthrush,Parkesia motacilla,Passeriformes,Parulidae (New World Warblers),, 27774,species,norwat,Northern Waterthrush,Parkesia noveboracensis,Passeriformes,Parulidae (New World Warblers),, 27775,slash,y00598,Louisiana/Northern Waterthrush,Parkesia motacilla/noveboracensis,Passeriformes,Parulidae (New World Warblers),, 27776,species,bacwar,Bachman's Warbler,Vermivora bachmanii,Passeriformes,Parulidae (New World Warblers),, 27776.5,species,gowwar,Golden-winged Warbler,Vermivora chrysoptera,Passeriformes,Parulidae (New World Warblers),, 27777,species,buwwar,Blue-winged Warbler,Vermivora cyanoptera,Passeriformes,Parulidae (New World Warblers),, 27781.1,hybrid,x00669,Golden-winged x Blue-winged Warbler (hybrid),Vermivora chrysoptera x cyanoptera,Passeriformes,Parulidae (New World Warblers),, 27781.2,hybrid,brewar,Brewster's Warbler (hybrid),Vermivora chrysoptera x cyanoptera (F1 hybrid),Passeriformes,Parulidae (New World Warblers),, 27781.4,hybrid,lawwar,Lawrence's Warbler (hybrid),Vermivora chrysoptera x cyanoptera (F2 backcross),Passeriformes,Parulidae (New World Warblers),, 27781.5,slash,y00665,Golden-winged/Blue-winged Warbler,Vermivora chrysoptera/cyanoptera,Passeriformes,Parulidae (New World Warblers),, 27782,species,bawwar,Black-and-white Warbler,Mniotilta varia,Passeriformes,Parulidae (New World Warblers),, 27783,species,prowar,Prothonotary Warbler,Protonotaria citrea,Passeriformes,Parulidae (New World Warblers),, 27784,species,swawar,Swainson's Warbler,Limnothlypis swainsonii,Passeriformes,Parulidae (New World Warblers),, 27785,species,crcwar,Crescent-chested Warbler,Oreothlypis superciliosa,Passeriformes,Parulidae (New World Warblers),, 27791,species,fltwar1,Flame-throated Warbler,Oreothlypis gutturalis,Passeriformes,Parulidae (New World Warblers),, 27792,species,tenwar,Tennessee Warbler,Oreothlypis peregrina,Passeriformes,Parulidae (New World Warblers),, 27793,species,orcwar,Orange-crowned Warbler,Oreothlypis celata,Passeriformes,Parulidae (New World Warblers),, 27793.5,form,orcwar5,Orange-crowned Warbler (Gray-headed),Oreothlypis celata celata/orestera,Passeriformes,Parulidae (New World Warblers),,orcwar 27794,issf,orcwar1,Orange-crowned Warbler (celata),Oreothlypis celata celata,Passeriformes,Parulidae (New World Warblers),,orcwar 27795,issf,orcwar2,Orange-crowned Warbler (orestera),Oreothlypis celata orestera,Passeriformes,Parulidae (New World Warblers),,orcwar 27796,issf,orcwar3,Orange-crowned Warbler (lutescens),Oreothlypis celata lutescens,Passeriformes,Parulidae (New World Warblers),,orcwar 27797,issf,orcwar4,Orange-crowned Warbler (sordida),Oreothlypis celata sordida,Passeriformes,Parulidae (New World Warblers),,orcwar 27798,species,colwar,Colima Warbler,Oreothlypis crissalis,Passeriformes,Parulidae (New World Warblers),, 27800,species,lucwar,Lucy's Warbler,Oreothlypis luciae,Passeriformes,Parulidae (New World Warblers),, 27801,species,naswar,Nashville Warbler,Oreothlypis ruficapilla,Passeriformes,Parulidae (New World Warblers),, 27802,issf,naswar1,Nashville Warbler (ruficapilla),Oreothlypis ruficapilla ruficapilla,Passeriformes,Parulidae (New World Warblers),,naswar 27803,issf,naswar2,Nashville Warbler (ridgwayi),Oreothlypis ruficapilla ridgwayi,Passeriformes,Parulidae (New World Warblers),,naswar 27803.2,hybrid,x00819,Orange-crowned x Nashville Warbler (hybrid),Oreothlypis celata x ruficapilla,Passeriformes,Parulidae (New World Warblers),, 27804,species,virwar,Virginia's Warbler,Oreothlypis virginiae,Passeriformes,Parulidae (New World Warblers),, 27804.5,hybrid,x00638,Colima x Virginia's Warbler (hybrid),Oreothlypis crissalis x virginiae,Passeriformes,Parulidae (New World Warblers),, 27805,spuh,vermiv1,Oreothlypis sp.,Oreothlypis sp.,Passeriformes,Parulidae (New World Warblers),, 27806,species,semwar1,Semper's Warbler,Leucopeza semperi,Passeriformes,Parulidae (New World Warblers),, 27807,species,conwar,Connecticut Warbler,Oporornis agilis,Passeriformes,Parulidae (New World Warblers),, 27808,species,gycyel,Gray-crowned Yellowthroat,Geothlypis poliocephala,Passeriformes,Parulidae (New World Warblers),, 27815,species,masyel1,Masked Yellowthroat,Geothlypis aequinoctialis,Passeriformes,Parulidae (New World Warblers),, 27816,issf,masyel2,Masked Yellowthroat (Masked),Geothlypis aequinoctialis aequinoctialis,Passeriformes,Parulidae (New World Warblers),,masyel1 27817,issf,masyel4,Masked Yellowthroat (Black-lored),Geothlypis aequinoctialis auricularis/peruviana,Passeriformes,Parulidae (New World Warblers),,masyel1 27820,issf,masyel5,Masked Yellowthroat (Southern),Geothlypis aequinoctialis velata,Passeriformes,Parulidae (New World Warblers),,masyel1 27821,issf,masyel3,Masked Yellowthroat (Chiriqui),Geothlypis aequinoctialis chiriquensis,Passeriformes,Parulidae (New World Warblers),,masyel1 27822,species,macwar,MacGillivray's Warbler,Geothlypis tolmiei,Passeriformes,Parulidae (New World Warblers),, 27824,species,mouwar,Mourning Warbler,Geothlypis philadelphia,Passeriformes,Parulidae (New World Warblers),, 27824.1,hybrid,x00746,Connecticut x Mourning Warbler (hybrid),Oporornis agilis x Geothlypis philadelphia,Passeriformes,Parulidae (New World Warblers),, 27824.2,hybrid,x00699,MacGillivray's x Mourning Warbler (hybrid),Geothlypis tolmiei x philadelphia,Passeriformes,Parulidae (New World Warblers),, 27824.3,slash,oporor1,Connecticut/MacGillivray's/Mourning Warbler,Oporornis/Geothlypis sp. (Mourning-type),Passeriformes,Parulidae (New World Warblers),, 27824.4,slash,y00628,MacGillivray's/Mourning Warbler,Geothlypis tolmiei/philadelphia,Passeriformes,Parulidae (New World Warblers),, 27825,species,kenwar,Kentucky Warbler,Geothlypis formosa,Passeriformes,Parulidae (New World Warblers),, 27825.5,hybrid,x00747,Mourning x Kentucky Warbler (hybrid),Geothlypis philadelphia x formosa,Passeriformes,Parulidae (New World Warblers),, 27826,species,olcyel1,Olive-crowned Yellowthroat,Geothlypis semiflava,Passeriformes,Parulidae (New World Warblers),, 27826.2,issf,olcyel2,Olive-crowned Yellowthroat (Baird's),Geothlypis semiflava bairdi,Passeriformes,Parulidae (New World Warblers),,olcyel1 27826.4,issf,olcyel3,Olive-crowned Yellowthroat (Olive-crowned),Geothlypis semiflava semiflava,Passeriformes,Parulidae (New World Warblers),,olcyel1 27829,species,blpyel1,Black-polled Yellowthroat,Geothlypis speciosa,Passeriformes,Parulidae (New World Warblers),, 27830,species,belyel1,Belding's Yellowthroat,Geothlypis beldingi,Passeriformes,Parulidae (New World Warblers),, 27833,species,bahyel1,Bahama Yellowthroat,Geothlypis rostrata,Passeriformes,Parulidae (New World Warblers),, 27837,species,altyel1,Altamira Yellowthroat,Geothlypis flavovelata,Passeriformes,Parulidae (New World Warblers),, 27838,species,comyel,Common Yellowthroat,Geothlypis trichas,Passeriformes,Parulidae (New World Warblers),, 27838.5,issf,comyel1,Common Yellowthroat (arizela Group),Geothlypis trichas [arizela Group],Passeriformes,Parulidae (New World Warblers),,comyel 27842,issf,comyel2,Common Yellowthroat (melanops Group),Geothlypis trichas [melanops Group],Passeriformes,Parulidae (New World Warblers),,comyel 27848,issf,comyel3,Common Yellowthroat (trichas Group),Geothlypis trichas [trichas Group],Passeriformes,Parulidae (New World Warblers),,comyel 27850.5,issf,comyel5,Common Yellowthroat (insperata),Geothlypis trichas insperata,Passeriformes,Parulidae (New World Warblers),,comyel 27851,issf,comyel4,Common Yellowthroat (chapalensis),Geothlypis trichas chapalensis,Passeriformes,Parulidae (New World Warblers),,comyel 27851.2,hybrid,x00748,Gray-crowned x Common Yellowthroat (hybrid),Geothlypis poliocephala x trichas,Passeriformes,Parulidae (New World Warblers),, 27851.4,hybrid,x00749,Mourning Warbler x Common Yellowthroat (hybrid),Geothlypis philadelphia x trichas,Passeriformes,Parulidae (New World Warblers),, 27851.5,hybrid,x00700,MacGillivray's Warbler x Common Yellowthroat (hybrid),Geothlypis tolmiei x trichas,Passeriformes,Parulidae (New World Warblers),, 27852,species,hooyel1,Hooded Yellowthroat,Geothlypis nelsoni,Passeriformes,Parulidae (New World Warblers),, 27852.2,spuh,yellow7,yellowthroat sp.,Geothlypis sp. (yellowthroat sp.),Passeriformes,Parulidae (New World Warblers),, 27856,species,whiwar1,Whistling Warbler,Catharopeza bishopi,Passeriformes,Parulidae (New World Warblers),, 27857,species,pluwar1,Plumbeous Warbler,Setophaga plumbea,Passeriformes,Parulidae (New World Warblers),, 27858,species,elwwar1,Elfin-woods Warbler,Setophaga angelae,Passeriformes,Parulidae (New World Warblers),, 27859,species,arrwar1,Arrowhead Warbler,Setophaga pharetra,Passeriformes,Parulidae (New World Warblers),, 27860,species,hoowar,Hooded Warbler,Setophaga citrina,Passeriformes,Parulidae (New World Warblers),, 27861,species,amered,American Redstart,Setophaga ruticilla,Passeriformes,Parulidae (New World Warblers),, 27862,species,kirwar,Kirtland's Warbler,Setophaga kirtlandii,Passeriformes,Parulidae (New World Warblers),, 27863,species,camwar,Cape May Warbler,Setophaga tigrina,Passeriformes,Parulidae (New World Warblers),, 27864,species,cerwar,Cerulean Warbler,Setophaga cerulea,Passeriformes,Parulidae (New World Warblers),, 27865,species,norpar,Northern Parula,Setophaga americana,Passeriformes,Parulidae (New World Warblers),, 27865.3,hybrid,x00750,American Redstart x Northern Parula (hybrid),Setophaga ruticilla x americana,Passeriformes,Parulidae (New World Warblers),, 27865.5,hybrid,x00711,Cerulean Warbler x Northern Parula (hybrid),Setophaga cerulea x americana,Passeriformes,Parulidae (New World Warblers),, 27868,species,tropar,Tropical Parula,Setophaga pitiayumi,Passeriformes,Parulidae (New World Warblers),, 27869,issf,tropar1,Tropical Parula (Northeast Mexico),Setophaga pitiayumi nigrilora,Passeriformes,Parulidae (New World Warblers),,tropar 27870,issf,tropar2,Tropical Parula (West Mexico),Setophaga pitiayumi pulchra,Passeriformes,Parulidae (New World Warblers),,tropar 27871,issf,tropar3,Tropical Parula (Tres Marias Is.),Setophaga pitiayumi insularis,Passeriformes,Parulidae (New World Warblers),,tropar 27872,issf,tropar4,Tropical Parula (Socorro I.),Setophaga pitiayumi graysoni,Passeriformes,Parulidae (New World Warblers),,tropar 27873,issf,tropar5,Tropical Parula (South Mexico and Guatemala),Setophaga pitiayumi inornata,Passeriformes,Parulidae (New World Warblers),,tropar 27873.5,issf,tropar6,Tropical Parula (Central American),Setophaga pitiayumi speciosa,Passeriformes,Parulidae (New World Warblers),,tropar 27874,issf,tropar7,Tropical Parula (Coiba I.),Setophaga pitiayumi cirrha,Passeriformes,Parulidae (New World Warblers),,tropar 27875,issf,tropar8,Tropical Parula (Eastern Panama),Setophaga pitiayumi nana,Passeriformes,Parulidae (New World Warblers),,tropar 27881.5,hybrid,x00203,Northern x Tropical Parula (hybrid),Setophaga americana x pitiayumi,Passeriformes,Parulidae (New World Warblers),, 27881.6,slash,y00827,Northern/Tropical Parula,Setophaga americana/pitiayumi,Passeriformes,Parulidae (New World Warblers),, 27882,species,magwar,Magnolia Warbler,Setophaga magnolia,Passeriformes,Parulidae (New World Warblers),, 27882.2,hybrid,x00820,Nashville x Magnolia Warbler (hybrid),Oreothlypis ruficapilla x Setophaga magnolia,Passeriformes,Parulidae (New World Warblers),, 27883,species,babwar,Bay-breasted Warbler,Setophaga castanea,Passeriformes,Parulidae (New World Warblers),, 27884,species,bkbwar,Blackburnian Warbler,Setophaga fusca,Passeriformes,Parulidae (New World Warblers),, 27884.2,hybrid,x00821,Bay-breasted x Blackburnian Warbler (hybrid),Setophaga castanea x fusca,Passeriformes,Parulidae (New World Warblers),, 27885,species,yelwar,Yellow Warbler,Setophaga petechia,Passeriformes,Parulidae (New World Warblers),, 27886,issf,yelwar1,Yellow Warbler (Northern),Setophaga petechia [aestiva Group],Passeriformes,Parulidae (New World Warblers),,yelwar 27893,issf,maywar1,Yellow Warbler (Mangrove),Setophaga petechia [erithachorides Group],Passeriformes,Parulidae (New World Warblers),,yelwar 27905,issf,yelwar3,Yellow Warbler (Galapagos),Setophaga petechia aureola,Passeriformes,Parulidae (New World Warblers),,yelwar 27906,issf,yelwar2,Yellow Warbler (Golden),Setophaga petechia [petechia Group],Passeriformes,Parulidae (New World Warblers),,yelwar 27920,intergrade,yelwar4,Yellow Warbler (Mangrove x Golden),Setophaga petechia [erithachorides Group x petechia Group],Passeriformes,Parulidae (New World Warblers),,yelwar 27922.5,hybrid,x00701,Common Yellowthroat x Yellow Warbler (hybrid),Geothlypis trichas x Setophaga petechia,Passeriformes,Parulidae (New World Warblers),, 27922.7,hybrid,x00822,Hooded x Yellow Warbler (hybrid),Setophaga citrina x petechia,Passeriformes,Parulidae (New World Warblers),, 27923,species,chswar,Chestnut-sided Warbler,Setophaga pensylvanica,Passeriformes,Parulidae (New World Warblers),, 27923.5,hybrid,x00772,Magnolia x Chestnut-sided Warbler (hybrid),Setophaga magnolia x pensylvanica,Passeriformes,Parulidae (New World Warblers),, 27924,species,bkpwar,Blackpoll Warbler,Setophaga striata,Passeriformes,Parulidae (New World Warblers),, 27924.2,hybrid,x00894,Bay-breasted x Blackpoll Warbler (hybrid),Setophaga castanea x striata,Passeriformes,Parulidae (New World Warblers),, 27925,slash,y00627,Bay-breasted/Blackpoll Warbler,Setophaga castanea/striata,Passeriformes,Parulidae (New World Warblers),, 27926,species,btbwar,Black-throated Blue Warbler,Setophaga caerulescens,Passeriformes,Parulidae (New World Warblers),, 27929,species,palwar,Palm Warbler,Setophaga palmarum,Passeriformes,Parulidae (New World Warblers),, 27930,issf,palwar3,Palm Warbler (Western),Setophaga palmarum palmarum,Passeriformes,Parulidae (New World Warblers),,palwar 27931,issf,palwar4,Palm Warbler (Yellow),Setophaga palmarum hypochrysea,Passeriformes,Parulidae (New World Warblers),,palwar 27932,species,olcwar1,Olive-capped Warbler,Setophaga pityophila,Passeriformes,Parulidae (New World Warblers),, 27933,species,pinwar,Pine Warbler,Setophaga pinus,Passeriformes,Parulidae (New World Warblers),, 27938,species,yerwar,Yellow-rumped Warbler,Setophaga coronata,Passeriformes,Parulidae (New World Warblers),, 27939,issf,myrwar,Yellow-rumped Warbler (Myrtle),Setophaga coronata coronata,Passeriformes,Parulidae (New World Warblers),,yerwar 27941,issf,audwar,Yellow-rumped Warbler (Audubon's),Setophaga coronata auduboni,Passeriformes,Parulidae (New World Warblers),,yerwar 27941.5,intergrade,yerwar3,Yellow-rumped Warbler (Myrtle x Audubon's),Setophaga coronata coronata x auduboni,Passeriformes,Parulidae (New World Warblers),,yerwar 27942,issf,yerwar1,Yellow-rumped Warbler (West Mexico),Setophaga coronata nigrifrons,Passeriformes,Parulidae (New World Warblers),,yerwar 27943,issf,yerwar2,Yellow-rumped Warbler (Goldman's),Setophaga coronata goldmani,Passeriformes,Parulidae (New World Warblers),,yerwar 27943.3,hybrid,x00773,Magnolia x Yellow-rumped Warbler (hybrid),Setophaga magnolia x coronata,Passeriformes,Parulidae (New World Warblers),, 27943.5,hybrid,x00461,Palm x Yellow-rumped Warbler (hybrid),Setophaga palmarum x coronata,Passeriformes,Parulidae (New World Warblers),, 27946,species,yetwar,Yellow-throated Warbler,Setophaga dominica,Passeriformes,Parulidae (New World Warblers),, 27947,issf,yetwar1,Yellow-throated Warbler (albilora),Setophaga dominica albilora,Passeriformes,Parulidae (New World Warblers),,yetwar 27948,issf,yetwar2,Yellow-throated Warbler (dominica/stoddardi),Setophaga dominica dominica/stoddardi,Passeriformes,Parulidae (New World Warblers),,yetwar 27950.5,hybrid,sutwar,Sutton's Warbler (hybrid),Setophaga americana x dominica,Passeriformes,Parulidae (New World Warblers),, 27951,species,yetwar3,Bahama Warbler,Setophaga flavescens,Passeriformes,Parulidae (New World Warblers),, 27952,species,vitwar1,Vitelline Warbler,Setophaga vitellina,Passeriformes,Parulidae (New World Warblers),, 27956,species,prawar,Prairie Warbler,Setophaga discolor,Passeriformes,Parulidae (New World Warblers),, 27958.5,hybrid,x00719,Blue-winged x Prairie Warbler (hybrid),Vermivora cyanoptera x Setophaga discolor,Passeriformes,Parulidae (New World Warblers),, 27958.6,hybrid,x00866,Yellow x Prairie Warbler (hybrid),Setophaga petechia x discolor,Passeriformes,Parulidae (New World Warblers),, 27959,species,adewar1,Adelaide's Warbler,Setophaga adelaidae,Passeriformes,Parulidae (New World Warblers),, 27960,species,barwar,Barbuda Warbler,Setophaga subita,Passeriformes,Parulidae (New World Warblers),, 27961,species,stlwar,St. Lucia Warbler,Setophaga delicata,Passeriformes,Parulidae (New World Warblers),, 27962,species,grawar,Grace's Warbler,Setophaga graciae,Passeriformes,Parulidae (New World Warblers),, 27968,species,btywar,Black-throated Gray Warbler,Setophaga nigrescens,Passeriformes,Parulidae (New World Warblers),, 27968.2,hybrid,x00895,Yellow-rumped x Black-throated Gray Warbler (hybrid),Setophaga coronata x nigrescens,Passeriformes,Parulidae (New World Warblers),, 27970.5,hybrid,x00639,Grace's x Black-throated Gray Warbler (hybrid),Setophaga graciae x nigrescens,Passeriformes,Parulidae (New World Warblers),, 27971,species,towwar,Townsend's Warbler,Setophaga townsendi,Passeriformes,Parulidae (New World Warblers),, 27972,hybrid,x00624,Yellow-rumped x Townsend's Warbler (hybrid),Setophaga coronata x townsendi,Passeriformes,Parulidae (New World Warblers),, 27972.3,hybrid,x00867,Black-throated Gray x Townsend's Warbler (hybrid),Setophaga nigrescens x townsendi,Passeriformes,Parulidae (New World Warblers),, 27972.6,slash,y01014,Black-throated Gray/Townsend's Warbler,Setophaga nigrescens/townsendi,Passeriformes,Parulidae (New World Warblers),, 27973,species,herwar,Hermit Warbler,Setophaga occidentalis,Passeriformes,Parulidae (New World Warblers),, 27973.5,hybrid,x00059,Townsend's x Hermit Warbler (hybrid),Setophaga townsendi x occidentalis,Passeriformes,Parulidae (New World Warblers),, 27974,slash,y00605,Black-throated Gray/Hermit Warbler,Setophaga nigrescens/occidentalis,Passeriformes,Parulidae (New World Warblers),, 27975,slash,y00645,Townsend's/Hermit Warbler,Setophaga townsendi/occidentalis,Passeriformes,Parulidae (New World Warblers),, 27976,species,gchwar,Golden-cheeked Warbler,Setophaga chrysoparia,Passeriformes,Parulidae (New World Warblers),, 27977,species,btnwar,Black-throated Green Warbler,Setophaga virens,Passeriformes,Parulidae (New World Warblers),, 27977.5,hybrid,x00664,Townsend's x Black-throated Green Warbler (hybrid),Setophaga townsendi x virens,Passeriformes,Parulidae (New World Warblers),, 27978,spuh,dendro3,Setophaga sp.,Setophaga sp.,Passeriformes,Parulidae (New World Warblers),, 27979,species,fatwar,Fan-tailed Warbler,Basileuterus lachrymosus,Passeriformes,Parulidae (New World Warblers),, 27980,species,rucwar,Rufous-capped Warbler,Basileuterus rufifrons,Passeriformes,Parulidae (New World Warblers),, 27981,issf,rucwar2,Rufous-capped Warbler (rufifrons Group),Basileuterus rufifrons [rufifrons Group],Passeriformes,Parulidae (New World Warblers),,rucwar 27986,issf,rucwar3,Rufous-capped Warbler (salvini),Basileuterus rufifrons salvini,Passeriformes,Parulidae (New World Warblers),,rucwar 27987,issf,rucwar4,Rufous-capped Warbler (Chestnut-capped),Basileuterus rufifrons [delattrii Group],Passeriformes,Parulidae (New World Warblers),,rucwar 27990.5,hybrid,x00751,Common Yellowthroat x Rufous-capped Warbler (hybrid),Geothlypis trichas x Basileuterus rufifrons,Passeriformes,Parulidae (New World Warblers),, 27991,species,blcwar1,Black-cheeked Warbler,Basileuterus melanogenys,Passeriformes,Parulidae (New World Warblers),, 27995,species,pirwar1,Pirre Warbler,Basileuterus ignotus,Passeriformes,Parulidae (New World Warblers),, 27996,species,gobwar1,Golden-browed Warbler,Basileuterus belli,Passeriformes,Parulidae (New World Warblers),, 28002,species,gcrwar,Golden-crowned Warbler,Basileuterus culicivorus,Passeriformes,Parulidae (New World Warblers),, 28003,issf,gocwar1,Golden-crowned Warbler (Stripe-crowned),Basileuterus culicivorus [culicivorus Group],Passeriformes,Parulidae (New World Warblers),,gcrwar 28008,issf,gocwar3,Golden-crowned Warbler (Cabanis's),Basileuterus culicivorus [cabanisi Group],Passeriformes,Parulidae (New World Warblers),,gcrwar 28013,issf,gocwar2,Golden-crowned Warbler (Golden-crowned),Basileuterus culicivorus [auricapilla Group],Passeriformes,Parulidae (New World Warblers),,gcrwar 28019,issf,whbwar1,Golden-crowned Warbler (White-bellied),Basileuterus culicivorus hypoleucus,Passeriformes,Parulidae (New World Warblers),,gcrwar 28021,species,thswar5,Costa Rican Warbler,Basileuterus melanotis,Passeriformes,Parulidae (New World Warblers),, 28022,species,thswar9,Tacarcuna Warbler,Basileuterus tacarcunae,Passeriformes,Parulidae (New World Warblers),, 28022.3,species,thswar1,Three-striped Warbler,Basileuterus tristriatus,Passeriformes,Parulidae (New World Warblers),, 28022.5,issf,thswar3,Three-striped Warbler (San Lucas) (undescribed form),Basileuterus tristriatus sanlucasensis,Passeriformes,Parulidae (New World Warblers),,thswar1 28023,issf,thswar6,Three-striped Warbler (daedalus),Basileuterus tristriatus daedalus,Passeriformes,Parulidae (New World Warblers),,thswar1 28024,issf,thswar4,Three-striped Warbler (auricularis),Basileuterus tristriatus auricularis,Passeriformes,Parulidae (New World Warblers),,thswar1 28024.5,issf,thswar7,Three-striped Warbler (Venezuelan),Basileuterus tristriatus meridanus/bessereri,Passeriformes,Parulidae (New World Warblers),,thswar1 28027,issf,thswar8,Three-striped Warbler (Paria),Basileuterus tristriatus pariae,Passeriformes,Parulidae (New World Warblers),,thswar1 28027.5,issf,thswar10,Three-striped Warbler (Three-striped),Basileuterus tristriatus tristriatus/baezae,Passeriformes,Parulidae (New World Warblers),,thswar1 28029.5,issf,thswar2,Three-striped Warbler (Bolivian),Basileuterus tristriatus [punctipectus Group],Passeriformes,Parulidae (New World Warblers),,thswar1 28034,species,thbwar2,Three-banded Warbler,Basileuterus trifasciatus,Passeriformes,Parulidae (New World Warblers),, 28036.5,species,gyhwar1,Gray-headed Warbler,Basileuterus griseiceps,Passeriformes,Parulidae (New World Warblers),, 28037,spuh,basile1,Basileuterus sp.,Basileuterus sp.,Passeriformes,Parulidae (New World Warblers),, 28037.5,species,samwar1,Santa Marta Warbler,Myiothlypis basilica,Passeriformes,Parulidae (New World Warblers),, 28038,species,citwar1,Citrine Warbler,Myiothlypis luteoviridis,Passeriformes,Parulidae (New World Warblers),, 28038.2,issf,citwar2,Citrine Warbler (Northern),Myiothlypis luteoviridis [luteoviridis Group],Passeriformes,Parulidae (New World Warblers),,citwar1 28038.4,issf,citwar3,Citrine Warbler (Peruvian),Myiothlypis luteoviridis striaticeps,Passeriformes,Parulidae (New World Warblers),,citwar1 28038.6,issf,citwar4,Citrine Warbler (Bolivian),Myiothlypis luteoviridis euophrys,Passeriformes,Parulidae (New World Warblers),,citwar1 28044,species,whswar2,White-striped Warbler,Myiothlypis leucophrys,Passeriformes,Parulidae (New World Warblers),, 28045,species,flawar1,Flavescent Warbler,Myiothlypis flaveola,Passeriformes,Parulidae (New World Warblers),, 28048,species,whbwar2,White-browed Warbler,Myiothlypis leucoblephara,Passeriformes,Parulidae (New World Warblers),, 28049,species,palwar1,Pale-legged Warbler,Myiothlypis signata,Passeriformes,Parulidae (New World Warblers),, 28052,species,blcwar2,Black-crested Warbler,Myiothlypis nigrocristata,Passeriformes,Parulidae (New World Warblers),, 28053,species,burwar1,Buff-rumped Warbler,Myiothlypis fulvicauda,Passeriformes,Parulidae (New World Warblers),, 28060,species,rivwar1,Riverbank Warbler,Myiothlypis rivularis,Passeriformes,Parulidae (New World Warblers),, 28061,issf,rivwar2,Riverbank Warbler (mesoleuca),Myiothlypis rivularis mesoleuca,Passeriformes,Parulidae (New World Warblers),,rivwar1 28062,issf,rivwar3,Riverbank Warbler (rivularis/boliviana),Myiothlypis rivularis rivularis/boliviana,Passeriformes,Parulidae (New World Warblers),,rivwar1 28065,species,twbwar1,Two-banded Warbler,Myiothlypis bivittata,Passeriformes,Parulidae (New World Warblers),, 28065.2,issf,twbwar2,Two-banded Warbler (Roraiman),Myiothlypis bivittata roraimae,Passeriformes,Parulidae (New World Warblers),,twbwar1 28065.4,issf,twbwar3,Two-banded Warbler (Two-banded),Myiothlypis bivittata bivittata/argentinae,Passeriformes,Parulidae (New World Warblers),,twbwar1 28069,species,gobwar2,Golden-bellied Warbler,Myiothlypis chrysogaster,Passeriformes,Parulidae (New World Warblers),, 28070,issf,gobwar3,Golden-bellied Warbler (Golden-bellied),Myiothlypis chrysogaster chrysogaster,Passeriformes,Parulidae (New World Warblers),,gobwar2 28071,issf,gobwar4,Golden-bellied Warbler (Choco),Myiothlypis chrysogaster chlorophrys,Passeriformes,Parulidae (New World Warblers),,gobwar2 28073,species,gytwar1,Gray-throated Warbler,Myiothlypis cinereicollis,Passeriformes,Parulidae (New World Warblers),, 28077,species,whlwar1,White-lored Warbler,Myiothlypis conspicillata,Passeriformes,Parulidae (New World Warblers),, 28078,species,gagwar2,Gray-and-gold Warbler,Myiothlypis fraseri,Passeriformes,Parulidae (New World Warblers),, 28081,species,rucwar1,Russet-crowned Warbler,Myiothlypis coronata,Passeriformes,Parulidae (New World Warblers),, 28089.5,spuh,myioth1,Myiothlypis sp.,Myiothlypis sp.,Passeriformes,Parulidae (New World Warblers),, 28090,species,canwar,Canada Warbler,Cardellina canadensis,Passeriformes,Parulidae (New World Warblers),, 28091,species,wlswar,Wilson's Warbler,Cardellina pusilla,Passeriformes,Parulidae (New World Warblers),, 28092,issf,wilwar1,Wilson's Warbler (pileolata),Cardellina pusilla pileolata,Passeriformes,Parulidae (New World Warblers),,wlswar 28093,issf,wilwar2,Wilson's Warbler (pusilla),Cardellina pusilla pusilla,Passeriformes,Parulidae (New World Warblers),,wlswar 28094,issf,wilwar3,Wilson's Warbler (chryseola),Cardellina pusilla chryseola,Passeriformes,Parulidae (New World Warblers),,wlswar 28095,species,refwar,Red-faced Warbler,Cardellina rubrifrons,Passeriformes,Parulidae (New World Warblers),, 28096,species,redwar1,Red Warbler,Cardellina rubra,Passeriformes,Parulidae (New World Warblers),, 28097,issf,redwar2,Red Warbler (Gray-cheeked),Cardellina rubra melanauris,Passeriformes,Parulidae (New World Warblers),,redwar1 28098,issf,redwar3,Red Warbler (White-cheeked),Cardellina rubra rubra/rowleyi,Passeriformes,Parulidae (New World Warblers),,redwar1 28100,species,pihwar1,Pink-headed Warbler,Cardellina versicolor,Passeriformes,Parulidae (New World Warblers),, 28101,species,paired,Painted Redstart,Myioborus pictus,Passeriformes,Parulidae (New World Warblers),, 28104,species,sltred,Slate-throated Redstart,Myioborus miniatus,Passeriformes,Parulidae (New World Warblers),, 28104.2,hybrid,x00896,Painted x Slate-throated Redstart (hybrid),Myioborus pictus x miniatus,Passeriformes,Parulidae (New World Warblers),, 28117,species,brcred1,Brown-capped Redstart,Myioborus brunniceps,Passeriformes,Parulidae (New World Warblers),, 28118,species,tepred1,Tepui Redstart,Myioborus castaneocapilla,Passeriformes,Parulidae (New World Warblers),, 28122,species,parred1,Paria Redstart,Myioborus pariae,Passeriformes,Parulidae (New World Warblers),, 28123,species,sabred1,Saffron-breasted Redstart,Myioborus cardonai,Passeriformes,Parulidae (New World Warblers),, 28124,species,whfred1,White-faced Redstart,Myioborus albifacies,Passeriformes,Parulidae (New World Warblers),, 28125,species,colred1,Collared Redstart,Myioborus torquatus,Passeriformes,Parulidae (New World Warblers),, 28126,species,yecred1,Yellow-crowned Redstart,Myioborus flavivertex,Passeriformes,Parulidae (New World Warblers),, 28127,species,gofred1,Golden-fronted Redstart,Myioborus ornatus,Passeriformes,Parulidae (New World Warblers),, 28127.2,issf,gofred2,Golden-fronted Redstart (Golden-fronted),Myioborus ornatus chrysops,Passeriformes,Parulidae (New World Warblers),,gofred1 28127.4,issf,gofred3,Golden-fronted Redstart (Yellow-fronted),Myioborus ornatus ornatus,Passeriformes,Parulidae (New World Warblers),,gofred1 28130,species,spered1,Spectacled Redstart,Myioborus melanocephalus,Passeriformes,Parulidae (New World Warblers),, 28135.5,hybrid,x00868,Golden-fronted x Spectacled Redstart (hybrid),Myioborus ornatus x melanocephalus,Passeriformes,Parulidae (New World Warblers),, 28136,species,whfred2,White-fronted Redstart,Myioborus albifrons,Passeriformes,Parulidae (New World Warblers),, 28136.5,spuh,myiobo1,Myioborus sp.,Myioborus sp.,Passeriformes,Parulidae (New World Warblers),, 28149,spuh,warble,warbler sp. (Parulidae sp.),Parulidae sp.,Passeriformes,Parulidae (New World Warblers),, 28193,species,brotan1,Brown Tanager,Orchesticus abeillei,Passeriformes,Thraupidae (Tanagers and Allies),Tanagers and Allies, 28193.1,species,reccar,Red-crested Cardinal,Paroaria coronata,Passeriformes,Thraupidae (Tanagers and Allies),, 28193.2,species,reccar2,Red-cowled Cardinal,Paroaria dominicana,Passeriformes,Thraupidae (Tanagers and Allies),, 28193.3,species,reccar3,Masked Cardinal,Paroaria nigrogenis,Passeriformes,Thraupidae (Tanagers and Allies),, 28193.4,species,reccar4,Red-capped Cardinal,Paroaria gularis,Passeriformes,Thraupidae (Tanagers and Allies),, 28193.43,issf,reccar5,Red-capped Cardinal (Red-capped),Paroaria gularis gularis,Passeriformes,Thraupidae (Tanagers and Allies),,reccar4 28193.46,issf,reccar6,Red-capped Cardinal (Bolivian),Paroaria gularis cervicalis,Passeriformes,Thraupidae (Tanagers and Allies),,reccar4 28193.5,slash,reccar1,Masked/Red-capped Cardinal,Paroaria nigrogenis/gularis,Passeriformes,Thraupidae (Tanagers and Allies),, 28193.75,species,crfcar1,Crimson-fronted Cardinal,Paroaria baeri,Passeriformes,Thraupidae (Tanagers and Allies),, 28193.8,issf,crfcar2,Crimson-fronted Cardinal (Araguaia),Paroaria baeri baeri,Passeriformes,Thraupidae (Tanagers and Allies),,crfcar1 28193.85,issf,crfcar3,Crimson-fronted Cardinal (Xingu),Paroaria baeri xinguensis,Passeriformes,Thraupidae (Tanagers and Allies),,crfcar1 28193.86,hybrid,x00897,Red-capped x Crimson-fronted Cardinal (hybrid),Paroaria gularis x baeri,Passeriformes,Thraupidae (Tanagers and Allies),, 28193.9,species,yebcar,Yellow-billed Cardinal,Paroaria capitata,Passeriformes,Thraupidae (Tanagers and Allies),, 28194,species,blftan1,Black-faced Tanager,Schistochlamys melanopis,Passeriformes,Thraupidae (Tanagers and Allies),, 28200,species,cintan1,Cinnamon Tanager,Schistochlamys ruficapillus,Passeriformes,Thraupidae (Tanagers and Allies),, 28204,species,magtan2,Magpie Tanager,Cissopis leverianus,Passeriformes,Thraupidae (Tanagers and Allies),, 28207,species,whbtan1,White-banded Tanager,Neothraupis fasciata,Passeriformes,Thraupidae (Tanagers and Allies),, 28208,species,bawtan1,Black-and-white Tanager,Conothraupis speculigera,Passeriformes,Thraupidae (Tanagers and Allies),, 28209,species,cobtan2,Cone-billed Tanager,Conothraupis mesoleuca,Passeriformes,Thraupidae (Tanagers and Allies),, 28210,species,rbptan1,Red-billed Pied Tanager,Lamprospiza melanoleuca,Passeriformes,Thraupidae (Tanagers and Allies),, 28211,species,scttan1,Scarlet-throated Tanager,Compsothraupis loricata,Passeriformes,Thraupidae (Tanagers and Allies),, 28212,species,whctan1,White-capped Tanager,Sericossypha albocristata,Passeriformes,Thraupidae (Tanagers and Allies),, 28213,species,hootan1,Hooded Tanager,Nemosia pileata,Passeriformes,Thraupidae (Tanagers and Allies),, 28220,species,chttan1,Cherry-throated Tanager,Nemosia rourei,Passeriformes,Thraupidae (Tanagers and Allies),, 28221,species,ructan4,Rufous-crested Tanager,Creurgops verticalis,Passeriformes,Thraupidae (Tanagers and Allies),, 28222,species,slatan2,Slaty Tanager,Creurgops dentatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28223,species,olgtan1,Olive-green Tanager,Orthogonys chloricterus,Passeriformes,Thraupidae (Tanagers and Allies),, 28224,species,blchem1,Black-capped Hemispingus,Kleinothraupis atropileus,Passeriformes,Thraupidae (Tanagers and Allies),, 28225,issf,bkchem1,Black-capped Hemispingus (Black-capped),Kleinothraupis atropileus atropileus,Passeriformes,Thraupidae (Tanagers and Allies),,blchem1 28226,issf,bkchem2,Black-capped Hemispingus (White-browed),Kleinothraupis atropileus auricularis,Passeriformes,Thraupidae (Tanagers and Allies),,blchem1 28227,species,orbhem1,Orange-browed Hemispingus,Kleinothraupis calophrys,Passeriformes,Thraupidae (Tanagers and Allies),, 28228,species,parhem1,Parodi's Hemispingus,Kleinothraupis parodii,Passeriformes,Thraupidae (Tanagers and Allies),, 28230,species,gychem1,Gray-capped Hemispingus,Kleinothraupis reyi,Passeriformes,Thraupidae (Tanagers and Allies),, 28231,species,olehem1,Oleaginous Hemispingus,Sphenopsis frontalis,Passeriformes,Thraupidae (Tanagers and Allies),, 28235,species,blehem1,Black-eared Hemispingus,Sphenopsis melanotis,Passeriformes,Thraupidae (Tanagers and Allies),, 28238,issf,bkehem2,Black-eared Hemispingus (Black-eared),Sphenopsis melanotis [melanotis Group],Passeriformes,Thraupidae (Tanagers and Allies),,blehem1 28239,issf,bkehem3,Black-eared Hemispingus (Western),Sphenopsis melanotis ochracea,Passeriformes,Thraupidae (Tanagers and Allies),,blehem1 28240,issf,bkehem1,Black-eared Hemispingus (Piura),Sphenopsis melanotis piurae/macrophrys,Passeriformes,Thraupidae (Tanagers and Allies),,blehem1 28246,species,orhtan1,Orange-headed Tanager,Thlypopsis sordida,Passeriformes,Thraupidae (Tanagers and Allies),, 28247,species,bubtan1,Buff-bellied Tanager,Thlypopsis inornata,Passeriformes,Thraupidae (Tanagers and Allies),, 28251,species,fuhtan1,Fulvous-headed Tanager,Thlypopsis fulviceps,Passeriformes,Thraupidae (Tanagers and Allies),, 28252,species,chhtan1,Chestnut-headed Tanager,Thlypopsis pyrrhocoma,Passeriformes,Thraupidae (Tanagers and Allies),, 28263,species,raytan1,Rust-and-yellow Tanager,Thlypopsis ruficeps,Passeriformes,Thraupidae (Tanagers and Allies),, 28263.5,species,suphem1,Superciliaried Hemispingus,Thlypopsis superciliaris,Passeriformes,Thraupidae (Tanagers and Allies),, 28268,issf,suphem5,Superciliaried Hemispingus (Yellow-browed),Thlypopsis superciliaris chrysophrys,Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 28272,issf,suphem2,Superciliaried Hemispingus (Superciliaried),Thlypopsis superciliaris [superciliaris Group],Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 28273,issf,suphem4,Superciliaried Hemispingus (White-bellied),Thlypopsis superciliaris leucogastra/insignis,Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 28277,issf,suphem3,Superciliaried Hemispingus (urubambae),Thlypopsis superciliaris urubambae,Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 28278,species,ructan3,Rufous-chested Tanager,Thlypopsis ornata,Passeriformes,Thraupidae (Tanagers and Allies),, 28278.5,species,brftan1,Brown-flanked Tanager,Thlypopsis pectoralis,Passeriformes,Thraupidae (Tanagers and Allies),, 28279,spuh,thlypo1,Thlypopsis sp.,Thlypopsis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.1,species,ptwfin1,Plain-tailed Warbling-Finch,Microspingus alticola,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.2,species,rbwfin2,Rusty-browed Warbling-Finch,Microspingus erythrophrys,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.3,species,rrwfin1,Buff-throated Warbling-Finch,Microspingus lateralis,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.4,species,gytwaf1,Gray-throated Warbling-Finch,Microspingus cabanisi,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.5,species,riwfin1,Ringed Warbling-Finch,Microspingus torquatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.6,issf,rinwaf1,Ringed Warbling-Finch (Ringed),Microspingus torquatus torquatus,Passeriformes,Thraupidae (Tanagers and Allies),,riwfin1 28279.7,issf,rinwaf2,Ringed Warbling-Finch (Black-breasted),Microspingus torquatus pectoralis,Passeriformes,Thraupidae (Tanagers and Allies),,riwfin1 28279.8,species,bcwfin2,Black-capped Warbling-Finch,Microspingus melanoleucus,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.9,species,ciwfin1,Cinereous Warbling-Finch,Microspingus cinereus,Passeriformes,Thraupidae (Tanagers and Allies),, 28279.95,species,thshem1,Three-striped Hemispingus,Microspingus trifasciatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28280,species,whrtan1,White-rumped Tanager,Cypsnagra hirundinacea,Passeriformes,Thraupidae (Tanagers and Allies),, 28283,species,pardus2,Pardusco,Nephelornis oneilli,Passeriformes,Thraupidae (Tanagers and Allies),, 28284,species,blgtan1,Black-goggled Tanager,Trichothraupis melanops,Passeriformes,Thraupidae (Tanagers and Allies),, 28285,species,grhtan1,Gray-headed Tanager,Eucometis penicillata,Passeriformes,Thraupidae (Tanagers and Allies),, 28286,issf,gyhtan1,Gray-headed Tanager (Gray-crested),Eucometis penicillata [spodocephalus Group],Passeriformes,Thraupidae (Tanagers and Allies),,grhtan1 28291,issf,gyhtan2,Gray-headed Tanager (Gray-headed),Eucometis penicillata [penicillata Group],Passeriformes,Thraupidae (Tanagers and Allies),,grhtan1 28295,form,saptan1,San Pedro Tanager (undescribed form),Thraupidae [undescribed form],Passeriformes,Thraupidae (Tanagers and Allies),, 28296,species,flctan1,Flame-crested Tanager,Tachyphonus cristatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28296.2,issf,flctan2,Flame-crested Tanager (Flame-crested),Tachyphonus cristatus [cristatus Group],Passeriformes,Thraupidae (Tanagers and Allies),,flctan1 28296.4,issf,flctan3,Flame-crested Tanager (Natterer's),Tachyphonus cristatus nattereri,Passeriformes,Thraupidae (Tanagers and Allies),,flctan1 28306,species,yectan1,Yellow-crested Tanager,Tachyphonus rufiventer,Passeriformes,Thraupidae (Tanagers and Allies),, 28307,species,fuctan1,Fulvous-crested Tanager,Tachyphonus surinamus,Passeriformes,Thraupidae (Tanagers and Allies),, 28307.2,slash,y00919,Flame-crested/Fulvous-crested Tanager,Tachyphonus cristatus/surinamus,Passeriformes,Thraupidae (Tanagers and Allies),, 28312,species,whstan1,White-shouldered Tanager,Tachyphonus luctuosus,Passeriformes,Thraupidae (Tanagers and Allies),, 28317,species,tactan1,Tawny-crested Tanager,Tachyphonus delatrii,Passeriformes,Thraupidae (Tanagers and Allies),, 28318,species,ructan1,Ruby-crowned Tanager,Tachyphonus coronatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28319,species,whltan1,White-lined Tanager,Tachyphonus rufus,Passeriformes,Thraupidae (Tanagers and Allies),, 28320,species,restan1,Red-shouldered Tanager,Tachyphonus phoenicius,Passeriformes,Thraupidae (Tanagers and Allies),, 28320.2,spuh,tachyp1,Tachyphonus sp.,Tachyphonus sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28321,species,fustan1,Fulvous Shrike-Tanager,Lanio fulvus,Passeriformes,Thraupidae (Tanagers and Allies),, 28324,species,wwstan1,White-winged Shrike-Tanager,Lanio versicolor,Passeriformes,Thraupidae (Tanagers and Allies),, 28384,species,btstan1,Black-throated Shrike-Tanager,Lanio aurantius,Passeriformes,Thraupidae (Tanagers and Allies),, 28385,species,wtstan1,White-throated Shrike-Tanager,Lanio leucothorax,Passeriformes,Thraupidae (Tanagers and Allies),, 28390,species,crctan1,Crimson-collared Tanager,Ramphocelus sanguinolentus,Passeriformes,Thraupidae (Tanagers and Allies),, 28391,species,flrtan1,Flame-rumped Tanager,Ramphocelus flammigerus,Passeriformes,Thraupidae (Tanagers and Allies),, 28394,issf,flrtan2,Flame-rumped Tanager (Flame-rumped),Ramphocelus flammigerus flammigerus,Passeriformes,Thraupidae (Tanagers and Allies),,flrtan1 28394.2,issf,flrtan3,Flame-rumped Tanager (Lemon-rumped),Ramphocelus flammigerus icteronotus,Passeriformes,Thraupidae (Tanagers and Allies),,flrtan1 28400,species,pastan1,Passerini's Tanager,Ramphocelus passerinii,Passeriformes,Thraupidae (Tanagers and Allies),, 28403,species,chetan1,Cherrie's Tanager,Ramphocelus costaricensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28412,slash,y00599,Passerini's/Cherrie's Tanager,Ramphocelus passerinii/costaricensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28415,species,bratan1,Brazilian Tanager,Ramphocelus bresilius,Passeriformes,Thraupidae (Tanagers and Allies),, 28416,species,bkbtan1,Black-bellied Tanager,Ramphocelus melanogaster,Passeriformes,Thraupidae (Tanagers and Allies),, 28417,species,sibtan2,Silver-beaked Tanager,Ramphocelus carbo,Passeriformes,Thraupidae (Tanagers and Allies),, 28418,species,mactan1,Masked Crimson Tanager,Ramphocelus nigrogularis,Passeriformes,Thraupidae (Tanagers and Allies),, 28419,species,crbtan1,Crimson-backed Tanager,Ramphocelus dimidiatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28419.2,hybrid,x00898,Cherrie's x Crimson-backed Tanager (hybrid),Ramphocelus costaricensis x dimidiatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28420,spuh,rampho2,Ramphocelus sp.,Ramphocelus sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.01,species,vertan1,Vermilion Tanager,Calochaetes coccineus,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.02,species,blbtan2,Blue-backed Tanager,Cyanicterus cyanicterus,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.03,species,bagtan1,Blue-and-gold Tanager,Bangsia arcaei,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.06,species,bagtan2,Black-and-gold Tanager,Bangsia melanochlamys,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.07,species,goctan1,Golden-chested Tanager,Bangsia rothschildi,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.08,species,mobtan1,Moss-backed Tanager,Bangsia edwardsi,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.09,species,gortan1,Gold-ringed Tanager,Bangsia aureocincta,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.1,species,orttan1,Orange-throated Tanager,Wetmorethraupis sterrhopteron,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.11,species,homtan1,Hooded Mountain-Tanager,Buthraupis montana,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.17,species,mamtan1,Masked Mountain-Tanager,Buthraupis wetmorei,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.18,species,bcmtan1,Black-chested Mountain-Tanager,Cnemathraupis eximia,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.23,species,gbmtan1,Golden-backed Mountain-Tanager,Cnemathraupis aureodorsalis,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.24,species,grgtan1,Grass-green Tanager,Chlorornis riefferii,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.3,species,bkcmot1,Black-cheeked Mountain-Tanager,Anisognathus melanogenys,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.31,species,lamtan1,Lacrimose Mountain-Tanager,Anisognathus lacrymosus,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.32,issf,lacmot1,Lacrimose Mountain-Tanager (Perija),Anisognathus lacrymosus pallididorsalis,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 28421.33,issf,lacmot2,Lacrimose Mountain-Tanager (melanops),Anisognathus lacrymosus melanops,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 28421.34,issf,lacmot3,Lacrimose Mountain-Tanager (yariguierum),Anisognathus lacrymosus yariguierum,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 28421.35,issf,lacmot4,Lacrimose Mountain-Tanager (intensus),Anisognathus lacrymosus intensus,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 28421.36,issf,lacmot5,Lacrimose Mountain-Tanager (palpebrosus Group),Anisognathus lacrymosus [palpebrosus Group],Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 28421.39,issf,lacmot6,Lacrimose Mountain-Tanager (lacrymosus),Anisognathus lacrymosus lacrymosus,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 28421.4,species,sbmtan1,Scarlet-bellied Mountain-Tanager,Anisognathus igniventris,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.43,issf,scbmot1,Scarlet-bellied Mountain-Tanager (Scarlet-bellied),Anisognathus igniventris [lunulatus Group],Passeriformes,Thraupidae (Tanagers and Allies),,sbmtan1 28421.44,issf,scbmot2,Scarlet-bellied Mountain-Tanager (Fire-bellied),Anisognathus igniventris igniventris,Passeriformes,Thraupidae (Tanagers and Allies),,sbmtan1 28421.45,species,bwmtan1,Blue-winged Mountain-Tanager,Anisognathus somptuosus,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.453,issf,buwmot1,Blue-winged Mountain-Tanager (Blue-winged),Anisognathus somptuosus [somptuosus Group],Passeriformes,Thraupidae (Tanagers and Allies),,bwmtan1 28421.456,issf,buwmot2,Blue-winged Mountain-Tanager (Bolivian),Anisognathus somptuosus flavinucha,Passeriformes,Thraupidae (Tanagers and Allies),,bwmtan1 28421.55,species,bcmtan2,Black-chinned Mountain-Tanager,Anisognathus notabilis,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.56,species,bbmtan1,Buff-breasted Mountain-Tanager,Dubusia taeniata,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.57,issf,bubmot2,Buff-breasted Mountain-Tanager (Buff-breasted),Dubusia taeniata taeniata/carrikeri,Passeriformes,Thraupidae (Tanagers and Allies),,bbmtan1 28421.6,issf,bubmot1,Buff-breasted Mountain-Tanager (Cerulean-streaked),Dubusia taeniata stictocephala,Passeriformes,Thraupidae (Tanagers and Allies),,bbmtan1 28421.61,species,cbmtan1,Chestnut-bellied Mountain-Tanager,Dubusia castaneoventris,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.63,species,rubsal1,Rufous-bellied Mountain-Tanager,Pseudosaltator rufiventris,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.65,species,diatan1,Diademed Tanager,Stephanophorus diadematus,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.66,species,pumtan2,Purplish-mantled Tanager,Iridosornis porphyrocephalus,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.67,species,yettan1,Yellow-throated Tanager,Iridosornis analis,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.68,species,goctan3,Golden-collared Tanager,Iridosornis jelskii,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.71,species,goctan4,Golden-crowned Tanager,Iridosornis rufivertex,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.76,species,yestan1,Yellow-scarfed Tanager,Iridosornis reinhardti,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.77,species,fabtan1,Fawn-breasted Tanager,Pipraeidea melanonota,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.8,species,baytan3,Blue-and-yellow Tanager,Pipraeidea bonariensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.84,issf,baytan1,Blue-and-yellow Tanager (Green-mantled),Pipraeidea bonariensis darwinii,Passeriformes,Thraupidae (Tanagers and Allies),,baytan3 28421.845,issf,baytan4,Blue-and-yellow Tanager (Blue-and-yellow),Pipraeidea bonariensis [bonariensis Group],Passeriformes,Thraupidae (Tanagers and Allies),,baytan3 28421.85,species,glgtan1,Glistening-green Tanager,Chlorochrysa phoenicotis,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.86,species,oretan1,Orange-eared Tanager,Chlorochrysa calliparaea,Passeriformes,Thraupidae (Tanagers and Allies),, 28421.863,issf,oretan2,Orange-eared Tanager (Orange-eared),Chlorochrysa calliparaea calliparaea/bourcieri,Passeriformes,Thraupidae (Tanagers and Allies),,oretan1 28421.866,issf,oretan3,Orange-eared Tanager (Blue-throated),Chlorochrysa calliparaea fulgentissima,Passeriformes,Thraupidae (Tanagers and Allies),,oretan1 28421.9,species,multan1,Multicolored Tanager,Chlorochrysa nitidissima,Passeriformes,Thraupidae (Tanagers and Allies),, 28422,species,bugtan,Blue-gray Tanager,Thraupis episcopus,Passeriformes,Thraupidae (Tanagers and Allies),, 28422.5,issf,bugtan1,Blue-gray Tanager (Blue-gray),Thraupis episcopus [cana Group],Passeriformes,Thraupidae (Tanagers and Allies),,bugtan 28422.8,issf,bugtan2,Blue-gray Tanager (White-edged),Thraupis episcopus [episcopus Group],Passeriformes,Thraupidae (Tanagers and Allies),,bugtan 28435,species,saytan1,Sayaca Tanager,Thraupis sayaca,Passeriformes,Thraupidae (Tanagers and Allies),, 28439,species,glatan1,Glaucous Tanager,Thraupis glaucocolpa,Passeriformes,Thraupidae (Tanagers and Allies),, 28440,species,azstan1,Azure-shouldered Tanager,Thraupis cyanoptera,Passeriformes,Thraupidae (Tanagers and Allies),, 28440.3,species,goctan2,Golden-chevroned Tanager,Thraupis ornata,Passeriformes,Thraupidae (Tanagers and Allies),, 28440.6,species,yewtan1,Yellow-winged Tanager,Thraupis abbas,Passeriformes,Thraupidae (Tanagers and Allies),, 28441,species,paltan1,Palm Tanager,Thraupis palmarum,Passeriformes,Thraupidae (Tanagers and Allies),, 28447,species,blctan2,Blue-capped Tanager,Thraupis cyanocephala,Passeriformes,Thraupidae (Tanagers and Allies),, 28460.5,spuh,thraup1,Thraupis sp.,Thraupis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28465,species,dottan1,Dotted Tanager,Ixothraupis varia,Passeriformes,Thraupidae (Tanagers and Allies),, 28470,species,ruttan1,Rufous-throated Tanager,Ixothraupis rufigula,Passeriformes,Thraupidae (Tanagers and Allies),, 28475,species,spetan1,Speckled Tanager,Ixothraupis guttata,Passeriformes,Thraupidae (Tanagers and Allies),, 28480,species,yebtan2,Yellow-bellied Tanager,Ixothraupis xanthogastra,Passeriformes,Thraupidae (Tanagers and Allies),, 28485,species,spotan1,Spotted Tanager,Ixothraupis punctata,Passeriformes,Thraupidae (Tanagers and Allies),, 28490,spuh,ixothr1,Ixothraupis sp. (speckled tanager sp.),Ixothraupis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28545,species,gontan1,Golden-naped Tanager,Tangara ruficervix,Passeriformes,Thraupidae (Tanagers and Allies),, 28545.2,issf,gontan2,Golden-naped Tanager (Golden-naped),Tangara ruficervix [ruficervix Group],Passeriformes,Thraupidae (Tanagers and Allies),,gontan1 28545.4,issf,gontan3,Golden-naped Tanager (Rusty-naped),Tangara ruficervix [fulvicervix Group],Passeriformes,Thraupidae (Tanagers and Allies),,gontan1 28552,species,blhtan1,Black-headed Tanager,Tangara cyanoptera,Passeriformes,Thraupidae (Tanagers and Allies),, 28552.2,issf,bkhtan1,Black-headed Tanager (Black-headed),Tangara cyanoptera cyanoptera,Passeriformes,Thraupidae (Tanagers and Allies),,blhtan1 28552.4,issf,bkhtan2,Black-headed Tanager (Black-hooded),Tangara cyanoptera whitelyi,Passeriformes,Thraupidae (Tanagers and Allies),,blhtan1 28555,species,siltan1,Silvery Tanager,Tangara viridicollis,Passeriformes,Thraupidae (Tanagers and Allies),, 28558,species,blctan1,Black-capped Tanager,Tangara heinei,Passeriformes,Thraupidae (Tanagers and Allies),, 28559,species,gnttan1,Green-throated Tanager,Tangara argyrofenges,Passeriformes,Thraupidae (Tanagers and Allies),, 28562,species,sirtan1,Sira Tanager,Tangara phillipsi,Passeriformes,Thraupidae (Tanagers and Allies),, 28563,species,azrtan1,Azure-rumped Tanager,Tangara cabanisi,Passeriformes,Thraupidae (Tanagers and Allies),, 28564,species,gagtan1,Gray-and-gold Tanager,Tangara palmeri,Passeriformes,Thraupidae (Tanagers and Allies),, 28565,species,blbtan1,Black-backed Tanager,Tangara peruviana,Passeriformes,Thraupidae (Tanagers and Allies),, 28566,species,chbtan1,Chestnut-backed Tanager,Tangara preciosa,Passeriformes,Thraupidae (Tanagers and Allies),, 28567,species,grctan1,Green-capped Tanager,Tangara meyerdeschauenseei,Passeriformes,Thraupidae (Tanagers and Allies),, 28568,species,bubtan2,Burnished-buff Tanager,Tangara cayana,Passeriformes,Thraupidae (Tanagers and Allies),, 28569,issf,bubtan4,Burnished-buff Tanager (Rufous-crowned),Tangara cayana cayana/fulvescens,Passeriformes,Thraupidae (Tanagers and Allies),,bubtan2 28572,issf,bubtan3,Burnished-buff Tanager (Stripe-bellied),Tangara cayana [flava Group],Passeriformes,Thraupidae (Tanagers and Allies),,bubtan2 28578,species,leatan1,Lesser Antillean Tanager,Tangara cucullata,Passeriformes,Thraupidae (Tanagers and Allies),, 28578.2,issf,leatan2,Lesser Antillean Tanager (St. Vincent),Tangara cucullata versicolor,Passeriformes,Thraupidae (Tanagers and Allies),,leatan1 28578.4,issf,leatan3,Lesser Antillean Tanager (Grenada),Tangara cucullata cucullata,Passeriformes,Thraupidae (Tanagers and Allies),,leatan1 28581,species,scrtan1,Scrub Tanager,Tangara vitriolina,Passeriformes,Thraupidae (Tanagers and Allies),, 28582,species,mastan1,Masked Tanager,Tangara nigrocincta,Passeriformes,Thraupidae (Tanagers and Allies),, 28583,species,gohtan1,Golden-hooded Tanager,Tangara larvata,Passeriformes,Thraupidae (Tanagers and Allies),, 28588,species,blntan1,Blue-necked Tanager,Tangara cyanicollis,Passeriformes,Thraupidae (Tanagers and Allies),, 28614,species,babtan1,Blue-and-black Tanager,Tangara vassorii,Passeriformes,Thraupidae (Tanagers and Allies),, 28614.2,issf,babtan2,Blue-and-black Tanager (Blue-and-black),Tangara vassorii vassorii/branickii,Passeriformes,Thraupidae (Tanagers and Allies),,babtan1 28614.4,issf,babtan3,Blue-and-black Tanager (Spot-bellied),Tangara vassorii atrocoerulea,Passeriformes,Thraupidae (Tanagers and Allies),,babtan1 28618,species,bestan1,Beryl-spangled Tanager,Tangara nigroviridis,Passeriformes,Thraupidae (Tanagers and Allies),, 28622,species,spctan1,Spangle-cheeked Tanager,Tangara dowii,Passeriformes,Thraupidae (Tanagers and Allies),, 28623,species,grntan1,Green-naped Tanager,Tangara fucosa,Passeriformes,Thraupidae (Tanagers and Allies),, 28624,species,megtan1,Metallic-green Tanager,Tangara labradorides,Passeriformes,Thraupidae (Tanagers and Allies),, 28627,species,blbtan3,Blue-browed Tanager,Tangara cyanotis,Passeriformes,Thraupidae (Tanagers and Allies),, 28630,species,plctan1,Plain-colored Tanager,Tangara inornata,Passeriformes,Thraupidae (Tanagers and Allies),, 28634,species,turtan1,Turquoise Tanager,Tangara mexicana,Passeriformes,Thraupidae (Tanagers and Allies),, 28635,issf,turtan2,Turquoise Tanager (Turquoise),Tangara mexicana [mexicana Group],Passeriformes,Thraupidae (Tanagers and Allies),,turtan1 28640,issf,turtan3,Turquoise Tanager (White-bellied),Tangara mexicana brasiliensis,Passeriformes,Thraupidae (Tanagers and Allies),,turtan1 28641,species,partan1,Paradise Tanager,Tangara chilensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28646,species,oprtan1,Opal-rumped Tanager,Tangara velia,Passeriformes,Thraupidae (Tanagers and Allies),, 28647,issf,oprtan2,Opal-rumped Tanager (Opal-rumped),Tangara velia [velia Group],Passeriformes,Thraupidae (Tanagers and Allies),,oprtan1 28651,issf,oprtan3,Opal-rumped Tanager (Silver-breasted),Tangara velia cyanomelas,Passeriformes,Thraupidae (Tanagers and Allies),,oprtan1 28652,species,opctan1,Opal-crowned Tanager,Tangara callophrys,Passeriformes,Thraupidae (Tanagers and Allies),, 28653,species,grhtan2,Green-headed Tanager,Tangara seledon,Passeriformes,Thraupidae (Tanagers and Allies),, 28654,species,sectan1,Seven-colored Tanager,Tangara fastuosa,Passeriformes,Thraupidae (Tanagers and Allies),, 28655,species,rentan1,Red-necked Tanager,Tangara cyanocephala,Passeriformes,Thraupidae (Tanagers and Allies),, 28659,species,brbtan1,Brassy-breasted Tanager,Tangara desmaresti,Passeriformes,Thraupidae (Tanagers and Allies),, 28660,species,gietan1,Gilt-edged Tanager,Tangara cyanoventris,Passeriformes,Thraupidae (Tanagers and Allies),, 28661,species,ruwtan1,Rufous-winged Tanager,Tangara lavinia,Passeriformes,Thraupidae (Tanagers and Allies),, 28665,species,bahtan1,Bay-headed Tanager,Tangara gyrola,Passeriformes,Thraupidae (Tanagers and Allies),, 28666,issf,bahtan2,Bay-headed Tanager (Bay-and-blue),Tangara gyrola [albertinae Group],Passeriformes,Thraupidae (Tanagers and Allies),,bahtan1 28673,issf,bahtan3,Bay-headed Tanager (Bay-and-green),Tangara gyrola viridissima/toddi,Passeriformes,Thraupidae (Tanagers and Allies),,bahtan1 28676,issf,bahtan4,Bay-headed Tanager (Bay-headed),Tangara gyrola gyrola,Passeriformes,Thraupidae (Tanagers and Allies),,bahtan1 28677,species,ructan2,Rufous-cheeked Tanager,Tangara rufigenis,Passeriformes,Thraupidae (Tanagers and Allies),, 28678,species,goetan1,Golden-eared Tanager,Tangara chrysotis,Passeriformes,Thraupidae (Tanagers and Allies),, 28679,species,sactan1,Saffron-crowned Tanager,Tangara xanthocephala,Passeriformes,Thraupidae (Tanagers and Allies),, 28683,species,flftan1,Flame-faced Tanager,Tangara parzudakii,Passeriformes,Thraupidae (Tanagers and Allies),, 28683.2,issf,flftan2,Flame-faced Tanager (Flame-faced),Tangara parzudakii parzudakii/urubambae,Passeriformes,Thraupidae (Tanagers and Allies),,flftan1 28683.4,issf,flftan3,Flame-faced Tanager (Yellow-faced),Tangara parzudakii lunigera,Passeriformes,Thraupidae (Tanagers and Allies),,flftan1 28687,species,gagtan2,Green-and-gold Tanager,Tangara schrankii,Passeriformes,Thraupidae (Tanagers and Allies),, 28691,species,blwtan1,Blue-whiskered Tanager,Tangara johannae,Passeriformes,Thraupidae (Tanagers and Allies),, 28692,species,goltan1,Golden Tanager,Tangara arthus,Passeriformes,Thraupidae (Tanagers and Allies),, 28696,issf,goltan3,Golden Tanager (Golden),Tangara arthus aurulenta,Passeriformes,Thraupidae (Tanagers and Allies),,goltan1 28697,issf,goltan2,Golden Tanager (Venezuelan),Tangara arthus arthus,Passeriformes,Thraupidae (Tanagers and Allies),,goltan1 28702,species,emetan1,Emerald Tanager,Tangara florida,Passeriformes,Thraupidae (Tanagers and Allies),, 28705,species,sittan1,Silver-throated Tanager,Tangara icterocephala,Passeriformes,Thraupidae (Tanagers and Allies),, 28705.2,spuh,tangar2,Tangara sp.,Tangara sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28708.5,slash,tangar1,Tangara/Ixothraupis sp.,Tangara/Ixothraupis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28709,species,swatan1,Swallow Tanager,Tersina viridis,Passeriformes,Thraupidae (Tanagers and Allies),, 28714,species,whbdac1,White-bellied Dacnis,Dacnis albiventris,Passeriformes,Thraupidae (Tanagers and Allies),, 28715,species,blfdac1,Black-faced Dacnis,Dacnis lineata,Passeriformes,Thraupidae (Tanagers and Allies),, 28715.5,issf,bkfdac1,Black-faced Dacnis (Yellow-tufted),Dacnis lineata egregia/aequatorialis,Passeriformes,Thraupidae (Tanagers and Allies),,blfdac1 28718,issf,bkfdac2,Black-faced Dacnis (Black-faced),Dacnis lineata lineata,Passeriformes,Thraupidae (Tanagers and Allies),,blfdac1 28720,species,yebdac1,Yellow-bellied Dacnis,Dacnis flaviventer,Passeriformes,Thraupidae (Tanagers and Allies),, 28721,species,turdac1,Turquoise Dacnis,Dacnis hartlaubi,Passeriformes,Thraupidae (Tanagers and Allies),, 28722,species,blldac1,Black-legged Dacnis,Dacnis nigripes,Passeriformes,Thraupidae (Tanagers and Allies),, 28723,species,sctdac1,Scarlet-thighed Dacnis,Dacnis venusta,Passeriformes,Thraupidae (Tanagers and Allies),, 28726,species,bludac1,Blue Dacnis,Dacnis cayana,Passeriformes,Thraupidae (Tanagers and Allies),, 28735,species,virdac1,Viridian Dacnis,Dacnis viguieri,Passeriformes,Thraupidae (Tanagers and Allies),, 28736,species,scbdac1,Scarlet-breasted Dacnis,Dacnis berlepschi,Passeriformes,Thraupidae (Tanagers and Allies),, 28737,spuh,dacnis1,Dacnis sp.,Dacnis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28738,species,shbhon2,Short-billed Honeycreeper,Cyanerpes nitidus,Passeriformes,Thraupidae (Tanagers and Allies),, 28739,species,shihon1,Shining Honeycreeper,Cyanerpes lucidus,Passeriformes,Thraupidae (Tanagers and Allies),, 28741,species,purhon1,Purple Honeycreeper,Cyanerpes caeruleus,Passeriformes,Thraupidae (Tanagers and Allies),, 28746,species,relhon1,Red-legged Honeycreeper,Cyanerpes cyaneus,Passeriformes,Thraupidae (Tanagers and Allies),, 28758,slash,y00654,Shining/Red-legged Honeycreeper,Cyanerpes lucidus/cyaneus,Passeriformes,Thraupidae (Tanagers and Allies),, 28759,species,grehon1,Green Honeycreeper,Chlorophanes spiza,Passeriformes,Thraupidae (Tanagers and Allies),, 28767,species,gochon2,Golden-collared Honeycreeper,Iridophanes pulcherrimus,Passeriformes,Thraupidae (Tanagers and Allies),, 28770,species,surtan1,Sulphur-rumped Tanager,Heterospingus rubrifrons,Passeriformes,Thraupidae (Tanagers and Allies),, 28771,species,scbtan2,Scarlet-browed Tanager,Heterospingus xanthopygius,Passeriformes,Thraupidae (Tanagers and Allies),, 28774,species,guitan1,Guira Tanager,Hemithraupis guira,Passeriformes,Thraupidae (Tanagers and Allies),, 28783,species,ruhtan1,Rufous-headed Tanager,Hemithraupis ruficapilla,Passeriformes,Thraupidae (Tanagers and Allies),, 28783.2,slash,y01055,Guira/Rufous-headed Tanager,Hemithraupis guira/ruficapilla,Passeriformes,Thraupidae (Tanagers and Allies),, 28786,species,yebtan1,Yellow-backed Tanager,Hemithraupis flavicollis,Passeriformes,Thraupidae (Tanagers and Allies),, 28798,species,baytan2,Black-and-yellow Tanager,Chrysothlypis chrysomelas,Passeriformes,Thraupidae (Tanagers and Allies),, 28801,species,sawtan1,Scarlet-and-white Tanager,Chrysothlypis salmoni,Passeriformes,Thraupidae (Tanagers and Allies),, 28802,spuh,tanage,tanager sp. (Thraupidae sp.),Thraupidae sp. (tanager sp.),Passeriformes,Thraupidae (Tanagers and Allies),, 28803,species,biccon1,Bicolored Conebill,Conirostrum bicolor,Passeriformes,Thraupidae (Tanagers and Allies),, 28807,species,pebcon1,Pearly-breasted Conebill,Conirostrum margaritae,Passeriformes,Thraupidae (Tanagers and Allies),, 28811,species,chvcon1,Chestnut-vented Conebill,Conirostrum speciosum,Passeriformes,Thraupidae (Tanagers and Allies),, 28814,species,whecon1,White-eared Conebill,Conirostrum leucogenys,Passeriformes,Thraupidae (Tanagers and Allies),, 28815,species,giacon1,Giant Conebill,Conirostrum binghami,Passeriformes,Thraupidae (Tanagers and Allies),, 28815.2,species,whbcon1,White-browed Conebill,Conirostrum ferrugineiventre,Passeriformes,Thraupidae (Tanagers and Allies),, 28815.4,species,blbcon1,Blue-backed Conebill,Conirostrum sitticolor,Passeriformes,Thraupidae (Tanagers and Allies),, 28818,species,capcon1,Capped Conebill,Conirostrum albifrons,Passeriformes,Thraupidae (Tanagers and Allies),, 28822,species,tamcon1,Tamarugo Conebill,Conirostrum tamarugense,Passeriformes,Thraupidae (Tanagers and Allies),, 28829,species,rubcon1,Rufous-browed Conebill,Conirostrum rufum,Passeriformes,Thraupidae (Tanagers and Allies),, 28830,species,cincon1,Cinereous Conebill,Conirostrum cinereum,Passeriformes,Thraupidae (Tanagers and Allies),, 28831,issf,cincon2,Cinereous Conebill (Ochraceous),Conirostrum cinereum fraseri,Passeriformes,Thraupidae (Tanagers and Allies),,cincon1 28832,issf,cincon3,Cinereous Conebill (Cinereous),Conirostrum cinereum cinereum/littorale,Passeriformes,Thraupidae (Tanagers and Allies),,cincon1 28833,spuh,conebi1,conebill sp.,Conirostrum sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28834,species,tildac1,Tit-like Dacnis,Xenodacnis parina,Passeriformes,Thraupidae (Tanagers and Allies),, 28835,issf,tildac3,Tit-like Dacnis (petersi Group),Xenodacnis parina petersi/bella,Passeriformes,Thraupidae (Tanagers and Allies),,tildac1 28837,issf,tildac2,Tit-like Dacnis (parina),Xenodacnis parina parina,Passeriformes,Thraupidae (Tanagers and Allies),,tildac1 28838,species,chbflo1,Chestnut-bellied Flowerpiercer,Diglossa gloriosissima,Passeriformes,Thraupidae (Tanagers and Allies),, 28839,species,gloflo1,Glossy Flowerpiercer,Diglossa lafresnayii,Passeriformes,Thraupidae (Tanagers and Allies),, 28840,species,mouflo1,Moustached Flowerpiercer,Diglossa mystacalis,Passeriformes,Thraupidae (Tanagers and Allies),, 28841,issf,mouflo2,Moustached Flowerpiercer (unicincta),Diglossa mystacalis unicincta,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 28842,issf,mouflo3,Moustached Flowerpiercer (pectoralis),Diglossa mystacalis pectoralis,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 28843,issf,mouflo4,Moustached Flowerpiercer (albilinea),Diglossa mystacalis albilinea,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 28844,issf,mouflo5,Moustached Flowerpiercer (mystacalis),Diglossa mystacalis mystacalis,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 28845,species,merflo1,Merida Flowerpiercer,Diglossa gloriosa,Passeriformes,Thraupidae (Tanagers and Allies),, 28846,species,blkflo1,Black Flowerpiercer,Diglossa humeralis,Passeriformes,Thraupidae (Tanagers and Allies),, 28850,species,bktflo1,Black-throated Flowerpiercer,Diglossa brunneiventris,Passeriformes,Thraupidae (Tanagers and Allies),, 28851,species,gybflo1,Gray-bellied Flowerpiercer,Diglossa carbonaria,Passeriformes,Thraupidae (Tanagers and Allies),, 28852,species,venflo1,Venezuelan Flowerpiercer,Diglossa venezuelensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28853,species,whsflo1,White-sided Flowerpiercer,Diglossa albilatera,Passeriformes,Thraupidae (Tanagers and Allies),, 28858,species,scaflo1,Scaled Flowerpiercer,Diglossa duidae,Passeriformes,Thraupidae (Tanagers and Allies),, 28862,species,greflo1,Greater Flowerpiercer,Diglossa major,Passeriformes,Thraupidae (Tanagers and Allies),, 28866,species,indflo1,Indigo Flowerpiercer,Diglossa indigotica,Passeriformes,Thraupidae (Tanagers and Allies),, 28867,species,cibflo1,Cinnamon-bellied Flowerpiercer,Diglossa baritula,Passeriformes,Thraupidae (Tanagers and Allies),, 28871,species,slaflo1,Slaty Flowerpiercer,Diglossa plumbea,Passeriformes,Thraupidae (Tanagers and Allies),, 28874,species,rusflo1,Rusty Flowerpiercer,Diglossa sittoides,Passeriformes,Thraupidae (Tanagers and Allies),, 28881,species,debflo1,Deep-blue Flowerpiercer,Diglossa glauca,Passeriformes,Thraupidae (Tanagers and Allies),, 28884,species,bluflo1,Bluish Flowerpiercer,Diglossa caerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, 28891,species,masflo1,Masked Flowerpiercer,Diglossa cyanea,Passeriformes,Thraupidae (Tanagers and Allies),, 28897,spuh,flower1,flowerpiercer sp.,Diglossa sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28898,species,plushc1,Plushcap,Catamblyrhynchus diadema,Passeriformes,Thraupidae (Tanagers and Allies),, 28902,species,bbbtan1,Black-backed Bush Tanager,Urothraupis stolzmanni,Passeriformes,Thraupidae (Tanagers and Allies),, 28903,species,blufin1,Blue Finch,Porphyrospiza caerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, 28904,species,bhsfin1,Black-hooded Sierra-Finch,Phrygilus atriceps,Passeriformes,Thraupidae (Tanagers and Allies),, 28905,species,pesfin1,Peruvian Sierra-Finch,Phrygilus punensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28908,species,gyhsif1,Gray-hooded Sierra-Finch,Phrygilus gayi,Passeriformes,Thraupidae (Tanagers and Allies),, 28912,species,pasfin1,Patagonian Sierra-Finch,Phrygilus patagonicus,Passeriformes,Thraupidae (Tanagers and Allies),, 28913,species,mosfin1,Mourning Sierra-Finch,Phrygilus fruticeti,Passeriformes,Thraupidae (Tanagers and Allies),, 28914,issf,mousif1,Mourning Sierra-Finch (Mourning),Phrygilus fruticeti fruticeti/peruvianus,Passeriformes,Thraupidae (Tanagers and Allies),,mosfin1 28917,issf,mousif2,Mourning Sierra-Finch (Blackish),Phrygilus fruticeti coracinus,Passeriformes,Thraupidae (Tanagers and Allies),,mosfin1 28925,species,rbsfin1,Red-backed Sierra-Finch,Phrygilus dorsalis,Passeriformes,Thraupidae (Tanagers and Allies),, 28926,species,wtsfin1,White-throated Sierra-Finch,Phrygilus erythronotus,Passeriformes,Thraupidae (Tanagers and Allies),, 28930,species,casfin1,Carbonated Sierra-Finch,Phrygilus carbonarius,Passeriformes,Thraupidae (Tanagers and Allies),, 28931,species,btsfin1,Band-tailed Sierra-Finch,Phrygilus alaudinus,Passeriformes,Thraupidae (Tanagers and Allies),, 28938,spuh,sierra1,sierra-finch sp.,Phrygilus sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28939,species,shtfin1,Short-tailed Finch,Idiopsar brachyurus,Passeriformes,Thraupidae (Tanagers and Allies),, 28940,species,wwdfin1,White-winged Diuca-Finch,Idiopsar speculifer,Passeriformes,Thraupidae (Tanagers and Allies),, 28946,species,codfin1,Common Diuca-Finch,Diuca diuca,Passeriformes,Thraupidae (Tanagers and Allies),, 28951,species,cawfin1,White-bridled Finch,Melanodera melanodera,Passeriformes,Thraupidae (Tanagers and Allies),, 28952,issf,whbfin2,White-bridled Finch (Fuegian),Melanodera melanodera princetoniana,Passeriformes,Thraupidae (Tanagers and Allies),,cawfin1 28953,issf,whbfin3,White-bridled Finch (Falkland),Melanodera melanodera melanodera,Passeriformes,Thraupidae (Tanagers and Allies),,cawfin1 28954,species,yebfin1,Yellow-bridled Finch,Melanodera xanthogramma,Passeriformes,Thraupidae (Tanagers and Allies),, 28955,issf,yebfin2,Yellow-bridled Finch (White-tailed),Melanodera xanthogramma barrosi,Passeriformes,Thraupidae (Tanagers and Allies),,yebfin1 28956,issf,yebfin3,Yellow-bridled Finch (Yellow-tailed),Melanodera xanthogramma xanthogramma,Passeriformes,Thraupidae (Tanagers and Allies),,yebfin1 28956.5,species,plsfin1,Plumbeous Sierra-Finch,Geospizopsis unicolor,Passeriformes,Thraupidae (Tanagers and Allies),, 28956.7,species,absfin1,Ash-breasted Sierra-Finch,Geospizopsis plebejus,Passeriformes,Thraupidae (Tanagers and Allies),, 28957.9,species,unifin1,Uniform Finch,Haplospiza unicolor,Passeriformes,Thraupidae (Tanagers and Allies),, 28958,species,slafin1,Slaty Finch,Spodiornis rusticus,Passeriformes,Thraupidae (Tanagers and Allies),, 28962,species,pebfin1,Peg-billed Finch,Acanthidops bairdi,Passeriformes,Thraupidae (Tanagers and Allies),, 28963,species,blcfin1,Black-crested Finch,Lophospingus pusillus,Passeriformes,Thraupidae (Tanagers and Allies),, 28964,species,gycfin1,Gray-crested Finch,Lophospingus griseocristatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28964.2,slash,y00920,Black-crested/Gray-crested Finch,Lophospingus pusillus/griseocristatus,Passeriformes,Thraupidae (Tanagers and Allies),, 28965,species,ltrfin1,Long-tailed Reed Finch,Donacospiza albifrons,Passeriformes,Thraupidae (Tanagers and Allies),, 28966,species,goifin1,Gough Island Finch,Rowettia goughensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28967,species,nigfin1,Nightingale Finch,Nesospiza acunhae,Passeriformes,Thraupidae (Tanagers and Allies),, 28968,issf,nigfin2,Nightingale Finch (Inaccessible I.),Nesospiza acunhae acunhae,Passeriformes,Thraupidae (Tanagers and Allies),,nigfin1 28969,issf,nigfin3,Nightingale Finch (Nightingale I.),Nesospiza acunhae questi,Passeriformes,Thraupidae (Tanagers and Allies),,nigfin1 28970,species,wilfin1,Wilkins's Finch,Nesospiza wilkinsi,Passeriformes,Thraupidae (Tanagers and Allies),, 28971,issf,wilfin2,Wilkins's Finch (Inaccessible I.),Nesospiza wilkinsi dunnei,Passeriformes,Thraupidae (Tanagers and Allies),,wilfin1 28972,issf,wilfin3,Wilkins's Finch (Nightingale I.),Nesospiza wilkinsi wilkinsi,Passeriformes,Thraupidae (Tanagers and Allies),,wilfin1 28973,species,cinfin1,Cinereous Finch,Piezorina cinerea,Passeriformes,Thraupidae (Tanagers and Allies),, 28974,species,slbfin3,Slender-billed Finch,Xenospingus concolor,Passeriformes,Thraupidae (Tanagers and Allies),, 28975,species,grifin1,Great Inca-Finch,Incaspiza pulchra,Passeriformes,Thraupidae (Tanagers and Allies),, 28976,species,rbifin1,Rufous-backed Inca-Finch,Incaspiza personata,Passeriformes,Thraupidae (Tanagers and Allies),, 28977,species,gywinf1,Gray-winged Inca-Finch,Incaspiza ortizi,Passeriformes,Thraupidae (Tanagers and Allies),, 28978,species,bbifin1,Buff-bridled Inca-Finch,Incaspiza laeta,Passeriformes,Thraupidae (Tanagers and Allies),, 28979,species,liifin1,Little Inca-Finch,Incaspiza watkinsi,Passeriformes,Thraupidae (Tanagers and Allies),, 28979.5,spuh,inca-f1,inca-finch sp.,Incaspiza sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 28980,species,blhhem1,Black-headed Hemispingus,Pseudospingus verticalis,Passeriformes,Thraupidae (Tanagers and Allies),, 28980.5,species,drahem1,Drab Hemispingus,Pseudospingus xanthophthalmus,Passeriformes,Thraupidae (Tanagers and Allies),, 28981,species,gyhbut1,Gray-hooded Bush Tanager,Cnemoscopus rubrirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 28981.5,issf,gyhbut2,Gray-hooded Bush Tanager (rubrirostris),Cnemoscopus rubrirostris rubrirostris,Passeriformes,Thraupidae (Tanagers and Allies),,gyhbut1 28982,issf,gyhbut3,Gray-hooded Bush Tanager (chrysogaster),Cnemoscopus rubrirostris chrysogaster,Passeriformes,Thraupidae (Tanagers and Allies),,gyhbut1 28982.5,species,bcwfin1,Bay-chested Warbling-Finch,Castanozoster thoracicus,Passeriformes,Thraupidae (Tanagers and Allies),, 28983,species,slbhem1,Slaty-backed Hemispingus,Poospiza goeringi,Passeriformes,Thraupidae (Tanagers and Allies),, 28983.5,species,rubhem1,Rufous-browed Hemispingus,Poospiza rufosuperciliaris,Passeriformes,Thraupidae (Tanagers and Allies),, 28984,species,bowfin1,Bolivian Warbling-Finch,Poospiza boliviana,Passeriformes,Thraupidae (Tanagers and Allies),, 28984.5,species,rswfin1,Rufous-sided Warbling-Finch,Poospiza hypochondria,Passeriformes,Thraupidae (Tanagers and Allies),, 28985,species,ciwfin2,Cinnamon Warbling-Finch,Poospiza ornata,Passeriformes,Thraupidae (Tanagers and Allies),, 28985.5,species,barfin1,Black-and-rufous Warbling-Finch,Poospiza nigrorufa,Passeriformes,Thraupidae (Tanagers and Allies),, 28986,issf,barwaf1,Black-and-rufous Warbling-Finch (Black-and-rufous),Poospiza nigrorufa nigrorufa,Passeriformes,Thraupidae (Tanagers and Allies),,barfin1 28986.5,issf,barwaf2,Black-and-rufous Warbling-Finch (Black-and-chestnut),Poospiza nigrorufa whitii/wagneri,Passeriformes,Thraupidae (Tanagers and Allies),,barfin1 28997,species,rbwfin1,Rufous-breasted Warbling-Finch,Poospiza rubecula,Passeriformes,Thraupidae (Tanagers and Allies),, 28998,species,cbmfin1,Chestnut-breasted Mountain-Finch,Poospiza caesar,Passeriformes,Thraupidae (Tanagers and Allies),, 28999,species,cowfin1,Collared Warbling-Finch,Poospiza hispaniolensis,Passeriformes,Thraupidae (Tanagers and Allies),, 28999.5,species,comfin1,Cochabamba Mountain-Finch,Poospiza garleppi,Passeriformes,Thraupidae (Tanagers and Allies),, 28999.7,species,tumfin1,Tucuman Mountain-Finch,Poospiza baeri,Passeriformes,Thraupidae (Tanagers and Allies),, 29004.5,spuh,warbli1,warbling-finch sp.,Microspingus/Castanozoster/Poospiza sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 29007,species,styfin1,Stripe-tailed Yellow-Finch,Sicalis citrina,Passeriformes,Thraupidae (Tanagers and Allies),, 29011,species,puyfin1,Puna Yellow-Finch,Sicalis lutea,Passeriformes,Thraupidae (Tanagers and Allies),, 29012,species,bryfin1,Bright-rumped Yellow-Finch,Sicalis uropygialis,Passeriformes,Thraupidae (Tanagers and Allies),, 29016,species,chyfin1,Citron-headed Yellow-Finch,Sicalis luteocephala,Passeriformes,Thraupidae (Tanagers and Allies),, 29017,species,gryfin2,Greater Yellow-Finch,Sicalis auriventris,Passeriformes,Thraupidae (Tanagers and Allies),, 29018,species,gryfin3,Greenish Yellow-Finch,Sicalis olivascens,Passeriformes,Thraupidae (Tanagers and Allies),, 29022,species,monyef1,Monte Yellow-Finch,Sicalis mendozae,Passeriformes,Thraupidae (Tanagers and Allies),, 29023,species,payfin1,Patagonian Yellow-Finch,Sicalis lebruni,Passeriformes,Thraupidae (Tanagers and Allies),, 29024,species,ofyfin1,Orange-fronted Yellow-Finch,Sicalis columbiana,Passeriformes,Thraupidae (Tanagers and Allies),, 29028,species,saffin,Saffron Finch,Sicalis flaveola,Passeriformes,Thraupidae (Tanagers and Allies),, 29029,issf,saffin1,Saffron Finch (Saffron),Sicalis flaveola [flaveola Group],Passeriformes,Thraupidae (Tanagers and Allies),,saffin 29033,issf,saffin2,Saffron Finch (Pelzen's),Sicalis flaveola pelzelni,Passeriformes,Thraupidae (Tanagers and Allies),,saffin 29034,species,gryfin1,Grassland Yellow-Finch,Sicalis luteola,Passeriformes,Thraupidae (Tanagers and Allies),, 29035,issf,grayef1,Grassland Yellow-Finch (Northern),Sicalis luteola [chrysops Group],Passeriformes,Thraupidae (Tanagers and Allies),,gryfin1 29039,issf,grayef2,Grassland Yellow-Finch (Montane),Sicalis luteola bogotensis,Passeriformes,Thraupidae (Tanagers and Allies),,gryfin1 29040,issf,grayef3,Grassland Yellow-Finch (Grassland),Sicalis luteola [luteola Group],Passeriformes,Thraupidae (Tanagers and Allies),,gryfin1 29044,species,rayfin1,Raimondi's Yellow-Finch,Sicalis raimondii,Passeriformes,Thraupidae (Tanagers and Allies),, 29045,species,sutfin1,Sulphur-throated Finch,Sicalis taczanowskii,Passeriformes,Thraupidae (Tanagers and Allies),, 29046,spuh,yellow4,yellow-finch sp.,Sicalis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 29047,species,wtgfin1,Wedge-tailed Grass-Finch,Emberizoides herbicola,Passeriformes,Thraupidae (Tanagers and Allies),, 29054,species,dugfin1,Duida Grass-Finch,Emberizoides duidae,Passeriformes,Thraupidae (Tanagers and Allies),, 29055,species,lesgrf1,Lesser Grass-Finch,Emberizoides ypiranganus,Passeriformes,Thraupidae (Tanagers and Allies),, 29056,species,grpfin1,Great Pampa-Finch,Embernagra platensis,Passeriformes,Thraupidae (Tanagers and Allies),, 29057,issf,grepaf1,Great Pampa-Finch (Western),Embernagra platensis olivascens,Passeriformes,Thraupidae (Tanagers and Allies),,grpfin1 29058,issf,grepaf2,Great Pampa-Finch (Eastern),Embernagra platensis platensis,Passeriformes,Thraupidae (Tanagers and Allies),,grpfin1 29059,species,ptpfin1,Pale-throated Pampa-Finch,Embernagra longicauda,Passeriformes,Thraupidae (Tanagers and Allies),, 29060,species,blbgra1,Blue-black Grassquit,Volatinia jacarina,Passeriformes,Thraupidae (Tanagers and Allies),, 29098,species,lessee2,Lesson's Seedeater,Sporophila bouvronides,Passeriformes,Thraupidae (Tanagers and Allies),, 29101,species,linsee1,Lined Seedeater,Sporophila lineola,Passeriformes,Thraupidae (Tanagers and Allies),, 29103.5,slash,y00699,Lesson's/Lined Seedeater,Sporophila bouvronides/lineola,Passeriformes,Thraupidae (Tanagers and Allies),, 29118,species,whbsee1,White-bellied Seedeater,Sporophila leucoptera,Passeriformes,Thraupidae (Tanagers and Allies),, 29123,species,pabsee1,Parrot-billed Seedeater,Sporophila peruviana,Passeriformes,Thraupidae (Tanagers and Allies),, 29125.5,species,chtsee1,Chestnut-throated Seedeater,Sporophila telasco,Passeriformes,Thraupidae (Tanagers and Allies),, 29126,species,drasee1,Drab Seedeater,Sporophila simplex,Passeriformes,Thraupidae (Tanagers and Allies),, 29126.02,species,chbsee1,Chestnut-bellied Seedeater,Sporophila castaneiventris,Passeriformes,Thraupidae (Tanagers and Allies),, 29126.04,species,rubsee1,Ruddy-breasted Seedeater,Sporophila minuta,Passeriformes,Thraupidae (Tanagers and Allies),, 29127,species,batsee2,Black-and-tawny Seedeater,Sporophila nigrorufa,Passeriformes,Thraupidae (Tanagers and Allies),, 29128,species,capsee1,Copper Seedeater,Sporophila bouvreuil,Passeriformes,Thraupidae (Tanagers and Allies),, 29129,species,pebsee1,Pearly-bellied Seedeater,Sporophila pileata,Passeriformes,Thraupidae (Tanagers and Allies),, 29134,species,tabsee1,Tawny-bellied Seedeater,Sporophila hypoxantha,Passeriformes,Thraupidae (Tanagers and Allies),, 29135,species,datsee1,Dark-throated Seedeater,Sporophila ruficollis,Passeriformes,Thraupidae (Tanagers and Allies),, 29135.5,form,ibesee1,Ibera Seedeater (undescribed form),Sporophila [undescribed form],Passeriformes,Thraupidae (Tanagers and Allies),, 29136,species,marsee1,Marsh Seedeater,Sporophila palustris,Passeriformes,Thraupidae (Tanagers and Allies),, 29138,species,rursee1,Rufous-rumped Seedeater,Sporophila hypochroma,Passeriformes,Thraupidae (Tanagers and Allies),, 29139,species,chesee1,Chestnut Seedeater,Sporophila cinnamomea,Passeriformes,Thraupidae (Tanagers and Allies),, 29140,species,blbsee2,Black-bellied Seedeater,Sporophila melanogaster,Passeriformes,Thraupidae (Tanagers and Allies),, 29144,species,tbsfin1,Thick-billed Seed-Finch,Sporophila funerea,Passeriformes,Thraupidae (Tanagers and Allies),, 29145,species,cbsfin,Chestnut-bellied Seed-Finch,Sporophila angolensis,Passeriformes,Thraupidae (Tanagers and Allies),, 29147.3,species,nisfin1,Nicaraguan Seed-Finch,Sporophila nuttingi,Passeriformes,Thraupidae (Tanagers and Allies),, 29147.6,species,gbsfin1,Great-billed Seed-Finch,Sporophila maximiliani,Passeriformes,Thraupidae (Tanagers and Allies),, 29148,species,lbsfin1,Large-billed Seed-Finch,Sporophila crassirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29154,species,bbsfin1,Black-billed Seed-Finch,Sporophila atrirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29156.02,species,varsee3,Variable Seedeater,Sporophila corvina,Passeriformes,Thraupidae (Tanagers and Allies),, 29156.04,issf,varsee2,Variable Seedeater (Black),Sporophila corvina corvina,Passeriformes,Thraupidae (Tanagers and Allies),,varsee3 29156.06,issf,varsee4,Variable Seedeater (Variable),Sporophila corvina [ophthalmica Group],Passeriformes,Thraupidae (Tanagers and Allies),,varsee3 29156.14,species,grysee1,Gray Seedeater,Sporophila intermedia,Passeriformes,Thraupidae (Tanagers and Allies),, 29156.22,species,wibsee1,Wing-barred Seedeater,Sporophila americana,Passeriformes,Thraupidae (Tanagers and Allies),, 29156.28,species,caqsee1,Caqueta Seedeater,Sporophila murallae,Passeriformes,Thraupidae (Tanagers and Allies),, 29156.3,species,whcsee,White-collared Seedeater,Sporophila torqueola,Passeriformes,Thraupidae (Tanagers and Allies),, 29156.32,issf,whcsee1,White-collared Seedeater (White-collared),Sporophila torqueola [morelleti Group],Passeriformes,Thraupidae (Tanagers and Allies),,whcsee 29156.4,issf,whcsee2,White-collared Seedeater (Cinnamon-rumped),Sporophila torqueola torqueola,Passeriformes,Thraupidae (Tanagers and Allies),,whcsee 29157,species,whnsee1,White-naped Seedeater,Sporophila fringilloides,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.02,species,bawsee1,Black-and-white Seedeater,Sporophila luctuosa,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.04,species,yebsee1,Yellow-bellied Seedeater,Sporophila nigricollis,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.12,species,dubsee1,Dubois's Seedeater,Sporophila ardesiaca,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.14,species,docsee1,Double-collared Seedeater,Sporophila caerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.22,species,slcsee1,Slate-colored Seedeater,Sporophila schistacea,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.32,species,temsee1,Temminck's Seedeater,Sporophila falcirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.34,species,bufsee1,Buffy-fronted Seedeater,Sporophila frontalis,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.36,species,plusee1,Plumbeous Seedeater,Sporophila plumbea,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.44,species,trosee1,Tropeiro Seedeater,Sporophila beltoni,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.46,species,rucsee1,Rusty-collared Seedeater,Sporophila collaris,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.54,species,whtsee1,White-throated Seedeater,Sporophila albogularis,Passeriformes,Thraupidae (Tanagers and Allies),, 29157.56,spuh,sporop1,Sporophila sp.,Sporophila sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 29158,species,batsee1,Band-tailed Seedeater,Catamenia analis,Passeriformes,Thraupidae (Tanagers and Allies),, 29166,species,plcsee1,Plain-colored Seedeater,Catamenia inornata,Passeriformes,Thraupidae (Tanagers and Allies),, 29170,species,parsee1,Paramo Seedeater,Catamenia homochroa,Passeriformes,Thraupidae (Tanagers and Allies),, 29170.2,spuh,catame1,Catamenia sp.,Catamenia sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 29174,species,cocfin2,Coal-crested Finch,Charitospiza eucosma,Passeriformes,Thraupidae (Tanagers and Allies),, 29175,species,blmfin1,Black-masked Finch,Coryphaspiza melanotis,Passeriformes,Thraupidae (Tanagers and Allies),, 29178,species,pilfin1,Pileated Finch,Coryphospingus pileatus,Passeriformes,Thraupidae (Tanagers and Allies),, 29182,species,recfin1,Red-crested Finch,Coryphospingus cucullatus,Passeriformes,Thraupidae (Tanagers and Allies),, 29186,species,crbfin1,Crimson-breasted Finch,Rhodospingus cruentus,Passeriformes,Thraupidae (Tanagers and Allies),, 29187,species,yelcar1,Yellow Cardinal,Gubernatrix cristata,Passeriformes,Thraupidae (Tanagers and Allies),, 29187.2,hybrid,x00899,Common Diuca-Finch x Yellow Cardinal (hybrid),Diuca diuca x Gubernatrix cristata,Passeriformes,Thraupidae (Tanagers and Allies),, 29188,species,banana,Bananaquit,Coereba flaveola,Passeriformes,Thraupidae (Tanagers and Allies),, 29189,issf,banana4,Bananaquit (Bahamas),Coereba flaveola bahamensis,Passeriformes,Thraupidae (Tanagers and Allies),,banana 29190,issf,banana2,Bananaquit (Caribbean),Coereba flaveola [flaveola Group],Passeriformes,Thraupidae (Tanagers and Allies),,banana 29206,issf,banana3,Bananaquit (Cozumel I.),Coereba flaveola caboti,Passeriformes,Thraupidae (Tanagers and Allies),,banana 29207,issf,banana1,Bananaquit (Mainland),Coereba flaveola mexicana,Passeriformes,Thraupidae (Tanagers and Allies),,banana 29231,species,cubgra,Cuban Grassquit,Tiaris canorus,Passeriformes,Thraupidae (Tanagers and Allies),, 29232,species,yefgra1,Yellow-faced Grassquit,Tiaris olivaceus,Passeriformes,Thraupidae (Tanagers and Allies),, 29238,species,ducgra2,Dull-colored Grassquit,Tiaris obscurus,Passeriformes,Thraupidae (Tanagers and Allies),, 29243,species,soogra2,Sooty Grassquit,Tiaris fuliginosus,Passeriformes,Thraupidae (Tanagers and Allies),, 29244,species,bkfgra,Black-faced Grassquit,Tiaris bicolor,Passeriformes,Thraupidae (Tanagers and Allies),, 29267,species,orange1,Orangequit,Euneornis campestris,Passeriformes,Thraupidae (Tanagers and Allies),, 29268,species,purbul1,Puerto Rican Bullfinch,Loxigilla portoricensis,Passeriformes,Thraupidae (Tanagers and Allies),, 29271,species,grabul1,Greater Antillean Bullfinch,Loxigilla violacea,Passeriformes,Thraupidae (Tanagers and Allies),, 29277,species,leabul1,Lesser Antillean Bullfinch,Loxigilla noctis,Passeriformes,Thraupidae (Tanagers and Allies),, 29286,species,barbul1,Barbados Bullfinch,Loxigilla barbadensis,Passeriformes,Thraupidae (Tanagers and Allies),, 29287,species,cubbul1,Cuban Bullfinch,Melopyrrha nigra,Passeriformes,Thraupidae (Tanagers and Allies),, 29288,issf,cubbul2,Cuban Bullfinch (Cuban),Melopyrrha nigra nigra,Passeriformes,Thraupidae (Tanagers and Allies),,cubbul1 29289,issf,cubbul3,Cuban Bullfinch (Grand Cayman),Melopyrrha nigra taylori,Passeriformes,Thraupidae (Tanagers and Allies),,cubbul1 29290,species,yesgra1,Yellow-shouldered Grassquit,Loxipasser anoxanthus,Passeriformes,Thraupidae (Tanagers and Allies),, 29291,species,slbfin1,St. Lucia Black Finch,Melanospiza richardsoni,Passeriformes,Thraupidae (Tanagers and Allies),, 29291.2,species,cocfin1,Cocos Finch,Pinaroloxias inornata,Passeriformes,Thraupidae (Tanagers and Allies),, 29291.3,species,warfin1,Green Warbler-Finch,Certhidea olivacea,Passeriformes,Thraupidae (Tanagers and Allies),, 29291.4,species,grywaf1,Gray Warbler-Finch,Certhidea fusca,Passeriformes,Thraupidae (Tanagers and Allies),, 29291.83,species,vegfin2,Vegetarian Finch,Platyspiza crassirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29291.84,species,woofin1,Woodpecker Finch,Camarhynchus pallidus,Passeriformes,Thraupidae (Tanagers and Allies),, 29293,species,latfin1,Large Tree-Finch,Camarhynchus psittacula,Passeriformes,Thraupidae (Tanagers and Allies),, 29297,species,metfin1,Medium Tree-Finch,Camarhynchus pauper,Passeriformes,Thraupidae (Tanagers and Allies),, 29298,species,smtfin1,Small Tree-Finch,Camarhynchus parvulus,Passeriformes,Thraupidae (Tanagers and Allies),, 29301,species,manfin1,Mangrove Finch,Camarhynchus heliobates,Passeriformes,Thraupidae (Tanagers and Allies),, 29302,species,smgfin1,Small Ground-Finch,Geospiza fuliginosa,Passeriformes,Thraupidae (Tanagers and Allies),, 29303,species,lagfin1,Large Ground-Finch,Geospiza magnirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29305,species,shbgrf1,Vampire Ground-Finch,Geospiza septentrionalis,Passeriformes,Thraupidae (Tanagers and Allies),, 29306,species,shbgrf2,Genovesa Ground-Finch,Geospiza acutirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29307,species,shbgrf3,Sharp-beaked Ground-Finch,Geospiza difficilis,Passeriformes,Thraupidae (Tanagers and Allies),, 29308,species,cocfin3,Common Cactus-Finch,Geospiza scandens,Passeriformes,Thraupidae (Tanagers and Allies),, 29313,species,megfin1,Medium Ground-Finch,Geospiza fortis,Passeriformes,Thraupidae (Tanagers and Allies),, 29316,species,larcaf2,Espa–ola Cactus-Finch,Geospiza conirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29316.2,species,gencaf1,Genovesa Cactus-Finch,Geospiza propinqua,Passeriformes,Thraupidae (Tanagers and Allies),, 29317.3,spuh,geospi1,Geospiza sp.,Geospiza sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 29317.6,spuh,galfin1,galapagos finch sp.,Geospiza/Camarhynchus/Platyspiza/Certhidea sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 29318,species,yesgro2,Yellow-shouldered Grosbeak,Parkerthraustes humeralis,Passeriformes,Thraupidae (Tanagers and Allies),, 29350,species,mccfin1,Many-colored Chaco Finch,Saltatricula multicolor,Passeriformes,Thraupidae (Tanagers and Allies),, 29350.5,species,bltsal1,Black-throated Saltator,Saltatricula atricollis,Passeriformes,Thraupidae (Tanagers and Allies),, 29351,species,butsal1,Buff-throated Saltator,Saltator maximus,Passeriformes,Thraupidae (Tanagers and Allies),, 29357,species,blwsal1,Black-winged Saltator,Saltator atripennis,Passeriformes,Thraupidae (Tanagers and Allies),, 29360,species,blhsal1,Black-headed Saltator,Saltator atriceps,Passeriformes,Thraupidae (Tanagers and Allies),, 29362.06,species,orisal1,Orinocan Saltator,Saltator orenocensis,Passeriformes,Thraupidae (Tanagers and Allies),, 29362.09,species,grasal1,Grayish Saltator,Saltator coerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, 29362.1,issf,grasal2,Grayish Saltator (Middle American),Saltator coerulescens [grandis Group],Passeriformes,Thraupidae (Tanagers and Allies),,grasal1 29362.17,issf,grasal3,Grayish Saltator (Grayish),Saltator coerulescens [coerulescens Group],Passeriformes,Thraupidae (Tanagers and Allies),,grasal1 29362.25,species,strsal1,Streaked Saltator,Saltator striatipectus,Passeriformes,Thraupidae (Tanagers and Allies),, 29362.36,species,leasal1,Lesser Antillean Saltator,Saltator albicollis,Passeriformes,Thraupidae (Tanagers and Allies),, 29362.39,species,grwsal1,Green-winged Saltator,Saltator similis,Passeriformes,Thraupidae (Tanagers and Allies),, 29362.42,species,blcsal1,Black-cowled Saltator,Saltator nigriceps,Passeriformes,Thraupidae (Tanagers and Allies),, 29362.43,species,thbsal1,Thick-billed Saltator,Saltator maxillosus,Passeriformes,Thraupidae (Tanagers and Allies),, 29372.2,species,gobsal1,Golden-billed Saltator,Saltator aurantiirostris,Passeriformes,Thraupidae (Tanagers and Allies),, 29372.68,species,massal1,Masked Saltator,Saltator cinctus,Passeriformes,Thraupidae (Tanagers and Allies),, 29372.8,species,slcgro1,Slate-colored Grosbeak,Saltator grossus,Passeriformes,Thraupidae (Tanagers and Allies),, 29372.88,species,bltgro2,Black-throated Grosbeak,Saltator fuliginosus,Passeriformes,Thraupidae (Tanagers and Allies),, 29374.9,spuh,saltat1,saltator sp.,Saltator sp.,Passeriformes,Thraupidae (Tanagers and Allies),, 29375,species,tanfin1,Tanager Finch,Oreothraupis arremonops,Passeriformes,Passerellidae (New World Buntings and Sparrows),New World Sparrows, 29375.02,species,ytbtan1,Yellow-throated Chlorospingus,Chlorospingus flavigularis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.04,issf,yetbut1,Yellow-throated Chlorospingus (Drab-breasted),Chlorospingus flavigularis hypophaeus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,ytbtan1 29375.06,issf,yetbut2,Yellow-throated Chlorospingus (Yellow-throated),Chlorospingus flavigularis flavigularis/marginatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,ytbtan1 29375.08,species,shbbut1,Short-billed Chlorospingus,Chlorospingus parvirostris,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.1,species,atbtan1,Ashy-throated Chlorospingus,Chlorospingus canigularis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.12,issf,astbut1,Ashy-throated Chlorospingus (Olive-crowned),Chlorospingus canigularis olivaceiceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),,atbtan1 29375.14,issf,astbut2,Ashy-throated Chlorospingus (Ashy-throated),Chlorospingus canigularis [canigularis Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,atbtan1 29375.16,species,scbtan1,Sooty-capped Chlorospingus,Chlorospingus pileatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.18,species,cobtan1,Common Chlorospingus,Chlorospingus flavopectus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.2,issf,combut1,Common Chlorospingus (Northeast Mexico),Chlorospingus flavopectus ophthalmicus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.22,issf,combut3,Common Chlorospingus (Southwest Mexico),Chlorospingus flavopectus albifrons,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.24,issf,combut4,Common Chlorospingus (Middle America),Chlorospingus flavopectus [postocularis Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.26,issf,combut2,Common Chlorospingus (Central Panama),Chlorospingus flavopectus punctulatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.28,issf,combut5,Common Chlorospingus (Venezuela),Chlorospingus flavopectus [venezuelanus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.3,issf,combut6,Common Chlorospingus (Northern Andes),Chlorospingus flavopectus [flavopectus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.32,issf,combut7,Common Chlorospingus (cinereocephalus),Chlorospingus flavopectus cinereocephalus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.34,issf,combut8,Common Chlorospingus (Southern Peru),Chlorospingus flavopectus peruvianus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.36,issf,combut9,Common Chlorospingus (Northern Bolivia),Chlorospingus flavopectus bolivianus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.38,issf,combut10,Common Chlorospingus (Southern Bolivia),Chlorospingus flavopectus fulvigularis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.4,issf,combut11,Common Chlorospingus (Argentina),Chlorospingus flavopectus argentinus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,cobtan1 29375.42,species,tabtan1,Tacarcuna Chlorospingus,Chlorospingus tacarcunae,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.44,species,pibtan1,Pirre Chlorospingus,Chlorospingus inornatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.46,species,dubtan1,Dusky Chlorospingus,Chlorospingus semifuscus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.48,species,ygbtan1,Yellow-green Chlorospingus,Chlorospingus flavovirens,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29375.5,spuh,chloro1,Chlorospingus sp.,Chlorospingus sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29376,species,tumspa1,Tumbes Sparrow,Rhynchospiza stolzmanni,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29377,species,stcspa1,Stripe-capped Sparrow,Rhynchospiza strigiceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29377.2,species,ruwspa,Rufous-winged Sparrow,Peucaea carpalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29378,species,citspa1,Cinnamon-tailed Sparrow,Peucaea sumichrasti,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29476,species,sthspa1,Stripe-headed Sparrow,Peucaea ruficauda,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29477,species,blcspa1,Black-chested Sparrow,Peucaea humeralis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29478,species,brispa1,Bridled Sparrow,Peucaea mystacalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29479,species,botspa,Botteri's Sparrow,Peucaea botterii,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29480,issf,botspa1,Botteri's Sparrow (Botteri's),Peucaea botterii [botterii Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,botspa 29490,issf,botspa2,Botteri's Sparrow (Peten),Peucaea botterii [petenica Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,botspa 29493,species,casspa,Cassin's Sparrow,Peucaea cassinii,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29497,slash,y00646,Botteri's/Cassin's Sparrow,Peucaea botterii/cassinii,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29498,species,bacspa,Bachman's Sparrow,Peucaea aestivalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29498.5,spuh,peucae1,Peucaea sp.,Peucaea sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29499,species,graspa,Grasshopper Sparrow,Ammodramus savannarum,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29503,species,graspa1,Grassland Sparrow,Ammodramus humeralis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29504,species,yebspa1,Yellow-browed Sparrow,Ammodramus aurifrons,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29505,species,baispa,Baird's Sparrow,Ammodramus bairdii,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29506,species,henspa,Henslow's Sparrow,Ammodramus henslowii,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29507,species,lecspa,LeConte's Sparrow,Ammodramus leconteii,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29508,species,nstspa,Nelson's Sparrow,Ammodramus nelsoni,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29509,issf,nstspa1,Nelson's Sparrow (Interior),Ammodramus nelsoni nelsoni/alter,Passeriformes,Passerellidae (New World Buntings and Sparrows),,nstspa 29510,issf,nstspa2,Nelson's Sparrow (Atlantic Coast),Ammodramus nelsoni subvirgatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,nstspa 29511,species,sstspa,Saltmarsh Sparrow,Ammodramus caudacutus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29512,hybrid,x00450,Nelson's x Saltmarsh Sparrow (hybrid),Ammodramus nelsoni x caudacutus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29513,slash,shtspa,Nelson's/Saltmarsh Sparrow (Sharp-tailed Sparrow),Ammodramus nelsoni/caudacutus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29514,species,seaspa,Seaside Sparrow,Ammodramus maritimus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29515,issf,seaspa1,Seaside Sparrow (Atlantic),Ammodramus maritimus maritimus/macgillivraii,Passeriformes,Passerellidae (New World Buntings and Sparrows),,seaspa 29516,issf,dusspa1,Seaside Sparrow (Dusky),Ammodramus maritimus nigrescens,Passeriformes,Passerellidae (New World Buntings and Sparrows),,seaspa 29517,issf,seaspa2,Seaside Sparrow (Gulf of Mexico),Ammodramus maritimus [sennetti Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,seaspa 29518,issf,cssspa1,Seaside Sparrow (Cape Sable),Ammodramus maritimus mirabilis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,seaspa 29519,spuh,ammodr1,Ammodramus sp.,Ammodramus sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29537,species,olispa,Olive Sparrow,Arremonops rufivirgatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29538,issf,olispa1,Olive Sparrow (Olive),Arremonops rufivirgatus [rufivirgatus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,olispa 29544,issf,olispa2,Olive Sparrow (Pacific),Arremonops rufivirgatus [superciliosus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,olispa 29550,species,grbspa1,Green-backed Sparrow,Arremonops chloronotus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29550.2,slash,y00921,Olive/Green-backed Sparrow,Arremonops rufivirgatus/chloronotus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29552,species,blsspa1,Black-striped Sparrow,Arremonops conirostris,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29552.5,species,tocspa1,Tocuyo Sparrow,Arremonops tocuyensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29553,species,amtspa,American Tree Sparrow,Spizelloides arborea,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29554,species,chispa,Chipping Sparrow,Spizella passerina,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29719,species,clcspa,Clay-colored Sparrow,Spizella pallida,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29720,hybrid,x00198,Chipping x Clay-colored Sparrow (hybrid),Spizella passerina x pallida,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29723,species,bkcspa,Black-chinned Sparrow,Spizella atrogularis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29726,species,fiespa,Field Sparrow,Spizella pusilla,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29727,hybrid,x00200,Clay-colored x Field Sparrow (hybrid),Spizella pallida x pusilla,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29728,species,brespa,Brewer's Sparrow,Spizella breweri,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29729,issf,brespa1,Brewer's Sparrow (breweri),Spizella breweri breweri,Passeriformes,Passerellidae (New World Buntings and Sparrows),,brespa 29730,issf,timspa3,Brewer's Sparrow (Timberline),Spizella breweri taverneri,Passeriformes,Passerellidae (New World Buntings and Sparrows),,brespa 29734.5,hybrid,x00201,Black-chinned x Brewer's Sparrow (hybrid),Spizella atrogularis x breweri,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29734.7,hybrid,x00199,Clay-colored x Brewer's Sparrow (hybrid),Spizella pallida x breweri,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29734.8,species,worspa,Worthen's Sparrow,Spizella wortheni,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29735,spuh,spizel1,Spizella sp.,Spizella sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29735.2,spuh,spizel,American Tree Sparrow/Spizella sp.,Spizelloides/Spizella sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29743,species,bktspa,Black-throated Sparrow,Amphispiza bilineata,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29744,species,fisspa,Five-striped Sparrow,Amphispiza quinquestriata,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29745,species,larspa,Lark Sparrow,Chondestes grammacus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29761,species,larbun,Lark Bunting,Calamospiza melanocorys,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29763,species,sthbrf3,Costa Rican Brushfinch,Arremon costaricensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29765,species,sthbrf4,Sierra Nevada Brushfinch,Arremon basilicus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29767,species,sthbrf5,Perija Brushfinch,Arremon perijanus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29769,species,sthbrf1,Black-headed Brushfinch,Arremon atricapillus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29771,species,sthbrf6,Caracas Brushfinch,Arremon phaeopleurus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29773,species,sthbrf7,Paria Brushfinch,Arremon phygas,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29775,species,sthbrf8,Gray-browed Brushfinch,Arremon assimilis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29777,species,sthbrf2,White-browed Brushfinch,Arremon torquatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29779,spuh,shbfin1,stripe-headed brushfinch sp.,Arremon sp. (torquatus complex),Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29781,species,orbspa1,Orange-billed Sparrow,Arremon aurantiirostris,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29781.2,issf,orbspa2,Orange-billed Sparrow (aurantiirostris Group),Arremon aurantiirostris [aurantiirostris Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,orbspa1 29781.4,issf,orbspa3,Orange-billed Sparrow (erythrorhynchus),Arremon aurantiirostris erythrorhynchus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,orbspa1 29781.6,issf,orbspa4,Orange-billed Sparrow (spectabilis),Arremon aurantiirostris spectabilis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,orbspa1 29783,species,blcspa2,Black-capped Sparrow,Arremon abeillei,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29783.2,issf,bkcspa1,Black-capped Sparrow (Black-capped),Arremon abeillei abeillei,Passeriformes,Passerellidae (New World Buntings and Sparrows),,blcspa2 29783.4,issf,bkcspa2,Black-capped Sparrow (Mara–on),Arremon abeillei nigriceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),,blcspa2 29785,species,gowspa1,Golden-winged Sparrow,Arremon schlegeli,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29787,species,pecspa1,Pectoral Sparrow,Arremon taciturnus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29787.2,issf,pecspa2,Pectoral Sparrow (Yellow-mandibled),Arremon taciturnus axillaris,Passeriformes,Passerellidae (New World Buntings and Sparrows),,pecspa1 29787.4,issf,pecspa3,Pectoral Sparrow (Pectoral),Arremon taciturnus taciturnus/nigrirostris,Passeriformes,Passerellidae (New World Buntings and Sparrows),,pecspa1 29789,species,safspa1,Sao Francisco Sparrow,Arremon franciscanus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29791,species,hacspa1,Half-collared Sparrow,Arremon semitorquatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29793,species,sabspa1,Saffron-billed Sparrow,Arremon flavirostris,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29795,species,gsbfin1,Green-striped Brushfinch,Arremon virenticeps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29797,species,ccbfin,Chestnut-capped Brushfinch,Arremon brunneinucha,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29799,issf,chcbrf2,Chestnut-capped Brushfinch (Plain-breasted),Arremon brunneinucha apertus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,ccbfin 29801,issf,chcbrf1,Chestnut-capped Brushfinch (Chestnut-capped),Arremon brunneinucha [brunneinucha Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,ccbfin 29803,species,soffin1,Sooty-faced Finch,Arremon crassirostris,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29805,species,olifin1,Olive Finch,Arremon castaneiceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29840,species,foxspa,Fox Sparrow,Passerella iliaca,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29841,issf,foxsp2,Fox Sparrow (Sooty),Passerella iliaca [unalaschcensis Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,foxspa 29849,issf,foxsp4,Fox Sparrow (Thick-billed),Passerella iliaca [megarhyncha Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,foxspa 29855,issf,foxsp3,Fox Sparrow (Slate-colored),Passerella iliaca [schistacea Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,foxspa 29861,issf,foxsp1,Fox Sparrow (Red),Passerella iliaca iliaca/zaboria,Passeriformes,Passerellidae (New World Buntings and Sparrows),,foxspa 29958,species,daejun,Dark-eyed Junco,Junco hyemalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29958.5,form,daejun5,Dark-eyed Junco (Slate-colored/cismontanus),Junco hyemalis hyemalis/carolinensis/cismontanus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29959,issf,slcjun,Dark-eyed Junco (Slate-colored),Junco hyemalis hyemalis/carolinensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29962,issf,daejun1,Dark-eyed Junco (cismontanus),Junco hyemalis cismontanus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29963,issf,orejun,Dark-eyed Junco (Oregon),Junco hyemalis [oreganus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29972,issf,pisjun,Dark-eyed Junco (Pink-sided),Junco hyemalis mearnsi,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29972.5,intergrade,daejun3,Dark-eyed Junco (Oregon x Pink-sided),Junco hyemalis oreganus x mearnsi,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29974,issf,whwjun,Dark-eyed Junco (White-winged),Junco hyemalis aikeni,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29974.5,intergrade,daejun7,Dark-eyed Junco (Pink-sided x White-winged),Junco hyemalis mearnsi x aikeni,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29975,issf,gyhjun,Dark-eyed Junco (Gray-headed),Junco hyemalis caniceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29975.3,intergrade,daejun8,Dark-eyed Junco (Oregon x Gray-headed),Junco hyemalis oreganus x caniceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29975.5,intergrade,daejun4,Dark-eyed Junco (Pink-sided x Gray-headed),Junco hyemalis mearnsi x caniceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29976,issf,rebjun1,Dark-eyed Junco (Red-backed),Junco hyemalis dorsalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29976.5,intergrade,daejun6,Dark-eyed Junco (Gray-headed x Red-backed),Junco hyemalis caniceps x dorsalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,daejun 29977,species,daejun2,Guadalupe Junco,Junco insularis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29978,species,yeejun,Yellow-eyed Junco,Junco phaeonotus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29979,issf,yeejun1,Yellow-eyed Junco (Mexican),Junco phaeonotus phaeonotus/palliatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,yeejun 29983,issf,yeejun3,Yellow-eyed Junco (Chiapas),Junco phaeonotus fulvescens,Passeriformes,Passerellidae (New World Buntings and Sparrows),,yeejun 29984.01,issf,yeejun4,Yellow-eyed Junco (Guatemalan),Junco phaeonotus alticola,Passeriformes,Passerellidae (New World Buntings and Sparrows),,yeejun 29984.015,hybrid,x00869,Dark-eyed x Yellow-eyed Junco (hybrid),Junco hyemalis x phaeonotus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.02,slash,y00333,Dark-eyed/Yellow-eyed Junco,Junco hyemalis/phaeonotus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.025,species,yeejun2,Baird's Junco,Junco bairdi,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.03,species,voljun1,Volcano Junco,Junco vulcani,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.04,species,rucspa1,Rufous-collared Sparrow,Zonotrichia capensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.05,species,whcspa,White-crowned Sparrow,Zonotrichia leucophrys,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.06,form,whcspa2,White-crowned Sparrow (Dark-lored),Zonotrichia leucophrys leucophrys/oriantha,Passeriformes,Passerellidae (New World Buntings and Sparrows),,whcspa 29984.07,issf,ewcspa1,White-crowned Sparrow (leucophrys),Zonotrichia leucophrys leucophrys,Passeriformes,Passerellidae (New World Buntings and Sparrows),,whcspa 29984.08,issf,mwcspa1,White-crowned Sparrow (oriantha),Zonotrichia leucophrys oriantha,Passeriformes,Passerellidae (New World Buntings and Sparrows),,whcspa 29984.09,issf,gwcspa,White-crowned Sparrow (Gambel's),Zonotrichia leucophrys gambelii,Passeriformes,Passerellidae (New World Buntings and Sparrows),,whcspa 29984.1,form,whcspa3,White-crowned Sparrow (Yellow-billed),Zonotrichia leucophrys nuttalli/pugetensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,whcspa 29984.11,issf,nwcspa,White-crowned Sparrow (nuttalli),Zonotrichia leucophrys nuttalli,Passeriformes,Passerellidae (New World Buntings and Sparrows),,whcspa 29984.12,issf,pswspa1,White-crowned Sparrow (pugetensis),Zonotrichia leucophrys pugetensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,whcspa 29984.13,species,gocspa,Golden-crowned Sparrow,Zonotrichia atricapilla,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.14,hybrid,x00053,White-crowned x Golden-crowned Sparrow (hybrid),Zonotrichia leucophrys x atricapilla,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.15,species,harspa,Harris's Sparrow,Zonotrichia querula,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.16,hybrid,x00752,American Tree x Harris's Sparrow (hybrid),Spizelloides arborea x Zonotrichia querula,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.162,hybrid,x00900,White-crowned x Harris's Sparrow (hybrid),Zonotrichia leucophrys x querula,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.17,species,whtspa,White-throated Sparrow,Zonotrichia albicollis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.18,hybrid,x00451,White-crowned x White-throated Sparrow (hybrid),Zonotrichia leucophrys x albicollis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.19,slash,y00332,White-crowned/White-throated Sparrow,Zonotrichia leucophrys/albicollis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.2,hybrid,x00720,Golden-crowned x White-throated Sparrow (hybrid),Zonotrichia atricapilla x albicollis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.21,spuh,zonotr1,Zonotrichia sp.,Zonotrichia sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.22,hybrid,x00039,Dark-eyed Junco x White-throated Sparrow (hybrid),Junco hyemalis x Zonotrichia albicollis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.23,species,sagspa1,Sagebrush Sparrow,Artemisiospiza nevadensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.24,species,belspa2,Bell's Sparrow,Artemisiospiza belli,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.25,issf,belspa1,Bell's Sparrow (belli),Artemisiospiza belli belli,Passeriformes,Passerellidae (New World Buntings and Sparrows),,belspa2 29984.26,issf,belspa3,Bell's Sparrow (canescens),Artemisiospiza belli canescens,Passeriformes,Passerellidae (New World Buntings and Sparrows),,belspa2 29984.27,issf,scsspa1,Bell's Sparrow (clementeae),Artemisiospiza belli clementeae,Passeriformes,Passerellidae (New World Buntings and Sparrows),,belspa2 29984.28,issf,sagspa2,Bell's Sparrow (cinerea),Artemisiospiza belli cinerea,Passeriformes,Passerellidae (New World Buntings and Sparrows),,belspa2 29984.29,slash,sagspa,Sagebrush/Bell's Sparrow (Sage Sparrow),Artemisiospiza nevadensis/belli,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.3,species,strspa1,Striped Sparrow,Oriturus superciliosus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.31,species,vesspa,Vesper Sparrow,Pooecetes gramineus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.32,species,savspa,Savannah Sparrow,Passerculus sandwichensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.33,issf,savspa4,Savannah Sparrow (Savannah),Passerculus sandwichensis [sandwichensis Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,savspa 29984.34,issf,ipsspa,Savannah Sparrow (Ipswich),Passerculus sandwichensis princeps,Passeriformes,Passerellidae (New World Buntings and Sparrows),,savspa 29984.35,issf,bldspa,Savannah Sparrow (Belding's),Passerculus sandwichensis [guttatus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,savspa 29984.36,issf,savspa3,Savannah Sparrow (San Benito),Passerculus sandwichensis sanctorum,Passeriformes,Passerellidae (New World Buntings and Sparrows),,savspa 29984.37,issf,labspa,Savannah Sparrow (Large-billed),Passerculus sandwichensis rostratus/atratus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,savspa 29984.38,species,simspa1,Sierra Madre Sparrow,Xenospiza baileyi,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.39,species,sonspa,Song Sparrow,Melospiza melodia,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.4,issf,sonspa2,Song Sparrow (melodia/atlantica),Melospiza melodia melodia/atlantica,Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.41,issf,sonspa6,Song Sparrow (sanaka/maxima),Melospiza melodia sanaka/maxima,Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.42,issf,sonspa4,Song Sparrow (rufina Group),Melospiza melodia [rufina Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.43,issf,sonspa7,Song Sparrow (montana/merrilli),Melospiza melodia montana/merrilli,Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.44,issf,sonspa5,Song Sparrow (heermanni Group),Melospiza melodia [heermanni Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.45,issf,sonspa8,Song Sparrow (samuelis),Melospiza melodia samuelis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.46,issf,sonspa9,Song Sparrow (pusillula),Melospiza melodia pusillula,Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.47,issf,sonspa1,Song Sparrow (fallax Group),Melospiza melodia [fallax Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.48,issf,sonspa3,Song Sparrow (mexicana Group),Melospiza melodia [mexicana Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,sonspa 29984.49,species,linspa,Lincoln's Sparrow,Melospiza lincolnii,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.5,species,swaspa,Swamp Sparrow,Melospiza georgiana,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.51,hybrid,x00702,Song x Swamp Sparrow (hybrid),Melospiza melodia x georgiana,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.52,slash,y00688,Lincoln's/Swamp Sparrow,Melospiza lincolnii/georgiana,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.53,species,laffin1,Large-footed Finch,Pezopetes capitalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.54,species,zapspa1,Zapata Sparrow,Torreornis inexpectata,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.55,species,rcgspa1,Rusty-crowned Ground-Sparrow,Melozone kieneri,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.56,species,cantow,Canyon Towhee,Melozone fusca,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.57,species,whttow1,White-throated Towhee,Melozone albicollis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.58,species,abetow,Abert's Towhee,Melozone aberti,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.585,hybrid,x00870,Canyon x Abert's Towhee (hybrid),Melozone fusca x aberti,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.59,slash,y00331,Canyon/Abert's Towhee,Melozone fusca/aberti,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.6,species,caltow,California Towhee,Melozone crissalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.61,species,wegspa1,White-eared Ground-Sparrow,Melozone leucotis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.6105,issf,whegrs1,White-eared Ground-Sparrow (Gray-crowned),Melozone leucotis occipitalis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,wegspa1 29984.611,issf,whegrs2,White-eared Ground-Sparrow (White-eared),Melozone leucotis leucotis/nigrior,Passeriformes,Passerellidae (New World Buntings and Sparrows),,wegspa1 29984.63,species,pregrs1,White-faced Ground-Sparrow,Melozone biarcuata,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.64,species,pregrs2,Cabanis's Ground-Sparrow,Melozone cabanisi,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.65,species,russpa1,Rusty Sparrow,Aimophila rufescens,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.66,species,rucspa,Rufous-crowned Sparrow,Aimophila ruficeps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.67,species,oaxspa1,Oaxaca Sparrow,Aimophila notosticta,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.68,species,gnttow,Green-tailed Towhee,Pipilo chlorurus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.69,species,spotow,Spotted Towhee,Pipilo maculatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.7,issf,spotow1,Spotted Towhee (oregonus Group),Pipilo maculatus [oregonus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,spotow 29984.71,issf,spotow5,Spotted Towhee (arcticus),Pipilo maculatus arcticus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,spotow 29984.72,issf,spotow2,Spotted Towhee (maculatus Group),Pipilo maculatus [maculatus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,spotow 29984.73,issf,spotow3,Spotted Towhee (Olive-backed),Pipilo maculatus macronyx,Passeriformes,Passerellidae (New World Buntings and Sparrows),,spotow 29984.74,issf,spotow4,Spotted Towhee (Socorro),Pipilo maculatus socorroensis,Passeriformes,Passerellidae (New World Buntings and Sparrows),,spotow 29984.75,hybrid,x00706,Green-tailed x Spotted Towhee (hybrid),Pipilo chlorurus x maculatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.76,species,eastow,Eastern Towhee,Pipilo erythrophthalmus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.77,issf,eastow1,Eastern Towhee (Red-eyed),Pipilo erythrophthalmus erythrophthalmus/canaster,Passeriformes,Passerellidae (New World Buntings and Sparrows),,eastow 29984.78,issf,eastow2,Eastern Towhee (White-eyed),Pipilo erythrophthalmus alleni/rileyi,Passeriformes,Passerellidae (New World Buntings and Sparrows),,eastow 29984.79,hybrid,x00446,Spotted x Eastern Towhee (hybrid),Pipilo maculatus x erythrophthalmus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.8,slash,y00226,Spotted/Eastern Towhee (Rufous-sided Towhee),Pipilo maculatus/erythrophthalmus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.81,species,coltow1,Collared Towhee,Pipilo ocai,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.82,hybrid,x00445,Spotted x Collared Towhee (hybrid),Pipilo maculatus x ocai,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.83,spuh,towhee1,towhee sp.,Melozone/Pipilo sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.84,species,yetfin1,Yellow-thighed Finch,Pselliophorus tibialis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.85,species,yegfin1,Yellow-green Finch,Pselliophorus luteoviridis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.87,species,rcbfin1,Rufous-capped Brushfinch,Atlapetes pileatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.88,species,wnbfin1,White-naped Brushfinch,Atlapetes albinucha,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.89,issf,whnbrf1,White-naped Brushfinch (White-naped),Atlapetes albinucha albinucha,Passeriformes,Passerellidae (New World Buntings and Sparrows),,wnbfin1 29984.9,issf,whnbrf2,White-naped Brushfinch (Yellow-throated),Atlapetes albinucha [gutturalis Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,wnbfin1 29984.91,species,mobfin1,Moustached Brushfinch,Atlapetes albofrenatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.912,issf,moubru1,Moustached Brushfinch (Moustached),Atlapetes albofrenatus albofrenatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,mobfin1 29984.914,issf,moubru2,Moustached Brushfinch (Merida),Atlapetes albofrenatus meridae,Passeriformes,Passerellidae (New World Buntings and Sparrows),,mobfin1 29984.92,species,tebfin1,Tepui Brushfinch,Atlapetes personatus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.93,species,smbfin1,Santa Marta Brushfinch,Atlapetes melanocephalus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.94,species,obbfin1,Ochre-breasted Brushfinch,Atlapetes semirufus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.95,species,yehbrf1,Yellow-headed Brushfinch,Atlapetes flaviceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.96,species,dhbfin1,Dusky-headed Brushfinch,Atlapetes fuscoolivaceus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.97,species,wrbfin1,White-rimmed Brushfinch,Atlapetes leucopis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.98,species,whbfin1,White-headed Brushfinch,Atlapetes albiceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29984.99,species,rebfin1,Rufous-eared Brushfinch,Atlapetes rufigenis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985,species,trbfin1,Tricolored Brushfinch,Atlapetes tricolor,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.01,issf,tribrf1,Tricolored Brushfinch (Choco),Atlapetes tricolor crassus,Passeriformes,Passerellidae (New World Buntings and Sparrows),,trbfin1 29985.02,issf,tribrf2,Tricolored Brushfinch (Tricolored),Atlapetes tricolor tricolor,Passeriformes,Passerellidae (New World Buntings and Sparrows),,trbfin1 29985.03,species,slbfin2,Slaty Brushfinch,Atlapetes schistaceus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.033,issf,slabru1,Slaty Brushfinch (Slaty),Atlapetes schistaceus [schistaceus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,slbfin2 29985.036,issf,slabru2,Slaty Brushfinch (Taczanowski's),Atlapetes schistaceus taczanowskii,Passeriformes,Passerellidae (New World Buntings and Sparrows),,slbfin2 29985.04,species,pnbfin1,Pale-naped Brushfinch,Atlapetes pallidinucha,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.05,species,antbrf1,Antioquia Brushfinch,Atlapetes blancae,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.06,species,yebbrf1,Yellow-breasted Brushfinch,Atlapetes latinuchus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.063,issf,yebbru1,Yellow-breasted Brushfinch (nigrifrons),Atlapetes latinuchus nigrifrons,Passeriformes,Passerellidae (New World Buntings and Sparrows),,yebbrf1 29985.066,issf,yebbru2,Yellow-breasted Brushfinch (Yellow-breasted),Atlapetes latinuchus [latinuchus Group],Passeriformes,Passerellidae (New World Buntings and Sparrows),,yebbrf1 29985.07,species,wwbfin1,White-winged Brushfinch,Atlapetes leucopterus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.08,issf,whwbrf1,White-winged Brushfinch (White-winged),Atlapetes leucopterus leucopterus/dresseri,Passeriformes,Passerellidae (New World Buntings and Sparrows),,wwbfin1 29985.09,issf,whwbrf2,White-winged Brushfinch (Paynter's),Atlapetes leucopterus paynteri,Passeriformes,Passerellidae (New World Buntings and Sparrows),,wwbfin1 29985.1,species,phbfin1,Pale-headed Brushfinch,Atlapetes pallidiceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.11,species,bcbfin1,Bay-crowned Brushfinch,Atlapetes seebohmi,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.12,species,rbbfin1,Rusty-bellied Brushfinch,Atlapetes nationi,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.13,species,apubrf1,Apurimac Brushfinch,Atlapetes forbesi,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.14,species,bksbrf1,Black-spectacled Brushfinch,Atlapetes melanopsis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.15,species,vilbrf1,Vilcabamba Brushfinch,Atlapetes terborghi,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.16,species,cuzbrf1,Cuzco Brushfinch,Atlapetes canigenis,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.17,species,bkfbrf1,Black-faced Brushfinch,Atlapetes melanolaemus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.18,species,rnbfin1,Bolivian Brushfinch,Atlapetes rufinucha,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.19,species,fhbfin1,Fulvous-headed Brushfinch,Atlapetes fulviceps,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.2,species,ysbfin1,Yellow-striped Brushfinch,Atlapetes citrinellus,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29985.21,spuh,brush-1,Atlapetes sp.,Atlapetes sp.,Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29986,spuh,sparro1,sparrow sp.,Passerellidae sp. (sparrow sp.),Passeriformes,Passerellidae (New World Buntings and Sparrows),, 29993,species,crebun1,Crested Bunting,Melophus lathami,Passeriformes,Emberizidae (Old World Buntings),Old World Buntings, 29994,species,slabun1,Slaty Bunting,Latoucheornis siemsseni,Passeriformes,Emberizidae (Old World Buntings),, 29995,species,yellow2,Yellowhammer,Emberiza citrinella,Passeriformes,Emberizidae (Old World Buntings),, 29999,species,pinbun,Pine Bunting,Emberiza leucocephalos,Passeriformes,Emberizidae (Old World Buntings),, 29999.2,hybrid,x00823,Yellowhammer x Pine Bunting (hybrid),Emberiza citrinella x leucocephalos,Passeriformes,Emberizidae (Old World Buntings),, 30002,species,cirbun1,Cirl Bunting,Emberiza cirlus,Passeriformes,Emberizidae (Old World Buntings),, 30005,species,tibbun1,Tibetan Bunting,Emberiza koslowi,Passeriformes,Emberizidae (Old World Buntings),, 30006,species,rocbun1,Rock Bunting,Emberiza cia,Passeriformes,Emberizidae (Old World Buntings),, 30011,species,godbun1,Godlewski's Bunting,Emberiza godlewskii,Passeriformes,Emberizidae (Old World Buntings),, 30019,species,meabun1,Meadow Bunting,Emberiza cioides,Passeriformes,Emberizidae (Old World Buntings),, 30025,species,rubbun1,Rufous-backed Bunting,Emberiza jankowskii,Passeriformes,Emberizidae (Old World Buntings),, 30026,species,gyhbun1,Gray-necked Bunting,Emberiza buchanani,Passeriformes,Emberizidae (Old World Buntings),, 30030,species,cinbun1,Cinereous Bunting,Emberiza cineracea,Passeriformes,Emberizidae (Old World Buntings),, 30031,issf,cinbun2,Cinereous Bunting (Gray-bellied),Emberiza cineracea cineracea,Passeriformes,Emberizidae (Old World Buntings),,cinbun1 30032,issf,cinbun3,Cinereous Bunting (Yellow-bellied),Emberiza cineracea semenowi,Passeriformes,Emberizidae (Old World Buntings),,cinbun1 30033,species,ortbun1,Ortolan Bunting,Emberiza hortulana,Passeriformes,Emberizidae (Old World Buntings),, 30033.2,slash,y00922,Gray-hooded/Ortolan Bunting,Emberiza buchanani/hortulana,Passeriformes,Emberizidae (Old World Buntings),, 30034,species,chbbun1,Chestnut-breasted Bunting,Emberiza stewarti,Passeriformes,Emberizidae (Old World Buntings),, 30035,species,crebun2,Cretzschmar's Bunting,Emberiza caesia,Passeriformes,Emberizidae (Old World Buntings),, 30036,species,houbun3,House Bunting,Emberiza sahari,Passeriformes,Emberizidae (Old World Buntings),, 30040,species,houbun2,Striolated Bunting,Emberiza striolata,Passeriformes,Emberizidae (Old World Buntings),, 30042,species,lalbun1,Lark-like Bunting,Emberiza impetuani,Passeriformes,Emberizidae (Old World Buntings),, 30046,species,cibbun1,Cinnamon-breasted Bunting,Emberiza tahapisi,Passeriformes,Emberizidae (Old World Buntings),, 30051.5,species,gosbun1,Gosling's Bunting,Emberiza goslingi,Passeriformes,Emberizidae (Old World Buntings),, 30052,species,socbun1,Socotra Bunting,Emberiza socotrana,Passeriformes,Emberizidae (Old World Buntings),, 30053,species,capbun1,Cape Bunting,Emberiza capensis,Passeriformes,Emberizidae (Old World Buntings),, 30064,species,vinbun1,Vincent's Bunting,Emberiza vincenti,Passeriformes,Emberizidae (Old World Buntings),, 30065,species,ocrbun1,Ochre-rumped Bunting,Emberiza yessoensis,Passeriformes,Emberizidae (Old World Buntings),, 30068,species,tribun1,Tristram's Bunting,Emberiza tristrami,Passeriformes,Emberizidae (Old World Buntings),, 30069,species,chebun2,Chestnut-eared Bunting,Emberiza fucata,Passeriformes,Emberizidae (Old World Buntings),, 30073,species,yebbun1,Yellow-browed Bunting,Emberiza chrysophrys,Passeriformes,Emberizidae (Old World Buntings),, 30074,species,litbun,Little Bunting,Emberiza pusilla,Passeriformes,Emberizidae (Old World Buntings),, 30075,species,rusbun,Rustic Bunting,Emberiza rustica,Passeriformes,Emberizidae (Old World Buntings),, 30078,species,yetbun1,Yellow-throated Bunting,Emberiza elegans,Passeriformes,Emberizidae (Old World Buntings),, 30082,species,yebbun,Yellow-breasted Bunting,Emberiza aureola,Passeriformes,Emberizidae (Old World Buntings),, 30085,species,gobbun1,Golden-breasted Bunting,Emberiza flaviventris,Passeriformes,Emberizidae (Old World Buntings),, 30090,species,sombun1,Somali Bunting,Emberiza poliopleura,Passeriformes,Emberizidae (Old World Buntings),, 30091,species,brrbun1,Brown-rumped Bunting,Emberiza affinis,Passeriformes,Emberizidae (Old World Buntings),, 30096,species,cabbun1,Cabanis's Bunting,Emberiza cabanisi,Passeriformes,Emberizidae (Old World Buntings),, 30097,issf,cabbun2,Cabanis's Bunting (Cabanis's),Emberiza cabanisi cabanisi,Passeriformes,Emberizidae (Old World Buntings),,cabbun1 30098,issf,cabbun3,Cabanis's Bunting (Three-streaked),Emberiza cabanisi orientalis,Passeriformes,Emberizidae (Old World Buntings),,cabbun1 30099,species,chebun1,Chestnut Bunting,Emberiza rutila,Passeriformes,Emberizidae (Old World Buntings),, 30100,species,blhbun1,Black-headed Bunting,Emberiza melanocephala,Passeriformes,Emberizidae (Old World Buntings),, 30101,species,rehbun1,Red-headed Bunting,Emberiza bruniceps,Passeriformes,Emberizidae (Old World Buntings),, 30101.1,hybrid,x00871,Black-headed x Red-headed Bunting (hybrid),Emberiza melanocephala x bruniceps,Passeriformes,Emberizidae (Old World Buntings),, 30101.2,slash,y00923,Black-headed/Red-headed Bunting,Emberiza melanocephala/bruniceps,Passeriformes,Emberizidae (Old World Buntings),, 30102,species,yelbun1,Yellow Bunting,Emberiza sulphurata,Passeriformes,Emberizidae (Old World Buntings),, 30103,species,blfbun1,Black-faced Bunting,Emberiza spodocephala,Passeriformes,Emberizidae (Old World Buntings),, 30104,issf,bkfbun1,Black-faced Bunting (spodocephala/sordida),Emberiza spodocephala spodocephala/sordida,Passeriformes,Emberizidae (Old World Buntings),,blfbun1 30106.5,issf,bkfbun2,Black-faced Bunting (personata),Emberiza spodocephala personata,Passeriformes,Emberizidae (Old World Buntings),,blfbun1 30107,species,grybun,Gray Bunting,Emberiza variabilis,Passeriformes,Emberizidae (Old World Buntings),, 30108,species,palbun,Pallas's Bunting,Emberiza pallasi,Passeriformes,Emberizidae (Old World Buntings),, 30112,species,reebun,Reed Bunting,Emberiza schoeniclus,Passeriformes,Emberizidae (Old World Buntings),, 30127.5,slash,y01015,Pallas's/Reed Bunting,Emberiza pallasi/schoeniclus,Passeriformes,Emberizidae (Old World Buntings),, 30128,species,corbun1,Corn Bunting,Emberiza calandra,Passeriformes,Emberizidae (Old World Buntings),, 30129,spuh,emberi1,Emberiza sp.,Emberiza sp.,Passeriformes,Emberizidae (Old World Buntings),, 30129.1,species,wectan1,Western Chat-Tanager,Calyptophilus tertius,Passeriformes,Calyptophilidae (Chat-Tanagers),Chat-Tanagers and Hispaniolan Tanagers, 30129.2,species,eactan1,Eastern Chat-Tanager,Calyptophilus frugivorus,Passeriformes,Calyptophilidae (Chat-Tanagers),, 30129.3,species,bcptan1,Black-crowned Palm-Tanager,Phaenicophilus palmarum,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, 30129.4,species,gcptan1,Gray-crowned Palm-Tanager,Phaenicophilus poliocephalus,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, 30129.5,hybrid,x00901,Black-crowned x Gray-crowned Palm-Tanager (hybrid),Phaenicophilus palmarum x poliocephalus,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, 30129.6,species,whwwar1,White-winged Warbler,Xenoligea montana,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, 30129.7,species,grtwar1,Green-tailed Warbler,Microligea palustris,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, 30129.8,species,purtan1,Puerto Rican Tanager,Nesospingus speculiferus,Passeriformes,Nesospingidae (Puerto Rican Tanager),Puerto Rican Tanager, 30129.9,species,wesspi,Western Spindalis,Spindalis zena,Passeriformes,Spindalidae (Spindalises),Spindalises, 30130,issf,wesspi2,Western Spindalis (Bahamas Black-backed),Spindalis zena zena,Passeriformes,Spindalidae (Spindalises),,wesspi 30130.1,issf,wesspi3,Western Spindalis (Bahamas Green-backed),Spindalis zena townsendi,Passeriformes,Spindalidae (Spindalises),,wesspi 30130.2,issf,wesspi4,Western Spindalis (Cuban),Spindalis zena pretrei,Passeriformes,Spindalidae (Spindalises),,wesspi 30130.21,issf,wesspi5,Western Spindalis (Grand Cayman I.),Spindalis zena salvini,Passeriformes,Spindalidae (Spindalises),,wesspi 30130.22,issf,wesspi6,Western Spindalis (Cozumel I.),Spindalis zena benedicti,Passeriformes,Spindalidae (Spindalises),,wesspi 30130.23,species,jamspi,Jamaican Spindalis,Spindalis nigricephala,Passeriformes,Spindalidae (Spindalises),, 30130.3,species,hisspi,Hispaniolan Spindalis,Spindalis dominicensis,Passeriformes,Spindalidae (Spindalises),, 30130.4,species,purspi,Puerto Rican Spindalis,Spindalis portoricensis,Passeriformes,Spindalidae (Spindalises),, 30130.45,species,wrenth1,Wrenthrush,Zeledonia coronata,Passeriformes,Zeledoniidae (Wrenthrush),Wrenthrush, 30130.5,species,yehwar1,Yellow-headed Warbler,Teretistris fernandinae,Passeriformes,Teretistridae (Cuban Warblers),Cuban Warblers, 30130.55,species,oriwar1,Oriente Warbler,Teretistris fornsi,Passeriformes,Teretistridae (Cuban Warblers),, 30130.6,species,yebcha,Yellow-breasted Chat,Icteria virens,Passeriformes,Icteriidae (Yellow-breasted Chat),Yellow-breasted Chat, 30130.7,issf,yebcha1,Yellow-breasted Chat (virens),Icteria virens virens,Passeriformes,Icteriidae (Yellow-breasted Chat),,yebcha 30130.8,issf,yebcha2,Yellow-breasted Chat (auricollis),Icteria virens auricollis,Passeriformes,Icteriidae (Yellow-breasted Chat),,yebcha 30130.9,species,duftan1,Dusky-faced Tanager,Mitrospingus cassinii,Passeriformes,Mitrospingidae (Mitrospingid Tanagers),Mitrospingid Tanagers, 30131,species,olbtan1,Olive-backed Tanager,Mitrospingus oleagineus,Passeriformes,Mitrospingidae (Mitrospingid Tanagers),, 30137,species,rottan1,Rose-throated Tanager,Piranga roseogularis,Passeriformes,Cardinalidae (Cardinals and Allies),"Cardinals, Grosbeaks, and Allies", 30141,species,heptan,Hepatic Tanager,Piranga flava,Passeriformes,Cardinalidae (Cardinals and Allies),, 30142,issf,heptan1,Hepatic Tanager (Northern),Piranga flava [hepatica Group],Passeriformes,Cardinalidae (Cardinals and Allies),,heptan 30148,issf,heptan2,Hepatic Tanager (Highland),Piranga flava [lutea Group],Passeriformes,Cardinalidae (Cardinals and Allies),,heptan 30155,issf,heptan3,Hepatic Tanager (Lowland),Piranga flava [flava Group],Passeriformes,Cardinalidae (Cardinals and Allies),,heptan 30160,species,sumtan,Summer Tanager,Piranga rubra,Passeriformes,Cardinalidae (Cardinals and Allies),, 30160.2,slash,y00924,Hepatic/Summer Tanager,Piranga flava/rubra,Passeriformes,Cardinalidae (Cardinals and Allies),, 30163,species,scatan,Scarlet Tanager,Piranga olivacea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30163.2,slash,y00925,Summer/Scarlet Tanager,Piranga rubra/olivacea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30164,species,westan,Western Tanager,Piranga ludoviciana,Passeriformes,Cardinalidae (Cardinals and Allies),, 30164.2,hybrid,x00824,Summer x Western Tanager (hybrid),Piranga rubra x ludoviciana,Passeriformes,Cardinalidae (Cardinals and Allies),, 30164.4,hybrid,x00825,Scarlet x Western Tanager (hybrid),Piranga olivacea x ludoviciana,Passeriformes,Cardinalidae (Cardinals and Allies),, 30166,species,flctan,Flame-colored Tanager,Piranga bidentata,Passeriformes,Cardinalidae (Cardinals and Allies),, 30166.2,hybrid,x00826,Hepatic x Flame-colored Tanager (hybrid),Piranga flava x bidentata,Passeriformes,Cardinalidae (Cardinals and Allies),, 30170.5,hybrid,x00444,Western x Flame-colored Tanager (hybrid),Piranga ludoviciana x bidentata,Passeriformes,Cardinalidae (Cardinals and Allies),, 30171,species,whwtan1,White-winged Tanager,Piranga leucoptera,Passeriformes,Cardinalidae (Cardinals and Allies),, 30176,species,rehtan1,Red-headed Tanager,Piranga erythrocephala,Passeriformes,Cardinalidae (Cardinals and Allies),, 30179,species,rehtan2,Red-hooded Tanager,Piranga rubriceps,Passeriformes,Cardinalidae (Cardinals and Allies),, 30180,spuh,pirang1,tanager sp. (Piranga sp.),Piranga sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, 30181,species,rcatan1,Red-crowned Ant-Tanager,Habia rubica,Passeriformes,Cardinalidae (Cardinals and Allies),, 30181.2,issf,recant1,Red-crowned Ant-Tanager (Northern),Habia rubica [rubicoides Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rcatan1 30181.4,issf,recant2,Red-crowned Ant-Tanager (Scarlet-throated),Habia rubica [rubra Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rcatan1 30181.6,issf,recant3,Red-crowned Ant-Tanager (Red),Habia rubica rubica/bahiae,Passeriformes,Cardinalidae (Cardinals and Allies),,rcatan1 30199,species,rtatan1,Red-throated Ant-Tanager,Habia fuscicauda,Passeriformes,Cardinalidae (Cardinals and Allies),, 30200,issf,retant1,Red-throated Ant-Tanager (Salvin's),Habia fuscicauda [salvini Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rtatan1 30204,issf,retant2,Red-throated Ant-Tanager (Red-throated),Habia fuscicauda [fuscicauda Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rtatan1 30208,species,soatan1,Sooty Ant-Tanager,Habia gutturalis,Passeriformes,Cardinalidae (Cardinals and Allies),, 30209,species,bcatan1,Black-cheeked Ant-Tanager,Habia atrimaxillaris,Passeriformes,Cardinalidae (Cardinals and Allies),, 30210,species,cratan1,Crested Ant-Tanager,Habia cristata,Passeriformes,Cardinalidae (Cardinals and Allies),, 30211,spuh,ant-ta1,ant-tanager sp.,Habia sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, 30212,species,olitan1,Carmiol's Tanager,Chlorothraupis carmioli,Passeriformes,Cardinalidae (Cardinals and Allies),, 30213,issf,cartan1,Carmiol's Tanager (Carmiol's),Chlorothraupis carmioli [carmioli Group],Passeriformes,Cardinalidae (Cardinals and Allies),,olitan1 30217,issf,cartan2,Carmiol's Tanager (Yellow-lored),Chlorothraupis carmioli frenata,Passeriformes,Cardinalidae (Cardinals and Allies),,olitan1 30218,species,lestan,Lemon-spectacled Tanager,Chlorothraupis olivacea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30219,species,ocbtan1,Ochre-breasted Tanager,Chlorothraupis stolzmanni,Passeriformes,Cardinalidae (Cardinals and Allies),, 30219.2,spuh,chloro4,Chlorothraupis sp.,Chlorothraupis sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, 30222,species,blfgro1,Black-faced Grosbeak,Caryothraustes poliogaster,Passeriformes,Cardinalidae (Cardinals and Allies),, 30225,species,yeggro1,Yellow-green Grosbeak,Caryothraustes canadensis,Passeriformes,Cardinalidae (Cardinals and Allies),, 30230,species,rabgro1,Red-and-black Grosbeak,Periporphyrus erythromelas,Passeriformes,Cardinalidae (Cardinals and Allies),, 30231,species,crcgro,Crimson-collared Grosbeak,Rhodothraupis celaeno,Passeriformes,Cardinalidae (Cardinals and Allies),, 30232,species,vercar1,Vermilion Cardinal,Cardinalis phoeniceus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30233,species,norcar,Northern Cardinal,Cardinalis cardinalis,Passeriformes,Cardinalidae (Cardinals and Allies),, 30234,issf,norcar1,Northern Cardinal (Common),Cardinalis cardinalis [cardinalis Group],Passeriformes,Cardinalidae (Cardinals and Allies),,norcar 30252,issf,norcar2,Northern Cardinal (Long-crested),Cardinalis cardinalis carneus,Passeriformes,Cardinalidae (Cardinals and Allies),,norcar 30253,species,pyrrhu,Pyrrhuloxia,Cardinalis sinuatus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30254.7,hybrid,x00774,Northern Cardinal x Pyrrhuloxia (hybrid),Cardinalis cardinalis x sinuatus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30255,slash,y00647,Northern Cardinal/Pyrrhuloxia,Cardinalis cardinalis/sinuatus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30257,species,yelgro,Yellow Grosbeak,Pheucticus chrysopeplus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30258,issf,yelgro2,Yellow Grosbeak (Northern),Pheucticus chrysopeplus chrysopeplus/dilutus,Passeriformes,Cardinalidae (Cardinals and Allies),,yelgro 30261,issf,yelgro1,Yellow Grosbeak (Guatemalan),Pheucticus chrysopeplus aurantiacus,Passeriformes,Cardinalidae (Cardinals and Allies),,yelgro 30262,species,gobgro1,Golden Grosbeak,Pheucticus chrysogaster,Passeriformes,Cardinalidae (Cardinals and Allies),, 30265,species,bltgro1,Black-thighed Grosbeak,Pheucticus tibialis,Passeriformes,Cardinalidae (Cardinals and Allies),, 30266,species,blbgro2,Black-backed Grosbeak,Pheucticus aureoventris,Passeriformes,Cardinalidae (Cardinals and Allies),, 30267,issf,bkbgro2,Black-backed Grosbeak (Merida),Pheucticus aureoventris meridensis,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 30268,issf,bkbgro3,Black-backed Grosbeak (Yellow-throated),Pheucticus aureoventris crissalis,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 30269,issf,bkbgro4,Black-backed Grosbeak (Yellow-rumped),Pheucticus aureoventris uropygialis/terminalis,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 30272,issf,bkbgro1,Black-backed Grosbeak (Black-rumped),Pheucticus aureoventris aureoventris,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 30273,species,robgro,Rose-breasted Grosbeak,Pheucticus ludovicianus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30275,species,bkhgro,Black-headed Grosbeak,Pheucticus melanocephalus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30277.5,hybrid,x00448,Rose-breasted x Black-headed Grosbeak (hybrid),Pheucticus ludovicianus x melanocephalus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30278,slash,y00334,Rose-breasted/Black-headed Grosbeak,Pheucticus ludovicianus/melanocephalus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30278.5,spuh,pheuct1,Pheucticus sp.,Pheucticus sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, 30279,species,rebcha1,Red-breasted Chat,Granatellus venustus,Passeriformes,Cardinalidae (Cardinals and Allies),, 30280,issf,rebcha2,Red-breasted Chat (Red-breasted),Granatellus venustus venustus,Passeriformes,Cardinalidae (Cardinals and Allies),,rebcha1 30281,issf,rebcha3,Red-breasted Chat (Tres Marias),Granatellus venustus francescae,Passeriformes,Cardinalidae (Cardinals and Allies),,rebcha1 30282,species,grtcha1,Gray-throated Chat,Granatellus sallaei,Passeriformes,Cardinalidae (Cardinals and Allies),, 30285,species,robcha1,Rose-breasted Chat,Granatellus pelzelni,Passeriformes,Cardinalidae (Cardinals and Allies),, 30285.2,issf,robcha2,Rose-breasted Chat (Rose-breasted),Granatellus pelzelni pelzelni,Passeriformes,Cardinalidae (Cardinals and Allies),,robcha1 30285.4,issf,robcha3,Rose-breasted Chat (Rose-bellied),Granatellus pelzelni paraensis,Passeriformes,Cardinalidae (Cardinals and Allies),,robcha1 30288,species,blusee1,Blue Seedeater,Amaurospiza concolor,Passeriformes,Cardinalidae (Cardinals and Allies),, 30289,issf,blusee2,Blue Seedeater (Slate-blue),Amaurospiza concolor relicta,Passeriformes,Cardinalidae (Cardinals and Allies),,blusee1 30290,issf,blusee3,Blue Seedeater (Blue),Amaurospiza concolor concolor,Passeriformes,Cardinalidae (Cardinals and Allies),,blusee1 30290.2,issf,blusee4,Blue Seedeater (Equatorial),Amaurospiza concolor aequatorialis,Passeriformes,Cardinalidae (Cardinals and Allies),,blusee1 30293,species,carsee1,Carrizal Seedeater,Amaurospiza carrizalensis,Passeriformes,Cardinalidae (Cardinals and Allies),, 30294,species,blbsee3,Blackish-blue Seedeater,Amaurospiza moesta,Passeriformes,Cardinalidae (Cardinals and Allies),, 30295,species,glbgro1,Glaucous-blue Grosbeak,Cyanoloxia glaucocaerulea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30296,species,blbgro1,Blue-black Grosbeak,Cyanoloxia cyanoides,Passeriformes,Cardinalidae (Cardinals and Allies),, 30296.2,issf,bubgro1,Blue-black Grosbeak (Blue-black),Cyanoloxia cyanoides [cyanoides Group],Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro1 30296.4,issf,bubgro2,Blue-black Grosbeak (Amazonian),Cyanoloxia cyanoides rothschildii,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro1 30301,species,ultgro1,Ultramarine Grosbeak,Cyanoloxia brissonii,Passeriformes,Cardinalidae (Cardinals and Allies),, 30307,species,blubun,Blue Bunting,Cyanocompsa parellina,Passeriformes,Cardinalidae (Cardinals and Allies),, 30308,issf,blubun1,Blue Bunting (Middle America),Cyanocompsa parellina parellina/beneplacita,Passeriformes,Cardinalidae (Cardinals and Allies),,blubun 30311,issf,blubun2,Blue Bunting (West Mexico),Cyanocompsa parellina indigotica,Passeriformes,Cardinalidae (Cardinals and Allies),,blubun 30312,species,blugrb1,Blue Grosbeak,Passerina caerulea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30320,species,lazbun,Lazuli Bunting,Passerina amoena,Passeriformes,Cardinalidae (Cardinals and Allies),, 30322,species,indbun,Indigo Bunting,Passerina cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30322.2,hybrid,x00872,Blue Grosbeak x Indigo Bunting (hybrid),Passerina caerulea x cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30322.5,hybrid,ixlbun,Lazuli x Indigo Bunting (hybrid),Passerina amoena x cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30323,slash,y00335,Lazuli/Indigo Bunting,Passerina amoena/cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, 30324,species,robbun1,Rose-bellied Bunting,Passerina rositae,Passeriformes,Cardinalidae (Cardinals and Allies),, 30325,species,orbbun1,Orange-breasted Bunting,Passerina leclancherii,Passeriformes,Cardinalidae (Cardinals and Allies),, 30328,species,varbun,Varied Bunting,Passerina versicolor,Passeriformes,Cardinalidae (Cardinals and Allies),, 30333,species,paibun,Painted Bunting,Passerina ciris,Passeriformes,Cardinalidae (Cardinals and Allies),, 30333.2,hybrid,x00902,Varied x Painted Bunting (hybrid),Passerina versicolor x ciris,Passeriformes,Cardinalidae (Cardinals and Allies),, 30336,spuh,buntin,Passerina sp.,Passerina sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, 30337,species,dickci,Dickcissel,Spiza americana,Passeriformes,Cardinalidae (Cardinals and Allies),, 30337.5,species,yehbla,Yellow-headed Blackbird,Xanthocephalus xanthocephalus,Passeriformes,Icteridae (Troupials and Allies),Blackbirds, 30338,species,boboli,Bobolink,Dolichonyx oryzivorus,Passeriformes,Icteridae (Troupials and Allies),, 30338.005,species,wesmea,Western Meadowlark,Sturnella neglecta,Passeriformes,Icteridae (Troupials and Allies),, 30338.006,species,easmea,Eastern Meadowlark,Sturnella magna,Passeriformes,Icteridae (Troupials and Allies),, 30338.007,issf,easmea3,Eastern Meadowlark (Cuban),Sturnella magna hippocrepis,Passeriformes,Icteridae (Troupials and Allies),,easmea 30338.008,issf,easmea2,Eastern Meadowlark (Eastern),Sturnella magna [magna Group],Passeriformes,Icteridae (Troupials and Allies),,easmea 30338.009,issf,lilmea2,Eastern Meadowlark (Lilian's),Sturnella magna [lilianae Group],Passeriformes,Icteridae (Troupials and Allies),,easmea 30338.01,hybrid,x00827,Western x Eastern Meadowlark (hybrid),Sturnella neglecta x magna,Passeriformes,Icteridae (Troupials and Allies),, 30338.011,slash,meadow,Western/Eastern Meadowlark,Sturnella neglecta/magna,Passeriformes,Icteridae (Troupials and Allies),, 30338.012,species,rebbla1,Red-breasted Meadowlark,Sturnella militaris,Passeriformes,Icteridae (Troupials and Allies),, 30338.013,species,whbbla2,White-browed Meadowlark,Sturnella superciliaris,Passeriformes,Icteridae (Troupials and Allies),, 30338.014,species,permea1,Peruvian Meadowlark,Sturnella bellicosa,Passeriformes,Icteridae (Troupials and Allies),, 30338.015,species,pammea1,Pampas Meadowlark,Sturnella defilippii,Passeriformes,Icteridae (Troupials and Allies),, 30338.016,species,lotmea1,Long-tailed Meadowlark,Sturnella loyca,Passeriformes,Icteridae (Troupials and Allies),, 30338.0165,species,yebcac1,Yellow-billed Cacique,Amblycercus holosericeus,Passeriformes,Icteridae (Troupials and Allies),, 30338.017,issf,yebcac2,Yellow-billed Cacique (Prevost's),Amblycercus holosericeus holosericeus/flavirostris,Passeriformes,Icteridae (Troupials and Allies),,yebcac1 30338.018,issf,yebcac3,Yellow-billed Cacique (Chapman's),Amblycercus holosericeus australis,Passeriformes,Icteridae (Troupials and Allies),,yebcac1 30338.019,species,yewcac1,Yellow-winged Cacique,Cassiculus melanicterus,Passeriformes,Icteridae (Troupials and Allies),, 30338.0191,species,ruboro1,Russet-backed Oropendola,Psarocolius angustifrons,Passeriformes,Icteridae (Troupials and Allies),, 30338.0192,issf,ruboro2,Russet-backed Oropendola (Russet-backed),Psarocolius angustifrons [angustifrons Group],Passeriformes,Icteridae (Troupials and Allies),,ruboro1 30338.0193,issf,ruboro3,Russet-backed Oropendola (Green-billed),Psarocolius angustifrons oleagineus,Passeriformes,Icteridae (Troupials and Allies),,ruboro1 30338.0194,species,dugoro1,Dusky-green Oropendola,Psarocolius atrovirens,Passeriformes,Icteridae (Troupials and Allies),, 30338.0195,species,greoro1,Green Oropendola,Psarocolius viridis,Passeriformes,Icteridae (Troupials and Allies),, 30338.01955,species,creoro1,Crested Oropendola,Psarocolius decumanus,Passeriformes,Icteridae (Troupials and Allies),, 30338.01956,species,chhoro1,Chestnut-headed Oropendola,Psarocolius wagleri,Passeriformes,Icteridae (Troupials and Allies),, 30338.01957,species,monoro1,Montezuma Oropendola,Psarocolius montezuma,Passeriformes,Icteridae (Troupials and Allies),, 30338.01958,species,blaoro1,Black Oropendola,Psarocolius guatimozinus,Passeriformes,Icteridae (Troupials and Allies),, 30338.01959,species,bauoro2,Baudo Oropendola,Psarocolius cassini,Passeriformes,Icteridae (Troupials and Allies),, 30338.01961,species,olioro1,Olive Oropendola,Psarocolius bifasciatus,Passeriformes,Icteridae (Troupials and Allies),, 30338.01961,issf,olioro2,Olive Oropendola (Amazonian),Psarocolius bifasciatus yuracares/neivae,Passeriformes,Icteridae (Troupials and Allies),,olioro1 30338.01962,issf,olioro3,Olive Oropendola (Para),Psarocolius bifasciatus bifasciatus,Passeriformes,Icteridae (Troupials and Allies),,olioro1 30338.01963,spuh,oropen1,oropendola sp.,Psarocolius sp.,Passeriformes,Icteridae (Troupials and Allies),, 30338.02,species,sobcac1,Solitary Black Cacique,Cacicus solitarius,Passeriformes,Icteridae (Troupials and Allies),, 30338.021,species,gowcac1,Golden-winged Cacique,Cacicus chrysopterus,Passeriformes,Icteridae (Troupials and Allies),, 30338.022,species,ecucac1,Ecuadorian Cacique,Cacicus sclateri,Passeriformes,Icteridae (Troupials and Allies),, 30338.023,species,selcac1,Selva Cacique,Cacicus koepckeae,Passeriformes,Icteridae (Troupials and Allies),, 30338.024,species,scrcac1,Scarlet-rumped Cacique,Cacicus uropygialis,Passeriformes,Icteridae (Troupials and Allies),, 30338.025,issf,scrcac2,Scarlet-rumped Cacique (Scarlet-rumped),Cacicus uropygialis microrhynchus,Passeriformes,Icteridae (Troupials and Allies),,scrcac1 30338.026,issf,scrcac3,Scarlet-rumped Cacique (Pacific),Cacicus uropygialis pacificus,Passeriformes,Icteridae (Troupials and Allies),,scrcac1 30338.027,issf,scrcac4,Scarlet-rumped Cacique (Subtropical),Cacicus uropygialis uropygialis,Passeriformes,Icteridae (Troupials and Allies),,scrcac1 30338.028,species,yercac1,Yellow-rumped Cacique,Cacicus cela,Passeriformes,Icteridae (Troupials and Allies),, 30338.029,issf,yercac3,Yellow-rumped Cacique (Western),Cacicus cela flavicrissus/vitellinus,Passeriformes,Icteridae (Troupials and Allies),,yercac1 30338.03,issf,yercac2,Yellow-rumped Cacique (Amazonian),Cacicus cela cela,Passeriformes,Icteridae (Troupials and Allies),,yercac1 30338.031,species,moucac1,Mountain Cacique,Cacicus chrysonotus,Passeriformes,Icteridae (Troupials and Allies),, 30338.032,issf,moucac2,Mountain Cacique (Golden-shouldered),Cacicus chrysonotus leucoramphus/peruvianus,Passeriformes,Icteridae (Troupials and Allies),,moucac1 30338.033,issf,moucac3,Mountain Cacique (Bolivian),Cacicus chrysonotus chrysonotus,Passeriformes,Icteridae (Troupials and Allies),,moucac1 30338.034,species,batoro1,Band-tailed Cacique,Cacicus latirostris,Passeriformes,Icteridae (Troupials and Allies),, 30338.035,species,rercac1,Red-rumped Cacique,Cacicus haemorrhous,Passeriformes,Icteridae (Troupials and Allies),, 30338.036,species,casoro2,Casqued Cacique,Cacicus oseryi,Passeriformes,Icteridae (Troupials and Allies),, 30338.037,spuh,caciqu1,cacique sp.,Cacicus sp.,Passeriformes,Icteridae (Troupials and Allies),, 30338.05,species,graori1,Hispaniolan Oriole,Icterus dominicensis,Passeriformes,Icteridae (Troupials and Allies),, 30338.051,species,graori2,Cuban Oriole,Icterus melanopsis,Passeriformes,Icteridae (Troupials and Allies),, 30338.052,species,graori3,Bahama Oriole,Icterus northropi,Passeriformes,Icteridae (Troupials and Allies),, 30338.053,species,graori4,Puerto Rican Oriole,Icterus portoricensis,Passeriformes,Icteridae (Troupials and Allies),, 30338.054,species,stlori1,St. Lucia Oriole,Icterus laudabilis,Passeriformes,Icteridae (Troupials and Allies),, 30338.055,species,monori1,Montserrat Oriole,Icterus oberi,Passeriformes,Icteridae (Troupials and Allies),, 30338.056,species,marori1,Martinique Oriole,Icterus bonana,Passeriformes,Icteridae (Troupials and Allies),, 30338.057,species,bkvori,Black-vented Oriole,Icterus wagleri,Passeriformes,Icteridae (Troupials and Allies),, 30338.058,species,bawori1,Bar-winged Oriole,Icterus maculialatus,Passeriformes,Icteridae (Troupials and Allies),, 30338.059,species,bkcori,Black-cowled Oriole,Icterus prosthemelas,Passeriformes,Icteridae (Troupials and Allies),, 30338.06,species,orcori,Orchard Oriole,Icterus spurius,Passeriformes,Icteridae (Troupials and Allies),, 30338.061,issf,orcori2,Orchard Oriole (Orchard),Icterus spurius spurius,Passeriformes,Icteridae (Troupials and Allies),,orcori 30338.062,issf,orcori3,Orchard Oriole (Fuertes's),Icterus spurius fuertesi,Passeriformes,Icteridae (Troupials and Allies),,orcori 30338.063,species,hooori,Hooded Oriole,Icterus cucullatus,Passeriformes,Icteridae (Troupials and Allies),, 30338.064,issf,hooori2,Hooded Oriole (cucullatus/sennetti),Icterus cucullatus cucullatus/sennetti,Passeriformes,Icteridae (Troupials and Allies),,hooori 30338.065,issf,hooori1,Hooded Oriole (nelsoni Group),Icterus cucullatus [nelsoni Group],Passeriformes,Icteridae (Troupials and Allies),,hooori 30338.066,issf,hooori3,Hooded Oriole (igneus),Icterus cucullatus igneus,Passeriformes,Icteridae (Troupials and Allies),,hooori 30338.067,slash,y00488,Orchard/Hooded Oriole,Icterus spurius/cucullatus,Passeriformes,Icteridae (Troupials and Allies),, 30338.068,species,yebori1,Yellow-backed Oriole,Icterus chrysater,Passeriformes,Icteridae (Troupials and Allies),, 30338.069,species,orcori1,Orange-crowned Oriole,Icterus auricapillus,Passeriformes,Icteridae (Troupials and Allies),, 30338.07,species,wheori1,White-edged Oriole,Icterus graceannae,Passeriformes,Icteridae (Troupials and Allies),, 30338.071,species,yetori1,Yellow-tailed Oriole,Icterus mesomelas,Passeriformes,Icteridae (Troupials and Allies),, 30338.072,slash,y00927,White-edged/Yellow-tailed Oriole,Icterus graceannae/mesomelas,Passeriformes,Icteridae (Troupials and Allies),, 30338.073,species,epaori1,Epaulet Oriole,Icterus cayanensis,Passeriformes,Icteridae (Troupials and Allies),, 30338.074,issf,epaori2,Epaulet Oriole (Moriche),Icterus cayanensis chrysocephalus,Passeriformes,Icteridae (Troupials and Allies),,epaori1 30338.075,issf,epaori3,Epaulet Oriole (Epaulet),Icterus cayanensis cayanensis,Passeriformes,Icteridae (Troupials and Allies),,epaori1 30338.076,species,epaori4,Variable Oriole,Icterus pyrrhopterus,Passeriformes,Icteridae (Troupials and Allies),, 30338.077,issf,varori2,Variable Oriole (Yellow-shouldered),Icterus pyrrhopterus tibialis,Passeriformes,Icteridae (Troupials and Allies),,epaori4 30338.078,issf,varori1,Variable Oriole (Chestnut-shouldered),Icterus pyrrhopterus [pyrrhopterus Group],Passeriformes,Icteridae (Troupials and Allies),,epaori4 30338.079,species,ventro1,Venezuelan Troupial,Icterus icterus,Passeriformes,Icteridae (Troupials and Allies),, 30338.08,species,camtro1,Campo Troupial,Icterus jamacaii,Passeriformes,Icteridae (Troupials and Allies),, 30338.081,species,orbtro3,Orange-backed Troupial,Icterus croconotus,Passeriformes,Icteridae (Troupials and Allies),, 30338.082,spuh,troupi1,troupial sp.,Icterus icterus/croconotus/jamacaii,Passeriformes,Icteridae (Troupials and Allies),, 30338.083,species,stbori,Streak-backed Oriole,Icterus pustulatus,Passeriformes,Icteridae (Troupials and Allies),, 30338.084,issf,stbori1,Streak-backed Oriole (West Mexican),Icterus pustulatus [pustulatus Group],Passeriformes,Icteridae (Troupials and Allies),,stbori 30338.085,issf,stbori3,Streak-backed Oriole (Streak-backed),Icterus pustulatus [sclateri Group],Passeriformes,Icteridae (Troupials and Allies),,stbori 30338.086,issf,stbori2,Streak-backed Oriole (Tres Marias Is.),Icterus pustulatus graysonii,Passeriformes,Icteridae (Troupials and Allies),,stbori 30338.087,species,bulori,Bullock's Oriole,Icterus bullockii,Passeriformes,Icteridae (Troupials and Allies),, 30338.088,species,oraori1,Orange Oriole,Icterus auratus,Passeriformes,Icteridae (Troupials and Allies),, 30338.089,species,jamori1,Jamaican Oriole,Icterus leucopteryx,Passeriformes,Icteridae (Troupials and Allies),, 30338.09,species,yelori1,Yellow Oriole,Icterus nigrogularis,Passeriformes,Icteridae (Troupials and Allies),, 30338.091,species,spbori,Spot-breasted Oriole,Icterus pectoralis,Passeriformes,Icteridae (Troupials and Allies),, 30338.092,species,altori,Altamira Oriole,Icterus gularis,Passeriformes,Icteridae (Troupials and Allies),, 30338.093,species,audori,Audubon's Oriole,Icterus graduacauda,Passeriformes,Icteridae (Troupials and Allies),, 30338.094,issf,audori1,Audubon's Oriole (Audubon's),Icterus graduacauda graduacauda/audubonii,Passeriformes,Icteridae (Troupials and Allies),,audori 30338.095,issf,audori2,Audubon's Oriole (Dickey's),Icterus graduacauda dickeyae/nayaritensis,Passeriformes,Icteridae (Troupials and Allies),,audori 30338.096,hybrid,x00449,Altamira x Audubon's Oriole (hybrid),Icterus gularis x graduacauda,Passeriformes,Icteridae (Troupials and Allies),, 30338.097,species,balori,Baltimore Oriole,Icterus galbula,Passeriformes,Icteridae (Troupials and Allies),, 30338.098,hybrid,x00013,Bullock's x Baltimore Oriole (hybrid),Icterus bullockii x galbula,Passeriformes,Icteridae (Troupials and Allies),, 30338.099,slash,y00022,Bullock's/Baltimore Oriole,Icterus bullockii/galbula,Passeriformes,Icteridae (Troupials and Allies),, 30338.1,species,blbori1,Black-backed Oriole,Icterus abeillei,Passeriformes,Icteridae (Troupials and Allies),, 30338.101,hybrid,x00903,Bullock's x Black-backed Oriole (hybrid),Icterus bullockii x abeillei,Passeriformes,Icteridae (Troupials and Allies),, 30338.102,slash,y00630,Bullock's/Black-backed Oriole,Icterus bullockii/abeillei,Passeriformes,Icteridae (Troupials and Allies),, 30338.103,species,scoori,Scott's Oriole,Icterus parisorum,Passeriformes,Icteridae (Troupials and Allies),, 30338.104,spuh,oriole,new world oriole sp.,Icterus sp.,Passeriformes,Icteridae (Troupials and Allies),, 30338.99,species,jambla1,Jamaican Blackbird,Nesopsar nigerrimus,Passeriformes,Icteridae (Troupials and Allies),, 30339,species,rewbla,Red-winged Blackbird,Agelaius phoeniceus,Passeriformes,Icteridae (Troupials and Allies),, 30340,issf,rewbla1,Red-winged Blackbird (Red-winged),Agelaius phoeniceus [phoeniceus Group],Passeriformes,Icteridae (Troupials and Allies),,rewbla 30365,issf,rewbla2,Red-winged Blackbird (California Bicolored),Agelaius phoeniceus californicus/mailliardorum,Passeriformes,Icteridae (Troupials and Allies),,rewbla 30365.6,issf,rewbla3,Red-winged Blackbird (Mexican Bicolored),Agelaius phoeniceus gubernator,Passeriformes,Icteridae (Troupials and Allies),,rewbla 30366,species,resbla1,Red-shouldered Blackbird,Agelaius assimilis,Passeriformes,Icteridae (Troupials and Allies),, 30369,species,tribla,Tricolored Blackbird,Agelaius tricolor,Passeriformes,Icteridae (Troupials and Allies),, 30369.5,slash,y00651,Red-winged/Tricolored Blackbird,Agelaius phoeniceus/tricolor,Passeriformes,Icteridae (Troupials and Allies),, 30370,species,tasbla,Tawny-shouldered Blackbird,Agelaius humeralis,Passeriformes,Icteridae (Troupials and Allies),, 30370.2,slash,y00926,Red-shouldered/Tawny-shouldered Blackbird,Agelaius assimilis/humeralis,Passeriformes,Icteridae (Troupials and Allies),, 30373,species,yesbla1,Yellow-shouldered Blackbird,Agelaius xanthomus,Passeriformes,Icteridae (Troupials and Allies),, 30374,species,scrcow1,Screaming Cowbird,Molothrus rufoaxillaris,Passeriformes,Icteridae (Troupials and Allies),, 30375,species,shicow,Shiny Cowbird,Molothrus bonariensis,Passeriformes,Icteridae (Troupials and Allies),, 30376,slash,y00828,Screaming/Shiny Cowbird,Molothrus rufoaxillaris/bonariensis,Passeriformes,Icteridae (Troupials and Allies),, 30377,species,brocow,Bronzed Cowbird,Molothrus aeneus,Passeriformes,Icteridae (Troupials and Allies),, 30378,issf,brocow1,Bronzed Cowbird (Bronzed),Molothrus aeneus [aeneus Group],Passeriformes,Icteridae (Troupials and Allies),,brocow 30379,issf,brocow2,Bronzed Cowbird (Bronze-brown),Molothrus aeneus armenti,Passeriformes,Icteridae (Troupials and Allies),,brocow 30380,species,bnhcow,Brown-headed Cowbird,Molothrus ater,Passeriformes,Icteridae (Troupials and Allies),, 30381,slash,y00336,Shiny/Brown-headed Cowbird,Molothrus bonariensis/ater,Passeriformes,Icteridae (Troupials and Allies),, 30382,slash,y00337,Bronzed/Brown-headed Cowbird,Molothrus aeneus/ater,Passeriformes,Icteridae (Troupials and Allies),, 30383,species,giacow,Giant Cowbird,Molothrus oryzivorus,Passeriformes,Icteridae (Troupials and Allies),, 30411,species,melbla1,Melodious Blackbird,Dives dives,Passeriformes,Icteridae (Troupials and Allies),, 30411.5,species,scrbla1,Scrub Blackbird,Dives warczewiczi,Passeriformes,Icteridae (Troupials and Allies),, 30412,species,cubbla,Cuban Blackbird,Ptiloxena atroviolacea,Passeriformes,Icteridae (Troupials and Allies),, 30416,species,rusbla,Rusty Blackbird,Euphagus carolinus,Passeriformes,Icteridae (Troupials and Allies),, 30419,species,brebla,Brewer's Blackbird,Euphagus cyanocephalus,Passeriformes,Icteridae (Troupials and Allies),, 30420,slash,y00227,Rusty/Brewer's Blackbird,Euphagus carolinus/cyanocephalus,Passeriformes,Icteridae (Troupials and Allies),, 30421,species,comgra,Common Grackle,Quiscalus quiscula,Passeriformes,Icteridae (Troupials and Allies),, 30422,issf,comgra1,Common Grackle (Purple),Quiscalus quiscula quiscula/stonei,Passeriformes,Icteridae (Troupials and Allies),,comgra 30425,issf,comgra2,Common Grackle (Bronzed),Quiscalus quiscula versicolor,Passeriformes,Icteridae (Troupials and Allies),,comgra 30426,species,botgra,Boat-tailed Grackle,Quiscalus major,Passeriformes,Icteridae (Troupials and Allies),, 30427,issf,botgra1,Boat-tailed Grackle (major),Quiscalus major major,Passeriformes,Icteridae (Troupials and Allies),,botgra 30428,issf,botgra2,Boat-tailed Grackle (torreyi/alabamensis),Quiscalus major torreyi/alabamensis,Passeriformes,Icteridae (Troupials and Allies),,botgra 30431,issf,botgra3,Boat-tailed Grackle (westoni),Quiscalus major westoni,Passeriformes,Icteridae (Troupials and Allies),,botgra 30432,species,grtgra,Great-tailed Grackle,Quiscalus mexicanus,Passeriformes,Icteridae (Troupials and Allies),, 30433,issf,grtgra1,Great-tailed Grackle (Western),Quiscalus mexicanus [graysoni Group],Passeriformes,Icteridae (Troupials and Allies),,grtgra 30437,issf,grtgra2,Great-tailed Grackle (Great-tailed),Quiscalus mexicanus [mexicanus Group],Passeriformes,Icteridae (Troupials and Allies),,grtgra 30440.5,hybrid,x00753,Brewer's Blackbird x Great-tailed Grackle (hybrid),Euphagus cyanocephalus x Quiscalus mexicanus,Passeriformes,Icteridae (Troupials and Allies),, 30441,slash,y00629,Boat-tailed/Great-tailed Grackle,Quiscalus major/mexicanus,Passeriformes,Icteridae (Troupials and Allies),, 30442,species,slbgra1,Slender-billed Grackle,Quiscalus palustris,Passeriformes,Icteridae (Troupials and Allies),, 30443,species,nicgra1,Nicaraguan Grackle,Quiscalus nicaraguensis,Passeriformes,Icteridae (Troupials and Allies),, 30444,species,gragra1,Greater Antillean Grackle,Quiscalus niger,Passeriformes,Icteridae (Troupials and Allies),, 30452,species,cargra1,Carib Grackle,Quiscalus lugubris,Passeriformes,Icteridae (Troupials and Allies),, 30461,spuh,grackl,grackle sp.,Quiscalus sp.,Passeriformes,Icteridae (Troupials and Allies),, 30462,species,rebgra1,Red-bellied Grackle,Hypopyrrhus pyrohypogaster,Passeriformes,Icteridae (Troupials and Allies),, 30463,species,vefgra1,Velvet-fronted Grackle,Lampropsar tanagrinus,Passeriformes,Icteridae (Troupials and Allies),, 30464,species,oribla1,Oriole Blackbird,Gymnomystax mexicanus,Passeriformes,Icteridae (Troupials and Allies),, 30465,species,mougra1,Mountain Grackle,Macroagelaius subalaris,Passeriformes,Icteridae (Troupials and Allies),, 30466,species,gotgra1,Golden-tufted Grackle,Macroagelaius imthurni,Passeriformes,Icteridae (Troupials and Allies),, 30475,species,ausbla1,Austral Blackbird,Curaeus curaeus,Passeriformes,Icteridae (Troupials and Allies),, 30477,species,schbla1,Scarlet-headed Blackbird,Amblyramphus holosericeus,Passeriformes,Icteridae (Troupials and Allies),, 30479,species,forbla1,Forbes's Blackbird,Anumara forbesi,Passeriformes,Icteridae (Troupials and Allies),, 30479.5,species,chobla1,Chopi Blackbird,Gnorimopsar chopi,Passeriformes,Icteridae (Troupials and Allies),, 30479.55,species,bolbla1,Bolivian Blackbird,Oreopsar bolivianus,Passeriformes,Icteridae (Troupials and Allies),, 30480.6,species,bawcow4,Grayish Baywing,Agelaioides badius,Passeriformes,Icteridae (Troupials and Allies),, 30480.7,species,bawcow3,Pale Baywing,Agelaioides fringillarius,Passeriformes,Icteridae (Troupials and Allies),, 30480.8,slash,bawcow2,Grayish/Pale Baywing,Agelaioides badius/fringillarius,Passeriformes,Icteridae (Troupials and Allies),, 30481,species,paebla2,Pale-eyed Blackbird,Agelasticus xanthophthalmus,Passeriformes,Icteridae (Troupials and Allies),, 30482,species,unibla2,Unicolored Blackbird,Agelasticus cyanopus,Passeriformes,Icteridae (Troupials and Allies),, 30487,species,yewbla2,Yellow-winged Blackbird,Agelasticus thilius,Passeriformes,Icteridae (Troupials and Allies),, 30491,species,chcbla2,Chestnut-capped Blackbird,Chrysomus ruficapillus,Passeriformes,Icteridae (Troupials and Allies),, 30494,species,yehbla2,Yellow-hooded Blackbird,Chrysomus icterocephalus,Passeriformes,Icteridae (Troupials and Allies),, 30497,species,sacbla2,Saffron-cowled Blackbird,Xanthopsar flavus,Passeriformes,Icteridae (Troupials and Allies),, 30498,species,yermar1,Yellow-rumped Marshbird,Pseudoleistes guirahuro,Passeriformes,Icteridae (Troupials and Allies),, 30499,species,baymar1,Brown-and-yellow Marshbird,Pseudoleistes virescens,Passeriformes,Icteridae (Troupials and Allies),, 30693,spuh,blackb,blackbird sp.,Icteridae sp.,Passeriformes,Icteridae (Troupials and Allies),, 30694,species,comcha,Common Chaffinch,Fringilla coelebs,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)","Finches, Euphonias, and Allies", 30695,issf,comcha3,Common Chaffinch (Common),Fringilla coelebs [coelebs Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha 30704,issf,comcha5,Common Chaffinch (Azores/Madeira),Fringilla coelebs moreletti/maderensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha 30706,issf,comcha4,Common Chaffinch (Canary Is.),Fringilla coelebs canariensis/ombriosa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha 30708,issf,comcha6,Common Chaffinch (La Palma),Fringilla coelebs palmae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha 30709,issf,comcha1,Common Chaffinch (African),Fringilla coelebs africana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha 30710,issf,comcha2,Common Chaffinch (Tunisian),Fringilla coelebs spodiogenys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha 30711,species,blucha1,Blue Chaffinch,Fringilla teydea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30711.2,issf,blucha2,Blue Chaffinch (Tenerife),Fringilla teydea teydea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,blucha1 30711.4,issf,blucha3,Blue Chaffinch (Gran Canaria),Fringilla teydea polatzeki,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,blucha1 30714,species,brambl,Brambling,Fringilla montifringilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30714.2,slash,y01056,Common Chaffinch/Brambling,Fringilla coelebs/montifringilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30714.3,species,blnchl1,Blue-naped Chlorophonia,Chlorophonia cyanea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30714.4,species,chbchl1,Chestnut-breasted Chlorophonia,Chlorophonia pyrrhophrys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30714.5,species,yecchl1,Yellow-collared Chlorophonia,Chlorophonia flavirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30714.6,species,blcchl1,Blue-crowned Chlorophonia,Chlorophonia occipitalis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30714.7,species,gobchl1,Golden-browed Chlorophonia,Chlorophonia callophrys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30715,species,jameup1,Jamaican Euphonia,Euphonia jamaica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30716,species,plueup1,Plumbeous Euphonia,Euphonia plumbea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30717,species,screup1,Scrub Euphonia,Euphonia affinis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30718,issf,screup2,Scrub Euphonia (Scrub),Euphonia affinis affinis/olmecorum,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,screup1 30721,issf,screup3,Scrub Euphonia (Godman's),Euphonia affinis godmani,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,screup1 30722,species,puteup1,Purple-throated Euphonia,Euphonia chlorotica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30728,species,yeceup1,Yellow-crowned Euphonia,Euphonia luteicapilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30729,species,trieup1,Trinidad Euphonia,Euphonia trinitatis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30730,species,vefeup1,Velvet-fronted Euphonia,Euphonia concinna,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30731,species,orceup1,Orange-crowned Euphonia,Euphonia saturata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30732,species,fineup1,Finsch's Euphonia,Euphonia finschi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30733,species,vioeup1,Violaceous Euphonia,Euphonia violacea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30737,species,thbeup1,Thick-billed Euphonia,Euphonia laniirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30738,issf,thbeup2,Thick-billed Euphonia (Black-tailed),Euphonia laniirostris melanura/crassirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,thbeup1 30741,issf,thbeup3,Thick-billed Euphonia (Thick-billed),Euphonia laniirostris [laniirostris Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,thbeup1 30745,species,yeteup1,Yellow-throated Euphonia,Euphonia hirundinacea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30748,species,gnteup1,Green-throated Euphonia,Euphonia chalybea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30749,species,anteup1,Antillean Euphonia,Euphonia musica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30749.2,issf,anteup2,Antillean Euphonia (Hispaniolan),Euphonia musica musica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,anteup1 30749.4,issf,anteup3,Antillean Euphonia (Puerto Rican),Euphonia musica sclateri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,anteup1 30749.6,issf,anteup4,Antillean Euphonia (Lesser),Euphonia musica flavifrons,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,anteup1 30753,species,eleeup1,Elegant Euphonia,Euphonia elegantissima,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30757,species,goreup1,Golden-rumped Euphonia,Euphonia cyanocephala,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30761,species,fuveup1,Fulvous-vented Euphonia,Euphonia fulvicrissa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30765,species,gobeup1,Golden-bellied Euphonia,Euphonia chrysopasta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30768,species,brgeup1,Bronze-green Euphonia,Euphonia mesochrysa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30772,species,spceup1,Spot-crowned Euphonia,Euphonia imitans,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30773,species,olbeup1,Olive-backed Euphonia,Euphonia gouldi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30776,species,whveup1,White-vented Euphonia,Euphonia minuta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30779,species,taceup1,Tawny-capped Euphonia,Euphonia anneae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30782,species,orbeup1,Orange-bellied Euphonia,Euphonia xanthogaster,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30793,species,rubeup1,Rufous-bellied Euphonia,Euphonia rufiventris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30794,species,goseup1,Golden-sided Euphonia,Euphonia cayennensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30795,species,chbeup1,Chestnut-bellied Euphonia,Euphonia pectoralis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30796,spuh,euphon1,euphonia sp.,Euphonia sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30796.2,species,baygro1,Black-and-yellow Grosbeak,Mycerobas icterioides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30796.4,species,colgro1,Collared Grosbeak,Mycerobas affinis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30796.6,species,spwgro1,Spot-winged Grosbeak,Mycerobas melanozanthos,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30796.8,species,whwgro1,White-winged Grosbeak,Mycerobas carnipes,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30797,spuh,mycero1,Mycerobas sp.,Mycerobas sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30797.1,species,hoogro1,Hooded Grosbeak,Coccothraustes abeillei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30797.2,species,evegro,Evening Grosbeak,Coccothraustes vespertinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30797.4,form,evegro1,Evening Grosbeak (type 1),Coccothraustes vespertinus (type 1),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro 30797.6,form,evegro2,Evening Grosbeak (type 2),Coccothraustes vespertinus (type 2),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro 30797.8,form,evegro3,Evening Grosbeak (type 3),Coccothraustes vespertinus (type 3),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro 30798,form,evegro4,Evening Grosbeak (type 4),Coccothraustes vespertinus (type 4),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro 30798.2,form,evegro5,Evening Grosbeak (Mexican or type 5),Coccothraustes vespertinus (type 5),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro 30798.4,species,hawfin,Hawfinch,Coccothraustes coccothraustes,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30798.6,species,yebgro1,Yellow-billed Grosbeak,Eophona migratoria,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30798.8,species,japgro1,Japanese Grosbeak,Eophona personata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.03,species,poouli,Poo-uli,Melamprosops phaeosoma,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.06,species,akikik,Akikiki,Oreomystis bairdi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.09,species,oahala,Oahu Alauahio,Paroreomyza maculata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.12,species,kakawa,Kakawahie,Paroreomyza flammea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.15,species,mauala,Maui Alauahio,Paroreomyza montana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.18,species,palila,Palila,Loxioides bailleui,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.21,species,layfin,Laysan Finch,Telespiza cantans,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.24,species,nihfin,Nihoa Finch,Telespiza ultima,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.27,species,kongro,Kona Grosbeak,Chloridops kona,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.3,species,lekfin,Lesser Koa-Finch,Rhodacanthis flaviceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.33,species,grkfin,Greater Koa-Finch,Rhodacanthis palmeri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.36,species,ulahaw,Ula-ai-hawane,Ciridops anna,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.39,species,crehon,Akohekohe,Palmeria dolei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.42,species,apapan2,Laysan Honeycreeper,Himatione fraithii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.45,species,apapan,Apapane,Himatione sanguinea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.48,species,iiwi,Iiwi,Drepanis coccinea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.54,hybrid,x00828,Apapane x Iiwi (hybrid),Himatione sanguinea x Drepanis coccinea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.57,species,hawmam1,Hawaii Mamo,Drepanis pacifica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.6,species,blkmam,Black Mamo,Drepanis funerea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.66,species,ou,Ou,Psittirostra psittacea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.69,species,lanhoo,Lanai Hookbill,Dysmorodrepanis munroi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.72,species,maupar,Maui Parrotbill,Pseudonestor xanthophrys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.75,species,nukupu2,Kauai Nukupuu,Hemignathus hanapepe,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.78,species,nukupu3,Oahu Nukupuu,Hemignathus lucidus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.81,species,nukupu1,Maui Nukupuu,Hemignathus affinis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.84,species,akiapo,Akiapolaau,Hemignathus wilsoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.87,species,lesaki,Lesser Akialoa,Akialoa obscura,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.9,species,greaki2,Oahu Akialoa,Akialoa ellisiana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.93,species,greaki4,Kauai Akialoa,Akialoa stejnegeri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30862.96,species,greaki3,Maui-nui Akialoa,Akialoa lanaiensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.02,species,aniani,Anianiau,Magumma parva,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.05,species,hawama,Hawaii Amakihi,Chlorodrepanis virens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.08,issf,hawama1,Hawaii Amakihi (Maui),Chlorodrepanis virens wilsoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hawama 30863.11,issf,hawama2,Hawaii Amakihi (Hawaii),Chlorodrepanis virens virens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hawama 30863.14,species,oahama,Oahu Amakihi,Chlorodrepanis flava,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.17,species,kauama,Kauai Amakihi,Chlorodrepanis stejnegeri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.2,species,greama,Greater Amakihi,Viridonia sagittirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.23,species,hawcre,Hawaii Creeper,Loxops mana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.26,species,akekee,Akekee,Loxops caeruleirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.28,species,akepa1,Hawaii Akepa,Loxops coccineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.32,species,akepa2,Oahu Akepa,Loxops wolstenholmei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.34,species,akepa3,Maui Akepa,Loxops ochraceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.35,spuh,hawhon1,hawaiian honeycreeper sp.,Drepanidinae sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.45,species,comros,Common Rosefinch,Carpodacus erythrinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.55,species,scafin1,Scarlet Finch,Carpodacus sipahi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.65,species,bongro1,Bonin Grosbeak,Carpodacus ferreorostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.75,species,remros1,Red-mantled Rosefinch,Carpodacus rhodochlamys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.85,species,blyros1,Blyth's Rosefinch,Carpodacus grandis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30863.95,species,bearos1,Himalayan Beautiful Rosefinch,Carpodacus pulcherrimus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.01,species,chbros1,Chinese Beautiful Rosefinch,Carpodacus davidianus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.02,species,pirros1,Pink-rumped Rosefinch,Carpodacus waltoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.03,species,darros1,Dark-rumped Rosefinch,Carpodacus edwardsii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.04,species,pibros2,Pink-browed Rosefinch,Carpodacus rodochroa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.05,species,spwros2,Spot-winged Rosefinch,Carpodacus rodopeplus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.06,species,spwros3,Sharpe's Rosefinch,Carpodacus verreauxii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.07,species,vinros2,Vinaceous Rosefinch,Carpodacus vinaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.08,species,vinros3,Taiwan Rosefinch,Carpodacus formosanus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.09,species,sinros1,Sinai Rosefinch,Carpodacus synoicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.1,species,palros3,Pale Rosefinch,Carpodacus stoliczkae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.11,species,tibros1,Tibetan Rosefinch,Carpodacus roborowskii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.12,species,tahmof1,Sillem's Rosefinch,Carpodacus sillemi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.13,species,strros1,Streaked Rosefinch,Carpodacus rubicilloides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.14,species,greros1,Great Rosefinch,Carpodacus rubicilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.15,issf,greros3,Great Rosefinch (Great),Carpodacus rubicilla rubicilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,greros1 30864.16,issf,greros4,Great Rosefinch (Spotted),Carpodacus rubicilla [severtzovi Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,greros1 30864.17,slash,y01016,Streaked/Great Rosefinch,Carpodacus rubicilloides/rubicilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.18,species,lotros1,Long-tailed Rosefinch,Carpodacus sibiricus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.19,species,refros1,Red-fronted Rosefinch,Carpodacus puniceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.2,species,crbfin3,Crimson-browed Finch,Carpodacus subhimachalus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.21,species,palros2,Pallas's Rosefinch,Carpodacus roseus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.22,species,thbros1,Three-banded Rosefinch,Carpodacus trifasciatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.23,species,whbros1,Himalayan White-browed Rosefinch,Carpodacus thura,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.24,species,cwbros1,Chinese White-browed Rosefinch,Carpodacus dubius,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.25,spuh,carpod,rosefinch sp.,Carpodacus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.26,species,pingro,Pine Grosbeak,Pinicola enucleator,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.27,species,brobul1,Brown Bullfinch,Pyrrhula nipalensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.28,issf,brnbul1,Brown Bullfinch (Brown),Pyrrhula nipalensis [nipalensis Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,brobul1 30864.29,issf,brnbul2,Brown Bullfinch (Malay),Pyrrhula nipalensis waterstradti,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,brobul1 30864.3,species,whcbul1,White-cheeked Bullfinch,Pyrrhula leucogenis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.31,species,orabul1,Orange Bullfinch,Pyrrhula aurantiaca,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.32,species,rehbul1,Red-headed Bullfinch,Pyrrhula erythrocephala,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.33,species,gyhbul2,Gray-headed Bullfinch,Pyrrhula erythaca,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.34,slash,y00761,Brown/Gray-headed Bullfinch,Pyrrhula nipalensis/erythaca,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.35,species,eurbul1,Azores Bullfinch,Pyrrhula murina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.36,species,eurbul,Eurasian Bullfinch,Pyrrhula pyrrhula,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.37,issf,eurbul2,Eurasian Bullfinch (Eurasian),Pyrrhula pyrrhula [pyrrhula Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurbul 30864.38,issf,eurbul3,Eurasian Bullfinch (Baikal),Pyrrhula pyrrhula [griseiventris Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurbul 30864.39,species,crwfin2,Crimson-winged Finch,Rhodopechys sanguineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.4,issf,crwfin1,Crimson-winged Finch (African),Rhodopechys sanguineus alienus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,crwfin2 30864.41,issf,crwfin3,Crimson-winged Finch (Eurasian),Rhodopechys sanguineus sanguineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,crwfin2 30864.42,species,trufin2,Trumpeter Finch,Bucanetes githagineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.43,species,monfin2,Mongolian Finch,Bucanetes mongolicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.44,species,blaros1,Blanford's Rosefinch,Agraphospiza rubescens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.45,species,gonfin1,Gold-naped Finch,Pyrrhoplectes epauletta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.46,species,spefin1,Spectacled Finch,Callacanthis burtoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.47,species,dabros1,Dark-breasted Rosefinch,Procarduelis nipalensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.48,species,plmfin1,Plain Mountain-Finch,Leucosticte nemoricola,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.49,species,bhmfin1,Black-headed Mountain-Finch,Leucosticte brandti,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.5,species,asrfin1,Asian Rosy-Finch,Leucosticte arctoa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.51,species,gcrfin,Gray-crowned Rosy-Finch,Leucosticte tephrocotis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.52,issf,gycrof2,Gray-crowned Rosy-Finch (Pribilof Is.),Leucosticte tephrocotis umbrina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin 30864.53,issf,gycrof3,Gray-crowned Rosy-Finch (Aleutian and Kodiak Is.),Leucosticte tephrocotis griseonucha,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin 30864.54,issf,gycrof1,Gray-crowned Rosy-Finch (Hepburn's),Leucosticte tephrocotis littoralis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin 30864.55,issf,gycrof4,Gray-crowned Rosy-Finch (Gray-crowned),Leucosticte tephrocotis [tephrocotis Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin 30864.56,intergrade,gycrof5,Gray-crowned Rosy-Finch (Hepburn's x Gray-crowned),Leucosticte tephrocotis littoralis x tephrocotis Group,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin 30864.57,species,bkrfin,Black Rosy-Finch,Leucosticte atrata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.58,species,bcrfin,Brown-capped Rosy-Finch,Leucosticte australis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30864.59,spuh,rosfin,rosy-finch sp.,Leucosticte sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30866,species,houfin,House Finch,Haemorhous mexicanus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30867,issf,houfin1,House Finch (Common),Haemorhous mexicanus [mexicanus Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,houfin 30878.2,issf,houfin2,House Finch (McGregor's),Haemorhous mexicanus mcgregori,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,houfin 30878.4,species,purfin,Purple Finch,Haemorhous purpureus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30878.6,issf,purfin1,Purple Finch (Eastern),Haemorhous purpureus purpureus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,purfin 30878.7,issf,purfin2,Purple Finch (Western),Haemorhous purpureus californicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,purfin 30878.8,slash,y00338,House/Purple Finch,Haemorhous mexicanus/purpureus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30878.9,species,casfin,Cassin's Finch,Haemorhous cassinii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30878.95,slash,y00762,Purple/Cassin's Finch,Haemorhous purpureus/cassinii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30880.5,spuh,haemor1,Haemorhous sp.,Haemorhous sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30881,species,desfin2,Desert Finch,Rhodospiza obsoleta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30881.5,species,gowgro1,Golden-winged Grosbeak,Rhynchostruthus socotranus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30882,issf,gowgro2,Golden-winged Grosbeak (Arabian),Rhynchostruthus socotranus percivali,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gowgro1 30882.5,issf,gowgro3,Golden-winged Grosbeak (Socotra),Rhynchostruthus socotranus socotranus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gowgro1 30883,species,somgro1,Somali Grosbeak,Rhynchostruthus louisae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30954,species,eurgre1,European Greenfinch,Chloris chloris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30955,species,origre,Oriental Greenfinch,Chloris sinica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30956,species,yebgre4,Yellow-breasted Greenfinch,Chloris spinoides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30957,species,viegre2,Vietnamese Greenfinch,Chloris monguilloti,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30958,species,bkhgre1,Black-headed Greenfinch,Chloris ambigua,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959,species,orifin1,Oriole Finch,Linurgus olivaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.1,species,whrsee,White-rumped Seedeater,Crithagra leucopygia,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.2,species,yefcan,Yellow-fronted Canary,Crithagra mozambica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.4,species,afrcit1,African Citril,Crithagra citrinelloides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.5,species,wescit1,Western Citril,Crithagra frontalis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.6,species,soucit1,Southern Citril,Crithagra hyposticta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.7,species,blfcan1,Black-faced Canary,Crithagra capistrata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.8,species,papcan1,Papyrus Canary,Crithagra koliensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30959.9,species,forcan1,Forest Canary,Crithagra scotops,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960,species,olrser1,Olive-rumped Serin,Crithagra rothschildi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.1,species,bltcan1,Black-throated Canary,Crithagra atrogularis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.2,species,reisee2,Reichenow's Seedeater,Crithagra reichenowi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.3,species,yerser1,Yellow-rumped Serin,Crithagra xanthopygia,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.4,species,lebsee1,Lemon-breasted Seedeater,Crithagra citrinipectus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.5,species,whbcan1,White-bellied Canary,Crithagra dorsostriata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.6,species,yetser1,Yellow-throated Serin,Crithagra flavigula,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.7,species,salser1,Salvadori's Serin,Crithagra xantholaema,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.8,species,norgrc1,Northern Grosbeak-Canary,Crithagra donaldsoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30960.9,species,sougrc1,Southern Grosbeak-Canary,Crithagra buchanani,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961,species,brican1,Brimstone Canary,Crithagra sulphurata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.1,species,yelcan1,Yellow Canary,Crithagra flaviventris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.2,species,whtcan1,White-throated Canary,Crithagra albogularis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.3,species,strsee1,Streaky Seedeater,Crithagra striolata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.4,species,yebsee2,Yellow-browed Seedeater,Crithagra whytii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.5,species,thbsee1,Thick-billed Seedeater,Crithagra burtoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.6,species,tansee1,Tanzania Seedeater,Crithagra melanochroa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.7,species,prisee1,Principe Seedeater,Crithagra rufobrunnea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.75,species,satgro1,Sao Tome Grosbeak,Crithagra concolor,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.8,species,procan1,Protea Canary,Crithagra leucoptera,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30961.9,species,blesee1,Black-eared Seedeater,Crithagra mennelli,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30962,species,sthsee1,Streaky-headed Seedeater,Crithagra gularis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30962.1,issf,sthsee3,Streaky-headed Seedeater (West African),Crithagra gularis [canicapilla Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,sthsee1 30962.2,issf,sthsee2,Streaky-headed Seedeater (Streaky-headed),Crithagra gularis [gularis Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,sthsee1 30962.3,species,reisee1,Reichard's Seedeater,Crithagra reichardi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30962.4,issf,reisee3,Reichard's Seedeater (Stripe-breasted),Crithagra reichardi striatipectus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,reisee1 30962.5,issf,reisee4,Reichard's Seedeater (Reichard's),Crithagra reichardi reichardi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,reisee1 30962.6,species,brrsee1,Brown-rumped Seedeater,Crithagra tristriata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30962.7,species,yemser1,Yemen Serin,Crithagra menachensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30962.8,species,ankser2,Ankober Serin,Crithagra ankoberensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30962.9,species,capsis2,Cape Siskin,Crithagra totta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30963,species,drasis2,Drakensberg Siskin,Crithagra symonsi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30963.1,spuh,afrsee1,African seedeater sp.,Crithagra sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30963.2,species,twite1,Twite,Linaria flavirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30963.3,species,eurlin1,Eurasian Linnet,Linaria cannabina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30963.4,slash,y01057,Twite/Eurasian Linnet,Linaria flavirostris/cannabina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30963.5,species,yemlin1,Yemen Linnet,Linaria yemenensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 30963.6,species,warlin1,Warsangli Linnet,Linaria johannis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31009,species,comred,Common Redpoll,Acanthis flammea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31010,issf,comred3,Common Redpoll (flammea),Acanthis flammea flammea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comred 31011,issf,comred4,Common Redpoll (rostrata),Acanthis flammea rostrata/islandica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comred 31015,species,lesred1,Lesser Redpoll,Acanthis cabaret,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31015.5,slash,y00763,Common/Lesser Redpoll,Acanthis flammea/cabaret,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31016,species,hoared,Hoary Redpoll,Acanthis hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31017,issf,hoared2,Hoary Redpoll (exilipes),Acanthis hornemanni exilipes,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hoared 31018,issf,hoared1,Hoary Redpoll (hornemanni),Acanthis hornemanni hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hoared 31018.01,hybrid,x00625,Common x Hoary Redpoll (hybrid),Acanthis flammea x hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.02,slash,redpol,Common/Hoary Redpoll,Acanthis flammea/hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.03,spuh,redpol1,redpoll sp.,Acanthis sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.04,species,parcro2,Parrot Crossbill,Loxia pytyopsittacus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.05,species,scocro1,Scottish Crossbill,Loxia scotica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.06,species,redcro,Red Crossbill,Loxia curvirostra,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.07,issf,redcro11,Red Crossbill (Corsican),Loxia curvirostra corsicana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.08,issf,redcro12,Red Crossbill (Balearic),Loxia curvirostra balearica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.09,issf,redcro13,Red Crossbill (North African),Loxia curvirostra poliogyna,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.1,issf,redcro14,Red Crossbill (Cyprus),Loxia curvirostra guillemardi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.11,issf,redcro15,Red Crossbill (Crimean),Loxia curvirostra mariae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.12,issf,redcro16,Red Crossbill (Altai),Loxia curvirostra altaiensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.13,issf,redcro17,Red Crossbill (Tien Shan),Loxia curvirostra tianschanica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.14,issf,redcro18,Red Crossbill (Himalayan),Loxia curvirostra himalayensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.15,issf,redcro19,Red Crossbill (Da Lat),Loxia curvirostra meridionalis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.16,issf,redcro20,Red Crossbill (Japanese),Loxia curvirostra japonica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.17,issf,redcro21,Red Crossbill (Luzon),Loxia curvirostra luzoniensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.18,form,redcro22,Red Crossbill (Wandering or type A),Loxia curvirostra (type A),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.19,form,redcro23,Red Crossbill (Bohemian or type B),Loxia curvirostra (type B),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.2,form,redcro24,Red Crossbill (Glip or type C),Loxia curvirostra (type C),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.21,form,redcro25,Red Crossbill (Phantom or type D),Loxia curvirostra (type D),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.22,form,redcro26,Red Crossbill (Parakeet or type E),Loxia curvirostra (type E),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.23,form,redcro27,Red Crossbill (Scarce or type F),Loxia curvirostra (type F),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.24,form,redcro28,Red Crossbill (Parakeet or type X),Loxia curvirostra (type X),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.25,form,redcro1,Red Crossbill (Appalachian or type 1),Loxia curvirostra (type 1),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.26,form,redcro2,Red Crossbill (Ponderosa Pine or type 2),Loxia curvirostra (type 2),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.27,form,redcro3,Red Crossbill (Western Hemlock or type 3),Loxia curvirostra (type 3),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.28,form,redcro4,Red Crossbill (Douglas-fir or type 4),Loxia curvirostra (type 4),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.29,form,redcro5,Red Crossbill (Lodgepole Pine or type 5),Loxia curvirostra (type 5),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.3,form,redcro6,Red Crossbill (Sierra Madre or type 6),Loxia curvirostra (type 6),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.31,form,redcro7,Red Crossbill (Enigmatic or type 7),Loxia curvirostra (type 7),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.32,form,redcro8,Red Crossbill (Newfoundland or type 8),Loxia curvirostra (type 8),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.33,form,redcro10,Red Crossbill (Sitka Spruce or type 10),Loxia curvirostra (type 10),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro 31018.335,slash,y00928,Parrot/Red Crossbill,Loxia pytyopsittacus/curvirostra,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.34,species,redcro9,Cassia Crossbill,Loxia sinesciuris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.35,slash,y01058,Red/Cassia Crossbill,Loxia curvirostra/sinesciuris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.37,species,hiscro,Hispaniolan Crossbill,Loxia megaplaga,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.38,species,whwcro,White-winged Crossbill,Loxia leucoptera,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.39,issf,whwcro1,White-winged Crossbill (bifasciata),Loxia leucoptera bifasciata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,whwcro 31018.4,issf,whwcro2,White-winged Crossbill (leucoptera),Loxia leucoptera leucoptera,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,whwcro 31018.41,spuh,crossb,crossbill sp.,Loxia sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.5,species,mouser1,Mountain Serin,Chrysocorythus estherae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.6,issf,mouser2,Mountain Serin (Mountain),Chrysocorythus estherae [estherae Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,mouser1 31018.7,issf,mouser3,Mountain Serin (Mindanao),Chrysocorythus estherae mindanensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,mouser1 31018.8,species,eurgol,European Goldfinch,Carduelis carduelis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31018.9,issf,eurgol1,European Goldfinch (European),Carduelis carduelis [carduelis Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurgol 31019,issf,eurgol2,European Goldfinch (Eastern),Carduelis carduelis [caniceps Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurgol 31019.1,species,citfin1,Citril Finch,Carduelis citrinella,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.2,species,corfin1,Corsican Finch,Carduelis corsicana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.3,species,eurser1,European Serin,Serinus serinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.4,slash,y01059,Citril Finch/European Serin,Carduelis citrinella/Serinus serinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.5,species,comcan,Island Canary,Serinus canaria,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.6,domestic,islcan1,Island Canary (Domestic type),Serinus canaria (Domestic type),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.7,species,fifser1,Fire-fronted Serin,Serinus pusillus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.8,species,syrser1,Syrian Serin,Serinus syriacus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31019.9,slash,y01060,European/Fire-fronted/Syrian Serin,Serinus pusillus/serinus/syriacus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020,species,yeccan1,Yellow-crowned Canary,Serinus flavivertex,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020.1,species,capcan1,Cape Canary,Serinus canicollis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020.2,species,abysis1,Ethiopian Siskin,Serinus nigriceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020.3,species,bkhcan1,Black-headed Canary,Serinus alario,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020.4,species,damcan1,Damara Canary,Serinus leucolaemus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020.5,spuh,canary1,Serinus sp.,Serinus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020.6,species,tibser1,Tibetan Serin,Spinus thibetanus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31020.7,species,eursis,Eurasian Siskin,Spinus spinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31021,species,pinsis,Pine Siskin,Spinus pinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31022,issf,pinsis1,Pine Siskin (Northern),Spinus pinus pinus/macropterus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pinsis 31025,issf,pinsis2,Pine Siskin (Chiapas),Spinus pinus perplexus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pinsis 31025.2,form,pinsis3,Pine Siskin (green morph),Spinus pinus (green morph),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pinsis 31025.4,hybrid,x00904,Red Crossbill x Pine Siskin (hybrid),Loxia curvirostra x Spinus pinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31026,species,blcsis1,Black-capped Siskin,Spinus atriceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31026.2,hybrid,x00829,Pine x Black-capped Siskin (hybrid),Spinus pinus x atriceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31027,species,blhsis1,Black-headed Siskin,Spinus notatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31031,species,antsis1,Antillean Siskin,Spinus dominicensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31032,species,lesgol,Lesser Goldfinch,Spinus psaltria,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31038,species,lawgol,Lawrence's Goldfinch,Spinus lawrencei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31039,species,amegfi,American Goldfinch,Spinus tristis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31039.2,hybrid,x00905,Pine Siskin x American Goldfinch (hybrid),Spinus pinus x tristis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31043.5,hybrid,x00714,Lesser x American Goldfinch (hybrid),Spinus psaltria x tristis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31044,spuh,goldfi,Spinus sp. (goldfinch sp.),Spinus sp. (goldfinch sp.),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31045,species,andsis1,Andean Siskin,Spinus spinescens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31048,species,yefsis1,Yellow-faced Siskin,Spinus yarrellii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31049,species,yebsis1,Yellow-bellied Siskin,Spinus xanthogastrus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31052,species,redsis1,Red Siskin,Spinus cucullatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31053,species,thbsis1,Thick-billed Siskin,Spinus crassirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31056,species,hoosis1,Hooded Siskin,Spinus magellanicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31068,species,safsis1,Saffron Siskin,Spinus siemiradzkii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31069,species,olisis1,Olivaceous Siskin,Spinus olivaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31069.5,slash,y00698,Hooded/Olivaceous Siskin,Spinus magellanicus/olivaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31070,species,blasis1,Black Siskin,Spinus atratus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31071,species,yersis1,Yellow-rumped Siskin,Spinus uropygialis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31071.5,hybrid,x00713,Hooded x Yellow-rumped Siskin (hybrid),Spinus magellanicus x uropygialis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31072,species,blcsis2,Black-chinned Siskin,Spinus barbatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31073,spuh,spinus1,Spinus sp.,Spinus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31074,spuh,y00631,Acanthis/Spinus sp.,Acanthis/Spinus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31340,spuh,finch1,finch sp.,Fringillidae sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, 31340.5,species,cinwhe1,Cinnamon Ibon,Hypocryptadius cinnamomeus,Passeriformes,Passeridae (Old World Sparrows),Old World Sparrows, 31341,species,saxspa1,Saxaul Sparrow,Passer ammodendri,Passeriformes,Passeridae (Old World Sparrows),, 31345,species,houspa,House Sparrow,Passer domesticus,Passeriformes,Passeridae (Old World Sparrows),, 31357.5,species,itaspa1,Italian Sparrow,Passer italiae,Passeriformes,Passeridae (Old World Sparrows),, 31357.8,hybrid,x00873,House x Italian Sparrow (hybrid),Passer domesticus x italiae,Passeriformes,Passeridae (Old World Sparrows),, 31357.9,slash,y00692,House/Italian Sparrow,Passer domesticus/italiae,Passeriformes,Passeridae (Old World Sparrows),, 31358,species,spaspa1,Spanish Sparrow,Passer hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, 31360.5,hybrid,x00645,House x Spanish Sparrow (hybrid),Passer domesticus x hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, 31360.7,slash,y00829,House/Spanish Sparrow,Passer domesticus/hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, 31360.9,slash,y01017,Italian/Spanish Sparrow,Passer italiae/hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, 31361,species,sinspa1,Sind Sparrow,Passer pyrrhonotus,Passeriformes,Passeridae (Old World Sparrows),, 31362,species,somspa1,Somali Sparrow,Passer castanopterus,Passeriformes,Passeridae (Old World Sparrows),, 31365,species,russpa2,Russet Sparrow,Passer rutilans,Passeriformes,Passeridae (Old World Sparrows),, 31369,species,plbspa1,Plain-backed Sparrow,Passer flaveolus,Passeriformes,Passeridae (Old World Sparrows),, 31370,species,desspa1,Dead Sea Sparrow,Passer moabiticus,Passeriformes,Passeridae (Old World Sparrows),, 31371,issf,desspa5,Dead Sea Sparrow (Dead Sea),Passer moabiticus moabiticus,Passeriformes,Passeridae (Old World Sparrows),,desspa1 31373,issf,desspa6,Dead Sea Sparrow (Sistan Scrub),Passer moabiticus yatii,Passeriformes,Passeridae (Old World Sparrows),,desspa1 31374,species,cavspa1,Cape Verde Sparrow,Passer iagoensis,Passeriformes,Passeridae (Old World Sparrows),, 31375.3,species,aakspa1,Abd al Kuri Sparrow,Passer hemileucus,Passeriformes,Passeridae (Old World Sparrows),, 31375.6,species,socspa1,Socotra Sparrow,Passer insularis,Passeriformes,Passeridae (Old World Sparrows),, 31376,species,grrspa1,Great Rufous Sparrow,Passer motitensis,Passeriformes,Passeridae (Old World Sparrows),, 31380,species,kerspa2,Kenya Rufous Sparrow,Passer rufocinctus,Passeriformes,Passeridae (Old World Sparrows),, 31381,species,shrspa1,Shelley's Rufous Sparrow,Passer shelleyi,Passeriformes,Passeridae (Old World Sparrows),, 31382,species,korspa1,Kordofan Rufous Sparrow,Passer cordofanicus,Passeriformes,Passeridae (Old World Sparrows),, 31383,species,capspa1,Cape Sparrow,Passer melanurus,Passeriformes,Passeridae (Old World Sparrows),, 31387,species,gyhspa1,Northern Gray-headed Sparrow,Passer griseus,Passeriformes,Passeridae (Old World Sparrows),, 31391,species,swaspa2,Swainson's Sparrow,Passer swainsonii,Passeriformes,Passeridae (Old World Sparrows),, 31392,species,pabspa1,Parrot-billed Sparrow,Passer gongonensis,Passeriformes,Passeridae (Old World Sparrows),, 31393,species,swaspa1,Swahili Sparrow,Passer suahelicus,Passeriformes,Passeridae (Old World Sparrows),, 31394,species,sghspa2,Southern Gray-headed Sparrow,Passer diffusus,Passeriformes,Passeridae (Old World Sparrows),, 31399,species,desspa2,Desert Sparrow,Passer simplex,Passeriformes,Passeridae (Old World Sparrows),, 31399.5,issf,desspa3,Desert Sparrow (Desert),Passer simplex simplex/saharae,Passeriformes,Passeridae (Old World Sparrows),,desspa2 31402,issf,desspa4,Desert Sparrow (Zarudny's),Passer simplex zarudnyi,Passeriformes,Passeridae (Old World Sparrows),,desspa2 31403,species,eutspa,Eurasian Tree Sparrow,Passer montanus,Passeriformes,Passeridae (Old World Sparrows),, 31412,hybrid,x00754,House x Eurasian Tree Sparrow (hybrid),Passer domesticus x montanus,Passeriformes,Passeridae (Old World Sparrows),, 31412.6,slash,y00764,House/Eurasian Tree Sparrow,Passer domesticus/montanus,Passeriformes,Passeridae (Old World Sparrows),, 31412.8,hybrid,x00874,Spanish x Eurasian Tree Sparrow (hybrid),Passer hispaniolensis x montanus,Passeriformes,Passeridae (Old World Sparrows),, 31413,species,sugspa1,Sudan Golden Sparrow,Passer luteus,Passeriformes,Passeridae (Old World Sparrows),, 31414,species,argspa2,Arabian Golden Sparrow,Passer euchlorus,Passeriformes,Passeridae (Old World Sparrows),, 31415,species,chespa1,Chestnut Sparrow,Passer eminibey,Passeriformes,Passeridae (Old World Sparrows),, 31416,spuh,passer2,Passer sp.,Passer sp.,Passeriformes,Passeridae (Old World Sparrows),, 31417,species,yespet1,Yellow-spotted Petronia,Petronia pyrgita,Passeriformes,Passeridae (Old World Sparrows),, 31420,species,chspet1,Chestnut-shouldered Petronia,Petronia xanthocollis,Passeriformes,Passeridae (Old World Sparrows),, 31423,species,yetpet1,Yellow-throated Petronia,Petronia superciliaris,Passeriformes,Passeridae (Old World Sparrows),, 31428,species,buspet1,Bush Petronia,Petronia dentata,Passeriformes,Passeridae (Old World Sparrows),, 31429,species,rocpet1,Rock Petronia,Petronia petronia,Passeriformes,Passeridae (Old World Sparrows),, 31437,species,palroc1,Pale Rockfinch,Carpospiza brachydactyla,Passeriformes,Passeridae (Old World Sparrows),, 31438,species,whwsno1,White-winged Snowfinch,Montifringilla nivalis,Passeriformes,Passeridae (Old World Sparrows),, 31446,species,tibsno2,Tibetan Snowfinch,Montifringilla henrici,Passeriformes,Passeridae (Old World Sparrows),, 31447,species,blwsno1,Black-winged Snowfinch,Montifringilla adamsi,Passeriformes,Passeridae (Old World Sparrows),, 31450,species,whrsno1,White-rumped Snowfinch,Montifringilla taczanowskii,Passeriformes,Passeridae (Old World Sparrows),, 31451,species,pedsno1,Pere David's Snowfinch,Montifringilla davidiana,Passeriformes,Passeridae (Old World Sparrows),, 31454,species,runsno1,Rufous-necked Snowfinch,Montifringilla ruficollis,Passeriformes,Passeridae (Old World Sparrows),, 31457,species,blasno1,Blanford's Snowfinch,Montifringilla blanfordi,Passeriformes,Passeridae (Old World Sparrows),, 31461,species,afgsno1,Afghan Snowfinch,Montifringilla theresae,Passeriformes,Passeridae (Old World Sparrows),, 31462,species,wbbwea1,White-billed Buffalo-Weaver,Bubalornis albirostris,Passeriformes,Ploceidae (Weavers and Allies),Weavers and Allies, 31463,species,rbbwea1,Red-billed Buffalo-Weaver,Bubalornis niger,Passeriformes,Ploceidae (Weavers and Allies),, 31466,species,whbwea1,White-headed Buffalo-Weaver,Dinemellia dinemelli,Passeriformes,Ploceidae (Weavers and Allies),, 31469,species,spfwea1,Speckle-fronted Weaver,Sporopipes frontalis,Passeriformes,Ploceidae (Weavers and Allies),, 31472,species,scawea1,Scaly Weaver,Sporopipes squamifrons,Passeriformes,Ploceidae (Weavers and Allies),, 31473,species,wbswea1,White-browed Sparrow-Weaver,Plocepasser mahali,Passeriformes,Ploceidae (Weavers and Allies),, 31474,issf,whbspw1,White-browed Sparrow-Weaver (Black-billed),Plocepasser mahali melanorhynchus,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 31475,issf,whbspw2,White-browed Sparrow-Weaver (White-tailed),Plocepasser mahali ansorgei,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 31476,issf,whbspw3,White-browed Sparrow-Weaver (Spot-chested),Plocepasser mahali pectoralis,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 31477,issf,whbspw4,White-browed Sparrow-Weaver (White-breasted),Plocepasser mahali mahali,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 31478,species,ccswea1,Chestnut-crowned Sparrow-Weaver,Plocepasser superciliosus,Passeriformes,Ploceidae (Weavers and Allies),, 31479,species,cbswea1,Chestnut-backed Sparrow-Weaver,Plocepasser rufoscapulatus,Passeriformes,Ploceidae (Weavers and Allies),, 31480,species,dsswea1,Donaldson-Smith's Sparrow-Weaver,Plocepasser donaldsoni,Passeriformes,Ploceidae (Weavers and Allies),, 31481,species,rutwea1,Rufous-tailed Weaver,Histurgops ruficauda,Passeriformes,Ploceidae (Weavers and Allies),, 31482,species,gyhsow1,Gray-headed Social-Weaver,Pseudonigrita arnaudi,Passeriformes,Ploceidae (Weavers and Allies),, 31485,species,bcswea1,Black-capped Social-Weaver,Pseudonigrita cabanisi,Passeriformes,Ploceidae (Weavers and Allies),, 31486,species,socwea1,Social Weaver,Philetairus socius,Passeriformes,Ploceidae (Weavers and Allies),, 31487,species,recmal2,Red-crowned Malimbe,Malimbus coronatus,Passeriformes,Ploceidae (Weavers and Allies),, 31488,species,bltmal1,Black-throated Malimbe,Malimbus cassini,Passeriformes,Ploceidae (Weavers and Allies),, 31489,species,balmal2,Ballman's Malimbe,Malimbus ballmanni,Passeriformes,Ploceidae (Weavers and Allies),, 31490,species,racmal1,Rachel's Malimbe,Malimbus racheliae,Passeriformes,Ploceidae (Weavers and Allies),, 31491,species,revmal1,Red-vented Malimbe,Malimbus scutatus,Passeriformes,Ploceidae (Weavers and Allies),, 31494,species,ibamal1,Ibadan Malimbe,Malimbus ibadanensis,Passeriformes,Ploceidae (Weavers and Allies),, 31495,species,rebmal1,Red-bellied Malimbe,Malimbus erythrogaster,Passeriformes,Ploceidae (Weavers and Allies),, 31498,species,gramal1,Blue-billed Malimbe,Malimbus nitens,Passeriformes,Ploceidae (Weavers and Allies),, 31499,species,cremal1,Crested Malimbe,Malimbus malimbicus,Passeriformes,Ploceidae (Weavers and Allies),, 31503,species,rehmal1,Red-headed Malimbe,Malimbus rubricollis,Passeriformes,Ploceidae (Weavers and Allies),, 31507,spuh,malimb1,malimbe sp.,Malimbus sp.,Passeriformes,Ploceidae (Weavers and Allies),, 31510,species,rehwea1,Red-headed Weaver,Anaplectes rubriceps,Passeriformes,Ploceidae (Weavers and Allies),, 31510.2,issf,rehwea2,Red-headed Weaver (Northern),Anaplectes rubriceps leuconotos,Passeriformes,Ploceidae (Weavers and Allies),,rehwea1 31510.4,issf,rehwea3,Red-headed Weaver (Red),Anaplectes rubriceps jubaensis,Passeriformes,Ploceidae (Weavers and Allies),,rehwea1 31510.6,issf,rehwea4,Red-headed Weaver (Southern),Anaplectes rubriceps rubriceps,Passeriformes,Ploceidae (Weavers and Allies),,rehwea1 31514,species,yelwea2,Yellow-legged Weaver,Ploceus flavipes,Passeriformes,Ploceidae (Weavers and Allies),, 31515,species,berwea2,Bertram's Weaver,Ploceus bertrandi,Passeriformes,Ploceidae (Weavers and Allies),, 31516,species,bagwea1,Baglafecht Weaver,Ploceus baglafecht,Passeriformes,Ploceidae (Weavers and Allies),, 31517,issf,bagwea2,Baglafecht Weaver (Baglafecht),Ploceus baglafecht [baglafecht Group],Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 31519,issf,bagwea3,Baglafecht Weaver (Emin's),Ploceus baglafecht emini,Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 31520,issf,bagwea4,Baglafecht Weaver (Reichenow's),Ploceus baglafecht reichenowi,Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 31521,issf,bagwea5,Baglafecht Weaver (Stuhlmann's),Ploceus baglafecht [stuhlmanni Group],Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 31525,species,bkcwea1,Black-chinned Weaver,Ploceus nigrimentus,Passeriformes,Ploceidae (Weavers and Allies),, 31526,species,banwea1,Bannerman's Weaver,Ploceus bannermani,Passeriformes,Ploceidae (Weavers and Allies),, 31527,species,batwea1,Bates's Weaver,Ploceus batesi,Passeriformes,Ploceidae (Weavers and Allies),, 31528,species,litwea1,Little Weaver,Ploceus luteolus,Passeriformes,Ploceidae (Weavers and Allies),, 31529,species,slbwea1,Slender-billed Weaver,Ploceus pelzelni,Passeriformes,Ploceidae (Weavers and Allies),, 31532,species,loawea1,Loango Weaver,Ploceus subpersonatus,Passeriformes,Ploceidae (Weavers and Allies),, 31533,species,blnwea1,Black-necked Weaver,Ploceus nigricollis,Passeriformes,Ploceidae (Weavers and Allies),, 31534,issf,bknwea1,Black-necked Weaver (Olive-backed),Ploceus nigricollis brachypterus,Passeriformes,Ploceidae (Weavers and Allies),,blnwea1 31534.5,issf,bknwea2,Black-necked Weaver (Black-backed),Ploceus nigricollis nigricollis/melanoxanthus,Passeriformes,Ploceidae (Weavers and Allies),,blnwea1 31534.7,intergrade,bknwea3,Black-necked Weaver (Olive-backed x Black-backed),Ploceus nigricollis brachypterus x nigricollis,Passeriformes,Ploceidae (Weavers and Allies),,blnwea1 31537,species,spewea1,Spectacled Weaver,Ploceus ocularis,Passeriformes,Ploceidae (Weavers and Allies),, 31538,issf,spewea3,Spectacled Weaver (Yellow-throated),Ploceus ocularis crocatus,Passeriformes,Ploceidae (Weavers and Allies),,spewea1 31538.5,issf,spewea4,Spectacled Weaver (Black-throated),Ploceus ocularis ocularis/suahelicus,Passeriformes,Ploceidae (Weavers and Allies),,spewea1 31538.7,slash,y00929,Black-necked/Spectacled Weaver,Ploceus nigricollis/ocularis,Passeriformes,Ploceidae (Weavers and Allies),, 31541,species,blbwea1,Black-billed Weaver,Ploceus melanogaster,Passeriformes,Ploceidae (Weavers and Allies),, 31542,issf,bkbwea1,Black-billed Weaver (Western),Ploceus melanogaster melanogaster,Passeriformes,Ploceidae (Weavers and Allies),,blbwea1 31543,issf,bkbwea2,Black-billed Weaver (Eastern),Ploceus melanogaster stephanophorus,Passeriformes,Ploceidae (Weavers and Allies),,blbwea1 31544,species,strwea1,Strange Weaver,Ploceus alienus,Passeriformes,Ploceidae (Weavers and Allies),, 31545,species,capwea1,Cape Weaver,Ploceus capensis,Passeriformes,Ploceidae (Weavers and Allies),, 31546,species,bocwea1,Bocage's Weaver,Ploceus temporalis,Passeriformes,Ploceidae (Weavers and Allies),, 31547,species,afgwea1,African Golden-Weaver,Ploceus subaureus,Passeriformes,Ploceidae (Weavers and Allies),, 31550,species,hogwea1,Holub's Golden-Weaver,Ploceus xanthops,Passeriformes,Ploceidae (Weavers and Allies),, 31551,species,orawea1,Orange Weaver,Ploceus aurantius,Passeriformes,Ploceidae (Weavers and Allies),, 31554,species,gopwea1,Golden Palm Weaver,Ploceus bojeri,Passeriformes,Ploceidae (Weavers and Allies),, 31555,species,tagwea1,Taveta Golden-Weaver,Ploceus castaneiceps,Passeriformes,Ploceidae (Weavers and Allies),, 31556,species,prgwea1,Principe Golden-Weaver,Ploceus princeps,Passeriformes,Ploceidae (Weavers and Allies),, 31557,species,sbtwea1,Southern Brown-throated Weaver,Ploceus xanthopterus,Passeriformes,Ploceidae (Weavers and Allies),, 31561,species,nbtwea1,Northern Brown-throated Weaver,Ploceus castanops,Passeriformes,Ploceidae (Weavers and Allies),, 31562,species,kilwea1,Kilombero Weaver,Ploceus burnieri,Passeriformes,Ploceidae (Weavers and Allies),, 31563,species,nomwea1,Northern Masked-Weaver,Ploceus taeniopterus,Passeriformes,Ploceidae (Weavers and Allies),, 31564,species,lesmaw1,Lesser Masked-Weaver,Ploceus intermedius,Passeriformes,Ploceidae (Weavers and Allies),, 31568,species,afmwea,Southern Masked-Weaver,Ploceus velatus,Passeriformes,Ploceidae (Weavers and Allies),, 31575,species,vimwea1,Vitelline Masked-Weaver,Ploceus vitellinus,Passeriformes,Ploceidae (Weavers and Allies),, 31578,species,tanmaw1,Tanganyika Masked-Weaver,Ploceus reichardi,Passeriformes,Ploceidae (Weavers and Allies),, 31579,species,kamwea1,Katanga Masked-Weaver,Ploceus katangae,Passeriformes,Ploceidae (Weavers and Allies),, 31579.2,issf,katmaw1,Katanga Masked-Weaver (Upemba),Ploceus katangae upembae,Passeriformes,Ploceidae (Weavers and Allies),,kamwea1 31579.4,issf,katmaw2,Katanga Masked-Weaver (Katanga),Ploceus katangae katangae,Passeriformes,Ploceidae (Weavers and Allies),,kamwea1 31580,species,lalmaw1,Lake Lufira Masked-Weaver,Ploceus ruweti,Passeriformes,Ploceidae (Weavers and Allies),, 31581,species,hemwea1,Heuglin's Masked-Weaver,Ploceus heuglini,Passeriformes,Ploceidae (Weavers and Allies),, 31582,species,ruewea1,RŸppell's Weaver,Ploceus galbula,Passeriformes,Ploceidae (Weavers and Allies),, 31583,species,spewea2,Speke's Weaver,Ploceus spekei,Passeriformes,Ploceidae (Weavers and Allies),, 31584,species,foxwea1,Fox's Weaver,Ploceus spekeoides,Passeriformes,Ploceidae (Weavers and Allies),, 31585,species,viewea1,Vieillot's Weaver,Ploceus nigerrimus,Passeriformes,Ploceidae (Weavers and Allies),, 31585.2,issf,viewea2,Vieillot's Weaver (Chestnut-and-black),Ploceus nigerrimus castaneofuscus,Passeriformes,Ploceidae (Weavers and Allies),,viewea1 31585.4,issf,viewea3,Vieillot's Weaver (Black),Ploceus nigerrimus nigerrimus,Passeriformes,Ploceidae (Weavers and Allies),,viewea1 31588,species,vilwea1,Village Weaver,Ploceus cucullatus,Passeriformes,Ploceidae (Weavers and Allies),, 31589,issf,vilwea2,Village Weaver (Mottled),Ploceus cucullatus collaris,Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 31590,issf,vilwea3,Village Weaver (Black-headed),Ploceus cucullatus [cucullatus Group],Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 31595,issf,vilwea4,Village Weaver (Layard's),Ploceus cucullatus nigriceps/graueri,Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 31598,issf,vilwea5,Village Weaver (Spot-backed),Ploceus cucullatus spilonotus,Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 31599,species,giawea1,Giant Weaver,Ploceus grandis,Passeriformes,Ploceidae (Weavers and Allies),, 31600,species,weywea1,Weyns's Weaver,Ploceus weynsi,Passeriformes,Ploceidae (Weavers and Allies),, 31601,species,clawea1,Clarke's Weaver,Ploceus golandi,Passeriformes,Ploceidae (Weavers and Allies),, 31602,species,salwea1,Salvadori's Weaver,Ploceus dichrocephalus,Passeriformes,Ploceidae (Weavers and Allies),, 31603,species,blhwea1,Black-headed Weaver,Ploceus melanocephalus,Passeriformes,Ploceidae (Weavers and Allies),, 31608,species,gobwea1,Golden-backed Weaver,Ploceus jacksoni,Passeriformes,Ploceidae (Weavers and Allies),, 31609,species,chewea1,Chestnut Weaver,Ploceus rubiginosus,Passeriformes,Ploceidae (Weavers and Allies),, 31610,issf,chewea2,Chestnut Weaver (Benguela),Ploceus rubiginosus trothae,Passeriformes,Ploceidae (Weavers and Allies),,chewea1 31611,issf,chewea3,Chestnut Weaver (Chestnut),Ploceus rubiginosus rubiginosus,Passeriformes,Ploceidae (Weavers and Allies),,chewea1 31612,species,cinwea1,Cinnamon Weaver,Ploceus badius,Passeriformes,Ploceidae (Weavers and Allies),, 31613,species,gonwea1,Golden-naped Weaver,Ploceus aureonucha,Passeriformes,Ploceidae (Weavers and Allies),, 31614,species,yemwea1,Yellow-mantled Weaver,Ploceus tricolor,Passeriformes,Ploceidae (Weavers and Allies),, 31617,species,mabwea1,Maxwell's Black Weaver,Ploceus albinucha,Passeriformes,Ploceidae (Weavers and Allies),, 31618,issf,mabwea2,Maxwell's Black Weaver (White-naped),Ploceus albinucha albinucha,Passeriformes,Ploceidae (Weavers and Allies),,mabwea1 31618.5,issf,mabwea3,Maxwell's Black Weaver (Maxwell's),Ploceus albinucha maxwelli/holomelas,Passeriformes,Ploceidae (Weavers and Allies),,mabwea1 31621,species,forwea1,Forest Weaver,Ploceus bicolor,Passeriformes,Ploceidae (Weavers and Allies),, 31630,species,brcwea1,Brown-capped Weaver,Ploceus insignis,Passeriformes,Ploceidae (Weavers and Allies),, 31631,species,yecwea1,Yellow-capped Weaver,Ploceus dorsomaculatus,Passeriformes,Ploceidae (Weavers and Allies),, 31632,species,prewea1,Preuss's Weaver,Ploceus preussi,Passeriformes,Ploceidae (Weavers and Allies),, 31633,species,olhwea1,Olive-headed Weaver,Ploceus olivaceiceps,Passeriformes,Ploceidae (Weavers and Allies),, 31634,species,usawea1,Usambara Weaver,Ploceus nicolli,Passeriformes,Ploceidae (Weavers and Allies),, 31637,species,bawwea1,Bar-winged Weaver,Ploceus angolensis,Passeriformes,Ploceidae (Weavers and Allies),, 31638,species,satwea1,Sao Tome Weaver,Ploceus sanctithomae,Passeriformes,Ploceidae (Weavers and Allies),, 31639,species,nelwea1,Nelicourvi Weaver,Ploceus nelicourvi,Passeriformes,Ploceidae (Weavers and Allies),, 31640,species,sakwea1,Sakalava Weaver,Ploceus sakalava,Passeriformes,Ploceidae (Weavers and Allies),, 31643,species,strwea2,Streaked Weaver,Ploceus manyar,Passeriformes,Ploceidae (Weavers and Allies),, 31648,species,baywea1,Baya Weaver,Ploceus philippinus,Passeriformes,Ploceidae (Weavers and Allies),, 31654,species,asgwea2,Asian Golden Weaver,Ploceus hypoxanthus,Passeriformes,Ploceidae (Weavers and Allies),, 31657,species,yelwea1,Yellow Weaver,Ploceus megarhynchus,Passeriformes,Ploceidae (Weavers and Allies),, 31660,species,benwea1,Bengal Weaver,Ploceus benghalensis,Passeriformes,Ploceidae (Weavers and Allies),, 31661,spuh,ploceu1,Ploceus sp.,Ploceus sp.,Passeriformes,Ploceidae (Weavers and Allies),, 31662,species,comwea1,Compact Weaver,Pachyphantes superciliosus,Passeriformes,Ploceidae (Weavers and Allies),, 31663,species,carque1,Cardinal Quelea,Quelea cardinalis,Passeriformes,Ploceidae (Weavers and Allies),, 31664,species,rehque1,Red-headed Quelea,Quelea erythrops,Passeriformes,Ploceidae (Weavers and Allies),, 31665,species,rebque1,Red-billed Quelea,Quelea quelea,Passeriformes,Ploceidae (Weavers and Allies),, 31668.5,spuh,quelea1,quelea sp.,Quelea sp.,Passeriformes,Ploceidae (Weavers and Allies),, 31669,species,botwea1,Bob-tailed Weaver,Brachycope anomala,Passeriformes,Ploceidae (Weavers and Allies),, 31670,species,redfod1,Red Fody,Foudia madagascariensis,Passeriformes,Ploceidae (Weavers and Allies),, 31671,species,rehfod1,Red-headed Fody,Foudia eminentissima,Passeriformes,Ploceidae (Weavers and Allies),, 31672,issf,rehfod3,Red-headed Fody (Aldabra),Foudia eminentissima aldabrana,Passeriformes,Ploceidae (Weavers and Allies),,rehfod1 31672.5,issf,rehfod2,Red-headed Fody (Comoros),Foudia eminentissima [eminentissima Group],Passeriformes,Ploceidae (Weavers and Allies),,rehfod1 31677,species,forfod1,Forest Fody,Foudia omissa,Passeriformes,Ploceidae (Weavers and Allies),, 31677.5,slash,y00930,Red/Forest Fody,Foudia madagascariensis/omissa,Passeriformes,Ploceidae (Weavers and Allies),, 31678,species,maufod1,Mauritius Fody,Foudia rubra,Passeriformes,Ploceidae (Weavers and Allies),, 31679,species,seyfod1,Seychelles Fody,Foudia sechellarum,Passeriformes,Ploceidae (Weavers and Allies),, 31680,species,rodfod1,Rodrigues Fody,Foudia flavicans,Passeriformes,Ploceidae (Weavers and Allies),, 31681,species,orabis1,Northern Red Bishop,Euplectes franciscanus,Passeriformes,Ploceidae (Weavers and Allies),, 31682,species,redbis,Southern Red Bishop,Euplectes orix,Passeriformes,Ploceidae (Weavers and Allies),, 31683,species,zanbis1,Zanzibar Red Bishop,Euplectes nigroventris,Passeriformes,Ploceidae (Weavers and Allies),, 31684,species,blwbis1,Black-winged Bishop,Euplectes hordeaceus,Passeriformes,Ploceidae (Weavers and Allies),, 31685,species,blabis1,Black Bishop,Euplectes gierowii,Passeriformes,Ploceidae (Weavers and Allies),, 31689,species,yecbis,Yellow-crowned Bishop,Euplectes afer,Passeriformes,Ploceidae (Weavers and Allies),, 31693,species,fifbis1,Fire-fronted Bishop,Euplectes diadematus,Passeriformes,Ploceidae (Weavers and Allies),, 31694,species,gobbis1,Golden-backed Bishop,Euplectes aureus,Passeriformes,Ploceidae (Weavers and Allies),, 31695,species,yelbis1,Yellow Bishop,Euplectes capensis,Passeriformes,Ploceidae (Weavers and Allies),, 31696,issf,yelbis2,Yellow Bishop (Montane),Euplectes capensis phoenicomerus,Passeriformes,Ploceidae (Weavers and Allies),,yelbis1 31697,issf,yelbis3,Yellow Bishop (Ethiopian),Euplectes capensis xanthomelas,Passeriformes,Ploceidae (Weavers and Allies),,yelbis1 31698,issf,yelbis4,Yellow Bishop (Yellow),Euplectes capensis [capensis Group],Passeriformes,Ploceidae (Weavers and Allies),,yelbis1 31702,species,whwwid1,White-winged Widowbird,Euplectes albonotatus,Passeriformes,Ploceidae (Weavers and Allies),, 31706,species,yeswid2,Yellow-mantled Widowbird,Euplectes macroura,Passeriformes,Ploceidae (Weavers and Allies),, 31708,issf,yemwid1,Yellow-mantled Widowbird (Yellow-shouldered),Euplectes macroura macrocercus,Passeriformes,Ploceidae (Weavers and Allies),,yeswid2 31708.5,issf,yemwid2,Yellow-mantled Widowbird (Yellow-mantled),Euplectes macroura macroura/conradsi,Passeriformes,Ploceidae (Weavers and Allies),,yeswid2 31710,species,recwid1,Red-collared Widowbird,Euplectes ardens,Passeriformes,Ploceidae (Weavers and Allies),, 31710.2,issf,recwid2,Red-collared Widowbird (Red-cowled),Euplectes ardens laticauda/suahelicus,Passeriformes,Ploceidae (Weavers and Allies),,recwid1 31710.4,issf,recwid3,Red-collared Widowbird (Red-collared),Euplectes ardens ardens,Passeriformes,Ploceidae (Weavers and Allies),,recwid1 31714,species,fatwid1,Fan-tailed Widowbird,Euplectes axillaris,Passeriformes,Ploceidae (Weavers and Allies),, 31720,species,marwid1,Marsh Widowbird,Euplectes hartlaubi,Passeriformes,Ploceidae (Weavers and Allies),, 31723,species,buswid1,Buff-shouldered Widowbird,Euplectes psammacromius,Passeriformes,Ploceidae (Weavers and Allies),, 31724,species,lotwid1,Long-tailed Widowbird,Euplectes progne,Passeriformes,Ploceidae (Weavers and Allies),, 31728,species,jacwid1,Jackson's Widowbird,Euplectes jacksoni,Passeriformes,Ploceidae (Weavers and Allies),, 31729,spuh,euplec1,Euplectes sp.,Euplectes sp.,Passeriformes,Ploceidae (Weavers and Allies),, 31730,species,growea1,Grosbeak Weaver,Amblyospiza albifrons,Passeriformes,Ploceidae (Weavers and Allies),, 31741,species,pafneg1,Pale-fronted Nigrita,Nigrita luteifrons,Passeriformes,Estrildidae (Waxbills and Allies),Estrildids, 31744,species,gyhneg1,Gray-headed Nigrita,Nigrita canicapillus,Passeriformes,Estrildidae (Waxbills and Allies),, 31751,species,chbneg1,Chestnut-breasted Nigrita,Nigrita bicolor,Passeriformes,Estrildidae (Waxbills and Allies),, 31755,species,whbneg2,White-breasted Nigrita,Nigrita fusconotus,Passeriformes,Estrildidae (Waxbills and Allies),, 31758,species,wooant1,Woodhouse's Antpecker,Parmoptila woodhousei,Passeriformes,Estrildidae (Waxbills and Allies),, 31761,species,refant1,Red-fronted Antpecker,Parmoptila rubrifrons,Passeriformes,Estrildidae (Waxbills and Allies),, 31762,species,jamant1,Jameson's Antpecker,Parmoptila jamesoni,Passeriformes,Estrildidae (Waxbills and Allies),, 31763,species,fepoli1,Shelley's Oliveback,Nesocharis shelleyi,Passeriformes,Estrildidae (Waxbills and Allies),, 31766,species,whcoli1,White-collared Oliveback,Nesocharis ansorgei,Passeriformes,Estrildidae (Waxbills and Allies),, 31767,species,gyholi1,Gray-headed Oliveback,Nesocharis capistrata,Passeriformes,Estrildidae (Waxbills and Allies),, 31768,species,swewax2,Swee Waxbill,Coccopygia melanotis,Passeriformes,Estrildidae (Waxbills and Allies),, 31769,issf,swewax3,Swee Waxbill (Swee),Coccopygia melanotis melanotis,Passeriformes,Estrildidae (Waxbills and Allies),,swewax2 31770,issf,swewax1,Swee Waxbill (Angola),Coccopygia melanotis bocagei,Passeriformes,Estrildidae (Waxbills and Allies),,swewax2 31771,species,yebwax2,Yellow-bellied Waxbill,Coccopygia quartinia,Passeriformes,Estrildidae (Waxbills and Allies),, 31775,species,grbtwi1,Green-backed Twinspot,Mandingoa nitidula,Passeriformes,Estrildidae (Waxbills and Allies),, 31775.5,issf,gnbtwi1,Green-backed Twinspot (Orange-breasted),Mandingoa nitidula schlegeli/virginiae,Passeriformes,Estrildidae (Waxbills and Allies),,grbtwi1 31777.5,issf,gnbtwi2,Green-backed Twinspot (Green-breasted),Mandingoa nitidula nitidula/chubbi,Passeriformes,Estrildidae (Waxbills and Allies),,grbtwi1 31780,species,shcwin1,Shelley's Crimsonwing,Cryptospiza shelleyi,Passeriformes,Estrildidae (Waxbills and Allies),, 31781,species,ducwin1,Dusky Crimsonwing,Cryptospiza jacksoni,Passeriformes,Estrildidae (Waxbills and Allies),, 31782,species,abcwin1,Abyssinian Crimsonwing,Cryptospiza salvadorii,Passeriformes,Estrildidae (Waxbills and Allies),, 31786,species,rfcwin1,Red-faced Crimsonwing,Cryptospiza reichenovii,Passeriformes,Estrildidae (Waxbills and Allies),, 31787,issf,refcrw1,Red-faced Crimsonwing (Western),Cryptospiza reichenovii reichenovii,Passeriformes,Estrildidae (Waxbills and Allies),,rfcwin1 31787.5,issf,refcrw2,Red-faced Crimsonwing (Eastern),Cryptospiza reichenovii australis/ocularis,Passeriformes,Estrildidae (Waxbills and Allies),,rfcwin1 31790,species,lavwax,Lavender Waxbill,Estrilda caerulescens,Passeriformes,Estrildidae (Waxbills and Allies),, 31791,species,bltwax1,Black-tailed Waxbill,Estrilda perreini,Passeriformes,Estrildidae (Waxbills and Allies),, 31794,species,cinwax1,Cinderella Waxbill,Estrilda thomensis,Passeriformes,Estrildidae (Waxbills and Allies),, 31795,species,fabwax1,Fawn-breasted Waxbill,Estrilda paludicola,Passeriformes,Estrildidae (Waxbills and Allies),, 31796,issf,fabwax3,Fawn-breasted Waxbill (Abyssinian),Estrilda paludicola ochrogaster,Passeriformes,Estrildidae (Waxbills and Allies),,fabwax1 31796.5,issf,fabwax2,Fawn-breasted Waxbill (Fawn-breasted),Estrilda paludicola [paludicola Group],Passeriformes,Estrildidae (Waxbills and Allies),,fabwax1 31802,species,anawax1,Anambra Waxbill,Estrilda poliopareia,Passeriformes,Estrildidae (Waxbills and Allies),, 31803,species,orcwax,Orange-cheeked Waxbill,Estrilda melpoda,Passeriformes,Estrildidae (Waxbills and Allies),, 31804,species,arawax1,Arabian Waxbill,Estrilda rufibarba,Passeriformes,Estrildidae (Waxbills and Allies),, 31805,species,crrwax1,Crimson-rumped Waxbill,Estrilda rhodopyga,Passeriformes,Estrildidae (Waxbills and Allies),, 31808,species,bkrwax,Black-rumped Waxbill,Estrilda troglodytes,Passeriformes,Estrildidae (Waxbills and Allies),, 31809,species,comwax,Common Waxbill,Estrilda astrild,Passeriformes,Estrildidae (Waxbills and Allies),, 31825,species,blfwax1,Black-lored Waxbill,Estrilda nigriloris,Passeriformes,Estrildidae (Waxbills and Allies),, 31826,species,blcwax2,Black-crowned Waxbill,Estrilda nonnula,Passeriformes,Estrildidae (Waxbills and Allies),, 31830,species,blhwax1,Black-headed Waxbill,Estrilda atricapilla,Passeriformes,Estrildidae (Waxbills and Allies),, 31834,species,kanwax1,Kandt's Waxbill,Estrilda kandti,Passeriformes,Estrildidae (Waxbills and Allies),, 31835,species,blcwax1,Black-faced Waxbill,Estrilda erythronotos,Passeriformes,Estrildidae (Waxbills and Allies),, 31838,species,rerwax1,Black-cheeked Waxbill,Estrilda charmosyna,Passeriformes,Estrildidae (Waxbills and Allies),, 31841,spuh,waxbil1,waxbill sp.,Estrilda sp.,Passeriformes,Estrildidae (Waxbills and Allies),, 31842,species,grablu1,Grant's Bluebill,Spermophaga poliogenys,Passeriformes,Estrildidae (Waxbills and Allies),, 31843,species,wesblu1,Western Bluebill,Spermophaga haematina,Passeriformes,Estrildidae (Waxbills and Allies),, 31843.5,issf,wesblu2,Western Bluebill (Western),Spermophaga haematina haematina/togoensis,Passeriformes,Estrildidae (Waxbills and Allies),,wesblu1 31846,issf,wesblu3,Western Bluebill (Red-rumped),Spermophaga haematina pustulata,Passeriformes,Estrildidae (Waxbills and Allies),,wesblu1 31847,species,rehblu1,Red-headed Bluebill,Spermophaga ruficapilla,Passeriformes,Estrildidae (Waxbills and Allies),, 31850,species,blbsee1,Black-bellied Seedcracker,Pyrenestes ostrinus,Passeriformes,Estrildidae (Waxbills and Allies),, 31851,species,crisee1,Crimson Seedcracker,Pyrenestes sanguineus,Passeriformes,Estrildidae (Waxbills and Allies),, 31852,species,lessee1,Lesser Seedcracker,Pyrenestes minor,Passeriformes,Estrildidae (Waxbills and Allies),, 31853,species,bubcor1,Southern Cordonbleu,Uraeginthus angolensis,Passeriformes,Estrildidae (Waxbills and Allies),, 31856,species,reccor,Red-cheeked Cordonbleu,Uraeginthus bengalus,Passeriformes,Estrildidae (Waxbills and Allies),, 31861,species,blccor1,Blue-capped Cordonbleu,Uraeginthus cyanocephalus,Passeriformes,Estrildidae (Waxbills and Allies),, 31861.5,spuh,cordon1,cordonbleu sp.,Uraeginthus sp.,Passeriformes,Estrildidae (Waxbills and Allies),, 31862,species,purgre2,Purple Grenadier,Granatina ianthinogaster,Passeriformes,Estrildidae (Waxbills and Allies),, 31863,species,viewax1,Violet-eared Waxbill,Granatina granatina,Passeriformes,Estrildidae (Waxbills and Allies),, 31864,species,dybtwi1,Dybowski's Twinspot,Euschistospiza dybowskii,Passeriformes,Estrildidae (Waxbills and Allies),, 31865,species,dustwi1,Dusky Twinspot,Euschistospiza cinereovinacea,Passeriformes,Estrildidae (Waxbills and Allies),, 31866,issf,dustwi2,Dusky Twinspot (Angolan),Euschistospiza cinereovinacea cinereovinacea,Passeriformes,Estrildidae (Waxbills and Allies),,dustwi1 31867,issf,dustwi3,Dusky Twinspot (Grauer's),Euschistospiza cinereovinacea graueri,Passeriformes,Estrildidae (Waxbills and Allies),,dustwi1 31868,species,pettwi1,Peters's Twinspot,Hypargos niveoguttatus,Passeriformes,Estrildidae (Waxbills and Allies),, 31871,species,pittwi1,Pink-throated Twinspot,Hypargos margaritatus,Passeriformes,Estrildidae (Waxbills and Allies),, 31872,species,brotwi1,Brown Twinspot,Clytospiza monteiri,Passeriformes,Estrildidae (Waxbills and Allies),, 31873,species,refpyt1,Red-faced Pytilia,Pytilia hypogrammica,Passeriformes,Estrildidae (Waxbills and Allies),, 31874,species,rewpyt1,Red-winged Pytilia,Pytilia phoenicoptera,Passeriformes,Estrildidae (Waxbills and Allies),, 31877,species,rebpyt1,Red-billed Pytilia,Pytilia lineata,Passeriformes,Estrildidae (Waxbills and Allies),, 31878,species,grwpyt1,Green-winged Pytilia,Pytilia melba,Passeriformes,Estrildidae (Waxbills and Allies),, 31878.2,spuh,pytili1,pytilia sp.,Pytilia sp.,Passeriformes,Estrildidae (Waxbills and Allies),, 31888,species,orwpyt1,Orange-winged Pytilia,Pytilia afra,Passeriformes,Estrildidae (Waxbills and Allies),, 31889,species,rebfir2,Red-billed Firefinch,Lagonosticta senegala,Passeriformes,Estrildidae (Waxbills and Allies),, 31896,species,babfir1,Bar-breasted Firefinch,Lagonosticta rufopicta,Passeriformes,Estrildidae (Waxbills and Allies),, 31899,species,brnfir1,Brown Firefinch,Lagonosticta nitidula,Passeriformes,Estrildidae (Waxbills and Allies),, 31900,species,bkffir1,Black-faced Firefinch,Lagonosticta larvata,Passeriformes,Estrildidae (Waxbills and Allies),, 31901,issf,bkffir2,Black-faced Firefinch (Vinaceous),Lagonosticta larvata vinacea,Passeriformes,Estrildidae (Waxbills and Allies),,bkffir1 31902,issf,bkffir3,Black-faced Firefinch (Gray),Lagonosticta larvata nigricollis,Passeriformes,Estrildidae (Waxbills and Allies),,bkffir1 31903,issf,bkffir4,Black-faced Firefinch (Reddish),Lagonosticta larvata larvata,Passeriformes,Estrildidae (Waxbills and Allies),,bkffir1 31904,species,blbfir1,Black-bellied Firefinch,Lagonosticta rara,Passeriformes,Estrildidae (Waxbills and Allies),, 31907,species,afffin,African Firefinch,Lagonosticta rubricata,Passeriformes,Estrildidae (Waxbills and Allies),, 31912,species,pabfir1,Pale-billed Firefinch,Lagonosticta landanae,Passeriformes,Estrildidae (Waxbills and Allies),, 31913,species,jamfir1,Jameson's Firefinch,Lagonosticta rhodopareia,Passeriformes,Estrildidae (Waxbills and Allies),, 31917,species,malfir1,Mali Firefinch,Lagonosticta virata,Passeriformes,Estrildidae (Waxbills and Allies),, 31918,species,rocfir1,Rock Firefinch,Lagonosticta sanguinodorsalis,Passeriformes,Estrildidae (Waxbills and Allies),, 31919,species,reifir1,Reichenow's Firefinch,Lagonosticta umbrinodorsalis,Passeriformes,Estrildidae (Waxbills and Allies),, 31920,spuh,firefi1,firefinch sp.,Lagonosticta sp.,Passeriformes,Estrildidae (Waxbills and Allies),, 31921,species,cutthr1,Cut-throat,Amadina fasciata,Passeriformes,Estrildidae (Waxbills and Allies),, 31926,species,rehfin1,Red-headed Finch,Amadina erythrocephala,Passeriformes,Estrildidae (Waxbills and Allies),, 31929,species,zebwax2,Zebra Waxbill,Sporaeginthus subflavus,Passeriformes,Estrildidae (Waxbills and Allies),, 31932,species,grnava1,Green Avadavat,Sporaeginthus formosus,Passeriformes,Estrildidae (Waxbills and Allies),, 31933,species,redava,Red Avadavat,Amandava amandava,Passeriformes,Estrildidae (Waxbills and Allies),, 31937,species,bkfqua1,Black-faced Quailfinch,Ortygospiza atricollis,Passeriformes,Estrildidae (Waxbills and Allies),, 31941,species,rebqua1,Black-chinned Quailfinch,Ortygospiza gabonensis,Passeriformes,Estrildidae (Waxbills and Allies),, 31945,species,afrqua2,African Quailfinch,Ortygospiza fuscocrissa,Passeriformes,Estrildidae (Waxbills and Allies),, 31951,species,locust3,Locustfinch,Paludipasser locustella,Passeriformes,Estrildidae (Waxbills and Allies),, 31954,species,paifir1,Painted Firetail,Emblema pictum,Passeriformes,Estrildidae (Waxbills and Allies),, 31955,species,beafir1,Beautiful Firetail,Stagonopleura bella,Passeriformes,Estrildidae (Waxbills and Allies),, 31959,species,reefir1,Red-eared Firetail,Stagonopleura oculata,Passeriformes,Estrildidae (Waxbills and Allies),, 31960,species,diafir1,Diamond Firetail,Stagonopleura guttata,Passeriformes,Estrildidae (Waxbills and Allies),, 31961,species,moufir1,Mountain Firetail,Oreostruthus fuliginosus,Passeriformes,Estrildidae (Waxbills and Allies),, 31965,species,rebfir1,Red-browed Firetail,Neochmia temporalis,Passeriformes,Estrildidae (Waxbills and Allies),, 31968,species,crifin1,Crimson Finch,Neochmia phaeton,Passeriformes,Estrildidae (Waxbills and Allies),, 31968.2,issf,crifin2,Crimson Finch (White-bellied),Neochmia phaeton evangelinae,Passeriformes,Estrildidae (Waxbills and Allies),,crifin1 31968.4,issf,crifin3,Crimson Finch (Black-bellied),Neochmia phaeton phaeton,Passeriformes,Estrildidae (Waxbills and Allies),,crifin1 31971,species,stafin1,Star Finch,Neochmia ruficauda,Passeriformes,Estrildidae (Waxbills and Allies),, 31975,species,plhfin1,Plum-headed Finch,Neochmia modesta,Passeriformes,Estrildidae (Waxbills and Allies),, 31975.5,species,zebfin2,Zebra Finch,Taeniopygia guttata,Passeriformes,Estrildidae (Waxbills and Allies),, 31976,issf,zebfin1,Zebra Finch (Lesser Sundas),Taeniopygia guttata guttata,Passeriformes,Estrildidae (Waxbills and Allies),,zebfin2 31977,issf,chefin1,Zebra Finch (Australian),Taeniopygia guttata castanotis,Passeriformes,Estrildidae (Waxbills and Allies),,zebfin2 31978,species,dobfin1,Double-barred Finch,Taeniopygia bichenovii,Passeriformes,Estrildidae (Waxbills and Allies),, 31978.2,hybrid,x00906,Zebra x Double-barred Finch (hybrid),Taeniopygia guttata x bichenovii,Passeriformes,Estrildidae (Waxbills and Allies),, 31981,species,masfin1,Masked Finch,Poephila personata,Passeriformes,Estrildidae (Waxbills and Allies),, 31982,issf,masfin2,Masked Finch (Masked),Poephila personata personata,Passeriformes,Estrildidae (Waxbills and Allies),,masfin1 31983,issf,masfin4,Masked Finch (White-eared),Poephila personata leucotis,Passeriformes,Estrildidae (Waxbills and Allies),,masfin1 31984,species,lotfin1,Long-tailed Finch,Poephila acuticauda,Passeriformes,Estrildidae (Waxbills and Allies),, 31987,species,bltfin1,Black-throated Finch,Poephila cincta,Passeriformes,Estrildidae (Waxbills and Allies),, 31988,issf,bktfin1,Black-throated Finch (Black-rumped),Poephila cincta atropygialis,Passeriformes,Estrildidae (Waxbills and Allies),,bltfin1 31989,issf,bktfin2,Black-throated Finch (White-rumped),Poephila cincta cincta,Passeriformes,Estrildidae (Waxbills and Allies),,bltfin1 31990,species,tabpar1,Tawny-breasted Parrotfinch,Erythrura hyperythra,Passeriformes,Estrildidae (Waxbills and Allies),, 31997,species,pitpar1,Pin-tailed Parrotfinch,Erythrura prasina,Passeriformes,Estrildidae (Waxbills and Allies),, 32000,species,grfpar1,Green-faced Parrotfinch,Erythrura viridifacies,Passeriformes,Estrildidae (Waxbills and Allies),, 32001,species,tripar1,Tricolored Parrotfinch,Erythrura tricolor,Passeriformes,Estrildidae (Waxbills and Allies),, 32002,species,blfpar3,Blue-faced Parrotfinch,Erythrura trichroa,Passeriformes,Estrildidae (Waxbills and Allies),, 32013.5,form,timpar1,Mount Mutis Parrotfinch (undescribed form),Erythrura [undescribed form],Passeriformes,Estrildidae (Waxbills and Allies),, 32014,species,reepar2,Red-eared Parrotfinch,Erythrura coloria,Passeriformes,Estrildidae (Waxbills and Allies),, 32015,species,pappar1,Papuan Parrotfinch,Erythrura papuana,Passeriformes,Estrildidae (Waxbills and Allies),, 32016,species,retpar3,Red-throated Parrotfinch,Erythrura psittacea,Passeriformes,Estrildidae (Waxbills and Allies),, 32017,species,fijpar1,Fiji Parrotfinch,Erythrura pealii,Passeriformes,Estrildidae (Waxbills and Allies),, 32018,species,rehpar1,Red-headed Parrotfinch,Erythrura cyaneovirens,Passeriformes,Estrildidae (Waxbills and Allies),, 32023,species,roypar1,Royal Parrotfinch,Erythrura regia,Passeriformes,Estrildidae (Waxbills and Allies),, 32024,species,pibpar1,Pink-billed Parrotfinch,Erythrura kleinschmidti,Passeriformes,Estrildidae (Waxbills and Allies),, 32025,species,goufin3,Gouldian Finch,Erythrura gouldiae,Passeriformes,Estrildidae (Waxbills and Allies),, 32026,species,gyhsil1,Gray-headed Silverbill,Odontospiza griseicapilla,Passeriformes,Estrildidae (Waxbills and Allies),, 32027,species,broman1,Bronze Mannikin,Spermestes cucullata,Passeriformes,Estrildidae (Waxbills and Allies),, 32030,species,bawman1,Black-and-white Mannikin,Spermestes bicolor,Passeriformes,Estrildidae (Waxbills and Allies),, 32031,issf,bawman2,Black-and-white Mannikin (Black-and-white),Spermestes bicolor bicolor/poensis,Passeriformes,Estrildidae (Waxbills and Allies),,bawman1 32034,issf,bawman3,Black-and-white Mannikin (Red-backed),Spermestes bicolor nigriceps/woltersi,Passeriformes,Estrildidae (Waxbills and Allies),,bawman1 32037,species,magman1,Magpie Mannikin,Spermestes fringilloides,Passeriformes,Estrildidae (Waxbills and Allies),, 32038,species,indsil,Indian Silverbill,Euodice malabarica,Passeriformes,Estrildidae (Waxbills and Allies),, 32039,species,afrsil1,African Silverbill,Euodice cantans,Passeriformes,Estrildidae (Waxbills and Allies),, 32042,species,madmun1,Madagascar Munia,Lonchura nana,Passeriformes,Estrildidae (Waxbills and Allies),, 32043,species,whrmun,White-rumped Munia,Lonchura striata,Passeriformes,Estrildidae (Waxbills and Allies),, 32051,species,javmun1,Javan Munia,Lonchura leucogastroides,Passeriformes,Estrildidae (Waxbills and Allies),, 32052,species,dusmun1,Dusky Munia,Lonchura fuscans,Passeriformes,Estrildidae (Waxbills and Allies),, 32053,species,blfmun1,Black-faced Munia,Lonchura molucca,Passeriformes,Estrildidae (Waxbills and Allies),, 32054,species,bltmun1,Black-throated Munia,Lonchura kelaarti,Passeriformes,Estrildidae (Waxbills and Allies),, 32057,species,nutman,Scaly-breasted Munia,Lonchura punctulata,Passeriformes,Estrildidae (Waxbills and Allies),, 32058,issf,scbmun1,Scaly-breasted Munia (Checkered),Lonchura punctulata punctulata,Passeriformes,Estrildidae (Waxbills and Allies),,nutman 32058.5,issf,scbmun2,Scaly-breasted Munia (Scaled),Lonchura punctulata [nisoria Group],Passeriformes,Estrildidae (Waxbills and Allies),,nutman 32070,species,whbmun1,White-bellied Munia,Lonchura leucogastra,Passeriformes,Estrildidae (Waxbills and Allies),, 32077,species,sthmun1,Streak-headed Munia,Lonchura tristissima,Passeriformes,Estrildidae (Waxbills and Allies),, 32077.5,issf,sthmun2,Streak-headed Munia (Streak-headed),Lonchura tristissima [tristissima Group],Passeriformes,Estrildidae (Waxbills and Allies),,sthmun1 32082,issf,sthmun3,Streak-headed Munia (White-spotted),Lonchura tristissima leucosticta/moresbyensis,Passeriformes,Estrildidae (Waxbills and Allies),,sthmun1 32084,species,trimun,Tricolored Munia,Lonchura malacca,Passeriformes,Estrildidae (Waxbills and Allies),, 32087,species,chemun,Chestnut Munia,Lonchura atricapilla,Passeriformes,Estrildidae (Waxbills and Allies),, 32087.5,issf,chemun1,Chestnut Munia (Chestnut),Lonchura atricapilla [atricapilla Group],Passeriformes,Estrildidae (Waxbills and Allies),,chemun 32096.5,issf,chemun2,Chestnut Munia (formosana),Lonchura atricapilla formosana,Passeriformes,Estrildidae (Waxbills and Allies),,chemun 32097,species,whcmun1,White-capped Munia,Lonchura ferruginosa,Passeriformes,Estrildidae (Waxbills and Allies),, 32098,species,ficmun1,Five-colored Munia,Lonchura quinticolor,Passeriformes,Estrildidae (Waxbills and Allies),, 32102,species,whhmun1,White-headed Munia,Lonchura maja,Passeriformes,Estrildidae (Waxbills and Allies),, 32105,species,pahmun1,Pale-headed Munia,Lonchura pallida,Passeriformes,Estrildidae (Waxbills and Allies),, 32108,species,gramun1,Grand Munia,Lonchura grandis,Passeriformes,Estrildidae (Waxbills and Allies),, 32113,species,gybmun1,Gray-banded Munia,Lonchura vana,Passeriformes,Estrildidae (Waxbills and Allies),, 32114,species,gycmun1,Gray-crowned Munia,Lonchura nevermanni,Passeriformes,Estrildidae (Waxbills and Allies),, 32115,species,hoomun1,Hooded Munia,Lonchura spectabilis,Passeriformes,Estrildidae (Waxbills and Allies),, 32121,species,gyhmun1,Gray-headed Munia,Lonchura caniceps,Passeriformes,Estrildidae (Waxbills and Allies),, 32125,species,motmun1,Mottled Munia,Lonchura hunsteini,Passeriformes,Estrildidae (Waxbills and Allies),, 32126,species,neimun1,New Ireland Munia,Lonchura forbesi,Passeriformes,Estrildidae (Waxbills and Allies),, 32127,species,nehmun1,New Hanover Munia,Lonchura nigerrima,Passeriformes,Estrildidae (Waxbills and Allies),, 32128,species,yermun1,Yellow-rumped Munia,Lonchura flaviprymna,Passeriformes,Estrildidae (Waxbills and Allies),, 32129,species,chbmun1,Chestnut-breasted Munia,Lonchura castaneothorax,Passeriformes,Estrildidae (Waxbills and Allies),, 32135,species,blamun1,Black Munia,Lonchura stygia,Passeriformes,Estrildidae (Waxbills and Allies),, 32136,species,blbmun1,Black-breasted Munia,Lonchura teerinki,Passeriformes,Estrildidae (Waxbills and Allies),, 32139,species,snmmun1,Snow Mountain Munia,Lonchura montana,Passeriformes,Estrildidae (Waxbills and Allies),, 32140,species,alpmun1,Alpine Munia,Lonchura monticola,Passeriformes,Estrildidae (Waxbills and Allies),, 32141,species,bismun1,Bismarck Munia,Lonchura melaena,Passeriformes,Estrildidae (Waxbills and Allies),, 32143,species,javspa,Java Sparrow,Lonchura oryzivora,Passeriformes,Estrildidae (Waxbills and Allies),, 32144,species,timspa4,Timor Sparrow,Lonchura fuscata,Passeriformes,Estrildidae (Waxbills and Allies),, 32145,spuh,lonchu1,Lonchura sp.,Lonchura sp.,Passeriformes,Estrildidae (Waxbills and Allies),, 32146,species,picmun1,Pictorella Munia,Heteromunia pectoralis,Passeriformes,Estrildidae (Waxbills and Allies),, 32147,spuh,estfin1,estrildid finch sp.,Estrildidae sp.,Passeriformes,Estrildidae (Waxbills and Allies),, 32148,species,pitwhy,Pin-tailed Whydah,Vidua macroura,Passeriformes,Viduidae (Indigobirds),Indigobirds, 32149,species,nopwhy1,Sahel Paradise-Whydah,Vidua orientalis,Passeriformes,Viduidae (Indigobirds),, 32152,species,ltpwhy1,Exclamatory Paradise-Whydah,Vidua interjecta,Passeriformes,Viduidae (Indigobirds),, 32153,species,topwhy1,Togo Paradise-Whydah,Vidua togoensis,Passeriformes,Viduidae (Indigobirds),, 32154,species,btpwhy1,Broad-tailed Paradise-Whydah,Vidua obtusa,Passeriformes,Viduidae (Indigobirds),, 32155,species,eapwhy1,Eastern Paradise-Whydah,Vidua paradisaea,Passeriformes,Viduidae (Indigobirds),, 32156,species,stbwhy1,Steel-blue Whydah,Vidua hypocherina,Passeriformes,Viduidae (Indigobirds),, 32157,species,sttwhy1,Straw-tailed Whydah,Vidua fischeri,Passeriformes,Viduidae (Indigobirds),, 32158,species,shtwhy1,Shaft-tailed Whydah,Vidua regia,Passeriformes,Viduidae (Indigobirds),, 32159,species,vilind,Village Indigobird,Vidua chalybeata,Passeriformes,Viduidae (Indigobirds),, 32166,species,pawind1,Wilson's Indigobird,Vidua wilsoni,Passeriformes,Viduidae (Indigobirds),, 32167,species,quaind1,Quailfinch Indigobird,Vidua nigeriae,Passeriformes,Viduidae (Indigobirds),, 32168,species,jopind1,Jos Plateau Indigobird,Vidua maryae,Passeriformes,Viduidae (Indigobirds),, 32169,species,jamind1,Jambandu Indigobird,Vidua raricola,Passeriformes,Viduidae (Indigobirds),, 32170,species,bakind1,Baka Indigobird,Vidua larvaticola,Passeriformes,Viduidae (Indigobirds),, 32171,species,camind1,Cameroon Indigobird,Vidua camerunensis,Passeriformes,Viduidae (Indigobirds),, 32172,species,varind1,Variable Indigobird,Vidua funerea,Passeriformes,Viduidae (Indigobirds),, 32175,species,purind1,Purple Indigobird,Vidua purpurascens,Passeriformes,Viduidae (Indigobirds),, 32176,species,greind1,Green Indigobird,Vidua codringtoni,Passeriformes,Viduidae (Indigobirds),, 32176.1,spuh,paradi4,paradise-whydah sp.,Vidua sp. (paradise-whydah sp.),Passeriformes,Viduidae (Indigobirds),, 32176.2,spuh,whydah1,whydah sp.,Vidua sp. (whydah sp.),Passeriformes,Viduidae (Indigobirds),, 32176.4,spuh,indigo1,indigobird sp.,Vidua sp. (indigobird sp.),Passeriformes,Viduidae (Indigobirds),, 32177,spuh,vidua1,Vidua sp.,Vidua sp.,Passeriformes,Viduidae (Indigobirds),, 32178,species,parwea1,Parasitic Weaver,Anomalospiza imberbis,Passeriformes,Viduidae (Indigobirds),, 32181,spuh,passer1,passerine sp.,Passeriformes sp.,Passeriformes,,Others, 34000,spuh,bird1,bird sp.,Aves sp.,,,, \ No newline at end of file +TAXON_ORDER,CATEGORY,SPECIES_CODE,PRIMARY_COM_NAME,SCI_NAME,ORDER1,FAMILY,SPECIES_GROUP,REPORT_AS +1,species,ostric2,Common Ostrich,Struthio camelus,Struthioniformes,Struthionidae (Ostriches),Ostriches, +6,species,ostric3,Somali Ostrich,Struthio molybdophanes,Struthioniformes,Struthionidae (Ostriches),, +7,slash,y00934,Common/Somali Ostrich,Struthio camelus/molybdophanes,Struthioniformes,Struthionidae (Ostriches),, +8,species,grerhe1,Greater Rhea,Rhea americana,Rheiformes,Rheidae (Rheas),Rheas, +14,species,lesrhe2,Lesser Rhea,Rhea pennata,Rheiformes,Rheidae (Rheas),, +15,issf,lesrhe4,Lesser Rhea (Puna),Rhea pennata tarapacensis/garleppi,Rheiformes,Rheidae (Rheas),,lesrhe2 +18,issf,lesrhe3,Lesser Rhea (Darwin's),Rhea pennata pennata,Rheiformes,Rheidae (Rheas),,lesrhe2 +19,species,tabtin1,Tawny-breasted Tinamou,Nothocercus julius,Tinamiformes,Tinamidae (Tinamous),Tinamous, +20,species,higtin1,Highland Tinamou,Nothocercus bonapartei,Tinamiformes,Tinamidae (Tinamous),, +21,issf,higtin2,Highland Tinamou (South American),Nothocercus bonapartei [bonapartei Group],Tinamiformes,Tinamidae (Tinamous),,higtin1 +26,issf,higtin3,Highland Tinamou (Costa Rican),Nothocercus bonapartei frantzii,Tinamiformes,Tinamidae (Tinamous),,higtin1 +27,species,hootin1,Hooded Tinamou,Nothocercus nigrocapillus,Tinamiformes,Tinamidae (Tinamous),, +30,species,grytin1,Gray Tinamou,Tinamus tao,Tinamiformes,Tinamidae (Tinamous),, +35,species,soltin1,Solitary Tinamou,Tinamus solitarius,Tinamiformes,Tinamidae (Tinamous),, +36,species,blatin1,Black Tinamou,Tinamus osgoodi,Tinamiformes,Tinamidae (Tinamous),, +39,species,gretin1,Great Tinamou,Tinamus major,Tinamiformes,Tinamidae (Tinamous),, +52,species,whttin1,White-throated Tinamou,Tinamus guttatus,Tinamiformes,Tinamidae (Tinamous),, +53,spuh,tinamu1,Tinamus sp.,Tinamus sp.,Tinamiformes,Tinamidae (Tinamous),, +54,species,cintin1,Cinereous Tinamou,Crypturellus cinereus,Tinamiformes,Tinamidae (Tinamous),, +55,species,bertin1,Berlepsch's Tinamou,Crypturellus berlepschi,Tinamiformes,Tinamidae (Tinamous),, +56,species,littin1,Little Tinamou,Crypturellus soui,Tinamiformes,Tinamidae (Tinamous),, +71,species,teptin1,Tepui Tinamou,Crypturellus ptaritepui,Tinamiformes,Tinamidae (Tinamous),, +72,species,brotin1,Brown Tinamou,Crypturellus obsoletus,Tinamiformes,Tinamidae (Tinamous),, +73,issf,brntin1,Brown Tinamou (castaneus),Crypturellus obsoletus castaneus,Tinamiformes,Tinamidae (Tinamous),,brotin1 +74,issf,brntin2,Brown Tinamou (Brown),Crypturellus obsoletus [obsoletus Group],Tinamiformes,Tinamidae (Tinamous),,brotin1 +83,species,undtin1,Undulated Tinamou,Crypturellus undulatus,Tinamiformes,Tinamidae (Tinamous),, +90,species,pabtin1,Pale-browed Tinamou,Crypturellus transfasciatus,Tinamiformes,Tinamidae (Tinamous),, +91,species,bratin1,Brazilian Tinamou,Crypturellus strigulosus,Tinamiformes,Tinamidae (Tinamous),, +92,species,gyltin1,Gray-legged Tinamou,Crypturellus duidae,Tinamiformes,Tinamidae (Tinamous),, +93,species,reltin1,Red-legged Tinamou,Crypturellus erythropus,Tinamiformes,Tinamidae (Tinamous),, +101,species,yeltin1,Yellow-legged Tinamou,Crypturellus noctivagus,Tinamiformes,Tinamidae (Tinamous),, +102,issf,yeltin2,Yellow-legged Tinamou (zabele),Crypturellus noctivagus zabele,Tinamiformes,Tinamidae (Tinamous),,yeltin1 +103,issf,yeltin3,Yellow-legged Tinamou (noctivagus),Crypturellus noctivagus noctivagus,Tinamiformes,Tinamidae (Tinamous),,yeltin1 +104,species,blctin1,Black-capped Tinamou,Crypturellus atrocapillus,Tinamiformes,Tinamidae (Tinamous),, +107,species,slbtin1,Slaty-breasted Tinamou,Crypturellus boucardi,Tinamiformes,Tinamidae (Tinamous),, +110,species,chotin1,Choco Tinamou,Crypturellus kerriae,Tinamiformes,Tinamidae (Tinamous),, +111,species,vartin1,Variegated Tinamou,Crypturellus variegatus,Tinamiformes,Tinamidae (Tinamous),, +112,species,thitin1,Thicket Tinamou,Crypturellus cinnamomeus,Tinamiformes,Tinamidae (Tinamous),, +113,issf,thitin2,Thicket Tinamou (occidentalis),Crypturellus cinnamomeus occidentalis,Tinamiformes,Tinamidae (Tinamous),,thitin1 +114,issf,thitin3,Thicket Tinamou (cinnamomeus Group),Crypturellus cinnamomeus [cinnamomeus Group],Tinamiformes,Tinamidae (Tinamous),,thitin1 +123,species,rustin1,Rusty Tinamou,Crypturellus brevirostris,Tinamiformes,Tinamidae (Tinamous),, +124,species,bartin2,Bartlett's Tinamou,Crypturellus bartletti,Tinamiformes,Tinamidae (Tinamous),, +125,species,smbtin1,Small-billed Tinamou,Crypturellus parvirostris,Tinamiformes,Tinamidae (Tinamous),, +126,species,bartin1,Barred Tinamou,Crypturellus casiquiare,Tinamiformes,Tinamidae (Tinamous),, +127,species,tattin1,Tataupa Tinamou,Crypturellus tataupa,Tinamiformes,Tinamidae (Tinamous),, +132,spuh,cryptu1,Crypturellus sp.,Crypturellus sp.,Tinamiformes,Tinamidae (Tinamous),, +133,species,rewtin1,Red-winged Tinamou,Rhynchotus rufescens,Tinamiformes,Tinamidae (Tinamous),, +137,species,huatin1,Huayco Tinamou,Rhynchotus maculicollis,Tinamiformes,Tinamidae (Tinamous),, +138,species,tactin1,Taczanowski's Tinamou,Nothoprocta taczanowskii,Tinamiformes,Tinamidae (Tinamous),, +139,species,orntin1,Ornate Tinamou,Nothoprocta ornata,Tinamiformes,Tinamidae (Tinamous),, +143,species,chitin1,Chilean Tinamou,Nothoprocta perdicaria,Tinamiformes,Tinamidae (Tinamous),, +146,species,brutin1,Brushland Tinamou,Nothoprocta cinerascens,Tinamiformes,Tinamidae (Tinamous),, +149,species,andtin1,Andean Tinamou,Nothoprocta pentlandii,Tinamiformes,Tinamidae (Tinamous),, +157,species,cubtin1,Curve-billed Tinamou,Nothoprocta curvirostris,Tinamiformes,Tinamidae (Tinamous),, +160,spuh,nothop1,Nothoprocta sp.,Nothoprocta sp.,Tinamiformes,Tinamidae (Tinamous),, +161,species,whbnot1,White-bellied Nothura,Nothura boraquira,Tinamiformes,Tinamidae (Tinamous),, +162,species,lesnot1,Lesser Nothura,Nothura minor,Tinamiformes,Tinamidae (Tinamous),, +163,species,darnot1,Darwin's Nothura,Nothura darwinii,Tinamiformes,Tinamidae (Tinamous),, +169,species,sponot1,Spotted Nothura,Nothura maculosa,Tinamiformes,Tinamidae (Tinamous),, +179,species,dwatin1,Dwarf Tinamou,Taoniscus nanus,Tinamiformes,Tinamidae (Tinamous),, +180,species,elctin1,Elegant Crested-Tinamou,Eudromia elegans,Tinamiformes,Tinamidae (Tinamous),, +191,species,quctin1,Quebracho Crested-Tinamou,Eudromia formosa,Tinamiformes,Tinamidae (Tinamous),, +194,species,puntin1,Puna Tinamou,Tinamotis pentlandii,Tinamiformes,Tinamidae (Tinamous),, +195,species,pattin1,Patagonian Tinamou,Tinamotis ingoufi,Tinamiformes,Tinamidae (Tinamous),, +196,spuh,tinamo1,tinamou sp.,Tinamidae sp.,Tinamiformes,Tinamidae (Tinamous),, +197,species,soucas1,Southern Cassowary,Casuarius casuarius,Casuariiformes,Casuariidae (Cassowaries and Emu),Cassowaries and Emu, +198,species,dwacas1,Dwarf Cassowary,Casuarius bennetti,Casuariiformes,Casuariidae (Cassowaries and Emu),, +199,species,norcas1,Northern Cassowary,Casuarius unappendiculatus,Casuariiformes,Casuariidae (Cassowaries and Emu),, +200,species,emu1,Emu,Dromaius novaehollandiae,Casuariiformes,Casuariidae (Cassowaries and Emu),, +205,species,sobkiw1,Southern Brown Kiwi,Apteryx australis,Apterygiformes,Apterygidae (Kiwis),Kiwis, +206,issf,sobkiw2,Southern Brown Kiwi (South I.),Apteryx australis australis,Apterygiformes,Apterygidae (Kiwis),,sobkiw1 +207,issf,sobkiw3,Southern Brown Kiwi (Stewart I.),Apteryx australis lawryi,Apterygiformes,Apterygidae (Kiwis),,sobkiw1 +208,species,okbkiw1,Okarito Brown Kiwi,Apteryx rowi,Apterygiformes,Apterygidae (Kiwis),, +209,species,nibkiw1,North Island Brown Kiwi,Apteryx mantelli,Apterygiformes,Apterygidae (Kiwis),, +210,species,liskiw1,Little Spotted Kiwi,Apteryx owenii,Apterygiformes,Apterygidae (Kiwis),, +211,species,grskiw1,Great Spotted Kiwi,Apteryx haastii,Apterygiformes,Apterygidae (Kiwis),, +212,species,horscr1,Horned Screamer,Anhima cornuta,Anseriformes,Anhimidae (Screamers),Screamers, +213,species,souscr1,Southern Screamer,Chauna torquata,Anseriformes,Anhimidae (Screamers),, +214,species,norscr1,Northern Screamer,Chauna chavaria,Anseriformes,Anhimidae (Screamers),, +215,species,maggoo1,Magpie Goose,Anseranas semipalmata,Anseriformes,Anseranatidae (Magpie Goose),Waterfowl, +216,species,spwduc1,Spotted Whistling-Duck,Dendrocygna guttata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +217,species,plwduc1,Plumed Whistling-Duck,Dendrocygna eytoni,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +218,species,wfwduc1,White-faced Whistling-Duck,Dendrocygna viduata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +219,hybrid,x00721,Spotted x White-faced Whistling-Duck (hybrid),Dendrocygna guttata x viduata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +220,species,bbwduc,Black-bellied Whistling-Duck,Dendrocygna autumnalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +221,issf,bkbwhd1,Black-bellied Whistling-Duck (fulgens),Dendrocygna autumnalis fulgens,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,bbwduc +222,issf,bkbwhd2,Black-bellied Whistling-Duck (autumnalis),Dendrocygna autumnalis autumnalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,bbwduc +223,species,wiwduc1,West Indian Whistling-Duck,Dendrocygna arborea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +224,hybrid,x00775,Black-bellied x West Indian Whistling-Duck (hybrid),Dendrocygna autumnalis x arborea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +225,species,fuwduc,Fulvous Whistling-Duck,Dendrocygna bicolor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +226,hybrid,x00938,White-faced x Fulvous Whistling-Duck (hybrid),Dendrocygna viduata x bicolor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +227,hybrid,x00875,Black-bellied x Fulvous Whistling-Duck (hybrid),Dendrocygna autumnalis x bicolor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +228,species,wawduc1,Wandering Whistling-Duck,Dendrocygna arcuata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +232,species,lewduc1,Lesser Whistling-Duck,Dendrocygna javanica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +233,slash,y01080,Fulvous/Lesser Whistling-Duck,Dendrocygna bicolor/javanica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +234,spuh,whistl1,whistling-duck sp.,Dendrocygna sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +235,species,whbduc1,White-backed Duck,Thalassornis leuconotus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +238,species,bahgoo,Bar-headed Goose,Anser indicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +239,species,empgoo,Emperor Goose,Anser canagicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +240,species,snogoo,Snow Goose,Anser caerulescens,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +243,species,rosgoo,Ross's Goose,Anser rossii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +244,hybrid,sxrgoo1,Snow x Ross's Goose (hybrid),Anser caerulescens x rossii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +245,slash,y00469,Snow/Ross's Goose,Anser caerulescens/rossii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +246,species,gragoo,Graylag Goose,Anser anser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +247,issf,gragoo2,Graylag Goose (European),Anser anser anser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gragoo +248,issf,gragoo3,Graylag Goose (Siberian),Anser anser rubrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gragoo +249,domestic,gragoo1,Graylag Goose (Domestic type),Anser anser (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +250,species,swagoo1,Swan Goose,Anser cygnoides,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +251,domestic,swagoo2,Swan Goose (Domestic type),Anser cygnoides (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +252,hybrid,x00776,Graylag x Swan Goose (Domestic type) (hybrid),Anser anser x cygnoides (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +253,species,gwfgoo,Greater White-fronted Goose,Anser albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +254,issf,gwfgoo1,Greater White-fronted Goose (Greenland),Anser albifrons flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo +255,issf,gwfgoo4,Greater White-fronted Goose (Eurasian),Anser albifrons albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo +256,issf,gwfgoo2,Greater White-fronted Goose (Western),Anser albifrons gambelli/sponsa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo +259,issf,gwfgoo3,Greater White-fronted Goose (Tule),Anser albifrons elgasi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gwfgoo +260,hybrid,x00755,Bar-headed x Greater White-fronted Goose (hybrid),Anser indicus x albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +261,hybrid,x00627,Snow x Greater White-fronted Goose (hybrid),Anser caerulescens x albifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +262,species,lwfgoo,Lesser White-fronted Goose,Anser erythropus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +263,slash,y00707,Greater/Lesser White-fronted Goose,Anser albifrons/erythropus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +264,species,taibeg1,Taiga Bean-Goose,Anser fabalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +268,species,tunbeg1,Tundra Bean-Goose,Anser serrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +271,slash,y00468,Taiga/Tundra Bean-Goose,Anser fabalis/serrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +272,species,pifgoo,Pink-footed Goose,Anser brachyrhynchus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +273,domestic,domgoo1,Domestic goose sp. (Domestic type),Anser sp. (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +274,spuh,anser1,Anser sp.,Anser sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +275,species,brant,Brant,Branta bernicla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +276,issf,dabbra1,Brant (Dark-bellied),Branta bernicla bernicla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant +277,issf,atlbra1,Brant (Atlantic),Branta bernicla hrota,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant +278,issf,blkbra1,Brant (Black),Branta bernicla nigricans,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant +279,form,gybbra1,Brant (Gray-bellied),Branta bernicla (Gray-bellied),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant +280,intergrade,brant1,Brant (Atlantic x Black),Branta bernicla hrota x nigricans,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,brant +281,hybrid,x00685,Snow Goose x Brant (hybrid),Anser caerulescens x Branta bernicla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +282,species,bargoo,Barnacle Goose,Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +283,hybrid,x00756,Pink-footed x Barnacle Goose (hybrid),Anser brachyrhynchus x Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +284,hybrid,x00757,Greater White-fronted x Barnacle Goose (hybrid),Anser albifrons x Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +285,hybrid,x00649,Graylag x Barnacle Goose (hybrid),Anser anser x Branta leucopsis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +286,species,cacgoo1,Cackling Goose,Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +287,issf,alcgoo1,Cackling Goose (Aleutian),Branta hutchinsii leucopareia,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 +288,issf,ricgoo1,Cackling Goose (Richardson's),Branta hutchinsii hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 +289,issf,cacgoo2,Cackling Goose (minima),Branta hutchinsii minima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 +290,issf,tacgoo1,Cackling Goose (Taverner's),Branta hutchinsii taverneri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cacgoo1 +291,hybrid,x00831,Emperor x Cackling Goose (hybrid),Anser canagicus x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +292,hybrid,x00692,Snow x Cackling Goose (hybrid),Anser caerulescens x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +293,hybrid,x00694,Ross's x Cackling Goose (hybrid),Anser rossii x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +294,hybrid,x00722,Brant x Cackling Goose (hybrid),Branta bernicla x hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +295,hybrid,x00414,Greater White-fronted x Cackling Goose (hybrid),Anser albifrons x Branta hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +296,hybrid,x00416,Barnacle x Cackling Goose (hybrid),Branta leucopsis x hutchinsii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +297,species,cangoo,Canada Goose,Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +298,issf,cangoo4,Canada Goose (moffitti/maxima),Branta canadensis moffitti/maxima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cangoo +301,issf,cangoo3,Canada Goose (occidentalis/fulva),Branta canadensis occidentalis/fulva,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cangoo +304,issf,cangoo1,Canada Goose (canadensis Group),Branta canadensis [canadensis Group],Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,cangoo +308,hybrid,x00908,Bar-headed x Canada Goose (hybrid),Anser indicus x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +309,hybrid,swagoo3,Swan Goose (Domestic type) x Canada Goose (hybrid),Anser cygnoides (Domestic type) x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +310,hybrid,x00650,Pink-footed x Canada Goose (hybrid),Anser brachyrhynchus x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +311,hybrid,x00415,Greater White-fronted x Canada Goose (hybrid),Anser albifrons x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +312,hybrid,x00758,Graylag x Canada Goose (hybrid),Anser anser x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +313,hybrid,gragoo4,Graylag Goose (Domestic type) x Canada Goose (hybrid),Anser anser (Domestic type) x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +314,hybrid,x00759,Domestic goose sp. (Domestic type) x Canada Goose (hybrid),Anser sp. (Domestic type) x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +315,hybrid,x00197,Snow x Canada Goose (hybrid),Anser caerulescens x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +316,hybrid,x00693,Ross's x Canada Goose (hybrid),Anser rossii x Branta canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +317,hybrid,x00417,Barnacle x Canada Goose (hybrid),Branta leucopsis x canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +318,slash,y00470,Cackling/Canada Goose,Branta hutchinsii/canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +319,hybrid,y00765,Snow/Ross's x Cackling/Canada Goose (hybrid),Anser caerulescens/rossii x Branta hutchinsii/canadensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +320,species,hawgoo,Hawaiian Goose,Branta sandvicensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +321,species,rebgoo1,Red-breasted Goose,Branta ruficollis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +322,hybrid,x00939,Greater White-fronted x Red-breasted Goose (hybrid),Anser albifrons x Branta ruficollis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +323,spuh,branta1,Branta sp.,Branta sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +324,spuh,goose1,goose sp.,Anser/Branta sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +325,species,cabgoo1,Cape Barren Goose,Cereopsis novaehollandiae,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +328,species,freduc1,Freckled Duck,Stictonetta naevosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +329,species,buwgoo1,Blue-winged Goose,Cyanochen cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +330,species,mutswa,Mute Swan,Cygnus olor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +331,species,blkswa,Black Swan,Cygnus atratus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +332,species,blnswa2,Black-necked Swan,Cygnus melancoryphus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +333,species,truswa,Trumpeter Swan,Cygnus buccinator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +334,hybrid,x00832,Mute x Trumpeter Swan (hybrid),Cygnus olor x buccinator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +335,species,tunswa,Tundra Swan,Cygnus columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +336,issf,tunswa1,Tundra Swan (Whistling),Cygnus columbianus columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,tunswa +337,issf,bewswa1,Tundra Swan (Bewick's),Cygnus columbianus bewickii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,tunswa +338,intergrade,tunswa2,Tundra Swan (Whistling x Bewick's),Cygnus columbianus columbianus x bewickii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,tunswa +339,hybrid,x00418,Trumpeter x Tundra Swan (hybrid),Cygnus buccinator x columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +340,slash,y00471,Trumpeter/Tundra Swan,Cygnus buccinator/columbianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +341,species,whoswa,Whooper Swan,Cygnus cygnus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +342,hybrid,x00419,Trumpeter x Whooper Swan (hybrid),Cygnus buccinator x cygnus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +343,slash,y00708,Tundra/Whooper Swan,Cygnus columbianus/cygnus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +344,spuh,swan1,swan sp.,Cygnus sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +345,species,cosswa1,Coscoroba Swan,Coscoroba coscoroba,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +346,species,comduc2,Knob-billed Duck,Sarkidiornis melanotos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +347,species,comduc3,Comb Duck,Sarkidiornis sylvicola,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +348,species,harduc1,Hartlaub's Duck,Pteronetta hartlaubii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +349,species,origoo1,Orinoco Goose,Oressochen jubatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +350,species,andgoo1,Andean Goose,Oressochen melanopterus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +351,species,uplgoo1,Upland Goose,Chloephaga picta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +354,form,uplgoo2,Upland Goose (White-breasted),Chloephaga picta (White-breasted),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,uplgoo1 +355,form,uplgoo3,Upland Goose (Bar-breasted),Chloephaga picta (Bar-breasted),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,uplgoo1 +356,species,kelgoo1,Kelp Goose,Chloephaga hybrida,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +359,species,ashgoo1,Ashy-headed Goose,Chloephaga poliocephala,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +360,species,ruhgoo1,Ruddy-headed Goose,Chloephaga rubidiceps,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +361,spuh,chloep1,Chloephaga sp.,Chloephaga sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +362,species,radshe1,Radjah Shelduck,Radjah radjah,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +365,species,egygoo,Egyptian Goose,Alopochen aegyptiaca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +366,species,maushe1,Mauritius Shelduck,Alopochen mauritiana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +367,species,reushe1,Reunion Shelduck,Alopochen kervazoi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +368,species,rudshe,Ruddy Shelduck,Tadorna ferruginea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +369,species,soashe1,South African Shelduck,Tadorna cana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +370,species,ausshe1,Australian Shelduck,Tadorna tadornoides,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +371,species,parshe1,Paradise Shelduck,Tadorna variegata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +372,species,comshe,Common Shelduck,Tadorna tadorna,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +373,hybrid,x00876,Ruddy x Common Shelduck (hybrid),Tadorna ferruginea x tadorna,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +374,species,creshe1,Crested Shelduck,Tadorna cristata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +375,species,spwgoo1,Spur-winged Goose,Plectropterus gambensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +376,issf,spwgoo2,Spur-winged Goose (Northern),Plectropterus gambensis gambensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spwgoo1 +377,issf,spwgoo3,Spur-winged Goose (Southern),Plectropterus gambensis niger,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spwgoo1 +378,species,flystd1,Flying Steamer-Duck,Tachyeres patachonicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +379,species,flistd1,Flightless Steamer-Duck,Tachyeres pteneres,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +380,form,flistd2,Flightless Steamer-Duck (Chiloe form),Tachyeres pteneres [undescribed form],Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,flistd1 +381,species,falstd1,Falkland Steamer-Duck,Tachyeres brachypterus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +382,species,whhstd1,White-headed Steamer-Duck,Tachyeres leucocephalus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +383,spuh,steame1,steamer-duck sp.,Tachyeres sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +384,species,creduc1,Crested Duck,Lophonetta specularioides,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +387,species,speduc2,Spectacled Duck,Speculanas specularis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +388,species,musduc,Muscovy Duck,Cairina moschata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +389,domestic,musduc3,Muscovy Duck (Established Feral),Cairina moschata (Established Feral),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,musduc +390,domestic,musduc2,Muscovy Duck (Domestic type),Cairina moschata (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +391,species,grnpyg1,Green Pygmy-Goose,Nettapus pulchellus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +392,species,copgoo1,Cotton Pygmy-Goose,Nettapus coromandelianus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +395,species,afrpyg1,African Pygmy-Goose,Nettapus auritus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +396,species,rintea1,Ringed Teal,Callonetta leucophrys,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +397,species,wooduc,Wood Duck,Aix sponsa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +398,hybrid,x00940,Common Shelduck x Wood Duck (hybrid),Tadorna tadorna x Aix sponsa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +399,species,manduc,Mandarin Duck,Aix galericulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +400,hybrid,x00833,Wood x Mandarin Duck (hybrid),Aix sponsa x galericulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +401,species,manduc1,Maned Duck,Chenonetta jubata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +402,species,finduc1,Finsch's Duck,Chenonetta finschi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +403,species,bratea1,Brazilian Teal,Amazonetta brasiliensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +406,species,bluduc1,Blue Duck,Hymenolaimus malacorhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +407,species,torduc1,Torrent Duck,Merganetta armata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +414,species,saltea1,Salvadori's Teal,Salvadorina waigiuensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +415,species,baitea,Baikal Teal,Sibirionetta formosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +416,species,gargan,Garganey,Spatula querquedula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +417,species,hottea1,Hottentot Teal,Spatula hottentota,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +418,species,siltea1,Silver Teal,Spatula versicolor,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +421,species,puntea1,Puna Teal,Spatula puna,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +422,species,buwtea,Blue-winged Teal,Spatula discors,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +423,species,cintea,Cinnamon Teal,Spatula cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +429,hybrid,bwxtea1,Blue-winged x Cinnamon Teal (hybrid),Spatula discors x cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +430,slash,y00314,Blue-winged/Cinnamon Teal,Spatula discors/cyanoptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +431,species,redsho1,Red Shoveler,Spatula platalea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +432,species,capsho1,Cape Shoveler,Spatula smithii,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +433,species,aussho1,Australian Shoveler,Spatula rhynchotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +434,species,norsho,Northern Shoveler,Spatula clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +435,hybrid,x00836,Garganey x Northern Shoveler (hybrid),Spatula querquedula x clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +436,hybrid,x00629,Blue-winged Teal x Northern Shoveler (hybrid),Spatula discors x clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +437,hybrid,x00630,Cinnamon Teal x Northern Shoveler (hybrid),Spatula cyanoptera x clypeata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +438,species,gadwal,Gadwall,Mareca strepera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +439,issf,gadwal1,Gadwall (Common),Mareca strepera strepera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gadwal +440,issf,gadwal2,Gadwall (Coues's),Mareca strepera couesi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gadwal +441,hybrid,x00457,Northern Shoveler x Gadwall (hybrid),Spatula clypeata x Mareca strepera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +442,species,falduc,Falcated Duck,Mareca falcata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +443,species,eurwig,Eurasian Wigeon,Mareca penelope,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +444,hybrid,x00723,Gadwall x Eurasian Wigeon (hybrid),Mareca strepera x penelope,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +445,species,amewig,American Wigeon,Mareca americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +446,hybrid,x00877,Wood Duck x American Wigeon (hybrid),Aix sponsa x Mareca americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +447,hybrid,x00777,Northern Shoveler x American Wigeon (hybrid),Spatula clypeata x Mareca americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +448,hybrid,x00724,Gadwall x American Wigeon (hybrid),Mareca strepera x americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +449,hybrid,x00421,Eurasian x American Wigeon (hybrid),Mareca penelope x americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +450,slash,y00670,Eurasian/American Wigeon,Mareca penelope/americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +451,species,chiwig1,Chiloe Wigeon,Mareca sibilatrix,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +452,species,amsduc1,Amsterdam Duck,Mareca marecula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +453,species,afbduc1,African Black Duck,Anas sparsa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +456,species,yebduc1,Yellow-billed Duck,Anas undulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +459,species,melduc1,Meller's Duck,Anas melleri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +460,species,pabduc1,Pacific Black Duck,Anas superciliosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +463,species,layduc,Laysan Duck,Anas laysanensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +464,species,hawduc,Hawaiian Duck,Anas wyvilliana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +465,species,phiduc1,Philippine Duck,Anas luzonica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +466,species,isbduc1,Indian Spot-billed Duck,Anas poecilorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +469,species,spbduc,Eastern Spot-billed Duck,Anas zonorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +470,slash,y00830,Indian/Eastern Spot-billed Duck,Anas poecilorhyncha/zonorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +471,species,mallar3,Mallard,Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +474,domestic,mallar2,Mallard (Domestic type),Anas platyrhynchos (Domestic type),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +475,hybrid,mdxmal1,Muscovy Duck x Mallard (hybrid),Cairina moschata x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +476,hybrid,x00205,Wood Duck x Mallard (hybrid),Aix sponsa x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +477,hybrid,x00612,Northern Shoveler x Mallard (hybrid),Spatula clypeata x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +478,hybrid,x00420,Gadwall x Mallard (hybrid),Mareca strepera x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +479,hybrid,x00647,Eurasian Wigeon x Mallard (hybrid),Mareca penelope x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +480,hybrid,x00611,American Wigeon x Mallard (hybrid),Mareca americana x Anas platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +481,hybrid,x00760,Yellow-billed Duck x Mallard (hybrid),Anas undulata x platyrhynchos,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +482,hybrid,x00458,Mallard x Pacific Black Duck (hybrid),Anas platyrhynchos x superciliosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +483,hybrid,x00423,Mallard x Hawaiian Duck (hybrid),Anas platyrhynchos x wyvilliana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +484,hybrid,x00834,Mallard x Indian Spot-billed Duck (hybrid),Anas platyrhynchos x poecilorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +485,hybrid,x00835,Mallard x Eastern Spot-billed Duck (hybrid),Anas platyrhynchos x zonorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +486,slash,y01128,Mallard/Pacific Black Duck,Anas platyrhynchos/superciliosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +487,slash,y01129,Mallard/Hawaiian Duck,Anas platyrhynchos/wyvilliana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +488,slash,y01130,Mallard/Indian Spot-billed Duck,Anas platyrhynchos/poecilorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +489,slash,y01131,Mallard/Eastern Spot-billed Duck,Anas platyrhynchos/zonorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +490,species,mexduc,Mexican Duck,Anas diazi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +491,hybrid,mallar4,Mallard x Mexican Duck (hybrid),Anas platyrhynchos x diazi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +492,slash,mallar,Mallard/Mexican Duck,Anas platyrhynchos/diazi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +493,species,ambduc,American Black Duck,Anas rubripes,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +494,hybrid,x00941,American Wigeon x American Black Duck (hybrid),Mareca americana x Anas rubripes,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +495,hybrid,x00004,Mallard x American Black Duck (hybrid),Anas platyrhynchos x rubripes,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +496,slash,y00600,Mallard/American Black Duck,Anas platyrhynchos/rubripes,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +497,species,motduc,Mottled Duck,Anas fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +498,issf,motduc1,Mottled Duck (Florida),Anas fulvigula fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,motduc +499,issf,motduc2,Mottled Duck (Gulf Coast),Anas fulvigula maculosa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,motduc +500,hybrid,x00422,Mallard x Mottled Duck (hybrid),Anas platyrhynchos x fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +501,slash,y00632,Mallard/Mottled Duck,Anas platyrhynchos/fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +502,hybrid,y01098,Mallard x Mexican/Mottled Duck (hybrid),Anas platyrhynchos x diazi/fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +503,hybrid,x00922,Mexican x Mottled Duck (hybrid),Anas diazi x fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +504,slash,y01099,Mexican/Mottled Duck,Anas diazi/fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +505,slash,y00633,American Black/Mottled Duck,Anas rubripes/fulvigula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +506,species,captea1,Cape Teal,Anas capensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +507,species,whcpin,White-cheeked Pintail,Anas bahamensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +508,issf,whcpin1,White-cheeked Pintail (White-cheeked),Anas bahamensis bahamensis/rubrirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,whcpin +511,issf,whcpin2,White-cheeked Pintail (Galapagos),Anas bahamensis galapagensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,whcpin +512,hybrid,x00778,Mallard x White-cheeked Pintail (hybrid),Anas platyrhynchos x bahamensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +513,species,rebduc1,Red-billed Duck,Anas erythrorhyncha,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +514,species,norpin,Northern Pintail,Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +515,hybrid,x00837,Baikal Teal x Northern Pintail (hybrid),Sibirionetta formosa x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +516,hybrid,x00610,Gadwall x Northern Pintail (hybrid),Mareca strepera x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +517,hybrid,x00761,Eurasian Wigeon x Northern Pintail (hybrid),Mareca penelope x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +518,hybrid,x00196,American Wigeon x Northern Pintail (hybrid),Mareca americana x Anas acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +519,hybrid,x00628,Mallard x Northern Pintail (hybrid),Anas platyrhynchos x acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +520,hybrid,x00674,American Black Duck x Northern Pintail (hybrid),Anas rubripes x acuta,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +521,species,eatpin1,Eaton's Pintail,Anas eatoni,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +524,species,yebpin1,Yellow-billed Pintail,Anas georgica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +525,issf,yebpin2,Yellow-billed Pintail (South Georgia),Anas georgica georgica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebpin1 +526,issf,yebpin3,Yellow-billed Pintail (South American),Anas georgica spinicauda/niceforoi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebpin1 +529,species,gnwtea,Green-winged Teal,Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +530,issf,egwtea1,Green-winged Teal (Eurasian),Anas crecca crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gnwtea +531,issf,agwtea1,Green-winged Teal (American),Anas crecca carolinensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gnwtea +532,intergrade,gnwtea1,Green-winged Teal (Eurasian x American),Anas crecca crecca x carolinensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,gnwtea +533,slash,y00766,Garganey/Green-winged Teal,Spatula querquedula/Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +534,hybrid,x00673,Blue-winged x Green-winged Teal (hybrid),Spatula discors x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +535,hybrid,x00763,Cinnamon x Green-winged Teal (hybrid),Spatula cyanoptera x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +536,hybrid,x00762,Gadwall x Green-winged Teal (hybrid),Mareca strepera x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +537,hybrid,x00646,American Wigeon x Green-winged Teal (hybrid),Mareca americana x Anas crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +538,hybrid,x00670,Mallard x Green-winged Teal (hybrid),Anas platyrhynchos x crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +539,hybrid,x00725,Northern Pintail x Green-winged Teal (hybrid),Anas acuta x crecca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +540,species,spetea3,Andean Teal,Anas andium,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +541,issf,andtea2,Andean Teal (Merida),Anas andium altipetens,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spetea3 +542,issf,andtea3,Andean Teal (Andean),Anas andium andium,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,spetea3 +543,species,yebtea1,Yellow-billed Teal,Anas flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +544,issf,spetea2,Yellow-billed Teal (flavirostris),Anas flavirostris flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebtea1 +545,issf,spetea4,Yellow-billed Teal (oxyptera),Anas flavirostris oxyptera,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,yebtea1 +546,slash,spetea1,Andean/Yellow-billed Teal,Anas andium/flavirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +547,species,mauduc1,Mauritius Duck,Anas theodori,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +548,species,andtea1,Andaman Teal,Anas albogularis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +549,species,suntea1,Sunda Teal,Anas gibberifrons,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +550,species,gretea1,Gray Teal,Anas gracilis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +553,hybrid,x00926,Pacific Black Duck x Gray Teal (hybrid),Anas superciliosa x gracilis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +554,species,chetea1,Chestnut Teal,Anas castanea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +555,hybrid,x00925,Pacific Black Duck x Chestnut Teal (hybrid),Anas superciliosa x castanea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +556,hybrid,x00913,Gray x Chestnut Teal (hybrid),Anas gracilis x castanea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +557,species,bertea1,Bernier's Teal,Anas bernieri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +558,species,auitea1,Auckland Islands Teal,Anas aucklandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +559,species,caitea1,Campbell Islands Teal,Anas nesiotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +560,species,brotea1,Brown Teal,Anas chlorotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +561,hybrid,x00878,Mallard x Brown Teal (hybrid),Anas platyrhynchos x chlorotis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +562,spuh,anas1,Anas sp.,Anas sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +563,spuh,teal,teal sp.,Anatidae sp. (teal sp.),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +564,spuh,dabduc1,dabbling duck sp.,Anatidae sp. (dabbling duck sp.),Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +565,species,pieduc1,Pink-eared Duck,Malacorhynchus membranaceus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +566,species,martea1,Marbled Teal,Marmaronetta angustirostris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +567,species,pihduc1,Pink-headed Duck,Rhodonessa caryophyllacea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +568,species,whwduc1,White-winged Duck,Asarcornis scutulata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +569,species,recpoc,Red-crested Pochard,Netta rufina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +570,hybrid,x00648,Mallard x Red-crested Pochard (hybrid),Anas platyrhynchos x Netta rufina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +571,species,soupoc1,Southern Pochard,Netta erythrophthalma,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +574,species,robpoc1,Rosy-billed Pochard,Netta peposaca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +575,species,canvas,Canvasback,Aythya valisineria,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +576,species,redhea,Redhead,Aythya americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +577,hybrid,x00879,Mallard x Redhead (hybrid),Anas platyrhynchos x Aythya americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +578,hybrid,x00684,Canvasback x Redhead (hybrid),Aythya valisineria x americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +579,species,compoc,Common Pochard,Aythya ferina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +580,species,rinduc,Ring-necked Duck,Aythya collaris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +581,hybrid,x00880,Canvasback x Ring-necked Duck (hybrid),Aythya valisineria x collaris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +582,hybrid,x00679,Redhead x Ring-necked Duck (hybrid),Aythya americana x collaris,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +583,species,ferduc,Ferruginous Duck,Aythya nyroca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +584,hybrid,x00764,Common Pochard x Ferruginous Duck (hybrid),Aythya ferina x nyroca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +585,species,madpoc1,Madagascar Pochard,Aythya innotata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +586,species,baepoc1,Baer's Pochard,Aythya baeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +587,hybrid,x00838,Ferruginous Duck x Baer's Pochard (hybrid),Aythya nyroca x baeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +588,slash,y00709,Ferruginous Duck/Baer's Pochard,Aythya nyroca/baeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +589,species,wheduc1,Hardhead,Aythya australis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +590,hybrid,x00912,Gray Teal x Hardhead (hybrid),Anas gracilis x Aythya australis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +591,species,tufduc,Tufted Duck,Aythya fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +592,hybrid,x00683,Common Pochard x Tufted Duck (hybrid),Aythya ferina x fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +593,hybrid,x00652,Ring-necked x Tufted Duck (hybrid),Aythya collaris x fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +594,hybrid,x00839,Ferruginous x Tufted Duck (hybrid),Aythya nyroca x fuligula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +595,species,nezsca1,New Zealand Scaup,Aythya novaeseelandiae,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +596,species,gresca,Greater Scaup,Aythya marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +599,hybrid,x00680,Redhead x Greater Scaup (hybrid),Aythya americana x marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +600,hybrid,x00779,Ring-necked Duck x Greater Scaup (hybrid),Aythya collaris x marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +601,hybrid,x00654,Tufted Duck x Greater Scaup (hybrid),Aythya fuligula x marila,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +602,species,lessca,Lesser Scaup,Aythya affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +603,hybrid,x00678,Redhead x Lesser Scaup (hybrid),Aythya americana x affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +604,hybrid,x00613,Ring-necked Duck x Lesser Scaup (hybrid),Aythya collaris x affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +605,hybrid,x00653,Tufted Duck x Lesser Scaup (hybrid),Aythya fuligula x affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +606,slash,scaup,Greater/Lesser Scaup,Aythya marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +607,hybrid,x00681,Redhead x scaup sp. (hybrid),Aythya americana x marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +608,hybrid,x00682,Ring-necked Duck x scaup sp. (hybrid),Aythya collaris x marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +609,hybrid,tdxsca1,Tufted Duck x scaup sp. (hybrid),Aythya fuligula x marila/affinis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +610,spuh,aythya1,Aythya sp.,Aythya sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +611,species,steeid,Steller's Eider,Polysticta stelleri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +612,species,speeid,Spectacled Eider,Somateria fischeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +613,species,kineid,King Eider,Somateria spectabilis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +614,hybrid,x00942,Spectacled x King Eider (hybrid),Somateria fischeri x spectabilis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +615,species,comeid,Common Eider,Somateria mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +616,issf,comeid5,Common Eider (Eurasian),Somateria mollissima mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid +617,issf,comeid6,Common Eider (Faeroe Is.),Somateria mollissima faeroeensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid +618,issf,comeid1,Common Eider (Pacific),Somateria mollissima v-nigrum,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid +619,issf,comeid2,Common Eider (Dresser's),Somateria mollissima dresseri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid +620,issf,comeid3,Common Eider (Northern),Somateria mollissima borealis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid +621,issf,comeid4,Common Eider (Hudson Bay),Somateria mollissima sedentaria,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,comeid +622,hybrid,x00881,Mallard x Common Eider (hybrid),Anas platyrhynchos x Somateria mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +623,slash,eider,King/Common Eider,Somateria spectabilis/mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +624,hybrid,x00665,King x Common Eider (hybrid),Somateria spectabilis x mollissima,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +625,spuh,eider1,eider sp.,Somateria sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +626,species,harduc,Harlequin Duck,Histrionicus histrionicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +627,species,labduc,Labrador Duck,Camptorhynchus labradorius,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +628,species,sursco,Surf Scoter,Melanitta perspicillata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +629,species,whwsco3,Velvet Scoter,Melanitta fusca,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +630,species,whwsco2,White-winged Scoter,Melanitta deglandi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +631,species,whwsco1,Stejneger's Scoter,Melanitta stejnegeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +632,hybrid,x00882,Surf x White-winged Scoter (hybrid),Melanitta perspicillata x deglandi,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +633,slash,whwsco,Velvet/White-winged/Stejneger's Scoter,Melanitta fusca/deglandi/stejnegeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +634,slash,whwsco4,White-winged/Stejneger's Scoter,Melanitta deglandi/stejnegeri,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +635,species,blksco1,Common Scoter,Melanitta nigra,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +636,species,blksco2,Black Scoter,Melanitta americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +637,slash,dawsco,Surf/Black Scoter,Melanitta perspicillata/americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +638,slash,blksco,Common/Black Scoter,Melanitta nigra/americana,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +639,spuh,scoter,scoter sp.,Melanitta sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +640,species,lotduc,Long-tailed Duck,Clangula hyemalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +641,species,buffle,Bufflehead,Bucephala albeola,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +642,species,comgol,Common Goldeneye,Bucephala clangula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +645,hybrid,x00655,Bufflehead x Common Goldeneye (hybrid),Bucephala albeola x clangula,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +646,hybrid,x00909,Bufflehead x goldeneye sp. (hybrid),Bucephala albeola x clangula/islandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +647,species,bargol,Barrow's Goldeneye,Bucephala islandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +648,hybrid,cxbgol1,Common x Barrow's Goldeneye (hybrid),Bucephala clangula x islandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +649,slash,y00004,Common/Barrow's Goldeneye,Bucephala clangula/islandica,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +650,species,smew,Smew,Mergellus albellus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +651,species,hoomer,Hooded Merganser,Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +652,hybrid,x00202,Wood Duck x Hooded Merganser (hybrid),Aix sponsa x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +653,hybrid,x00424,Bufflehead x Hooded Merganser (hybrid),Bucephala albeola x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +654,hybrid,x00425,Common Goldeneye x Hooded Merganser (hybrid),Bucephala clangula x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +655,hybrid,x00426,Barrow's Goldeneye x Hooded Merganser (hybrid),Bucephala islandica x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +656,hybrid,x00631,goldeneye sp. x Hooded Merganser (hybrid),Bucephala clangula/islandica x Lophodytes cucullatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +657,species,auimer1,Auckland Islands Merganser,Mergus australis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +658,species,commer,Common Merganser,Mergus merganser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +659,issf,goosan1,Common Merganser (Eurasian),Mergus merganser merganser/orientalis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,commer +662,issf,commer1,Common Merganser (North American),Mergus merganser americanus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,commer +663,hybrid,x00840,Common Eider x Common Merganser (hybrid),Somateria mollissima x Mergus merganser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +664,hybrid,x00726,Hooded x Common Merganser (hybrid),Lophodytes cucullatus x Mergus merganser,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +665,species,bramer1,Brazilian Merganser,Mergus octosetaceus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +666,species,rebmer,Red-breasted Merganser,Mergus serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +667,hybrid,x00614,Ring-necked Duck x Red-breasted Merganser (hybrid),Aythya collaris x Mergus serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +668,hybrid,x00780,Common x Red-breasted Merganser (hybrid),Mergus merganser x serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +669,slash,y00224,Common/Red-breasted Merganser,Mergus merganser/serrator,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +670,species,scsmer1,Scaly-sided Merganser,Mergus squamatus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +671,spuh,mergan1,merganser sp.,Mergellus/Lophodytes/Mergus sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +672,species,blhduc1,Black-headed Duck,Heteronetta atricapilla,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +673,species,masduc,Masked Duck,Nomonyx dominicus,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +674,species,rudduc,Ruddy Duck,Oxyura jamaicensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +675,species,andduc1,Andean Duck,Oxyura ferruginea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +676,issf,andduc2,Andean Duck (andina),Oxyura ferruginea andina,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,andduc1 +677,issf,rudduc2,Andean Duck (ferruginea),Oxyura ferruginea ferruginea,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",,andduc1 +678,slash,y00710,Masked/Ruddy Duck,Nomonyx dominicus/Oxyura jamaicensis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +679,species,whhduc1,White-headed Duck,Oxyura leucocephala,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +680,hybrid,x00705,Ruddy x White-headed Duck (hybrid),Oxyura jamaicensis x leucocephala,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +681,species,macduc1,Maccoa Duck,Oxyura maccoa,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +682,species,lakduc1,Lake Duck,Oxyura vittata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +683,slash,y00601,Andean/Lake Duck,Oxyura ferruginea/vittata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +684,species,blbduc1,Blue-billed Duck,Oxyura australis,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +685,species,musduc1,Musk Duck,Biziura lobata,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +688,spuh,duck1,duck sp.,Anatinae sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +689,spuh,waterf1,waterfowl sp.,Anatidae sp.,Anseriformes,"Anatidae (Ducks, Geese, and Waterfowl)",, +690,species,ausbrt1,Australian Brushturkey,Alectura lathami,Galliformes,Megapodiidae (Megapodes),Megapodes, +693,species,watbrt1,Wattled Brushturkey,Aepypodius arfakianus,Galliformes,Megapodiidae (Megapodes),, +696,species,brubrt1,Waigeo Brushturkey,Aepypodius bruijnii,Galliformes,Megapodiidae (Megapodes),, +697,species,rebbrt1,Red-billed Brushturkey,Talegalla cuvieri,Galliformes,Megapodiidae (Megapodes),, +700,species,bkbbrt1,Yellow-legged Brushturkey,Talegalla fuscirostris,Galliformes,Megapodiidae (Megapodes),, +705,species,bncbrt1,Red-legged Brushturkey,Talegalla jobiensis,Galliformes,Megapodiidae (Megapodes),, +708,spuh,talega1,Talegalla sp.,Talegalla sp.,Galliformes,Megapodiidae (Megapodes),, +709,species,mallee1,Malleefowl,Leipoa ocellata,Galliformes,Megapodiidae (Megapodes),, +710,species,maleo1,Maleo,Macrocephalon maleo,Galliformes,Megapodiidae (Megapodes),, +711,species,molscr1,Moluccan Scrubfowl,Eulipoa wallacei,Galliformes,Megapodiidae (Megapodes),, +712,species,niuscr1,Niuafoou Scrubfowl,Megapodius pritchardii,Galliformes,Megapodiidae (Megapodes),, +713,species,micscr1,Micronesian Scrubfowl,Megapodius laperouse,Galliformes,Megapodiidae (Megapodes),, +716,species,nicscr1,Nicobar Scrubfowl,Megapodius nicobariensis,Galliformes,Megapodiidae (Megapodes),, +719,species,tabscr1,Tabon Scrubfowl,Megapodius cumingii,Galliformes,Megapodiidae (Megapodes),, +727,species,sulscr1,Sula Scrubfowl,Megapodius bernsteinii,Galliformes,Megapodiidae (Megapodes),, +728,species,tanscr1,Tanimbar Scrubfowl,Megapodius tenimberensis,Galliformes,Megapodiidae (Megapodes),, +729,species,dusscr2,Dusky Scrubfowl,Megapodius freycinet,Galliformes,Megapodiidae (Megapodes),, +733,species,dusscr3,Biak Scrubfowl,Megapodius geelvinkianus,Galliformes,Megapodiidae (Megapodes),, +734,species,forscr1,Forsten's Scrubfowl,Megapodius forsteni,Galliformes,Megapodiidae (Megapodes),, +737,species,melscr1,Melanesian Scrubfowl,Megapodius eremita,Galliformes,Megapodiidae (Megapodes),, +738,species,vanscr1,Vanuatu Scrubfowl,Megapodius layardi,Galliformes,Megapodiidae (Megapodes),, +739,species,negscr1,New Guinea Scrubfowl,Megapodius decollatus,Galliformes,Megapodiidae (Megapodes),, +740,species,orfscr1,Orange-footed Scrubfowl,Megapodius reinwardt,Galliformes,Megapodiidae (Megapodes),, +746,species,placha,Plain Chachalaca,Ortalis vetula,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)","Chachalacas, Guans, and Curassows", +751,species,grhcha1,Gray-headed Chachalaca,Ortalis cinereiceps,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +752,species,chwcha1,Chestnut-winged Chachalaca,Ortalis garrula,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +753,species,ruvcha1,Rufous-vented Chachalaca,Ortalis ruficauda,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +754,issf,ruvcha2,Rufous-vented Chachalaca (Rufous-vented),Ortalis ruficauda ruficrissa,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,ruvcha1 +755,issf,ruvcha3,Rufous-vented Chachalaca (Rufous-tipped),Ortalis ruficauda ruficauda,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,ruvcha1 +756,species,ruhcha1,Rufous-headed Chachalaca,Ortalis erythroptera,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +757,species,rubcha1,Rufous-bellied Chachalaca,Ortalis wagleri,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +758,species,wemcha1,West Mexican Chachalaca,Ortalis poliocephala,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +759,species,chacha1,Chaco Chachalaca,Ortalis canicollis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +762,species,whbcha1,White-bellied Chachalaca,Ortalis leucogastra,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +763,species,colcha1,Colombian Chachalaca,Ortalis columbiana,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +764,species,specha3,Speckled Chachalaca,Ortalis guttata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +765,issf,specha6,Speckled Chachalaca (Speckled),Ortalis guttata guttata/subaffinis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,specha3 +768,issf,specha5,Speckled Chachalaca (Parana),Ortalis guttata remota,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,specha3 +769,species,specha2,East Brazilian Chachalaca,Ortalis araucuan,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +770,species,specha4,Scaled Chachalaca,Ortalis squamata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +771,species,varcha1,Variable Chachalaca,Ortalis motmot,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +772,issf,varcha2,Variable Chachalaca (Little),Ortalis motmot motmot,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,varcha1 +773,issf,varcha3,Variable Chachalaca (Chestnut-headed),Ortalis motmot ruficeps,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,varcha1 +774,species,bubcha1,Buff-browed Chachalaca,Ortalis superciliaris,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +775,spuh,chacha2,chachalaca sp.,Ortalis sp.,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +776,species,batgua1,Band-tailed Guan,Penelope argyrotis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +780,species,beagua1,Bearded Guan,Penelope barbata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +781,species,baugua1,Baudo Guan,Penelope ortoni,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +782,species,andgua1,Andean Guan,Penelope montagnii,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +788,species,margua1,Marail Guan,Penelope marail,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +791,species,rumgua1,Rusty-margined Guan,Penelope superciliaris,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +795,species,refgua1,Red-faced Guan,Penelope dabbenei,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +796,species,spigua1,Spix's Guan,Penelope jacquacu,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +797,issf,spigua3,Spix's Guan (Grant's),Penelope jacquacu granti,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,spigua1 +798,issf,spigua2,Spix's Guan (Spix's),Penelope jacquacu [jacquacu Group],Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,spigua1 +802,slash,y00657,Marail/Spix's Guan,Penelope marail/jacquacu,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +803,species,cregua1,Crested Guan,Penelope purpurascens,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +807,species,caugua1,Cauca Guan,Penelope perspicax,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +808,species,whwgua1,White-winged Guan,Penelope albipennis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +809,species,dulgua1,Dusky-legged Guan,Penelope obscura,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +810,issf,dulgua2,Dusky-legged Guan (Dusky-legged),Penelope obscura obscura/bronzina,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,dulgua1 +813,issf,dulgua3,Dusky-legged Guan (Bridges's),Penelope obscura bridgesi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,dulgua1 +814,species,whcgua1,White-crested Guan,Penelope pileata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +815,species,chbgua1,Chestnut-bellied Guan,Penelope ochrogaster,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +816,species,whbgua1,White-browed Guan,Penelope jacucaca,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +817,spuh,penelo1,Penelope sp.,Penelope sp.,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +818,species,trpgua1,Trinidad Piping-Guan,Pipile pipile,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +819,species,btpgua1,Blue-throated Piping-Guan,Pipile cumanensis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +820,issf,butpig1,Blue-throated Piping-Guan (Blue-throated),Pipile cumanensis cumanensis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,btpgua1 +821,issf,butpig2,Blue-throated Piping-Guan (White-throated),Pipile cumanensis grayi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,btpgua1 +822,species,rtpgua1,Red-throated Piping-Guan,Pipile cujubi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +823,issf,retpig1,Red-throated Piping-Guan (Gray-crested),Pipile cujubi cujubi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,rtpgua1 +824,issf,retpig2,Red-throated Piping-Guan (White-crested),Pipile cujubi nattereri,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,rtpgua1 +825,slash,y00831,Blue-throated/Red-throated Piping-Guan,Pipile cumanensis/cujubi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +826,species,bfpgua1,Black-fronted Piping-Guan,Pipile jacutinga,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +827,species,watgua1,Wattled Guan,Aburria aburri,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +828,species,blagua1,Black Guan,Chamaepetes unicolor,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +829,species,siwgua1,Sickle-winged Guan,Chamaepetes goudotii,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +835,species,higgua1,Highland Guan,Penelopina nigra,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +836,species,horgua1,Horned Guan,Oreophasis derbianus,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +837,species,noccur1,Nocturnal Curassow,Nothocrax urumutum,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +838,species,crecur2,Crestless Curassow,Mitu tomentosum,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +839,species,salcur1,Salvin's Curassow,Mitu salvini,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +840,species,rabcur2,Razor-billed Curassow,Mitu tuberosum,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +841,species,alacur1,Alagoas Curassow,Mitu mitu,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +842,species,helcur1,Helmeted Curassow,Pauxi pauxi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +845,species,horcur2,Sira Curassow,Pauxi koepckeae,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +846,species,horcur3,Horned Curassow,Pauxi unicornis,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +847,species,grecur1,Great Curassow,Crax rubra,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +850,species,bubcur1,Blue-billed Curassow,Crax alberti,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +851,species,yekcur1,Yellow-knobbed Curassow,Crax daubentoni,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +852,species,blacur1,Black Curassow,Crax alector,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +855,species,watcur1,Wattled Curassow,Crax globulosa,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +856,species,bafcur1,Bare-faced Curassow,Crax fasciolata,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +857,issf,bafcur2,Bare-faced Curassow (Belem),Crax fasciolata pinima,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,bafcur1 +858,issf,bafcur3,Bare-faced Curassow (Bare-faced),Crax fasciolata fasciolata/grayi,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",,bafcur1 +861,species,rebcur1,Red-billed Curassow,Crax blumenbachii,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +862,spuh,curass1,curassow sp.,Cracidae sp. (curassow sp.),Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +863,spuh,cracid1,Cracidae sp.,Cracidae sp.,Galliformes,"Cracidae (Guans, Chachalacas, and Curassows)",, +864,species,helgui,Helmeted Guineafowl,Numida meleagris,Galliformes,Numididae (Guineafowl),"Grouse, Quail, and Allies", +865,issf,helgui2,Helmeted Guineafowl (Moroccan),Numida meleagris sabyi,Galliformes,Numididae (Guineafowl),,helgui +866,issf,helgui4,Helmeted Guineafowl (West African),Numida meleagris galeatus,Galliformes,Numididae (Guineafowl),,helgui +867,issf,helgui3,Helmeted Guineafowl (Helmeted),Numida meleagris meleagris/somaliensis,Galliformes,Numididae (Guineafowl),,helgui +870,issf,helgui5,Helmeted Guineafowl (Reichenow's),Numida meleagris reichenowi,Galliformes,Numididae (Guineafowl),,helgui +871,issf,helgui6,Helmeted Guineafowl (Tufted),Numida meleagris [mitratus Group],Galliformes,Numididae (Guineafowl),,helgui +876,domestic,helgui1,Helmeted Guineafowl (Domestic type),Numida meleagris (Domestic type),Galliformes,Numididae (Guineafowl),, +877,species,whbgui1,White-breasted Guineafowl,Agelastes meleagrides,Galliformes,Numididae (Guineafowl),, +878,species,blagui1,Black Guineafowl,Agelastes niger,Galliformes,Numididae (Guineafowl),, +879,species,vulgui1,Vulturine Guineafowl,Acryllium vulturinum,Galliformes,Numididae (Guineafowl),, +880,species,plugui1,Plumed Guineafowl,Guttera plumifera,Galliformes,Numididae (Guineafowl),, +883,species,cregui1,Crested Guineafowl,Guttera pucherani,Galliformes,Numididae (Guineafowl),, +884,issf,cregui3,Crested Guineafowl (Kenya),Guttera pucherani pucherani,Galliformes,Numididae (Guineafowl),,cregui1 +885,issf,cregui2,Crested Guineafowl (Western),Guttera pucherani verreauxi/sclateri,Galliformes,Numididae (Guineafowl),,cregui1 +888,issf,cregui4,Crested Guineafowl (Southern),Guttera pucherani edouardi/barbata,Galliformes,Numididae (Guineafowl),,cregui1 +891,species,stopar1,Stone Partridge,Ptilopachus petrosus,Galliformes,Odontophoridae (New World Quail),, +892,issf,stopar2,Stone Partridge (Stone),Ptilopachus petrosus petrosus,Galliformes,Odontophoridae (New World Quail),,stopar1 +893,issf,stopar3,Stone Partridge (Ethiopian),Ptilopachus petrosus major,Galliformes,Odontophoridae (New World Quail),,stopar1 +894,species,nahfra2,Nahan's Francolin,Ptilopachus nahani,Galliformes,Odontophoridae (New World Quail),, +895,species,tafqua1,Tawny-faced Quail,Rhynchortyx cinctus,Galliformes,Odontophoridae (New World Quail),, +899,species,mouqua,Mountain Quail,Oreortyx pictus,Galliformes,Odontophoridae (New World Quail),, +900,species,bewpar1,Bearded Wood-Partridge,Dendrortyx barbatus,Galliformes,Odontophoridae (New World Quail),, +901,species,ltwpar1,Long-tailed Wood-Partridge,Dendrortyx macroura,Galliformes,Odontophoridae (New World Quail),, +908,species,bcwpar1,Buffy-crowned Wood-Partridge,Dendrortyx leucophrys,Galliformes,Odontophoridae (New World Quail),, +911,species,banqua1,Banded Quail,Philortyx fasciatus,Galliformes,Odontophoridae (New World Quail),, +912,species,norbob,Northern Bobwhite,Colinus virginianus,Galliformes,Odontophoridae (New World Quail),, +913,issf,norbob1,Northern Bobwhite (Eastern),Colinus virginianus [virginianus Group],Galliformes,Odontophoridae (New World Quail),,norbob +923,issf,norbob2,Northern Bobwhite (graysoni/nigripectus),Colinus virginianus graysoni/nigripectus,Galliformes,Odontophoridae (New World Quail),,norbob +926,issf,norbob3,Northern Bobwhite (pectoralis Group),Colinus virginianus [pectoralis Group],Galliformes,Odontophoridae (New World Quail),,norbob +931,issf,masbob1,Northern Bobwhite (Masked),Colinus virginianus [coyoleos Group],Galliformes,Odontophoridae (New World Quail),,norbob +938,species,bltbob1,Black-throated Bobwhite,Colinus nigrogularis,Galliformes,Odontophoridae (New World Quail),, +943,species,crebob1,Crested Bobwhite,Colinus cristatus,Galliformes,Odontophoridae (New World Quail),, +944,issf,crebob2,Crested Bobwhite (Spot-bellied),Colinus cristatus [leucopogon Group],Galliformes,Odontophoridae (New World Quail),,crebob1 +951,issf,crebob3,Crested Bobwhite (Crested),Colinus cristatus [cristatus Group],Galliformes,Odontophoridae (New World Quail),,crebob1 +966,species,scaqua,Scaled Quail,Callipepla squamata,Galliformes,Odontophoridae (New World Quail),, +971,hybrid,x00688,Northern Bobwhite x Scaled Quail (hybrid),Colinus virginianus x Callipepla squamata,Galliformes,Odontophoridae (New World Quail),, +972,species,elequa,Elegant Quail,Callipepla douglasii,Galliformes,Odontophoridae (New World Quail),, +978,species,calqua,California Quail,Callipepla californica,Galliformes,Odontophoridae (New World Quail),, +987,hybrid,x00687,Scaled x California Quail (hybrid),Callipepla squamata x californica,Galliformes,Odontophoridae (New World Quail),, +988,species,gamqua,Gambel's Quail,Callipepla gambelii,Galliformes,Odontophoridae (New World Quail),, +996,hybrid,x00689,Scaled x Gambel's Quail (hybrid),Callipepla squamata x gambelii,Galliformes,Odontophoridae (New World Quail),, +997,hybrid,y00315,California x Gambel's Quail (hybrid),Callipepla californica x gambelii,Galliformes,Odontophoridae (New World Quail),, +998,slash,y00711,California/Gambel's Quail,Callipepla californica/gambelii,Galliformes,Odontophoridae (New World Quail),, +999,species,monqua,Montezuma Quail,Cyrtonyx montezumae,Galliformes,Odontophoridae (New World Quail),, +1000,issf,monqua1,Montezuma Quail (Montezuma),Cyrtonyx montezumae [montezumae Group],Galliformes,Odontophoridae (New World Quail),,monqua +1004,issf,monqua2,Montezuma Quail (Salle's),Cyrtonyx montezumae sallei/rowleyi,Galliformes,Odontophoridae (New World Quail),,monqua +1007,species,ocequa1,Ocellated Quail,Cyrtonyx ocellatus,Galliformes,Odontophoridae (New World Quail),, +1008,species,sinqua1,Singing Quail,Dactylortyx thoracicus,Galliformes,Odontophoridae (New World Quail),, +1026,species,mawqua1,Marbled Wood-Quail,Odontophorus gujanensis,Galliformes,Odontophoridae (New World Quail),, +1035,species,swwqua1,Spot-winged Wood-Quail,Odontophorus capueira,Galliformes,Odontophoridae (New World Quail),, +1038,species,bewqua1,Black-eared Wood-Quail,Odontophorus melanotis,Galliformes,Odontophoridae (New World Quail),, +1041,species,bfwqua1,Black-fronted Wood-Quail,Odontophorus atrifrons,Galliformes,Odontophoridae (New World Quail),, +1045,species,rfwqua1,Rufous-fronted Wood-Quail,Odontophorus erythrops,Galliformes,Odontophoridae (New World Quail),, +1048,species,chwqua1,Chestnut Wood-Quail,Odontophorus hyperythrus,Galliformes,Odontophoridae (New World Quail),, +1049,species,dbwqua1,Dark-backed Wood-Quail,Odontophorus melanonotus,Galliformes,Odontophoridae (New World Quail),, +1050,species,rbwqua1,Rufous-breasted Wood-Quail,Odontophorus speciosus,Galliformes,Odontophoridae (New World Quail),, +1054,species,tawqua1,Tacarcuna Wood-Quail,Odontophorus dialeucos,Galliformes,Odontophoridae (New World Quail),, +1055,species,gowqua1,Gorgeted Wood-Quail,Odontophorus strophium,Galliformes,Odontophoridae (New World Quail),, +1056,species,venwoq1,Venezuelan Wood-Quail,Odontophorus columbianus,Galliformes,Odontophoridae (New World Quail),, +1057,species,bbwqua1,Black-breasted Wood-Quail,Odontophorus leucolaemus,Galliformes,Odontophoridae (New World Quail),, +1058,species,sfwqua1,Stripe-faced Wood-Quail,Odontophorus balliviani,Galliformes,Odontophoridae (New World Quail),, +1059,species,stwqua1,Starred Wood-Quail,Odontophorus stellatus,Galliformes,Odontophoridae (New World Quail),, +1060,species,spwqua1,Spotted Wood-Quail,Odontophorus guttatus,Galliformes,Odontophoridae (New World Quail),, +1061,spuh,wood-q1,wood-quail sp.,Odontophorus sp.,Galliformes,Odontophoridae (New World Quail),, +1062,spuh,quail1,new world quail sp.,Odontophoridae sp.,Galliformes,Odontophoridae (New World Quail),, +1063,species,udzpar1,Udzungwa Partridge,Xenoperdix udzungwensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1064,issf,udzpar3,Udzungwa Partridge (Udzungwa),Xenoperdix udzungwensis udzungwensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,udzpar1 +1065,issf,udzpar2,Udzungwa Partridge (Rubeho),Xenoperdix udzungwensis obscurata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,udzpar1 +1066,species,ferpar2,Ferruginous Partridge,Caloperdix oculeus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1070,species,crepar1,Crested Partridge,Rollulus rouloul,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1071,species,blapar2,Black Partridge,Melanoperdix niger,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1074,species,hilpar1,Hill Partridge,Arborophila torqueola,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1079,species,sicpar1,Sichuan Partridge,Arborophila rufipectus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1080,species,chbpar2,Chestnut-breasted Partridge,Arborophila mandellii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1081,species,whnpar2,White-necklaced Partridge,Arborophila gingica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1084,species,rutpar1,Rufous-throated Partridge,Arborophila rufogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1091,species,whcpar1,White-cheeked Partridge,Arborophila atrogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1092,species,taipar1,Taiwan Partridge,Arborophila crudigularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1093,species,haipar1,Hainan Partridge,Arborophila ardens,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1094,species,chbpar1,Chestnut-bellied Partridge,Arborophila javanica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1097,species,gybpar3,Malaysian Partridge,Arborophila campbelli,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1098,species,gybpar5,Roll's Partridge,Arborophila rolli,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1099,species,gybpar6,Sumatran Partridge,Arborophila sumatrana,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1100,slash,y01018,Roll's/Sumatran Partridge,Arborophila rolli/sumatrana,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1101,species,gybpar4,Gray-breasted Partridge,Arborophila orientalis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1102,species,babpar1,Bar-backed Partridge,Arborophila brunneopectus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1106,species,ornpar1,Orange-necked Partridge,Arborophila davidi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1107,species,chhpar1,Chestnut-headed Partridge,Arborophila cambodiana,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1108,issf,chhpar3,Chestnut-headed Partridge (Siamese),Arborophila cambodiana diversa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chhpar1 +1109,issf,chhpar2,Chestnut-headed Partridge (Chestnut-headed),Arborophila cambodiana cambodiana/chandamonyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chhpar1 +1112,species,rebpar5,Red-breasted Partridge,Arborophila hyperythra,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1115,species,rebpar3,Red-billed Partridge,Arborophila rubrirostris,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1116,species,scbpar1,Scaly-breasted Partridge,Arborophila chloropus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1117,issf,scbpar2,Scaly-breasted Partridge (Tonkin),Arborophila chloropus tonkinensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,scbpar1 +1118,issf,scbpar3,Scaly-breasted Partridge (Green-legged),Arborophila chloropus [chloropus Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,scbpar1 +1125,species,chnpar1,Chestnut-necklaced Partridge,Arborophila charltonii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1126,issf,chnpar2,Chestnut-necklaced Partridge (Chestnut-necklaced),Arborophila charltonii charltonii/atjenensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chnpar1 +1129,issf,chnpar3,Chestnut-necklaced Partridge (Sabah),Arborophila charltonii graydoni,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,chnpar1 +1130,spuh,arboro1,Arborophila sp.,Arborophila sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1131,species,lobpar3,Long-billed Partridge,Rhizothera longirostris,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1132,species,lobpar2,Dulit Partridge,Rhizothera dulitensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1133,species,crearg1,Crested Argus,Rheinardia ocellata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1136,species,grearg1,Great Argus,Argusianus argus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1139,species,compea,Indian Peafowl,Pavo cristatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1140,domestic,indpea1,Indian Peafowl (Domestic type),Pavo cristatus (Domestic type),Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1141,species,grepea1,Green Peafowl,Pavo muticus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1145,species,conpea1,Congo Peacock,Afropavo congensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1146,species,crhpar1,Crimson-headed Partridge,Haematortyx sanguiniceps,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1147,species,redspu1,Red Spurfowl,Galloperdix spadicea,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1151,species,paispu1,Painted Spurfowl,Galloperdix lunulata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1152,slash,y00768,Red/Painted Spurfowl,Galloperdix spadicea/lunulata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1153,species,ceyspu1,Sri Lanka Spurfowl,Galloperdix bicalcarata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1154,species,palpep1,Palawan Peacock-Pheasant,Polyplectron napoleonis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1155,species,mapphe1,Malayan Peacock-Pheasant,Polyplectron malacense,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1156,species,bopphe1,Bornean Peacock-Pheasant,Polyplectron schleiermacheri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1157,species,gepphe1,Germain's Peacock-Pheasant,Polyplectron germaini,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1158,species,grypep3,Hainan Peacock-Pheasant,Polyplectron katsumatae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1159,species,mopphe1,Mountain Peacock-Pheasant,Polyplectron inopinatum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1160,species,btpphe1,Bronze-tailed Peacock-Pheasant,Polyplectron chalcurum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1163,species,grypep2,Gray Peacock-Pheasant,Polyplectron bicalcaratum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1168,species,sespar1,See-see Partridge,Ammoperdix griseogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1169,species,sanpar1,Sand Partridge,Ammoperdix heyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1174,species,broqua1,Brown Quail,Synoicus ypsilophorus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1185,species,blbqua1,Blue-breasted Quail,Synoicus chinensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1194,species,bluqua1,Blue Quail,Synoicus adansonii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1195,species,snmqua2,Snow Mountain Quail,Anurophasis monorthonyx,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1196,species,madpar2,Madagascar Partridge,Margaroperdix madagarensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1197,species,japqua,Japanese Quail,Coturnix japonica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1198,species,comqua1,Common Quail,Coturnix coturnix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1199,species,harqua1,Harlequin Quail,Coturnix delegorguei,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1203,species,raiqua1,Rain Quail,Coturnix coromandelica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1204,slash,y00935,Common/Rain Quail,Coturnix coturnix/coromandelica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1205,species,stuqua1,Stubble Quail,Coturnix pectoralis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1206,species,nezqua1,New Zealand Quail,Coturnix novaezelandiae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1207,spuh,coturn1,old world quail sp.,Synoicus/Coturnix sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1208,species,rocpar2,Rock Partridge,Alectoris graeca,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1209,issf,rocpar3,Rock Partridge (European),Alectoris graeca [graeca Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rocpar2 +1213,issf,rocpar4,Rock Partridge (Sicilian),Alectoris graeca whitakeri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rocpar2 +1214,species,chukar,Chukar,Alectoris chukar,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1229,species,phipar1,Philby's Partridge,Alectoris philbyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1230,species,przpar1,Przevalski's Partridge,Alectoris magna,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1231,species,relpar1,Red-legged Partridge,Alectoris rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1235,hybrid,x00640,Rock x Red-legged Partridge (hybrid),Alectoris graeca x rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1236,slash,y00767,Rock/Red-legged Partridge,Alectoris graeca/rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1237,species,arapar1,Arabian Partridge,Alectoris melanocephala,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1238,species,barpar2,Barbary Partridge,Alectoris barbara,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1243,species,causno1,Caucasian Snowcock,Tetraogallus caucasicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1244,species,cassno1,Caspian Snowcock,Tetraogallus caspius,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1247,species,altsno1,Altai Snowcock,Tetraogallus altaicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1248,species,tibsno1,Tibetan Snowcock,Tetraogallus tibetanus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1253,species,himsno,Himalayan Snowcock,Tetraogallus himalayensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1259,slash,y00936,Tibetan/Himalayan Snowcock,Tetraogallus tibetanus/himalayensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1260,species,jubqua1,Jungle Bush-Quail,Perdicula asiatica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1265,species,robqua1,Rock Bush-Quail,Perdicula argoondah,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1269,slash,y00712,Jungle/Rock Bush-Quail,Perdicula asiatica/argoondah,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1270,species,pabqua1,Painted Bush-Quail,Perdicula erythrorhyncha,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1273,species,mabqua1,Manipur Bush-Quail,Perdicula manipurensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1276,species,himqua1,Himalayan Quail,Ophrysia superciliosa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1277,species,harfra3,Hartlaub's Francolin,Pternistis hartlaubi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1278,species,hanfra2,Handsome Francolin,Pternistis nobilis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1279,species,camfra2,Cameroon Francolin,Pternistis camerunensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1280,species,chnfra1,Chestnut-naped Francolin,Pternistis castaneicollis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1281,species,chnfra3,Black-fronted Francolin,Pternistis atrifrons,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1282,species,ercfra,Erckel's Francolin,Pternistis erckelii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1283,species,djifra1,Djibouti Francolin,Pternistis ochropectus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1284,species,dosfra2,Double-spurred Francolin,Pternistis bicalcaratus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1287,species,heufra1,Heuglin's Francolin,Pternistis icterorhynchus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1288,species,ahafra2,Ahanta Francolin,Pternistis ahantensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1289,species,gysfra1,Gray-striped Francolin,Pternistis griseostriatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1290,species,scafra2,Scaly Francolin,Pternistis squamatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1291,species,rebfra1,Red-billed Francolin,Pternistis adspersus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1292,species,capfra2,Cape Francolin,Pternistis capensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1293,species,natfra2,Natal Francolin,Pternistis natalensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1294,species,hilfra2,Hildebrandt's Francolin,Pternistis hildebrandti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1295,species,jacfra2,Jackson's Francolin,Pternistis jacksoni,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1296,species,swifra2,Swierstra's Francolin,Pternistis swierstrai,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1297,species,clafra1,Clapperton's Francolin,Pternistis clappertoni,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1298,species,harfra4,Harwood's Francolin,Pternistis harwoodi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1299,species,swafra2,Swainson's Francolin,Pternistis swainsonii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1302,species,yenspu1,Yellow-necked Francolin,Pternistis leucoscepus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1303,species,gybfra1,Gray-breasted Francolin,Pternistis rufopictus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1304,species,renfra1,Red-necked Francolin,Pternistis afer,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1305,issf,renfra2,Red-necked Francolin (Cranch's),Pternistis afer cranchii/harterti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 +1308,issf,renfra3,Red-necked Francolin (Northern),Pternistis afer [leucoparaeus Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 +1312,issf,renfra4,Red-necked Francolin (Benguela),Pternistis afer afer,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 +1313,issf,renfra5,Red-necked Francolin (Southern),Pternistis afer castaneiventer,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,renfra1 +1314,species,blkfra,Black Francolin,Francolinus francolinus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1315,issf,blkfra1,Black Francolin (Western),Francolinus francolinus francolinus/arabistanicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,blkfra +1318,issf,blkfra2,Black Francolin (Eastern),Francolinus francolinus [henrici Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,blkfra +1323,species,paifra1,Painted Francolin,Francolinus pictus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1327,species,chifra1,Chinese Francolin,Francolinus pintadeanus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1330,species,gryfra,Gray Francolin,Francolinus pondicerianus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1334,species,swafra1,Swamp Francolin,Francolinus gularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1335,species,crefra2,Crested Francolin,Dendroperdix sephaena,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1336,issf,crefra1,Crested Francolin (Kirk's),Dendroperdix sephaena rovuma,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefra2 +1337,issf,crefra3,Crested Francolin (Crested),Dendroperdix sephaena [sephaena Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefra2 +1342,species,mobpar1,Mountain Bamboo-Partridge,Bambusicola fytchii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1345,species,chbpar3,Chinese Bamboo-Partridge,Bambusicola thoracicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1346,species,taibap1,Taiwan Bamboo-Partridge,Bambusicola sonorivox,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1347,species,redjun,Red Junglefowl,Gallus gallus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1353,domestic,redjun1,Red Junglefowl (Domestic type),Gallus gallus (Domestic type),Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1354,species,grejun2,Gray Junglefowl,Gallus sonneratii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1355,species,ceyjun1,Sri Lanka Junglefowl,Gallus lafayettii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1356,species,grejun1,Green Junglefowl,Gallus varius,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1357,species,coqfra2,Coqui Francolin,Peliperdix coqui,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1358,issf,coqfra1,Coqui Francolin (Plain-breasted),Peliperdix coqui [hubbardi Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,coqfra2 +1362,issf,coqfra3,Coqui Francolin (Bar-breasted),Peliperdix coqui coqui,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,coqfra2 +1363,species,whtfra2,White-throated Francolin,Peliperdix albogularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1364,issf,whtfra1,White-throated Francolin (White-throated),Peliperdix albogularis albogularis/buckleyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,whtfra2 +1367,issf,whtfra3,White-throated Francolin (Chestnut-breasted),Peliperdix albogularis dewittei,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,whtfra2 +1368,species,schfra2,Schlegel's Francolin,Peliperdix schlegelii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1369,species,forfra2,Latham's Francolin,Peliperdix lathami,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1372,species,rewfra2,Red-winged Francolin,Scleroptila levaillantii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1375,species,rinfra2,Ring-necked Francolin,Scleroptila streptophora,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1376,species,finfra2,Finsch's Francolin,Scleroptila finschi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1377,species,orrfra2,Orange River Francolin,Scleroptila gutturalis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1378,issf,orrfra1,Orange River Francolin (Archer's),Scleroptila gutturalis gutturalis/lorti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,orrfra2 +1381,issf,orrfra3,Orange River Francolin (Kalahari),Scleroptila gutturalis jugularis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,orrfra2 +1382,issf,orrfra4,Orange River Francolin (Orange River),Scleroptila gutturalis levalliantoides,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,orrfra2 +1383,species,gywfra1,Gray-winged Francolin,Scleroptila afra,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1384,species,moofra2,Moorland Francolin,Scleroptila psilolaema,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1385,issf,moofra1,Moorland Francolin (Moorland),Scleroptila psilolaema psilolaema,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,moofra2 +1386,issf,moofra3,Moorland Francolin (Elgon),Scleroptila psilolaema elgonensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,moofra2 +1387,species,shefra2,Shelley's Francolin,Scleroptila shelleyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1388,issf,shefra1,Shelley's Francolin (Shelley's),Scleroptila shelleyi shelleyi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,shefra2 +1389,issf,shefra3,Shelley's Francolin (Whyte's),Scleroptila shelleyi whytei,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,shefra2 +1390,spuh,franco1,francolin sp.,Pternistis/Francolinus/Peliperdix/Scleroptila sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1391,species,blophe1,Blood Pheasant,Ithaginis cruentus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1406,species,himmon1,Himalayan Monal,Lophophorus impejanus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1407,species,sclmon1,Sclater's Monal,Lophophorus sclateri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1410,species,chimon1,Chinese Monal,Lophophorus lhuysii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1411,species,snopar1,Snow Partridge,Lerwa lerwa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1412,species,verpar1,Verreaux's Partridge,Tetraophasis obscurus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1413,species,szepar1,Szechenyi's Partridge,Tetraophasis szechenyii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1414,species,westra1,Western Tragopan,Tragopan melanocephalus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1415,species,sattra1,Satyr Tragopan,Tragopan satyra,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1416,species,blytra1,Blyth's Tragopan,Tragopan blythii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1419,species,temtra1,Temminck's Tragopan,Tragopan temminckii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1420,species,cabtra1,Cabot's Tragopan,Tragopan caboti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1423,species,reephe1,Reeves's Pheasant,Syrmaticus reevesii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1424,species,copphe1,Copper Pheasant,Syrmaticus soemmerringii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1430,species,mikphe1,Mikado Pheasant,Syrmaticus mikado,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1431,species,ellphe1,Elliot's Pheasant,Syrmaticus ellioti,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1432,species,humphe1,Hume's Pheasant,Syrmaticus humiae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1435,species,golphe,Golden Pheasant,Chrysolophus pictus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1436,species,laaphe1,Lady Amherst's Pheasant,Chrysolophus amherstiae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1437,species,rinphe,Ring-necked Pheasant,Phasianus colchicus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1438,issf,rinphe1,Ring-necked Pheasant (Ring-necked),Phasianus colchicus [colchicus Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rinphe +1470,issf,rinphe2,Ring-necked Pheasant (Green),Phasianus colchicus [versicolor Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,rinphe +1474,species,whieap2,Tibetan Eared-Pheasant,Crossoptilon harmani,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1475,species,whieap1,White Eared-Pheasant,Crossoptilon crossoptilon,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1480,slash,whephe1,Tibetan/White Eared-Pheasant,Crossoptilon harmani/crossoptilon,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1481,hybrid,x00943,Tibetan x White Eared-Pheasant (hybrid),Crossoptilon harmani x crossoptilon,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1482,species,brephe1,Brown Eared-Pheasant,Crossoptilon mantchuricum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1483,species,blephe1,Blue Eared-Pheasant,Crossoptilon auritum,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1484,species,chephe1,Cheer Pheasant,Catreus wallichii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1485,species,silphe,Silver Pheasant,Lophura nycthemera,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1501,species,kalphe,Kalij Pheasant,Lophura leucomelanos,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1511,species,siafir1,Siamese Fireback,Lophura diardi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1512,species,bulphe1,Bulwer's Pheasant,Lophura bulweri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1513,species,edwphe1,Edwards's Pheasant,Lophura edwardsi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1514,species,swiphe1,Swinhoe's Pheasant,Lophura swinhoii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1515,species,salphe1,Salvadori's Pheasant,Lophura inornata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1516,issf,salphe2,Salvadori's Pheasant (Salvadori's),Lophura inornata inornata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,salphe1 +1517,issf,salphe3,Salvadori's Pheasant (Hoogerwerf's),Lophura inornata hoogerwerfi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,salphe1 +1518,species,crefir2,Crestless Fireback,Lophura erythrophthalma,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1519,issf,crefir5,Crestless Fireback (Malay),Lophura erythrophthalma erythrophthalma,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir2 +1520,issf,crefir6,Crestless Fireback (Bornean),Lophura erythrophthalma pyronota,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir2 +1521,species,crefir1,Crested Fireback,Lophura ignita,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1522,issf,crefir3,Crested Fireback (Malay),Lophura ignita rufa,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir1 +1523,issf,crefir4,Crested Fireback (Bornean),Lophura ignita ignita/nobilis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,crefir1 +1526,spuh,pheasa1,pheasant sp.,Phasianinae sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1527,species,grypar,Gray Partridge,Perdix perdix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1535,species,daupar1,Daurian Partridge,Perdix dauurica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1538,species,tibpar1,Tibetan Partridge,Perdix hodgsoniae,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1542,species,kokphe1,Koklass Pheasant,Pucrasia macrolopha,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1553,species,blbcap1,Black-billed Capercaillie,Tetrao urogalloides,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1557,species,wescap1,Western Capercaillie,Tetrao urogallus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1566,species,blagro1,Black Grouse,Tetrao tetrix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1574,hybrid,x00841,Western Capercaillie x Black Grouse (hybrid),Tetrao urogallus x tetrix,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1575,species,caugro1,Caucasian Grouse,Tetrao mlokosiewiczi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1576,species,hazgro1,Hazel Grouse,Tetrastes bonasia,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1589,species,sevgro1,Severtzov's Grouse,Tetrastes sewerzowi,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1590,species,rufgro,Ruffed Grouse,Bonasa umbellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1605,species,saggro,Greater Sage-Grouse,Centrocercus urophasianus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1606,species,gusgro,Gunnison Sage-Grouse,Centrocercus minimus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1607,slash,y00608,Greater/Gunnison Sage-Grouse,Centrocercus urophasianus/minimus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1608,species,sibgro2,Siberian Grouse,Falcipennis falcipennis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1609,species,sprgro,Spruce Grouse,Falcipennis canadensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1610,issf,sprgro1,Spruce Grouse (Spruce),Falcipennis canadensis [canadensis Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,sprgro +1616,issf,frsgro1,Spruce Grouse (Franklin's),Falcipennis canadensis franklinii,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,sprgro +1617,slash,y00674,Ruffed/Spruce Grouse,Bonasa umbellus/Falcipennis canadensis,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1618,species,wilpta,Willow Ptarmigan,Lagopus lagopus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1619,issf,wilpta1,Willow Ptarmigan (Red Grouse),Lagopus lagopus scotica,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,wilpta +1620,issf,wilpta2,Willow Ptarmigan (Willow),Lagopus lagopus [lagopus Group],Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,wilpta +1639,species,rocpta1,Rock Ptarmigan,Lagopus muta,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1670,species,whtpta1,White-tailed Ptarmigan,Lagopus leucura,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1676,spuh,ptarmi1,ptarmigan sp.,Lagopus sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1677,species,dusgro,Dusky Grouse,Dendragapus obscurus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1682,species,soogro1,Sooty Grouse,Dendragapus fuliginosus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1687,slash,blugrs,Dusky/Sooty Grouse,Dendragapus obscurus/fuliginosus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1688,species,shtgro,Sharp-tailed Grouse,Tympanuchus phasianellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1695,hybrid,x00727,Greater Sage-Grouse x Sharp-tailed Grouse (hybrid),Centrocercus urophasianus x Tympanuchus phasianellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1696,hybrid,x00781,Dusky x Sharp-tailed Grouse (hybrid),Dendragapus obscurus x Tympanuchus phasianellus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1697,species,grpchi,Greater Prairie-Chicken,Tympanuchus cupido,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1698,issf,greprc1,Greater Prairie-Chicken (pinnatus),Tympanuchus cupido pinnatus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,grpchi +1699,issf,heahen1,Greater Prairie-Chicken (Heath Hen),Tympanuchus cupido cupido,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,grpchi +1700,issf,attprc1,Greater Prairie-Chicken (Attwater's),Tympanuchus cupido attwateri,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",,grpchi +1701,hybrid,x00728,Sharp-tailed Grouse x Greater Prairie-Chicken (hybrid),Tympanuchus phasianellus x cupido,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1702,species,lepchi,Lesser Prairie-Chicken,Tympanuchus pallidicinctus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1703,hybrid,x00668,Greater x Lesser Prairie-Chicken (hybrid),Tympanuchus cupido x pallidicinctus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1704,slash,y00664,Greater/Lesser Prairie-Chicken,Tympanuchus cupido/pallidicinctus,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1705,spuh,grouse1,grouse sp.,Tetraoninae sp.,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1706,species,wiltur,Wild Turkey,Meleagris gallopavo,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1713,domestic,wiltur1,Wild Turkey (Domestic type),Meleagris gallopavo (Domestic type),Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1714,species,ocetur1,Ocellated Turkey,Meleagris ocellata,Galliformes,"Phasianidae (Pheasants, Grouse, and Allies)",, +1715,species,chifla1,Chilean Flamingo,Phoenicopterus chilensis,Phoenicopteriformes,Phoenicopteridae (Flamingos),Flamingos, +1716,species,grefla2,American Flamingo,Phoenicopterus ruber,Phoenicopteriformes,Phoenicopteridae (Flamingos),, +1717,species,grefla3,Greater Flamingo,Phoenicopterus roseus,Phoenicopteriformes,Phoenicopteridae (Flamingos),, +1718,slash,grefla,American/Greater Flamingo,Phoenicopterus ruber/roseus,Phoenicopteriformes,Phoenicopteridae (Flamingos),, +1719,species,lesfla1,Lesser Flamingo,Phoeniconaias minor,Phoenicopteriformes,Phoenicopteridae (Flamingos),, +1720,species,andfla2,Andean Flamingo,Phoenicoparrus andinus,Phoenicopteriformes,Phoenicopteridae (Flamingos),, +1721,species,jamfla1,James's Flamingo,Phoenicoparrus jamesi,Phoenicopteriformes,Phoenicopteridae (Flamingos),, +1722,spuh,flamin1,flamingo sp.,Phoenicopteridae sp.,Phoenicopteriformes,Phoenicopteridae (Flamingos),, +1723,species,whtgre3,White-tufted Grebe,Rollandia rolland,Podicipediformes,Podicipedidae (Grebes),Grebes, +1727,species,titgre1,Titicaca Grebe,Rollandia microptera,Podicipediformes,Podicipedidae (Grebes),, +1728,species,alagre1,Alaotra Grebe,Tachybaptus rufolavatus,Podicipediformes,Podicipedidae (Grebes),, +1729,species,litgre1,Little Grebe,Tachybaptus ruficollis,Podicipediformes,Podicipedidae (Grebes),, +1730,issf,litgre3,Little Grebe (Little),Tachybaptus ruficollis [ruficollis Group],Podicipediformes,Podicipedidae (Grebes),,litgre1 +1737,issf,litgre4,Little Grebe (Tricolored),Tachybaptus ruficollis [tricolor Group],Podicipediformes,Podicipedidae (Grebes),,litgre1 +1741,species,ausgre1,Australasian Grebe,Tachybaptus novaehollandiae,Podicipediformes,Podicipedidae (Grebes),, +1749,species,madgre1,Madagascar Grebe,Tachybaptus pelzelnii,Podicipediformes,Podicipedidae (Grebes),, +1750,species,leagre,Least Grebe,Tachybaptus dominicus,Podicipediformes,Podicipedidae (Grebes),, +1756,species,pibgre,Pied-billed Grebe,Podilymbus podiceps,Podicipediformes,Podicipedidae (Grebes),, +1760,species,atigre1,Atitlan Grebe,Podilymbus gigas,Podicipediformes,Podicipedidae (Grebes),, +1761,species,hohgre1,Hoary-headed Grebe,Poliocephalus poliocephalus,Podicipediformes,Podicipedidae (Grebes),, +1762,slash,y01019,Australasian/Hoary-headed Grebe,Tachybaptus novaehollandiae/Poliocephalus poliocephalus,Podicipediformes,Podicipedidae (Grebes),, +1763,species,nezgre1,New Zealand Grebe,Poliocephalus rufopectus,Podicipediformes,Podicipedidae (Grebes),, +1764,species,gregre1,Great Grebe,Podiceps major,Podicipediformes,Podicipedidae (Grebes),, +1767,species,horgre,Horned Grebe,Podiceps auritus,Podicipediformes,Podicipedidae (Grebes),, +1770,species,rengre,Red-necked Grebe,Podiceps grisegena,Podicipediformes,Podicipedidae (Grebes),, +1773,species,grcgre1,Great Crested Grebe,Podiceps cristatus,Podicipediformes,Podicipedidae (Grebes),, +1777,species,eargre,Eared Grebe,Podiceps nigricollis,Podicipediformes,Podicipedidae (Grebes),, +1781,slash,y00229,Horned/Eared Grebe,Podiceps auritus/nigricollis,Podicipediformes,Podicipedidae (Grebes),, +1782,species,colgre1,Colombian Grebe,Podiceps andinus,Podicipediformes,Podicipedidae (Grebes),, +1783,species,silgre1,Silvery Grebe,Podiceps occipitalis,Podicipediformes,Podicipedidae (Grebes),, +1784,issf,silgre3,Silvery Grebe (Andean),Podiceps occipitalis juninensis,Podicipediformes,Podicipedidae (Grebes),,silgre1 +1785,issf,silgre2,Silvery Grebe (Patagonian),Podiceps occipitalis occipitalis,Podicipediformes,Podicipedidae (Grebes),,silgre1 +1786,species,jungre1,Junin Grebe,Podiceps taczanowskii,Podicipediformes,Podicipedidae (Grebes),, +1787,species,hoogre1,Hooded Grebe,Podiceps gallardoi,Podicipediformes,Podicipedidae (Grebes),, +1788,spuh,podice1,Podiceps sp.,Podiceps sp.,Podicipediformes,Podicipedidae (Grebes),, +1789,species,wesgre,Western Grebe,Aechmophorus occidentalis,Podicipediformes,Podicipedidae (Grebes),, +1792,species,clagre,Clark's Grebe,Aechmophorus clarkii,Podicipediformes,Podicipedidae (Grebes),, +1795,hybrid,x00427,Western x Clark's Grebe (hybrid),Aechmophorus occidentalis x clarkii,Podicipediformes,Podicipedidae (Grebes),, +1796,slash,y00012,Western/Clark's Grebe,Aechmophorus occidentalis/clarkii,Podicipediformes,Podicipedidae (Grebes),, +1797,spuh,grebe1,grebe sp.,Podicipedidae sp.,Podicipediformes,Podicipedidae (Grebes),, +1798,species,rocpig,Rock Pigeon,Columba livia,Columbiformes,Columbidae (Pigeons and Doves),Pigeons and Doves, +1799,form,rocpig2,Rock Pigeon (Wild type),Columba livia (Wild type),Columbiformes,Columbidae (Pigeons and Doves),,rocpig +1813,domestic,rocpig1,Rock Pigeon (Feral Pigeon),Columba livia (Feral Pigeon),Columbiformes,Columbidae (Pigeons and Doves),,rocpig +1814,species,hilpig1,Hill Pigeon,Columba rupestris,Columbiformes,Columbidae (Pigeons and Doves),, +1817,slash,y01112,Rock/Hill Pigeon,Columba livia/rupestris,Columbiformes,Columbidae (Pigeons and Doves),, +1818,species,snopig1,Snow Pigeon,Columba leuconota,Columbiformes,Columbidae (Pigeons and Doves),, +1821,species,spepig1,Speckled Pigeon,Columba guinea,Columbiformes,Columbidae (Pigeons and Doves),, +1824,species,whcpig1,White-collared Pigeon,Columba albitorques,Columbiformes,Columbidae (Pigeons and Doves),, +1825,species,stodov1,Stock Dove,Columba oenas,Columbiformes,Columbidae (Pigeons and Doves),, +1828,species,pabpig1,Yellow-eyed Pigeon,Columba eversmanni,Columbiformes,Columbidae (Pigeons and Doves),, +1829,species,sompig1,Somali Pigeon,Columba oliviae,Columbiformes,Columbidae (Pigeons and Doves),, +1830,species,cowpig1,Common Wood-Pigeon,Columba palumbus,Columbiformes,Columbidae (Pigeons and Doves),, +1831,issf,comwop1,Common Wood-Pigeon (White-necked),Columba palumbus [palumbus Group],Columbiformes,Columbidae (Pigeons and Doves),,cowpig1 +1837,issf,comwop2,Common Wood-Pigeon (Cinnamon-necked),Columba palumbus casiotis,Columbiformes,Columbidae (Pigeons and Doves),,cowpig1 +1838,species,tropig1,Trocaz Pigeon,Columba trocaz,Columbiformes,Columbidae (Pigeons and Doves),, +1839,species,bolpig1,Bolle's Pigeon,Columba bollii,Columbiformes,Columbidae (Pigeons and Doves),, +1840,species,afepig1,Afep Pigeon,Columba unicincta,Columbiformes,Columbidae (Pigeons and Doves),, +1841,species,laupig1,Laurel Pigeon,Columba junoniae,Columbiformes,Columbidae (Pigeons and Doves),, +1842,species,rampig1,Rameron Pigeon,Columba arquatrix,Columbiformes,Columbidae (Pigeons and Doves),, +1843,species,campig1,Cameroon Pigeon,Columba sjostedti,Columbiformes,Columbidae (Pigeons and Doves),, +1844,species,marpig1,Maroon Pigeon,Columba thomensis,Columbiformes,Columbidae (Pigeons and Doves),, +1845,species,delpig1,Delegorgue's Pigeon,Columba delegorguei,Columbiformes,Columbidae (Pigeons and Doves),, +1848,species,brnpig1,Bronze-naped Pigeon,Columba iriditorques,Columbiformes,Columbidae (Pigeons and Doves),, +1849,species,satpig1,Sao Tome Pigeon,Columba malherbii,Columbiformes,Columbidae (Pigeons and Doves),, +1850,species,mauwop1,Mauritius Wood-Pigeon,Columba thiriouxi,Columbiformes,Columbidae (Pigeons and Doves),, +1851,species,lemdov2,Lemon Dove,Columba larvata,Columbiformes,Columbidae (Pigeons and Doves),, +1852,issf,lemdov1,Lemon Dove (Western),Columba larvata inornata,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 +1853,issf,lemdov3,Lemon Dove (Principe),Columba larvata principalis,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 +1854,issf,fordov1,Lemon Dove (Sao Tome),Columba larvata simplex,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 +1855,issf,lemdov4,Lemon Dove (Lemon),Columba larvata larvata/bronzina,Columbiformes,Columbidae (Pigeons and Doves),,lemdov2 +1858,species,compig1,Comoro Pigeon,Columba pollenii,Columbiformes,Columbidae (Pigeons and Doves),, +1859,species,spwpig1,Speckled Wood-Pigeon,Columba hodgsonii,Columbiformes,Columbidae (Pigeons and Doves),, +1860,species,whnpig1,White-naped Pigeon,Columba albinucha,Columbiformes,Columbidae (Pigeons and Doves),, +1861,species,aswpig1,Ashy Wood-Pigeon,Columba pulchricollis,Columbiformes,Columbidae (Pigeons and Doves),, +1862,species,niwpig1,Nilgiri Wood-Pigeon,Columba elphinstonii,Columbiformes,Columbidae (Pigeons and Doves),, +1863,species,ceywop1,Sri Lanka Wood-Pigeon,Columba torringtoniae,Columbiformes,Columbidae (Pigeons and Doves),, +1864,species,pacpig1,Pale-capped Pigeon,Columba punicea,Columbiformes,Columbidae (Pigeons and Doves),, +1865,species,siwpig1,Silvery Wood-Pigeon,Columba argentina,Columbiformes,Columbidae (Pigeons and Doves),, +1866,species,anwpig1,Andaman Wood-Pigeon,Columba palumboides,Columbiformes,Columbidae (Pigeons and Doves),, +1867,species,jawpig1,Japanese Wood-Pigeon,Columba janthina,Columbiformes,Columbidae (Pigeons and Doves),, +1870,species,ryupig1,Ryukyu Pigeon,Columba jouyi,Columbiformes,Columbidae (Pigeons and Doves),, +1871,species,bonpig1,Bonin Pigeon,Columba versicolor,Columbiformes,Columbidae (Pigeons and Doves),, +1872,species,metpig1,Metallic Pigeon,Columba vitiensis,Columbiformes,Columbidae (Pigeons and Doves),, +1873,issf,metpig2,Metallic Pigeon (Metallic),Columba vitiensis [vitiensis Group],Columbiformes,Columbidae (Pigeons and Doves),,metpig1 +1881,issf,metpig3,Metallic Pigeon (Samoan),Columba vitiensis castaneiceps,Columbiformes,Columbidae (Pigeons and Doves),,metpig1 +1882,species,whhpig1,White-headed Pigeon,Columba leucomela,Columbiformes,Columbidae (Pigeons and Doves),, +1883,species,yelpig1,Yellow-legged Pigeon,Columba pallidiceps,Columbiformes,Columbidae (Pigeons and Doves),, +1884,spuh,columb1,Columba sp.,Columba sp.,Columbiformes,Columbidae (Pigeons and Doves),, +1885,species,pavpig2,Pale-vented Pigeon,Patagioenas cayennensis,Columbiformes,Columbidae (Pigeons and Doves),, +1891,species,scapig2,Scaled Pigeon,Patagioenas speciosa,Columbiformes,Columbidae (Pigeons and Doves),, +1892,species,scnpig1,Scaly-naped Pigeon,Patagioenas squamosa,Columbiformes,Columbidae (Pigeons and Doves),, +1893,species,picpig2,Picazuro Pigeon,Patagioenas picazuro,Columbiformes,Columbidae (Pigeons and Doves),, +1896,species,baepig2,Bare-eyed Pigeon,Patagioenas corensis,Columbiformes,Columbidae (Pigeons and Doves),, +1897,species,spwpig3,Spot-winged Pigeon,Patagioenas maculosa,Columbiformes,Columbidae (Pigeons and Doves),, +1898,issf,spwpig2,Spot-winged Pigeon (albipennis),Patagioenas maculosa albipennis,Columbiformes,Columbidae (Pigeons and Doves),,spwpig3 +1899,issf,spwpig4,Spot-winged Pigeon (maculosa),Patagioenas maculosa maculosa,Columbiformes,Columbidae (Pigeons and Doves),,spwpig3 +1900,species,whcpig2,White-crowned Pigeon,Patagioenas leucocephala,Columbiformes,Columbidae (Pigeons and Doves),, +1901,species,rebpig1,Red-billed Pigeon,Patagioenas flavirostris,Columbiformes,Columbidae (Pigeons and Doves),, +1906,species,plapig,Plain Pigeon,Patagioenas inornata,Columbiformes,Columbidae (Pigeons and Doves),, +1910,species,batpig1,Band-tailed Pigeon,Patagioenas fasciata,Columbiformes,Columbidae (Pigeons and Doves),, +1911,issf,batpig2,Band-tailed Pigeon (Northern),Patagioenas fasciata [fasciata Group],Columbiformes,Columbidae (Pigeons and Doves),,batpig1 +1915,issf,batpig4,Band-tailed Pigeon (Viosca's),Patagioenas fasciata vioscae,Columbiformes,Columbidae (Pigeons and Doves),,batpig1 +1916,issf,batpig3,Band-tailed Pigeon (White-necked),Patagioenas fasciata [albilinea Group],Columbiformes,Columbidae (Pigeons and Doves),,batpig1 +1920,slash,y00319,Rock/Band-tailed Pigeon,Columba livia/Patagioenas fasciata,Columbiformes,Columbidae (Pigeons and Doves),, +1921,species,chipig2,Chilean Pigeon,Patagioenas araucana,Columbiformes,Columbidae (Pigeons and Doves),, +1922,species,ritpig,Ring-tailed Pigeon,Patagioenas caribaea,Columbiformes,Columbidae (Pigeons and Doves),, +1923,species,perpig2,Peruvian Pigeon,Patagioenas oenops,Columbiformes,Columbidae (Pigeons and Doves),, +1924,species,plupig2,Plumbeous Pigeon,Patagioenas plumbea,Columbiformes,Columbidae (Pigeons and Doves),, +1931,species,rudpig,Ruddy Pigeon,Patagioenas subvinacea,Columbiformes,Columbidae (Pigeons and Doves),, +1932,issf,rudpig2,Ruddy Pigeon (Berlepsch's),Patagioenas subvinacea subvinacea/berlepschi,Columbiformes,Columbidae (Pigeons and Doves),,rudpig +1935,issf,rudpig3,Ruddy Pigeon (Ruddy),Patagioenas subvinacea [purpureotincta Group],Columbiformes,Columbidae (Pigeons and Doves),,rudpig +1942,slash,y00781,Plumbeous/Ruddy Pigeon,Patagioenas plumbea/subvinacea,Columbiformes,Columbidae (Pigeons and Doves),, +1943,species,shbpig,Short-billed Pigeon,Patagioenas nigrirostris,Columbiformes,Columbidae (Pigeons and Doves),, +1944,slash,y00782,Ruddy/Short-billed Pigeon,Patagioenas subvinacea/nigrirostris,Columbiformes,Columbidae (Pigeons and Doves),, +1945,species,duspig2,Dusky Pigeon,Patagioenas goodsoni,Columbiformes,Columbidae (Pigeons and Doves),, +1946,spuh,patagi1,Patagioenas sp.,Patagioenas sp.,Columbiformes,Columbidae (Pigeons and Doves),, +1947,species,paspig,Passenger Pigeon,Ectopistes migratorius,Columbiformes,Columbidae (Pigeons and Doves),, +1948,species,pinpig2,Pink Pigeon,Nesoenas mayeri,Columbiformes,Columbidae (Pigeons and Doves),, +1949,species,reupig1,Reunion Pigeon,Nesoenas duboisi,Columbiformes,Columbidae (Pigeons and Doves),, +1950,species,mautud1,Mauritius Turtle-Dove,Nesoenas cicur,Columbiformes,Columbidae (Pigeons and Doves),, +1951,species,rodtud1,Rodrigues Turtle-Dove,Nesoenas rodericanus,Columbiformes,Columbidae (Pigeons and Doves),, +1952,species,eutdov,European Turtle-Dove,Streptopelia turtur,Columbiformes,Columbidae (Pigeons and Doves),, +1957,species,dutdov1,Dusky Turtle-Dove,Streptopelia lugens,Columbiformes,Columbidae (Pigeons and Doves),, +1958,species,adtdov1,Adamawa Turtle-Dove,Streptopelia hypopyrrha,Columbiformes,Columbidae (Pigeons and Doves),, +1959,species,ortdov,Oriental Turtle-Dove,Streptopelia orientalis,Columbiformes,Columbidae (Pigeons and Doves),, +1966,species,iscdov1,Island Collared-Dove,Streptopelia bitorquata,Columbiformes,Columbidae (Pigeons and Doves),, +1967,species,phicod1,Philippine Collared-Dove,Streptopelia dusumieri,Columbiformes,Columbidae (Pigeons and Doves),, +1968,species,eucdov,Eurasian Collared-Dove,Streptopelia decaocto,Columbiformes,Columbidae (Pigeons and Doves),, +1969,issf,eurcod1,Eurasian Collared-Dove (Eurasian),Streptopelia decaocto decaocto,Columbiformes,Columbidae (Pigeons and Doves),,eucdov +1970,issf,eurcod2,Eurasian Collared-Dove (Burmese),Streptopelia decaocto xanthocycla,Columbiformes,Columbidae (Pigeons and Doves),,eucdov +1971,species,afcdov1,African Collared-Dove,Streptopelia roseogrisea,Columbiformes,Columbidae (Pigeons and Doves),, +1974,domestic,afrcod1,African Collared-Dove (Domestic type or Ringed Turtle-Dove),Streptopelia roseogrisea (Domestic type),Columbiformes,Columbidae (Pigeons and Doves),, +1975,hybrid,x00799,Eurasian x African Collared-Dove (hybrid),Streptopelia decaocto x roseogrisea,Columbiformes,Columbidae (Pigeons and Doves),, +1976,slash,y00851,Eurasian/African Collared-Dove,Streptopelia decaocto/roseogrisea,Columbiformes,Columbidae (Pigeons and Doves),, +1977,species,wwcdov1,White-winged Collared-Dove,Streptopelia reichenowi,Columbiformes,Columbidae (Pigeons and Doves),, +1978,species,afmdov1,Mourning Collared-Dove,Streptopelia decipiens,Columbiformes,Columbidae (Pigeons and Doves),, +1985,species,reedov1,Red-eyed Dove,Streptopelia semitorquata,Columbiformes,Columbidae (Pigeons and Doves),, +1986,species,rindov,Ring-necked Dove,Streptopelia capicola,Columbiformes,Columbidae (Pigeons and Doves),, +1993,species,vindov1,Vinaceous Dove,Streptopelia vinacea,Columbiformes,Columbidae (Pigeons and Doves),, +1994,species,recdov1,Red Collared-Dove,Streptopelia tranquebarica,Columbiformes,Columbidae (Pigeons and Doves),, +1997,slash,y01078,Eurasian/Red Collared-Dove,Streptopelia decaocto/tranquebarica,Columbiformes,Columbidae (Pigeons and Doves),, +1998,species,matdov1,Madagascar Turtle-Dove,Streptopelia picturata,Columbiformes,Columbidae (Pigeons and Doves),, +2004,species,spodov,Spotted Dove,Streptopelia chinensis,Columbiformes,Columbidae (Pigeons and Doves),, +2005,issf,spodov1,Spotted Dove (Western),Streptopelia chinensis suratensis,Columbiformes,Columbidae (Pigeons and Doves),,spodov +2006,issf,spodov2,Spotted Dove (Eastern),Streptopelia chinensis chinensis/tigrina,Columbiformes,Columbidae (Pigeons and Doves),,spodov +2009,species,laudov1,Laughing Dove,Streptopelia senegalensis,Columbiformes,Columbidae (Pigeons and Doves),, +2015,spuh,strept1,Streptopelia sp.,Streptopelia sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2016,species,bacdov1,Barred Cuckoo-Dove,Macropygia unchall,Columbiformes,Columbidae (Pigeons and Doves),, +2020,species,brcdov1,Brown Cuckoo-Dove,Macropygia phasianella,Columbiformes,Columbidae (Pigeons and Doves),, +2021,species,ducdov1,Flores Sea Cuckoo-Dove,Macropygia macassariensis,Columbiformes,Columbidae (Pigeons and Doves),, +2024,species,timcud1,Timor Cuckoo-Dove,Macropygia magna,Columbiformes,Columbidae (Pigeons and Doves),, +2025,species,tancud1,Tanimbar Cuckoo-Dove,Macropygia timorlaoensis,Columbiformes,Columbidae (Pigeons and Doves),, +2026,species,sbcdov1,Amboyna Cuckoo-Dove,Macropygia amboinensis,Columbiformes,Columbidae (Pigeons and Doves),, +2037,species,sulcud1,Sultan's Cuckoo-Dove,Macropygia doreya,Columbiformes,Columbidae (Pigeons and Doves),, +2038,issf,sulcud3,Sultan's Cuckoo-Dove (Sulawesi),Macropygia doreya [albicapilla Group],Columbiformes,Columbidae (Pigeons and Doves),,sulcud1 +2043,issf,sulcud4,Sultan's Cuckoo-Dove (Sultan's),Macropygia doreya [doreya Group],Columbiformes,Columbidae (Pigeons and Doves),,sulcud1 +2047,slash,y01028,Amboyna/Sultan's Cuckoo-Dove,Macropygia amboinensis/doreya,Columbiformes,Columbidae (Pigeons and Doves),, +2048,species,ancdov1,Andaman Cuckoo-Dove,Macropygia rufipennis,Columbiformes,Columbidae (Pigeons and Doves),, +2049,species,phcdov1,Philippine Cuckoo-Dove,Macropygia tenuirostris,Columbiformes,Columbidae (Pigeons and Doves),, +2054,form,palcud1,Palawan Cuckoo-Dove (undescribed form),Macropygia [undescribed form],Columbiformes,Columbidae (Pigeons and Doves),, +2055,species,rucdov1,Ruddy Cuckoo-Dove,Macropygia emiliana,Columbiformes,Columbidae (Pigeons and Doves),, +2058,species,engcud1,Enggano Cuckoo-Dove,Macropygia cinnamomea,Columbiformes,Columbidae (Pigeons and Doves),, +2059,species,barcud1,Barusan Cuckoo-Dove,Macropygia modiglianii,Columbiformes,Columbidae (Pigeons and Doves),, +2063,species,bbcdov1,Black-billed Cuckoo-Dove,Macropygia nigrirostris,Columbiformes,Columbidae (Pigeons and Doves),, +2064,species,macdov1,Mackinlay's Cuckoo-Dove,Macropygia mackinlayi,Columbiformes,Columbidae (Pigeons and Doves),, +2067,species,licdov1,Little Cuckoo-Dove,Macropygia ruficeps,Columbiformes,Columbidae (Pigeons and Doves),, +2076,spuh,macrop1,Macropygia sp.,Macropygia sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2077,species,grcdov2,Great Cuckoo-Dove,Reinwardtoena reinwardti,Columbiformes,Columbidae (Pigeons and Doves),, +2081,species,picdov1,Pied Cuckoo-Dove,Reinwardtoena browni,Columbiformes,Columbidae (Pigeons and Doves),, +2082,species,crcdov1,Crested Cuckoo-Dove,Reinwardtoena crassirostris,Columbiformes,Columbidae (Pigeons and Doves),, +2083,species,wfcdov1,White-faced Cuckoo-Dove,Turacoena manadensis,Columbiformes,Columbidae (Pigeons and Doves),, +2084,species,sulcud2,Sula Cuckoo-Dove,Turacoena sulaensis,Columbiformes,Columbidae (Pigeons and Doves),, +2085,species,slacud1,Slaty Cuckoo-Dove,Turacoena modesta,Columbiformes,Columbidae (Pigeons and Doves),, +2086,species,eswdov1,Emerald-spotted Wood-Dove,Turtur chalcospilos,Columbiformes,Columbidae (Pigeons and Doves),, +2087,species,bbwdov1,Black-billed Wood-Dove,Turtur abyssinicus,Columbiformes,Columbidae (Pigeons and Doves),, +2088,species,bswdov1,Blue-spotted Wood-Dove,Turtur afer,Columbiformes,Columbidae (Pigeons and Doves),, +2089,species,tamdov1,Tambourine Dove,Turtur tympanistria,Columbiformes,Columbidae (Pigeons and Doves),, +2090,species,bhwdov1,Blue-headed Wood-Dove,Turtur brehmeri,Columbiformes,Columbidae (Pigeons and Doves),, +2093,spuh,turtur1,Turtur sp.,Turtur sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2094,species,namdov1,Namaqua Dove,Oena capensis,Columbiformes,Columbidae (Pigeons and Doves),, +2097,species,emedov2,Asian Emerald Dove,Chalcophaps indica,Columbiformes,Columbidae (Pigeons and Doves),, +2103,species,emedov3,Pacific Emerald Dove,Chalcophaps longirostris,Columbiformes,Columbidae (Pigeons and Doves),, +2107,hybrid,x00849,Asian x Pacific Emerald Dove (hybrid),Chalcophaps indica x longirostris,Columbiformes,Columbidae (Pigeons and Doves),, +2108,slash,emedov1,Asian/Pacific Emerald Dove,Chalcophaps indica/longirostris,Columbiformes,Columbidae (Pigeons and Doves),, +2109,species,stedov1,Stephan's Dove,Chalcophaps stephani,Columbiformes,Columbidae (Pigeons and Doves),, +2113,species,negbro1,New Guinea Bronzewing,Henicophaps albifrons,Columbiformes,Columbidae (Pigeons and Doves),, +2116,species,nebbro1,New Britain Bronzewing,Henicophaps foersteri,Columbiformes,Columbidae (Pigeons and Doves),, +2117,species,wegdov1,Wetar Ground Dove,Alopecoenas hoedtii,Columbiformes,Columbidae (Pigeons and Doves),, +2118,species,frgdov1,Shy Ground Dove,Alopecoenas stairi,Columbiformes,Columbidae (Pigeons and Doves),, +2119,species,scgdov1,Santa Cruz Ground Dove,Alopecoenas sanctaecrucis,Columbiformes,Columbidae (Pigeons and Doves),, +2120,species,tbgdov1,Thick-billed Ground Dove,Alopecoenas salamonis,Columbiformes,Columbidae (Pigeons and Doves),, +2121,species,tangrd1,Tanna Ground Dove,Alopecoenas ferrugineus,Columbiformes,Columbidae (Pigeons and Doves),, +2122,species,brgdov1,Bronze Ground Dove,Alopecoenas beccarii,Columbiformes,Columbidae (Pigeons and Doves),, +2123,issf,brogrd1,Bronze Ground Dove (Western),Alopecoenas beccarii beccarii,Columbiformes,Columbidae (Pigeons and Doves),,brgdov1 +2124,issf,brogrd2,Bronze Ground Dove (Eastern),Alopecoenas beccarii [johannae Group],Columbiformes,Columbidae (Pigeons and Doves),,brgdov1 +2131,species,pagdov1,Palau Ground Dove,Alopecoenas canifrons,Columbiformes,Columbidae (Pigeons and Doves),, +2132,species,wbgdov1,White-bibbed Ground Dove,Alopecoenas jobiensis,Columbiformes,Columbidae (Pigeons and Doves),, +2135,species,margrd1,Marquesas Ground Dove,Alopecoenas rubescens,Columbiformes,Columbidae (Pigeons and Doves),, +2136,species,cigdov1,Caroline Islands Ground Dove,Alopecoenas kubaryi,Columbiformes,Columbidae (Pigeons and Doves),, +2137,species,pogdov1,Polynesian Ground Dove,Alopecoenas erythropterus,Columbiformes,Columbidae (Pigeons and Doves),, +2138,species,wtgdov1,White-throated Ground Dove,Alopecoenas xanthonurus,Columbiformes,Columbidae (Pigeons and Doves),, +2139,species,norgrd1,Norfolk Ground Dove,Alopecoenas norfolkensis,Columbiformes,Columbidae (Pigeons and Doves),, +2140,species,combro1,Common Bronzewing,Phaps chalcoptera,Columbiformes,Columbidae (Pigeons and Doves),, +2141,species,brubro1,Brush Bronzewing,Phaps elegans,Columbiformes,Columbidae (Pigeons and Doves),, +2144,species,flobro1,Flock Bronzewing,Phaps histrionica,Columbiformes,Columbidae (Pigeons and Doves),, +2145,species,crepig1,Crested Pigeon,Ocyphaps lophotes,Columbiformes,Columbidae (Pigeons and Doves),, +2148,species,spipig2,Spinifex Pigeon,Geophaps plumifera,Columbiformes,Columbidae (Pigeons and Doves),, +2149,issf,spipig4,Spinifex Pigeon (Rufous-bellied),Geophaps plumifera ferruginea,Columbiformes,Columbidae (Pigeons and Doves),,spipig2 +2150,issf,spipig5,Spinifex Pigeon (White-bellied),Geophaps plumifera plumifera/leucogaster,Columbiformes,Columbidae (Pigeons and Doves),,spipig2 +2153,species,squpig1,Squatter Pigeon,Geophaps scripta,Columbiformes,Columbidae (Pigeons and Doves),, +2156,species,parpig1,Partridge Pigeon,Geophaps smithii,Columbiformes,Columbidae (Pigeons and Doves),, +2159,species,cqrpig1,Chestnut-quilled Rock-Pigeon,Petrophassa rufipennis,Columbiformes,Columbidae (Pigeons and Doves),, +2160,species,wqrpig1,White-quilled Rock-Pigeon,Petrophassa albipennis,Columbiformes,Columbidae (Pigeons and Doves),, +2163,species,wonpig1,Wonga Pigeon,Leucosarcia melanoleuca,Columbiformes,Columbidae (Pigeons and Doves),, +2164,species,diadov1,Diamond Dove,Geopelia cuneata,Columbiformes,Columbidae (Pigeons and Doves),, +2165,species,zebdov,Zebra Dove,Geopelia striata,Columbiformes,Columbidae (Pigeons and Doves),, +2166,species,peadov1,Peaceful Dove,Geopelia placida,Columbiformes,Columbidae (Pigeons and Doves),, +2170,species,bardov2,Barred Dove,Geopelia maugeus,Columbiformes,Columbidae (Pigeons and Doves),, +2171,species,basdov1,Bar-shouldered Dove,Geopelia humeralis,Columbiformes,Columbidae (Pigeons and Doves),, +2175,species,incdov,Inca Dove,Columbina inca,Columbiformes,Columbidae (Pigeons and Doves),, +2176,species,cogdov,Common Ground Dove,Columbina passerina,Columbiformes,Columbidae (Pigeons and Doves),, +2195,species,pbgdov1,Plain-breasted Ground Dove,Columbina minuta,Columbiformes,Columbidae (Pigeons and Doves),, +2200,species,rugdov,Ruddy Ground Dove,Columbina talpacoti,Columbiformes,Columbidae (Pigeons and Doves),, +2205,slash,y00852,Common/Ruddy Ground Dove,Columbina passerina/talpacoti,Columbiformes,Columbidae (Pigeons and Doves),, +2206,species,ecgdov1,Ecuadorian Ground Dove,Columbina buckleyi,Columbiformes,Columbidae (Pigeons and Doves),, +2207,species,scadov1,Scaled Dove,Columbina squammata,Columbiformes,Columbidae (Pigeons and Doves),, +2210,species,pigdov1,Picui Ground Dove,Columbina picui,Columbiformes,Columbidae (Pigeons and Doves),, +2213,species,crgdov1,Croaking Ground Dove,Columbina cruziana,Columbiformes,Columbidae (Pigeons and Doves),, +2214,species,begdov2,Blue-eyed Ground Dove,Columbina cyanopis,Columbiformes,Columbidae (Pigeons and Doves),, +2215,spuh,y00320,ground dove/Inca Dove sp.,Columbina sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2216,species,blgdov1,Blue Ground Dove,Claravis pretiosa,Columbiformes,Columbidae (Pigeons and Doves),, +2217,species,mcgdov1,Maroon-chested Ground Dove,Paraclaravis mondetoura,Columbiformes,Columbidae (Pigeons and Doves),, +2224,species,pwgdov1,Purple-winged Ground Dove,Paraclaravis geoffroyi,Columbiformes,Columbidae (Pigeons and Doves),, +2225,species,bfgdov1,Bare-faced Ground Dove,Metriopelia ceciliae,Columbiformes,Columbidae (Pigeons and Doves),, +2229,species,begdov1,Bare-eyed Ground Dove,Metriopelia morenoi,Columbiformes,Columbidae (Pigeons and Doves),, +2230,species,bwgdov1,Black-winged Ground Dove,Metriopelia melanoptera,Columbiformes,Columbidae (Pigeons and Doves),, +2233,species,gsgdov1,Golden-spotted Ground Dove,Metriopelia aymara,Columbiformes,Columbidae (Pigeons and Doves),, +2234,species,ltgdov1,Long-tailed Ground Dove,Uropelia campestris,Columbiformes,Columbidae (Pigeons and Doves),, +2235,species,bhqdov1,Blue-headed Quail-Dove,Starnoenas cyanocephala,Columbiformes,Columbidae (Pigeons and Doves),, +2236,species,sapqud1,Purple Quail-Dove,Geotrygon purpurata,Columbiformes,Columbidae (Pigeons and Doves),, +2237,species,sapqud2,Sapphire Quail-Dove,Geotrygon saphirina,Columbiformes,Columbidae (Pigeons and Doves),, +2240,species,crqdov1,Crested Quail-Dove,Geotrygon versicolor,Columbiformes,Columbidae (Pigeons and Doves),, +2241,species,ruqdov,Ruddy Quail-Dove,Geotrygon montana,Columbiformes,Columbidae (Pigeons and Doves),, +2242,issf,rudqud1,Ruddy Quail-Dove (Ruddy),Geotrygon montana montana,Columbiformes,Columbidae (Pigeons and Doves),,ruqdov +2243,issf,rudqud2,Ruddy Quail-Dove (Martinique),Geotrygon montana martinica,Columbiformes,Columbidae (Pigeons and Doves),,ruqdov +2244,species,viqdov1,Violaceous Quail-Dove,Geotrygon violacea,Columbiformes,Columbidae (Pigeons and Doves),, +2247,species,gfqdov,Gray-fronted Quail-Dove,Geotrygon caniceps,Columbiformes,Columbidae (Pigeons and Doves),, +2248,species,wfqdov,White-fronted Quail-Dove,Geotrygon leucometopia,Columbiformes,Columbidae (Pigeons and Doves),, +2249,species,kwqdov,Key West Quail-Dove,Geotrygon chrysia,Columbiformes,Columbidae (Pigeons and Doves),, +2250,species,brqdov1,Bridled Quail-Dove,Geotrygon mystacea,Columbiformes,Columbidae (Pigeons and Doves),, +2251,species,obqdov1,Olive-backed Quail-Dove,Leptotrygon veraguensis,Columbiformes,Columbidae (Pigeons and Doves),, +2252,species,whtdov,White-tipped Dove,Leptotila verreauxi,Columbiformes,Columbidae (Pigeons and Doves),, +2253,issf,whtdov1,White-tipped Dove (White-tipped),Leptotila verreauxi [verreauxi Group],Columbiformes,Columbidae (Pigeons and Doves),,whtdov +2263,issf,whtdov2,White-tipped Dove (decolor),Leptotila verreauxi decolor,Columbiformes,Columbidae (Pigeons and Doves),,whtdov +2264,issf,whtdov3,White-tipped Dove (brasiliensis Group),Leptotila verreauxi [brasiliensis Group],Columbiformes,Columbidae (Pigeons and Doves),,whtdov +2269,species,cardov1,Caribbean Dove,Leptotila jamaicensis,Columbiformes,Columbidae (Pigeons and Doves),, +2274,species,grcdov1,Gray-chested Dove,Leptotila cassinii,Columbiformes,Columbidae (Pigeons and Doves),, +2275,issf,gycdov3,Gray-chested Dove (cerviniventris),Leptotila cassinii cerviniventris,Columbiformes,Columbidae (Pigeons and Doves),,grcdov1 +2276,issf,gycdov2,Gray-chested Dove (rufinucha),Leptotila cassinii rufinucha,Columbiformes,Columbidae (Pigeons and Doves),,grcdov1 +2277,issf,gycdov1,Gray-chested Dove (cassinii),Leptotila cassinii cassinii,Columbiformes,Columbidae (Pigeons and Doves),,grcdov1 +2278,species,toldov1,Tolima Dove,Leptotila conoveri,Columbiformes,Columbidae (Pigeons and Doves),, +2279,species,ocbdov1,Ochre-bellied Dove,Leptotila ochraceiventris,Columbiformes,Columbidae (Pigeons and Doves),, +2280,species,gyhdov1,Gray-headed Dove,Leptotila plumbeiceps,Columbiformes,Columbidae (Pigeons and Doves),, +2281,issf,gyhdov2,Gray-headed Dove (Gray-headed),Leptotila plumbeiceps plumbeiceps/notia,Columbiformes,Columbidae (Pigeons and Doves),,gyhdov1 +2284,issf,gyhdov3,Gray-headed Dove (Brown-backed),Leptotila plumbeiceps battyi/malae,Columbiformes,Columbidae (Pigeons and Doves),,gyhdov1 +2287,species,grfdov1,Gray-fronted Dove,Leptotila rufaxilla,Columbiformes,Columbidae (Pigeons and Doves),, +2294,species,gredov1,Grenada Dove,Leptotila wellsi,Columbiformes,Columbidae (Pigeons and Doves),, +2295,species,paldov1,Pallid Dove,Leptotila pallida,Columbiformes,Columbidae (Pigeons and Doves),, +2296,species,latdov1,Large-tailed Dove,Leptotila megalura,Columbiformes,Columbidae (Pigeons and Doves),, +2297,spuh,leptot1,Leptotila sp.,Leptotila sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2298,species,tuqdov1,Tuxtla Quail-Dove,Zentrygon carrikeri,Columbiformes,Columbidae (Pigeons and Doves),, +2299,species,bfqdov1,Buff-fronted Quail-Dove,Zentrygon costaricensis,Columbiformes,Columbidae (Pigeons and Doves),, +2300,species,pbqdov1,Purplish-backed Quail-Dove,Zentrygon lawrencii,Columbiformes,Columbidae (Pigeons and Doves),, +2301,species,wfqdov1,White-faced Quail-Dove,Zentrygon albifacies,Columbiformes,Columbidae (Pigeons and Doves),, +2302,species,wtqdov1,White-throated Quail-Dove,Zentrygon frenata,Columbiformes,Columbidae (Pigeons and Doves),, +2307,species,liqdov1,Lined Quail-Dove,Zentrygon linearis,Columbiformes,Columbidae (Pigeons and Doves),, +2308,issf,linqud1,Lined Quail-Dove (linearis),Zentrygon linearis linearis,Columbiformes,Columbidae (Pigeons and Doves),,liqdov1 +2309,issf,linqud2,Lined Quail-Dove (trinitatis),Zentrygon linearis trinitatis,Columbiformes,Columbidae (Pigeons and Doves),,liqdov1 +2310,species,chqdov1,Chiriqui Quail-Dove,Zentrygon chiriquensis,Columbiformes,Columbidae (Pigeons and Doves),, +2311,species,rcqdov1,Russet-crowned Quail-Dove,Zentrygon goldmani,Columbiformes,Columbidae (Pigeons and Doves),, +2314,spuh,geotry1,quail-dove sp.,Geotrygon/Leptotrygon/Zentrygon sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2315,species,wepdov1,West Peruvian Dove,Zenaida meloda,Columbiformes,Columbidae (Pigeons and Doves),, +2316,species,whwdov,White-winged Dove,Zenaida asiatica,Columbiformes,Columbidae (Pigeons and Doves),, +2320,species,zendov,Zenaida Dove,Zenaida aurita,Columbiformes,Columbidae (Pigeons and Doves),, +2324,species,galdov1,Galapagos Dove,Zenaida galapagoensis,Columbiformes,Columbidae (Pigeons and Doves),, +2327,species,eardov1,Eared Dove,Zenaida auriculata,Columbiformes,Columbidae (Pigeons and Doves),, +2339,species,moudov,Mourning Dove,Zenaida macroura,Columbiformes,Columbidae (Pigeons and Doves),, +2345,hybrid,x00767,Eurasian Collared-Dove x Mourning Dove (hybrid),Streptopelia decaocto x Zenaida macroura,Columbiformes,Columbidae (Pigeons and Doves),, +2346,species,socdov1,Socorro Dove,Zenaida graysoni,Columbiformes,Columbidae (Pigeons and Doves),, +2347,species,nicpig1,Nicobar Pigeon,Caloenas nicobarica,Columbiformes,Columbidae (Pigeons and Doves),, +2350,species,spgpig1,Spotted Green Pigeon,Caloenas maculata,Columbiformes,Columbidae (Pigeons and Doves),, +2351,species,dodo1,Dodo,Raphus cucullatus,Columbiformes,Columbidae (Pigeons and Doves),, +2352,species,rodsol2,Rodrigues Solitaire,Pezophaps solitaria,Columbiformes,Columbidae (Pigeons and Doves),, +2353,species,sugdov1,Sulawesi Ground Dove,Gallicolumba tristigmata,Columbiformes,Columbidae (Pigeons and Doves),, +2357,species,cigdov2,Cinnamon Ground Dove,Gallicolumba rufigula,Columbiformes,Columbidae (Pigeons and Doves),, +2363,species,mibhea2,Mindoro Bleeding-heart,Gallicolumba platenae,Columbiformes,Columbidae (Pigeons and Doves),, +2364,species,nebhea1,Negros Bleeding-heart,Gallicolumba keayi,Columbiformes,Columbidae (Pigeons and Doves),, +2365,species,subhea1,Sulu Bleeding-heart,Gallicolumba menagei,Columbiformes,Columbidae (Pigeons and Doves),, +2366,species,lubhea1,Luzon Bleeding-heart,Gallicolumba luzonica,Columbiformes,Columbidae (Pigeons and Doves),, +2370,species,minblh1,Mindanao Bleeding-heart,Gallicolumba crinigera,Columbiformes,Columbidae (Pigeons and Doves),, +2374,species,chopig1,Choiseul Pigeon,Microgoura meeki,Columbiformes,Columbidae (Pigeons and Doves),, +2375,species,tbgpig2,Thick-billed Ground-Pigeon,Trugon terrestris,Columbiformes,Columbidae (Pigeons and Doves),, +2379,species,phepig1,Pheasant Pigeon,Otidiphaps nobilis,Columbiformes,Columbidae (Pigeons and Doves),, +2380,issf,phepig2,Pheasant Pigeon (Green-naped),Otidiphaps nobilis nobilis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 +2381,issf,phepig3,Pheasant Pigeon (White-naped),Otidiphaps nobilis aruensis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 +2382,issf,phepig4,Pheasant Pigeon (Gray-naped),Otidiphaps nobilis cervicalis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 +2383,issf,phepig5,Pheasant Pigeon (Black-naped),Otidiphaps nobilis insularis,Columbiformes,Columbidae (Pigeons and Doves),,phepig1 +2384,species,wecpig1,Western Crowned-Pigeon,Goura cristata,Columbiformes,Columbidae (Pigeons and Doves),, +2385,species,soucrp1,Sclater's Crowned-Pigeon,Goura sclaterii,Columbiformes,Columbidae (Pigeons and Doves),, +2386,species,soucrp2,Scheepmaker's Crowned-Pigeon,Goura scheepmakeri,Columbiformes,Columbidae (Pigeons and Doves),, +2387,species,vicpig1,Victoria Crowned-Pigeon,Goura victoria,Columbiformes,Columbidae (Pigeons and Doves),, +2390,spuh,crowne1,crowned-pigeon sp.,Goura sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2391,species,tobpig1,Tooth-billed Pigeon,Didunculus strigirostris,Columbiformes,Columbidae (Pigeons and Doves),, +2392,species,whedov1,White-eared Brown-Dove,Phapitreron leucotis,Columbiformes,Columbidae (Pigeons and Doves),, +2393,issf,whebrd1,White-eared Brown-Dove (White-eared),Phapitreron leucotis leucotis,Columbiformes,Columbidae (Pigeons and Doves),,whedov1 +2394,issf,whebrd2,White-eared Brown-Dove (Buff-eared),Phapitreron leucotis nigrorum,Columbiformes,Columbidae (Pigeons and Doves),,whedov1 +2395,issf,whebrd3,White-eared Brown-Dove (Short-billed),Phapitreron leucotis brevirostris/occipitalis,Columbiformes,Columbidae (Pigeons and Doves),,whedov1 +2398,species,amedov1,Amethyst Brown-Dove,Phapitreron amethystinus,Columbiformes,Columbidae (Pigeons and Doves),, +2399,issf,amebrd1,Amethyst Brown-Dove (Amethyst),Phapitreron amethystinus amethystinus/imeldae,Columbiformes,Columbidae (Pigeons and Doves),,amedov1 +2402,issf,amebrd2,Amethyst Brown-Dove (Gray-breasted),Phapitreron amethystinus maculipectus,Columbiformes,Columbidae (Pigeons and Doves),,amedov1 +2403,issf,amebrd3,Amethyst Brown-Dove (Cebu),Phapitreron amethystinus frontalis,Columbiformes,Columbidae (Pigeons and Doves),,amedov1 +2404,species,daedov2,Mindanao Brown-Dove,Phapitreron brunneiceps,Columbiformes,Columbidae (Pigeons and Doves),, +2405,species,daedov3,Tawitawi Brown-Dove,Phapitreron cinereiceps,Columbiformes,Columbidae (Pigeons and Doves),, +2406,spuh,brown-1,brown-dove sp.,Phapitreron sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2407,species,ligpig1,Little Green-Pigeon,Treron olax,Columbiformes,Columbidae (Pigeons and Doves),, +2408,species,pinpig3,Pink-necked Green-Pigeon,Treron vernans,Columbiformes,Columbidae (Pigeons and Doves),, +2409,species,cihpig1,Cinnamon-headed Green-Pigeon,Treron fulvicollis,Columbiformes,Columbidae (Pigeons and Doves),, +2414,species,orbpig1,Orange-breasted Green-Pigeon,Treron bicinctus,Columbiformes,Columbidae (Pigeons and Doves),, +2419,species,pogpig1,Sri Lanka Green-Pigeon,Treron pompadora,Columbiformes,Columbidae (Pigeons and Doves),, +2420,species,pomgrp2,Gray-fronted Green-Pigeon,Treron affinis,Columbiformes,Columbidae (Pigeons and Doves),, +2421,species,pomgrp4,Andaman Green-Pigeon,Treron chloropterus,Columbiformes,Columbidae (Pigeons and Doves),, +2422,species,pomgrp5,Ashy-headed Green-Pigeon,Treron phayrei,Columbiformes,Columbidae (Pigeons and Doves),, +2423,species,pomgrp1,Philippine Green-Pigeon,Treron axillaris,Columbiformes,Columbidae (Pigeons and Doves),, +2428,species,pomgrp3,Buru Green-Pigeon,Treron aromaticus,Columbiformes,Columbidae (Pigeons and Doves),, +2429,species,thbpig1,Thick-billed Green-Pigeon,Treron curvirostra,Columbiformes,Columbidae (Pigeons and Doves),, +2430,issf,thbpig3,Thick-billed Green-Pigeon (Thick-billed),Treron curvirostra curvirostra,Columbiformes,Columbidae (Pigeons and Doves),,thbpig1 +2431,issf,thbpig2,Thick-billed Green-Pigeon (Barusan),Treron curvirostra hypothapsinus,Columbiformes,Columbidae (Pigeons and Doves),,thbpig1 +2432,species,gycpig1,Gray-cheeked Green-Pigeon,Treron griseicauda,Columbiformes,Columbidae (Pigeons and Doves),, +2437,species,sugpig2,Sumba Green-Pigeon,Treron teysmannii,Columbiformes,Columbidae (Pigeons and Doves),, +2438,species,flgpig1,Flores Green-Pigeon,Treron floris,Columbiformes,Columbidae (Pigeons and Doves),, +2439,species,timgrp1,Timor Green-Pigeon,Treron psittaceus,Columbiformes,Columbidae (Pigeons and Doves),, +2440,species,lagpig1,Large Green-Pigeon,Treron capellei,Columbiformes,Columbidae (Pigeons and Doves),, +2441,species,yefpig1,Yellow-footed Green-Pigeon,Treron phoenicopterus,Columbiformes,Columbidae (Pigeons and Doves),, +2447,species,brgpig1,Bruce's Green-Pigeon,Treron waalia,Columbiformes,Columbidae (Pigeons and Doves),, +2448,species,madgrp2,Comoros Green-Pigeon,Treron griveaudi,Columbiformes,Columbidae (Pigeons and Doves),, +2449,species,madgrp1,Madagascar Green-Pigeon,Treron australis,Columbiformes,Columbidae (Pigeons and Doves),, +2452,species,pegpig1,Pemba Green-Pigeon,Treron pembaensis,Columbiformes,Columbidae (Pigeons and Doves),, +2453,species,stgpig1,Sao Tome Green-Pigeon,Treron sanctithomae,Columbiformes,Columbidae (Pigeons and Doves),, +2454,species,yevpig1,Yellow-vented Green-Pigeon,Treron seimundi,Columbiformes,Columbidae (Pigeons and Doves),, +2457,species,pitpig1,Pin-tailed Green-Pigeon,Treron apicauda,Columbiformes,Columbidae (Pigeons and Doves),, +2461,species,afrgrp1,African Green-Pigeon,Treron calvus,Columbiformes,Columbidae (Pigeons and Doves),, +2462,issf,afrgrp2,African Green-Pigeon (African),Treron calvus [calvus Group],Columbiformes,Columbidae (Pigeons and Doves),,afrgrp1 +2477,issf,afrgrp3,African Green-Pigeon (Gray-breasted),Treron calvus delalandii/granti,Columbiformes,Columbidae (Pigeons and Doves),,afrgrp1 +2480,species,gnspig1,Green-spectacled Green-Pigeon,Treron oxyurus,Columbiformes,Columbidae (Pigeons and Doves),, +2481,species,wetpig1,Wedge-tailed Green-Pigeon,Treron sphenurus,Columbiformes,Columbidae (Pigeons and Doves),, +2485,species,whbpig1,White-bellied Green-Pigeon,Treron sieboldii,Columbiformes,Columbidae (Pigeons and Doves),, +2489,species,whgpig1,Whistling Green-Pigeon,Treron formosae,Columbiformes,Columbidae (Pigeons and Doves),, +2490,issf,whigrp1,Whistling Green-Pigeon (Ryukyu),Treron formosae permagnus/medioximus,Columbiformes,Columbidae (Pigeons and Doves),,whgpig1 +2493,issf,whigrp2,Whistling Green-Pigeon (Taiwan),Treron formosae formosae/filipinus,Columbiformes,Columbidae (Pigeons and Doves),,whgpig1 +2496,spuh,treron1,green-pigeon sp.,Treron sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2497,species,bbfdov1,Black-backed Fruit-Dove,Ptilinopus cinctus,Columbiformes,Columbidae (Pigeons and Doves),, +2504,species,bbfdov2,Black-banded Fruit-Dove,Ptilinopus alligator,Columbiformes,Columbidae (Pigeons and Doves),, +2505,species,rnfdov1,Red-naped Fruit-Dove,Ptilinopus dohertyi,Columbiformes,Columbidae (Pigeons and Doves),, +2506,species,phfdov1,Pink-headed Fruit-Dove,Ptilinopus porphyreus,Columbiformes,Columbidae (Pigeons and Doves),, +2507,species,ybfdov2,Yellow-breasted Fruit-Dove,Ptilinopus occipitalis,Columbiformes,Columbidae (Pigeons and Doves),, +2510,species,fbfdov1,Flame-breasted Fruit-Dove,Ptilinopus marchei,Columbiformes,Columbidae (Pigeons and Doves),, +2511,species,crbfrd1,Cream-breasted Fruit-Dove,Ptilinopus merrilli,Columbiformes,Columbidae (Pigeons and Doves),, +2514,species,refdov1,Red-eared Fruit-Dove,Ptilinopus fischeri,Columbiformes,Columbidae (Pigeons and Doves),, +2515,issf,reefrd1,Red-eared Fruit-Dove (Red-eared),Ptilinopus fischeri fischeri/centralis,Columbiformes,Columbidae (Pigeons and Doves),,refdov1 +2518,issf,reefrd2,Red-eared Fruit-Dove (Lompobattang),Ptilinopus fischeri meridionalis,Columbiformes,Columbidae (Pigeons and Doves),,refdov1 +2519,species,jafdov1,Jambu Fruit-Dove,Ptilinopus jambu,Columbiformes,Columbidae (Pigeons and Doves),, +2520,species,macfrd1,Maroon-chinned Fruit-Dove,Ptilinopus epius,Columbiformes,Columbidae (Pigeons and Doves),, +2521,species,macfrd3,Banggai Fruit-Dove,Ptilinopus subgularis,Columbiformes,Columbidae (Pigeons and Doves),, +2522,species,macfrd2,Sula Fruit-Dove,Ptilinopus mangoliensis,Columbiformes,Columbidae (Pigeons and Doves),, +2523,species,bcfdov1,Black-chinned Fruit-Dove,Ptilinopus leclancheri,Columbiformes,Columbidae (Pigeons and Doves),, +2527,species,sbfdov1,Scarlet-breasted Fruit-Dove,Ptilinopus bernsteinii,Columbiformes,Columbidae (Pigeons and Doves),, +2530,species,wofdov1,Wompoo Fruit-Dove,Ptilinopus magnificus,Columbiformes,Columbidae (Pigeons and Doves),, +2539,species,psfdov1,Pink-spotted Fruit-Dove,Ptilinopus perlatus,Columbiformes,Columbidae (Pigeons and Doves),, +2543,species,orfdov1,Ornate Fruit-Dove,Ptilinopus ornatus,Columbiformes,Columbidae (Pigeons and Doves),, +2544,issf,ornfrd1,Ornate Fruit-Dove (Western),Ptilinopus ornatus ornatus,Columbiformes,Columbidae (Pigeons and Doves),,orfdov1 +2545,issf,ornfrd2,Ornate Fruit-Dove (Eastern),Ptilinopus ornatus gestroi,Columbiformes,Columbidae (Pigeons and Doves),,orfdov1 +2546,species,tafdov1,Tanna Fruit-Dove,Ptilinopus tannensis,Columbiformes,Columbidae (Pigeons and Doves),, +2547,species,offdov1,Orange-fronted Fruit-Dove,Ptilinopus aurantiifrons,Columbiformes,Columbidae (Pigeons and Doves),, +2548,species,wafdov1,Wallace's Fruit-Dove,Ptilinopus wallacii,Columbiformes,Columbidae (Pigeons and Doves),, +2549,species,sufdov1,Superb Fruit-Dove,Ptilinopus superbus,Columbiformes,Columbidae (Pigeons and Doves),, +2550,issf,supfrd1,Superb Fruit-Dove (Western),Ptilinopus superbus temminckii,Columbiformes,Columbidae (Pigeons and Doves),,sufdov1 +2551,issf,supfrd2,Superb Fruit-Dove (Eastern),Ptilinopus superbus superbus,Columbiformes,Columbidae (Pigeons and Doves),,sufdov1 +2552,species,mcfdov1,Many-colored Fruit-Dove,Ptilinopus perousii,Columbiformes,Columbidae (Pigeons and Doves),, +2555,species,pucfrd1,Purple-capped Fruit-Dove,Ptilinopus ponapensis,Columbiformes,Columbidae (Pigeons and Doves),, +2556,species,kosfrd1,Kosrae Fruit-Dove,Ptilinopus hernsheimi,Columbiformes,Columbidae (Pigeons and Doves),, +2557,species,ccfdov1,Crimson-crowned Fruit-Dove,Ptilinopus porphyraceus,Columbiformes,Columbidae (Pigeons and Doves),, +2558,issf,crcfrd1,Crimson-crowned Fruit-Dove (Tongan),Ptilinopus porphyraceus porphyraceus,Columbiformes,Columbidae (Pigeons and Doves),,ccfdov1 +2559,issf,crcfrd2,Crimson-crowned Fruit-Dove (Samoan),Ptilinopus porphyraceus fasciatus,Columbiformes,Columbidae (Pigeons and Doves),,ccfdov1 +2560,species,pafdov1,Palau Fruit-Dove,Ptilinopus pelewensis,Columbiformes,Columbidae (Pigeons and Doves),, +2561,species,cifdov1,Cook Islands Fruit-Dove,Ptilinopus rarotongensis,Columbiformes,Columbidae (Pigeons and Doves),, +2564,species,mafdov2,Mariana Fruit-Dove,Ptilinopus roseicapilla,Columbiformes,Columbidae (Pigeons and Doves),, +2565,species,rcfdov1,Rose-crowned Fruit-Dove,Ptilinopus regina,Columbiformes,Columbidae (Pigeons and Doves),, +2571,species,scfdov1,Silver-capped Fruit-Dove,Ptilinopus richardsii,Columbiformes,Columbidae (Pigeons and Doves),, +2574,species,gygfrd1,Gray-green Fruit-Dove,Ptilinopus purpuratus,Columbiformes,Columbidae (Pigeons and Doves),, +2575,issf,gygfrd2,Gray-green Fruit-Dove (chrysogaster),Ptilinopus purpuratus chrysogaster,Columbiformes,Columbidae (Pigeons and Doves),,gygfrd1 +2576,issf,gygfrd3,Gray-green Fruit-Dove (purpuratus/frater),Ptilinopus purpuratus purpuratus/frater,Columbiformes,Columbidae (Pigeons and Doves),,gygfrd1 +2579,species,mafdov1,Makatea Fruit-Dove,Ptilinopus chalcurus,Columbiformes,Columbidae (Pigeons and Doves),, +2580,species,atfdov1,Atoll Fruit-Dove,Ptilinopus coralensis,Columbiformes,Columbidae (Pigeons and Doves),, +2581,species,rbfdov1,Red-bellied Fruit-Dove,Ptilinopus greyi,Columbiformes,Columbidae (Pigeons and Doves),, +2582,species,rafdov1,Rapa Fruit-Dove,Ptilinopus huttoni,Columbiformes,Columbidae (Pigeons and Doves),, +2583,species,wcfdov1,White-capped Fruit-Dove,Ptilinopus dupetithouarsii,Columbiformes,Columbidae (Pigeons and Doves),, +2586,species,rmfdov1,Red-moustached Fruit-Dove,Ptilinopus mercierii,Columbiformes,Columbidae (Pigeons and Doves),, +2587,species,hifdov1,Henderson Island Fruit-Dove,Ptilinopus insularis,Columbiformes,Columbidae (Pigeons and Doves),, +2588,species,cofdov1,Coroneted Fruit-Dove,Ptilinopus coronulatus,Columbiformes,Columbidae (Pigeons and Doves),, +2594,species,befdov1,Beautiful Fruit-Dove,Ptilinopus pulchellus,Columbiformes,Columbidae (Pigeons and Doves),, +2597,species,bcfdov2,Blue-capped Fruit-Dove,Ptilinopus monacha,Columbiformes,Columbidae (Pigeons and Doves),, +2598,species,whbfrd1,White-breasted Fruit-Dove,Ptilinopus rivoli,Columbiformes,Columbidae (Pigeons and Doves),, +2604,species,ybfdov1,Yellow-bibbed Fruit-Dove,Ptilinopus solomonensis,Columbiformes,Columbidae (Pigeons and Doves),, +2605,issf,yebfrd1,Yellow-bibbed Fruit-Dove (Geelvink),Ptilinopus solomonensis speciosus,Columbiformes,Columbidae (Pigeons and Doves),,ybfdov1 +2606,issf,yebfrd2,Yellow-bibbed Fruit-Dove (Yellow-banded),Ptilinopus solomonensis [solomonensis Group],Columbiformes,Columbidae (Pigeons and Doves),,ybfdov1 +2615,species,cbfdov1,Claret-breasted Fruit-Dove,Ptilinopus viridis,Columbiformes,Columbidae (Pigeons and Doves),, +2622,species,whfdov2,White-headed Fruit-Dove,Ptilinopus eugeniae,Columbiformes,Columbidae (Pigeons and Doves),, +2623,species,obfdov1,Orange-bellied Fruit-Dove,Ptilinopus iozonus,Columbiformes,Columbidae (Pigeons and Doves),, +2629,species,kbfdov1,Knob-billed Fruit-Dove,Ptilinopus insolitus,Columbiformes,Columbidae (Pigeons and Doves),, +2632,species,gyhfrd1,Gray-headed Fruit-Dove,Ptilinopus hyogastrus,Columbiformes,Columbidae (Pigeons and Doves),, +2633,species,cafdov1,Carunculated Fruit-Dove,Ptilinopus granulifrons,Columbiformes,Columbidae (Pigeons and Doves),, +2634,species,bknfrd1,Black-naped Fruit-Dove,Ptilinopus melanospilus,Columbiformes,Columbidae (Pigeons and Doves),, +2640,species,dwafrd1,Dwarf Fruit-Dove,Ptilinopus nainus,Columbiformes,Columbidae (Pigeons and Doves),, +2641,species,nefdov1,Negros Fruit-Dove,Ptilinopus arcanus,Columbiformes,Columbidae (Pigeons and Doves),, +2642,species,oradov1,Orange Dove,Ptilinopus victor,Columbiformes,Columbidae (Pigeons and Doves),, +2645,species,goldov1,Golden Dove,Ptilinopus luteovirens,Columbiformes,Columbidae (Pigeons and Doves),, +2646,species,veldov1,Velvet Dove,Ptilinopus layardi,Columbiformes,Columbidae (Pigeons and Doves),, +2647,spuh,fruit-1,fruit-dove sp.,Ptilinopus sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2648,species,clfdov1,Cloven-feathered Dove,Drepanoptila holosericea,Columbiformes,Columbidae (Pigeons and Doves),, +2649,species,mabpig2,Mauritius Blue-Pigeon,Alectroenas nitidissimus,Columbiformes,Columbidae (Pigeons and Doves),, +2650,species,rodblp1,Rodrigues Blue-Pigeon,Alectroenas payandeei,Columbiformes,Columbidae (Pigeons and Doves),, +2651,species,mabpig1,Madagascar Blue-Pigeon,Alectroenas madagascariensis,Columbiformes,Columbidae (Pigeons and Doves),, +2652,species,cobpig1,Comoro Blue-Pigeon,Alectroenas sganzini,Columbiformes,Columbidae (Pigeons and Doves),, +2655,species,sebpig1,Seychelles Blue-Pigeon,Alectroenas pulcherrimus,Columbiformes,Columbidae (Pigeons and Doves),, +2656,species,pbipig1,Pink-bellied Imperial-Pigeon,Ducula poliocephala,Columbiformes,Columbidae (Pigeons and Doves),, +2657,species,wbipig1,White-bellied Imperial-Pigeon,Ducula forsteni,Columbiformes,Columbidae (Pigeons and Doves),, +2658,species,miipig2,Mindoro Imperial-Pigeon,Ducula mindorensis,Columbiformes,Columbidae (Pigeons and Doves),, +2659,species,gyhimp1,Gray-headed Imperial-Pigeon,Ducula radiata,Columbiformes,Columbidae (Pigeons and Doves),, +2660,species,spipig3,Spotted Imperial-Pigeon,Ducula carola,Columbiformes,Columbidae (Pigeons and Doves),, +2664,species,gripig1,Green Imperial-Pigeon,Ducula aenea,Columbiformes,Columbidae (Pigeons and Doves),, +2665,issf,grnimp1,Green Imperial-Pigeon (Green),Ducula aenea [aenea Group],Columbiformes,Columbidae (Pigeons and Doves),,gripig1 +2675,issf,grnimp5,Green Imperial-Pigeon (Enggano),Ducula aenea oenothorax,Columbiformes,Columbidae (Pigeons and Doves),,gripig1 +2676,issf,grnimp3,Green Imperial-Pigeon (Maroon-naped),Ducula aenea nuchalis,Columbiformes,Columbidae (Pigeons and Doves),,gripig1 +2677,issf,grnimp4,Green Imperial-Pigeon (Rufous-naped),Ducula aenea paulina,Columbiformes,Columbidae (Pigeons and Doves),,gripig1 +2678,species,grnimp2,Nicobar Imperial-Pigeon,Ducula nicobarica,Columbiformes,Columbidae (Pigeons and Doves),, +2679,species,wheimp2,Spectacled Imperial-Pigeon,Ducula perspicillata,Columbiformes,Columbidae (Pigeons and Doves),, +2680,species,wheimp1,Seram Imperial-Pigeon,Ducula neglecta,Columbiformes,Columbidae (Pigeons and Doves),, +2681,species,elipig1,Elegant Imperial-Pigeon,Ducula concinna,Columbiformes,Columbidae (Pigeons and Doves),, +2682,species,paipig1,Pacific Imperial-Pigeon,Ducula pacifica,Columbiformes,Columbidae (Pigeons and Doves),, +2685,species,rkipig1,Red-knobbed Imperial-Pigeon,Ducula rubricera,Columbiformes,Columbidae (Pigeons and Doves),, +2686,issf,rekimp1,Red-knobbed Imperial-Pigeon (Pink-necked),Ducula rubricera rubricera,Columbiformes,Columbidae (Pigeons and Doves),,rkipig1 +2687,issf,rekimp2,Red-knobbed Imperial-Pigeon (Gray-necked),Ducula rubricera rufigula,Columbiformes,Columbidae (Pigeons and Doves),,rkipig1 +2688,species,miipig1,Micronesian Imperial-Pigeon,Ducula oceanica,Columbiformes,Columbidae (Pigeons and Doves),, +2694,species,poipig1,Polynesian Imperial-Pigeon,Ducula aurorae,Columbiformes,Columbidae (Pigeons and Doves),, +2697,species,marimp1,Marquesas Imperial-Pigeon,Ducula galeata,Columbiformes,Columbidae (Pigeons and Doves),, +2698,species,spipig1,Spice Imperial-Pigeon,Ducula myristicivora,Columbiformes,Columbidae (Pigeons and Doves),, +2699,issf,spiimp1,Spice Imperial-Pigeon (Pink-naped),Ducula myristicivora myristicivora,Columbiformes,Columbidae (Pigeons and Doves),,spipig1 +2700,issf,spiimp2,Spice Imperial-Pigeon (Gray-naped),Ducula myristicivora geelvinkiana,Columbiformes,Columbidae (Pigeons and Doves),,spipig1 +2701,species,ptipig1,Purple-tailed Imperial-Pigeon,Ducula rufigaster,Columbiformes,Columbidae (Pigeons and Doves),, +2704,species,cbipig2,Cinnamon-bellied Imperial-Pigeon,Ducula basilica,Columbiformes,Columbidae (Pigeons and Doves),, +2705,issf,cibimp1,Cinnamon-bellied Imperial-Pigeon (Gray-naped),Ducula basilica basilica,Columbiformes,Columbidae (Pigeons and Doves),,cbipig2 +2706,issf,cibimp2,Cinnamon-bellied Imperial-Pigeon (Golden-naped),Ducula basilica obiensis,Columbiformes,Columbidae (Pigeons and Doves),,cbipig2 +2707,species,fiipig1,Finsch's Imperial-Pigeon,Ducula finschii,Columbiformes,Columbidae (Pigeons and Doves),, +2708,species,rufimp1,Rufescent Imperial-Pigeon,Ducula chalconota,Columbiformes,Columbidae (Pigeons and Doves),, +2709,issf,rufimp2,Rufescent Imperial-Pigeon (Purple-rumped),Ducula chalconota chalconota,Columbiformes,Columbidae (Pigeons and Doves),,rufimp1 +2710,issf,rufimp3,Rufescent Imperial-Pigeon (Green-rumped),Ducula chalconota smaragdina,Columbiformes,Columbidae (Pigeons and Doves),,rufimp1 +2711,species,isipig1,Island Imperial-Pigeon,Ducula pistrinaria,Columbiformes,Columbidae (Pigeons and Doves),, +2716,species,phipig1,Pink-headed Imperial-Pigeon,Ducula rosacea,Columbiformes,Columbidae (Pigeons and Doves),, +2717,species,ciipig1,Christmas Island Imperial-Pigeon,Ducula whartoni,Columbiformes,Columbidae (Pigeons and Doves),, +2718,species,gryimp1,Gray Imperial-Pigeon,Ducula pickeringii,Columbiformes,Columbidae (Pigeons and Doves),, +2722,species,peipig1,Peale's Imperial-Pigeon,Ducula latrans,Columbiformes,Columbidae (Pigeons and Doves),, +2723,species,cbipig1,Chestnut-bellied Imperial-Pigeon,Ducula brenchleyi,Columbiformes,Columbidae (Pigeons and Doves),, +2724,species,baipig1,Baker's Imperial-Pigeon,Ducula bakeri,Columbiformes,Columbidae (Pigeons and Doves),, +2725,species,ncipig1,New Caledonian Imperial-Pigeon,Ducula goliath,Columbiformes,Columbidae (Pigeons and Doves),, +2726,species,piipig2,Pinon's Imperial-Pigeon,Ducula pinon,Columbiformes,Columbidae (Pigeons and Doves),, +2727,issf,pinimp1,Pinon's Imperial-Pigeon (Gray-headed),Ducula pinon pinon/jobiensis,Columbiformes,Columbidae (Pigeons and Doves),,piipig2 +2730,issf,pinimp2,Pinon's Imperial-Pigeon (Pink-headed),Ducula pinon salvadorii,Columbiformes,Columbidae (Pigeons and Doves),,piipig2 +2731,species,biipig1,Bismarck Imperial-Pigeon,Ducula melanochroa,Columbiformes,Columbidae (Pigeons and Doves),, +2732,species,coipig1,Collared Imperial-Pigeon,Ducula mullerii,Columbiformes,Columbidae (Pigeons and Doves),, +2735,species,zoeimp1,Zoe's Imperial-Pigeon,Ducula zoeae,Columbiformes,Columbidae (Pigeons and Doves),, +2736,species,moipig1,Mountain Imperial-Pigeon,Ducula badia,Columbiformes,Columbidae (Pigeons and Doves),, +2737,issf,mouimp1,Mountain Imperial-Pigeon (cuprea),Ducula badia cuprea,Columbiformes,Columbidae (Pigeons and Doves),,moipig1 +2738,issf,mouimp2,Mountain Imperial-Pigeon (badia Group),Ducula badia [badia Group],Columbiformes,Columbidae (Pigeons and Doves),,moipig1 +2742,species,dbipig1,Dark-backed Imperial-Pigeon,Ducula lacernulata,Columbiformes,Columbidae (Pigeons and Doves),, +2743,issf,dabimp1,Dark-backed Imperial-Pigeon (Gray-headed),Ducula lacernulata lacernulata,Columbiformes,Columbidae (Pigeons and Doves),,dbipig1 +2744,issf,dabimp2,Dark-backed Imperial-Pigeon (Pink-headed),Ducula lacernulata williami,Columbiformes,Columbidae (Pigeons and Doves),,dbipig1 +2745,issf,dabimp3,Dark-backed Imperial-Pigeon (Gray-crowned),Ducula lacernulata sasakensis,Columbiformes,Columbidae (Pigeons and Doves),,dbipig1 +2746,species,tiipig1,Timor Imperial-Pigeon,Ducula cineracea,Columbiformes,Columbidae (Pigeons and Doves),, +2749,species,piipig1,Pied Imperial-Pigeon,Ducula bicolor,Columbiformes,Columbidae (Pigeons and Doves),, +2752,species,torimp2,Yellowish Imperial-Pigeon,Ducula subflavescens,Columbiformes,Columbidae (Pigeons and Doves),, +2753,species,torimp1,Torresian Imperial-Pigeon,Ducula spilorrhoa,Columbiformes,Columbidae (Pigeons and Doves),, +2754,species,whiimp1,Silver-tipped Imperial-Pigeon,Ducula luctuosa,Columbiformes,Columbidae (Pigeons and Doves),, +2755,spuh,imperi1,imperial-pigeon sp.,Ducula sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2756,species,toppig1,Topknot Pigeon,Lopholaimus antarcticus,Columbiformes,Columbidae (Pigeons and Doves),, +2757,species,nezpig2,New Zealand Pigeon,Hemiphaga novaeseelandiae,Columbiformes,Columbidae (Pigeons and Doves),, +2758,issf,noipig1,New Zealand Pigeon (Norfolk),Hemiphaga novaeseelandiae spadicea,Columbiformes,Columbidae (Pigeons and Doves),,nezpig2 +2759,issf,nezpig1,New Zealand Pigeon (New Zealand),Hemiphaga novaeseelandiae novaeseelandiae,Columbiformes,Columbidae (Pigeons and Doves),,nezpig2 +2760,species,nezpig3,Chatham Island Pigeon,Hemiphaga chathamensis,Columbiformes,Columbidae (Pigeons and Doves),, +2761,species,sompig2,Sombre Pigeon,Cryptophaps poecilorrhoa,Columbiformes,Columbidae (Pigeons and Doves),, +2762,species,pampig2,Papuan Mountain-Pigeon,Gymnophaps albertisii,Columbiformes,Columbidae (Pigeons and Doves),, +2765,species,lotmop1,Buru Mountain-Pigeon,Gymnophaps mada,Columbiformes,Columbidae (Pigeons and Doves),, +2766,species,lotmop2,Seram Mountain-Pigeon,Gymnophaps stalkeri,Columbiformes,Columbidae (Pigeons and Doves),, +2767,species,pampig1,Pale Mountain-Pigeon,Gymnophaps solomonensis,Columbiformes,Columbidae (Pigeons and Doves),, +2768,spuh,dove1,pigeon/dove sp.,Columbidae sp.,Columbiformes,Columbidae (Pigeons and Doves),, +2769,species,whbmes2,White-breasted Mesite,Mesitornis variegatus,Mesitornithiformes,Mesitornithidae (Mesites),Mesites, +2770,species,bromes1,Brown Mesite,Mesitornis unicolor,Mesitornithiformes,Mesitornithidae (Mesites),, +2771,species,submes1,Subdesert Mesite,Monias benschi,Mesitornithiformes,Mesitornithidae (Mesites),, +2772,species,tibsan1,Tibetan Sandgrouse,Syrrhaptes tibetanus,Pterocliformes,Pteroclidae (Sandgrouse),Sandgrouse, +2773,species,palsan1,Pallas's Sandgrouse,Syrrhaptes paradoxus,Pterocliformes,Pteroclidae (Sandgrouse),, +2774,species,pitsan1,Pin-tailed Sandgrouse,Pterocles alchata,Pterocliformes,Pteroclidae (Sandgrouse),, +2775,issf,pitsan2,Pin-tailed Sandgrouse (Iberian),Pterocles alchata alchata,Pterocliformes,Pteroclidae (Sandgrouse),,pitsan1 +2776,issf,pitsan3,Pin-tailed Sandgrouse (Pin-tailed),Pterocles alchata caudacutus,Pterocliformes,Pteroclidae (Sandgrouse),,pitsan1 +2777,species,namsan1,Namaqua Sandgrouse,Pterocles namaqua,Pterocliformes,Pteroclidae (Sandgrouse),, +2778,species,chbsan,Chestnut-bellied Sandgrouse,Pterocles exustus,Pterocliformes,Pteroclidae (Sandgrouse),, +2779,issf,chbsan1,Chestnut-bellied Sandgrouse (African),Pterocles exustus [exustus Group],Pterocliformes,Pteroclidae (Sandgrouse),,chbsan +2784,issf,chbsan2,Chestnut-bellied Sandgrouse (Arabian),Pterocles exustus erlangeri,Pterocliformes,Pteroclidae (Sandgrouse),,chbsan +2785,issf,chbsan3,Chestnut-bellied Sandgrouse (Asian),Pterocles exustus hindustan,Pterocliformes,Pteroclidae (Sandgrouse),,chbsan +2786,species,sposan1,Spotted Sandgrouse,Pterocles senegallus,Pterocliformes,Pteroclidae (Sandgrouse),, +2787,species,blbsan1,Black-bellied Sandgrouse,Pterocles orientalis,Pterocliformes,Pteroclidae (Sandgrouse),, +2790,species,yetsan1,Yellow-throated Sandgrouse,Pterocles gutturalis,Pterocliformes,Pteroclidae (Sandgrouse),, +2793,species,crosan1,Crowned Sandgrouse,Pterocles coronatus,Pterocliformes,Pteroclidae (Sandgrouse),, +2799,species,blfsan1,Black-faced Sandgrouse,Pterocles decoratus,Pterocliformes,Pteroclidae (Sandgrouse),, +2803,species,madsan1,Madagascar Sandgrouse,Pterocles personatus,Pterocliformes,Pteroclidae (Sandgrouse),, +2804,species,licsan1,Lichtenstein's Sandgrouse,Pterocles lichtensteinii,Pterocliformes,Pteroclidae (Sandgrouse),, +2805,issf,licsan2,Lichtenstein's Sandgrouse (Lichtenstein's),Pterocles lichtensteinii [lichtensteinii Group],Pterocliformes,Pteroclidae (Sandgrouse),,licsan1 +2810,issf,licsan3,Lichtenstein's Sandgrouse (Close-barred),Pterocles lichtensteinii arabicus,Pterocliformes,Pteroclidae (Sandgrouse),,licsan1 +2811,species,dobsan1,Double-banded Sandgrouse,Pterocles bicinctus,Pterocliformes,Pteroclidae (Sandgrouse),, +2815,species,fobsan1,Four-banded Sandgrouse,Pterocles quadricinctus,Pterocliformes,Pteroclidae (Sandgrouse),, +2816,species,paisan1,Painted Sandgrouse,Pterocles indicus,Pterocliformes,Pteroclidae (Sandgrouse),, +2817,species,bursan1,Burchell's Sandgrouse,Pterocles burchelli,Pterocliformes,Pteroclidae (Sandgrouse),, +2818,spuh,sandgr1,sandgrouse sp.,Pterocles sp.,Pterocliformes,Pteroclidae (Sandgrouse),, +2819,species,grebus1,Great Bustard,Otis tarda,Otidiformes,Otididae (Bustards),Bustards, +2822,species,arabus1,Arabian Bustard,Ardeotis arabs,Otidiformes,Otididae (Bustards),, +2827,species,korbus1,Kori Bustard,Ardeotis kori,Otidiformes,Otididae (Bustards),, +2830,species,indbus1,Great Indian Bustard,Ardeotis nigriceps,Otidiformes,Otididae (Bustards),, +2831,species,ausbus1,Australian Bustard,Ardeotis australis,Otidiformes,Otididae (Bustards),, +2832,species,houbus1,Houbara Bustard,Chlamydotis undulata,Otidiformes,Otididae (Bustards),, +2833,issf,houbus2,Houbara Bustard (Canary Is.),Chlamydotis undulata fuertaventurae,Otidiformes,Otididae (Bustards),,houbus1 +2834,issf,houbus3,Houbara Bustard (North African),Chlamydotis undulata undulata,Otidiformes,Otididae (Bustards),,houbus1 +2835,species,macbus1,Macqueen's Bustard,Chlamydotis macqueenii,Otidiformes,Otididae (Bustards),, +2836,species,ludbus1,Ludwig's Bustard,Neotis ludwigii,Otidiformes,Otididae (Bustards),, +2837,species,stabus1,Denham's Bustard,Neotis denhami,Otidiformes,Otididae (Bustards),, +2838,issf,denbus1,Denham's Bustard (Denham's),Neotis denhami denhami,Otidiformes,Otididae (Bustards),,stabus1 +2839,issf,denbus2,Denham's Bustard (Jackson's),Neotis denhami jacksoni,Otidiformes,Otididae (Bustards),,stabus1 +2840,issf,denbus3,Denham's Bustard (Stanley's),Neotis denhami stanleyi,Otidiformes,Otididae (Bustards),,stabus1 +2841,species,heubus1,Heuglin's Bustard,Neotis heuglinii,Otidiformes,Otididae (Bustards),, +2842,species,nubbus1,Nubian Bustard,Neotis nuba,Otidiformes,Otididae (Bustards),, +2843,species,whbbus2,White-bellied Bustard,Eupodotis senegalensis,Otidiformes,Otididae (Bustards),, +2844,issf,whbbus1,White-bellied Bustard (White-bellied),Eupodotis senegalensis [senegalensis Group],Otidiformes,Otididae (Bustards),,whbbus2 +2848,issf,whbbus3,White-bellied Bustard (Barrow's),Eupodotis senegalensis barrowii/mackenziei,Otidiformes,Otididae (Bustards),,whbbus2 +2851,species,blubus1,Blue Bustard,Eupodotis caerulescens,Otidiformes,Otididae (Bustards),, +2852,species,karbus1,Karoo Bustard,Eupodotis vigorsii,Otidiformes,Otididae (Bustards),, +2855,species,ruebus1,Rüppell's Bustard,Eupodotis rueppelii,Otidiformes,Otididae (Bustards),, +2858,species,libbus1,Little Brown Bustard,Eupodotis humilis,Otidiformes,Otididae (Bustards),, +2859,species,savbus1,Savile's Bustard,Eupodotis savilei,Otidiformes,Otididae (Bustards),, +2860,species,bucbus1,Buff-crested Bustard,Eupodotis gindiana,Otidiformes,Otididae (Bustards),, +2861,species,recbus1,Red-crested Bustard,Eupodotis ruficrista,Otidiformes,Otididae (Bustards),, +2862,species,blabus3,Black Bustard,Eupodotis afra,Otidiformes,Otididae (Bustards),, +2863,species,whqbus1,White-quilled Bustard,Eupodotis afraoides,Otidiformes,Otididae (Bustards),, +2867,species,bkbbus1,Black-bellied Bustard,Lissotis melanogaster,Otidiformes,Otididae (Bustards),, +2870,species,harbus2,Hartlaub's Bustard,Lissotis hartlaubii,Otidiformes,Otididae (Bustards),, +2871,species,benflo2,Bengal Florican,Houbaropsis bengalensis,Otidiformes,Otididae (Bustards),, +2874,species,lesflo2,Lesser Florican,Sypheotides indicus,Otidiformes,Otididae (Bustards),, +2875,species,litbus1,Little Bustard,Tetrax tetrax,Otidiformes,Otididae (Bustards),, +2876,spuh,bustar1,bustard sp.,Otididae sp.,Otidiformes,Otididae (Bustards),, +2877,species,grbtur1,Great Blue Turaco,Corythaeola cristata,Musophagiformes,Musophagidae (Turacos),Turacos, +2878,species,guitur1,Guinea Turaco,Tauraco persa,Musophagiformes,Musophagidae (Turacos),, +2879,issf,guitur2,Guinea Turaco (Buffon's),Tauraco persa buffoni,Musophagiformes,Musophagidae (Turacos),,guitur1 +2880,issf,guitur3,Guinea Turaco (Guinea),Tauraco persa persa/zenkeri,Musophagiformes,Musophagidae (Turacos),,guitur1 +2883,species,livtur1,Livingstone's Turaco,Tauraco livingstonii,Musophagiformes,Musophagidae (Turacos),, +2887,species,schtur1,Schalow's Turaco,Tauraco schalowi,Musophagiformes,Musophagidae (Turacos),, +2888,species,knytur1,Knysna Turaco,Tauraco corythaix,Musophagiformes,Musophagidae (Turacos),, +2889,issf,knytur2,Knysna Turaco (Northern),Tauraco corythaix phoebus,Musophagiformes,Musophagidae (Turacos),,knytur1 +2890,issf,knytur3,Knysna Turaco (Southern),Tauraco corythaix corythaix,Musophagiformes,Musophagidae (Turacos),,knytur1 +2891,species,blbtur1,Black-billed Turaco,Tauraco schuettii,Musophagiformes,Musophagidae (Turacos),, +2892,issf,bkbtur1,Black-billed Turaco (Green-rumped),Tauraco schuettii emini,Musophagiformes,Musophagidae (Turacos),,blbtur1 +2893,issf,bkbtur2,Black-billed Turaco (Black-rumped),Tauraco schuettii schuettii,Musophagiformes,Musophagidae (Turacos),,blbtur1 +2894,species,whctur2,White-crested Turaco,Tauraco leucolophus,Musophagiformes,Musophagidae (Turacos),, +2895,species,fistur1,Fischer's Turaco,Tauraco fischeri,Musophagiformes,Musophagidae (Turacos),, +2896,issf,fistur2,Fischer's Turaco (Fischer's),Tauraco fischeri fischeri,Musophagiformes,Musophagidae (Turacos),,fistur1 +2897,issf,fistur3,Fischer's Turaco (Zanzibar),Tauraco fischeri zanzibaricus,Musophagiformes,Musophagidae (Turacos),,fistur1 +2898,species,yebtur1,Yellow-billed Turaco,Tauraco macrorhynchus,Musophagiformes,Musophagidae (Turacos),, +2899,issf,yebtur2,Yellow-billed Turaco (Yellow-billed),Tauraco macrorhynchus macrorhynchus,Musophagiformes,Musophagidae (Turacos),,yebtur1 +2900,issf,yebtur3,Yellow-billed Turaco (Verreaux's),Tauraco macrorhynchus verreauxii,Musophagiformes,Musophagidae (Turacos),,yebtur1 +2901,species,bantur1,Bannerman's Turaco,Tauraco bannermani,Musophagiformes,Musophagidae (Turacos),, +2902,species,rectur1,Red-crested Turaco,Tauraco erythrolophus,Musophagiformes,Musophagidae (Turacos),, +2903,species,hartur1,Hartlaub's Turaco,Tauraco hartlaubi,Musophagiformes,Musophagidae (Turacos),, +2904,species,whctur1,White-cheeked Turaco,Tauraco leucotis,Musophagiformes,Musophagidae (Turacos),, +2905,issf,whctur3,White-cheeked Turaco (White-cheeked),Tauraco leucotis leucotis,Musophagiformes,Musophagidae (Turacos),,whctur1 +2906,issf,whctur4,White-cheeked Turaco (Donaldson's),Tauraco leucotis donaldsoni,Musophagiformes,Musophagidae (Turacos),,whctur1 +2907,species,prrtur1,Prince Ruspoli's Turaco,Tauraco ruspolii,Musophagiformes,Musophagidae (Turacos),, +2908,hybrid,x00800,White-cheeked x Prince Ruspoli's Turaco (hybrid),Tauraco leucotis x ruspolii,Musophagiformes,Musophagidae (Turacos),, +2909,species,puctur2,Purple-crested Turaco,Tauraco porphyreolophus,Musophagiformes,Musophagidae (Turacos),, +2912,spuh,taurac1,Tauraco sp.,Tauraco sp.,Musophagiformes,Musophagidae (Turacos),, +2913,species,ruwtur2,Rwenzori Turaco,Ruwenzorornis johnstoni,Musophagiformes,Musophagidae (Turacos),, +2914,issf,ruwtur1,Rwenzori Turaco (Rwenzori),Ruwenzorornis johnstoni johnstoni,Musophagiformes,Musophagidae (Turacos),,ruwtur2 +2915,issf,ruwtur3,Rwenzori Turaco (Mt. Kabobo),Ruwenzorornis johnstoni bredoi,Musophagiformes,Musophagidae (Turacos),,ruwtur2 +2916,issf,ruwtur4,Rwenzori Turaco (Kivu),Ruwenzorornis johnstoni kivuensis,Musophagiformes,Musophagidae (Turacos),,ruwtur2 +2917,species,viotur1,Violet Turaco,Musophaga violacea,Musophagiformes,Musophagidae (Turacos),, +2918,species,rostur1,Ross's Turaco,Musophaga rossae,Musophagiformes,Musophagidae (Turacos),, +2919,species,bfgbir1,Bare-faced Go-away-bird,Corythaixoides personatus,Musophagiformes,Musophagidae (Turacos),, +2920,issf,bafgab1,Bare-faced Go-away-bird (Brown-faced),Corythaixoides personatus personatus,Musophagiformes,Musophagidae (Turacos),,bfgbir1 +2921,issf,bafgab2,Bare-faced Go-away-bird (Black-faced),Corythaixoides personatus leopoldi,Musophagiformes,Musophagidae (Turacos),,bfgbir1 +2922,species,grygab1,Gray Go-away-bird,Corythaixoides concolor,Musophagiformes,Musophagidae (Turacos),, +2927,species,wbgbir1,White-bellied Go-away-bird,Corythaixoides leucogaster,Musophagiformes,Musophagidae (Turacos),, +2928,species,wesple1,Western Plantain-eater,Crinifer piscator,Musophagiformes,Musophagidae (Turacos),, +2929,species,easple1,Eastern Plantain-eater,Crinifer zonurus,Musophagiformes,Musophagidae (Turacos),, +2930,spuh,turaco1,turaco sp.,Musophagidae sp.,Musophagiformes,Musophagidae (Turacos),, +2931,species,guicuc1,Guira Cuckoo,Guira guira,Cuculiformes,Cuculidae (Cuckoos),Cuckoos, +2932,species,greani1,Greater Ani,Crotophaga major,Cuculiformes,Cuculidae (Cuckoos),, +2933,species,smbani,Smooth-billed Ani,Crotophaga ani,Cuculiformes,Cuculidae (Cuckoos),, +2934,species,grbani,Groove-billed Ani,Crotophaga sulcirostris,Cuculiformes,Cuculidae (Cuckoos),, +2935,slash,y00498,Smooth-billed/Groove-billed Ani,Crotophaga ani/sulcirostris,Cuculiformes,Cuculidae (Cuckoos),, +2936,species,strcuc1,Striped Cuckoo,Tapera naevia,Cuculiformes,Cuculidae (Cuckoos),, +2939,species,phecuc1,Pheasant Cuckoo,Dromococcyx phasianellus,Cuculiformes,Cuculidae (Cuckoos),, +2940,species,pavcuc1,Pavonine Cuckoo,Dromococcyx pavoninus,Cuculiformes,Cuculidae (Cuckoos),, +2941,species,legcuc1,Lesser Ground-Cuckoo,Morococcyx erythropygus,Cuculiformes,Cuculidae (Cuckoos),, +2944,species,lesroa1,Lesser Roadrunner,Geococcyx velox,Cuculiformes,Cuculidae (Cuckoos),, +2945,species,greroa,Greater Roadrunner,Geococcyx californianus,Cuculiformes,Cuculidae (Cuckoos),, +2946,slash,y00957,Lesser/Greater Roadrunner,Geococcyx velox/californianus,Cuculiformes,Cuculidae (Cuckoos),, +2947,species,rvgcuc1,Rufous-vented Ground-Cuckoo,Neomorphus geoffroyi,Cuculiformes,Cuculidae (Cuckoos),, +2954,species,scgcuc1,Scaled Ground-Cuckoo,Neomorphus squamiger,Cuculiformes,Cuculidae (Cuckoos),, +2955,species,bagcuc1,Banded Ground-Cuckoo,Neomorphus radiolosus,Cuculiformes,Cuculidae (Cuckoos),, +2956,species,rwgcuc1,Rufous-winged Ground-Cuckoo,Neomorphus rufipennis,Cuculiformes,Cuculidae (Cuckoos),, +2957,species,rbgcuc1,Red-billed Ground-Cuckoo,Neomorphus pucheranii,Cuculiformes,Cuculidae (Cuckoos),, +2960,species,sugcuc1,Sumatran Ground-Cuckoo,Carpococcyx viridis,Cuculiformes,Cuculidae (Cuckoos),, +2961,species,bogcuc1,Bornean Ground-Cuckoo,Carpococcyx radiceus,Cuculiformes,Cuculidae (Cuckoos),, +2962,species,cbgcuc1,Coral-billed Ground-Cuckoo,Carpococcyx renauldi,Cuculiformes,Cuculidae (Cuckoos),, +2963,species,crecou1,Crested Coua,Coua cristata,Cuculiformes,Cuculidae (Cuckoos),, +2964,issf,crecou2,Crested Coua (Crested),Coua cristata [cristata Group],Cuculiformes,Cuculidae (Cuckoos),,crecou1 +2968,issf,crecou3,Crested Coua (Chestnut-vented),Coua cristata pyropyga,Cuculiformes,Cuculidae (Cuckoos),,crecou1 +2969,species,vercou1,Verreaux's Coua,Coua verreauxi,Cuculiformes,Cuculidae (Cuckoos),, +2970,species,blucou1,Blue Coua,Coua caerulea,Cuculiformes,Cuculidae (Cuckoos),, +2971,species,reccou1,Red-capped Coua,Coua ruficeps,Cuculiformes,Cuculidae (Cuckoos),, +2972,issf,reccou2,Red-capped Coua (Red-capped),Coua ruficeps ruficeps,Cuculiformes,Cuculidae (Cuckoos),,reccou1 +2973,issf,reccou3,Red-capped Coua (Green-capped),Coua ruficeps olivaceiceps,Cuculiformes,Cuculidae (Cuckoos),,reccou1 +2974,species,refcou1,Red-fronted Coua,Coua reynaudii,Cuculiformes,Cuculidae (Cuckoos),, +2975,species,coqcou1,Coquerel's Coua,Coua coquereli,Cuculiformes,Cuculidae (Cuckoos),, +2976,species,runcou1,Running Coua,Coua cursor,Cuculiformes,Cuculidae (Cuckoos),, +2977,species,giacou1,Giant Coua,Coua gigas,Cuculiformes,Cuculidae (Cuckoos),, +2978,species,snecou1,Snail-eating Coua,Coua delalandei,Cuculiformes,Cuculidae (Cuckoos),, +2979,species,rebcou1,Red-breasted Coua,Coua serriana,Cuculiformes,Cuculidae (Cuckoos),, +2980,spuh,coua1,coua sp.,Coua sp.,Cuculiformes,Cuculidae (Cuckoos),, +2981,species,buhcou1,Buff-headed Coucal,Centropus milo,Cuculiformes,Cuculidae (Cuckoos),, +2984,species,piecou1,Pied Coucal,Centropus ateralbus,Cuculiformes,Cuculidae (Cuckoos),, +2985,species,biacou1,Biak Coucal,Centropus chalybeus,Cuculiformes,Cuculidae (Cuckoos),, +2986,species,grbcou1,Greater Black Coucal,Centropus menbeki,Cuculiformes,Cuculidae (Cuckoos),, +2990,species,rufcou1,Rufous Coucal,Centropus unirufus,Cuculiformes,Cuculidae (Cuckoos),, +2991,species,grbcou2,Green-billed Coucal,Centropus chlororhynchos,Cuculiformes,Cuculidae (Cuckoos),, +2992,species,blfcou1,Black-faced Coucal,Centropus melanops,Cuculiformes,Cuculidae (Cuckoos),, +2995,species,shtcou1,Short-toed Coucal,Centropus rectunguis,Cuculiformes,Cuculidae (Cuckoos),, +2996,species,blhcou1,Black-hooded Coucal,Centropus steerii,Cuculiformes,Cuculidae (Cuckoos),, +2997,species,baycou1,Bay Coucal,Centropus celebensis,Cuculiformes,Cuculidae (Cuckoos),, +3000,species,gabcou1,Gabon Coucal,Centropus anselli,Cuculiformes,Cuculidae (Cuckoos),, +3001,species,bltcou1,Black-throated Coucal,Centropus leucogaster,Cuculiformes,Cuculidae (Cuckoos),, +3005,species,sencou1,Senegal Coucal,Centropus senegalensis,Cuculiformes,Cuculidae (Cuckoos),, +3009,species,blhcou2,Blue-headed Coucal,Centropus monachus,Cuculiformes,Cuculidae (Cuckoos),, +3013,species,cotcou1,Coppery-tailed Coucal,Centropus cupreicaudus,Cuculiformes,Cuculidae (Cuckoos),, +3014,species,whbcou1,White-browed Coucal,Centropus superciliosus,Cuculiformes,Cuculidae (Cuckoos),, +3015,issf,whbcou2,White-browed Coucal (White-browed),Centropus superciliosus superciliosus/loandae,Cuculiformes,Cuculidae (Cuckoos),,whbcou1 +3018,issf,whbcou3,White-browed Coucal (Burchell's),Centropus superciliosus burchellii/fasciipygialis,Cuculiformes,Cuculidae (Cuckoos),,whbcou1 +3021,species,suncou1,Sunda Coucal,Centropus nigrorufus,Cuculiformes,Cuculidae (Cuckoos),, +3022,species,andcou1,Andaman Coucal,Centropus andamanensis,Cuculiformes,Cuculidae (Cuckoos),, +3023,species,grecou1,Greater Coucal,Centropus sinensis,Cuculiformes,Cuculidae (Cuckoos),, +3024,issf,grecou2,Greater Coucal (Greater),Centropus sinensis [sinensis Group],Cuculiformes,Cuculidae (Cuckoos),,grecou1 +3030,issf,grecou3,Greater Coucal (Southern),Centropus sinensis parroti,Cuculiformes,Cuculidae (Cuckoos),,grecou1 +3031,species,golcou1,Goliath Coucal,Centropus goliath,Cuculiformes,Cuculidae (Cuckoos),, +3032,species,madcou1,Madagascar Coucal,Centropus toulou,Cuculiformes,Cuculidae (Cuckoos),, +3036,species,blacou1,Black Coucal,Centropus grillii,Cuculiformes,Cuculidae (Cuckoos),, +3037,species,phicou1,Philippine Coucal,Centropus viridis,Cuculiformes,Cuculidae (Cuckoos),, +3042,species,lescou1,Lesser Coucal,Centropus bengalensis,Cuculiformes,Cuculidae (Cuckoos),, +3048,slash,y01087,Greater/Lesser Coucal,Centropus sinensis/bengalensis,Cuculiformes,Cuculidae (Cuckoos),, +3049,species,viocou1,Violaceous Coucal,Centropus violaceus,Cuculiformes,Cuculidae (Cuckoos),, +3050,species,lebcou1,Lesser Black Coucal,Centropus bernsteini,Cuculiformes,Cuculidae (Cuckoos),, +3053,species,phecou2,Pheasant Coucal,Centropus phasianinus,Cuculiformes,Cuculidae (Cuckoos),, +3054,issf,kaicou1,Pheasant Coucal (Kai),Centropus phasianinus spilopterus,Cuculiformes,Cuculidae (Cuckoos),,phecou2 +3055,issf,phecou1,Pheasant Coucal (Pheasant),Centropus phasianinus [phasianinus Group],Cuculiformes,Cuculidae (Cuckoos),,phecou2 +3062,spuh,coucal1,coucal sp.,Centropus sp.,Cuculiformes,Cuculidae (Cuckoos),, +3063,species,rafmal1,Raffles's Malkoha,Rhinortha chlorophaea,Cuculiformes,Cuculidae (Cuckoos),, +3064,species,yellow5,Blue Malkoha,Ceuthmochares aereus,Cuculiformes,Cuculidae (Cuckoos),, +3067,species,yellow6,Green Malkoha,Ceuthmochares australis,Cuculiformes,Cuculidae (Cuckoos),, +3068,species,sirmal1,Sirkeer Malkoha,Taccocua leschenaultii,Cuculiformes,Cuculidae (Cuckoos),, +3072,species,rebmal2,Red-billed Malkoha,Zanclostomus javanicus,Cuculiformes,Cuculidae (Cuckoos),, +3073,species,chbmal2,Chestnut-breasted Malkoha,Phaenicophaeus curvirostris,Cuculiformes,Cuculidae (Cuckoos),, +3074,issf,chbmal3,Chestnut-breasted Malkoha (Mentawai),Phaenicophaeus curvirostris oeneicaudus,Cuculiformes,Cuculidae (Cuckoos),,chbmal2 +3075,issf,chbmal4,Chestnut-breasted Malkoha (Chestnut-breasted),Phaenicophaeus curvirostris [curvirostris Group],Cuculiformes,Cuculidae (Cuckoos),,chbmal2 +3081,species,chbmal1,Chestnut-bellied Malkoha,Phaenicophaeus sumatranus,Cuculiformes,Cuculidae (Cuckoos),, +3082,species,refmal1,Red-faced Malkoha,Phaenicophaeus pyrrhocephalus,Cuculiformes,Cuculidae (Cuckoos),, +3083,species,blfmal1,Blue-faced Malkoha,Phaenicophaeus viridirostris,Cuculiformes,Cuculidae (Cuckoos),, +3084,species,blbmal1,Black-bellied Malkoha,Phaenicophaeus diardi,Cuculiformes,Cuculidae (Cuckoos),, +3087,species,grbmal1,Green-billed Malkoha,Phaenicophaeus tristis,Cuculiformes,Cuculidae (Cuckoos),, +3094,species,yebmal1,Yellow-billed Malkoha,Rhamphococcyx calyorhynchus,Cuculiformes,Cuculidae (Cuckoos),, +3098,species,recmal1,Red-crested Malkoha,Dasylophus superciliosus,Cuculiformes,Cuculidae (Cuckoos),, +3101,species,scfmal1,Scale-feathered Malkoha,Dasylophus cumingi,Cuculiformes,Cuculidae (Cuckoos),, +3102,spuh,malkoh1,malkoha sp.,Cuculidae sp. (malkoha sp.),Cuculiformes,Cuculidae (Cuckoos),, +3103,species,chwcuc1,Chestnut-winged Cuckoo,Clamator coromandus,Cuculiformes,Cuculidae (Cuckoos),, +3104,species,grscuc1,Great Spotted Cuckoo,Clamator glandarius,Cuculiformes,Cuculidae (Cuckoos),, +3105,species,levcuc1,Levaillant's Cuckoo,Clamator levaillantii,Cuculiformes,Cuculidae (Cuckoos),, +3106,species,piecuc1,Pied Cuckoo,Clamator jacobinus,Cuculiformes,Cuculidae (Cuckoos),, +3110,species,litcuc2,Little Cuckoo,Coccycua minuta,Cuculiformes,Cuculidae (Cuckoos),, +3116,species,dwacuc1,Dwarf Cuckoo,Coccycua pumila,Cuculiformes,Cuculidae (Cuckoos),, +3117,species,asccuc1,Ash-colored Cuckoo,Coccycua cinerea,Cuculiformes,Cuculidae (Cuckoos),, +3118,species,squcuc1,Squirrel Cuckoo,Piaya cayana,Cuculiformes,Cuculidae (Cuckoos),, +3119,issf,squcuc2,Squirrel Cuckoo (West Mexico),Piaya cayana mexicana,Cuculiformes,Cuculidae (Cuckoos),,squcuc1 +3120,issf,squcuc3,Squirrel Cuckoo (Middle America),Piaya cayana thermophila,Cuculiformes,Cuculidae (Cuckoos),,squcuc1 +3121,issf,squcuc5,Squirrel Cuckoo (nigricrissa),Piaya cayana nigricrissa,Cuculiformes,Cuculidae (Cuckoos),,squcuc1 +3122,issf,squcuc4,Squirrel Cuckoo (Amazonian),Piaya cayana [cayana Group],Cuculiformes,Cuculidae (Cuckoos),,squcuc1 +3134,species,blbcuc1,Black-bellied Cuckoo,Piaya melanogaster,Cuculiformes,Cuculidae (Cuckoos),, +3135,slash,y00857,Squirrel/Black-bellied Cuckoo,Piaya cayana/melanogaster,Cuculiformes,Cuculidae (Cuckoos),, +3136,species,dabcuc1,Dark-billed Cuckoo,Coccyzus melacoryphus,Cuculiformes,Cuculidae (Cuckoos),, +3137,species,yebcuc,Yellow-billed Cuckoo,Coccyzus americanus,Cuculiformes,Cuculidae (Cuckoos),, +3138,species,pebcuc1,Pearly-breasted Cuckoo,Coccyzus euleri,Cuculiformes,Cuculidae (Cuckoos),, +3139,slash,y00958,Yellow-billed/Pearly-breasted Cuckoo,Coccyzus americanus/euleri,Cuculiformes,Cuculidae (Cuckoos),, +3140,species,mancuc,Mangrove Cuckoo,Coccyzus minor,Cuculiformes,Cuculidae (Cuckoos),, +3141,species,coccuc1,Cocos Cuckoo,Coccyzus ferrugineus,Cuculiformes,Cuculidae (Cuckoos),, +3142,species,bkbcuc,Black-billed Cuckoo,Coccyzus erythropthalmus,Cuculiformes,Cuculidae (Cuckoos),, +3143,slash,y00616,Yellow-billed/Black-billed Cuckoo,Coccyzus americanus/erythropthalmus,Cuculiformes,Cuculidae (Cuckoos),, +3144,species,gyccuc,Gray-capped Cuckoo,Coccyzus lansbergi,Cuculiformes,Cuculidae (Cuckoos),, +3145,species,chbcuc4,Chestnut-bellied Cuckoo,Coccyzus pluvialis,Cuculiformes,Cuculidae (Cuckoos),, +3146,species,babcuc4,Bay-breasted Cuckoo,Coccyzus rufigularis,Cuculiformes,Cuculidae (Cuckoos),, +3147,species,jamlic1,Jamaican Lizard-Cuckoo,Coccyzus vetula,Cuculiformes,Cuculidae (Cuckoos),, +3148,species,purlic1,Puerto Rican Lizard-Cuckoo,Coccyzus vieilloti,Cuculiformes,Cuculidae (Cuckoos),, +3149,species,grelic1,Great Lizard-Cuckoo,Coccyzus merlini,Cuculiformes,Cuculidae (Cuckoos),, +3150,issf,grelic2,Great Lizard-Cuckoo (Bahama),Coccyzus merlini bahamensis,Cuculiformes,Cuculidae (Cuckoos),,grelic1 +3151,issf,grelic3,Great Lizard-Cuckoo (Cuban),Coccyzus merlini [merlini Group],Cuculiformes,Cuculidae (Cuckoos),,grelic1 +3155,species,hislic1,Hispaniolan Lizard-Cuckoo,Coccyzus longirostris,Cuculiformes,Cuculidae (Cuckoos),, +3158,spuh,coccyz1,Coccyzus sp.,Coccyzus sp.,Cuculiformes,Cuculidae (Cuckoos),, +3159,species,sthcuc1,St. Helena Cuckoo,Nannococcyx psix,Cuculiformes,Cuculidae (Cuckoos),, +3160,species,thbcuc1,Thick-billed Cuckoo,Pachycoccyx audeberti,Cuculiformes,Cuculidae (Cuckoos),, +3161,issf,thbcuc2,Thick-billed Cuckoo (African),Pachycoccyx audeberti validus/brazzae,Cuculiformes,Cuculidae (Cuckoos),,thbcuc1 +3164,issf,thbcuc3,Thick-billed Cuckoo (Malagasy),Pachycoccyx audeberti audeberti,Cuculiformes,Cuculidae (Cuckoos),,thbcuc1 +3165,species,dwakoe1,Dwarf Koel,Microdynamis parva,Cuculiformes,Cuculidae (Cuckoos),, +3168,species,asikoe2,Asian Koel,Eudynamys scolopaceus,Cuculiformes,Cuculidae (Cuckoos),, +3174,species,bkbkoe1,Black-billed Koel,Eudynamys melanorhynchus,Cuculiformes,Cuculidae (Cuckoos),, +3177,species,asikoe3,Pacific Koel,Eudynamys orientalis,Cuculiformes,Cuculidae (Cuckoos),, +3178,issf,packoe1,Pacific Koel (Oriental),Eudynamys orientalis [orientalis Group],Cuculiformes,Cuculidae (Cuckoos),,asikoe3 +3184,issf,packoe2,Pacific Koel (Australian),Eudynamys orientalis cyanocephalus/subcyanocephalus,Cuculiformes,Cuculidae (Cuckoos),,asikoe3 +3187,species,lotkoe1,Long-tailed Koel,Urodynamis taitensis,Cuculiformes,Cuculidae (Cuckoos),, +3188,species,chbcuc2,Channel-billed Cuckoo,Scythrops novaehollandiae,Cuculiformes,Cuculidae (Cuckoos),, +3192,species,asecuc1,Asian Emerald Cuckoo,Chrysococcyx maculatus,Cuculiformes,Cuculidae (Cuckoos),, +3193,species,viocuc1,Violet Cuckoo,Chrysococcyx xanthorhynchus,Cuculiformes,Cuculidae (Cuckoos),, +3196,slash,y00855,Asian Emerald/Violet Cuckoo,Chrysococcyx maculatus/xanthorhynchus,Cuculiformes,Cuculidae (Cuckoos),, +3197,species,didcuc1,Dideric Cuckoo,Chrysococcyx caprius,Cuculiformes,Cuculidae (Cuckoos),, +3198,species,klacuc1,Klaas's Cuckoo,Chrysococcyx klaas,Cuculiformes,Cuculidae (Cuckoos),, +3199,slash,y00856,Dideric/Klaas's Cuckoo,Chrysococcyx caprius/klaas,Cuculiformes,Cuculidae (Cuckoos),, +3200,species,yetcuc1,Yellow-throated Cuckoo,Chrysococcyx flavigularis,Cuculiformes,Cuculidae (Cuckoos),, +3201,species,afecuc1,African Emerald Cuckoo,Chrysococcyx cupreus,Cuculiformes,Cuculidae (Cuckoos),, +3202,issf,afecuc2,African Emerald Cuckoo (African),Chrysococcyx cupreus cupreus,Cuculiformes,Cuculidae (Cuckoos),,afecuc1 +3203,issf,afecuc3,African Emerald Cuckoo (Bioko),Chrysococcyx cupreus intermedius,Cuculiformes,Cuculidae (Cuckoos),,afecuc1 +3204,issf,afecuc4,African Emerald Cuckoo (Insular),Chrysococcyx cupreus insularum,Cuculiformes,Cuculidae (Cuckoos),,afecuc1 +3205,species,lobcuc1,Long-billed Cuckoo,Chrysococcyx megarhynchus,Cuculiformes,Cuculidae (Cuckoos),, +3208,species,hobcuc1,Horsfield's Bronze-Cuckoo,Chrysococcyx basalis,Cuculiformes,Cuculidae (Cuckoos),, +3209,species,blecuc1,Black-eared Cuckoo,Chrysococcyx osculans,Cuculiformes,Cuculidae (Cuckoos),, +3210,species,rtbcuc1,Rufous-throated Bronze-Cuckoo,Chrysococcyx ruficollis,Cuculiformes,Cuculidae (Cuckoos),, +3211,species,shbcuc1,Shining Bronze-Cuckoo,Chrysococcyx lucidus,Cuculiformes,Cuculidae (Cuckoos),, +3212,issf,shibrc1,Shining Bronze-Cuckoo (Solomon Is.),Chrysococcyx lucidus harterti,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 +3213,issf,shibrc2,Shining Bronze-Cuckoo (New Caledonian),Chrysococcyx lucidus layardi,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 +3214,issf,shibrc3,Shining Bronze-Cuckoo (Shining),Chrysococcyx lucidus lucidus,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 +3215,issf,shibrc4,Shining Bronze-Cuckoo (Golden),Chrysococcyx lucidus plagosus,Cuculiformes,Cuculidae (Cuckoos),,shbcuc1 +3216,species,webcuc1,White-eared Bronze-Cuckoo,Chrysococcyx meyerii,Cuculiformes,Cuculidae (Cuckoos),, +3217,species,libcuc1,Little Bronze-Cuckoo,Chrysococcyx minutillus,Cuculiformes,Cuculidae (Cuckoos),, +3218,issf,litbrc1,Little Bronze-Cuckoo (Little),Chrysococcyx minutillus [minutillus Group],Cuculiformes,Cuculidae (Cuckoos),,libcuc1 +3224,issf,litbrc2,Little Bronze-Cuckoo (Gould's),Chrysococcyx minutillus [poecilurus Group],Cuculiformes,Cuculidae (Cuckoos),,libcuc1 +3230,issf,litbrc3,Little Bronze-Cuckoo (Banda),Chrysococcyx minutillus rufomerus/salvadorii,Cuculiformes,Cuculidae (Cuckoos),,libcuc1 +3233,issf,litbrc5,Little Bronze-Cuckoo (Pied),Chrysococcyx minutillus crassirostris,Cuculiformes,Cuculidae (Cuckoos),,libcuc1 +3234,slash,y00854,Shining/Little Bronze-Cuckoo,Chrysococcyx lucidus/minutillus,Cuculiformes,Cuculidae (Cuckoos),, +3235,spuh,bronze1,bronze-cuckoo sp.,Chrysococcyx sp. (bronze-cuckoo sp.),Cuculiformes,Cuculidae (Cuckoos),, +3236,spuh,chryso1,Chrysococcyx sp.,Chrysococcyx sp.,Cuculiformes,Cuculidae (Cuckoos),, +3237,species,palcuc1,Pallid Cuckoo,Cacomantis pallidus,Cuculiformes,Cuculidae (Cuckoos),, +3238,species,whckoe1,White-crowned Koel,Cacomantis leucolophus,Cuculiformes,Cuculidae (Cuckoos),, +3239,species,chbcuc3,Chestnut-breasted Cuckoo,Cacomantis castaneiventris,Cuculiformes,Cuculidae (Cuckoos),, +3243,species,fatcuc1,Fan-tailed Cuckoo,Cacomantis flabelliformis,Cuculiformes,Cuculidae (Cuckoos),, +3249,species,babcuc2,Banded Bay Cuckoo,Cacomantis sonneratii,Cuculiformes,Cuculidae (Cuckoos),, +3255,species,placuc1,Plaintive Cuckoo,Cacomantis merulinus,Cuculiformes,Cuculidae (Cuckoos),, +3260,species,placuc3,Gray-bellied Cuckoo,Cacomantis passerinus,Cuculiformes,Cuculidae (Cuckoos),, +3261,slash,y00783,Plaintive/Gray-bellied Cuckoo,Cacomantis merulinus/passerinus,Cuculiformes,Cuculidae (Cuckoos),, +3262,species,molcuc1,Moluccan Cuckoo,Cacomantis aeruginosus,Cuculiformes,Cuculidae (Cuckoos),, +3265,species,brucuc1,Brush Cuckoo,Cacomantis variolosus,Cuculiformes,Cuculidae (Cuckoos),, +3266,issf,brucuc2,Brush Cuckoo (Rusty-breasted),Cacomantis variolosus [sepulcralis Group],Cuculiformes,Cuculidae (Cuckoos),,brucuc1 +3270,issf,brucuc3,Brush Cuckoo (Brush),Cacomantis variolosus [variolosus Group],Cuculiformes,Cuculidae (Cuckoos),,brucuc1 +3279,spuh,cacoma1,Cacomantis sp.,Cacomantis sp.,Cuculiformes,Cuculidae (Cuckoos),, +3280,species,dltcuc1,Dusky Long-tailed Cuckoo,Cercococcyx mechowi,Cuculiformes,Cuculidae (Cuckoos),, +3281,species,oltcuc1,Olive Long-tailed Cuckoo,Cercococcyx olivinus,Cuculiformes,Cuculidae (Cuckoos),, +3282,species,bltcuc1,Barred Long-tailed Cuckoo,Cercococcyx montanus,Cuculiformes,Cuculidae (Cuckoos),, +3283,issf,bltcuc2,Barred Long-tailed Cuckoo (Njobo's),Cercococcyx montanus montanus,Cuculiformes,Cuculidae (Cuckoos),,bltcuc1 +3284,issf,bltcuc3,Barred Long-tailed Cuckoo (Eastern),Cercococcyx montanus patulus,Cuculiformes,Cuculidae (Cuckoos),,bltcuc1 +3285,spuh,cercoc1,Cercococcyx sp.,Cercococcyx sp.,Cuculiformes,Cuculidae (Cuckoos),, +3286,species,asidrc2,Fork-tailed Drongo-Cuckoo,Surniculus dicruroides,Cuculiformes,Cuculidae (Cuckoos),, +3289,species,phidrc1,Philippine Drongo-Cuckoo,Surniculus velutinus,Cuculiformes,Cuculidae (Cuckoos),, +3293,species,asidrc3,Square-tailed Drongo-Cuckoo,Surniculus lugubris,Cuculiformes,Cuculidae (Cuckoos),, +3297,slash,y00784,Fork-tailed/Square-tailed Drongo-Cuckoo,Surniculus dicruroides/lugubris,Cuculiformes,Cuculidae (Cuckoos),, +3298,species,asidrc4,Moluccan Drongo-Cuckoo,Surniculus musschenbroeki,Cuculiformes,Cuculidae (Cuckoos),, +3299,species,mohcuc1,Moustached Hawk-Cuckoo,Hierococcyx vagans,Cuculiformes,Cuculidae (Cuckoos),, +3300,species,larhac2,Large Hawk-Cuckoo,Hierococcyx sparverioides,Cuculiformes,Cuculidae (Cuckoos),, +3301,species,larhac1,Dark Hawk-Cuckoo,Hierococcyx bocki,Cuculiformes,Cuculidae (Cuckoos),, +3302,slash,lahcuc1,Large/Dark Hawk-Cuckoo,Hierococcyx sparverioides/bocki,Cuculiformes,Cuculidae (Cuckoos),, +3303,species,cohcuc1,Common Hawk-Cuckoo,Hierococcyx varius,Cuculiformes,Cuculidae (Cuckoos),, +3306,slash,y01091,Large/Common Hawk-Cuckoo,Hierococcyx sparverioides/varius,Cuculiformes,Cuculidae (Cuckoos),, +3307,species,nohcuc1,Northern Hawk-Cuckoo,Hierococcyx hyperythrus,Cuculiformes,Cuculidae (Cuckoos),, +3308,species,phhcuc1,Philippine Hawk-Cuckoo,Hierococcyx pectoralis,Cuculiformes,Cuculidae (Cuckoos),, +3309,species,hodhac1,Hodgson's Hawk-Cuckoo,Hierococcyx nisicolor,Cuculiformes,Cuculidae (Cuckoos),, +3310,species,malhac1,Malaysian Hawk-Cuckoo,Hierococcyx fugax,Cuculiformes,Cuculidae (Cuckoos),, +3311,spuh,hawk-c1,hawk-cuckoo sp.,Hierococcyx sp.,Cuculiformes,Cuculidae (Cuckoos),, +3312,species,blacuc1,Black Cuckoo,Cuculus clamosus,Cuculiformes,Cuculidae (Cuckoos),, +3313,issf,blkcuc1,Black Cuckoo (Rufous-throated),Cuculus clamosus gabonensis,Cuculiformes,Cuculidae (Cuckoos),,blacuc1 +3314,issf,blkcuc2,Black Cuckoo (Black),Cuculus clamosus clamosus,Cuculiformes,Cuculidae (Cuckoos),,blacuc1 +3315,species,reccuc1,Red-chested Cuckoo,Cuculus solitarius,Cuculiformes,Cuculidae (Cuckoos),, +3316,species,lescuc1,Lesser Cuckoo,Cuculus poliocephalus,Cuculiformes,Cuculidae (Cuckoos),, +3317,species,suhcuc1,Sulawesi Cuckoo,Cuculus crassirostris,Cuculiformes,Cuculidae (Cuckoos),, +3318,species,indcuc1,Indian Cuckoo,Cuculus micropterus,Cuculiformes,Cuculidae (Cuckoos),, +3321,slash,y01093,Lesser/Indian Cuckoo,Cuculus poliocephalus/micropterus,Cuculiformes,Cuculidae (Cuckoos),, +3322,species,afrcuc1,African Cuckoo,Cuculus gularis,Cuculiformes,Cuculidae (Cuckoos),, +3323,species,madcuc1,Madagascar Cuckoo,Cuculus rochii,Cuculiformes,Cuculidae (Cuckoos),, +3324,species,himcuc1,Himalayan Cuckoo,Cuculus saturatus,Cuculiformes,Cuculidae (Cuckoos),, +3325,species,suncuc2,Sunda Cuckoo,Cuculus lepidus,Cuculiformes,Cuculidae (Cuckoos),, +3326,species,comcuc,Common Cuckoo,Cuculus canorus,Cuculiformes,Cuculidae (Cuckoos),, +3331,slash,y00853,African/Common Cuckoo,Cuculus gularis/canorus,Cuculiformes,Cuculidae (Cuckoos),, +3332,species,oricuc2,Oriental Cuckoo,Cuculus optatus,Cuculiformes,Cuculidae (Cuckoos),, +3333,slash,y01094,Lesser/Oriental Cuckoo,Cuculus poliocephalus/optatus,Cuculiformes,Cuculidae (Cuckoos),, +3334,slash,y00730,Himalayan/Oriental Cuckoo,Cuculus saturatus/optatus,Cuculiformes,Cuculidae (Cuckoos),, +3335,slash,y00729,Common/Oriental Cuckoo,Cuculus canorus/optatus,Cuculiformes,Cuculidae (Cuckoos),, +3336,spuh,cuculu1,Cuculus sp.,Cuculus sp.,Cuculiformes,Cuculidae (Cuckoos),, +3337,spuh,cuckoo3,cuckoo sp. (Cuculidae sp.),Cuculidae sp.,Cuculiformes,Cuculidae (Cuckoos),, +3338,species,tawfro1,Tawny Frogmouth,Podargus strigoides,Caprimulgiformes,Podargidae (Frogmouths),Frogmouths, +3342,species,marfro1,Marbled Frogmouth,Podargus ocellatus,Caprimulgiformes,Podargidae (Frogmouths),, +3343,issf,marfro2,Marbled Frogmouth (Marbled),Podargus ocellatus [ocellatus Group],Caprimulgiformes,Podargidae (Frogmouths),,marfro1 +3348,issf,marfro3,Marbled Frogmouth (Plumed),Podargus ocellatus plumiferus,Caprimulgiformes,Podargidae (Frogmouths),,marfro1 +3349,species,papfro1,Papuan Frogmouth,Podargus papuensis,Caprimulgiformes,Podargidae (Frogmouths),, +3350,species,soifro1,Solomons Frogmouth,Rigidipenna inexpectata,Caprimulgiformes,Podargidae (Frogmouths),, +3351,species,larfro1,Large Frogmouth,Batrachostomus auritus,Caprimulgiformes,Podargidae (Frogmouths),, +3352,species,dulfro1,Dulit Frogmouth,Batrachostomus harterti,Caprimulgiformes,Podargidae (Frogmouths),, +3353,species,phifro1,Philippine Frogmouth,Batrachostomus septimus,Caprimulgiformes,Podargidae (Frogmouths),, +3357,species,goufro1,Gould's Frogmouth,Batrachostomus stellatus,Caprimulgiformes,Podargidae (Frogmouths),, +3358,species,ceyfro1,Sri Lanka Frogmouth,Batrachostomus moniliger,Caprimulgiformes,Podargidae (Frogmouths),, +3359,species,hodfro1,Hodgson's Frogmouth,Batrachostomus hodgsoni,Caprimulgiformes,Podargidae (Frogmouths),, +3360,species,shtfro3,Sumatran Frogmouth,Batrachostomus poliolophus,Caprimulgiformes,Podargidae (Frogmouths),, +3361,species,shtfro2,Bornean Frogmouth,Batrachostomus mixtus,Caprimulgiformes,Podargidae (Frogmouths),, +3362,species,javfro3,Javan Frogmouth,Batrachostomus javensis,Caprimulgiformes,Podargidae (Frogmouths),, +3363,species,javfro2,Blyth's Frogmouth,Batrachostomus affinis,Caprimulgiformes,Podargidae (Frogmouths),, +3364,issf,blyfro1,Blyth's Frogmouth (Indochinese),Batrachostomus affinis continentalis,Caprimulgiformes,Podargidae (Frogmouths),,javfro2 +3365,issf,blyfro2,Blyth's Frogmouth (Blyth's),Batrachostomus affinis affinis,Caprimulgiformes,Podargidae (Frogmouths),,javfro2 +3366,species,palfro1,Palawan Frogmouth,Batrachostomus chaseni,Caprimulgiformes,Podargidae (Frogmouths),, +3367,species,sunfro1,Sunda Frogmouth,Batrachostomus cornutus,Caprimulgiformes,Podargidae (Frogmouths),, +3370,spuh,batrac1,Batrachostomus sp.,Batrachostomus sp.,Caprimulgiformes,Podargidae (Frogmouths),, +3371,spuh,frogmo1,frogmouth sp.,Podargidae sp.,Caprimulgiformes,Podargidae (Frogmouths),, +3372,species,sponig1,Spotted Nightjar,Eurostopodus argus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),Nightjars, +3373,species,solnig1,Solomons Nightjar,Eurostopodus nigripennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3374,species,necnig2,New Caledonian Nightjar,Eurostopodus exul,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3375,species,whtnig3,White-throated Nightjar,Eurostopodus mystacalis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3376,species,dianig1,Diabolical Nightjar,Eurostopodus diabolicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3377,species,papnig1,Papuan Nightjar,Eurostopodus papuensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3378,species,arcnig1,Archbold's Nightjar,Eurostopodus archboldi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3379,species,malnig1,Malaysian Eared-Nightjar,Lyncornis temminckii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3380,species,grenig1,Great Eared-Nightjar,Lyncornis macrotis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3386,species,colnig1,Collared Nightjar,Gactornis enarratus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3387,species,nacnig1,Nacunda Nighthawk,Chordeiles nacunda,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3390,species,leanig1,Least Nighthawk,Chordeiles pusillus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3397,species,sacnig1,Sand-colored Nighthawk,Chordeiles rupestris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3400,species,lesnig,Lesser Nighthawk,Chordeiles acutipennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3408,species,comnig,Common Nighthawk,Chordeiles minor,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3418,species,antnig,Antillean Nighthawk,Chordeiles gundlachii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3421,spuh,nighth1,nighthawk sp.,Chordeiles sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3422,species,shtnig1,Short-tailed Nighthawk,Lurocalis semitorquatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3423,issf,shtnig2,Short-tailed Nighthawk (Short-tailed),Lurocalis semitorquatus [semitorquatus Group],Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,shtnig1 +3428,issf,shtnig3,Short-tailed Nighthawk (nattereri),Lurocalis semitorquatus nattereri,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,shtnig1 +3429,species,rubnig1,Rufous-bellied Nighthawk,Lurocalis rufiventris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3430,species,batnig1,Band-tailed Nighthawk,Nyctiprogne leucopyga,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3431,issf,batnig3,Band-tailed Nighthawk (Band-tailed),Nyctiprogne leucopyga [leucopyga Group],Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,batnig1 +3436,issf,batnig4,Band-tailed Nighthawk (latifascia),Nyctiprogne leucopyga latifascia,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,batnig1 +3437,species,bahnig1,Bahian Nighthawk,Nyctiprogne vielliardi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3438,species,blanig1,Blackish Nightjar,Nyctipolus nigrescens,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3439,species,pygnig1,Pygmy Nightjar,Nyctipolus hirundinaceus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3443,species,bawnig1,Band-winged Nightjar,Systellura longirostris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3444,issf,bawnig5,Band-winged Nightjar (Tepui),Systellura longirostris roraimae,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 +3445,issf,bawnig6,Band-winged Nightjar (Rufous-naped),Systellura longirostris ruficervix,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 +3446,issf,bawnig7,Band-winged Nightjar (atripunctata),Systellura longirostris atripunctata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 +3447,issf,bawnig8,Band-winged Nightjar (Austral),Systellura longirostris bifasciata/patagonica,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 +3450,issf,bawnig9,Band-winged Nightjar (longirostris),Systellura longirostris longirostris,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 +3451,issf,bawnig4,Band-winged Nightjar (Mocha),Systellura longirostris mochaensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,bawnig1 +3452,species,bawnig3,Tschudi's Nightjar,Systellura decussata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3453,species,compau,Common Pauraque,Nyctidromus albicollis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3461,species,scrnig1,Scrub Nightjar,Nyctidromus anthonyi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3462,species,whwnig1,White-winged Nightjar,Eleothreptus candicans,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3463,species,siwnig1,Sickle-winged Nightjar,Eleothreptus anomalus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3464,species,swtnig1,Swallow-tailed Nightjar,Uropsalis segmentata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3467,species,lytnig1,Lyre-tailed Nightjar,Uropsalis lyra,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3471,species,samnig1,Todd's Nightjar,Setopagis heterura,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3472,species,litnig1,Little Nightjar,Setopagis parvula,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3473,species,rornig1,Roraiman Nightjar,Setopagis whitelyi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3474,species,caynig1,Cayenne Nightjar,Setopagis maculosa,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3475,species,whtnig1,White-tailed Nightjar,Hydropsalis cayennensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3482,species,sptnig1,Spot-tailed Nightjar,Hydropsalis maculicaudus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3483,species,latnig1,Ladder-tailed Nightjar,Hydropsalis climacocerca,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3489,species,sctnig2,Scissor-tailed Nightjar,Hydropsalis torquata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3492,spuh,hydrop1,Hydropsalis sp.,Hydropsalis sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3493,species,lotnig2,Long-trained Nightjar,Macropsalis forcipata,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3494,species,jampau,Jamaican Pauraque,Siphonorhis americana,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3495,species,leapau1,Least Pauraque,Siphonorhis brewsteri,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3496,species,earpoo1,Eared Poorwill,Nyctiphrynus mcleodii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3499,species,yucpoo1,Yucatan Poorwill,Nyctiphrynus yucatanicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3500,species,ocepoo1,Ocellated Poorwill,Nyctiphrynus ocellatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3503,species,chopoo1,Choco Poorwill,Nyctiphrynus rosenbergi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3504,species,compoo,Common Poorwill,Phalaenoptilus nuttallii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3510,species,chwwid,Chuck-will's-widow,Antrostomus carolinensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3511,species,rufnig1,Rufous Nightjar,Antrostomus rufus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3512,issf,rufnig2,Rufous Nightjar (South American),Antrostomus rufus [rufus Group],Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,rufnig1 +3516,issf,rufnig4,Rufous Nightjar (St. Lucia),Antrostomus rufus otiosus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,rufnig1 +3517,issf,rufnig3,Rufous Nightjar (Northern),Antrostomus rufus minimus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,rufnig1 +3518,species,granig1,Greater Antillean Nightjar,Antrostomus cubanensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3519,issf,granig2,Greater Antillean Nightjar (Cuban),Antrostomus cubanensis cubanensis/insulaepinorum,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,granig1 +3522,issf,granig3,Greater Antillean Nightjar (Hispaniolan),Antrostomus cubanensis ekmani,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,granig1 +3523,species,tacnig1,Tawny-collared Nightjar,Antrostomus salvini,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3524,species,yucnig1,Yucatan Nightjar,Antrostomus badius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3525,species,sitnig1,Silky-tailed Nightjar,Antrostomus sericocaudatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3528,species,bucnig,Buff-collared Nightjar,Antrostomus ridgwayi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3531,species,whip-p1,Eastern Whip-poor-will,Antrostomus vociferus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3532,species,dusnig1,Dusky Nightjar,Antrostomus saturatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3533,species,souwpw1,Mexican Whip-poor-will,Antrostomus arizonae,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3539,slash,whpwil,Eastern/Mexican Whip-poor-will,Antrostomus vociferus/arizonae,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3540,species,purnig1,Puerto Rican Nightjar,Antrostomus noctitherus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3541,spuh,antros1,Antrostomus sp.,Antrostomus sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3542,species,pewnig1,Pennant-winged Nightjar,Caprimulgus vexillarius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3543,species,stwnig1,Standard-winged Nightjar,Caprimulgus longipennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3544,species,bronig1,Brown Nightjar,Caprimulgus binotatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3545,species,rennig1,Red-necked Nightjar,Caprimulgus ruficollis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3548,species,grynig2,Jungle Nightjar,Caprimulgus indicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3551,species,grynig1,Gray Nightjar,Caprimulgus jotaka,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3554,slash,granig,Jungle/Gray Nightjar,Caprimulgus indicus/jotaka,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3555,species,palnig1,Palau Nightjar,Caprimulgus phalaena,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3556,species,eurnig1,Eurasian Nightjar,Caprimulgus europaeus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3563,slash,y00677,Red-necked/Eurasian Nightjar,Caprimulgus ruficollis/europaeus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3564,species,somnig1,Sombre Nightjar,Caprimulgus fraenatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3565,species,rucnig1,Rufous-cheeked Nightjar,Caprimulgus rufigena,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3568,species,egynig1,Egyptian Nightjar,Caprimulgus aegyptius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3571,species,nubnig1,Nubian Nightjar,Caprimulgus nubicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3572,issf,nubnig2,Nubian Nightjar (Nubian),Caprimulgus nubicus nubicus/tamaricis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,nubnig1 +3575,issf,nubnig3,Nubian Nightjar (Torrid),Caprimulgus nubicus torridus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,nubnig1 +3576,issf,nubnig4,Nubian Nightjar (Socotra),Caprimulgus nubicus jonesi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),,nubnig1 +3577,species,syknig1,Sykes's Nightjar,Caprimulgus mahrattensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3578,species,vaunig1,Vaurie's Nightjar,Caprimulgus centralasicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3579,species,golnig1,Golden Nightjar,Caprimulgus eximius,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3582,species,latnig2,Large-tailed Nightjar,Caprimulgus macrurus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3589,form,timnig1,Timor Nightjar (undescribed form),Caprimulgus [undescribed Timor form],Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3590,species,andnig1,Andaman Nightjar,Caprimulgus andamanicus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3591,species,meenig1,Mees's Nightjar,Caprimulgus meesi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3592,species,jernig1,Jerdon's Nightjar,Caprimulgus atripennis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3595,species,phinig1,Philippine Nightjar,Caprimulgus manillensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3596,species,sulnig1,Sulawesi Nightjar,Caprimulgus celebensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3599,species,dosnig1,Donaldson-Smith's Nightjar,Caprimulgus donaldsoni,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3600,species,bksnig1,Black-shouldered Nightjar,Caprimulgus nigriscapularis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3601,species,finnig1,Fiery-necked Nightjar,Caprimulgus pectoralis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3606,species,abynig1,Abyssinian Nightjar,Caprimulgus poliocephalus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3607,species,monnig2,Rwenzori Nightjar,Caprimulgus ruwenzorii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3610,species,indnig1,Indian Nightjar,Caprimulgus asiaticus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3614,species,madnig1,Madagascar Nightjar,Caprimulgus madagascariensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3617,species,swanig1,Swamp Nightjar,Caprimulgus natalensis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3620,species,planig1,Plain Nightjar,Caprimulgus inornatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3621,species,stsnig1,Star-spotted Nightjar,Caprimulgus stellatus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3622,species,necnig1,Nechisar Nightjar,Caprimulgus solala,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3623,species,savnig1,Savanna Nightjar,Caprimulgus affinis,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3634,species,frenig1,Freckled Nightjar,Caprimulgus tristigma,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3640,species,bonnig1,Bonaparte's Nightjar,Caprimulgus concretus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3641,species,salnig1,Salvadori's Nightjar,Caprimulgus pulchellus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3644,species,itonig1,Itombwe Nightjar,Caprimulgus prigoginei,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3645,species,batnig2,Bates's Nightjar,Caprimulgus batesi,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3646,species,lotnig1,Long-tailed Nightjar,Caprimulgus climacurus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3650,species,sltnig1,Slender-tailed Nightjar,Caprimulgus clarus,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3651,species,sqtnig1,Square-tailed Nightjar,Caprimulgus fossii,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3655,spuh,caprim1,Caprimulgus sp.,Caprimulgus sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3656,spuh,nightj1,nightjar sp.,Caprimulgidae sp.,Caprimulgiformes,Caprimulgidae (Nightjars and Allies),, +3657,species,grepot1,Great Potoo,Nyctibius grandis,Caprimulgiformes,Nyctibiidae (Potoos),Potoos and Oilbird, +3658,species,lotpot1,Long-tailed Potoo,Nyctibius aethereus,Caprimulgiformes,Nyctibiidae (Potoos),, +3662,species,compot1,Common Potoo,Nyctibius griseus,Caprimulgiformes,Nyctibiidae (Potoos),, +3665,species,norpot1,Northern Potoo,Nyctibius jamaicensis,Caprimulgiformes,Nyctibiidae (Potoos),, +3666,issf,norpot2,Northern Potoo (Middle American),Nyctibius jamaicensis [mexicanus Group],Caprimulgiformes,Nyctibiidae (Potoos),,norpot1 +3670,issf,norpot3,Northern Potoo (Caribbean),Nyctibius jamaicensis jamaicensis/abbotti,Caprimulgiformes,Nyctibiidae (Potoos),,norpot1 +3673,species,andpot1,Andean Potoo,Nyctibius maculosus,Caprimulgiformes,Nyctibiidae (Potoos),, +3674,species,whwpot1,White-winged Potoo,Nyctibius leucopterus,Caprimulgiformes,Nyctibiidae (Potoos),, +3675,species,rufpot1,Rufous Potoo,Nyctibius bracteatus,Caprimulgiformes,Nyctibiidae (Potoos),, +3676,spuh,potoo1,potoo sp.,Nyctibius sp.,Caprimulgiformes,Nyctibiidae (Potoos),, +3677,species,oilbir1,Oilbird,Steatornis caripensis,Caprimulgiformes,Steatornithidae (Oilbird),, +3678,species,nconig1,New Caledonian Owlet-nightjar,Aegotheles savesi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),Owlet-nightjars, +3679,species,feonig1,Feline Owlet-nightjar,Aegotheles insignis,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3680,species,spaown1,Starry Owlet-nightjar,Aegotheles tatei,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3681,species,waonig1,Wallace's Owlet-nightjar,Aegotheles wallacii,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3685,species,aronig1,Archbold's Owlet-nightjar,Aegotheles archboldi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3686,species,moonig1,Mountain Owlet-nightjar,Aegotheles albertisi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3690,species,molown1,Moluccan Owlet-nightjar,Aegotheles crinifrons,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3691,species,auonig1,Australian Owlet-nightjar,Aegotheles cristatus,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3694,species,barown2,Vogelkop Owlet-nightjar,Aegotheles affinis,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3695,species,barown1,Barred Owlet-nightjar,Aegotheles bennettii,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3696,issf,barown3,Barred Owlet-nightjar (Barred),Aegotheles bennettii bennettii/wiedenfeldi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),,barown1 +3699,issf,barown5,Barred Owlet-nightjar (Diamond's),Aegotheles bennettii terborghi,Caprimulgiformes,Aegothelidae (Owlet-nightjars),,barown1 +3700,issf,barown4,Barred Owlet-nightjar (Dwarf),Aegotheles bennettii plumifer,Caprimulgiformes,Aegothelidae (Owlet-nightjars),,barown1 +3701,spuh,owlet-1,owlet-nightjar sp.,Aegotheles sp.,Caprimulgiformes,Aegothelidae (Owlet-nightjars),, +3702,species,blkswi,Black Swift,Cypseloides niger,Caprimulgiformes,Apodidae (Swifts),Swifts, +3703,issf,blkswi1,Black Swift (borealis),Cypseloides niger borealis,Caprimulgiformes,Apodidae (Swifts),,blkswi +3704,issf,blkswi2,Black Swift (costaricensis),Cypseloides niger costaricensis,Caprimulgiformes,Apodidae (Swifts),,blkswi +3705,issf,blkswi3,Black Swift (niger),Cypseloides niger niger,Caprimulgiformes,Apodidae (Swifts),,blkswi +3706,species,whcswi2,White-chested Swift,Cypseloides lemosi,Caprimulgiformes,Apodidae (Swifts),, +3707,species,rotswi1,Rothschild's Swift,Cypseloides rothschildi,Caprimulgiformes,Apodidae (Swifts),, +3708,species,sooswi1,Sooty Swift,Cypseloides fumigatus,Caprimulgiformes,Apodidae (Swifts),, +3709,species,whfswi1,White-fronted Swift,Cypseloides storeri,Caprimulgiformes,Apodidae (Swifts),, +3710,species,whcswi1,White-chinned Swift,Cypseloides cryptus,Caprimulgiformes,Apodidae (Swifts),, +3711,species,spfswi1,Spot-fronted Swift,Cypseloides cherriei,Caprimulgiformes,Apodidae (Swifts),, +3712,species,grdswi1,Great Dusky Swift,Cypseloides senex,Caprimulgiformes,Apodidae (Swifts),, +3713,spuh,cypsel1,Cypseloides sp.,Cypseloides sp.,Caprimulgiformes,Apodidae (Swifts),, +3714,species,chcswi1,Chestnut-collared Swift,Streptoprocne rutila,Caprimulgiformes,Apodidae (Swifts),, +3718,species,tepswi1,Tepui Swift,Streptoprocne phelpsi,Caprimulgiformes,Apodidae (Swifts),, +3719,species,whcswi,White-collared Swift,Streptoprocne zonaris,Caprimulgiformes,Apodidae (Swifts),, +3729,species,whnswi1,White-naped Swift,Streptoprocne semicollaris,Caprimulgiformes,Apodidae (Swifts),, +3730,species,bisswi1,Biscutate Swift,Streptoprocne biscutata,Caprimulgiformes,Apodidae (Swifts),, +3733,spuh,strept2,Streptoprocne sp.,Streptoprocne sp.,Caprimulgiformes,Apodidae (Swifts),, +3734,species,phinee1,Philippine Spinetailed Swift,Mearnsia picina,Caprimulgiformes,Apodidae (Swifts),, +3735,species,papnee1,Papuan Spinetailed Swift,Mearnsia novaeguineae,Caprimulgiformes,Apodidae (Swifts),, +3738,species,malspi1,Malagasy Spinetail,Zoonavena grandidieri,Caprimulgiformes,Apodidae (Swifts),, +3741,species,satspi1,Sao Tome Spinetail,Zoonavena thomensis,Caprimulgiformes,Apodidae (Swifts),, +3742,species,whrnee1,White-rumped Needletail,Zoonavena sylvatica,Caprimulgiformes,Apodidae (Swifts),, +3743,species,motspi1,Mottled Spinetail,Telacanthura ussheri,Caprimulgiformes,Apodidae (Swifts),, +3748,species,blaspi1,Black Spinetail,Telacanthura melanopygia,Caprimulgiformes,Apodidae (Swifts),, +3749,species,sirnee1,Silver-rumped Needletail,Rhaphidura leucopygialis,Caprimulgiformes,Apodidae (Swifts),, +3750,species,sabspi1,Sabine's Spinetail,Rhaphidura sabini,Caprimulgiformes,Apodidae (Swifts),, +3751,species,casspi1,Cassin's Spinetail,Neafrapus cassini,Caprimulgiformes,Apodidae (Swifts),, +3752,species,balspi1,Bat-like Spinetail,Neafrapus boehmi,Caprimulgiformes,Apodidae (Swifts),, +3755,species,chiswi,Chimney Swift,Chaetura pelagica,Caprimulgiformes,Apodidae (Swifts),, +3756,species,vauswi,Vaux's Swift,Chaetura vauxi,Caprimulgiformes,Apodidae (Swifts),, +3757,issf,vauswi1,Vaux's Swift (Vaux's),Chaetura vauxi vauxi,Caprimulgiformes,Apodidae (Swifts),,vauswi +3758,issf,vauswi2,Vaux's Swift (Yucatan),Chaetura vauxi gaumeri,Caprimulgiformes,Apodidae (Swifts),,vauswi +3759,issf,vauswi3,Vaux's Swift (Richmond's),Chaetura vauxi [richmondi Group],Caprimulgiformes,Apodidae (Swifts),,vauswi +3763,issf,vauswi4,Vaux's Swift (aphanes),Chaetura vauxi aphanes,Caprimulgiformes,Apodidae (Swifts),,vauswi +3764,issf,astswi1,Vaux's Swift (Ashy-tailed),Chaetura vauxi andrei,Caprimulgiformes,Apodidae (Swifts),,vauswi +3765,slash,y00321,Chimney/Vaux's Swift,Chaetura pelagica/vauxi,Caprimulgiformes,Apodidae (Swifts),, +3766,species,chaswi1,Chapman's Swift,Chaetura chapmani,Caprimulgiformes,Apodidae (Swifts),, +3767,species,amaswi1,Amazonian Swift,Chaetura viridipennis,Caprimulgiformes,Apodidae (Swifts),, +3768,species,sicswi1,Sick's Swift,Chaetura meridionalis,Caprimulgiformes,Apodidae (Swifts),, +3769,species,shtswi1,Short-tailed Swift,Chaetura brachyura,Caprimulgiformes,Apodidae (Swifts),, +3770,issf,shtswi2,Short-tailed Swift (Short-tailed),Chaetura brachyura [brachyura Group],Caprimulgiformes,Apodidae (Swifts),,shtswi1 +3774,issf,shtswi3,Short-tailed Swift (Tumbes),Chaetura brachyura ocypetes,Caprimulgiformes,Apodidae (Swifts),,shtswi1 +3775,species,barswi,Band-rumped Swift,Chaetura spinicaudus,Caprimulgiformes,Apodidae (Swifts),, +3776,issf,barswi1,Band-rumped Swift (aetherodroma),Chaetura spinicaudus aetherodroma,Caprimulgiformes,Apodidae (Swifts),,barswi +3777,issf,barswi2,Band-rumped Swift (spinicaudus/latirostris),Chaetura spinicaudus spinicaudus/latirostris,Caprimulgiformes,Apodidae (Swifts),,barswi +3780,issf,barswi3,Band-rumped Swift (aethalea),Chaetura spinicaudus aethalea,Caprimulgiformes,Apodidae (Swifts),,barswi +3781,species,corswi,Costa Rican Swift,Chaetura fumosa,Caprimulgiformes,Apodidae (Swifts),, +3782,species,grrswi1,Gray-rumped Swift,Chaetura cinereiventris,Caprimulgiformes,Apodidae (Swifts),, +3783,issf,gyrswi3,Gray-rumped Swift (phaeopygos),Chaetura cinereiventris phaeopygos,Caprimulgiformes,Apodidae (Swifts),,grrswi1 +3784,issf,gyrswi4,Gray-rumped Swift (occidentalis),Chaetura cinereiventris occidentalis,Caprimulgiformes,Apodidae (Swifts),,grrswi1 +3785,issf,gyrswi1,Gray-rumped Swift (Ash-rumped),Chaetura cinereiventris [sclateri Group],Caprimulgiformes,Apodidae (Swifts),,grrswi1 +3790,issf,gyrswi2,Gray-rumped Swift (Gray-rumped),Chaetura cinereiventris cinereiventris,Caprimulgiformes,Apodidae (Swifts),,grrswi1 +3791,species,parswi1,Pale-rumped Swift,Chaetura egregia,Caprimulgiformes,Apodidae (Swifts),, +3792,species,leaswi1,Lesser Antillean Swift,Chaetura martinica,Caprimulgiformes,Apodidae (Swifts),, +3793,spuh,chaetu,Chaetura sp.,Chaetura sp.,Caprimulgiformes,Apodidae (Swifts),, +3794,species,whtnee,White-throated Needletail,Hirundapus caudacutus,Caprimulgiformes,Apodidae (Swifts),, +3797,species,sibnee1,Silver-backed Needletail,Hirundapus cochinchinensis,Caprimulgiformes,Apodidae (Swifts),, +3801,species,brbnee1,Brown-backed Needletail,Hirundapus giganteus,Caprimulgiformes,Apodidae (Swifts),, +3804,species,purnee1,Purple Needletail,Hirundapus celebensis,Caprimulgiformes,Apodidae (Swifts),, +3805,spuh,hirund1,Hirundapus sp.,Hirundapus sp.,Caprimulgiformes,Apodidae (Swifts),, +3806,species,watswi1,Waterfall Swift,Hydrochous gigas,Caprimulgiformes,Apodidae (Swifts),, +3807,species,pygswi2,Pygmy Swiftlet,Collocalia troglodytes,Caprimulgiformes,Apodidae (Swifts),, +3808,species,cavswi3,Bornean Swiftlet,Collocalia dodgei,Caprimulgiformes,Apodidae (Swifts),, +3809,species,chiswi1,Christmas Island Swiftlet,Collocalia natalis,Caprimulgiformes,Apodidae (Swifts),, +3810,species,cavswi2,Cave Swiftlet,Collocalia linchi,Caprimulgiformes,Apodidae (Swifts),, +3814,species,pltswi1,Plume-toed Swiftlet,Collocalia affinis,Caprimulgiformes,Apodidae (Swifts),, +3820,species,gyrswi5,Gray-rumped Swiftlet,Collocalia marginata,Caprimulgiformes,Apodidae (Swifts),, +3823,species,ridswi1,Ridgetop Swiftlet,Collocalia isonota,Caprimulgiformes,Apodidae (Swifts),, +3826,slash,y01084,Gray-rumped/Ridgetop Swiftlet,Collocalia marginata/isonota,Caprimulgiformes,Apodidae (Swifts),, +3827,species,tenswi1,Tenggara Swiftlet,Collocalia sumbawae,Caprimulgiformes,Apodidae (Swifts),, +3830,species,draswi1,Drab Swiftlet,Collocalia neglecta,Caprimulgiformes,Apodidae (Swifts),, +3833,species,gloswi1,Glossy Swiftlet,Collocalia esculenta,Caprimulgiformes,Apodidae (Swifts),, +3851,slash,y01077,Drab/Glossy Swiftlet,Collocalia neglecta/esculenta,Caprimulgiformes,Apodidae (Swifts),, +3852,species,satswi1,Satin Swiftlet,Collocalia uropygialis,Caprimulgiformes,Apodidae (Swifts),, +3855,spuh,whbswi1,white-bellied swiftlet sp.,Collocalia sp.,Caprimulgiformes,Apodidae (Swifts),, +3856,species,seyswi1,Seychelles Swiftlet,Aerodramus elaphrus,Caprimulgiformes,Apodidae (Swifts),, +3857,species,masswi1,Mascarene Swiftlet,Aerodramus francicus,Caprimulgiformes,Apodidae (Swifts),, +3860,species,indswi1,Indian Swiftlet,Aerodramus unicolor,Caprimulgiformes,Apodidae (Swifts),, +3861,species,molswi4,Sulawesi Swiftlet,Aerodramus sororum,Caprimulgiformes,Apodidae (Swifts),, +3862,species,molswi3,Halmahera Swiftlet,Aerodramus infuscatus,Caprimulgiformes,Apodidae (Swifts),, +3863,species,molswi1,Seram Swiftlet,Aerodramus ceramensis,Caprimulgiformes,Apodidae (Swifts),, +3864,species,phiswi1,Philippine Swiftlet,Aerodramus mearnsi,Caprimulgiformes,Apodidae (Swifts),, +3865,species,mouswi2,Mountain Swiftlet,Aerodramus hirundinaceus,Caprimulgiformes,Apodidae (Swifts),, +3869,species,whrswi2,White-rumped Swiftlet,Aerodramus spodiopygius,Caprimulgiformes,Apodidae (Swifts),, +3881,species,ausswi1,Australian Swiftlet,Aerodramus terraereginae,Caprimulgiformes,Apodidae (Swifts),, +3884,species,himswi2,Himalayan Swiftlet,Aerodramus brevirostris,Caprimulgiformes,Apodidae (Swifts),, +3885,issf,himswi1,Himalayan Swiftlet (Himalayan),Aerodramus brevirostris brevirostris/innominatus,Caprimulgiformes,Apodidae (Swifts),,himswi2 +3888,issf,indswi2,Himalayan Swiftlet (Indochinese),Aerodramus brevirostris rogersi,Caprimulgiformes,Apodidae (Swifts),,himswi2 +3889,species,volswi1,Volcano Swiftlet,Aerodramus vulcanorum,Caprimulgiformes,Apodidae (Swifts),, +3890,species,whiswi1,Whitehead's Swiftlet,Aerodramus whiteheadi,Caprimulgiformes,Apodidae (Swifts),, +3893,species,balswi1,Bare-legged Swiftlet,Aerodramus nuditarsus,Caprimulgiformes,Apodidae (Swifts),, +3894,species,mayswi1,Mayr's Swiftlet,Aerodramus orientalis,Caprimulgiformes,Apodidae (Swifts),, +3897,species,palswi2,Ameline Swiftlet,Aerodramus amelis,Caprimulgiformes,Apodidae (Swifts),, +3900,species,uniswi1,Uniform Swiftlet,Aerodramus vanikorensis,Caprimulgiformes,Apodidae (Swifts),, +3913,species,monswi2,Mossy-nest Swiftlet,Aerodramus salangana,Caprimulgiformes,Apodidae (Swifts),, +3918,species,palswi1,Palau Swiftlet,Aerodramus pelewensis,Caprimulgiformes,Apodidae (Swifts),, +3919,species,marswi,Mariana Swiftlet,Aerodramus bartschi,Caprimulgiformes,Apodidae (Swifts),, +3920,species,caiswi1,Caroline Islands Swiftlet,Aerodramus inquietus,Caprimulgiformes,Apodidae (Swifts),, +3924,species,atiswi1,Atiu Swiftlet,Aerodramus sawtelli,Caprimulgiformes,Apodidae (Swifts),, +3925,species,polswi1,Polynesian Swiftlet,Aerodramus leucophaeus,Caprimulgiformes,Apodidae (Swifts),, +3926,species,marswi2,Marquesan Swiftlet,Aerodramus ocistus,Caprimulgiformes,Apodidae (Swifts),, +3929,species,blnswi1,Black-nest Swiftlet,Aerodramus maximus,Caprimulgiformes,Apodidae (Swifts),, +3933,species,ednswi1,White-nest Swiftlet,Aerodramus fuciphagus,Caprimulgiformes,Apodidae (Swifts),, +3940,species,gerswi1,Germain's Swiftlet,Aerodramus germani,Caprimulgiformes,Apodidae (Swifts),, +3943,slash,y00731,White-nest/Germain's Swiftlet (Edible-nest Swiftlet),Aerodramus fuciphagus/germani,Caprimulgiformes,Apodidae (Swifts),, +3944,species,papswi1,Three-toed Swiftlet,Aerodramus papuensis,Caprimulgiformes,Apodidae (Swifts),, +3945,spuh,aerodr1,dark swiftlet sp.,Aerodramus sp.,Caprimulgiformes,Apodidae (Swifts),, +3946,spuh,swiftl1,swiftlet sp.,Collocalia/Aerodramus sp.,Caprimulgiformes,Apodidae (Swifts),, +3947,species,scaswi1,Scarce Swift,Schoutedenapus myoptilus,Caprimulgiformes,Apodidae (Swifts),, +3951,species,schswi1,Schouteden's Swift,Schoutedenapus schoutedeni,Caprimulgiformes,Apodidae (Swifts),, +3952,slash,y01029,Scarce/Schouteden's Swift,Schoutedenapus myoptilus/schoutedeni,Caprimulgiformes,Apodidae (Swifts),, +3953,species,alpswi1,Alpine Swift,Apus melba,Caprimulgiformes,Apodidae (Swifts),, +3964,species,motswi2,Mottled Swift,Apus aequatorialis,Caprimulgiformes,Apodidae (Swifts),, +3969,species,aleswi1,Alexander's Swift,Apus alexandri,Caprimulgiformes,Apodidae (Swifts),, +3970,species,comswi,Common Swift,Apus apus,Caprimulgiformes,Apodidae (Swifts),, +3973,species,plaswi1,Plain Swift,Apus unicolor,Caprimulgiformes,Apodidae (Swifts),, +3974,species,nyaswi1,Nyanza Swift,Apus niansae,Caprimulgiformes,Apodidae (Swifts),, +3977,species,palswi3,Pallid Swift,Apus pallidus,Caprimulgiformes,Apodidae (Swifts),, +3981,slash,y00732,Common/Pallid Swift,Apus apus/pallidus,Caprimulgiformes,Apodidae (Swifts),, +3982,slash,y00860,Plain/Pallid Swift,Apus unicolor/pallidus,Caprimulgiformes,Apodidae (Swifts),, +3983,species,afrswi1,African Swift,Apus barbatus,Caprimulgiformes,Apodidae (Swifts),, +3984,issf,afrswi2,African Swift (Bioko),Apus barbatus sladeniae,Caprimulgiformes,Apodidae (Swifts),,afrswi1 +3985,issf,afrswi3,African Swift (African),Apus barbatus [barbatus Group],Caprimulgiformes,Apodidae (Swifts),,afrswi1 +3992,species,fowswi1,Forbes-Watson's Swift,Apus berliozi,Caprimulgiformes,Apodidae (Swifts),, +3995,species,braswi1,Bradfield's Swift,Apus bradfieldi,Caprimulgiformes,Apodidae (Swifts),, +3998,species,madswi1,Madagascar Swift,Apus balstoni,Caprimulgiformes,Apodidae (Swifts),, +4001,species,fotswi,Pacific Swift,Apus pacificus,Caprimulgiformes,Apodidae (Swifts),, +4004,species,saaswi1,Salim Ali's Swift,Apus salimalii,Caprimulgiformes,Apodidae (Swifts),, +4005,species,blyswi1,Blyth's Swift,Apus leuconyx,Caprimulgiformes,Apodidae (Swifts),, +4006,species,cooswi1,Cook's Swift,Apus cooki,Caprimulgiformes,Apodidae (Swifts),, +4007,slash,y00959,Pacific/Cook's Swift,Apus pacificus/cooki,Caprimulgiformes,Apodidae (Swifts),, +4008,spuh,fotswi1,fork-tailed swift sp.,Apus pacificus/salimalii/leuconyx/cooki,Caprimulgiformes,Apodidae (Swifts),, +4009,species,darswi1,Dark-rumped Swift,Apus acuticauda,Caprimulgiformes,Apodidae (Swifts),, +4010,species,litswi1,Little Swift,Apus affinis,Caprimulgiformes,Apodidae (Swifts),, +4011,issf,litswi2,Little Swift (Little),Apus affinis [affinis Group],Caprimulgiformes,Apodidae (Swifts),,litswi1 +4016,issf,litswi3,Little Swift (Bannerman's),Apus affinis bannermani,Caprimulgiformes,Apodidae (Swifts),,litswi1 +4017,issf,litswi4,Little Swift (Indian),Apus affinis singalensis,Caprimulgiformes,Apodidae (Swifts),,litswi1 +4018,species,houswi1,House Swift,Apus nipalensis,Caprimulgiformes,Apodidae (Swifts),, +4023,slash,y00960,Little/House Swift,Apus affinis/nipalensis,Caprimulgiformes,Apodidae (Swifts),, +4024,species,horswi1,Horus Swift,Apus horus,Caprimulgiformes,Apodidae (Swifts),, +4025,issf,horswi2,Horus Swift (Horus),Apus horus horus,Caprimulgiformes,Apodidae (Swifts),,horswi1 +4026,issf,horswi3,Horus Swift (Brown-rumped),Apus horus fuscobrunneus,Caprimulgiformes,Apodidae (Swifts),,horswi1 +4027,species,whrswi1,White-rumped Swift,Apus caffer,Caprimulgiformes,Apodidae (Swifts),, +4028,species,batswi1,Bates's Swift,Apus batesi,Caprimulgiformes,Apodidae (Swifts),, +4029,spuh,apus1,Apus sp.,Apus sp.,Caprimulgiformes,Apodidae (Swifts),, +4030,species,whtswi,White-throated Swift,Aeronautes saxatalis,Caprimulgiformes,Apodidae (Swifts),, +4033,species,whtswi1,White-tipped Swift,Aeronautes montivagus,Caprimulgiformes,Apodidae (Swifts),, +4036,species,andswi1,Andean Swift,Aeronautes andecolus,Caprimulgiformes,Apodidae (Swifts),, +4040,slash,y00669,White-tipped/Andean Swift,Aeronautes montivagus/andecolus,Caprimulgiformes,Apodidae (Swifts),, +4041,species,lstswi1,Lesser Swallow-tailed Swift,Panyptila cayennensis,Caprimulgiformes,Apodidae (Swifts),, +4044,species,gstswi1,Great Swallow-tailed Swift,Panyptila sanctihieronymi,Caprimulgiformes,Apodidae (Swifts),, +4045,species,aspswi1,Asian Palm-Swift,Cypsiurus balasiensis,Caprimulgiformes,Apodidae (Swifts),, +4050,species,afpswi1,African Palm-Swift,Cypsiurus parvus,Caprimulgiformes,Apodidae (Swifts),, +4051,issf,afrpas1,African Palm-Swift (African),Cypsiurus parvus [parvus Group],Caprimulgiformes,Apodidae (Swifts),,afpswi1 +4058,issf,afrpas2,African Palm-Swift (Comoro),Cypsiurus parvus griveaudi,Caprimulgiformes,Apodidae (Swifts),,afpswi1 +4059,issf,afrpas3,African Palm-Swift (Madagascar),Cypsiurus parvus gracilis,Caprimulgiformes,Apodidae (Swifts),,afpswi1 +4060,species,anpswi,Antillean Palm-Swift,Tachornis phoenicobia,Caprimulgiformes,Apodidae (Swifts),, +4063,species,pygswi1,Pygmy Swift,Tachornis furcata,Caprimulgiformes,Apodidae (Swifts),, +4066,species,ftpswi1,Fork-tailed Palm-Swift,Tachornis squamata,Caprimulgiformes,Apodidae (Swifts),, +4069,spuh,larswi1,large swift sp.,Apodidae sp. (large swift sp.),Caprimulgiformes,Apodidae (Swifts),, +4070,spuh,smaswi1,small swift sp.,Apodidae sp. (small swift sp.),Caprimulgiformes,Apodidae (Swifts),, +4071,spuh,swift1,swift sp.,Apodidae sp.,Caprimulgiformes,Apodidae (Swifts),, +4072,species,cretre1,Crested Treeswift,Hemiprocne coronata,Caprimulgiformes,Hemiprocnidae (Treeswifts),Treeswifts, +4073,species,gyrtre1,Gray-rumped Treeswift,Hemiprocne longipennis,Caprimulgiformes,Hemiprocnidae (Treeswifts),, +4078,species,whitre1,Whiskered Treeswift,Hemiprocne comata,Caprimulgiformes,Hemiprocnidae (Treeswifts),, +4081,species,moutre1,Moustached Treeswift,Hemiprocne mystacea,Caprimulgiformes,Hemiprocnidae (Treeswifts),, +4088,spuh,treesw1,treeswift sp.,Hemiprocne sp.,Caprimulgiformes,Hemiprocnidae (Treeswifts),, +4089,species,critop1,Crimson Topaz,Topaza pella,Caprimulgiformes,Trochilidae (Hummingbirds),Hummingbirds, +4093,species,fietop1,Fiery Topaz,Topaza pyra,Caprimulgiformes,Trochilidae (Hummingbirds),, +4096,slash,y00861,Crimson/Fiery Topaz,Topaza pella/pyra,Caprimulgiformes,Trochilidae (Hummingbirds),, +4097,species,whnjac1,White-necked Jacobin,Florisuga mellivora,Caprimulgiformes,Trochilidae (Hummingbirds),, +4100,species,blkjac1,Black Jacobin,Florisuga fusca,Caprimulgiformes,Trochilidae (Hummingbirds),, +4101,species,whtsic1,White-tipped Sicklebill,Eutoxeres aquila,Caprimulgiformes,Trochilidae (Hummingbirds),, +4105,species,butsic1,Buff-tailed Sicklebill,Eutoxeres condamini,Caprimulgiformes,Trochilidae (Hummingbirds),, +4108,species,sabher1,Saw-billed Hermit,Ramphodon naevius,Caprimulgiformes,Trochilidae (Hummingbirds),, +4109,species,hobher2,Hook-billed Hermit,Glaucis dohrnii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4110,species,broher,Bronzy Hermit,Glaucis aeneus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4111,species,rubher,Rufous-breasted Hermit,Glaucis hirsutus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4114,species,batbar1,Band-tailed Barbthroat,Threnetes ruckeri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4118,species,patbar1,Pale-tailed Barbthroat,Threnetes leucurus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4123,species,soobar1,Sooty Barbthroat,Threnetes niger,Caprimulgiformes,Trochilidae (Hummingbirds),, +4126,species,brther2,Broad-tipped Hermit,Anopetia gounellei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4127,species,whbher1,White-bearded Hermit,Phaethornis hispidus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4128,species,whwher1,White-whiskered Hermit,Phaethornis yaruqui,Caprimulgiformes,Trochilidae (Hummingbirds),, +4129,species,greher1,Green Hermit,Phaethornis guy,Caprimulgiformes,Trochilidae (Hummingbirds),, +4134,species,tabher1,Tawny-bellied Hermit,Phaethornis syrmatophorus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4137,species,koeher1,Koepcke's Hermit,Phaethornis koepckeae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4138,species,nebher1,Needle-billed Hermit,Phaethornis philippii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4139,species,stbher1,Straight-billed Hermit,Phaethornis bourcieri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4140,issf,stbher2,Straight-billed Hermit (bourcieri),Phaethornis bourcieri bourcieri,Caprimulgiformes,Trochilidae (Hummingbirds),,stbher1 +4141,issf,stbher3,Straight-billed Hermit (major),Phaethornis bourcieri major,Caprimulgiformes,Trochilidae (Hummingbirds),,stbher1 +4142,species,lobher,Long-billed Hermit,Phaethornis longirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4143,issf,lobher1,Long-billed Hermit (Central American),Phaethornis longirostris [longirostris Group],Caprimulgiformes,Trochilidae (Hummingbirds),,lobher +4147,issf,lobher3,Long-billed Hermit (Baron's),Phaethornis longirostris baroni,Caprimulgiformes,Trochilidae (Hummingbirds),,lobher +4148,species,mexher1,Mexican Hermit,Phaethornis mexicanus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4149,issf,lobher4,Mexican Hermit (Jalisco),Phaethornis mexicanus griseoventer,Caprimulgiformes,Trochilidae (Hummingbirds),,mexher1 +4150,issf,lobher2,Mexican Hermit (Mexican),Phaethornis mexicanus mexicanus,Caprimulgiformes,Trochilidae (Hummingbirds),,mexher1 +4151,species,lother1,Long-tailed Hermit,Phaethornis superciliosus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4154,slash,y00596,Long-billed/Long-tailed Hermit,Phaethornis longirostris/superciliosus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4155,species,grbher1,Great-billed Hermit,Phaethornis malaris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4156,issf,grbher6,Great-billed Hermit (Great-billed),Phaethornis malaris malaris/insolitus,Caprimulgiformes,Trochilidae (Hummingbirds),,grbher1 +4159,issf,grbher5,Great-billed Hermit (Amazonian),Phaethornis malaris [moorei Group],Caprimulgiformes,Trochilidae (Hummingbirds),,grbher1 +4163,issf,grbher4,Great-billed Hermit (Margaretta's),Phaethornis malaris margarettae,Caprimulgiformes,Trochilidae (Hummingbirds),,grbher1 +4164,species,pabher1,Pale-bellied Hermit,Phaethornis anthophilus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4167,species,duther1,Dusky-throated Hermit,Phaethornis squalidus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4168,form,marher1,Maranhao Hermit (unrecognized species),Phaethornis maranhaoensis [unrecognized species],Caprimulgiformes,Trochilidae (Hummingbirds),, +4169,species,stther1,Streak-throated Hermit,Phaethornis rupurumii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4172,species,lither2,Little Hermit,Phaethornis longuemareus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4173,species,lither3,Tapajos Hermit,Phaethornis aethopygus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4174,species,minher1,Minute Hermit,Phaethornis idaliae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4175,species,cither1,Cinnamon-throated Hermit,Phaethornis nattereri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4176,species,bkther1,Black-throated Hermit,Phaethornis atrimentalis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4179,species,stther2,Stripe-throated Hermit,Phaethornis striigularis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4184,species,gycher1,Gray-chinned Hermit,Phaethornis griseogularis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4185,issf,gycher2,Gray-chinned Hermit (Gray-chinned),Phaethornis griseogularis griseogularis/zonura,Caprimulgiformes,Trochilidae (Hummingbirds),,gycher1 +4188,issf,gycher3,Gray-chinned Hermit (Porculla),Phaethornis griseogularis porcullae,Caprimulgiformes,Trochilidae (Hummingbirds),,gycher1 +4189,species,redher1,Reddish Hermit,Phaethornis ruber,Caprimulgiformes,Trochilidae (Hummingbirds),, +4194,species,whbher3,White-browed Hermit,Phaethornis stuarti,Caprimulgiformes,Trochilidae (Hummingbirds),, +4195,slash,y00693,Reddish/White-browed Hermit,Phaethornis ruber/stuarti,Caprimulgiformes,Trochilidae (Hummingbirds),, +4196,species,bubher1,Buff-bellied Hermit,Phaethornis subochraceus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4197,species,socher1,Sooty-capped Hermit,Phaethornis augusti,Caprimulgiformes,Trochilidae (Hummingbirds),, +4201,species,plaher1,Planalto Hermit,Phaethornis pretrei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4202,species,scther1,Scale-throated Hermit,Phaethornis eurynome,Caprimulgiformes,Trochilidae (Hummingbirds),, +4205,spuh,hermit1,hermit sp.,Phaethornis sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4206,species,grflan1,Green-fronted Lancebill,Doryfera ludovicae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4209,species,blflan1,Blue-fronted Lancebill,Doryfera johannae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4212,species,webhum3,Choco Daggerbill,Schistes albogularis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4213,species,webhum1,Geoffroy's Daggerbill,Schistes geoffroyi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4216,slash,webhum2,Choco/Geoffroy's Daggerbill,Schistes albogularis/geoffroyi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4217,species,hyavis1,Hyacinth Visorbearer,Augastes scutatus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4221,species,hoovis2,Hooded Visorbearer,Augastes lumachella,Caprimulgiformes,Trochilidae (Hummingbirds),, +4222,species,brvear1,Brown Violetear,Colibri delphinae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4223,species,grnvie1,Mexican Violetear,Colibri thalassinus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4224,species,lesvio1,Lesser Violetear,Colibri cyanotus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4225,issf,grnvie2,Lesser Violetear (Costa Rican),Colibri cyanotus cabanidis,Caprimulgiformes,Trochilidae (Hummingbirds),,lesvio1 +4226,issf,grnvio1,Lesser Violetear (Andean),Colibri cyanotus cyanotus/crissalis,Caprimulgiformes,Trochilidae (Hummingbirds),,lesvio1 +4229,species,spvear1,Sparkling Violetear,Colibri coruscans,Caprimulgiformes,Trochilidae (Hummingbirds),, +4232,slash,y00862,Lesser/Sparkling Violetear,Colibri cyanotus/coruscans,Caprimulgiformes,Trochilidae (Hummingbirds),, +4233,species,wvvear1,White-vented Violetear,Colibri serrirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4234,spuh,violet1,violetear sp.,Colibri sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4235,species,tobhum1,Tooth-billed Hummingbird,Androdon aequatorialis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4236,species,horsun2,Horned Sungem,Heliactin bilophus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4237,species,pucfai1,Purple-crowned Fairy,Heliothryx barroti,Caprimulgiformes,Trochilidae (Hummingbirds),, +4238,species,bkefai1,Black-eared Fairy,Heliothryx auritus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4242,species,whtgol1,White-tailed Goldenthroat,Polytmus guainumbi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4246,species,tepgol1,Tepui Goldenthroat,Polytmus milleri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4247,species,grtgol1,Green-tailed Goldenthroat,Polytmus theresiae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4250,species,fitawl1,Fiery-tailed Awlbill,Avocettula recurvirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4251,species,ruthum1,Ruby-topaz Hummingbird,Chrysolampis mosquitus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4252,species,grtman1,Green-throated Mango,Anthracothorax viridigula,Caprimulgiformes,Trochilidae (Hummingbirds),, +4253,species,gnbman,Green-breasted Mango,Anthracothorax prevostii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4254,issf,gnbman1,Green-breasted Mango (Green-breasted),Anthracothorax prevostii [prevostii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,gnbman +4259,issf,gnbman2,Green-breasted Mango (Ecuadorian),Anthracothorax prevostii iridescens,Caprimulgiformes,Trochilidae (Hummingbirds),,gnbman +4260,species,bltman1,Black-throated Mango,Anthracothorax nigricollis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4261,species,verman1,Veraguan Mango,Anthracothorax veraguensis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4262,species,antman1,Antillean Mango,Anthracothorax dominicus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4263,issf,antman2,Antillean Mango (Hispaniolan),Anthracothorax dominicus dominicus,Caprimulgiformes,Trochilidae (Hummingbirds),,antman1 +4264,issf,antman3,Antillean Mango (Puerto Rican),Anthracothorax dominicus aurulentus,Caprimulgiformes,Trochilidae (Hummingbirds),,antman1 +4265,species,greman1,Green Mango,Anthracothorax viridis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4266,species,jamman1,Jamaican Mango,Anthracothorax mango,Caprimulgiformes,Trochilidae (Hummingbirds),, +4267,spuh,mango1,mango sp.,Anthracothorax sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4268,species,putcar1,Purple-throated Carib,Eulampis jugularis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4269,species,grtcar1,Green-throated Carib,Eulampis holosericeus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4272,species,ortsun1,Orange-throated Sunangel,Heliangelus mavors,Caprimulgiformes,Trochilidae (Hummingbirds),, +4273,species,amtsun1,Amethyst-throated Sunangel,Heliangelus amethysticollis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4274,issf,amtsun2,Amethyst-throated Sunangel (Longuemare's),Heliangelus amethysticollis clarisse/violiceps,Caprimulgiformes,Trochilidae (Hummingbirds),,amtsun1 +4277,issf,amtsun4,Amethyst-throated Sunangel (Merida),Heliangelus amethysticollis spencei,Caprimulgiformes,Trochilidae (Hummingbirds),,amtsun1 +4278,issf,amtsun3,Amethyst-throated Sunangel (Amethyst-throated),Heliangelus amethysticollis [amethysticollis Group],Caprimulgiformes,Trochilidae (Hummingbirds),,amtsun1 +4282,species,gorsun1,Gorgeted Sunangel,Heliangelus strophianus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4283,species,tousun1,Tourmaline Sunangel,Heliangelus exortis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4284,species,litsun1,Little Sunangel,Heliangelus micraster,Caprimulgiformes,Trochilidae (Hummingbirds),, +4287,species,putsun1,Purple-throated Sunangel,Heliangelus viola,Caprimulgiformes,Trochilidae (Hummingbirds),, +4288,issf,putsun4,Purple-throated Sunangel (Purple-throated),Heliangelus viola viola,Caprimulgiformes,Trochilidae (Hummingbirds),,putsun1 +4289,issf,putsun2,Purple-throated Sunangel (Brilliant),Heliangelus viola splendidus/pyropus,Caprimulgiformes,Trochilidae (Hummingbirds),,putsun1 +4292,species,roysun1,Royal Sunangel,Heliangelus regalis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4295,species,grbfir1,Green-backed Firecrown,Sephanoides sephaniodes,Caprimulgiformes,Trochilidae (Hummingbirds),, +4296,species,juffir1,Juan Fernandez Firecrown,Sephanoides fernandensis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4299,species,wictho2,Wire-crested Thorntail,Discosura popelairii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4300,species,bkbtho1,Black-bellied Thorntail,Discosura langsdorffi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4303,species,coptho2,Coppery Thorntail,Discosura letitiae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4304,species,gretho1,Green Thorntail,Discosura conversii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4305,species,ratcoq2,Racket-tipped Thorntail,Discosura longicaudus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4306,species,tufcoq1,Tufted Coquette,Lophornis ornatus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4307,species,doecoq1,Dot-eared Coquette,Lophornis gouldii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4308,species,fricoq1,Frilled Coquette,Lophornis magnificus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4309,species,shccoq,Short-crested Coquette,Lophornis brachylophus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4310,species,ruccoq1,Rufous-crested Coquette,Lophornis delattrei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4313,species,spacoq1,Spangled Coquette,Lophornis stictolophus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4314,species,fescoq1,Festive Coquette,Lophornis chalybeus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4315,issf,fescoq2,Festive Coquette (Butterfly),Lophornis chalybeus verreauxii/klagesi,Caprimulgiformes,Trochilidae (Hummingbirds),,fescoq1 +4318,issf,fescoq3,Festive Coquette (Festive),Lophornis chalybeus chalybeus,Caprimulgiformes,Trochilidae (Hummingbirds),,fescoq1 +4319,species,peacoq1,Peacock Coquette,Lophornis pavoninus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4322,species,blccoq1,Black-crested Coquette,Lophornis helenae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4323,species,whccoq1,White-crested Coquette,Lophornis adorabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4324,spuh,y00786,thorntail/coquette sp.,Discosura/Lophornis sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4325,species,ecupie1,Ecuadorian Piedtail,Phlogophilus hemileucurus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4326,species,perpie1,Peruvian Piedtail,Phlogophilus harterti,Caprimulgiformes,Trochilidae (Hummingbirds),, +4327,species,spehum1,Speckled Hummingbird,Adelomyia melanogenys,Caprimulgiformes,Trochilidae (Hummingbirds),, +4328,issf,spehum2,Speckled Hummingbird (melanogenys Group),Adelomyia melanogenys [melanogenys Group],Caprimulgiformes,Trochilidae (Hummingbirds),,spehum1 +4336,issf,spehum3,Speckled Hummingbird (maculata),Adelomyia melanogenys maculata,Caprimulgiformes,Trochilidae (Hummingbirds),,spehum1 +4337,issf,spehum4,Speckled Hummingbird (inornata),Adelomyia melanogenys inornata,Caprimulgiformes,Trochilidae (Hummingbirds),,spehum1 +4338,species,lotsyl1,Long-tailed Sylph,Aglaiocercus kingii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4345,species,vitsyl1,Violet-tailed Sylph,Aglaiocercus coelestis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4348,species,vensyl1,Venezuelan Sylph,Aglaiocercus berlepschi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4349,species,retcom1,Red-tailed Comet,Sappho sparganurus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4352,species,brtcom1,Bronze-tailed Comet,Polyonymus caroli,Caprimulgiformes,Trochilidae (Hummingbirds),, +4353,species,gybcom1,Gray-bellied Comet,Taphrolesbia griseiventris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4354,species,ecuhil1,Ecuadorian Hillstar,Oreotrochilus chimborazo,Caprimulgiformes,Trochilidae (Hummingbirds),, +4357,species,buthil1,Blue-throated Hillstar,Oreotrochilus cyanolaemus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4358,species,andhil2,Green-headed Hillstar,Oreotrochilus stolzmanni,Caprimulgiformes,Trochilidae (Hummingbirds),, +4359,species,blbhil1,Black-breasted Hillstar,Oreotrochilus melanogaster,Caprimulgiformes,Trochilidae (Hummingbirds),, +4360,species,andhil3,Andean Hillstar,Oreotrochilus estella,Caprimulgiformes,Trochilidae (Hummingbirds),, +4363,species,whshil1,White-sided Hillstar,Oreotrochilus leucopleurus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4364,species,wethil1,Wedge-tailed Hillstar,Oreotrochilus adela,Caprimulgiformes,Trochilidae (Hummingbirds),, +4365,spuh,oreotr1,Oreotrochilus sp.,Oreotrochilus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4366,species,mouavo1,Mountain Avocetbill,Opisthoprora euryptera,Caprimulgiformes,Trochilidae (Hummingbirds),, +4367,species,blttra1,Black-tailed Trainbearer,Lesbia victoriae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4371,species,grttra1,Green-tailed Trainbearer,Lesbia nuna,Caprimulgiformes,Trochilidae (Hummingbirds),, +4373,slash,y00684,Black-tailed/Green-tailed Trainbearer,Lesbia victoriae/nuna,Caprimulgiformes,Trochilidae (Hummingbirds),, +4378,species,blbtho1,Black-backed Thornbill,Ramphomicron dorsale,Caprimulgiformes,Trochilidae (Hummingbirds),, +4379,species,pubtho1,Purple-backed Thornbill,Ramphomicron microrhynchum,Caprimulgiformes,Trochilidae (Hummingbirds),, +4384,species,ructho1,Rufous-capped Thornbill,Chalcostigma ruficeps,Caprimulgiformes,Trochilidae (Hummingbirds),, +4385,species,olitho1,Olivaceous Thornbill,Chalcostigma olivaceum,Caprimulgiformes,Trochilidae (Hummingbirds),, +4388,species,blmtho1,Blue-mantled Thornbill,Chalcostigma stanleyi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4392,species,brttho1,Bronze-tailed Thornbill,Chalcostigma heteropogon,Caprimulgiformes,Trochilidae (Hummingbirds),, +4393,species,rabtho1,Rainbow-bearded Thornbill,Chalcostigma herrani,Caprimulgiformes,Trochilidae (Hummingbirds),, +4396,species,bufhel1,Buffy Helmetcrest,Oxypogon stuebelii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4397,species,bubhel1,Blue-bearded Helmetcrest,Oxypogon cyanolaemus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4398,species,whbhel1,White-bearded Helmetcrest,Oxypogon lindenii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4399,species,gnbhel1,Green-bearded Helmetcrest,Oxypogon guerinii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4400,spuh,beahel1,helmetcrest sp.,Oxypogon sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4401,species,beamou1,Bearded Mountaineer,Oreonympha nobilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4402,issf,beamou2,Bearded Mountaineer (Western),Oreonympha nobilis albolimbata,Caprimulgiformes,Trochilidae (Hummingbirds),,beamou1 +4403,issf,beamou3,Bearded Mountaineer (Eastern),Oreonympha nobilis nobilis,Caprimulgiformes,Trochilidae (Hummingbirds),,beamou1 +4404,species,permet1,Perija Metaltail,Metallura iracunda,Caprimulgiformes,Trochilidae (Hummingbirds),, +4405,species,tyrmet1,Tyrian Metaltail,Metallura tyrianthina,Caprimulgiformes,Trochilidae (Hummingbirds),, +4406,issf,tyrmet2,Tyrian Metaltail (Santa Marta),Metallura tyrianthina districta,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 +4407,issf,tyrmet3,Tyrian Metaltail (Costa),Metallura tyrianthina chloropogon,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 +4408,issf,tyrmet4,Tyrian Metaltail (Merida),Metallura tyrianthina oreopola,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 +4409,issf,tyrmet5,Tyrian Metaltail (Tyrian),Metallura tyrianthina tyrianthina/quitensis,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 +4412,issf,tyrmet6,Tyrian Metaltail (septentrionalis),Metallura tyrianthina septentrionalis,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 +4413,issf,tyrmet7,Tyrian Metaltail (smaragdinicollis),Metallura tyrianthina smaragdinicollis,Caprimulgiformes,Trochilidae (Hummingbirds),,tyrmet1 +4414,hybrid,x00944,Long-tailed Sylph x Tyrian Metaltail (hybrid),Aglaiocercus kingii x Metallura tyrianthina,Caprimulgiformes,Trochilidae (Hummingbirds),, +4415,species,virmet1,Viridian Metaltail,Metallura williami,Caprimulgiformes,Trochilidae (Hummingbirds),, +4416,issf,virmet2,Viridian Metaltail (recisa),Metallura williami recisa,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 +4417,issf,virmet3,Viridian Metaltail (Viridian),Metallura williami williami,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 +4418,issf,virmet4,Viridian Metaltail (Ecuadorian),Metallura williami primolina,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 +4419,issf,virmet5,Viridian Metaltail (Black-throated),Metallura williami atrigularis,Caprimulgiformes,Trochilidae (Hummingbirds),,virmet1 +4420,species,vitmet1,Violet-throated Metaltail,Metallura baroni,Caprimulgiformes,Trochilidae (Hummingbirds),, +4421,species,nebmet1,Neblina Metaltail,Metallura odomae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4422,species,copmet1,Coppery Metaltail,Metallura theresiae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4425,species,fitmet1,Fire-throated Metaltail,Metallura eupogon,Caprimulgiformes,Trochilidae (Hummingbirds),, +4426,species,scamet1,Scaled Metaltail,Metallura aeneocauda,Caprimulgiformes,Trochilidae (Hummingbirds),, +4429,species,blamet1,Black Metaltail,Metallura phoebe,Caprimulgiformes,Trochilidae (Hummingbirds),, +4430,spuh,metalt1,metaltail sp.,Metallura sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4431,species,grepuf1,Greenish Puffleg,Haplophaedia aureliae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4436,species,butpuf1,Buff-thighed Puffleg,Haplophaedia assimilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4439,species,hoapuf1,Hoary Puffleg,Haplophaedia lugens,Caprimulgiformes,Trochilidae (Hummingbirds),, +4440,species,blbpuf3,Black-breasted Puffleg,Eriocnemis nigrivestis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4441,species,gorpuf1,Gorgeted Puffleg,Eriocnemis isabellae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4442,species,glopuf2,Glowing Puffleg,Eriocnemis vestita,Caprimulgiformes,Trochilidae (Hummingbirds),, +4447,species,bltpuf1,Black-thighed Puffleg,Eriocnemis derbyi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4448,species,tutpuf1,Turquoise-throated Puffleg,Eriocnemis godini,Caprimulgiformes,Trochilidae (Hummingbirds),, +4449,species,cobpuf1,Coppery-bellied Puffleg,Eriocnemis cupreoventris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4450,species,savpuf1,Sapphire-vented Puffleg,Eriocnemis luciani,Caprimulgiformes,Trochilidae (Hummingbirds),, +4451,issf,savpuf2,Sapphire-vented Puffleg (Sapphire-vented),Eriocnemis luciani [luciani Group],Caprimulgiformes,Trochilidae (Hummingbirds),,savpuf1 +4455,issf,savpuf3,Sapphire-vented Puffleg (Coppery-naped),Eriocnemis luciani sapphiropygia/catharina,Caprimulgiformes,Trochilidae (Hummingbirds),,savpuf1 +4458,species,gobpuf1,Golden-breasted Puffleg,Eriocnemis mosquera,Caprimulgiformes,Trochilidae (Hummingbirds),, +4459,species,blcpuf1,Blue-capped Puffleg,Eriocnemis glaucopoides,Caprimulgiformes,Trochilidae (Hummingbirds),, +4460,species,colpuf2,Colorful Puffleg,Eriocnemis mirabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4461,species,embpuf1,Emerald-bellied Puffleg,Eriocnemis aline,Caprimulgiformes,Trochilidae (Hummingbirds),, +4464,species,marspa1,Marvelous Spatuletail,Loddigesia mirabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4465,species,shisun1,Shining Sunbeam,Aglaeactis cupripennis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4468,species,whtsun1,White-tufted Sunbeam,Aglaeactis castelnaudii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4471,hybrid,x00672,Shining x White-tufted Sunbeam (hybrid),Aglaeactis cupripennis x castelnaudii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4472,species,pubsun1,Purple-backed Sunbeam,Aglaeactis aliciae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4473,species,blhsun1,Black-hooded Sunbeam,Aglaeactis pamela,Caprimulgiformes,Trochilidae (Hummingbirds),, +4474,species,broinc1,Bronzy Inca,Coeligena coeligena,Caprimulgiformes,Trochilidae (Hummingbirds),, +4481,species,broinc2,Brown Inca,Coeligena wilsoni,Caprimulgiformes,Trochilidae (Hummingbirds),, +4482,species,blainc1,Black Inca,Coeligena prunellei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4483,species,colinc1,Collared Inca,Coeligena torquata,Caprimulgiformes,Trochilidae (Hummingbirds),, +4484,issf,colinc4,Collared Inca (Green),Coeligena torquata conradii,Caprimulgiformes,Trochilidae (Hummingbirds),,colinc1 +4485,issf,colinc2,Collared Inca (Collared),Coeligena torquata [torquata Group],Caprimulgiformes,Trochilidae (Hummingbirds),,colinc1 +4490,issf,colinc5,Collared Inca (Vilcabamba),Coeligena torquata eisenmanni,Caprimulgiformes,Trochilidae (Hummingbirds),,colinc1 +4491,issf,colinc3,Collared Inca (Gould's),Coeligena torquata inca/omissa,Caprimulgiformes,Trochilidae (Hummingbirds),,colinc1 +4494,species,vitsta1,Violet-throated Starfrontlet,Coeligena violifer,Caprimulgiformes,Trochilidae (Hummingbirds),, +4495,issf,vitsta2,Violet-throated Starfrontlet (Huanuco),Coeligena violifer dichroura,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 +4496,issf,vitsta3,Violet-throated Starfrontlet (Apurimac),Coeligena violifer albicaudata,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 +4497,issf,vitsta4,Violet-throated Starfrontlet (Cuzco),Coeligena violifer osculans,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 +4498,issf,vitsta5,Violet-throated Starfrontlet (Bolivian),Coeligena violifer violifer,Caprimulgiformes,Trochilidae (Hummingbirds),,vitsta1 +4499,species,raista1,Rainbow Starfrontlet,Coeligena iris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4506,species,whtsta1,White-tailed Starfrontlet,Coeligena phalerata,Caprimulgiformes,Trochilidae (Hummingbirds),, +4507,species,dussta1,Dusky Starfrontlet,Coeligena orina,Caprimulgiformes,Trochilidae (Hummingbirds),, +4508,species,buwsta1,Buff-winged Starfrontlet,Coeligena lutetiae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4509,species,gobsta1,Golden-bellied Starfrontlet,Coeligena bonapartei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4510,issf,gobsta2,Golden-bellied Starfrontlet (Perija),Coeligena bonapartei consita,Caprimulgiformes,Trochilidae (Hummingbirds),,gobsta1 +4511,issf,gobsta6,Golden-bellied Starfrontlet (Golden-bellied),Coeligena bonapartei bonapartei,Caprimulgiformes,Trochilidae (Hummingbirds),,gobsta1 +4512,issf,gobsta4,Golden-bellied Starfrontlet (Golden-tailed),Coeligena bonapartei eos,Caprimulgiformes,Trochilidae (Hummingbirds),,gobsta1 +4513,species,bltsta1,Blue-throated Starfrontlet,Coeligena helianthea,Caprimulgiformes,Trochilidae (Hummingbirds),, +4516,species,mouvel1,Mountain Velvetbreast,Lafresnaya lafresnayi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4523,species,swbhum1,Sword-billed Hummingbird,Ensifera ensifera,Caprimulgiformes,Trochilidae (Hummingbirds),, +4524,species,gresap1,Great Sapphirewing,Pterophanes cyanopterus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4528,species,butcor1,Buff-tailed Coronet,Boissonneaua flavescens,Caprimulgiformes,Trochilidae (Hummingbirds),, +4531,species,chbcor1,Chestnut-breasted Coronet,Boissonneaua matthewsii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4532,species,vepcor1,Velvet-purple Coronet,Boissonneaua jardini,Caprimulgiformes,Trochilidae (Hummingbirds),, +4533,species,bortai1,Booted Racket-tail,Ocreatus underwoodii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4534,issf,boorat1,Booted Racket-tail (White-booted),Ocreatus underwoodii [underwoodii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 +4540,issf,boorat2,Booted Racket-tail (Peruvian),Ocreatus underwoodii peruanus,Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 +4541,issf,boorat3,Booted Racket-tail (Anna's),Ocreatus underwoodii annae,Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 +4542,issf,boorat4,Booted Racket-tail (Adda's),Ocreatus underwoodii addae,Caprimulgiformes,Trochilidae (Hummingbirds),,bortai1 +4543,species,whthil2,Rufous-gaped Hillstar,Urochroa bougueri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4544,species,whthil3,Green-backed Hillstar,Urochroa leucura,Caprimulgiformes,Trochilidae (Hummingbirds),, +4545,species,pubwhi1,Purple-bibbed Whitetip,Urosticte benjamini,Caprimulgiformes,Trochilidae (Hummingbirds),, +4546,species,ruvwhi1,Rufous-vented Whitetip,Urosticte ruficrissa,Caprimulgiformes,Trochilidae (Hummingbirds),, +4547,species,vebbri1,Velvet-browed Brilliant,Heliodoxa xanthogonys,Caprimulgiformes,Trochilidae (Hummingbirds),, +4550,species,pitbri1,Pink-throated Brilliant,Heliodoxa gularis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4551,species,ruwbri1,Rufous-webbed Brilliant,Heliodoxa branickii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4552,species,bltbri1,Black-throated Brilliant,Heliodoxa schreibersii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4553,issf,bktbri1,Black-throated Brilliant (Black-throated),Heliodoxa schreibersii schreibersii,Caprimulgiformes,Trochilidae (Hummingbirds),,bltbri1 +4554,issf,bktbri2,Black-throated Brilliant (Black-breasted),Heliodoxa schreibersii whitelyana,Caprimulgiformes,Trochilidae (Hummingbirds),,bltbri1 +4555,species,goujew1,Gould's Jewelfront,Heliodoxa aurescens,Caprimulgiformes,Trochilidae (Hummingbirds),, +4556,species,fabbri1,Fawn-breasted Brilliant,Heliodoxa rubinoides,Caprimulgiformes,Trochilidae (Hummingbirds),, +4560,species,grcbri1,Green-crowned Brilliant,Heliodoxa jacula,Caprimulgiformes,Trochilidae (Hummingbirds),, +4564,species,empbri1,Empress Brilliant,Heliodoxa imperatrix,Caprimulgiformes,Trochilidae (Hummingbirds),, +4565,species,vifbri1,Violet-fronted Brilliant,Heliodoxa leadbeateri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4570,species,brarub1,Brazilian Ruby,Clytolaema rubricauda,Caprimulgiformes,Trochilidae (Hummingbirds),, +4571,species,giahum1,Giant Hummingbird,Patagona gigas,Caprimulgiformes,Trochilidae (Hummingbirds),, +4574,species,vichum2,Violet-chested Hummingbird,Sternoclyta cyanopectus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4575,species,scthum1,Scissor-tailed Hummingbird,Hylonympha macrocerca,Caprimulgiformes,Trochilidae (Hummingbirds),, +4576,species,maghum1,Rivoli's Hummingbird,Eugenes fulgens,Caprimulgiformes,Trochilidae (Hummingbirds),, +4577,species,maghum2,Talamanca Hummingbird,Eugenes spectabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4578,species,lobsta1,Long-billed Starthroat,Heliomaster longirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4582,species,plcsta,Plain-capped Starthroat,Heliomaster constantii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4586,slash,y00863,Long-billed/Plain-capped Starthroat,Heliomaster longirostris/constantii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4587,species,stbsta1,Stripe-breasted Starthroat,Heliomaster squamosus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4588,species,bltsta2,Blue-tufted Starthroat,Heliomaster furcifer,Caprimulgiformes,Trochilidae (Hummingbirds),, +4589,species,fithum1,Fiery-throated Hummingbird,Panterpe insignis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4592,species,gtmgem1,Green-throated Mountain-gem,Lampornis viridipallens,Caprimulgiformes,Trochilidae (Hummingbirds),, +4597,species,gbmgem1,Green-breasted Mountain-gem,Lampornis sybillae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4598,species,amthum1,Amethyst-throated Mountain-gem,Lampornis amethystinus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4599,issf,amthum2,Amethyst-throated Mountain-gem (Amethyst-throated),Lampornis amethystinus [amethystinus Group],Caprimulgiformes,Trochilidae (Hummingbirds),,amthum1 +4603,issf,amthum3,Amethyst-throated Mountain-gem (Violet-throated),Lampornis amethystinus margaritae,Caprimulgiformes,Trochilidae (Hummingbirds),,amthum1 +4604,species,buthum,Blue-throated Mountain-gem,Lampornis clemenciae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4607,species,wbmgem1,White-bellied Mountain-gem,Lampornis hemileucus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4608,species,ptmgem,Purple-throated Mountain-gem,Lampornis calolaemus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4612,species,wtmgem1,White-throated Mountain-gem,Lampornis castaneoventris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4613,issf,whtmog1,White-throated Mountain-gem (Blue-tailed),Lampornis castaneoventris castaneoventris,Caprimulgiformes,Trochilidae (Hummingbirds),,wtmgem1 +4614,issf,whtmog2,White-throated Mountain-gem (Gray-tailed),Lampornis castaneoventris cinereicauda,Caprimulgiformes,Trochilidae (Hummingbirds),,wtmgem1 +4615,hybrid,x00945,Purple-throated x White-throated Mountain-gem (hybrid),Lampornis calolaemus x castaneoventris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4616,slash,y00864,Purple-throated/White-throated Mountain-gem,Lampornis calolaemus/castaneoventris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4617,species,gathum1,Garnet-throated Hummingbird,Lamprolaima rhami,Caprimulgiformes,Trochilidae (Hummingbirds),, +4618,species,spthum1,Sparkling-tailed Hummingbird,Tilmatura dupontii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4619,species,amewoo1,Amethyst Woodstar,Calliphlox amethystina,Caprimulgiformes,Trochilidae (Hummingbirds),, +4620,species,pershe2,Peruvian Sheartail,Thaumastura cora,Caprimulgiformes,Trochilidae (Hummingbirds),, +4621,species,shtwoo1,Short-tailed Woodstar,Myrmia micrura,Caprimulgiformes,Trochilidae (Hummingbirds),, +4622,species,pucwoo1,Purple-collared Woodstar,Myrtis fanny,Caprimulgiformes,Trochilidae (Hummingbirds),, +4625,species,oashum1,Oasis Hummingbird,Rhodopis vesper,Caprimulgiformes,Trochilidae (Hummingbirds),, +4629,species,chiwoo1,Chilean Woodstar,Eulidia yarrellii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4630,hybrid,x00736,Peruvian Sheartail x Chilean Woodstar (hybrid),Thaumastura cora x Eulidia yarrellii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4631,species,sltwoo1,Slender-tailed Woodstar,Microstilbon burmeisteri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4632,species,whbwoo6,White-bellied Woodstar,Chaetocercus mulsant,Caprimulgiformes,Trochilidae (Hummingbirds),, +4633,species,litwoo5,Little Woodstar,Chaetocercus bombus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4634,species,gorwoo2,Gorgeted Woodstar,Chaetocercus heliodor,Caprimulgiformes,Trochilidae (Hummingbirds),, +4637,species,samwoo2,Santa Marta Woodstar,Chaetocercus astreans,Caprimulgiformes,Trochilidae (Hummingbirds),, +4638,species,esmwoo2,Esmeraldas Woodstar,Chaetocercus berlepschi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4639,species,ruswoo1,Rufous-shafted Woodstar,Chaetocercus jourdanii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4643,spuh,chaeto1,Chaetocercus sp.,Chaetocercus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4644,species,matwoo1,Magenta-throated Woodstar,Philodice bryantae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4645,species,putwoo1,Purple-throated Woodstar,Philodice mitchellii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4646,spuh,woodst1,woodstar sp.,Trochilidae sp. (woodstar sp.),Caprimulgiformes,Trochilidae (Hummingbirds),, +4647,species,sleshe1,Slender Sheartail,Doricha enicura,Caprimulgiformes,Trochilidae (Hummingbirds),, +4648,species,mexshe1,Mexican Sheartail,Doricha eliza,Caprimulgiformes,Trochilidae (Hummingbirds),, +4649,species,luchum,Lucifer Hummingbird,Calothorax lucifer,Caprimulgiformes,Trochilidae (Hummingbirds),, +4650,species,beahum1,Beautiful Hummingbird,Calothorax pulcher,Caprimulgiformes,Trochilidae (Hummingbirds),, +4651,slash,y01030,Lucifer/Beautiful Hummingbird,Calothorax lucifer/pulcher,Caprimulgiformes,Trochilidae (Hummingbirds),, +4652,species,rthhum,Ruby-throated Hummingbird,Archilochus colubris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4653,species,bkchum,Black-chinned Hummingbird,Archilochus alexandri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4654,hybrid,x00946,Lucifer x Black-chinned Hummingbird (hybrid),Calothorax lucifer x Archilochus alexandri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4655,hybrid,x00850,Ruby-throated x Black-chinned Hummingbird (hybrid),Archilochus colubris x alexandri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4656,slash,archil1,Ruby-throated/Black-chinned Hummingbird,Archilochus colubris/alexandri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4657,species,bahwoo,Bahama Woodstar,Nesophlox evelynae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4658,species,inawoo2,Inagua Woodstar,Nesophlox lyrura,Caprimulgiformes,Trochilidae (Hummingbirds),, +4659,species,verhum1,Vervain Hummingbird,Mellisuga minima,Caprimulgiformes,Trochilidae (Hummingbirds),, +4662,species,beehum1,Bee Hummingbird,Mellisuga helenae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4663,species,annhum,Anna's Hummingbird,Calypte anna,Caprimulgiformes,Trochilidae (Hummingbirds),, +4664,hybrid,x00690,Lucifer x Anna's Hummingbird (hybrid),Calothorax lucifer x Calypte anna,Caprimulgiformes,Trochilidae (Hummingbirds),, +4665,hybrid,x00651,Black-chinned x Anna's Hummingbird (hybrid),Archilochus alexandri x Calypte anna,Caprimulgiformes,Trochilidae (Hummingbirds),, +4666,species,coshum,Costa's Hummingbird,Calypte costae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4667,hybrid,x00737,Lucifer x Costa's Hummingbird (hybrid),Calothorax lucifer x Calypte costae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4668,hybrid,x00618,Anna's x Costa's Hummingbird (hybrid),Calypte anna x costae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4669,slash,calypt,Anna's/Costa's Hummingbird,Calypte anna/costae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4670,species,bumhum,Bumblebee Hummingbird,Atthis heloisa,Caprimulgiformes,Trochilidae (Hummingbirds),, +4673,species,withum1,Wine-throated Hummingbird,Atthis ellioti,Caprimulgiformes,Trochilidae (Hummingbirds),, +4676,species,brthum,Broad-tailed Hummingbird,Selasphorus platycercus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4677,species,rufhum,Rufous Hummingbird,Selasphorus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4678,hybrid,x00738,Black-chinned x Rufous Hummingbird (hybrid),Archilochus alexandri x Selasphorus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4679,hybrid,x00626,Anna's x Rufous Hummingbird (hybrid),Calypte anna x Selasphorus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4680,species,allhum,Allen's Hummingbird,Selasphorus sasin,Caprimulgiformes,Trochilidae (Hummingbirds),, +4683,hybrid,x00691,Anna's x Allen's Hummingbird (hybrid),Calypte anna x Selasphorus sasin,Caprimulgiformes,Trochilidae (Hummingbirds),, +4684,slash,y00001,Rufous/Allen's Hummingbird,Selasphorus rufus/sasin,Caprimulgiformes,Trochilidae (Hummingbirds),, +4685,species,volhum1,Volcano Hummingbird,Selasphorus flammula,Caprimulgiformes,Trochilidae (Hummingbirds),, +4686,issf,volhum2,Volcano Hummingbird (Purple-throated),Selasphorus flammula flammula,Caprimulgiformes,Trochilidae (Hummingbirds),,volhum1 +4687,issf,volhum4,Volcano Hummingbird (Heliotrope-throated),Selasphorus flammula torridus,Caprimulgiformes,Trochilidae (Hummingbirds),,volhum1 +4688,issf,volhum3,Volcano Hummingbird (Rose-throated),Selasphorus flammula simoni,Caprimulgiformes,Trochilidae (Hummingbirds),,volhum1 +4689,species,glthum1,Glow-throated Hummingbird,Selasphorus ardens,Caprimulgiformes,Trochilidae (Hummingbirds),, +4690,species,scihum1,Scintillant Hummingbird,Selasphorus scintilla,Caprimulgiformes,Trochilidae (Hummingbirds),, +4691,species,calhum,Calliope Hummingbird,Selasphorus calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, +4692,hybrid,x00768,Black-chinned x Calliope Hummingbird (hybrid),Archilochus alexandri x Selasphorus calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, +4693,hybrid,x00619,Anna's x Calliope Hummingbird (hybrid),Calypte anna x Selasphorus calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, +4694,hybrid,x00851,Broad-tailed x Calliope Hummingbird (hybrid),Selasphorus platycercus x calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, +4695,hybrid,x00852,Rufous x Calliope Hummingbird (hybrid),Selasphorus rufus x calliope,Caprimulgiformes,Trochilidae (Hummingbirds),, +4696,spuh,selasp,Selasphorus sp.,Selasphorus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4697,hybrid,x00739,Anna's Hummingbird x Selasphorus sp. (hybrid),Calypte anna x Selasphorus sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4698,species,weseme1,Western Emerald,Chlorostilbon melanorhynchus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4701,species,rebeme1,Red-billed Emerald,Chlorostilbon gibsoni,Caprimulgiformes,Trochilidae (Hummingbirds),, +4705,species,blteme1,Blue-tailed Emerald,Chlorostilbon mellisugus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4712,species,goceme1,Golden-crowned Emerald,Chlorostilbon auriceps,Caprimulgiformes,Trochilidae (Hummingbirds),, +4713,species,cozeme1,Cozumel Emerald,Chlorostilbon forficatus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4714,species,caneme1,Canivet's Emerald,Chlorostilbon canivetii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4715,issf,caneme2,Canivet's Emerald (Canivet's),Chlorostilbon canivetii canivetii,Caprimulgiformes,Trochilidae (Hummingbirds),,caneme1 +4716,issf,caneme3,Canivet's Emerald (Salvin's),Chlorostilbon canivetii salvini/osberti,Caprimulgiformes,Trochilidae (Hummingbirds),,caneme1 +4719,species,gareme1,Garden Emerald,Chlorostilbon assimilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4720,species,chieme1,Chiribiquete Emerald,Chlorostilbon olivaresi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4721,species,cubeme1,Cuban Emerald,Chlorostilbon ricordii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4722,species,braeme1,Brace's Emerald,Chlorostilbon bracei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4723,issf,braeme2,Brace's Emerald (Brace's),Chlorostilbon bracei bracei,Caprimulgiformes,Trochilidae (Hummingbirds),,braeme1 +4724,issf,braeme3,Brace's Emerald (Caribbean),Chlorostilbon bracei elegans,Caprimulgiformes,Trochilidae (Hummingbirds),,braeme1 +4725,species,hiseme1,Hispaniolan Emerald,Chlorostilbon swainsonii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4726,species,pureme1,Puerto Rican Emerald,Chlorostilbon maugaeus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4727,species,glbeme1,Glittering-bellied Emerald,Chlorostilbon lucidus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4732,species,copeme1,Coppery Emerald,Chlorostilbon russatus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4733,species,nateme2,Narrow-tailed Emerald,Chlorostilbon stenurus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4736,species,grteme1,Green-tailed Emerald,Chlorostilbon alice,Caprimulgiformes,Trochilidae (Hummingbirds),, +4737,species,shteme1,Short-tailed Emerald,Chlorostilbon poortmani,Caprimulgiformes,Trochilidae (Hummingbirds),, +4740,spuh,chloro2,Chlorostilbon sp.,Chlorostilbon sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4741,species,bucsap1,Blue-chinned Sapphire,Chlorestes notata,Caprimulgiformes,Trochilidae (Hummingbirds),, +4745,species,dushum1,Dusky Hummingbird,Cynanthus sordidus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4746,species,brbhum,Broad-billed Hummingbird,Cynanthus latirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4747,issf,brbhum1,Broad-billed Hummingbird (Northern),Cynanthus latirostris [latirostris Group],Caprimulgiformes,Trochilidae (Hummingbirds),,brbhum +4751,issf,brbhum2,Broad-billed Hummingbird (Doubleday's),Cynanthus latirostris doubledayi,Caprimulgiformes,Trochilidae (Hummingbirds),,brbhum +4752,issf,brbhum3,Broad-billed Hummingbird (Tres Marias Is.),Cynanthus latirostris lawrencei,Caprimulgiformes,Trochilidae (Hummingbirds),,brbhum +4753,hybrid,x00676,Black-chinned x Broad-billed Hummingbird (hybrid),Archilochus alexandri x Cynanthus latirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4754,species,blhhum1,Blue-headed Hummingbird,Cyanophaia bicolor,Caprimulgiformes,Trochilidae (Hummingbirds),, +4755,species,anchum1,Antillean Crested Hummingbird,Orthorhyncus cristatus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4756,issf,anchum2,Antillean Crested Hummingbird (Lesser Antilles),Orthorhyncus cristatus exilis,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 +4757,issf,anchum3,Antillean Crested Hummingbird (St. Vincent),Orthorhyncus cristatus ornatus,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 +4758,issf,anchum4,Antillean Crested Hummingbird (Barbados),Orthorhyncus cristatus cristatus,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 +4759,issf,anchum5,Antillean Crested Hummingbird (Grenadines and Grenada),Orthorhyncus cristatus emigrans,Caprimulgiformes,Trochilidae (Hummingbirds),,anchum1 +4760,species,vihhum1,Violet-headed Hummingbird,Klais guimeti,Caprimulgiformes,Trochilidae (Hummingbirds),, +4764,species,emchum1,Emerald-chinned Hummingbird,Abeillia abeillei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4767,species,samblo1,Santa Marta Blossomcrown,Anthocephala floriceps,Caprimulgiformes,Trochilidae (Hummingbirds),, +4768,species,tolblo1,Tolima Blossomcrown,Anthocephala berlepschi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4769,species,plover3,Green-crowned Plovercrest,Stephanoxis lalandi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4770,species,plover4,Purple-crowned Plovercrest,Stephanoxis loddigesii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4771,species,scbhum1,Scaly-breasted Hummingbird,Phaeochroa cuvierii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4772,issf,scbhum2,Scaly-breasted Hummingbird (Robert's),Phaeochroa cuvierii roberti,Caprimulgiformes,Trochilidae (Hummingbirds),,scbhum1 +4773,issf,scbhum3,Scaly-breasted Hummingbird (Cuvier's),Phaeochroa cuvierii [cuvierii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,scbhum1 +4778,species,wetsab1,Wedge-tailed Sabrewing,Campylopterus curvipennis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4779,issf,wetsab2,Wedge-tailed Sabrewing (Curve-winged),Campylopterus curvipennis curvipennis,Caprimulgiformes,Trochilidae (Hummingbirds),,wetsab1 +4780,issf,wetsab3,Wedge-tailed Sabrewing (Wedge-tailed),Campylopterus curvipennis pampa,Caprimulgiformes,Trochilidae (Hummingbirds),,wetsab1 +4781,species,lotsab1,Long-tailed Sabrewing,Campylopterus excellens,Caprimulgiformes,Trochilidae (Hummingbirds),, +4782,species,gybsab1,Gray-breasted Sabrewing,Campylopterus largipennis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4783,issf,gybsab2,Gray-breasted Sabrewing (largipennis),Campylopterus largipennis largipennis,Caprimulgiformes,Trochilidae (Hummingbirds),,gybsab1 +4784,issf,gybsab3,Gray-breasted Sabrewing (obscurus),Campylopterus largipennis obscurus,Caprimulgiformes,Trochilidae (Hummingbirds),,gybsab1 +4785,issf,gybsab5,Gray-breasted Sabrewing (diamantinensis),Campylopterus largipennis diamantinensis,Caprimulgiformes,Trochilidae (Hummingbirds),,gybsab1 +4786,species,gybsab4,Dry-forest Sabrewing,Campylopterus calcirupicola,Caprimulgiformes,Trochilidae (Hummingbirds),, +4787,species,rufsab1,Rufous Sabrewing,Campylopterus rufus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4788,species,viosab1,Violet Sabrewing,Campylopterus hemileucurus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4791,species,rubsab1,Rufous-breasted Sabrewing,Campylopterus hyperythrus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4792,species,whtsab1,White-tailed Sabrewing,Campylopterus ensipennis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4793,species,lazsab1,Lazuline Sabrewing,Campylopterus falcatus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4794,species,samsab1,Santa Marta Sabrewing,Campylopterus phainopeplus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4795,species,napsab1,Napo Sabrewing,Campylopterus villaviscensio,Caprimulgiformes,Trochilidae (Hummingbirds),, +4796,species,bubsab1,Buff-breasted Sabrewing,Campylopterus duidae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4799,species,swthum1,Swallow-tailed Hummingbird,Eupetomena macroura,Caprimulgiformes,Trochilidae (Hummingbirds),, +4805,species,whvplu1,White-vented Plumeleteer,Chalybura buffonii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4806,issf,whvplu2,White-vented Plumeleteer (White-vented),Chalybura buffonii [buffonii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,whvplu1 +4810,issf,whvplu3,White-vented Plumeleteer (Blue-bellied),Chalybura buffonii caeruleogaster,Caprimulgiformes,Trochilidae (Hummingbirds),,whvplu1 +4811,issf,whvplu4,White-vented Plumeleteer (Ecuadorian),Chalybura buffonii intermedia,Caprimulgiformes,Trochilidae (Hummingbirds),,whvplu1 +4812,species,brtplu1,Bronze-tailed Plumeleteer,Chalybura urochrysia,Caprimulgiformes,Trochilidae (Hummingbirds),, +4816,species,mexwoo1,Mexican Woodnymph,Thalurania ridgwayi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4817,species,crowoo1,Crowned Woodnymph,Thalurania colombica,Caprimulgiformes,Trochilidae (Hummingbirds),, +4818,form,vicwoo1,Crowned Woodnymph (Violet-crowned Woodnymph),Thalurania colombica (Violet-crowned Woodnymph),Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 +4819,issf,vicwoo3,Crowned Woodnymph (Northern Violet-crowned),Thalurania colombica venusta/townsendi,Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 +4822,issf,vicwoo4,Crowned Woodnymph (Colombian Violet-crowned),Thalurania colombica colombica/rostrifera,Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 +4825,form,grcwoo2,Crowned Woodnymph (Green-crowned Woodnymph),Thalurania colombica (Green-crowned Woodnymph),Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 +4826,issf,gncwoo1,Crowned Woodnymph (Northern Green-crowned),Thalurania colombica [fannyae Group],Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 +4830,issf,gncwoo2,Crowned Woodnymph (Emerald-bellied),Thalurania colombica hypochlora,Caprimulgiformes,Trochilidae (Hummingbirds),,crowoo1 +4831,species,fotwoo1,Fork-tailed Woodnymph,Thalurania furcata,Caprimulgiformes,Trochilidae (Hummingbirds),, +4844,species,lotwoo2,Long-tailed Woodnymph,Thalurania watertonii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4845,species,vicwoo2,Violet-capped Woodnymph,Thalurania glaucopis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4846,slash,y01132,Fork-tailed/Violet-capped Woodnymph,Thalurania furcata/glaucopis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4847,species,stthum1,Stripe-tailed Hummingbird,Eupherusa eximia,Caprimulgiformes,Trochilidae (Hummingbirds),, +4851,species,blchum2,Blue-capped Hummingbird,Eupherusa cyanophrys,Caprimulgiformes,Trochilidae (Hummingbirds),, +4852,species,whthum1,White-tailed Hummingbird,Eupherusa poliocerca,Caprimulgiformes,Trochilidae (Hummingbirds),, +4853,species,blbhum1,Black-bellied Hummingbird,Eupherusa nigriventris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4854,species,whteme1,White-tailed Emerald,Elvira chionura,Caprimulgiformes,Trochilidae (Hummingbirds),, +4855,species,coheme1,Coppery-headed Emerald,Elvira cupreiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, +4856,species,snowca1,Snowcap,Microchera albocoronata,Caprimulgiformes,Trochilidae (Hummingbirds),, +4859,species,somhum1,Sombre Hummingbird,Aphantochroa cirrochloris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4860,species,mashum1,Many-spotted Hummingbird,Taphrospilus hypostictus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4861,species,whthum2,White-throated Hummingbird,Leucochloris albicollis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4862,species,bufhum1,Buffy Hummingbird,Leucippus fallax,Caprimulgiformes,Trochilidae (Hummingbirds),, +4863,species,tumhum1,Tumbes Hummingbird,Leucippus baeri,Caprimulgiformes,Trochilidae (Hummingbirds),, +4864,species,spthum2,Spot-throated Hummingbird,Leucippus taczanowskii,Caprimulgiformes,Trochilidae (Hummingbirds),, +4865,species,olshum1,Olive-spotted Hummingbird,Leucippus chlorocercus,Caprimulgiformes,Trochilidae (Hummingbirds),, +4866,species,whbhum1,White-bellied Hummingbird,Amazilia chionogaster,Caprimulgiformes,Trochilidae (Hummingbirds),, +4869,species,gawhum1,Green-and-white Hummingbird,Amazilia viridicauda,Caprimulgiformes,Trochilidae (Hummingbirds),, +4870,species,chbhum1,Chestnut-bellied Hummingbird,Amazilia castaneiventris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4871,species,amahum1,Amazilia Hummingbird,Amazilia amazilia,Caprimulgiformes,Trochilidae (Hummingbirds),, +4872,issf,amahum2,Amazilia Hummingbird (White-throated),Amazilia amazilia [dumerilii Group],Caprimulgiformes,Trochilidae (Hummingbirds),,amahum1 +4877,issf,amahum4,Amazilia Hummingbird (Green-throated),Amazilia amazilia amazilia,Caprimulgiformes,Trochilidae (Hummingbirds),,amahum1 +4878,issf,amahum5,Amazilia Hummingbird (Blue-throated),Amazilia amazilia caeruleigularis,Caprimulgiformes,Trochilidae (Hummingbirds),,amahum1 +4879,species,whbeme1,White-bellied Emerald,Amazilia candida,Caprimulgiformes,Trochilidae (Hummingbirds),, +4883,species,honeme1,Honduran Emerald,Amazilia luciae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4884,species,whceme1,White-chested Emerald,Amazilia brevirostris,Caprimulgiformes,Trochilidae (Hummingbirds),, +4888,species,plbeme1,Plain-bellied Emerald,Amazilia leucogaster,Caprimulgiformes,Trochilidae (Hummingbirds),, +4891,species,vereme1,Versicolored Emerald,Amazilia versicolor,Caprimulgiformes,Trochilidae (Hummingbirds),, +4892,issf,vereme2,Versicolored Emerald (Versicolored),Amazilia versicolor [versicolor Group],Caprimulgiformes,Trochilidae (Hummingbirds),,vereme1 +4898,issf,vereme3,Versicolored Emerald (Rondonia),Amazilia versicolor rondoniae,Caprimulgiformes,Trochilidae (Hummingbirds),,vereme1 +4899,species,andeme1,Andean Emerald,Amazilia franciae,Caprimulgiformes,Trochilidae (Hummingbirds),, +4903,species,glteme1,Glittering-throated Emerald,Amazilia fimbriata,Caprimulgiformes,Trochilidae (Hummingbirds),, +4912,species,saseme1,Sapphire-spangled Emerald,Amazilia lactea,Caprimulgiformes,Trochilidae (Hummingbirds),, +4913,issf,saseme2,Sapphire-spangled Emerald (Sapphire-spangled),Amazilia lactea lactea/zimmeri,Caprimulgiformes,Trochilidae (Hummingbirds),,saseme1 +4916,issf,saseme3,Sapphire-spangled Emerald (Spot-vented),Amazilia lactea bartletti,Caprimulgiformes,Trochilidae (Hummingbirds),,saseme1 +4917,species,blchum1,Blue-chested Hummingbird,Amazilia amabilis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4918,species,chahum1,Charming Hummingbird,Amazilia decora,Caprimulgiformes,Trochilidae (Hummingbirds),, +4919,species,puchum1,Purple-chested Hummingbird,Amazilia rosenbergi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4920,species,manhum1,Mangrove Hummingbird,Amazilia boucardi,Caprimulgiformes,Trochilidae (Hummingbirds),, +4921,species,azchum1,Azure-crowned Hummingbird,Amazilia cyanocephala,Caprimulgiformes,Trochilidae (Hummingbirds),, +4922,issf,azchum2,Azure-crowned Hummingbird (Azure-crowned),Amazilia cyanocephala cyanocephala,Caprimulgiformes,Trochilidae (Hummingbirds),,azchum1 +4923,issf,azchum3,Azure-crowned Hummingbird (Mosquitia),Amazilia cyanocephala chlorostephana,Caprimulgiformes,Trochilidae (Hummingbirds),,azchum1 +4924,hybrid,x00916,Honduran Emerald x Azure-crowned Hummingbird (hybrid),Amazilia luciae x cyanocephala,Caprimulgiformes,Trochilidae (Hummingbirds),, +4925,species,berhum,Berylline Hummingbird,Amazilia beryllina,Caprimulgiformes,Trochilidae (Hummingbirds),, +4926,issf,berhum1,Berylline Hummingbird (Northern),Amazilia beryllina beryllina/viola,Caprimulgiformes,Trochilidae (Hummingbirds),,berhum +4929,issf,berhum2,Berylline Hummingbird (Sumichrast's),Amazilia beryllina [devillei Group],Caprimulgiformes,Trochilidae (Hummingbirds),,berhum +4933,hybrid,mxbhum1,Rivoli's x Berylline Hummingbird (hybrid),Eugenes fulgens x Amazilia beryllina,Caprimulgiformes,Trochilidae (Hummingbirds),, +4934,species,blthum1,Blue-tailed Hummingbird,Amazilia cyanura,Caprimulgiformes,Trochilidae (Hummingbirds),, +4938,species,stvhum2,Steely-vented Hummingbird,Amazilia saucerottei,Caprimulgiformes,Trochilidae (Hummingbirds),, +4942,species,buvhum1,Blue-vented Hummingbird,Amazilia hoffmanni,Caprimulgiformes,Trochilidae (Hummingbirds),, +4943,species,inchum1,Indigo-capped Hummingbird,Amazilia cyanifrons,Caprimulgiformes,Trochilidae (Hummingbirds),, +4944,form,guahum1,Guanacaste Hummingbird (unrecognized species),Amazilia alfaroana [unrecognized species],Caprimulgiformes,Trochilidae (Hummingbirds),, +4945,species,snbhum1,Snowy-bellied Hummingbird,Amazilia edward,Caprimulgiformes,Trochilidae (Hummingbirds),, +4950,species,grbhum1,Green-bellied Hummingbird,Amazilia viridigaster,Caprimulgiformes,Trochilidae (Hummingbirds),, +4951,issf,gnbhum1,Green-bellied Hummingbird (Green-bellied),Amazilia viridigaster [viridigaster Group],Caprimulgiformes,Trochilidae (Hummingbirds),,grbhum1 +4955,issf,gnbhum2,Green-bellied Hummingbird (Copper-tailed),Amazilia viridigaster [cupreicauda Group],Caprimulgiformes,Trochilidae (Hummingbirds),,grbhum1 +4959,species,rtlhum,Rufous-tailed Hummingbird,Amazilia tzacatl,Caprimulgiformes,Trochilidae (Hummingbirds),, +4960,issf,ruthum2,Rufous-tailed Hummingbird (Rufous-tailed),Amazilia tzacatl [tzacatl Group],Caprimulgiformes,Trochilidae (Hummingbirds),,rtlhum +4965,issf,ruthum3,Rufous-tailed Hummingbird (Escudo),Amazilia tzacatl handleyi,Caprimulgiformes,Trochilidae (Hummingbirds),,rtlhum +4966,species,bubhum,Buff-bellied Hummingbird,Amazilia yucatanensis,Caprimulgiformes,Trochilidae (Hummingbirds),, +4967,issf,bubhum1,Buff-bellied Hummingbird (Yucatan),Amazilia yucatanensis yucatanensis,Caprimulgiformes,Trochilidae (Hummingbirds),,bubhum +4968,issf,bubhum2,Buff-bellied Hummingbird (Northern),Amazilia yucatanensis cerviniventris/chalconota,Caprimulgiformes,Trochilidae (Hummingbirds),,bubhum +4971,species,cinhum1,Cinnamon Hummingbird,Amazilia rutila,Caprimulgiformes,Trochilidae (Hummingbirds),, +4972,issf,cinhum2,Cinnamon Hummingbird (Tres Marias Is.),Amazilia rutila graysoni,Caprimulgiformes,Trochilidae (Hummingbirds),,cinhum1 +4973,issf,cinhum3,Cinnamon Hummingbird (Mainland),Amazilia rutila [rutila Group],Caprimulgiformes,Trochilidae (Hummingbirds),,cinhum1 +4977,hybrid,x00947,Rufous-tailed x Cinnamon Hummingbird (hybrid),Amazilia tzacatl x rutila,Caprimulgiformes,Trochilidae (Hummingbirds),, +4978,species,vichum,Violet-crowned Hummingbird,Amazilia violiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, +4981,hybrid,x00633,Broad-billed x Violet-crowned Hummingbird (hybrid),Cynanthus latirostris x Amazilia violiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, +4982,species,grfhum1,Green-fronted Hummingbird,Amazilia viridifrons,Caprimulgiformes,Trochilidae (Hummingbirds),, +4983,issf,gnfhum1,Green-fronted Hummingbird (Green-fronted),Amazilia viridifrons viridifrons,Caprimulgiformes,Trochilidae (Hummingbirds),,grfhum1 +4984,issf,gnfhum2,Green-fronted Hummingbird (Cinnamon-sided),Amazilia viridifrons wagneri,Caprimulgiformes,Trochilidae (Hummingbirds),,grfhum1 +4985,species,corhum1,Copper-rumped Hummingbird,Amazilia tobaci,Caprimulgiformes,Trochilidae (Hummingbirds),, +4993,spuh,amazil1,Amazilia sp.,Amazilia sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +4994,species,gotsap1,Golden-tailed Sapphire,Chrysuronia oenone,Caprimulgiformes,Trochilidae (Hummingbirds),, +4998,species,ruchum1,Pirre Hummingbird,Goethalsia bella,Caprimulgiformes,Trochilidae (Hummingbirds),, +4999,species,vichum1,Violet-capped Hummingbird,Goldmania violiceps,Caprimulgiformes,Trochilidae (Hummingbirds),, +5000,species,stream1,Streamertail,Trochilus polytmus,Caprimulgiformes,Trochilidae (Hummingbirds),, +5001,issf,stream2,Streamertail (Red-billed),Trochilus polytmus polytmus,Caprimulgiformes,Trochilidae (Hummingbirds),,stream1 +5002,issf,stream3,Streamertail (Black-billed),Trochilus polytmus scitulus,Caprimulgiformes,Trochilidae (Hummingbirds),,stream1 +5003,intergrade,stream4,Streamertail (Red-billed x Black-billed),Trochilus polytmus polytmus x scitulus,Caprimulgiformes,Trochilidae (Hummingbirds),,stream1 +5004,species,sathum1,Sapphire-throated Hummingbird,Lepidopyga coeruleogularis,Caprimulgiformes,Trochilidae (Hummingbirds),, +5008,species,sabhum1,Sapphire-bellied Hummingbird,Lepidopyga lilliae,Caprimulgiformes,Trochilidae (Hummingbirds),, +5009,species,shghum1,Shining-green Hummingbird,Lepidopyga goudoti,Caprimulgiformes,Trochilidae (Hummingbirds),, +5014,spuh,lepido3,Lepidopyga sp.,Lepidopyga sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +5015,species,vibhum1,Violet-bellied Hummingbird,Juliamyia julie,Caprimulgiformes,Trochilidae (Hummingbirds),, +5019,species,humsap2,Humboldt's Sapphire,Hylocharis humboldtii,Caprimulgiformes,Trochilidae (Hummingbirds),, +5020,species,bltgol1,Blue-throated Goldentail,Hylocharis eliciae,Caprimulgiformes,Trochilidae (Hummingbirds),, +5023,species,rutsap1,Rufous-throated Sapphire,Hylocharis sapphirina,Caprimulgiformes,Trochilidae (Hummingbirds),, +5024,species,whcsap1,White-chinned Sapphire,Hylocharis cyanus,Caprimulgiformes,Trochilidae (Hummingbirds),, +5030,species,gilhum1,Gilded Hummingbird,Hylocharis chrysura,Caprimulgiformes,Trochilidae (Hummingbirds),, +5031,species,blhsap1,Blue-headed Sapphire,Hylocharis grayi,Caprimulgiformes,Trochilidae (Hummingbirds),, +5032,species,whehum,White-eared Hummingbird,Hylocharis leucotis,Caprimulgiformes,Trochilidae (Hummingbirds),, +5036,species,xanhum,Xantus's Hummingbird,Hylocharis xantusii,Caprimulgiformes,Trochilidae (Hummingbirds),, +5037,hybrid,bogsun2,Bogota Sunangel (hybrid),Aglaiocercus kingii x Trochilidae sp. (Bogota Sunangel),Caprimulgiformes,Trochilidae (Hummingbirds),, +5038,spuh,hummin,hummingbird sp.,Trochilidae sp.,Caprimulgiformes,Trochilidae (Hummingbirds),, +5039,species,hoatzi1,Hoatzin,Opisthocomus hoazin,Opisthocomiformes,Opisthocomidae (Hoatzin),Hoatzin, +5040,species,madwor1,Madagascar Wood-Rail,Mentrocrex kioloides,Gruiformes,Sarothruridae (Flufftails),Flufftails, +5043,species,tsiwor1,Tsingy Wood-Rail,Mentrocrex beankaensis,Gruiformes,Sarothruridae (Flufftails),, +5044,species,whsflu1,White-spotted Flufftail,Sarothrura pulchra,Gruiformes,Sarothruridae (Flufftails),, +5045,issf,whsflu2,White-spotted Flufftail (Northern),Sarothrura pulchra [pulchra Group],Gruiformes,Sarothruridae (Flufftails),,whsflu1 +5049,issf,whsflu3,White-spotted Flufftail (Southern),Sarothrura pulchra centralis,Gruiformes,Sarothruridae (Flufftails),,whsflu1 +5050,species,busflu1,Buff-spotted Flufftail,Sarothrura elegans,Gruiformes,Sarothruridae (Flufftails),, +5053,species,recflu1,Red-chested Flufftail,Sarothrura rufa,Gruiformes,Sarothruridae (Flufftails),, +5057,species,chhflu1,Chestnut-headed Flufftail,Sarothrura lugens,Gruiformes,Sarothruridae (Flufftails),, +5060,species,stbflu1,Streaky-breasted Flufftail,Sarothrura boehmi,Gruiformes,Sarothruridae (Flufftails),, +5061,species,strflu1,Striped Flufftail,Sarothrura affinis,Gruiformes,Sarothruridae (Flufftails),, +5064,species,madflu1,Madagascar Flufftail,Sarothrura insularis,Gruiformes,Sarothruridae (Flufftails),, +5065,species,whwflu1,White-winged Flufftail,Sarothrura ayresi,Gruiformes,Sarothruridae (Flufftails),, +5066,species,slbflu1,Slender-billed Flufftail,Sarothrura watersi,Gruiformes,Sarothruridae (Flufftails),, +5067,spuh,flufft1,flufftail sp.,Sarothrura sp.,Gruiformes,Sarothruridae (Flufftails),, +5068,species,ridrai1,Ridgway's Rail,Rallus obsoletus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)","Rails, Gallinules, and Allies", +5069,issf,clarai3,Ridgway's Rail (San Francisco Bay),Rallus obsoletus obsoletus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 +5070,issf,clarai4,Ridgway's Rail (Light-footed),Rallus obsoletus levipes,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 +5071,issf,clarai6,Ridgway's Rail (South Baja),Rallus obsoletus beldingi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 +5072,issf,clarai5,Ridgway's Rail (Yuma),Rallus obsoletus yumanensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,ridrai1 +5073,species,kinrai2,Aztec Rail,Rallus tenuirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5074,species,manrai1,Mangrove Rail,Rallus longirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5075,issf,manrai2,Mangrove Rail (Fonseca),Rallus longirostris berryorum,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,manrai1 +5076,issf,clarai10,Mangrove Rail (Ecuadorian),Rallus longirostris cypereti,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,manrai1 +5077,issf,clarai8,Mangrove Rail (Atlantic),Rallus longirostris [longirostris Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,manrai1 +5083,species,kinrai4,King Rail,Rallus elegans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5084,issf,kinrai1,King Rail (Northern),Rallus elegans elegans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,kinrai4 +5085,issf,kinrai3,King Rail (Cuban),Rallus elegans ramsdeni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,kinrai4 +5086,slash,kinrai,Aztec/King Rail,Rallus tenuirostris/elegans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5087,species,clarai11,Clapper Rail,Rallus crepitans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5088,issf,clarai1,Clapper Rail (Atlantic Coast),Rallus crepitans crepitans/waynei,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 +5091,issf,clarai2,Clapper Rail (Gulf Coast),Rallus crepitans saturatus/scottii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 +5094,issf,clarai7,Clapper Rail (Caribbean),Rallus crepitans [caribaeus Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 +5099,issf,clarai9,Clapper Rail (Yucatan),Rallus crepitans [pallidus Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,clarai11 +5103,hybrid,x00948,King x Clapper Rail (hybrid),Rallus elegans x crepitans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5104,slash,rallus,King/Clapper Rail,Rallus elegans/crepitans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5105,slash,clarai,Ridgway's/Mangrove/Clapper Rail,Rallus obsoletus/longirostris/crepitans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5106,spuh,larrai1,large rail sp.,Rallus sp. (large Rallus sp.),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5107,species,plfrai1,Plain-flanked Rail,Rallus wetmorei,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5108,species,virrai,Virginia Rail,Rallus limicola,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5109,issf,virrai2,Virginia Rail (Virginia),Rallus limicola limicola/friedmanni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,virrai +5112,issf,virrai1,Virginia Rail (Ecuadorian),Rallus limicola aequatorialis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,virrai +5113,slash,y00602,King/Virginia Rail,Rallus elegans/limicola,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5114,species,bograi1,Bogota Rail,Rallus semiplumbeus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5117,species,ausrai1,Austral Rail,Rallus antarcticus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5118,species,watrai1,Water Rail,Rallus aquaticus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5122,species,bncrai1,Brown-cheeked Rail,Rallus indicus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5123,slash,y00949,Water/Brown-cheeked Rail,Rallus aquaticus/indicus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5124,species,afrrai1,African Rail,Rallus caerulescens,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5125,species,madrai1,Madagascar Rail,Rallus madagascariensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5126,spuh,rallus1,Rallus sp.,Rallus sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5127,species,whtrai1,White-throated Rail,Dryolimnas cuvieri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5131,species,reurai1,Reunion Rail,Dryolimnas augusti,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5132,species,redrai1,Red Rail,Aphanapteryx bonasia,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5133,species,rodrai1,Rodrigues Rail,Erythromachus leguati,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5134,species,corcra,Corn Crake,Crex crex,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5135,species,afrcra1,African Crake,Crex egregia,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5136,species,rourai1,Rouget's Rail,Rougetius rougetii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5137,species,inirai1,Inaccessible Island Rail,Atlantisia rogersi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5138,species,sthcra1,St. Helena Crake,Atlantisia podarces,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5139,species,asccra1,Ascension Crake,Mundia elpenor,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5140,species,plarai1,Snoring Rail,Aramidopsis plateni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5141,species,slbrai1,Slaty-breasted Rail,Lewinia striata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5149,species,luzrai1,Luzon Rail,Lewinia mirifica,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5150,species,lewrai1,Lewin's Rail,Lewinia pectoralis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5159,species,auirai1,Auckland Islands Rail,Lewinia muelleri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5160,species,bafrai2,Blue-faced Rail,Gymnocrex rosenbergii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5161,species,baerai1,Bare-eyed Rail,Gymnocrex plumbeiventris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5164,species,talrai1,Talaud Rail,Gymnocrex talaudensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5165,species,hawrai1,Hawkins's Rail,Diaphorapteryx hawkinsi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5166,species,calrai1,Calayan Rail,Gallirallus calayanensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5167,species,invrai1,Invisible Rail,Gallirallus wallacii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5168,species,cherai1,Chestnut Rail,Gallirallus castaneoventris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5171,species,weka1,Weka,Gallirallus australis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5176,species,necrai1,New Caledonian Rail,Gallirallus lafresnayanus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5177,species,lohrai1,Lord Howe Rail,Gallirallus sylvestris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5178,species,okirai1,Okinawa Rail,Gallirallus okinawae,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5179,species,tahrai1,Tahiti Rail,Gallirallus pacificus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5180,species,bubrai1,Buff-banded Rail,Gallirallus philippensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5202,species,chirai1,Chatham Islands Rail,Gallirallus modestus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5203,species,dierai1,Dieffenbach's Rail,Gallirallus dieffenbachii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5204,species,nebrai1,New Britain Rail,Gallirallus insignis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5205,species,woorai1,Woodford's Rail,Gallirallus woodfordi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5206,issf,woorai2,Woodford's Rail (Bougainville),Gallirallus woodfordi tertius,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,woorai1 +5207,issf,woorai3,Woodford's Rail (Santa Isabel),Gallirallus woodfordi immaculatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,woorai1 +5208,issf,woorai4,Woodford's Rail (Guadalcanal),Gallirallus woodfordi woodfordi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,woorai1 +5209,species,bawrai1,Bar-winged Rail,Gallirallus poecilopterus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5210,species,guarai1,Guam Rail,Gallirallus owstoni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5211,species,wairai1,Wake Island Rail,Gallirallus wakensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5212,species,barrai1,Barred Rail,Gallirallus torquatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5218,species,rovrai1,Roviana Rail,Gallirallus rovianae,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5219,species,gytrai1,Gray-throated Rail,Canirallus oculeus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5220,species,astcra1,Ash-throated Crake,Mustelirallus albicollis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5223,species,colcra2,Colombian Crake,Mustelirallus colombianus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5226,species,pabcra,Paint-billed Crake,Mustelirallus erythrops,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5229,species,zaprai1,Zapata Rail,Cyanolimnas cerverai,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5230,species,sporai,Spotted Rail,Pardirallus maculatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5233,species,blarai1,Blackish Rail,Pardirallus nigricans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5236,species,plurai1,Plumbeous Rail,Pardirallus sanguinolentus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5243,species,unicra1,Uniform Crake,Amaurolimnas concolor,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5247,species,giwrai1,Giant Wood-Rail,Aramides ypecaha,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5248,species,brwrai1,Brown Wood-Rail,Aramides wolfi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5249,species,liwrai1,Little Wood-Rail,Aramides mangle,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5250,species,rnwrai1,Rufous-necked Wood-Rail,Aramides axillaris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5251,species,runwor1,Russet-naped Wood-Rail,Aramides albiventris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5252,species,gycwor1,Gray-cowled Wood-Rail,Aramides cajaneus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5253,issf,gycwor2,Gray-cowled Wood-Rail (Gray-cowled),Aramides cajaneus cajaneus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,gycwor1 +5254,issf,gycwor3,Gray-cowled Wood-Rail (Gray-backed),Aramides cajaneus avicenniae,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,gycwor1 +5255,slash,gnwrai1,Russet-naped/Gray-cowled Wood-Rail,Aramides albiventris/cajaneus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5256,species,rwwrai1,Red-winged Wood-Rail,Aramides calopterus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5257,species,sbwrai1,Slaty-breasted Wood-Rail,Aramides saracura,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5258,spuh,wood-r1,wood-rail sp.,Aramides sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5259,species,btnhen1,Black-tailed Nativehen,Tribonyx ventralis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5260,species,hodwat1,Hodgen's Waterhen,Tribonyx hodgenorum,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5261,species,tanhen1,Tasmanian Nativehen,Tribonyx mortierii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5262,species,spfgal1,Spot-flanked Gallinule,Porphyriops melanops,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5266,species,sora,Sora,Porzana carolina,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5267,species,spocra1,Spotted Crake,Porzana porzana,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5268,species,auscra1,Australian Crake,Porzana fluminea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5269,species,dowcra1,Dot-winged Crake,Porzana spiloptera,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5270,species,lesmoo1,Lesser Moorhen,Paragallinula angulata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5271,species,sacmoo1,Makira Moorhen,Gallinula silvestris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5272,species,trimoo2,Tristan Moorhen,Gallinula nesiotis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5273,species,trimoo3,Gough Moorhen,Gallinula comeri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5274,species,commoo3,Eurasian Moorhen,Gallinula chloropus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5280,species,comgal1,Common Gallinule,Gallinula galeata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5281,issf,commoo2,Common Gallinule (American),Gallinula galeata [galeata Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,comgal1 +5287,issf,comgal2,Common Gallinule (Altiplano),Gallinula galeata garmani,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,comgal1 +5288,issf,commoo1,Common Gallinule (Hawaiian),Gallinula galeata sandvicensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,comgal1 +5289,slash,commoo,Eurasian Moorhen/Common Gallinule,Gallinula chloropus/galeata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5290,species,dusmoo1,Dusky Moorhen,Gallinula tenebrosa,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5294,species,sammoo1,Samoan Moorhen,Gallinula pacifica,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5295,species,refcoo1,Red-fronted Coot,Fulica rufifrons,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5296,species,horcoo1,Horned Coot,Fulica cornuta,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5297,species,giacoo1,Giant Coot,Fulica gigantea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5298,species,regcoo1,Red-gartered Coot,Fulica armillata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5299,species,eurcoo,Eurasian Coot,Fulica atra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5304,species,mascoo1,Mascarene Coot,Fulica newtonii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5305,species,rekcoo1,Red-knobbed Coot,Fulica cristata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5306,slash,y00680,Eurasian/Red-knobbed Coot,Fulica atra/cristata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5307,hybrid,x00911,Eurasian x Red-knobbed Coot (hybrid),Fulica atra x cristata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5308,species,hawcoo,Hawaiian Coot,Fulica alai,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5309,form,hawcoo1,Hawaiian Coot (Red-shielded),Fulica alai (Red-shielded),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,hawcoo +5310,form,hawcoo2,Hawaiian Coot (White-shielded),Fulica alai (White-shielded),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,hawcoo +5311,species,y00475,American Coot,Fulica americana,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5314,form,amecoo,American Coot (Red-shielded),Fulica americana (Red-shielded),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,y00475 +5315,form,carcoo1,American Coot (White-shielded),Fulica americana (White-shielded),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,y00475 +5316,species,slccoo1,Slate-colored Coot,Fulica ardesiaca,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5317,form,slccoo2,Slate-colored Coot (White-billed),Fulica ardesiaca (White-billed),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,slccoo1 +5318,form,slccoo3,Slate-colored Coot (Yellow-billed),Fulica ardesiaca (Yellow-billed),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,slccoo1 +5319,hybrid,x00845,Red-gartered x Slate-colored Coot (hybrid),Fulica armillata x ardesiaca,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5320,species,whwcoo1,White-winged Coot,Fulica leucoptera,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5321,spuh,coot1,coot sp.,Fulica sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5322,species,allgal1,Allen's Gallinule,Porphyrio alleni,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5323,species,purgal2,Purple Gallinule,Porphyrio martinica,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5324,species,azugal1,Azure Gallinule,Porphyrio flavirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5325,species,marswa1,Marquesan Swamphen,Porphyrio paepae,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5326,species,necgal1,New Caledonian Gallinule,Porphyrio kukwiedei,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5327,species,reugal1,Reunion Gallinule,Porphyrio caerulescens,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5328,species,purswa1,Western Swamphen,Porphyrio porphyrio,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5329,species,purswa4,Black-backed Swamphen,Porphyrio indicus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5330,species,purswa2,African Swamphen,Porphyrio madagascariensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5331,species,takahe3,South Island Takahe,Porphyrio hochstetteri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5332,species,takahe2,North Island Takahe,Porphyrio mantelli,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5333,species,purswa6,Australasian Swamphen,Porphyrio melanotus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5339,species,purswa5,Philippine Swamphen,Porphyrio pulverulentus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5340,species,lohswa1,Lord Howe Swamphen,Porphyrio albus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5341,species,purswa3,Gray-headed Swamphen,Porphyrio poliocephalus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5346,hybrid,x00844,Black-backed x Gray-headed Swamphen (hybrid),Porphyrio indicus x poliocephalus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5347,slash,y00951,Black-backed/Gray-headed Swamphen,Porphyrio indicus/poliocephalus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5348,spuh,purswa,swamphen sp.,Porphyrio sp. (swamphen sp.),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5349,spuh,y00614,moorhen/coot/gallinule sp.,Gallinula/Fulica/Porphyrio sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5350,species,nkurai1,Nkulengu Rail,Himantornis haematopus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5351,species,ngfrai1,New Guinea Flightless Rail,Megacrex inepta,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5354,species,waterc1,Watercock,Gallicrex cinerea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5355,species,isabuh1,Isabelline Bush-hen,Amaurornis isabellina,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5356,species,plabuh1,Plain Bush-hen,Amaurornis olivacea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5357,species,whbwat1,White-breasted Waterhen,Amaurornis phoenicurus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5362,species,talbuh1,Talaud Bush-hen,Amaurornis magnirostris,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5363,species,rutbuh1,Pale-vented Bush-hen,Amaurornis moluccana,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5368,species,whbcra1,White-browed Crake,Amaurornis cinerea,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5369,species,strcra1,Striped Crake,Amaurornis marginalis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5370,species,chfrai1,Chestnut Forest-Rail,Rallina rubra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5374,species,wsfrai1,White-striped Forest-Rail,Rallina leucospila,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5375,species,forrai1,Forbes's Rail,Rallina forbesi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5380,species,mayrai1,Mayr's Rail,Rallina mayri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5383,species,rencra1,Red-necked Crake,Rallina tricolor,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5384,species,andcra1,Andaman Crake,Rallina canningi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5385,form,grncra1,Great Nicobar Crake (undescribed form),Rallina [undescribed form],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5386,species,relcra1,Red-legged Crake,Rallina fasciata,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5387,species,sllcra1,Slaty-legged Crake,Rallina eurizonoides,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5395,spuh,rallin1,Rallina sp.,Rallina sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5396,species,rubcra1,Ruddy-breasted Crake,Zapornia fusca,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5401,species,babcra1,Band-bellied Crake,Zapornia paykullii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5402,species,brocra1,Brown Crake,Zapornia akool,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5405,species,blacra1,Black Crake,Zapornia flavirostra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5406,species,litcra1,Little Crake,Zapornia parva,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5407,species,baicra1,Baillon's Crake,Zapornia pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5408,issf,baicra2,Baillon's Crake (Western),Zapornia pusilla intermedia,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,baicra1 +5409,issf,baicra3,Baillon's Crake (Eastern),Zapornia pusilla pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,baicra1 +5410,issf,baicra4,Baillon's Crake (Australasian),Zapornia pusilla [palustris Group],Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,baicra1 +5415,slash,y00950,Little/Baillon's Crake,Zapornia parva/pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5416,slash,y01026,Spotted/Little/Baillon's Crake,Porzana porzana/Zapornia parva/pusilla,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5417,species,sthrai1,St. Helena Rail,Zapornia astrictocarpus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5418,species,layrai,Laysan Rail,Zapornia palmeri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5419,species,sakrai1,Sakalava Rail,Zapornia olivieri,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5420,species,bltcra1,Black-tailed Crake,Zapornia bicolor,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5421,species,hawrai,Hawaiian Rail,Zapornia sandwichensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5422,species,milrai1,Miller's Rail,Zapornia nigra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5423,species,heicra1,Henderson Island Crake,Zapornia atra,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5424,species,spocra2,Spotless Crake,Zapornia tabuensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5429,species,koscra1,Kosrae Crake,Zapornia monasa,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5430,spuh,zaporn1,Zapornia sp.,Zapornia sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5431,species,ocecra1,Ocellated Crake,Micropygia schomburgkii,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5434,species,chhcra1,Chestnut-headed Crake,Anurolimnas castaneiceps,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5437,species,ruccra1,Russet-crowned Crake,Anurolimnas viridis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5440,species,blbcra1,Black-banded Crake,Anurolimnas fasciatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5441,species,swirai1,Swinhoe's Rail,Coturnicops exquisitus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5442,species,yelrai,Yellow Rail,Coturnicops noveboracensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5443,issf,yelrai1,Yellow Rail (Northern),Coturnicops noveboracensis noveboracensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,yelrai +5444,issf,yelrai2,Yellow Rail (Goldman's),Coturnicops noveboracensis goldmani,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,yelrai +5445,species,sperai1,Speckled Rail,Coturnicops notatus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5446,species,yebcra1,Yellow-breasted Crake,Hapalocrex flaviventer,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5452,spuh,porzan1,Porzana/Zapornia/Hapalocrex sp.,Porzana/Zapornia/Hapalocrex sp.,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5453,species,rufcra2,Rusty-flanked Crake,Laterallus levraudi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5454,species,ruscra1,Rufous-sided Crake,Laterallus melanophaius,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5457,species,rudcra1,Ruddy Crake,Laterallus ruber,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5458,species,whtcra1,White-throated Crake,Laterallus albigularis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5459,issf,whtcra2,White-throated Crake (Rufous-faced),Laterallus albigularis albigularis/cerdaleus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,whtcra1 +5462,issf,whtcra3,White-throated Crake (Gray-faced),Laterallus albigularis cinereiceps,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,whtcra1 +5463,slash,y00844,Ruddy/White-throated Crake,Laterallus ruber/albigularis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5464,species,grbcra1,Gray-breasted Crake,Laterallus exilis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5465,species,galrai1,Galapagos Rail,Laterallus spilonota,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5466,species,blkrai,Black Rail,Laterallus jamaicensis,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5467,issf,blkrai1,Black Rail (Northern),Laterallus jamaicensis jamaicensis/coturniculus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,blkrai +5470,issf,blkrai2,Black Rail (Southern South America),Laterallus jamaicensis salinasi/murivagans,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,blkrai +5473,issf,blkrai3,Black Rail (Junin),Laterallus jamaicensis tuerosi,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",,blkrai +5474,species,rawcra1,Red-and-white Crake,Laterallus leucopyrrhus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5475,slash,y01025,Rufous-sided/Red-and-white Crake,Laterallus melanophaius/leucopyrrhus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5476,species,rufcra1,Rufous-faced Crake,Laterallus xenopterus,Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5477,spuh,rail1,rail/crake sp.,Rallidae sp. (rail/crake sp.),Gruiformes,"Rallidae (Rails, Gallinules, and Coots)",, +5478,species,afrfin1,African Finfoot,Podica senegalensis,Gruiformes,Heliornithidae (Finfoots),Finfoots, +5483,species,masfin3,Masked Finfoot,Heliopais personatus,Gruiformes,Heliornithidae (Finfoots),, +5484,species,sungre1,Sungrebe,Heliornis fulica,Gruiformes,Heliornithidae (Finfoots),, +5485,species,limpki,Limpkin,Aramus guarauna,Gruiformes,Aramidae (Limpkin),Limpkin, +5486,issf,limpki1,Limpkin (Speckled),Aramus guarauna [pictus Group],Gruiformes,Aramidae (Limpkin),,limpki +5490,issf,limpki2,Limpkin (Brown-backed),Aramus guarauna guarauna,Gruiformes,Aramidae (Limpkin),,limpki +5491,species,gywtru1,Gray-winged Trumpeter,Psophia crepitans,Gruiformes,Psophiidae (Trumpeters),Trumpeters, +5492,issf,gywtru2,Gray-winged Trumpeter (Napo),Psophia crepitans napensis,Gruiformes,Psophiidae (Trumpeters),,gywtru1 +5493,issf,pawtru3,Gray-winged Trumpeter (Ochre-winged),Psophia crepitans ochroptera,Gruiformes,Psophiidae (Trumpeters),,gywtru1 +5494,issf,gywtru3,Gray-winged Trumpeter (Gray-winged),Psophia crepitans crepitans,Gruiformes,Psophiidae (Trumpeters),,gywtru1 +5495,species,pawtru2,Pale-winged Trumpeter,Psophia leucoptera,Gruiformes,Psophiidae (Trumpeters),, +5496,species,dawtru1,Dark-winged Trumpeter,Psophia viridis,Gruiformes,Psophiidae (Trumpeters),, +5497,issf,dawtru4,Dark-winged Trumpeter (Green-backed),Psophia viridis viridis,Gruiformes,Psophiidae (Trumpeters),,dawtru1 +5498,issf,dawtru2,Dark-winged Trumpeter (Dusky-backed),Psophia viridis dextralis,Gruiformes,Psophiidae (Trumpeters),,dawtru1 +5499,issf,dawtru5,Dark-winged Trumpeter (Xingu),Psophia viridis interjecta,Gruiformes,Psophiidae (Trumpeters),,dawtru1 +5500,issf,dawtru3,Dark-winged Trumpeter (Black-backed),Psophia viridis obscura,Gruiformes,Psophiidae (Trumpeters),,dawtru1 +5501,spuh,trumpe1,trumpeter sp.,Psophia sp.,Gruiformes,Psophiidae (Trumpeters),, +5502,species,grccra1,Gray Crowned-Crane,Balearica regulorum,Gruiformes,Gruidae (Cranes),Cranes, +5505,species,blccra1,Black Crowned-Crane,Balearica pavonina,Gruiformes,Gruidae (Cranes),, +5508,species,demcra1,Demoiselle Crane,Anthropoides virgo,Gruiformes,Gruidae (Cranes),, +5509,species,blucra2,Blue Crane,Anthropoides paradiseus,Gruiformes,Gruidae (Cranes),, +5510,species,watcra2,Wattled Crane,Bugeranus carunculatus,Gruiformes,Gruidae (Cranes),, +5511,species,sibcra1,Siberian Crane,Leucogeranus leucogeranus,Gruiformes,Gruidae (Cranes),, +5512,species,sancra,Sandhill Crane,Antigone canadensis,Gruiformes,Gruidae (Cranes),, +5513,issf,sancra1,Sandhill Crane (canadensis),Antigone canadensis canadensis,Gruiformes,Gruidae (Cranes),,sancra +5514,issf,sancra2,Sandhill Crane (tabida/rowani),Antigone canadensis tabida/rowani,Gruiformes,Gruidae (Cranes),,sancra +5517,issf,sancra4,Sandhill Crane (pulla),Antigone canadensis pulla,Gruiformes,Gruidae (Cranes),,sancra +5518,issf,sancra5,Sandhill Crane (pratensis),Antigone canadensis pratensis,Gruiformes,Gruidae (Cranes),,sancra +5519,issf,sancra6,Sandhill Crane (nesiotes),Antigone canadensis nesiotes,Gruiformes,Gruidae (Cranes),,sancra +5520,species,sarcra1,Sarus Crane,Antigone antigone,Gruiformes,Gruidae (Cranes),, +5524,species,brolga1,Brolga,Antigone rubicunda,Gruiformes,Gruidae (Cranes),, +5525,hybrid,x00949,Sarus Crane x Brolga (hybrid),Antigone antigone x rubicunda,Gruiformes,Gruidae (Cranes),, +5526,species,whncra1,White-naped Crane,Antigone vipio,Gruiformes,Gruidae (Cranes),, +5527,species,comcra,Common Crane,Grus grus,Gruiformes,Gruidae (Cranes),, +5528,hybrid,x00657,Sandhill x Common Crane (hybrid),Antigone canadensis x Grus grus,Gruiformes,Gruidae (Cranes),, +5529,species,hoocra1,Hooded Crane,Grus monacha,Gruiformes,Gruidae (Cranes),, +5530,hybrid,x00884,Common x Hooded Crane (hybrid),Grus grus x monacha,Gruiformes,Gruidae (Cranes),, +5531,species,whocra,Whooping Crane,Grus americana,Gruiformes,Gruidae (Cranes),, +5532,hybrid,x00790,Sandhill x Whooping Crane (hybrid),Antigone canadensis x Grus americana,Gruiformes,Gruidae (Cranes),, +5533,species,blncra1,Black-necked Crane,Grus nigricollis,Gruiformes,Gruidae (Cranes),, +5534,species,reccra1,Red-crowned Crane,Grus japonensis,Gruiformes,Gruidae (Cranes),, +5535,spuh,crane1,crane sp.,Gruidae sp.,Gruiformes,Gruidae (Cranes),, +5536,species,snoshe2,Snowy Sheathbill,Chionis albus,Charadriiformes,Chionidae (Sheathbills),Shorebirds, +5537,species,blfshe1,Black-faced Sheathbill,Chionis minor,Charadriiformes,Chionidae (Sheathbills),, +5542,species,magplo1,Magellanic Plover,Pluvianellus socialis,Charadriiformes,Pluvianellidae (Magellanic Plover),, +5543,species,watkne1,Water Thick-knee,Burhinus vermiculatus,Charadriiformes,Burhinidae (Thick-knees),, +5546,species,eutkne1,Eurasian Thick-knee,Burhinus oedicnemus,Charadriiformes,Burhinidae (Thick-knees),, +5552,species,indthk1,Indian Thick-knee,Burhinus indicus,Charadriiformes,Burhinidae (Thick-knees),, +5553,species,setkne1,Senegal Thick-knee,Burhinus senegalensis,Charadriiformes,Burhinidae (Thick-knees),, +5554,species,sptkne1,Spotted Thick-knee,Burhinus capensis,Charadriiformes,Burhinidae (Thick-knees),, +5559,species,dstkne,Double-striped Thick-knee,Burhinus bistriatus,Charadriiformes,Burhinidae (Thick-knees),, +5564,species,petkne1,Peruvian Thick-knee,Burhinus superciliaris,Charadriiformes,Burhinidae (Thick-knees),, +5565,species,butkne1,Bush Thick-knee,Burhinus grallarius,Charadriiformes,Burhinidae (Thick-knees),, +5566,spuh,burhin1,Burhinus sp.,Burhinus sp.,Charadriiformes,Burhinidae (Thick-knees),, +5567,species,grtkne1,Great Thick-knee,Esacus recurvirostris,Charadriiformes,Burhinidae (Thick-knees),, +5568,species,beathk1,Beach Thick-knee,Esacus magnirostris,Charadriiformes,Burhinidae (Thick-knees),, +5569,species,egyplo1,Egyptian Plover,Pluvianus aegyptius,Charadriiformes,Pluvianidae (Egyptian Plover),, +5570,species,bkwsti,Black-winged Stilt,Himantopus himantopus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5571,species,piesti1,Pied Stilt,Himantopus leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5572,hybrid,x00830,Black-winged x Pied Stilt (hybrid),Himantopus himantopus x leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5573,slash,y00932,Black-winged/Pied Stilt,Himantopus himantopus/leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5574,species,blasti1,Black Stilt,Himantopus novaezelandiae,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5575,hybrid,x00459,Pied x Black Stilt (hybrid),Himantopus leucocephalus x novaezelandiae,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5576,slash,y01133,Pied/Black Stilt,Himantopus leucocephalus/novaezelandiae,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5577,species,bknsti,Black-necked Stilt,Himantopus mexicanus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5578,issf,bknsti1,Black-necked Stilt (Black-necked),Himantopus mexicanus mexicanus,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti +5579,issf,hawsti1,Black-necked Stilt (Hawaiian),Himantopus mexicanus knudseni,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti +5580,issf,bknsti2,Black-necked Stilt (White-backed),Himantopus mexicanus melanurus,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti +5581,intergrade,bknsti3,Black-necked Stilt (Black-necked x White-backed),Himantopus mexicanus mexicanus x melanurus,Charadriiformes,Recurvirostridae (Stilts and Avocets),,bknsti +5582,hybrid,x00846,Black-winged x Black-necked Stilt (hybrid),Himantopus himantopus x mexicanus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5583,species,bansti1,Banded Stilt,Cladorhynchus leucocephalus,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5584,species,pieavo1,Pied Avocet,Recurvirostra avosetta,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5585,species,renavo1,Red-necked Avocet,Recurvirostra novaehollandiae,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5586,species,andavo1,Andean Avocet,Recurvirostra andina,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5587,species,ameavo,American Avocet,Recurvirostra americana,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5588,hybrid,x00732,Black-necked Stilt x American Avocet (hybrid),Himantopus mexicanus x Recurvirostra americana,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5589,spuh,y00722,stilt/avocet sp.,Recurvirostridae sp.,Charadriiformes,Recurvirostridae (Stilts and Avocets),, +5590,species,ibisbi1,Ibisbill,Ibidorhyncha struthersii,Charadriiformes,Ibidorhynchidae (Ibisbill),, +5591,species,euroys1,Eurasian Oystercatcher,Haematopus ostralegus,Charadriiformes,Haematopodidae (Oystercatchers),, +5592,issf,euroys2,Eurasian Oystercatcher (Western),Haematopus ostralegus ostralegus/longipes,Charadriiformes,Haematopodidae (Oystercatchers),,euroys1 +5595,issf,euroys3,Eurasian Oystercatcher (Far Eastern),Haematopus ostralegus osculans,Charadriiformes,Haematopodidae (Oystercatchers),,euroys1 +5596,species,pieoys1,Pied Oystercatcher,Haematopus longirostris,Charadriiformes,Haematopodidae (Oystercatchers),, +5597,species,soioys1,South Island Oystercatcher,Haematopus finschi,Charadriiformes,Haematopodidae (Oystercatchers),, +5598,species,chaoys1,Chatham Oystercatcher,Haematopus chathamensis,Charadriiformes,Haematopodidae (Oystercatchers),, +5599,species,varoys1,Variable Oystercatcher,Haematopus unicolor,Charadriiformes,Haematopodidae (Oystercatchers),, +5600,hybrid,x00928,South Island x Variable Oystercatcher (hybrid),Haematopus finschi x unicolor,Charadriiformes,Haematopodidae (Oystercatchers),, +5601,species,soooys1,Sooty Oystercatcher,Haematopus fuliginosus,Charadriiformes,Haematopodidae (Oystercatchers),, +5604,species,ameoys,American Oystercatcher,Haematopus palliatus,Charadriiformes,Haematopodidae (Oystercatchers),, +5607,species,afroys1,African Oystercatcher,Haematopus moquini,Charadriiformes,Haematopodidae (Oystercatchers),, +5608,species,canoys1,Canarian Oystercatcher,Haematopus meadewaldoi,Charadriiformes,Haematopodidae (Oystercatchers),, +5609,species,blaoys1,Blackish Oystercatcher,Haematopus ater,Charadriiformes,Haematopodidae (Oystercatchers),, +5610,species,magoys1,Magellanic Oystercatcher,Haematopus leucopodus,Charadriiformes,Haematopodidae (Oystercatchers),, +5611,species,blkoys,Black Oystercatcher,Haematopus bachmani,Charadriiformes,Haematopodidae (Oystercatchers),, +5612,hybrid,x00006,American x Black Oystercatcher (hybrid),Haematopus palliatus x bachmani,Charadriiformes,Haematopodidae (Oystercatchers),, +5613,slash,y01027,American/Black Oystercatcher,Haematopus palliatus/bachmani,Charadriiformes,Haematopodidae (Oystercatchers),, +5614,spuh,oyster1,oystercatcher sp.,Haematopus sp.,Charadriiformes,Haematopodidae (Oystercatchers),, +5615,species,bkbplo,Black-bellied Plover,Pluvialis squatarola,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5616,species,eugplo,European Golden-Plover,Pluvialis apricaria,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5619,species,amgplo,American Golden-Plover,Pluvialis dominica,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5620,species,pagplo,Pacific Golden-Plover,Pluvialis fulva,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5621,slash,y00222,American/Pacific Golden-Plover (Lesser Golden-Plover),Pluvialis dominica/fulva,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5622,spuh,golplo,golden-plover sp.,Pluvialis apricaria/dominica/fulva,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5623,spuh,y00494,Black-bellied Plover/golden-plover sp.,Pluvialis sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5624,species,tatdot1,Tawny-throated Dotterel,Oreopholus ruficollis,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5627,species,norlap,Northern Lapwing,Vanellus vanellus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5628,species,lotlap1,Long-toed Lapwing,Vanellus crassirostris,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5631,species,blaplo1,Blacksmith Lapwing,Vanellus armatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5632,species,spwlap1,Spur-winged Lapwing,Vanellus spinosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5633,species,rivlap1,River Lapwing,Vanellus duvaucelii,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5634,species,yewlap2,Yellow-wattled Lapwing,Vanellus malabaricus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5635,species,blhlap1,Black-headed Lapwing,Vanellus tectus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5638,species,whhlap1,White-headed Lapwing,Vanellus albiceps,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5639,hybrid,x00885,Blacksmith x White-headed Lapwing (hybrid),Vanellus armatus x albiceps,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5640,species,senlap1,Senegal Lapwing,Vanellus lugubris,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5641,species,blwlap1,Black-winged Lapwing,Vanellus melanopterus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5644,species,crolap1,Crowned Lapwing,Vanellus coronatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5647,species,watlap1,Wattled Lapwing,Vanellus senegallus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5651,species,spblap1,Spot-breasted Lapwing,Vanellus melanocephalus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5652,species,brclap1,Brown-chested Lapwing,Vanellus superciliosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5653,species,gyhlap1,Gray-headed Lapwing,Vanellus cinereus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5654,species,rewlap1,Red-wattled Lapwing,Vanellus indicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5659,species,sunlap1,Javan Lapwing,Vanellus macropterus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5660,species,banlap1,Banded Lapwing,Vanellus tricolor,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5661,species,maslap1,Masked Lapwing,Vanellus miles,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5662,issf,maslap2,Masked Lapwing (Masked),Vanellus miles miles,Charadriiformes,Charadriidae (Plovers and Lapwings),,maslap1 +5663,issf,maslap3,Masked Lapwing (Black-shouldered),Vanellus miles novaehollandiae,Charadriiformes,Charadriidae (Plovers and Lapwings),,maslap1 +5664,species,soclap1,Sociable Lapwing,Vanellus gregarius,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5665,species,whtlap1,White-tailed Lapwing,Vanellus leucurus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5666,species,pielap1,Pied Lapwing,Vanellus cayanus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5667,species,soulap1,Southern Lapwing,Vanellus chilensis,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5668,issf,soulap2,Southern Lapwing (cayennensis),Vanellus chilensis cayennensis,Charadriiformes,Charadriidae (Plovers and Lapwings),,soulap1 +5669,issf,soulap3,Southern Lapwing (lampronotus),Vanellus chilensis lampronotus,Charadriiformes,Charadriidae (Plovers and Lapwings),,soulap1 +5670,issf,soulap4,Southern Lapwing (chilensis/fretensis),Vanellus chilensis chilensis/fretensis,Charadriiformes,Charadriidae (Plovers and Lapwings),,soulap1 +5673,species,andlap1,Andean Lapwing,Vanellus resplendens,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5674,spuh,lapwin1,lapwing sp.,Vanellus sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5675,species,rebdot1,Red-breasted Dotterel,Charadrius obscurus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5676,issf,rebdot2,Red-breasted Dotterel (Northern),Charadrius obscurus aquilonius,Charadriiformes,Charadriidae (Plovers and Lapwings),,rebdot1 +5677,issf,rebdot3,Red-breasted Dotterel (Southern),Charadrius obscurus obscurus,Charadriiformes,Charadriidae (Plovers and Lapwings),,rebdot1 +5678,species,lesplo,Lesser Sand-Plover,Charadrius mongolus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5679,issf,lessap1,Lesser Sand-Plover (Tibetan),Charadrius mongolus [atrifrons Group],Charadriiformes,Charadriidae (Plovers and Lapwings),,lesplo +5683,issf,lessap2,Lesser Sand-Plover (Mongolian),Charadrius mongolus mongolus/stegmanni,Charadriiformes,Charadriidae (Plovers and Lapwings),,lesplo +5686,species,grsplo,Greater Sand-Plover,Charadrius leschenaultii,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5690,slash,y00648,Lesser/Greater Sand-Plover,Charadrius mongolus/leschenaultii,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5691,species,casplo1,Caspian Plover,Charadrius asiaticus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5692,species,colplo1,Collared Plover,Charadrius collaris,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5693,species,punplo1,Puna Plover,Charadrius alticola,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5694,species,twbplo1,Two-banded Plover,Charadrius falklandicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5695,species,dobplo1,Double-banded Plover,Charadrius bicinctus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5698,species,kitplo1,Kittlitz's Plover,Charadrius pecuarius,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5699,species,recplo1,Red-capped Plover,Charadrius ruficapillus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5700,species,malplo1,Malaysian Plover,Charadrius peronii,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5701,species,kenplo1,Kentish Plover,Charadrius alexandrinus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5702,issf,snoplo1,Kentish Plover (Kentish),Charadrius alexandrinus alexandrinus/nihonensis,Charadriiformes,Charadriidae (Plovers and Lapwings),,kenplo1 +5705,issf,snoplo2,Kentish Plover (Indian),Charadrius alexandrinus seebohmi,Charadriiformes,Charadriidae (Plovers and Lapwings),,kenplo1 +5706,issf,whfplo2,Kentish Plover (White-faced),Charadrius alexandrinus dealbatus,Charadriiformes,Charadriidae (Plovers and Lapwings),,kenplo1 +5707,species,snoplo5,Snowy Plover,Charadrius nivosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5708,issf,snoplo3,Snowy Plover (nivosus),Charadrius nivosus nivosus,Charadriiformes,Charadriidae (Plovers and Lapwings),,snoplo5 +5709,issf,snoplo4,Snowy Plover (occidentalis),Charadrius nivosus occidentalis,Charadriiformes,Charadriidae (Plovers and Lapwings),,snoplo5 +5710,slash,snoplo,Kentish/Snowy Plover,Charadrius alexandrinus/nivosus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5711,species,javplo1,Javan Plover,Charadrius javanicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5712,species,wilplo,Wilson's Plover,Charadrius wilsonia,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5717,species,corplo,Common Ringed Plover,Charadrius hiaticula,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5720,species,semplo,Semipalmated Plover,Charadrius semipalmatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5721,slash,y00845,Common Ringed/Semipalmated Plover,Charadrius hiaticula/semipalmatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5722,species,lobplo1,Long-billed Plover,Charadrius placidus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5723,species,pipplo,Piping Plover,Charadrius melodus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5724,species,madplo1,Madagascar Plover,Charadrius thoracicus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5725,species,lirplo,Little Ringed Plover,Charadrius dubius,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5726,issf,lirplo1,Little Ringed Plover (curonicus),Charadrius dubius curonicus,Charadriiformes,Charadriidae (Plovers and Lapwings),,lirplo +5727,issf,lirplo2,Little Ringed Plover (dubius/jerdoni),Charadrius dubius dubius/jerdoni,Charadriiformes,Charadriidae (Plovers and Lapwings),,lirplo +5730,species,thbplo1,Three-banded Plover,Charadrius tricollaris,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5731,issf,thbplo2,Three-banded Plover (African),Charadrius tricollaris tricollaris,Charadriiformes,Charadriidae (Plovers and Lapwings),,thbplo1 +5732,issf,thbplo3,Three-banded Plover (Madagascar),Charadrius tricollaris bifrontatus,Charadriiformes,Charadriidae (Plovers and Lapwings),,thbplo1 +5733,species,forplo1,Forbes's Plover,Charadrius forbesi,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5734,species,whfplo1,White-fronted Plover,Charadrius marginatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5739,species,chbplo1,Chestnut-banded Plover,Charadrius pallidus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5742,species,killde,Killdeer,Charadrius vociferus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5746,species,mouplo,Mountain Plover,Charadrius montanus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5747,species,oriplo1,Oriental Plover,Charadrius veredus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5748,species,eurdot,Eurasian Dotterel,Charadrius morinellus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5749,species,sthplo1,St. Helena Plover,Charadrius sanctaehelenae,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5750,species,rucdot1,Rufous-chested Dotterel,Charadrius modestus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5751,spuh,smaplo1,small plover sp.,Charadrius sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5752,species,rekdot1,Red-kneed Dotterel,Erythrogonys cinctus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5753,species,hooplo2,Hooded Plover,Thinornis cucullatus,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5754,species,shoplo1,Shore Plover,Thinornis novaeseelandiae,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5755,species,blfdot1,Black-fronted Dotterel,Elseyornis melanops,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5756,species,inldot2,Inland Dotterel,Peltohyas australis,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5757,species,wrybil1,Wrybill,Anarhynchus frontalis,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5758,species,diaplo1,Diademed Sandpiper-Plover,Phegornis mitchellii,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5759,spuh,plover2,plover sp.,Charadriidae sp.,Charadriiformes,Charadriidae (Plovers and Lapwings),, +5760,species,plawan1,Plains-wanderer,Pedionomus torquatus,Charadriiformes,Pedionomidae (Plains-wanderer),, +5761,species,rubsee2,Rufous-bellied Seedsnipe,Attagis gayi,Charadriiformes,Thinocoridae (Seedsnipes),, +5765,species,whbsee2,White-bellied Seedsnipe,Attagis malouinus,Charadriiformes,Thinocoridae (Seedsnipes),, +5766,species,gybsee1,Gray-breasted Seedsnipe,Thinocorus orbignyianus,Charadriiformes,Thinocoridae (Seedsnipes),, +5769,species,leasee1,Least Seedsnipe,Thinocorus rumicivorus,Charadriiformes,Thinocoridae (Seedsnipes),, +5774,species,grpsni1,Greater Painted-Snipe,Rostratula benghalensis,Charadriiformes,Rostratulidae (Painted-Snipes),, +5775,species,auspas1,Australian Painted-Snipe,Rostratula australis,Charadriiformes,Rostratulidae (Painted-Snipes),, +5776,species,soapas1,South American Painted-Snipe,Nycticryphes semicollaris,Charadriiformes,Rostratulidae (Painted-Snipes),, +5777,species,lesjac1,Lesser Jacana,Microparra capensis,Charadriiformes,Jacanidae (Jacanas),, +5778,species,afrjac1,African Jacana,Actophilornis africanus,Charadriiformes,Jacanidae (Jacanas),, +5779,species,madjac1,Madagascar Jacana,Actophilornis albinucha,Charadriiformes,Jacanidae (Jacanas),, +5780,species,cocjac1,Comb-crested Jacana,Irediparra gallinacea,Charadriiformes,Jacanidae (Jacanas),, +5784,species,phtjac1,Pheasant-tailed Jacana,Hydrophasianus chirurgus,Charadriiformes,Jacanidae (Jacanas),, +5785,species,brwjac1,Bronze-winged Jacana,Metopidius indicus,Charadriiformes,Jacanidae (Jacanas),, +5786,species,norjac,Northern Jacana,Jacana spinosa,Charadriiformes,Jacanidae (Jacanas),, +5790,species,watjac1,Wattled Jacana,Jacana jacana,Charadriiformes,Jacanidae (Jacanas),, +5791,issf,watjac2,Wattled Jacana (Black-backed),Jacana jacana hypomelaena,Charadriiformes,Jacanidae (Jacanas),,watjac1 +5792,issf,watjac3,Wattled Jacana (Chestnut-backed),Jacana jacana [jacana Group],Charadriiformes,Jacanidae (Jacanas),,watjac1 +5798,hybrid,x00791,Northern x Wattled Jacana (hybrid),Jacana spinosa x jacana,Charadriiformes,Jacanidae (Jacanas),, +5799,slash,y00846,Northern/Wattled Jacana,Jacana spinosa/jacana,Charadriiformes,Jacanidae (Jacanas),, +5800,spuh,jacana1,jacana sp.,Jacanidae sp.,Charadriiformes,Jacanidae (Jacanas),, +5801,species,uplsan,Upland Sandpiper,Bartramia longicauda,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5802,species,brtcur,Bristle-thighed Curlew,Numenius tahitiensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5803,species,whimbr,Whimbrel,Numenius phaeopus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5804,form,whimbr5,Whimbrel (White-rumped),Numenius phaeopus phaeopus/alboaxillaris/variegatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr +5805,issf,whimbr1,Whimbrel (European),Numenius phaeopus phaeopus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr +5806,issf,whimbr4,Whimbrel (Steppe),Numenius phaeopus alboaxillaris,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr +5807,issf,whimbr2,Whimbrel (Siberian),Numenius phaeopus variegatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr +5808,issf,whimbr3,Whimbrel (Hudsonian),Numenius phaeopus hudsonicus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,whimbr +5809,species,litcur,Little Curlew,Numenius minutus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5810,species,eskcur,Eskimo Curlew,Numenius borealis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5811,species,lobcur,Long-billed Curlew,Numenius americanus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5814,species,faecur,Far Eastern Curlew,Numenius madagascariensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5815,species,slbcur,Slender-billed Curlew,Numenius tenuirostris,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5816,species,eurcur,Eurasian Curlew,Numenius arquata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5819,slash,y00774,Whimbrel/Eurasian Curlew,Numenius phaeopus/arquata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5820,slash,y00952,Far Eastern/Eurasian Curlew,Numenius madagascariensis/arquata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5821,spuh,curlew1,curlew sp.,Numenius sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5822,species,batgod,Bar-tailed Godwit,Limosa lapponica,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5823,issf,batgod1,Bar-tailed Godwit (European),Limosa lapponica lapponica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,batgod +5824,issf,batgod2,Bar-tailed Godwit (Siberian),Limosa lapponica baueri/menzbieri,Charadriiformes,Scolopacidae (Sandpipers and Allies),,batgod +5827,species,bktgod,Black-tailed Godwit,Limosa limosa,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5828,issf,bktgod1,Black-tailed Godwit (islandica),Limosa limosa islandica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,bktgod +5829,issf,bktgod2,Black-tailed Godwit (limosa),Limosa limosa limosa,Charadriiformes,Scolopacidae (Sandpipers and Allies),,bktgod +5830,issf,bktgod3,Black-tailed Godwit (melanuroides),Limosa limosa melanuroides,Charadriiformes,Scolopacidae (Sandpipers and Allies),,bktgod +5831,species,hudgod,Hudsonian Godwit,Limosa haemastica,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5832,species,margod,Marbled Godwit,Limosa fedoa,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5835,spuh,godwit1,godwit sp.,Limosa sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5836,species,rudtur,Ruddy Turnstone,Arenaria interpres,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5839,species,blktur,Black Turnstone,Arenaria melanocephala,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5840,species,kirsan1,Kiritimati Sandpiper,Prosobonia cancellata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5841,species,whwsan1,White-winged Sandpiper,Prosobonia leucoptera,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5842,species,moosan1,Moorea Sandpiper,Prosobonia ellisi,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5843,species,tuasan1,Tuamotu Sandpiper,Prosobonia parvirostris,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5844,species,grekno,Great Knot,Calidris tenuirostris,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5845,species,redkno,Red Knot,Calidris canutus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5852,species,surfbi,Surfbird,Calidris virgata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5853,hybrid,x00733,Great Knot x Surfbird (hybrid),Calidris tenuirostris x virgata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5854,hybrid,x00675,Red Knot x Surfbird (hybrid),Calidris canutus x virgata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5855,species,ruff,Ruff,Calidris pugnax,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5856,species,brbsan,Broad-billed Sandpiper,Calidris falcinellus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5859,species,shtsan,Sharp-tailed Sandpiper,Calidris acuminata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5860,species,stisan,Stilt Sandpiper,Calidris himantopus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5861,species,cursan,Curlew Sandpiper,Calidris ferruginea,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5862,species,temsti,Temminck's Stint,Calidris temminckii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5863,species,lotsti,Long-toed Stint,Calidris subminuta,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5864,species,spbsan1,Spoon-billed Sandpiper,Calidris pygmaea,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5865,species,rensti,Red-necked Stint,Calidris ruficollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5866,species,sander,Sanderling,Calidris alba,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5867,species,dunlin,Dunlin,Calidris alpina,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5868,issf,dunlin1,Dunlin (pacifica/arcticola),Calidris alpina pacifica/arcticola,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin +5871,issf,dunlin2,Dunlin (hudsonia),Calidris alpina hudsonia,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin +5872,issf,dunlin3,Dunlin (arctica),Calidris alpina arctica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin +5873,issf,dunlin4,Dunlin (schinzii),Calidris alpina schinzii,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin +5874,issf,dunlin5,Dunlin (alpina),Calidris alpina alpina,Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin +5875,issf,dunlin6,Dunlin (sakhalina Group),Calidris alpina [sakhalina Group],Charadriiformes,Scolopacidae (Sandpipers and Allies),,dunlin +5879,slash,y01074,Curlew Sandpiper/Dunlin,Calidris ferruginea/alpina,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5880,species,rocsan,Rock Sandpiper,Calidris ptilocnemis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5881,issf,rocsan2,Rock Sandpiper (ptilocnemis),Calidris ptilocnemis ptilocnemis,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan +5882,form,rocsan5,Rock Sandpiper (quarta/tschuktschorum/couesi),Calidris ptilocnemis quarta/tschuktschorum/couesi,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan +5883,issf,rocsan4,Rock Sandpiper (quarta),Calidris ptilocnemis quarta,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan +5884,issf,rocsan1,Rock Sandpiper (tschuktschorum),Calidris ptilocnemis tschuktschorum,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan +5885,issf,rocsan3,Rock Sandpiper (couesi),Calidris ptilocnemis couesi,Charadriiformes,Scolopacidae (Sandpipers and Allies),,rocsan +5886,species,pursan,Purple Sandpiper,Calidris maritima,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5887,hybrid,x00433,Dunlin x Purple Sandpiper (hybrid),Calidris alpina x maritima,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5888,slash,y00953,Rock/Purple Sandpiper,Calidris ptilocnemis/maritima,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5889,species,baisan,Baird's Sandpiper,Calidris bairdii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5890,species,litsti,Little Stint,Calidris minuta,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5891,slash,y00497,Red-necked/Little Stint,Calidris ruficollis/minuta,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5892,species,leasan,Least Sandpiper,Calidris minutilla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5893,species,whrsan,White-rumped Sandpiper,Calidris fuscicollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5894,hybrid,x00430,Dunlin x White-rumped Sandpiper (hybrid),Calidris alpina x fuscicollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5895,species,bubsan,Buff-breasted Sandpiper,Calidris subruficollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5896,hybrid,x00431,White-rumped x Buff-breasted Sandpiper (hybrid),Calidris fuscicollis x subruficollis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5897,species,pecsan,Pectoral Sandpiper,Calidris melanotos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5898,slash,y00705,Sharp-tailed/Pectoral Sandpiper,Calidris acuminata/melanotos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5899,hybrid,x00432,Cox's Sandpiper (hybrid),Calidris ferruginea x melanotos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5900,species,semsan,Semipalmated Sandpiper,Calidris pusilla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5901,species,wessan,Western Sandpiper,Calidris mauri,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5902,slash,y00496,Semipalmated/Western Sandpiper,Calidris pusilla/mauri,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5903,spuh,calidr,peep sp.,Calidris sp. (peep sp.),Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5904,spuh,calidr1,Calidris sp.,Calidris sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5905,species,asidow1,Asian Dowitcher,Limnodromus semipalmatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5906,species,shbdow,Short-billed Dowitcher,Limnodromus griseus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5907,issf,shbdow1,Short-billed Dowitcher (griseus),Limnodromus griseus griseus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,shbdow +5908,issf,shbdow2,Short-billed Dowitcher (hendersoni),Limnodromus griseus hendersoni,Charadriiformes,Scolopacidae (Sandpipers and Allies),,shbdow +5909,issf,shbdow3,Short-billed Dowitcher (caurinus),Limnodromus griseus caurinus,Charadriiformes,Scolopacidae (Sandpipers and Allies),,shbdow +5910,species,lobdow,Long-billed Dowitcher,Limnodromus scolopaceus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5911,slash,dowitc,Short-billed/Long-billed Dowitcher,Limnodromus griseus/scolopaceus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5912,species,jacsni,Jack Snipe,Lymnocryptes minimus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5913,species,eurwoo,Eurasian Woodcock,Scolopax rusticola,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5914,species,amawoo1,Amami Woodcock,Scolopax mira,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5915,species,bukwoo1,Bukidnon Woodcock,Scolopax bukidnonensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5916,species,duswoo4,Javan Woodcock,Scolopax saturata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5917,species,duswoo3,New Guinea Woodcock,Scolopax rosenbergii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5918,species,sulwoo1,Sulawesi Woodcock,Scolopax celebensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5919,species,molwoo1,Moluccan Woodcock,Scolopax rochussenii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5920,species,amewoo,American Woodcock,Scolopax minor,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5921,species,noisni1,North Island Snipe,Coenocorypha barrierensis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5922,species,soisni1,South Island Snipe,Coenocorypha iredalei,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5923,species,chisni1,Chatham Islands Snipe,Coenocorypha pusilla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5924,species,snisni1,Snares Island Snipe,Coenocorypha huegeli,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5925,species,subsni1,Subantarctic Snipe,Coenocorypha aucklandica,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5929,species,impsni1,Imperial Snipe,Gallinago imperialis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5930,species,andsni1,Jameson's Snipe,Gallinago jamesoni,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5931,species,fuesni1,Fuegian Snipe,Gallinago stricklandii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5932,species,solsni1,Solitary Snipe,Gallinago solitaria,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5935,species,latsni1,Latham's Snipe,Gallinago hardwickii,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5936,species,woosni1,Wood Snipe,Gallinago nemoricola,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5937,species,gresni1,Great Snipe,Gallinago media,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5938,species,comsni,Common Snipe,Gallinago gallinago,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5941,hybrid,x00792,Great x Common Snipe (hybrid),Gallinago media x gallinago,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5942,species,wilsni1,Wilson's Snipe,Gallinago delicata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5943,slash,y00477,Common/Wilson's Snipe,Gallinago gallinago/delicata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5944,species,soasni1,South American Snipe,Gallinago paraguaiae,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5945,issf,soasni2,South American Snipe (South American),Gallinago paraguaiae paraguaiae,Charadriiformes,Scolopacidae (Sandpipers and Allies),,soasni1 +5946,issf,soasni3,South American Snipe (Magellanic),Gallinago paraguaiae magellanica,Charadriiformes,Scolopacidae (Sandpipers and Allies),,soasni1 +5947,slash,y01125,Wilson's/South American Snipe,Gallinago delicata/paraguaiae,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5948,species,punsni1,Puna Snipe,Gallinago andina,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5949,species,nobsni1,Noble Snipe,Gallinago nobilis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5950,species,pitsni,Pin-tailed Snipe,Gallinago stenura,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5951,slash,y00847,Common/Pin-tailed Snipe,Gallinago gallinago/stenura,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5952,species,swisni1,Swinhoe's Snipe,Gallinago megala,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5953,slash,y00723,Pin-tailed/Swinhoe's Snipe,Gallinago stenura/megala,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5954,species,afrsni1,African Snipe,Gallinago nigripennis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5958,species,madsni1,Madagascar Snipe,Gallinago macrodactyla,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5959,species,giasni1,Giant Snipe,Gallinago undulata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5962,spuh,snipe2,snipe sp.,Gallinago sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5963,species,tersan,Terek Sandpiper,Xenus cinereus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5964,species,wilpha,Wilson's Phalarope,Phalaropus tricolor,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5965,species,renpha,Red-necked Phalarope,Phalaropus lobatus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5966,species,redpha1,Red Phalarope,Phalaropus fulicarius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5967,slash,y00635,Red-necked/Red Phalarope,Phalaropus lobatus/fulicarius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5968,spuh,phalar,phalarope sp.,Phalaropus sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5969,species,comsan,Common Sandpiper,Actitis hypoleucos,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5970,species,sposan,Spotted Sandpiper,Actitis macularius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5971,slash,y00668,Common/Spotted Sandpiper,Actitis hypoleucos/macularius,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5972,species,grnsan,Green Sandpiper,Tringa ochropus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5973,species,solsan,Solitary Sandpiper,Tringa solitaria,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5974,issf,solsan1,Solitary Sandpiper (solitaria),Tringa solitaria solitaria,Charadriiformes,Scolopacidae (Sandpipers and Allies),,solsan +5975,issf,solsan2,Solitary Sandpiper (cinnamomea),Tringa solitaria cinnamomea,Charadriiformes,Scolopacidae (Sandpipers and Allies),,solsan +5976,species,gyttat1,Gray-tailed Tattler,Tringa brevipes,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5977,species,wantat1,Wandering Tattler,Tringa incana,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5978,slash,y00495,Gray-tailed/Wandering Tattler,Tringa brevipes/incana,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5979,species,spored,Spotted Redshank,Tringa erythropus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5980,species,greyel,Greater Yellowlegs,Tringa melanoleuca,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5981,species,comgre,Common Greenshank,Tringa nebularia,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5982,species,norgre1,Nordmann's Greenshank,Tringa guttifer,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5983,slash,y00954,Common/Nordmann's Greenshank,Tringa nebularia/guttifer,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5984,species,willet1,Willet,Tringa semipalmata,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5985,issf,willet2,Willet (Eastern),Tringa semipalmata semipalmata,Charadriiformes,Scolopacidae (Sandpipers and Allies),,willet1 +5986,issf,willet3,Willet (Western),Tringa semipalmata inornata,Charadriiformes,Scolopacidae (Sandpipers and Allies),,willet1 +5987,species,lesyel,Lesser Yellowlegs,Tringa flavipes,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5988,slash,y00476,Greater/Lesser Yellowlegs,Tringa melanoleuca/flavipes,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5989,species,marsan,Marsh Sandpiper,Tringa stagnatilis,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5990,species,woosan,Wood Sandpiper,Tringa glareola,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5991,species,comred1,Common Redshank,Tringa totanus,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5998,spuh,tringa1,Tringa sp.,Tringa sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +5999,spuh,scolop1,Scolopacidae sp.,Scolopacidae sp.,Charadriiformes,Scolopacidae (Sandpipers and Allies),, +6000,spuh,larsho1,large shorebird sp.,Scolopacidae sp. (large shorebird sp.),Charadriiformes,Scolopacidae (Sandpipers and Allies),, +6001,species,smabut2,Small Buttonquail,Turnix sylvaticus,Charadriiformes,Turnicidae (Buttonquail),, +6011,species,rebbut2,Red-backed Buttonquail,Turnix maculosus,Charadriiformes,Turnicidae (Buttonquail),, +6026,species,hotbut3,Black-rumped Buttonquail,Turnix nanus,Charadriiformes,Turnicidae (Buttonquail),, +6027,species,hotbut1,Hottentot Buttonquail,Turnix hottentottus,Charadriiformes,Turnicidae (Buttonquail),, +6028,species,yelbut1,Yellow-legged Buttonquail,Turnix tanki,Charadriiformes,Turnicidae (Buttonquail),, +6031,species,spobut2,Spotted Buttonquail,Turnix ocellatus,Charadriiformes,Turnicidae (Buttonquail),, +6034,species,barbut1,Barred Buttonquail,Turnix suscitator,Charadriiformes,Turnicidae (Buttonquail),, +6052,species,madbut1,Madagascar Buttonquail,Turnix nigricollis,Charadriiformes,Turnicidae (Buttonquail),, +6053,species,blbbut2,Black-breasted Buttonquail,Turnix melanogaster,Charadriiformes,Turnicidae (Buttonquail),, +6054,species,chbbut2,Chestnut-backed Buttonquail,Turnix castanotus,Charadriiformes,Turnicidae (Buttonquail),, +6055,species,bubbut1,Buff-breasted Buttonquail,Turnix olivii,Charadriiformes,Turnicidae (Buttonquail),, +6056,species,paibut,Painted Buttonquail,Turnix varius,Charadriiformes,Turnicidae (Buttonquail),, +6057,issf,paibut1,Painted Buttonquail (New Caledonian),Turnix varius novaecaledoniae,Charadriiformes,Turnicidae (Buttonquail),,paibut +6058,issf,paibut2,Painted Buttonquail (Painted),Turnix varius varius/scintillans,Charadriiformes,Turnicidae (Buttonquail),,paibut +6061,species,luzbut1,Luzon Buttonquail,Turnix worcesteri,Charadriiformes,Turnicidae (Buttonquail),, +6062,species,sumbut1,Sumba Buttonquail,Turnix everetti,Charadriiformes,Turnicidae (Buttonquail),, +6063,species,recbut1,Red-chested Buttonquail,Turnix pyrrhothorax,Charadriiformes,Turnicidae (Buttonquail),, +6064,species,litbut1,Little Buttonquail,Turnix velox,Charadriiformes,Turnicidae (Buttonquail),, +6065,spuh,button1,buttonquail sp.,Turnix sp.,Charadriiformes,Turnicidae (Buttonquail),, +6066,species,quail-1,Quail-plover,Ortyxelos meiffrenii,Charadriiformes,Turnicidae (Buttonquail),, +6067,species,craplo1,Crab-Plover,Dromas ardeola,Charadriiformes,Dromadidae (Crab-Plover),, +6068,species,crccou1,Cream-colored Courser,Cursorius cursor,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6072,species,somcou1,Somali Courser,Cursorius somalensis,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6075,species,burcou2,Burchell's Courser,Cursorius rufus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6076,species,temcou1,Temminck's Courser,Cursorius temminckii,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6077,species,indcou1,Indian Courser,Cursorius coromandelicus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6078,species,dobcou2,Double-banded Courser,Smutsornis africanus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6087,species,thbcou1,Three-banded Courser,Rhinoptilus cinctus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6091,species,brwcou1,Bronze-winged Courser,Rhinoptilus chalcopterus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6092,species,jercou1,Jerdon's Courser,Rhinoptilus bitorquatus,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6093,spuh,course1,courser sp.,Glareolidae sp. (courser sp.),Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6094,species,auspra1,Australian Pratincole,Stiltia isabella,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6095,species,colpra,Collared Pratincole,Glareola pratincola,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6099,species,oripra,Oriental Pratincole,Glareola maldivarum,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6100,slash,y00775,Collared/Oriental Pratincole,Glareola pratincola/maldivarum,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6101,species,blwpra1,Black-winged Pratincole,Glareola nordmanni,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6102,slash,y00776,Collared/Black-winged Pratincole,Glareola pratincola/nordmanni,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6103,species,madpra1,Madagascar Pratincole,Glareola ocularis,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6104,species,rocpra1,Rock Pratincole,Glareola nuchalis,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6105,issf,rocpra2,Rock Pratincole (Rufous-naped),Glareola nuchalis liberiae,Charadriiformes,Glareolidae (Pratincoles and Coursers),,rocpra1 +6106,issf,rocpra3,Rock Pratincole (White-naped),Glareola nuchalis nuchalis,Charadriiformes,Glareolidae (Pratincoles and Coursers),,rocpra1 +6107,species,grypra1,Gray Pratincole,Glareola cinerea,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6108,species,smapra1,Small Pratincole,Glareola lactea,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6109,spuh,pratin1,pratincole sp.,Glareola sp.,Charadriiformes,Glareolidae (Pratincoles and Coursers),, +6110,spuh,shoreb1,shorebird sp.,Charadriiformes sp.,Charadriiformes,,, +6111,species,gresku1,Great Skua,Stercorarius skua,Charadriiformes,Stercorariidae (Skuas and Jaegers),Skuas and Jaegers, +6112,species,chisku1,Chilean Skua,Stercorarius chilensis,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6113,species,sopsku1,South Polar Skua,Stercorarius maccormicki,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6114,species,brnsku3,Brown Skua,Stercorarius antarcticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6115,issf,brnsku1,Brown Skua (Subantarctic),Stercorarius antarcticus lonnbergi,Charadriiformes,Stercorariidae (Skuas and Jaegers),,brnsku3 +6116,issf,sousku1,Brown Skua (Falkland),Stercorarius antarcticus antarcticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),,brnsku3 +6117,issf,brnsku2,Brown Skua (Tristan),Stercorarius antarcticus hamiltoni,Charadriiformes,Stercorariidae (Skuas and Jaegers),,brnsku3 +6118,spuh,skua,skua sp.,Stercorarius sp. (skua sp.),Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6119,species,pomjae,Pomarine Jaeger,Stercorarius pomarinus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6120,species,parjae,Parasitic Jaeger,Stercorarius parasiticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6121,slash,y00479,Pomarine/Parasitic Jaeger,Stercorarius pomarinus/parasiticus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6122,species,lotjae,Long-tailed Jaeger,Stercorarius longicaudus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6125,slash,y00480,Pomarine/Long-tailed Jaeger,Stercorarius pomarinus/longicaudus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6126,slash,y00481,Parasitic/Long-tailed Jaeger,Stercorarius parasiticus/longicaudus,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6127,spuh,jaeger,jaeger sp.,Stercorarius sp. (jaeger sp.),Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6128,spuh,y00615,jaeger/skua sp.,Stercorarius sp.,Charadriiformes,Stercorariidae (Skuas and Jaegers),, +6129,species,doveki,Dovekie,Alle alle,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",Alcids, +6132,species,commur,Common Murre,Uria aalge,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6137,species,thbmur,Thick-billed Murre,Uria lomvia,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6142,hybrid,x00793,Common x Thick-billed Murre (hybrid),Uria aalge x lomvia,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6143,slash,murre,Common/Thick-billed Murre,Uria aalge/lomvia,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6144,species,razorb,Razorbill,Alca torda,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6147,spuh,laralc1,large alcid sp.,Uria/Alca sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6148,species,greauk,Great Auk,Pinguinus impennis,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6149,species,blkgui,Black Guillemot,Cepphus grylle,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6150,issf,blkgui2,Black Guillemot (mandtii),Cepphus grylle mandtii,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,blkgui +6151,issf,blkgui1,Black Guillemot (grylle Group),Cepphus grylle [grylle Group],Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,blkgui +6156,species,piggui,Pigeon Guillemot,Cepphus columba,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6157,issf,piggui2,Pigeon Guillemot (snowi),Cepphus columba snowi,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,piggui +6158,issf,piggui1,Pigeon Guillemot (columba Group),Cepphus columba [columba Group],Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",,piggui +6163,slash,y00223,Black/Pigeon Guillemot,Cepphus grylle/columba,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6164,species,spegui1,Spectacled Guillemot,Cepphus carbo,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6165,species,lobmur,Long-billed Murrelet,Brachyramphus perdix,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6166,species,marmur,Marbled Murrelet,Brachyramphus marmoratus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6167,species,kitmur,Kittlitz's Murrelet,Brachyramphus brevirostris,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6168,species,xanmur2,Scripps's Murrelet,Synthliboramphus scrippsi,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6169,species,xanmur1,Guadalupe Murrelet,Synthliboramphus hypoleucus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6170,slash,xanmur,Scripps's/Guadalupe Murrelet (Xantus's Murrelet),Synthliboramphus scrippsi/hypoleucus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6171,species,cramur,Craveri's Murrelet,Synthliboramphus craveri,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6172,slash,y00777,Scripps's/Craveri's Murrelet,Synthliboramphus scrippsi/craveri,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6173,slash,y00482,Scripps's/Guadalupe/Craveri's Murrelet,Synthliboramphus scrippsi/hypoleucus/craveri,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6174,species,ancmur,Ancient Murrelet,Synthliboramphus antiquus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6177,species,japmur1,Japanese Murrelet,Synthliboramphus wumizusume,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6178,spuh,murrel,murrelet sp.,Brachyramphus/Synthliboramphus sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6179,species,casauk,Cassin's Auklet,Ptychoramphus aleuticus,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6182,species,parauk,Parakeet Auklet,Aethia psittacula,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6183,species,leaauk,Least Auklet,Aethia pusilla,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6184,species,whiauk,Whiskered Auklet,Aethia pygmaea,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6185,species,creauk,Crested Auklet,Aethia cristatella,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6186,species,rhiauk,Rhinoceros Auklet,Cerorhinca monocerata,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6187,spuh,auklet,auklet sp.,Ptychoramphus/Aethia sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6188,species,atlpuf,Atlantic Puffin,Fratercula arctica,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6192,species,horpuf,Horned Puffin,Fratercula corniculata,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6193,species,tufpuf,Tufted Puffin,Fratercula cirrhata,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6194,spuh,puffin1,puffin sp.,Fratercula sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6195,spuh,alcid,alcid sp.,Alcidae sp.,Charadriiformes,"Alcidae (Auks, Murres, and Puffins)",, +6196,species,swtgul1,Swallow-tailed Gull,Creagrus furcatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)","Gulls, Terns, and Skimmers", +6197,species,bklkit,Black-legged Kittiwake,Rissa tridactyla,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6198,issf,bklkit1,Black-legged Kittiwake (tridactyla),Rissa tridactyla tridactyla,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,bklkit +6199,issf,bklkit2,Black-legged Kittiwake (pollicaris),Rissa tridactyla pollicaris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,bklkit +6200,species,relkit,Red-legged Kittiwake,Rissa brevirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6201,slash,y00697,Black-legged/Red-legged Kittiwake,Rissa tridactyla/brevirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6202,species,ivogul,Ivory Gull,Pagophila eburnea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6203,species,sabgul,Sabine's Gull,Xema sabini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6208,species,saugul2,Saunders's Gull,Saundersilarus saundersi,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6209,species,slbgul1,Slender-billed Gull,Chroicocephalus genei,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6210,species,bongul,Bonaparte's Gull,Chroicocephalus philadelphia,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6211,species,andgul1,Andean Gull,Chroicocephalus serranus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6212,species,brhgul2,Brown-hooded Gull,Chroicocephalus maculipennis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6213,form,bnhgul3,Brown-hooded Gull (White-winged),Chroicocephalus maculipennis (White-winged),Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,brhgul2 +6214,form,bnhgul2,Brown-hooded Gull (Dark-winged),Chroicocephalus maculipennis (Dark-winged),Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,brhgul2 +6215,species,blbgul1,Black-billed Gull,Chroicocephalus bulleri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6216,species,silgul2,Silver Gull,Chroicocephalus novaehollandiae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6217,issf,silgul1,Silver Gull (Silver),Chroicocephalus novaehollandiae novaehollandiae/forsteri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,silgul2 +6220,issf,rebgul1,Silver Gull (Red-billed),Chroicocephalus novaehollandiae scopulinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,silgul2 +6221,species,grhgul,Gray-hooded Gull,Chroicocephalus cirrocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6224,species,hargul1,Hartlaub's Gull,Chroicocephalus hartlaubii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6225,hybrid,x00886,Gray-hooded x Hartlaub's Gull (hybrid),Chroicocephalus cirrocephalus x hartlaubii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6226,species,bkhgul,Black-headed Gull,Chroicocephalus ridibundus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6227,slash,y00778,Slender-billed/Black-headed Gull,Chroicocephalus genei/ridibundus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6228,species,bnhgul1,Brown-headed Gull,Chroicocephalus brunnicephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6229,hybrid,x00734,Slender-billed x Brown-headed Gull (hybrid),Chroicocephalus genei x brunnicephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6230,slash,y00955,Black-headed/Brown-headed Gull,Chroicocephalus ridibundus/brunnicephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6231,species,litgul,Little Gull,Hydrocoloeus minutus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6232,species,rosgul,Ross's Gull,Rhodostethia rosea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6233,species,dolgul2,Dolphin Gull,Leucophaeus scoresbii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6234,species,grygul,Gray Gull,Leucophaeus modestus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6235,species,laugul,Laughing Gull,Leucophaeus atricilla,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6238,species,fragul,Franklin's Gull,Leucophaeus pipixcan,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6239,hybrid,x00794,Bonaparte's x Franklin's Gull (hybrid),Chroicocephalus philadelphia x Leucophaeus pipixcan,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6240,slash,y00685,Laughing/Franklin's Gull,Leucophaeus atricilla/pipixcan,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6241,species,lavgul1,Lava Gull,Leucophaeus fuliginosus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6242,species,medgul1,Mediterranean Gull,Ichthyaetus melanocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6243,hybrid,x00695,Black-headed x Mediterranean Gull (hybrid),Chroicocephalus ridibundus x Ichthyaetus melanocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6244,slash,y00779,Black-headed/Mediterranean Gull,Chroicocephalus ridibundus/Ichthyaetus melanocephalus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6245,species,relgul2,Relict Gull,Ichthyaetus relictus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6246,species,whegul2,White-eyed Gull,Ichthyaetus leucophthalmus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6247,species,soogul2,Sooty Gull,Ichthyaetus hemprichii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6248,species,gbhgul2,Pallas's Gull,Ichthyaetus ichthyaetus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6249,species,audgul1,Audouin's Gull,Ichthyaetus audouinii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6250,species,belgul,Belcher's Gull,Larus belcheri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6251,species,olrgul1,Olrog's Gull,Larus atlanticus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6252,species,bktgul,Black-tailed Gull,Larus crassirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6253,species,pacgul1,Pacific Gull,Larus pacificus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6256,species,heegul,Heermann's Gull,Larus heermanni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6257,species,mewgul,Mew Gull,Larus canus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6258,issf,comgul1,Mew Gull (European),Larus canus canus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul +6259,issf,mewgul3,Mew Gull (Russian),Larus canus heinei,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul +6260,issf,kamgul1,Mew Gull (Kamchatka),Larus canus kamtschatschensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul +6261,issf,mewgul2,Mew Gull (American),Larus canus brachyrhynchus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,mewgul +6262,hybrid,x00847,Mediterranean x Mew Gull (hybrid),Ichthyaetus melanocephalus x Larus canus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6263,species,ribgul,Ring-billed Gull,Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6264,hybrid,x00641,Black-headed x Ring-billed Gull (hybrid),Chroicocephalus ridibundus x Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6265,hybrid,x00616,Laughing x Ring-billed Gull (hybrid),Leucophaeus atricilla x Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6266,hybrid,x00795,Franklin's x Ring-billed Gull (hybrid),Leucophaeus pipixcan x Larus delawarensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6267,species,wesgul,Western Gull,Larus occidentalis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6270,species,yefgul,Yellow-footed Gull,Larus livens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6271,slash,y00683,Western/Yellow-footed Gull,Larus occidentalis/livens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6272,species,calgul,California Gull,Larus californicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6273,issf,calgul1,California Gull (californicus),Larus californicus californicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,calgul +6274,issf,calgul2,California Gull (albertaensis),Larus californicus albertaensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,calgul +6275,species,hergul,Herring Gull,Larus argentatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6276,issf,amhgul1,Herring Gull (American),Larus argentatus smithsonianus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul +6277,issf,veggul1,Herring Gull (Vega),Larus argentatus vegae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul +6278,issf,casgul4,Herring Gull (Mongolian),Larus argentatus mongolicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul +6279,issf,euhgul1,Herring Gull (European),Larus argentatus argentatus/argenteus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,hergul +6282,hybrid,x00796,Ring-billed x Herring Gull (hybrid),Larus delawarensis x argentatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6283,hybrid,x00797,California x Herring Gull (hybrid),Larus californicus x argentatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6284,species,yelgul1,Yellow-legged Gull,Larus michahellis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6285,issf,yelgul2,Yellow-legged Gull (atlantis),Larus michahellis atlantis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,yelgul1 +6286,issf,yelgul3,Yellow-legged Gull (michahellis),Larus michahellis michahellis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,yelgul1 +6287,slash,y00848,Herring/Yellow-legged Gull,Larus argentatus/michahellis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6288,species,casgul2,Caspian Gull,Larus cachinnans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6289,hybrid,x00915,Herring x Caspian Gull (hybrid),Larus argentatus x cachinnans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6290,slash,y00724,Yellow-legged/Caspian Gull,Larus michahellis/cachinnans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6291,species,armgul1,Armenian Gull,Larus armenicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6292,slash,y00725,Yellow-legged/Caspian/Armenian Gull,Larus michahellis/cachinnans/armenicus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6293,species,y00478,Iceland Gull,Larus glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6294,issf,thagul,Iceland Gull (Thayer's),Larus glaucoides thayeri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 +6295,issf,kumgul1,Iceland Gull (kumlieni),Larus glaucoides kumlieni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 +6296,form,icegul2,Iceland Gull (thayeri/kumlieni),Larus glaucoides thayeri/kumlieni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 +6297,issf,icegul1,Iceland Gull (glaucoides),Larus glaucoides glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 +6298,form,icegul,Iceland Gull (glaucoides/kumlieni),Larus glaucoides glaucoides/kumlieni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 +6299,intergrade,x00435,Iceland Gull (Thayer's x Iceland),Larus glaucoides thayeri x glaucoides/kumlieni,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,y00478 +6300,hybrid,x00617,Herring x Iceland Gull (hybrid),Larus argentatus x glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6301,slash,y00682,Herring/Iceland Gull,Larus argentatus/glaucoides,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6302,species,lbbgul,Lesser Black-backed Gull,Larus fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6303,issf,lbbgul1,Lesser Black-backed Gull (fuscus),Larus fuscus fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul +6304,issf,lbbgul2,Lesser Black-backed Gull (intermedius),Larus fuscus intermedius,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul +6305,issf,lbbgul3,Lesser Black-backed Gull (graellsii),Larus fuscus graellsii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul +6306,issf,lbbgul4,Lesser Black-backed Gull (Heuglin's),Larus fuscus heuglini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul +6307,issf,casgul3,Lesser Black-backed Gull (Steppe),Larus fuscus barabensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul +6308,form,lbbgul5,Lesser Black-backed Gull (taimyrensis),Larus fuscus taimyrensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul +6309,form,lbbgul6,Lesser Black-backed Gull (intermedius/graellsii),Larus fuscus intermedius/graellsii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,lbbgul +6310,hybrid,x00057,Herring x Lesser Black-backed Gull (hybrid),Larus argentatus x fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6311,slash,y00726,Herring/Lesser Black-backed Gull,Larus argentatus/fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6312,slash,y00849,Yellow-legged/Lesser Black-backed Gull,Larus michahellis/fuscus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6313,species,slbgul,Slaty-backed Gull,Larus schistisagus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6314,hybrid,x00434,Herring x Slaty-backed Gull (hybrid),Larus argentatus x schistisagus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6315,species,glwgul,Glaucous-winged Gull,Larus glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6316,hybrid,x00051,Western x Glaucous-winged Gull (hybrid),Larus occidentalis x glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6317,hybrid,x00050,Herring x Glaucous-winged Gull (hybrid),Larus argentatus x glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6318,slash,y00956,Herring/Glaucous-winged Gull,Larus argentatus/glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6319,hybrid,x00436,Slaty-backed x Glaucous-winged Gull (hybrid),Larus schistisagus x glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6320,slash,y00656,Western/Glaucous-winged Gull,Larus occidentalis/glaucescens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6321,species,glagul,Glaucous Gull,Larus hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6326,hybrid,nelgul,Herring x Glaucous Gull (hybrid),Larus argentatus x hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6327,hybrid,x00437,Slaty-backed x Glaucous Gull (hybrid),Larus schistisagus x hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6328,hybrid,x00048,Glaucous-winged x Glaucous Gull (hybrid),Larus glaucescens x hyperboreus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6329,spuh,whwgul1,white-winged gull sp.,Larus sp. (white-winged gull sp.),Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6330,species,gbbgul,Great Black-backed Gull,Larus marinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6331,hybrid,x00047,Herring x Great Black-backed Gull (hybrid),Larus argentatus x marinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6332,hybrid,x00632,Glaucous x Great Black-backed Gull (hybrid),Larus hyperboreus x marinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6333,species,kelgul,Kelp Gull,Larus dominicanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6334,issf,kelgul3,Kelp Gull (dominicanus),Larus dominicanus dominicanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul +6335,issf,kelgul2,Kelp Gull (austrinus),Larus dominicanus austrinus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul +6336,issf,kelgul4,Kelp Gull (judithae),Larus dominicanus judithae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul +6337,issf,kelgul1,Kelp Gull (vetula),Larus dominicanus vetula,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul +6338,issf,kelgul5,Kelp Gull (melisandae),Larus dominicanus melisandae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,kelgul +6339,hybrid,kxhgul1,Herring x Kelp Gull (hybrid),Larus argentatus x dominicanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6340,spuh,larus1,Larus sp.,Larus sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6341,spuh,larus,gull sp.,Larinae sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6342,species,brnnod,Brown Noddy,Anous stolidus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6348,species,blknod,Black Noddy,Anous minutus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6349,issf,blknod3,Black Noddy (americanus),Anous minutus americanus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blknod +6350,issf,blknod1,Black Noddy (melanogenys),Anous minutus melanogenys,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blknod +6351,issf,blknod2,Black Noddy (minutus Group),Anous minutus [minutus Group],Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blknod +6357,slash,noddy,Brown/Black Noddy,Anous stolidus/minutus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6358,species,lesnod1,Lesser Noddy,Anous tenuirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6361,slash,y00780,Black/Lesser Noddy,Anous minutus/tenuirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6362,species,grynod1,Gray Noddy,Anous albivitta,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6366,species,bugnod,Blue-gray Noddy,Anous ceruleus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6372,species,whiter,White Tern,Gygis alba,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6373,issf,whiter3,White Tern (Atlantic),Gygis alba alba,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,whiter +6374,issf,whiter4,White Tern (Pacific),Gygis alba candida/leucopes,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,whiter +6377,issf,whiter5,White Tern (Little),Gygis alba microrhyncha,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,whiter +6378,species,sooter1,Sooty Tern,Onychoprion fuscatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6387,species,gybter1,Gray-backed Tern,Onychoprion lunatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6388,species,briter1,Bridled Tern,Onychoprion anaethetus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6395,slash,y00318,Sooty/Bridled Tern,Onychoprion fuscatus/anaethetus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6396,species,aleter1,Aleutian Tern,Onychoprion aleuticus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6397,species,litter1,Little Tern,Sternula albifrons,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6404,species,leater1,Least Tern,Sternula antillarum,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6408,slash,y00661,Little/Least Tern,Sternula albifrons/antillarum,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6409,species,yebter2,Yellow-billed Tern,Sternula superciliaris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6410,species,faiter2,Australian Fairy Tern,Sternula nereis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6415,hybrid,x00798,Little x Australian Fairy Tern (hybrid),Sternula albifrons x nereis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6416,slash,y00850,Little/Australian Fairy Tern,Sternula albifrons/nereis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6417,species,perter2,Peruvian Tern,Sternula lorata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6418,species,sauter2,Saunders's Tern,Sternula saundersi,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6419,slash,y00662,Little/Saunders's Tern,Sternula albifrons/saundersi,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6420,species,damter2,Damara Tern,Sternula balaenarum,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6421,species,labter1,Large-billed Tern,Phaetusa simplex,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6424,species,gubter1,Gull-billed Tern,Gelochelidon nilotica,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6425,issf,gubter2,Gull-billed Tern (Gull-billed),Gelochelidon nilotica [nilotica Group],Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,gubter1 +6431,issf,gubter3,Gull-billed Tern (Australian),Gelochelidon nilotica macrotarsa,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,gubter1 +6432,species,caster1,Caspian Tern,Hydroprogne caspia,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6433,species,incter1,Inca Tern,Larosterna inca,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6434,species,blkter,Black Tern,Chlidonias niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6435,issf,blkter1,Black Tern (Eurasian),Chlidonias niger niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkter +6436,issf,blkter2,Black Tern (American),Chlidonias niger surinamensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkter +6437,species,whwter,White-winged Tern,Chlidonias leucopterus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6438,species,whiter2,Whiskered Tern,Chlidonias hybrida,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6442,species,blfter1,Black-fronted Tern,Chlidonias albostriatus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6443,spuh,chlido1,Chlidonias sp.,Chlidonias sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6444,species,roster,Roseate Tern,Sterna dougallii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6450,species,whfter1,White-fronted Tern,Sterna striata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6454,species,blnter1,Black-naped Tern,Sterna sumatrana,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6457,species,comter,Common Tern,Sterna hirundo,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6458,issf,comter1,Common Tern (hirundo/tibetana),Sterna hirundo hirundo/tibetana,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,comter +6461,intergrade,comter3,Common Tern (hirundo/tibetana x longipennis),Sterna hirundo hirundo/tibetana x longipennis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,comter +6462,issf,comter2,Common Tern (longipennis),Sterna hirundo longipennis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,comter +6463,hybrid,x00735,Roseate x Common Tern (hybrid),Sterna dougallii x hirundo,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6464,species,arcter,Arctic Tern,Sterna paradisaea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6465,hybrid,x00910,Common x Arctic Tern (hybrid),Sterna hirundo x paradisaea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6466,slash,y00317,Common/Arctic Tern,Sterna hirundo/paradisaea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6467,species,soater1,South American Tern,Sterna hirundinacea,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6468,species,antter1,Antarctic Tern,Sterna vittata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6469,issf,antter2,Antarctic Tern (Antarctic),Sterna vittata [vittata Group],Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,antter1 +6475,issf,antter3,Antarctic Tern (South Georgia),Sterna vittata georgiae,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,antter1 +6476,slash,y01134,Arctic/Antarctic Tern,Sterna paradisaea/vittata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6477,species,forter,Forster's Tern,Sterna forsteri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6478,slash,y00727,Common/Forster's Tern,Sterna hirundo/forsteri,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6479,species,truter,Snowy-crowned Tern,Sterna trudeaui,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6480,species,blbter1,Black-bellied Tern,Sterna acuticauda,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6481,species,rivter1,River Tern,Sterna aurantia,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6482,slash,y01065,Black-bellied/River Tern,Sterna acuticauda/aurantia,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6483,species,whcter1,White-cheeked Tern,Sterna repressa,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6484,species,kerter1,Kerguelen Tern,Sterna virgata,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6485,spuh,sterna,Sterna sp.,Sterna sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6486,species,royter1,Royal Tern,Thalasseus maximus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6487,issf,royter2,Royal Tern (African),Thalasseus maximus albididorsalis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,royter1 +6488,issf,royter3,Royal Tern (American),Thalasseus maximus maximus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,royter1 +6489,species,grcter1,Great Crested Tern,Thalasseus bergii,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6494,species,santer1,Sandwich Tern,Thalasseus sandvicensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6495,issf,santer4,Sandwich Tern (Eurasian),Thalasseus sandvicensis sandvicensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 +6496,issf,santer2,Sandwich Tern (Cabot's),Thalasseus sandvicensis acuflavidus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 +6497,issf,santer3,Sandwich Tern (Cayenne),Thalasseus sandvicensis eurygnathus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 +6498,intergrade,santer5,Sandwich Tern (Cabot's x Cayenne),Thalasseus sandvicensis acuflavidus x eurygnathus,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,santer1 +6499,species,eleter1,Elegant Tern,Thalasseus elegans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6500,hybrid,x00438,Sandwich x Elegant Tern (hybrid),Thalasseus sandvicensis x elegans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6501,slash,y00316,Royal/Elegant Tern,Thalasseus maximus/elegans,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6502,species,lecter2,Lesser Crested Tern,Thalasseus bengalensis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6506,species,chcter2,Chinese Crested Tern,Thalasseus bernsteini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6507,hybrid,x00848,Great x Chinese Crested Tern (hybrid),Thalasseus bergii x bernsteini,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6508,spuh,thalas1,Thalasseus sp.,Thalasseus sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6509,spuh,larter1,large tern sp.,Hydroprogne/Thalasseus sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6510,spuh,tern1,tern sp.,Sterninae sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6511,species,blkski,Black Skimmer,Rynchops niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6512,issf,blkski1,Black Skimmer (niger),Rynchops niger niger,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkski +6513,issf,blkski2,Black Skimmer (cinerascens),Rynchops niger cinerascens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkski +6514,issf,blkski3,Black Skimmer (intercedens),Rynchops niger intercedens,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",,blkski +6515,species,afrski1,African Skimmer,Rynchops flavirostris,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6516,species,indski1,Indian Skimmer,Rynchops albicollis,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6517,spuh,y00728,gull/tern sp.,Laridae sp.,Charadriiformes,"Laridae (Gulls, Terns, and Skimmers)",, +6518,species,kagu1,Kagu,Rhynochetos jubatus,Eurypygiformes,Rhynochetidae (Kagu),Kagu, +6519,species,sunbit1,Sunbittern,Eurypyga helias,Eurypygiformes,Eurypygidae (Sunbittern),Sunbittern, +6523,species,whttro,White-tailed Tropicbird,Phaethon lepturus,Phaethontiformes,Phaethontidae (Tropicbirds),Tropicbirds, +6524,issf,whttro7,White-tailed Tropicbird (Indian Ocean),Phaethon lepturus lepturus,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro +6525,issf,whttro4,White-tailed Tropicbird (Golden),Phaethon lepturus fulvus,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro +6526,issf,whttro6,White-tailed Tropicbird (Europa I.),Phaethon lepturus europae,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro +6527,issf,whttro2,White-tailed Tropicbird (Atlantic),Phaethon lepturus catesbyi,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro +6528,issf,whttro3,White-tailed Tropicbird (Pacific),Phaethon lepturus dorotheae,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro +6529,issf,whttro5,White-tailed Tropicbird (Ascension),Phaethon lepturus ascensionis,Phaethontiformes,Phaethontidae (Tropicbirds),,whttro +6530,species,rebtro,Red-billed Tropicbird,Phaethon aethereus,Phaethontiformes,Phaethontidae (Tropicbirds),, +6534,species,rettro,Red-tailed Tropicbird,Phaethon rubricauda,Phaethontiformes,Phaethontidae (Tropicbirds),, +6539,slash,y00473,Red-billed/Red-tailed Tropicbird,Phaethon aethereus/rubricauda,Phaethontiformes,Phaethontidae (Tropicbirds),, +6540,spuh,tropic1,tropicbird sp.,Phaethon sp.,Phaethontiformes,Phaethontidae (Tropicbirds),, +6541,species,retloo,Red-throated Loon,Gavia stellata,Gaviiformes,Gaviidae (Loons),Loons, +6542,species,arcloo,Arctic Loon,Gavia arctica,Gaviiformes,Gaviidae (Loons),, +6545,species,pacloo,Pacific Loon,Gavia pacifica,Gaviiformes,Gaviidae (Loons),, +6546,slash,y00219,Arctic/Pacific Loon,Gavia arctica/pacifica,Gaviiformes,Gaviidae (Loons),, +6547,species,comloo,Common Loon,Gavia immer,Gaviiformes,Gaviidae (Loons),, +6548,species,yebloo,Yellow-billed Loon,Gavia adamsii,Gaviiformes,Gaviidae (Loons),, +6549,slash,y00220,Common/Yellow-billed Loon,Gavia immer/adamsii,Gaviiformes,Gaviidae (Loons),, +6550,spuh,loon,loon sp.,Gavia sp.,Gaviiformes,Gaviidae (Loons),, +6551,species,kinpen1,King Penguin,Aptenodytes patagonicus,Sphenisciformes,Spheniscidae (Penguins),Penguins, +6552,species,emppen1,Emperor Penguin,Aptenodytes forsteri,Sphenisciformes,Spheniscidae (Penguins),, +6553,species,adepen1,Adelie Penguin,Pygoscelis adeliae,Sphenisciformes,Spheniscidae (Penguins),, +6554,species,genpen1,Gentoo Penguin,Pygoscelis papua,Sphenisciformes,Spheniscidae (Penguins),, +6557,species,chipen2,Chinstrap Penguin,Pygoscelis antarcticus,Sphenisciformes,Spheniscidae (Penguins),, +6558,species,yeepen1,Yellow-eyed Penguin,Megadyptes antipodes,Sphenisciformes,Spheniscidae (Penguins),, +6559,species,litpen1,Little Penguin,Eudyptula minor,Sphenisciformes,Spheniscidae (Penguins),, +6566,species,jacpen1,African Penguin,Spheniscus demersus,Sphenisciformes,Spheniscidae (Penguins),, +6567,species,humpen1,Humboldt Penguin,Spheniscus humboldti,Sphenisciformes,Spheniscidae (Penguins),, +6568,species,galpen1,Galapagos Penguin,Spheniscus mendiculus,Sphenisciformes,Spheniscidae (Penguins),, +6569,species,magpen1,Magellanic Penguin,Spheniscus magellanicus,Sphenisciformes,Spheniscidae (Penguins),, +6570,species,fiopen1,Fiordland Penguin,Eudyptes pachyrhynchus,Sphenisciformes,Spheniscidae (Penguins),, +6571,species,bicpen1,Erect-crested Penguin,Eudyptes sclateri,Sphenisciformes,Spheniscidae (Penguins),, +6572,species,macpen1,Macaroni Penguin,Eudyptes chrysolophus,Sphenisciformes,Spheniscidae (Penguins),, +6573,species,roypen1,Royal Penguin,Eudyptes schlegeli,Sphenisciformes,Spheniscidae (Penguins),, +6574,species,rocpen1,Southern Rockhopper Penguin,Eudyptes chrysocome,Sphenisciformes,Spheniscidae (Penguins),, +6575,issf,rocpen2,Southern Rockhopper Penguin (Western),Eudyptes chrysocome chrysocome,Sphenisciformes,Spheniscidae (Penguins),,rocpen1 +6576,issf,rocpen3,Southern Rockhopper Penguin (Eastern),Eudyptes chrysocome filholi,Sphenisciformes,Spheniscidae (Penguins),,rocpen1 +6577,hybrid,x00921,Macaroni x Southern Rockhopper Penguin (hybrid),Eudyptes chrysolophus x chrysocome,Sphenisciformes,Spheniscidae (Penguins),, +6578,species,rocpen4,Moseley's Rockhopper Penguin,Eudyptes moseleyi,Sphenisciformes,Spheniscidae (Penguins),, +6579,species,snapen1,Snares Penguin,Eudyptes robustus,Sphenisciformes,Spheniscidae (Penguins),, +6580,spuh,pengui1,penguin sp.,Spheniscidae sp.,Sphenisciformes,Spheniscidae (Penguins),, +6581,species,yenalb,Yellow-nosed Albatross,Thalassarche chlororhynchos,Procellariiformes,Diomedeidae (Albatrosses),Albatrosses, +6582,issf,yenalb2,Yellow-nosed Albatross (Atlantic),Thalassarche chlororhynchos chlororhynchos,Procellariiformes,Diomedeidae (Albatrosses),,yenalb +6583,issf,yenalb3,Yellow-nosed Albatross (Indian),Thalassarche chlororhynchos carteri,Procellariiformes,Diomedeidae (Albatrosses),,yenalb +6584,species,gyhalb,Gray-headed Albatross,Thalassarche chrysostoma,Procellariiformes,Diomedeidae (Albatrosses),, +6585,species,bulalb2,Buller's Albatross,Thalassarche bulleri,Procellariiformes,Diomedeidae (Albatrosses),, +6586,species,whcalb1,White-capped Albatross,Thalassarche cauta,Procellariiformes,Diomedeidae (Albatrosses),, +6587,issf,whcalb2,White-capped Albatross (cauta),Thalassarche cauta cauta,Procellariiformes,Diomedeidae (Albatrosses),,whcalb1 +6588,issf,whcalb3,White-capped Albatross (steadi),Thalassarche cauta steadi,Procellariiformes,Diomedeidae (Albatrosses),,whcalb1 +6589,species,salalb1,Salvin's Albatross,Thalassarche salvini,Procellariiformes,Diomedeidae (Albatrosses),, +6590,species,shyalb2,Chatham Albatross,Thalassarche eremita,Procellariiformes,Diomedeidae (Albatrosses),, +6591,slash,shyalb,White-capped/Salvin's/Chatham Albatross,Thalassarche cauta/salvini/eremita,Procellariiformes,Diomedeidae (Albatrosses),, +6592,species,bkbalb,Black-browed Albatross,Thalassarche melanophris,Procellariiformes,Diomedeidae (Albatrosses),, +6593,issf,bkbalb1,Black-browed Albatross (Black-browed),Thalassarche melanophris melanophris,Procellariiformes,Diomedeidae (Albatrosses),,bkbalb +6594,issf,bkbalb2,Black-browed Albatross (Campbell),Thalassarche melanophris impavida,Procellariiformes,Diomedeidae (Albatrosses),,bkbalb +6595,spuh,smaalb1,small albatross sp.,Thalassarche sp.,Procellariiformes,Diomedeidae (Albatrosses),, +6596,species,sooalb1,Sooty Albatross,Phoebetria fusca,Procellariiformes,Diomedeidae (Albatrosses),, +6597,species,limalb1,Light-mantled Albatross,Phoebetria palpebrata,Procellariiformes,Diomedeidae (Albatrosses),, +6598,species,royalb1,Royal Albatross,Diomedea epomophora,Procellariiformes,Diomedeidae (Albatrosses),, +6599,issf,royalb2,Royal Albatross (Southern),Diomedea epomophora epomophora,Procellariiformes,Diomedeidae (Albatrosses),,royalb1 +6600,issf,royalb3,Royal Albatross (Northern),Diomedea epomophora sanfordi,Procellariiformes,Diomedeidae (Albatrosses),,royalb1 +6601,species,wanalb,Wandering Albatross,Diomedea exulans,Procellariiformes,Diomedeidae (Albatrosses),, +6602,issf,wanalb1,Wandering Albatross (Snowy),Diomedea exulans exulans,Procellariiformes,Diomedeidae (Albatrosses),,wanalb +6603,issf,wanalb3,Wandering Albatross (Tristan),Diomedea exulans dabbenena,Procellariiformes,Diomedeidae (Albatrosses),,wanalb +6604,issf,wanalb2,Wandering Albatross (New Zealand),Diomedea exulans antipodensis,Procellariiformes,Diomedeidae (Albatrosses),,wanalb +6605,issf,wanalb4,Wandering Albatross (Gibson's),Diomedea exulans gibsoni,Procellariiformes,Diomedeidae (Albatrosses),,wanalb +6606,issf,wanalb5,Wandering Albatross (Amsterdam),Diomedea exulans amsterdamensis,Procellariiformes,Diomedeidae (Albatrosses),,wanalb +6607,spuh,laralb1,large albatross sp.,Diomedea sp.,Procellariiformes,Diomedeidae (Albatrosses),, +6608,species,wavalb,Waved Albatross,Phoebastria irrorata,Procellariiformes,Diomedeidae (Albatrosses),, +6609,species,layalb,Laysan Albatross,Phoebastria immutabilis,Procellariiformes,Diomedeidae (Albatrosses),, +6610,species,bkfalb,Black-footed Albatross,Phoebastria nigripes,Procellariiformes,Diomedeidae (Albatrosses),, +6611,hybrid,x00017,Laysan x Black-footed Albatross (hybrid),Phoebastria immutabilis x nigripes,Procellariiformes,Diomedeidae (Albatrosses),, +6612,species,shtalb,Short-tailed Albatross,Phoebastria albatrus,Procellariiformes,Diomedeidae (Albatrosses),, +6613,spuh,albatr1,albatross sp.,Diomedeidae sp.,Procellariiformes,Diomedeidae (Albatrosses),, +6614,species,wispet,Wilson's Storm-Petrel,Oceanites oceanicus,Procellariiformes,Oceanitidae (Southern Storm-Petrels),Storm-Petrels, +6615,issf,wilstp2,Wilson's Storm-Petrel (Wilson's),Oceanites oceanicus oceanicus/exasperatus,Procellariiformes,Oceanitidae (Southern Storm-Petrels),,wispet +6618,issf,wilstp1,Wilson's Storm-Petrel (Fuegian),Oceanites oceanicus chilensis,Procellariiformes,Oceanitidae (Southern Storm-Petrels),,wispet +6619,species,pumstp1,Pincoya Storm-Petrel,Oceanites pincoyae,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6620,species,wvspet1,Elliot's Storm-Petrel,Oceanites gracilis,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6623,spuh,oceani1,Oceanites sp.,Oceanites sp.,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6624,species,gybstp1,Gray-backed Storm-Petrel,Garrodia nereis,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6625,species,wfspet,White-faced Storm-Petrel,Pelagodroma marina,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6632,species,wbspet1,White-bellied Storm-Petrel,Fregetta grallaria,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6633,issf,whbstp1,White-bellied Storm-Petrel (White-bellied),Fregetta grallaria [grallaria Group],Procellariiformes,Oceanitidae (Southern Storm-Petrels),,wbspet1 +6637,issf,whbstp2,White-bellied Storm-Petrel (Rapa I.),Fregetta grallaria titan,Procellariiformes,Oceanitidae (Southern Storm-Petrels),,wbspet1 +6638,species,nezstp1,New Zealand Storm-Petrel,Fregetta maoriana,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6639,form,necstp1,New Caledonian Storm-Petrel (undescribed form),Fregetta [undescribed form],Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6640,species,bbspet1,Black-bellied Storm-Petrel,Fregetta tropica,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6643,species,pospet1,Polynesian Storm-Petrel,Nesofregetta fuliginosa,Procellariiformes,Oceanitidae (Southern Storm-Petrels),, +6644,species,bripet,European Storm-Petrel,Hydrobates pelagicus,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6645,issf,eurstp1,European Storm-Petrel (British),Hydrobates pelagicus pelagicus,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),,bripet +6646,issf,eurstp2,European Storm-Petrel (Mediterranean),Hydrobates pelagicus melitensis,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),,bripet +6647,species,ftspet,Fork-tailed Storm-Petrel,Oceanodroma furcata,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6650,species,rispet1,Ringed Storm-Petrel,Oceanodroma hornbyi,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6651,species,lcspet,Leach's Storm-Petrel,Oceanodroma leucorhoa,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6652,issf,leastp3,Leach's Storm-Petrel (Leach's),Oceanodroma leucorhoa leucorhoa,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),,lcspet +6653,issf,leastp4,Leach's Storm-Petrel (Chapman's),Oceanodroma leucorhoa chapmani,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),,lcspet +6654,species,leastp5,Townsend's Storm-Petrel,Oceanodroma socorroensis,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6655,slash,y00937,Leach's/Townsend's Storm-Petrel,Oceanodroma leucorhoa/socorroensis,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6656,form,leastp1,Leach's/Townsend's Storm-Petrel (dark-rumped),Oceanodroma leucorhoa/socorroensis (dark-rumped),Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6657,form,y00938,Leach's/Townsend's Storm-Petrel (white-rumped),Oceanodroma leucorhoa/socorroensis (white-rumped),Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6658,species,leastp2,Ainley's Storm-Petrel,Oceanodroma cheimomnestes,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6659,slash,y00939,Leach's/Townsend's/Ainley's Storm-Petrel,Oceanodroma leucorhoa/socorroensis/cheimomnestes,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6660,species,swspet,Swinhoe's Storm-Petrel,Oceanodroma monorhis,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6661,species,asspet,Ashy Storm-Petrel,Oceanodroma homochroa,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6662,species,barpet,Band-rumped Storm-Petrel,Oceanodroma castro,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6663,form,barstp4,Band-rumped Storm-Petrel (Madeiran),Oceanodroma castro castro,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),,barpet +6664,form,barstp3,Band-rumped Storm-Petrel (Grant's),Oceanodroma castro [undescribed form],Procellariiformes,Hydrobatidae (Northern Storm-Petrels),,barpet +6665,form,barstp5,Band-rumped Storm-Petrel (Darwin's),Oceanodroma castro bangsi,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),,barpet +6666,species,monstp1,Monteiro's Storm-Petrel,Oceanodroma monteiroi,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6667,species,cavstp1,Cape Verde Storm-Petrel,Oceanodroma jabejabe,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6668,spuh,oceano2,Oceanodroma sp. (Band-rumped complex),Oceanodroma sp. (Band-rumped complex),Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6669,species,wrspet,Wedge-rumped Storm-Petrel,Oceanodroma tethys,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6672,species,bkspet,Black Storm-Petrel,Oceanodroma melania,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6673,species,guspet,Guadalupe Storm-Petrel,Oceanodroma macrodactyla,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6674,species,maspet,Markham's Storm-Petrel,Oceanodroma markhami,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6675,slash,y00715,Black/Markham's Storm-Petrel,Oceanodroma melania/markhami,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6676,species,maspet2,Matsudaira's Storm-Petrel,Oceanodroma matsudairae,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6677,species,trspet,Tristram's Storm-Petrel,Oceanodroma tristrami,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6678,species,lsspet,Least Storm-Petrel,Oceanodroma microsoma,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6679,spuh,oceano1,Oceanodroma sp.,Oceanodroma sp.,Procellariiformes,Hydrobatidae (Northern Storm-Petrels),, +6680,spuh,storm-1,storm-petrel sp. (dark-rumped),Oceanitidae/Hydrobatidae sp. (dark-rumped),Procellariiformes,,, +6681,spuh,storm-2,storm-petrel sp. (white-rumped),Oceanitidae/Hydrobatidae sp. (white-rumped),Procellariiformes,,, +6682,spuh,stopet,storm-petrel sp.,Oceanitidae/Hydrobatidae sp.,Procellariiformes,,, +6683,species,angpet1,Southern Giant-Petrel,Macronectes giganteus,Procellariiformes,Procellariidae (Shearwaters and Petrels),"Petrels, Shearwaters, and Diving-Petrels", +6684,species,norgip1,Northern Giant-Petrel,Macronectes halli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6685,slash,y00228,Northern/Southern Giant-Petrel,Macronectes giganteus/halli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6686,species,norful,Northern Fulmar,Fulmarus glacialis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6687,issf,norful4,Northern Fulmar (Atlantic),Fulmarus glacialis glacialis/auduboni,Procellariiformes,Procellariidae (Shearwaters and Petrels),,norful +6690,issf,norful3,Northern Fulmar (Pacific),Fulmarus glacialis rodgersii,Procellariiformes,Procellariidae (Shearwaters and Petrels),,norful +6691,species,souful1,Southern Fulmar,Fulmarus glacialoides,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6692,species,antpet1,Antarctic Petrel,Thalassoica antarctica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6693,species,cappet,Cape Petrel,Daption capense,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6694,issf,cappet1,Cape Petrel (Antarctic),Daption capense capense,Procellariiformes,Procellariidae (Shearwaters and Petrels),,cappet +6695,issf,cappet2,Cape Petrel (Snares),Daption capense australe,Procellariiformes,Procellariidae (Shearwaters and Petrels),,cappet +6696,species,snopet1,Snow Petrel,Pagodroma nivea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6699,species,kerpet2,Kerguelen Petrel,Aphrodroma brevirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6700,species,lshpet1,Large St. Helena Petrel,Pterodroma rupinarum,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6701,species,grwpet3,Great-winged Petrel,Pterodroma macroptera,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6702,species,grwpet2,Gray-faced Petrel,Pterodroma gouldi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6703,slash,grwpet1,Great-winged/Gray-faced Petrel,Pterodroma macroptera/gouldi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6704,species,kerpet,Kermadec Petrel,Pterodroma neglecta,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6707,species,magpet1,Magenta Petrel,Pterodroma magentae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6708,species,tripet1,Trindade Petrel,Pterodroma arminjoniana,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6709,species,herpet2,Herald Petrel,Pterodroma heraldica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6710,slash,herpet,Trindade/Herald Petrel,Pterodroma arminjoniana/heraldica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6711,species,murpet,Murphy's Petrel,Pterodroma ultima,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6712,species,solpet1,Providence Petrel,Pterodroma solandri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6713,species,henpet1,Henderson Petrel,Pterodroma atrata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6714,species,madpet,Zino's Petrel,Pterodroma madeira,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6715,species,feapet1,Fea's Petrel,Pterodroma feae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6716,issf,feapet3,Fea's Petrel (Fea's),Pterodroma feae feae,Procellariiformes,Procellariidae (Shearwaters and Petrels),,feapet1 +6717,issf,feapet2,Fea's Petrel (Desertas),Pterodroma feae deserta,Procellariiformes,Procellariidae (Shearwaters and Petrels),,feapet1 +6718,slash,y00609,Zino's/Fea's Petrel,Pterodroma madeira/feae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6719,species,soppet1,Soft-plumaged Petrel,Pterodroma mollis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6722,species,barpet1,Barau's Petrel,Pterodroma baraui,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6723,species,whhpet1,White-headed Petrel,Pterodroma lessonii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6724,species,motpet,Mottled Petrel,Pterodroma inexpectata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6725,species,berpet,Bermuda Petrel,Pterodroma cahow,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6726,species,bkcpet,Black-capped Petrel,Pterodroma hasitata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6727,issf,bkcpet1,Black-capped Petrel (hasitata),Pterodroma hasitata hasitata,Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet +6728,issf,bkcpet2,Black-capped Petrel (Jamaican),Pterodroma hasitata caribbaea,Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet +6729,form,bkcpet4,Black-capped Petrel (White-faced),Pterodroma hasitata (White-faced),Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet +6730,form,bkcpet3,Black-capped Petrel (Dark-faced),Pterodroma hasitata (Dark-faced),Procellariiformes,Procellariidae (Shearwaters and Petrels),,bkcpet +6731,slash,y00713,Bermuda/Black-capped Petrel,Pterodroma cahow/hasitata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6732,species,jufpet,Juan Fernandez Petrel,Pterodroma externa,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6733,species,atlpet1,Atlantic Petrel,Pterodroma incerta,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6734,species,galpet,Galapagos Petrel,Pterodroma phaeopygia,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6735,species,hawpet1,Hawaiian Petrel,Pterodroma sandwichensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6736,slash,y00472,Galapagos/Hawaiian Petrel (Dark-rumped Petrel),Pterodroma phaeopygia/sandwichensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6737,species,whnpet,White-necked Petrel,Pterodroma cervicalis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6738,slash,y01135,Juan Fernandez/White-necked Petrel,Pterodroma externa/cervicalis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6739,species,bonpet,Bonin Petrel,Pterodroma hypoleuca,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6740,species,bkwpet,Black-winged Petrel,Pterodroma nigripennis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6741,species,chapet1,Chatham Petrel,Pterodroma axillaris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6742,species,coopet,Cook's Petrel,Pterodroma cookii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6743,species,maspet3,Masatierra Petrel,Pterodroma defilippiana,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6744,species,goupet1,Gould's Petrel,Pterodroma leucoptera,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6745,issf,goupet2,Gould's Petrel (Gould's),Pterodroma leucoptera leucoptera,Procellariiformes,Procellariidae (Shearwaters and Petrels),,goupet1 +6746,issf,goupet3,Gould's Petrel (New Caledonia),Pterodroma leucoptera caledonica,Procellariiformes,Procellariidae (Shearwaters and Petrels),,goupet1 +6747,species,colpet1,Collared Petrel,Pterodroma brevipes,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6748,issf,goupet4,Collared Petrel (Collared),Pterodroma brevipes brevipes,Procellariiformes,Procellariidae (Shearwaters and Petrels),,colpet1 +6749,issf,goupet5,Collared Petrel (Magnificent),Pterodroma brevipes magnificens,Procellariiformes,Procellariidae (Shearwaters and Petrels),,colpet1 +6750,species,stepet,Stejneger's Petrel,Pterodroma longirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6751,species,pycpet1,Pycroft's Petrel,Pterodroma pycrofti,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6752,spuh,coopet1,Cookilaria petrel sp.,Pterodroma sp. (Cookilaria sp.),Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6753,species,phopet1,Phoenix Petrel,Pterodroma alba,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6754,species,venpet1,Vanuatu Petrel,Pterodroma occulta,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6755,spuh,pterod,Pterodroma sp.,Pterodroma sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6756,species,blupet1,Blue Petrel,Halobaena caerulea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6757,species,faipri1,Fairy Prion,Pachyptila turtur,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6758,species,brbpri1,Broad-billed Prion,Pachyptila vittata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6759,species,salpri1,Salvin's Prion,Pachyptila salvini,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6760,issf,salpri2,Salvin's Prion (Salvin's),Pachyptila salvini salvini,Procellariiformes,Procellariidae (Shearwaters and Petrels),,salpri1 +6761,issf,salpri3,Salvin's Prion (MacGillivray's),Pachyptila salvini macgillivrayi,Procellariiformes,Procellariidae (Shearwaters and Petrels),,salpri1 +6762,form,goupri1,Gough Prion (undescribed form),Pachyptila [undescribed form],Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6763,species,dovpri1,Antarctic Prion,Pachyptila desolata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6767,species,slbpri1,Slender-billed Prion,Pachyptila belcheri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6768,species,fulpri1,Fulmar Prion,Pachyptila crassirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6772,spuh,prion1,prion sp.,Pachyptila sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6773,species,bulpet,Bulwer's Petrel,Bulweria bulwerii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6774,species,joupet,Jouanin's Petrel,Bulweria fallax,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6775,species,sshpet1,Small St. Helena Petrel,Bulweria bifax,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6776,species,fijpet1,Fiji Petrel,Pseudobulweria macgillivrayi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6777,species,maspet1,Mascarene Petrel,Pseudobulweria aterrima,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6778,species,tahpet1,Tahiti Petrel,Pseudobulweria rostrata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6781,species,becpet1,Beck's Petrel,Pseudobulweria becki,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6782,spuh,pseudo2,Pseudobulweria sp.,Pseudobulweria sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6783,species,grapet,Gray Petrel,Procellaria cinerea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6784,species,whcpet1,White-chinned Petrel,Procellaria aequinoctialis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6785,species,spepet1,Spectacled Petrel,Procellaria conspicillata,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6786,species,parpet1,Parkinson's Petrel,Procellaria parkinsoni,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6787,species,wespet1,Westland Petrel,Procellaria westlandica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6788,spuh,procel1,Procellaria sp.,Procellaria sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6789,species,strshe,Streaked Shearwater,Calonectris leucomelas,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6790,species,corshe,Cory's Shearwater,Calonectris diomedea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6791,issf,scoshe1,Cory's Shearwater (Scopoli's),Calonectris diomedea diomedea,Procellariiformes,Procellariidae (Shearwaters and Petrels),,corshe +6792,issf,corshe1,Cory's Shearwater (borealis),Calonectris diomedea borealis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,corshe +6793,species,cavshe1,Cape Verde Shearwater,Calonectris edwardsii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6794,slash,y00676,Cory's/Cape Verde Shearwater,Calonectris diomedea/edwardsii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6795,species,pifshe,Pink-footed Shearwater,Ardenna creatopus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6796,species,flfshe,Flesh-footed Shearwater,Ardenna carneipes,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6797,species,greshe,Great Shearwater,Ardenna gravis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6798,slash,y00606,Cory's/Great Shearwater,Calonectris diomedea/Ardenna gravis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6799,species,wetshe,Wedge-tailed Shearwater,Ardenna pacifica,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6800,species,bulshe,Buller's Shearwater,Ardenna bulleri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6801,species,sooshe,Sooty Shearwater,Ardenna grisea,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6802,species,shtshe,Short-tailed Shearwater,Ardenna tenuirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6803,slash,y00020,Sooty/Short-tailed Shearwater,Ardenna grisea/tenuirostris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6804,species,chrshe,Christmas Shearwater,Puffinus nativitatis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6805,species,audshe3,Galapagos Shearwater,Puffinus subalaris,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6806,form,galshe1,Galapagos Shearwater (Dark-winged),Puffinus subalaris (Dark-winged),Procellariiformes,Procellariidae (Shearwaters and Petrels),,audshe3 +6807,form,galshe2,Galapagos Shearwater (Light-winged),Puffinus subalaris (Light-winged),Procellariiformes,Procellariidae (Shearwaters and Petrels),,audshe3 +6808,species,manshe,Manx Shearwater,Puffinus puffinus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6809,species,levshe1,Yelkouan Shearwater,Puffinus yelkouan,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6810,species,balshe1,Balearic Shearwater,Puffinus mauretanicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6811,slash,medshe1,Yelkouan/Balearic Shearwater,Puffinus yelkouan/mauretanicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6812,species,hutshe1,Hutton's Shearwater,Puffinus huttoni,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6813,species,troshe4,Bannerman's Shearwater,Puffinus bannermani,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6814,species,towshe1,Townsend's Shearwater,Puffinus auricularis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6815,species,towshe2,Newell's Shearwater,Puffinus newelli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6816,slash,towshe,Townsend's/Newell's Shearwater,Puffinus auricularis/newelli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6817,species,towshe3,Rapa Shearwater,Puffinus myrtae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6818,slash,y00931,Newell's/Rapa Shearwater,Puffinus newelli/myrtae,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6819,species,bryshe1,Bryan's Shearwater,Puffinus bryani,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6820,species,bkvshe,Black-vented Shearwater,Puffinus opisthomelas,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6821,species,flushe1,Fluttering Shearwater,Puffinus gavia,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6822,slash,y00832,Hutton's/Fluttering Shearwater,Puffinus huttoni/gavia,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6823,species,litshe8,Little Shearwater,Puffinus assimilis,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6824,issf,litshe3,Little Shearwater (Tasman),Puffinus assimilis assimilis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe8 +6825,issf,litshe6,Little Shearwater (Hauraki),Puffinus assimilis haurakiensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe8 +6826,issf,litshe5,Little Shearwater (Kermadec),Puffinus assimilis kermadecensis,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe8 +6827,issf,litshe7,Little Shearwater (West Australian),Puffinus assimilis tunneyi,Procellariiformes,Procellariidae (Shearwaters and Petrels),,litshe8 +6828,species,litshe4,Subantarctic Shearwater,Puffinus elegans,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6829,slash,litshe,Little/Subantarctic Shearwater,Puffinus assimilis/elegans,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6830,species,litshe1,Barolo Shearwater,Puffinus baroli,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6831,species,litshe2,Boyd's Shearwater,Puffinus boydi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6832,slash,y00714,Barolo/Boyd's Shearwater (Macaronesian Shearwater),Puffinus baroli/boydi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6833,species,audshe,Audubon's Shearwater,Puffinus lherminieri,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6836,species,troshe5,Tropical Shearwater,Puffinus bailloni,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6837,issf,troshe2,Tropical Shearwater (Mascarene),Puffinus bailloni bailloni,Procellariiformes,Procellariidae (Shearwaters and Petrels),,troshe5 +6838,issf,troshe3,Tropical Shearwater (Indopacific),Puffinus bailloni [dichrous Group],Procellariiformes,Procellariidae (Shearwaters and Petrels),,troshe5 +6842,slash,troshe1,Bannerman's/Tropical Shearwater,Puffinus bannermani/bailloni,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6843,species,pershe1,Persian Shearwater,Puffinus persicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6846,species,heishe1,Heinroth's Shearwater,Puffinus heinrothi,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6847,spuh,bawshe1,black-and-white shearwater sp.,Puffinus sp. (black-and-white shearwater sp.),Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6848,spuh,shearw,shearwater sp.,Procellariidae sp. (shearwater sp.),Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6849,species,pedpet1,Peruvian Diving-Petrel,Pelecanoides garnotii,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6850,species,codpet1,Common Diving-Petrel,Pelecanoides urinatrix,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6857,species,sgdpet1,South Georgia Diving-Petrel,Pelecanoides georgicus,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6860,species,madpet1,Magellanic Diving-Petrel,Pelecanoides magellani,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6861,spuh,diving1,diving-petrel sp.,Pelecanoides sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6862,spuh,procel2,Procellariid sp.,Procellariidae sp.,Procellariiformes,Procellariidae (Shearwaters and Petrels),, +6863,species,asiope1,Asian Openbill,Anastomus oscitans,Ciconiiformes,Ciconiidae (Storks),Storks, +6864,species,afrope1,African Openbill,Anastomus lamelligerus,Ciconiiformes,Ciconiidae (Storks),, +6867,species,blasto1,Black Stork,Ciconia nigra,Ciconiiformes,Ciconiidae (Storks),, +6868,species,abdsto1,Abdim's Stork,Ciconia abdimii,Ciconiiformes,Ciconiidae (Storks),, +6869,species,wonsto1,Woolly-necked Stork,Ciconia episcopus,Ciconiiformes,Ciconiidae (Storks),, +6870,issf,wonsto2,Woolly-necked Stork (African),Ciconia episcopus microscelis,Ciconiiformes,Ciconiidae (Storks),,wonsto1 +6871,issf,wonsto3,Woolly-necked Stork (Asian),Ciconia episcopus episcopus/neglecta,Ciconiiformes,Ciconiidae (Storks),,wonsto1 +6874,species,stosto1,Storm's Stork,Ciconia stormi,Ciconiiformes,Ciconiidae (Storks),, +6875,species,magsto1,Maguari Stork,Ciconia maguari,Ciconiiformes,Ciconiidae (Storks),, +6876,species,whisto1,White Stork,Ciconia ciconia,Ciconiiformes,Ciconiidae (Storks),, +6879,species,oristo1,Oriental Stork,Ciconia boyciana,Ciconiiformes,Ciconiidae (Storks),, +6880,spuh,ciconi1,Ciconia sp.,Ciconia sp.,Ciconiiformes,Ciconiidae (Storks),, +6881,species,blnsto1,Black-necked Stork,Ephippiorhynchus asiaticus,Ciconiiformes,Ciconiidae (Storks),, +6884,species,sabsto1,Saddle-billed Stork,Ephippiorhynchus senegalensis,Ciconiiformes,Ciconiidae (Storks),, +6885,species,jabiru,Jabiru,Jabiru mycteria,Ciconiiformes,Ciconiidae (Storks),, +6886,species,lesadj1,Lesser Adjutant,Leptoptilos javanicus,Ciconiiformes,Ciconiidae (Storks),, +6887,species,marsto1,Marabou Stork,Leptoptilos crumenifer,Ciconiiformes,Ciconiidae (Storks),, +6888,species,greadj1,Greater Adjutant,Leptoptilos dubius,Ciconiiformes,Ciconiidae (Storks),, +6889,slash,y00716,Lesser/Greater Adjutant,Leptoptilos javanicus/dubius,Ciconiiformes,Ciconiidae (Storks),, +6890,species,woosto,Wood Stork,Mycteria americana,Ciconiiformes,Ciconiidae (Storks),, +6891,species,milsto1,Milky Stork,Mycteria cinerea,Ciconiiformes,Ciconiidae (Storks),, +6892,species,yebsto1,Yellow-billed Stork,Mycteria ibis,Ciconiiformes,Ciconiidae (Storks),, +6893,species,paisto1,Painted Stork,Mycteria leucocephala,Ciconiiformes,Ciconiidae (Storks),, +6894,hybrid,x00729,Milky x Painted Stork (hybrid),Mycteria cinerea x leucocephala,Ciconiiformes,Ciconiidae (Storks),, +6895,slash,y01136,Milky/Painted Stork,Mycteria cinerea/leucocephala,Ciconiiformes,Ciconiidae (Storks),, +6896,spuh,stork1,stork sp.,Ciconiidae sp.,Ciconiiformes,Ciconiidae (Storks),, +6897,species,lesfri,Lesser Frigatebird,Fregata ariel,Suliformes,Fregatidae (Frigatebirds),"Frigatebirds, Boobies, and Gannets", +6898,issf,lesfri1,Lesser Frigatebird (Lesser),Fregata ariel ariel/iredalei,Suliformes,Fregatidae (Frigatebirds),,lesfri +6901,issf,lesfri2,Lesser Frigatebird (Trindade),Fregata ariel trinitatis,Suliformes,Fregatidae (Frigatebirds),,lesfri +6902,species,asifri1,Ascension Frigatebird,Fregata aquila,Suliformes,Fregatidae (Frigatebirds),, +6903,species,magfri,Magnificent Frigatebird,Fregata magnificens,Suliformes,Fregatidae (Frigatebirds),, +6904,species,chifri1,Christmas Island Frigatebird,Fregata andrewsi,Suliformes,Fregatidae (Frigatebirds),, +6905,species,grefri,Great Frigatebird,Fregata minor,Suliformes,Fregatidae (Frigatebirds),, +6911,spuh,frigat,frigatebird sp.,Fregata sp.,Suliformes,Fregatidae (Frigatebirds),, +6912,species,masboo,Masked Booby,Sula dactylatra,Suliformes,Sulidae (Boobies and Gannets),, +6917,species,nazboo1,Nazca Booby,Sula granti,Suliformes,Sulidae (Boobies and Gannets),, +6918,slash,y00474,Masked/Nazca Booby,Sula dactylatra/granti,Suliformes,Sulidae (Boobies and Gannets),, +6919,species,bfoboo,Blue-footed Booby,Sula nebouxii,Suliformes,Sulidae (Boobies and Gannets),, +6922,species,perboo1,Peruvian Booby,Sula variegata,Suliformes,Sulidae (Boobies and Gannets),, +6923,species,brnboo,Brown Booby,Sula leucogaster,Suliformes,Sulidae (Boobies and Gannets),, +6924,issf,brnboo1,Brown Booby (Brewster's),Sula leucogaster brewsteri,Suliformes,Sulidae (Boobies and Gannets),,brnboo +6925,issf,brnboo2,Brown Booby (Atlantic),Sula leucogaster leucogaster,Suliformes,Sulidae (Boobies and Gannets),,brnboo +6926,issf,brnboo3,Brown Booby (Forster's),Sula leucogaster plotus,Suliformes,Sulidae (Boobies and Gannets),,brnboo +6927,issf,brnboo4,Brown Booby (Colombian),Sula leucogaster etesiaca,Suliformes,Sulidae (Boobies and Gannets),,brnboo +6928,hybrid,x00782,Masked x Brown Booby (hybrid),Sula dactylatra x leucogaster,Suliformes,Sulidae (Boobies and Gannets),, +6929,hybrid,x00950,Blue-footed x Brown Booby (hybrid),Sula nebouxii x leucogaster,Suliformes,Sulidae (Boobies and Gannets),, +6930,species,refboo,Red-footed Booby,Sula sula,Suliformes,Sulidae (Boobies and Gannets),, +6931,issf,refboo1,Red-footed Booby (Atlantic),Sula sula sula,Suliformes,Sulidae (Boobies and Gannets),,refboo +6932,issf,refboo2,Red-footed Booby (Indopacific),Sula sula rubripes,Suliformes,Sulidae (Boobies and Gannets),,refboo +6933,issf,refboo3,Red-footed Booby (Eastern Pacific),Sula sula websteri,Suliformes,Sulidae (Boobies and Gannets),,refboo +6934,spuh,booby1,booby sp.,Sula sp.,Suliformes,Sulidae (Boobies and Gannets),, +6935,species,abbboo2,Abbott's Booby,Papasula abbotti,Suliformes,Sulidae (Boobies and Gannets),, +6936,species,norgan,Northern Gannet,Morus bassanus,Suliformes,Sulidae (Boobies and Gannets),, +6937,species,capgan1,Cape Gannet,Morus capensis,Suliformes,Sulidae (Boobies and Gannets),, +6938,species,ausgan1,Australasian Gannet,Morus serrator,Suliformes,Sulidae (Boobies and Gannets),, +6939,spuh,sulid,sulid sp.,Sulidae sp.,Suliformes,Sulidae (Boobies and Gannets),, +6940,species,anhing,Anhinga,Anhinga anhinga,Suliformes,Anhingidae (Anhingas),Cormorants and Anhingas, +6943,species,darter3,African Darter,Anhinga rufa,Suliformes,Anhingidae (Anhingas),, +6946,species,darter2,Oriental Darter,Anhinga melanogaster,Suliformes,Anhingidae (Anhingas),, +6947,species,darter4,Australasian Darter,Anhinga novaehollandiae,Suliformes,Anhingidae (Anhingas),, +6948,species,lipcor1,Little Pied Cormorant,Microcarbo melanoleucos,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6952,species,lotcor1,Long-tailed Cormorant,Microcarbo africanus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6955,species,crocor1,Crowned Cormorant,Microcarbo coronatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6956,species,litcor1,Little Cormorant,Microcarbo niger,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6957,species,pygcor2,Pygmy Cormorant,Microcarbo pygmaeus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6958,species,relcor1,Red-legged Cormorant,Phalacrocorax gaimardi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6959,species,bracor,Brandt's Cormorant,Phalacrocorax penicillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6960,species,refcor,Red-faced Cormorant,Phalacrocorax urile,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6961,species,pelcor,Pelagic Cormorant,Phalacrocorax pelagicus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6964,species,palcor1,Pallas's Cormorant,Phalacrocorax perspicillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6965,species,grecor,Great Cormorant,Phalacrocorax carbo,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6966,form,grecor6,Great Cormorant (Dark-breasted),Phalacrocorax carbo carbo/sinensis,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor +6967,issf,grecor1,Great Cormorant (North Atlantic),Phalacrocorax carbo carbo,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor +6968,issf,grecor2,Great Cormorant (Australasian),Phalacrocorax carbo novaehollandiae,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor +6969,issf,grecor3,Great Cormorant (Eurasian),Phalacrocorax carbo sinensis/hanedae,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor +6972,issf,grecor5,Great Cormorant (Moroccan),Phalacrocorax carbo maroccanus,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor +6973,issf,grecor4,Great Cormorant (White-breasted),Phalacrocorax carbo lucidus,Suliformes,Phalacrocoracidae (Cormorants and Shags),,grecor +6974,species,japcor1,Japanese Cormorant,Phalacrocorax capillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6975,slash,y01020,Great/Japanese Cormorant,Phalacrocorax carbo/capillatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6976,species,capcor1,Cape Cormorant,Phalacrocorax capensis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6977,species,bancor1,Bank Cormorant,Phalacrocorax neglectus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6978,species,soccor1,Socotra Cormorant,Phalacrocorax nigrogularis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6979,species,indcor1,Indian Cormorant,Phalacrocorax fuscicollis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6980,slash,y00770,Little/Indian Cormorant,Microcarbo niger/Phalacrocorax fuscicollis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6981,species,sposha1,Spotted Shag,Phalacrocorax punctatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6984,species,piisha1,Pitt Island Shag,Phalacrocorax featherstoni,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6985,species,libcor1,Little Black Cormorant,Phalacrocorax sulcirostris,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6986,species,piecor1,Pied Cormorant,Phalacrocorax varius,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6989,species,blfcor1,Black-faced Cormorant,Phalacrocorax fuscescens,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6990,species,eursha1,European Shag,Phalacrocorax aristotelis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6991,issf,eursha2,European Shag (Atlantic),Phalacrocorax aristotelis aristotelis,Suliformes,Phalacrocoracidae (Cormorants and Shags),,eursha1 +6992,issf,eursha3,European Shag (Mediterranean),Phalacrocorax aristotelis desmarestii,Suliformes,Phalacrocoracidae (Cormorants and Shags),,eursha1 +6993,issf,eursha4,European Shag (Moroccan),Phalacrocorax aristotelis riggenbachi,Suliformes,Phalacrocoracidae (Cormorants and Shags),,eursha1 +6994,slash,y00769,Great Cormorant/European Shag,Phalacrocorax carbo/aristotelis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6995,species,flicor1,Flightless Cormorant,Phalacrocorax harrisi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6996,species,neocor,Neotropic Cormorant,Phalacrocorax brasilianus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +6999,species,doccor,Double-crested Cormorant,Phalacrocorax auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7004,slash,y00694,Great/Double-crested Cormorant,Phalacrocorax carbo/auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7005,hybrid,x00783,Neotropic x Double-crested Cormorant (hybrid),Phalacrocorax brasilianus x auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7006,slash,y00833,Neotropic/Double-crested Cormorant,Phalacrocorax brasilianus/auritus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7007,species,magcor1,Magellanic Cormorant,Phalacrocorax magellanicus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7008,species,guacor1,Guanay Cormorant,Phalacrocorax bougainvillii,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7009,species,boisha1,Bounty Islands Shag,Phalacrocorax ranfurlyi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7010,species,rofsha1,New Zealand King Shag,Phalacrocorax carunculatus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7011,species,brosha1,Stewart Island Shag,Phalacrocorax chalconotus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7012,issf,stisha1,Stewart Island Shag (Otago),Phalacrocorax chalconotus chalconotus,Suliformes,Phalacrocoracidae (Cormorants and Shags),,brosha1 +7013,issf,stisha2,Stewart Island Shag (Foveaux),Phalacrocorax chalconotus stewarti,Suliformes,Phalacrocoracidae (Cormorants and Shags),,brosha1 +7014,species,chisha1,Chatham Islands Shag,Phalacrocorax onslowi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7015,species,auisha1,Auckland Islands Shag,Phalacrocorax colensoi,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7016,species,caisha2,Campbell Islands Shag,Phalacrocorax campbelli,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7017,species,sogsha1,South Georgia Shag,Phalacrocorax georgianus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7018,species,impcor1,Imperial Cormorant,Phalacrocorax atriceps,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7021,form,impcor2,Imperial Cormorant (Blue-eyed),Phalacrocorax atriceps (Blue-eyed),Suliformes,Phalacrocoracidae (Cormorants and Shags),,impcor1 +7022,form,impcor3,Imperial Cormorant (King),Phalacrocorax atriceps (King),Suliformes,Phalacrocoracidae (Cormorants and Shags),,impcor1 +7023,species,antsha1,Antarctic Shag,Phalacrocorax bransfieldensis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7024,species,crosha1,Crozet Shag,Phalacrocorax melanogenis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7025,species,kersha1,Kerguelen Shag,Phalacrocorax verrucosus,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7026,species,heisha1,Heard Island Shag,Phalacrocorax nivalis,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7027,species,macsha1,Macquarie Shag,Phalacrocorax purpurascens,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7028,spuh,cormor1,cormorant sp.,Phalacrocoracidae sp.,Suliformes,Phalacrocoracidae (Cormorants and Shags),, +7029,species,amwpel,American White Pelican,Pelecanus erythrorhynchos,Pelecaniformes,Pelecanidae (Pelicans),Pelicans, +7030,species,brnpel,Brown Pelican,Pelecanus occidentalis,Pelecaniformes,Pelecanidae (Pelicans),, +7031,issf,brnpel2,Brown Pelican (Atlantic),Pelecanus occidentalis carolinensis,Pelecaniformes,Pelecanidae (Pelicans),,brnpel +7032,issf,brnpel3,Brown Pelican (California),Pelecanus occidentalis californicus,Pelecaniformes,Pelecanidae (Pelicans),,brnpel +7033,issf,brnpel1,Brown Pelican (Southern),Pelecanus occidentalis occidentalis/murphyi,Pelecaniformes,Pelecanidae (Pelicans),,brnpel +7036,issf,brnpel4,Brown Pelican (Galapagos),Pelecanus occidentalis urinator,Pelecaniformes,Pelecanidae (Pelicans),,brnpel +7037,species,perpel1,Peruvian Pelican,Pelecanus thagus,Pelecaniformes,Pelecanidae (Pelicans),, +7038,species,grwpel1,Great White Pelican,Pelecanus onocrotalus,Pelecaniformes,Pelecanidae (Pelicans),, +7039,species,auspel1,Australian Pelican,Pelecanus conspicillatus,Pelecaniformes,Pelecanidae (Pelicans),, +7040,species,pibpel1,Pink-backed Pelican,Pelecanus rufescens,Pelecaniformes,Pelecanidae (Pelicans),, +7041,species,spbpel1,Spot-billed Pelican,Pelecanus philippensis,Pelecaniformes,Pelecanidae (Pelicans),, +7042,species,dalpel1,Dalmatian Pelican,Pelecanus crispus,Pelecaniformes,Pelecanidae (Pelicans),, +7043,hybrid,x00842,Great White x Dalmatian Pelican (hybrid),Pelecanus onocrotalus x crispus,Pelecaniformes,Pelecanidae (Pelicans),, +7044,spuh,pelica1,pelican sp.,Pelecanus sp.,Pelecaniformes,Pelecanidae (Pelicans),, +7045,species,shoebi1,Shoebill,Balaeniceps rex,Pelecaniformes,Balaenicipitidae (Shoebill),Shoebill and Hammerkop, +7046,species,hamerk1,Hamerkop,Scopus umbretta,Pelecaniformes,Scopidae (Hamerkop),, +7049,species,pinbit1,Pinnated Bittern,Botaurus pinnatus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)","Herons, Ibis, and Allies", +7052,species,amebit,American Bittern,Botaurus lentiginosus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7053,species,grebit1,Great Bittern,Botaurus stellaris,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7056,species,ausbit1,Australasian Bittern,Botaurus poiciloptilus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7057,species,zigher1,Zigzag Heron,Zebrilus undulatus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7058,species,yelbit,Yellow Bittern,Ixobrychus sinensis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7059,species,litbit1,Little Bittern,Ixobrychus minutus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7060,issf,litbit2,Little Bittern (Little),Ixobrychus minutus minutus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litbit1 +7061,issf,litbit3,Little Bittern (African),Ixobrychus minutus payesii,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litbit1 +7062,issf,litbit4,Little Bittern (Malagasy),Ixobrychus minutus podiceps,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litbit1 +7063,species,bkbbit1,Black-backed Bittern,Ixobrychus dubius,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7064,species,nezbit1,New Zealand Bittern,Ixobrychus novaezelandiae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7065,species,schbit1,Schrenck's Bittern,Ixobrychus eurhythmus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7066,species,cinbit1,Cinnamon Bittern,Ixobrychus cinnamomeus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7067,slash,y01116,Schrenck's/Cinnamon Bittern,Ixobrychus eurhythmus/cinnamomeus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7068,species,dwabit1,Dwarf Bittern,Ixobrychus sturmii,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7069,species,blabit1,Black Bittern,Ixobrychus flavicollis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7073,species,leabit,Least Bittern,Ixobrychus exilis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7079,species,stbbit1,Stripe-backed Bittern,Ixobrychus involucris,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7080,spuh,smabit1,small bittern sp.,Ixobrychus sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7081,species,ruther1,Rufescent Tiger-Heron,Tigrisoma lineatum,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7084,species,father1,Fasciated Tiger-Heron,Tigrisoma fasciatum,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7088,species,btther1,Bare-throated Tiger-Heron,Tigrisoma mexicanum,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7089,spuh,tiger-1,tiger-heron sp.,Tigrisoma sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7090,species,forbit1,Forest Bittern,Zonerodius heliosylus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7091,species,whcbit1,White-crested Bittern,Tigriornis leucolopha,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7092,species,grbher3,Great Blue Heron,Ardea herodias,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7093,issf,grbher,Great Blue Heron (Blue form),Ardea herodias [herodias Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grbher3 +7098,issf,grwher,Great Blue Heron (White form),Ardea herodias occidentalis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grbher3 +7099,form,wurher,Great Blue Heron (Wurdemann's),Ardea herodias (Wurdemann's),Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grbher3 +7100,species,graher1,Gray Heron,Ardea cinerea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7101,issf,gryher1,Gray Heron (Gray),Ardea cinerea cinerea/jouyi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,graher1 +7104,issf,gryher3,Gray Heron (Malagasy),Ardea cinerea firasa,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,graher1 +7105,issf,gryher2,Gray Heron (Mauritanian),Ardea cinerea monicae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,graher1 +7106,species,cocher1,Cocoi Heron,Ardea cocoi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7107,hybrid,x00784,Great Blue x Cocoi Heron (hybrid),Ardea herodias x cocoi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7108,slash,y00834,Great Blue/Cocoi Heron,Ardea herodias/cocoi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7109,species,pacher1,Pacific Heron,Ardea pacifica,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7110,species,blhher1,Black-headed Heron,Ardea melanocephala,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7111,species,humher1,Humblot's Heron,Ardea humbloti,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7112,species,whbher2,White-bellied Heron,Ardea insignis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7113,species,grbher2,Great-billed Heron,Ardea sumatrana,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7116,species,golher1,Goliath Heron,Ardea goliath,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7117,species,purher1,Purple Heron,Ardea purpurea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7118,issf,purher2,Purple Heron (Bourne's),Ardea purpurea bournei,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,purher1 +7119,issf,purher3,Purple Heron (Purple),Ardea purpurea [purpurea Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,purher1 +7123,slash,y01021,Gray/Purple Heron,Ardea cinerea/purpurea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7124,species,greegr,Great Egret,Ardea alba,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7125,issf,greegr1,Great Egret (Eurasian),Ardea alba alba,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr +7126,issf,greegr4,Great Egret (African),Ardea alba melanorhynchos,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr +7127,issf,greegr2,Great Egret (American),Ardea alba egretta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr +7128,issf,greegr3,Great Egret (Australasian),Ardea alba modesta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,greegr +7129,hybrid,x00677,Great Blue Heron x Great Egret (hybrid),Ardea herodias x alba,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7130,species,integr,Intermediate Egret,Ardea intermedia,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7131,issf,integr1,Intermediate Egret (Intermediate),Ardea intermedia intermedia,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,integr +7132,issf,integr2,Intermediate Egret (Plumed),Ardea intermedia plumifera,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,integr +7133,issf,integr3,Intermediate Egret (Yellow-billed),Ardea intermedia brachyrhyncha,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,integr +7134,slash,y00717,Great/Intermediate Egret,Ardea alba/intermedia,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7135,spuh,ardea1,Ardea sp.,Ardea sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7136,species,whfher1,White-faced Heron,Egretta novaehollandiae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7139,species,chiegr,Chinese Egret,Egretta eulophotes,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7140,species,litegr,Little Egret,Egretta garzetta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7141,issf,litegr1,Little Egret (Western),Egretta garzetta garzetta,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litegr +7142,issf,litegr3,Little Egret (Australasian),Egretta garzetta nigripes,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litegr +7143,issf,litegr2,Little Egret (Dimorphic),Egretta garzetta dimorpha,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,litegr +7144,species,werher,Western Reef-Heron,Egretta gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7145,issf,wesreh1,Western Reef-Heron (Western),Egretta gularis gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,werher +7146,issf,wesreh2,Western Reef-Heron (Eastern),Egretta gularis schistacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,werher +7147,hybrid,x00656,Little Egret x Western Reef-Heron (hybrid),Egretta garzetta x gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7148,slash,y00835,Little Egret/Western Reef-Heron,Egretta garzetta/gularis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7149,species,pacreh1,Pacific Reef-Heron,Egretta sacra,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7152,species,snoegr,Snowy Egret,Egretta thula,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7155,hybrid,x00697,Little x Snowy Egret (hybrid),Egretta garzetta x thula,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7156,species,libher,Little Blue Heron,Egretta caerulea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7157,hybrid,x00615,Snowy Egret x Little Blue Heron (hybrid),Egretta thula x caerulea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7158,species,triher,Tricolored Heron,Egretta tricolor,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7161,hybrid,x00730,Snowy Egret x Tricolored Heron (hybrid),Egretta thula x tricolor,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7162,hybrid,x00696,Little Blue x Tricolored Heron (hybrid),Egretta caerulea x tricolor,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7163,species,redegr,Reddish Egret,Egretta rufescens,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7166,hybrid,x00785,Tricolored Heron x Reddish Egret (hybrid),Egretta tricolor x rufescens,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7167,species,pieher2,Pied Heron,Egretta picata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7168,species,slaegr1,Slaty Egret,Egretta vinaceigula,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7169,species,blaher1,Black Heron,Egretta ardesiaca,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7170,species,categr,Cattle Egret,Bubulcus ibis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7171,issf,categr1,Cattle Egret (Western),Bubulcus ibis ibis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,categr +7172,issf,categr2,Cattle Egret (Eastern),Bubulcus ibis coromandus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,categr +7173,spuh,whiegr1,white egret sp.,Ardea/Egretta/Bubulcus sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7174,species,squher1,Squacco Heron,Ardeola ralloides,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7175,species,inpher1,Indian Pond-Heron,Ardeola grayii,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7176,species,chpher1,Chinese Pond-Heron,Ardeola bacchus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7177,species,japher1,Javan Pond-Heron,Ardeola speciosa,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7180,species,mapher1,Madagascar Pond-Heron,Ardeola idae,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7181,species,rubher2,Rufous-bellied Heron,Ardeola rufiventris,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7182,spuh,pond-h1,pond-heron sp.,Ardeola sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7183,species,grnher,Green Heron,Butorides virescens,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7184,issf,grnher1,Green Heron (virescens/bahamensis),Butorides virescens virescens/bahamensis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grnher +7187,issf,grnher2,Green Heron (anthonyi),Butorides virescens anthonyi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grnher +7188,issf,grnher3,Green Heron (frazari),Butorides virescens frazari,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,grnher +7189,species,strher,Striated Heron,Butorides striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7190,issf,strher2,Striated Heron (South American),Butorides striata striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,strher +7191,issf,strher3,Striated Heron (Galapagos),Butorides striata sundevalli,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,strher +7192,issf,strher1,Striated Heron (Old World),Butorides striata [atricapilla Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,strher +7217,hybrid,x00765,Green x Striated Heron (hybrid),Butorides virescens x striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7218,slash,y00771,Green/Striated Heron,Butorides virescens/striata,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7219,species,agaher1,Agami Heron,Agamia agami,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7220,species,whiher1,Whistling Heron,Syrigma sibilatrix,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7223,species,capher1,Capped Heron,Pilherodius pileatus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7224,species,reunih1,Reunion Night-Heron,Nycticorax duboisi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7225,species,maunih1,Mauritius Night-Heron,Nycticorax mauritianus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7226,species,rodnih1,Rodrigues Night-Heron,Nycticorax megacephalus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7227,species,bcnher,Black-crowned Night-Heron,Nycticorax nycticorax,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7228,issf,bkcnih1,Black-crowned Night-Heron (Eurasian),Nycticorax nycticorax nycticorax,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher +7229,issf,bkcnih2,Black-crowned Night-Heron (American),Nycticorax nycticorax hoactli,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher +7230,issf,bkcnih4,Black-crowned Night-Heron (Dusky),Nycticorax nycticorax obscurus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher +7231,issf,bkcnih3,Black-crowned Night-Heron (Falklands),Nycticorax nycticorax falklandicus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bcnher +7232,species,runher1,Rufous Night-Heron,Nycticorax caledonicus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7239,slash,y00940,Black-crowned/Rufous Night-Heron,Nycticorax nycticorax/caledonicus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7240,species,ycnher,Yellow-crowned Night-Heron,Nyctanassa violacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7241,issf,yecnih1,Yellow-crowned Night-Heron (Yellow-crowned),Nyctanassa violacea [violacea Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,ycnher +7247,issf,yecnih2,Yellow-crowned Night-Heron (Galapagos),Nyctanassa violacea pauper,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,ycnher +7248,hybrid,x00704,Black-crowned x Yellow-crowned Night-Heron (hybrid),Nycticorax nycticorax x Nyctanassa violacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7249,slash,y00610,Black-crowned/Yellow-crowned Night-Heron,Nycticorax nycticorax/Nyctanassa violacea,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7250,species,bernih1,Bermuda Night-Heron,Nyctanassa carcinocatactes,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7251,species,wbnher1,White-backed Night-Heron,Gorsachius leuconotus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7252,species,wenher1,White-eared Night-Heron,Gorsachius magnificus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7253,species,janher1,Japanese Night-Heron,Gorsachius goisagi,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7254,species,manher1,Malayan Night-Heron,Gorsachius melanolophus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7255,slash,y00941,Japanese/Malayan Night-Heron,Gorsachius goisagi/melanolophus,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7256,species,bobher1,Boat-billed Heron,Cochlearius cochlearius,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7257,issf,bobher3,Boat-billed Heron (Northern),Cochlearius cochlearius [zeledoni Group],Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bobher1 +7261,issf,bobher4,Boat-billed Heron (Southern),Cochlearius cochlearius cochlearius/panamensis,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",,bobher1 +7264,spuh,heron1,heron sp.,Ardeidae sp.,Pelecaniformes,"Ardeidae (Herons, Egrets, and Bitterns)",, +7265,species,whiibi,White Ibis,Eudocimus albus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7266,species,scaibi,Scarlet Ibis,Eudocimus ruber,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7267,hybrid,x00428,White x Scarlet Ibis (hybrid),Eudocimus albus x ruber,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7268,species,gloibi,Glossy Ibis,Plegadis falcinellus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7269,species,whfibi,White-faced Ibis,Plegadis chihi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7270,hybrid,gxwibi1,Glossy x White-faced Ibis (hybrid),Plegadis falcinellus x chihi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7271,slash,plegad,Glossy/White-faced Ibis,Plegadis falcinellus/chihi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7272,species,punibi1,Puna Ibis,Plegadis ridgwayi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7273,slash,y00836,White-faced/Puna Ibis,Plegadis chihi/ridgwayi,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7274,species,madibi1,Madagascar Ibis,Lophotibis cristata,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7277,species,shtibi1,Sharp-tailed Ibis,Cercibis oxycerca,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7278,species,greibi1,Green Ibis,Mesembrinibis cayennensis,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7279,species,bafibi1,Bare-faced Ibis,Phimosus infuscatus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7283,species,pluibi1,Plumbeous Ibis,Theristicus caerulescens,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7284,species,bunibi1,Buff-necked Ibis,Theristicus caudatus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7287,species,bkfibi1,Black-faced Ibis,Theristicus melanopis,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7288,species,bkfibi2,Andean Ibis,Theristicus branickii,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7289,slash,blfibi1,Black-faced/Andean Ibis,Theristicus melanopis/branickii,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7290,species,sacibi2,African Sacred Ibis,Threskiornis aethiopicus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7291,species,sacibi3,Madagascar Sacred Ibis,Threskiornis bernieri,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7292,slash,sacibi1,African/Madagascar Sacred Ibis,Threskiornis aethiopicus/bernieri,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7295,species,reusol1,Reunion Ibis,Threskiornis solitarius,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7296,species,blhibi1,Black-headed Ibis,Threskiornis melanocephalus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7297,species,ausibi1,Australian Ibis,Threskiornis molucca,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7300,species,stnibi1,Straw-necked Ibis,Threskiornis spinicollis,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7301,species,renibi1,Red-naped Ibis,Pseudibis papillosa,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7302,species,whsibi1,White-shouldered Ibis,Pseudibis davisoni,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7303,species,giaibi1,Giant Ibis,Pseudibis gigantea,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7304,species,waldra1,Northern Bald Ibis,Geronticus eremita,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7305,species,balibi1,Southern Bald Ibis,Geronticus calvus,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7306,species,creibi1,Crested Ibis,Nipponia nippon,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7307,species,oliibi2,Olive Ibis,Bostrychia olivacea,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7312,species,oliibi3,Sao Tome Ibis,Bostrychia bocagei,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7313,species,spbibi1,Spot-breasted Ibis,Bostrychia rara,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7314,species,hadibi1,Hadada Ibis,Bostrychia hagedash,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7318,species,watibi1,Wattled Ibis,Bostrychia carunculata,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7319,spuh,ibis1,ibis sp.,Threskiornithidae sp. (ibis sp.),Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7320,species,eurspo1,Eurasian Spoonbill,Platalea leucorodia,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7324,species,royspo1,Royal Spoonbill,Platalea regia,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7325,species,afrspo1,African Spoonbill,Platalea alba,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7326,species,blfspo1,Black-faced Spoonbill,Platalea minor,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7327,hybrid,x00883,Eurasian x Black-faced Spoonbill (hybrid),Platalea leucorodia x minor,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7328,species,yebspo1,Yellow-billed Spoonbill,Platalea flavipes,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7329,species,rosspo1,Roseate Spoonbill,Platalea ajaja,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7330,spuh,spoonb1,spoonbill sp.,Platalea sp.,Pelecaniformes,Threskiornithidae (Ibises and Spoonbills),, +7331,species,calcon,California Condor,Gymnogyps californianus,Cathartiformes,Cathartidae (New World Vultures),"Vultures, Hawks, and Allies", +7332,species,andcon1,Andean Condor,Vultur gryphus,Cathartiformes,Cathartidae (New World Vultures),, +7333,species,kinvul1,King Vulture,Sarcoramphus papa,Cathartiformes,Cathartidae (New World Vultures),, +7334,species,blkvul,Black Vulture,Coragyps atratus,Cathartiformes,Cathartidae (New World Vultures),, +7338,species,turvul,Turkey Vulture,Cathartes aura,Cathartiformes,Cathartidae (New World Vultures),, +7339,issf,turvul2,Turkey Vulture (Northern),Cathartes aura aura/septentrionalis,Cathartiformes,Cathartidae (New World Vultures),,turvul +7342,issf,turvul1,Turkey Vulture (Tropical),Cathartes aura ruficollis,Cathartiformes,Cathartidae (New World Vultures),,turvul +7343,issf,turvul3,Turkey Vulture (South Temperate),Cathartes aura jota,Cathartiformes,Cathartidae (New World Vultures),,turvul +7344,species,lyhvul1,Lesser Yellow-headed Vulture,Cathartes burrovianus,Cathartiformes,Cathartidae (New World Vultures),, +7347,species,gyhvul1,Greater Yellow-headed Vulture,Cathartes melambrotus,Cathartiformes,Cathartidae (New World Vultures),, +7348,spuh,cathar1,Cathartes sp.,Cathartes sp.,Cathartiformes,Cathartidae (New World Vultures),, +7349,spuh,vultur1,new world vulture sp.,Cathartidae sp.,Cathartiformes,Cathartidae (New World Vultures),, +7350,species,secret2,Secretarybird,Sagittarius serpentarius,Accipitriformes,Sagittariidae (Secretarybird),, +7351,species,osprey,Osprey,Pandion haliaetus,Accipitriformes,Pandionidae (Osprey),, +7352,issf,osprey3,Osprey (haliaetus),Pandion haliaetus haliaetus,Accipitriformes,Pandionidae (Osprey),,osprey +7353,issf,osprey1,Osprey (carolinensis),Pandion haliaetus carolinensis,Accipitriformes,Pandionidae (Osprey),,osprey +7354,issf,osprey2,Osprey (ridgwayi),Pandion haliaetus ridgwayi,Accipitriformes,Pandionidae (Osprey),,osprey +7355,issf,osprey4,Osprey (Australasian),Pandion haliaetus cristatus,Accipitriformes,Pandionidae (Osprey),,osprey +7356,species,peakit1,Pearl Kite,Gampsonyx swainsonii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7360,species,bkskit1,Black-winged Kite,Elanus caeruleus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7361,issf,bkskit2,Black-winged Kite (African),Elanus caeruleus caeruleus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bkskit1 +7362,issf,bkskit3,Black-winged Kite (Asian),Elanus caeruleus [vociferus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bkskit1 +7366,species,auskit1,Black-shouldered Kite,Elanus axillaris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7367,species,whtkit,White-tailed Kite,Elanus leucurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7370,species,lewkit1,Letter-winged Kite,Elanus scriptus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7371,species,sctkit1,Scissor-tailed Kite,Chelictinia riocourii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7372,species,afhhaw1,African Harrier-Hawk,Polyboroides typus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7375,species,mahhaw1,Madagascar Harrier-Hawk,Polyboroides radiatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7376,species,panvul1,Palm-nut Vulture,Gypohierax angolensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7377,species,maseag1,Madagascar Serpent-Eagle,Eutriorchis astur,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7378,species,lammer1,Bearded Vulture,Gypaetus barbatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7379,issf,lammer2,Bearded Vulture (Eurasian),Gypaetus barbatus barbatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lammer1 +7380,issf,lammer3,Bearded Vulture (African),Gypaetus barbatus meridionalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lammer1 +7381,species,egyvul1,Egyptian Vulture,Neophron percnopterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7385,species,hobkit,Hook-billed Kite,Chondrohierax uncinatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7386,issf,hobkit1,Hook-billed Kite (Hook-billed),Chondrohierax uncinatus uncinatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hobkit +7387,issf,hobkit2,Hook-billed Kite (Cuban),Chondrohierax uncinatus wilsonii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hobkit +7388,issf,hobkit3,Hook-billed Kite (Grenada),Chondrohierax uncinatus mirus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hobkit +7389,species,grhkit1,Gray-headed Kite,Leptodon cayanensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7392,species,whckit1,White-collared Kite,Leptodon forbesi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7393,species,euhbuz1,European Honey-buzzard,Pernis apivorus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7394,species,barhob1,Sulawesi Honey-buzzard,Pernis celebensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7395,species,barhob2,Philippine Honey-buzzard,Pernis steerei,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7398,species,orihob2,Oriental Honey-buzzard,Pernis ptilorhynchus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7399,issf,orihob3,Oriental Honey-buzzard (Northern),Pernis ptilorhynchus orientalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,orihob2 +7400,issf,orihob4,Oriental Honey-buzzard (Indomalayan),Pernis ptilorhynchus [ptilorhynchus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,orihob2 +7406,hybrid,x00786,European x Oriental Honey-buzzard (hybrid),Pernis apivorus x ptilorhynchus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7407,slash,y00658,European/Oriental Honey-buzzard,Pernis apivorus/ptilorhynchus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7408,species,swtkit,Swallow-tailed Kite,Elanoides forficatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7411,species,bkbkit1,Black-breasted Kite,Hamirostra melanosternon,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7412,species,lthbuz1,Long-tailed Honey-buzzard,Henicopernis longicauda,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7413,species,blhbuz1,Black Honey-buzzard,Henicopernis infuscatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7414,species,sqtkit1,Square-tailed Kite,Lophoictinia isura,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7415,species,afrcuh1,African Cuckoo-Hawk,Aviceda cuculoides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7419,species,madcuh1,Madagascar Cuckoo-Hawk,Aviceda madagascariensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7420,species,jerbaz1,Jerdon's Baza,Aviceda jerdoni,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7426,species,pacbaz1,Pacific Baza,Aviceda subcristata,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7440,species,blabaz1,Black Baza,Aviceda leuphotes,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7445,species,rehvul1,Red-headed Vulture,Sarcogyps calvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7446,species,whhvul1,White-headed Vulture,Trigonoceps occipitalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7447,species,cinvul1,Cinereous Vulture,Aegypius monachus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7448,species,lafvul1,Lappet-faced Vulture,Torgos tracheliotos,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7452,species,hoovul1,Hooded Vulture,Necrosyrtes monachus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7453,species,whbvul1,White-backed Vulture,Gyps africanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7454,species,whrvul1,White-rumped Vulture,Gyps bengalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7455,species,indvul1,Indian Vulture,Gyps indicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7456,species,slbvul1,Slender-billed Vulture,Gyps tenuirostris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7457,species,ruegri1,Rüppell's Griffon,Gyps rueppelli,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7460,slash,y00634,White-backed Vulture/Rüppell's Griffon,Gyps africanus/rueppelli,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7461,species,himgri1,Himalayan Griffon,Gyps himalayensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7462,species,eurgri1,Eurasian Griffon,Gyps fulvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7465,slash,y00837,Rüppell's/Eurasian Griffon,Gyps rueppelli/fulvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7466,slash,y00838,Himalayan/Eurasian Griffon,Gyps himalayensis/fulvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7467,species,capgri1,Cape Griffon,Gyps coprotheres,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7468,slash,y00942,White-backed Vulture/Cape Griffon,Gyps africanus/coprotheres,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7469,spuh,gyps1,Gyps sp.,Gyps sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7470,spuh,olwvul1,old world vulture sp.,Accipitridae sp. (old world vulture sp.),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7471,species,nicsee1,Nicobar Serpent-Eagle,Spilornis klossi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7472,species,suseag1,Sulawesi Serpent-Eagle,Spilornis rufipectus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7475,species,moseag1,Mountain Serpent-Eagle,Spilornis kinabaluensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7476,species,crseag1,Crested Serpent-Eagle,Spilornis cheela,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7477,issf,cresee1,Crested Serpent-Eagle (Crested),Spilornis cheela [cheela Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7491,issf,cresee9,Crested Serpent-Eagle (Andaman),Spilornis cheela davisoni,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7492,issf,cresee5,Crested Serpent-Eagle (Central Nicobar),Spilornis cheela minimus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7493,issf,cresee7,Crested Serpent-Eagle (Ryukyu),Spilornis cheela perplexus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7494,issf,cresee6,Crested Serpent-Eagle (Natuna),Spilornis cheela natunensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7495,issf,cresee2,Crested Serpent-Eagle (Simeulue),Spilornis cheela abbotti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7496,issf,cresee3,Crested Serpent-Eagle (Nias),Spilornis cheela asturinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7497,issf,cresee8,Crested Serpent-Eagle (Mentawai),Spilornis cheela sipora,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7498,issf,cresee4,Crested Serpent-Eagle (Bawean),Spilornis cheela baweanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crseag1 +7499,species,phseag1,Philippine Serpent-Eagle,Spilornis holospilus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7500,species,anseag1,Andaman Serpent-Eagle,Spilornis elgini,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7501,species,grpeag1,Philippine Eagle,Pithecophaga jefferyi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7502,species,batele1,Bateleur,Terathopius ecaudatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7503,species,coseag1,Congo Serpent-Eagle,Dryotriorchis spectabilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7506,species,shteag1,Short-toed Snake-Eagle,Circaetus gallicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7509,species,beasne1,Beaudouin's Snake-Eagle,Circaetus beaudouini,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7510,species,bkbsne1,Black-chested Snake-Eagle,Circaetus pectoralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7511,species,brseag1,Brown Snake-Eagle,Circaetus cinereus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7512,species,faseag1,Fasciated Snake-Eagle,Circaetus fasciolatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7513,species,baseag1,Banded Snake-Eagle,Circaetus cinerascens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7514,spuh,snake-1,snake-eagle sp.,Circaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7515,species,bathaw1,Bat Hawk,Macheiramphus alcinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7519,species,negeag1,New Guinea Eagle,Harpyopsis novaeguineae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7520,species,creeag1,Crested Eagle,Morphnus guianensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7521,species,hareag1,Harpy Eagle,Harpia harpyja,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7522,species,crheag1,Crowned Eagle,Stephanoaetus coronatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7523,species,y00839,Changeable Hawk-Eagle,Nisaetus cirrhatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7524,issf,crehae1,Changeable Hawk-Eagle (Crested),Nisaetus cirrhatus cirrhatus/ceylanensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,y00839 +7527,issf,chahae1,Changeable Hawk-Eagle (Changeable),Nisaetus cirrhatus [limnaeetus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,y00839 +7531,species,flohae1,Flores Hawk-Eagle,Nisaetus floris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7532,species,mouhae1,Mountain Hawk-Eagle,Nisaetus nipalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7535,species,mouhae2,Legge's Hawk-Eagle,Nisaetus kelaarti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7536,species,blyhae1,Blyth's Hawk-Eagle,Nisaetus alboniger,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7537,species,javhae1,Javan Hawk-Eagle,Nisaetus bartelsi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7538,species,sulhae1,Sulawesi Hawk-Eagle,Nisaetus lanceolatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7539,species,phihae1,Philippine Hawk-Eagle,Nisaetus philippensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7540,species,pinhae1,Pinsker's Hawk-Eagle,Nisaetus pinskeri,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7541,species,walhae1,Wallace's Hawk-Eagle,Nisaetus nanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7544,spuh,nisaet1,Nisaetus sp.,Nisaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7545,species,mareag1,Martial Eagle,Polemaetus bellicosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7546,species,rubeag2,Rufous-bellied Eagle,Lophotriorchis kienerii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7549,species,blheag1,Black Hawk-Eagle,Spizaetus tyrannus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7552,species,orheag1,Ornate Hawk-Eagle,Spizaetus ornatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7555,species,bawhae1,Black-and-white Hawk-Eagle,Spizaetus melanoleucus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7556,species,baceag2,Black-and-chestnut Eagle,Spizaetus isidori,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7557,spuh,spizae1,Spizaetus sp.,Spizaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7558,species,loceag1,Long-crested Eagle,Lophaetus occipitalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7559,species,blaeag1,Black Eagle,Ictinaetus malaiensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7562,species,leseag1,Lesser Spotted Eagle,Clanga pomarina,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7563,species,inseag1,Indian Spotted Eagle,Clanga hastata,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7564,species,grseag1,Greater Spotted Eagle,Clanga clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7565,hybrid,x00843,Lesser x Greater Spotted Eagle (hybrid),Clanga pomarina x clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7566,slash,y00718,Lesser/Greater Spotted Eagle,Clanga pomarina/clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7567,slash,y00719,Indian/Greater Spotted Eagle,Clanga hastata/clanga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7568,species,waheag3,Wahlberg's Eagle,Hieraaetus wahlbergi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7569,species,booeag1,Booted Eagle,Hieraaetus pennatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7570,species,liteag3,Pygmy Eagle,Hieraaetus weiskei,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7571,species,liteag1,Little Eagle,Hieraaetus morphnoides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7572,species,ayheag1,Ayres's Hawk-Eagle,Hieraaetus ayresii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7573,species,taweag1,Tawny Eagle,Aquila rapax,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7577,species,steeag1,Steppe Eagle,Aquila nipalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7580,slash,y01022,Tawny/Steppe Eagle,Aquila rapax/nipalensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7581,species,spaeag1,Spanish Eagle,Aquila adalberti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7582,species,impeag1,Imperial Eagle,Aquila heliaca,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7583,species,gureag1,Gurney's Eagle,Aquila gurneyi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7584,species,goleag,Golden Eagle,Aquila chrysaetos,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7591,species,weteag1,Wedge-tailed Eagle,Aquila audax,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7594,species,cashae1,Cassin's Hawk-Eagle,Aquila africana,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7595,species,vereag1,Verreaux's Eagle,Aquila verreauxii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7596,species,boneag2,Bonelli's Eagle,Aquila fasciata,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7599,species,afrhae1,African Hawk-Eagle,Aquila spilogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7600,spuh,aquila1,Aquila sp.,Aquila sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7601,slash,y01070,Clanga/Aquila sp.,Clanga/Aquila sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7602,species,lizbuz1,Lizard Buzzard,Kaupifalco monogrammicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7605,species,dacgos1,Dark Chanting-Goshawk,Melierax metabates,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7611,species,eacgos1,Eastern Chanting-Goshawk,Melierax poliopterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7612,species,pacgos1,Pale Chanting-Goshawk,Melierax canorus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7615,species,gabgos2,Gabar Goshawk,Micronisus gabar,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7619,species,blchaw1,Black-collared Hawk,Busarellus nigricollis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7622,species,snakit,Snail Kite,Rostrhamus sociabilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7626,species,slbkit1,Slender-billed Kite,Helicolestes hamatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7627,species,dotkit1,Double-toothed Kite,Harpagus bidentatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7630,species,rutkit1,Rufous-thighed Kite,Harpagus diodon,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7631,species,miskit,Mississippi Kite,Ictinia mississippiensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7632,species,plukit1,Plumbeous Kite,Ictinia plumbea,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7633,slash,y00772,Mississippi/Plumbeous Kite,Ictinia mississippiensis/plumbea,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7634,species,grabuz1,Grasshopper Buzzard,Butastur rufipennis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7635,species,whebuz1,White-eyed Buzzard,Butastur teesa,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7636,species,ruwbuz1,Rufous-winged Buzzard,Butastur liventer,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7637,species,gyfbuz1,Gray-faced Buzzard,Butastur indicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7638,species,wemhar1,Eurasian Marsh-Harrier,Circus aeruginosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7641,species,afmhar1,African Marsh-Harrier,Circus ranivorus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7642,species,easmah1,Eastern Marsh-Harrier,Circus spilonotus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7643,species,easmah2,Papuan Marsh-Harrier,Circus spilothorax,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7644,slash,eamhar1,Eastern/Papuan Marsh-Harrier,Circus spilonotus/spilothorax,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7645,species,swahar1,Swamp Harrier,Circus approximans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7646,species,reuhar2,Reunion Harrier,Circus maillardi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7647,species,reuhar3,Madagascar Harrier,Circus macrosceles,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7648,species,lowhar1,Long-winged Harrier,Circus buffoni,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7649,species,spohar1,Spotted Harrier,Circus assimilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7650,species,blahar1,Black Harrier,Circus maurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7651,species,cinhar1,Cinereous Harrier,Circus cinereus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7652,species,norhar1,Hen Harrier,Circus cyaneus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7653,species,norhar2,Northern Harrier,Circus hudsonius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7654,slash,norhar,Hen/Northern Harrier,Circus cyaneus/hudsonius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7655,species,palhar1,Pallid Harrier,Circus macrourus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7656,species,piehar1,Pied Harrier,Circus melanoleucos,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7657,species,monhar1,Montagu's Harrier,Circus pygargus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7658,slash,y00840,Hen/Montagu's Harrier,Circus cyaneus/pygargus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7659,slash,y00720,Pallid/Montagu's Harrier,Circus macrourus/pygargus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7660,spuh,harrie1,harrier sp.,Circus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7661,species,gybhaw1,Gray-bellied Hawk,Accipiter poliogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7662,species,cregos1,Crested Goshawk,Accipiter trivirgatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7674,species,sulgos1,Sulawesi Goshawk,Accipiter griseiceps,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7675,species,recgos1,Red-chested Goshawk,Accipiter toussenelii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7676,issf,recgos2,Red-chested Goshawk (Banded),Accipiter toussenelii macroscelides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,recgos1 +7677,issf,recgos3,Red-chested Goshawk (Red-chested),Accipiter toussenelii toussenelii/canescens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,recgos1 +7680,issf,recgos4,Red-chested Goshawk (Bioko),Accipiter toussenelii lopezi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,recgos1 +7681,species,afrgos1,African Goshawk,Accipiter tachiro,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7682,issf,afrgos2,African Goshawk (Ethiopian),Accipiter tachiro unduliventer/croizati,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 +7685,issf,afrgos3,African Goshawk (Eastern),Accipiter tachiro sparsimfasciatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 +7686,issf,afrgos4,African Goshawk (Pemba),Accipiter tachiro pembaensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 +7687,issf,afrgos5,African Goshawk (Southern),Accipiter tachiro tachiro,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,afrgos1 +7688,species,chfspa1,Chestnut-flanked Sparrowhawk,Accipiter castanilius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7689,species,shikra1,Shikra,Accipiter badius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7690,issf,shikra2,Shikra (African),Accipiter badius sphenurus/polyzonoides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shikra1 +7693,issf,shikra3,Shikra (Asian),Accipiter badius [badius Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shikra1 +7698,species,nicspa1,Nicobar Sparrowhawk,Accipiter butleri,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7701,species,levspa1,Levant Sparrowhawk,Accipiter brevipes,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7702,species,grfhaw1,Chinese Sparrowhawk,Accipiter soloensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7703,species,fragos2,Frances's Sparrowhawk,Accipiter francesiae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7708,species,sptgos1,Spot-tailed Goshawk,Accipiter trinotatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7709,species,vargos1,Variable Goshawk,Accipiter hiogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7710,issf,vargos2,Variable Goshawk (Lesser Sundas),Accipiter hiogaster sylvestris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,vargos1 +7711,issf,vargos3,Variable Goshawk (Variable),Accipiter hiogaster [hiogaster Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,vargos1 +7733,species,grygos1,Gray Goshawk,Accipiter novaehollandiae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7734,species,brogos1,Brown Goshawk,Accipiter fasciatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7746,slash,y01023,Variable/Brown Goshawk,Accipiter hiogaster/fasciatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7747,species,blmgos1,Black-mantled Goshawk,Accipiter melanochlamys,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7750,species,piegos1,Pied Goshawk,Accipiter albogularis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7756,species,necgos1,New Caledonia Goshawk,Accipiter haplochrous,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7757,species,fijgos1,Fiji Goshawk,Accipiter rufitorques,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7758,species,molgos1,Moluccan Goshawk,Accipiter henicogrammus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7759,species,slmgos1,Slaty-mantled Goshawk,Accipiter luteoschistaceus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7760,species,imispa1,Imitator Sparrowhawk,Accipiter imitator,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7761,species,gyhgos1,Gray-headed Goshawk,Accipiter poliocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7762,species,nebgos1,New Britain Goshawk,Accipiter princeps,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7763,species,tinhaw1,Tiny Hawk,Accipiter superciliosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7766,species,semhaw2,Semicollared Hawk,Accipiter collaris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7767,species,retspa1,Red-thighed Sparrowhawk,Accipiter erythropus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7770,species,litspa1,Little Sparrowhawk,Accipiter minullus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7771,species,japspa1,Japanese Sparrowhawk,Accipiter gularis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7775,species,smaspa1,Small Sparrowhawk,Accipiter nanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7776,species,besra1,Besra,Accipiter virgatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7788,slash,y00943,Japanese Sparrowhawk/Besra,Accipiter gularis/virgatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7789,slash,y01073,Crested Goshawk/Besra,Accipiter trivirgatus/virgatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7790,species,runspa1,Rufous-necked Sparrowhawk,Accipiter erythrauchen,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7793,species,colspa1,Collared Sparrowhawk,Accipiter cirrocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7797,slash,y00841,Brown Goshawk/Collared Sparrowhawk,Accipiter fasciatus/cirrocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7798,species,nebspa1,New Britain Sparrowhawk,Accipiter brachyurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7799,species,vibspa1,Vinous-breasted Sparrowhawk,Accipiter rhodogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7803,species,madspa1,Madagascar Sparrowhawk,Accipiter madagascariensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7804,species,ovaspa2,Ovambo Sparrowhawk,Accipiter ovampensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7805,species,eurspa1,Eurasian Sparrowhawk,Accipiter nisus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7812,slash,y00842,Levant/Eurasian Sparrowhawk,Accipiter brevipes/nisus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7813,species,rucspa2,Rufous-breasted Sparrowhawk,Accipiter rufiventris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7814,issf,rucspa3,Rufous-breasted Sparrowhawk (Ethiopian),Accipiter rufiventris perspicillaris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rucspa2 +7815,issf,rucspa4,Rufous-breasted Sparrowhawk (Rufous-breasted),Accipiter rufiventris rufiventris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rucspa2 +7816,species,shshaw,Sharp-shinned Hawk,Accipiter striatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7817,issf,shshaw1,Sharp-shinned Hawk (Caribbean),Accipiter striatus [striatus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw +7821,issf,shshaw2,Sharp-shinned Hawk (Northern),Accipiter striatus [velox Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw +7825,issf,shshaw6,Sharp-shinned Hawk (Madrean),Accipiter striatus madrensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw +7826,issf,shshaw3,Sharp-shinned Hawk (White-breasted),Accipiter striatus chionogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw +7827,issf,shshaw4,Sharp-shinned Hawk (Plain-breasted),Accipiter striatus ventralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw +7828,issf,shshaw5,Sharp-shinned Hawk (Rufous-thighed),Accipiter striatus erythronemius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,shshaw +7829,species,coohaw,Cooper's Hawk,Accipiter cooperii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7830,slash,y00612,Sharp-shinned/Cooper's Hawk,Accipiter striatus/cooperii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7831,species,gunhaw1,Gundlach's Hawk,Accipiter gundlachi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7834,species,bichaw1,Bicolored Hawk,Accipiter bicolor,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7835,issf,bichaw2,Bicolored Hawk (Bicolored),Accipiter bicolor bicolor/fidens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bichaw1 +7838,issf,bichaw3,Bicolored Hawk (Spotted),Accipiter bicolor pileatus/guttifer,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bichaw1 +7841,issf,bichaw4,Bicolored Hawk (Chilean),Accipiter bicolor chilensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,bichaw1 +7842,species,blagos1,Black Goshawk,Accipiter melanoleucus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7845,species,hengos1,Henst's Goshawk,Accipiter henstii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7846,species,norgos,Northern Goshawk,Accipiter gentilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7847,issf,norgos1,Northern Goshawk (Eurasian),Accipiter gentilis [gentilis Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,norgos +7854,issf,norgos2,Northern Goshawk (American),Accipiter gentilis atricapillus/laingi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,norgos +7857,slash,y00666,Cooper's Hawk/Northern Goshawk,Accipiter cooperii/gentilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7858,species,meygos1,Meyer's Goshawk,Accipiter meyerianus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7859,spuh,accipi,Accipiter sp.,Accipiter sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7860,species,chsgos1,Chestnut-shouldered Goshawk,Erythrotriorchis buergersi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7861,species,redgos1,Red Goshawk,Erythrotriorchis radiatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7862,species,dorgos1,Doria's Goshawk,Megatriorchis doriae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7863,species,lothaw1,Long-tailed Hawk,Urotriorchis macrourus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7864,species,redkit1,Red Kite,Milvus milvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7865,issf,redkit2,Red Kite (Red),Milvus milvus milvus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,redkit1 +7866,issf,redkit3,Red Kite (Cape Verde),Milvus milvus fasciicauda,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,redkit1 +7867,species,blakit1,Black Kite,Milvus migrans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7868,issf,blkkit1,Black Kite (Black),Milvus migrans [migrans Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,blakit1 +7872,issf,blkkit2,Black Kite (Black-eared),Milvus migrans lineatus/formosanus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,blakit1 +7875,issf,blkkit3,Black Kite (Yellow-billed),Milvus migrans aegyptius/parasitus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,blakit1 +7878,slash,y00611,Red/Black Kite,Milvus milvus/migrans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7879,species,whikit1,Whistling Kite,Haliastur sphenurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7880,species,brakit1,Brahminy Kite,Haliastur indus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7885,species,baleag,Bald Eagle,Haliaeetus leucocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7888,slash,y00944,Golden/Bald Eagle,Aquila chrysaetos/Haliaeetus leucocephalus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7889,species,whteag,White-tailed Eagle,Haliaeetus albicilla,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7890,species,pafeag1,Pallas's Fish-Eagle,Haliaeetus leucoryphus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7891,species,stseag,Steller's Sea-Eagle,Haliaeetus pelagicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7892,species,wbseag1,White-bellied Sea-Eagle,Haliaeetus leucogaster,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7893,species,solsee1,Sanford's Sea-Eagle,Haliaeetus sanfordi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7894,species,affeag1,African Fish-Eagle,Haliaeetus vocifer,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7895,species,mafeag1,Madagascar Fish-Eagle,Haliaeetus vociferoides,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7896,species,lefeag1,Lesser Fish-Eagle,Haliaeetus humilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7899,species,gyhfie1,Gray-headed Fish-Eagle,Haliaeetus ichthyaetus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7900,slash,y00721,Lesser/Gray-headed Fish-Eagle,Haliaeetus humilis/ichthyaetus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7901,spuh,haliae1,Haliaeetus sp.,Haliaeetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7902,species,crahaw,Crane Hawk,Geranospiza caerulescens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7903,issf,crahaw1,Crane Hawk (Blackish),Geranospiza caerulescens [nigra Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crahaw +7907,issf,crahaw2,Crane Hawk (Gray),Geranospiza caerulescens caerulescens,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crahaw +7908,issf,crahaw3,Crane Hawk (Banded),Geranospiza caerulescens gracilis/flexipes,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,crahaw +7911,species,pluhaw,Plumbeous Hawk,Cryptoleucopteryx plumbea,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7912,species,slchaw2,Slate-colored Hawk,Buteogallus schistaceus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7913,species,comblh1,Common Black Hawk,Buteogallus anthracinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7914,issf,cobhaw,Common Black Hawk (Common),Buteogallus anthracinus anthracinus/utilensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,comblh1 +7917,issf,mabhaw1,Common Black Hawk (Mangrove),Buteogallus anthracinus [subtilis Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,comblh1 +7921,species,cubblh1,Cuban Black Hawk,Buteogallus gundlachii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7922,species,ruchaw1,Rufous Crab Hawk,Buteogallus aequinoctialis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7923,species,savhaw1,Savanna Hawk,Buteogallus meridionalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7924,species,whnhaw2,White-necked Hawk,Buteogallus lacernulatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7925,species,grbhaw1,Great Black Hawk,Buteogallus urubitinga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7926,issf,grbhaw2,Great Black Hawk (Northern),Buteogallus urubitinga ridgwayi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,grbhaw1 +7927,issf,grbhaw3,Great Black Hawk (Southern),Buteogallus urubitinga urubitinga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,grbhaw1 +7928,slash,y00945,Common/Great Black Hawk,Buteogallus anthracinus/urubitinga,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7929,species,soleag1,Solitary Eagle,Buteogallus solitarius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7932,species,croeag1,Chaco Eagle,Buteogallus coronatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7933,spuh,buteog1,Buteogallus sp.,Buteogallus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7934,species,barhaw1,Barred Hawk,Morphnarchus princeps,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7935,species,roahaw,Roadside Hawk,Rupornis magnirostris,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7936,issf,roahaw2,Roadside Hawk (Cozumel I.),Rupornis magnirostris gracilis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,roahaw +7937,issf,roahaw3,Roadside Hawk (Northern),Rupornis magnirostris [magnirostris Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,roahaw +7945,issf,roahaw4,Roadside Hawk (Southern),Rupornis magnirostris [pucherani Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,roahaw +7950,species,hrshaw,Harris's Hawk,Parabuteo unicinctus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7951,issf,harhaw1,Harris's Hawk (Harris's),Parabuteo unicinctus harrisi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hrshaw +7952,issf,harhaw2,Harris's Hawk (Bay-winged),Parabuteo unicinctus unicinctus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,hrshaw +7953,species,whrhaw1,White-rumped Hawk,Parabuteo leucorrhous,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7954,species,whthaw,White-tailed Hawk,Geranoaetus albicaudatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7958,species,rebhaw2,Variable Hawk,Geranoaetus polyosoma,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7959,form,punhaw1,Variable Hawk (Puna),Geranoaetus polyosoma (Puna),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 +7960,form,rebhaw1,Variable Hawk (Red-backed),Geranoaetus polyosoma (Red-backed),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 +7961,issf,varhaw1,Variable Hawk (Variable),Geranoaetus polyosoma polyosoma,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 +7962,issf,varhaw2,Variable Hawk (Juan Fernandez),Geranoaetus polyosoma exsul,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rebhaw2 +7963,species,bcbeag1,Black-chested Buzzard-Eagle,Geranoaetus melanoleucus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7966,spuh,gerano1,Geranoaetus sp.,Geranoaetus sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7967,species,manhaw2,Mantled Hawk,Pseudastur polionotus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7968,species,whihaw1,White Hawk,Pseudastur albicollis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7969,issf,whihaw2,White Hawk (Snowy),Pseudastur albicollis ghiesbreghti,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 +7970,issf,whihaw3,White Hawk (White-shouldered),Pseudastur albicollis costaricensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 +7971,issf,whihaw5,White Hawk (Black-winged),Pseudastur albicollis williaminae,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 +7972,issf,whihaw4,White Hawk (Black-tailed),Pseudastur albicollis albicollis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,whihaw1 +7973,species,gybhaw2,Gray-backed Hawk,Pseudastur occidentalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7974,species,semhaw,Semiplumbeous Hawk,Leucopternis semiplumbeus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7975,species,blfhaw1,Black-faced Hawk,Leucopternis melanops,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7976,species,whbhaw2,White-browed Hawk,Leucopternis kuhli,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7977,species,berhaw1,Bermuda Hawk,Bermuteo avivorus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7978,species,gryhaw2,Gray Hawk,Buteo plagiatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7979,species,gryhaw3,Gray-lined Hawk,Buteo nitidus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7983,slash,gryhaw1,Gray/Gray-lined Hawk,Buteo plagiatus/nitidus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7984,species,reshaw,Red-shouldered Hawk,Buteo lineatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7985,issf,reshaw5,Red-shouldered Hawk (lineatus Group),Buteo lineatus [lineatus Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reshaw +7989,issf,reshaw2,Red-shouldered Hawk (extimus),Buteo lineatus extimus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reshaw +7990,issf,reshaw4,Red-shouldered Hawk (elegans),Buteo lineatus elegans,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,reshaw +7991,hybrid,x00787,Common Black x Red-shouldered Hawk (hybrid),Buteogallus anthracinus x Buteo lineatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7992,species,ridhaw1,Ridgway's Hawk,Buteo ridgwayi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7993,species,brwhaw,Broad-winged Hawk,Buteo platypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +7994,issf,brwhaw1,Broad-winged Hawk (Northern),Buteo platypterus platypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,brwhaw +7995,issf,brwhaw2,Broad-winged Hawk (Caribbean),Buteo platypterus [antillarum Group],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,brwhaw +8001,slash,y00773,Red-shouldered/Broad-winged Hawk,Buteo lineatus/platypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8002,species,hawhaw,Hawaiian Hawk,Buteo solitarius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8003,species,shthaw,Short-tailed Hawk,Buteo brachyurus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8006,species,whthaw1,White-throated Hawk,Buteo albigula,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8007,species,swahaw,Swainson's Hawk,Buteo swainsoni,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8008,species,galhaw1,Galapagos Hawk,Buteo galapagoensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8009,species,zothaw,Zone-tailed Hawk,Buteo albonotatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8010,species,ruthaw1,Rufous-tailed Hawk,Buteo ventralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8011,species,rethaw,Red-tailed Hawk,Buteo jamaicensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8012,issf,wrthaw1,Red-tailed Hawk (calurus/alascensis),Buteo jamaicensis calurus/alascensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8015,issf,erthaw1,Red-tailed Hawk (borealis),Buteo jamaicensis borealis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8016,form,rethaw4,Red-tailed Hawk (abieticola),Buteo jamaicensis abieticola,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8017,form,rethaw9,Red-tailed Hawk (calurus/abieticola),Buteo jamaicensis calurus/abieticola,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8018,issf,hrthaw1,Red-tailed Hawk (Harlan's),Buteo jamaicensis harlani,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8019,issf,krthaw1,Red-tailed Hawk (Krider's),Buteo jamaicensis kriderii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8020,issf,frthaw1,Red-tailed Hawk (fuertesi),Buteo jamaicensis fuertesi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8021,issf,rethaw5,Red-tailed Hawk (kemsiesi/hadropus),Buteo jamaicensis kemsiesi/hadropus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8024,issf,rethaw1,Red-tailed Hawk (costaricensis),Buteo jamaicensis costaricensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8025,issf,rethaw6,Red-tailed Hawk (fumosus),Buteo jamaicensis fumosus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8026,issf,rethaw7,Red-tailed Hawk (socorroensis),Buteo jamaicensis socorroensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8027,issf,rethaw8,Red-tailed Hawk (umbrinus),Buteo jamaicensis umbrinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8028,issf,rethaw2,Red-tailed Hawk (jamaicensis),Buteo jamaicensis jamaicensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8029,issf,rethaw3,Red-tailed Hawk (solitudinis),Buteo jamaicensis solitudinis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,rethaw +8030,hybrid,x00686,Red-shouldered x Red-tailed Hawk (hybrid),Buteo lineatus x jamaicensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8031,species,rolhaw,Rough-legged Hawk,Buteo lagopus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8036,hybrid,x00788,Swainson's x Rough-legged Hawk (hybrid),Buteo swainsoni x lagopus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8037,hybrid,x00731,Red-tailed x Rough-legged Hawk (hybrid),Buteo jamaicensis x lagopus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8038,species,ferhaw,Ferruginous Hawk,Buteo regalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8039,hybrid,x00930,Red-tailed x Ferruginous Hawk (hybrid),Buteo jamaicensis x regalis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8040,species,combuz1,Common Buzzard,Buteo buteo,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8041,issf,combuz7,Common Buzzard (Western),Buteo buteo buteo,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 +8042,issf,combuz8,Common Buzzard (Corsican),Buteo buteo arrigonii,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 +8043,issf,combuz2,Common Buzzard (Azores),Buteo buteo rothschildi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 +8044,issf,combuz3,Common Buzzard (Canary Is.),Buteo buteo insularum,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 +8045,issf,combuz5,Common Buzzard (Steppe),Buteo buteo vulpinus/menetriesi,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,combuz1 +8048,species,combuz9,Himalayan Buzzard,Buteo refectus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8049,slash,y00946,Common/Himalayan Buzzard,Buteo buteo/refectus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8050,species,combuz6,Eastern Buzzard,Buteo japonicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8054,slash,y00947,Common/Himalayan/Eastern Buzzard,Buteo buteo/refectus/japonicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8055,slash,y00948,Himalayan/Eastern Buzzard,Buteo refectus/japonicus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8056,species,moubuz2,Mountain Buzzard,Buteo oreophilus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8057,species,moubuz3,Forest Buzzard,Buteo trizonatus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8058,form,moubuz4,Elgin Buzzard (undescribed form),Buteo [undescribed form],Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8059,species,madbuz1,Madagascar Buzzard,Buteo brachypterus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8060,species,combuz4,Cape Verde Buzzard,Buteo bannermani,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8061,species,socbuz1,Socotra Buzzard,Buteo socotraensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8062,species,lolbuz1,Long-legged Buzzard,Buteo rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8063,issf,lolbuz2,Long-legged Buzzard (Northern),Buteo rufinus rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lolbuz1 +8064,issf,lolbuz3,Long-legged Buzzard (Atlas),Buteo rufinus cirtensis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",,lolbuz1 +8065,hybrid,x00766,Common x Long-legged Buzzard (hybrid),Buteo buteo x rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8066,slash,y01024,Common/Long-legged Buzzard,Buteo buteo/rufinus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8067,species,uplbuz1,Upland Buzzard,Buteo hemilasius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8068,hybrid,x00789,Long-legged x Upland Buzzard (hybrid),Buteo rufinus x hemilasius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8069,slash,y00843,Long-legged/Upland Buzzard,Buteo rufinus/hemilasius,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8070,species,renbuz1,Red-necked Buzzard,Buteo auguralis,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8071,species,augbuz1,Augur Buzzard,Buteo augur,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8072,species,arcbuz1,Archer's Buzzard,Buteo archeri,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8073,species,jacbuz1,Jackal Buzzard,Buteo rufofuscus,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8074,spuh,buteo,Buteo sp.,Buteo sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8075,spuh,y00681,Geranoaetus/Buteo sp.,Geranoaetus/Buteo sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8076,spuh,y00221,Buteo/eagle sp.,Buteo/eagle sp.,Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8077,spuh,hawk,hawk sp.,Accipitridae sp. (hawk sp.),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8078,spuh,eagle1,eagle sp.,Accipitridae sp. (eagle sp.),Accipitriformes,"Accipitridae (Hawks, Eagles, and Kites)",, +8079,species,sooowl1,Sooty Owl,Tyto tenebricosa,Strigiformes,Tytonidae (Barn-Owls),Owls, +8080,issf,grsowl1,Sooty Owl (Greater),Tyto tenebricosa tenebricosa/arfaki,Strigiformes,Tytonidae (Barn-Owls),,sooowl1 +8083,issf,lesowl1,Sooty Owl (Lesser),Tyto tenebricosa multipunctata,Strigiformes,Tytonidae (Barn-Owls),,sooowl1 +8084,species,aumowl1,Australian Masked-Owl,Tyto novaehollandiae,Strigiformes,Tytonidae (Barn-Owls),, +8091,species,nebmao1,Golden Masked-Owl,Tyto aurantia,Strigiformes,Tytonidae (Barn-Owls),, +8092,species,sermao1,Seram Masked-Owl,Tyto almae,Strigiformes,Tytonidae (Barn-Owls),, +8093,species,lemowl1,Lesser Masked-Owl,Tyto sororcula,Strigiformes,Tytonidae (Barn-Owls),, +8094,issf,lesmao1,Lesser Masked-Owl (Buru),Tyto sororcula cayelii,Strigiformes,Tytonidae (Barn-Owls),,lemowl1 +8095,issf,lesmao2,Lesser Masked-Owl (Tanimbar),Tyto sororcula sororcula,Strigiformes,Tytonidae (Barn-Owls),,lemowl1 +8096,species,manowl2,Manus Masked-Owl,Tyto manusi,Strigiformes,Tytonidae (Barn-Owls),, +8097,species,talowl1,Taliabu Masked-Owl,Tyto nigrobrunnea,Strigiformes,Tytonidae (Barn-Owls),, +8098,species,minowl1,Minahassa Masked-Owl,Tyto inexspectata,Strigiformes,Tytonidae (Barn-Owls),, +8099,species,sulowl1,Sulawesi Masked-Owl,Tyto rosenbergii,Strigiformes,Tytonidae (Barn-Owls),, +8102,species,ausgro1,Australasian Grass-Owl,Tyto longimembris,Strigiformes,Tytonidae (Barn-Owls),, +8109,species,afgowl1,African Grass-Owl,Tyto capensis,Strigiformes,Tytonidae (Barn-Owls),, +8110,species,brnowl,Barn Owl,Tyto alba,Strigiformes,Tytonidae (Barn-Owls),, +8111,issf,barowl2,Barn Owl (Eurasian),Tyto alba [alba Group],Strigiformes,Tytonidae (Barn-Owls),,brnowl +8116,issf,barowl14,Barn Owl (Madeiran),Tyto alba schmitzi,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8117,issf,barowl15,Barn Owl (Canary Is.),Tyto alba gracilirostris,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8118,issf,barowl16,Barn Owl (African),Tyto alba affinis,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8119,issf,barowl17,Barn Owl (Bioko),Tyto alba poensis,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8120,issf,barowl3,Barn Owl (Cape Verde),Tyto alba detorta,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8121,issf,barowl4,Barn Owl (Sao Tome),Tyto alba thomensis,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8122,issf,barowl6,Barn Owl (Boang),Tyto alba crassirostris,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8123,issf,barowl7,Barn Owl (Eastern),Tyto alba [delicatula Group],Strigiformes,Tytonidae (Barn-Owls),,brnowl +8130,issf,barowl8,Barn Owl (American),Tyto alba [furcata Group],Strigiformes,Tytonidae (Barn-Owls),,brnowl +8139,issf,barowl9,Barn Owl (Curacao),Tyto alba bargei,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8140,issf,barowl10,Barn Owl (Lesser Antilles),Tyto alba insularis/nigrescens,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8143,issf,barowl11,Barn Owl (Galapagos),Tyto alba punctatissima,Strigiformes,Tytonidae (Barn-Owls),,brnowl +8144,species,barowl5,Andaman Masked-Owl,Tyto deroepstorffi,Strigiformes,Tytonidae (Barn-Owls),, +8145,species,asfowl1,Ashy-faced Owl,Tyto glaucops,Strigiformes,Tytonidae (Barn-Owls),, +8146,species,marowl1,Red Owl,Tyto soumagnei,Strigiformes,Tytonidae (Barn-Owls),, +8147,species,orbowl1,Oriental Bay-Owl,Phodilus badius,Strigiformes,Tytonidae (Barn-Owls),, +8152,species,srlbao1,Sri Lanka Bay-Owl,Phodilus assimilis,Strigiformes,Tytonidae (Barn-Owls),, +8155,species,cobowl1,Congo Bay-Owl,Phodilus prigoginei,Strigiformes,Tytonidae (Barn-Owls),, +8156,species,wfsowl2,White-fronted Scops-Owl,Otus sagittatus,Strigiformes,Strigidae (Owls),, +8157,species,ansowl1,Andaman Scops-Owl,Otus balli,Strigiformes,Strigidae (Owls),, +8158,species,resowl1,Reddish Scops-Owl,Otus rufescens,Strigiformes,Strigidae (Owls),, +8161,species,sersco1,Serendib Scops-Owl,Otus thilohoffmanni,Strigiformes,Strigidae (Owls),, +8162,species,sasowl1,Sandy Scops-Owl,Otus icterorhynchus,Strigiformes,Strigidae (Owls),, +8163,issf,sansco2,Sandy Scops-Owl (Sandy),Otus icterorhynchus icterorhynchus,Strigiformes,Strigidae (Owls),,sasowl1 +8164,issf,sansco3,Sandy Scops-Owl (Reddish),Otus icterorhynchus holerythrus,Strigiformes,Strigidae (Owls),,sasowl1 +8165,species,sosowl1,Sokoke Scops-Owl,Otus ireneae,Strigiformes,Strigidae (Owls),, +8166,species,flsowl1,Flores Scops-Owl,Otus alfredi,Strigiformes,Strigidae (Owls),, +8167,species,mosowl2,Mountain Scops-Owl,Otus spilocephalus,Strigiformes,Strigidae (Owls),, +8176,species,rasowl1,Rajah Scops-Owl,Otus brookii,Strigiformes,Strigidae (Owls),, +8177,issf,rajsco2,Rajah Scops-Owl (Sumatran),Otus brookii solokensis,Strigiformes,Strigidae (Owls),,rasowl1 +8178,issf,rajsco1,Rajah Scops-Owl (Bornean),Otus brookii brookii,Strigiformes,Strigidae (Owls),,rasowl1 +8179,species,jasowl2,Javan Scops-Owl,Otus angelinae,Strigiformes,Strigidae (Owls),, +8180,species,mesowl1,Mentawai Scops-Owl,Otus mentawi,Strigiformes,Strigidae (Owls),, +8181,species,insowl1,Indian Scops-Owl,Otus bakkamoena,Strigiformes,Strigidae (Owls),, +8186,species,cosowl1,Collared Scops-Owl,Otus lettia,Strigiformes,Strigidae (Owls),, +8192,species,mineao1,Giant Scops-Owl,Otus gurneyi,Strigiformes,Strigidae (Owls),, +8193,species,susowl2,Sunda Scops-Owl,Otus lempiji,Strigiformes,Strigidae (Owls),, +8199,slash,y01137,Collared/Sunda Scops-Owl,Otus lettia/lempiji,Strigiformes,Strigidae (Owls),, +8200,species,jasowl1,Japanese Scops-Owl,Otus semitorques,Strigiformes,Strigidae (Owls),, +8204,species,wasowl1,Wallace's Scops-Owl,Otus silvicola,Strigiformes,Strigidae (Owls),, +8205,species,pasowl2,Palawan Scops-Owl,Otus fuliginosus,Strigiformes,Strigidae (Owls),, +8206,species,phsowl1,Philippine Scops-Owl,Otus megalotis,Strigiformes,Strigidae (Owls),, +8207,species,evesco1,Everett's Scops-Owl,Otus everetti,Strigiformes,Strigidae (Owls),, +8208,species,negsco1,Negros Scops-Owl,Otus nigrorum,Strigiformes,Strigidae (Owls),, +8209,species,misowl2,Mindoro Scops-Owl,Otus mindorensis,Strigiformes,Strigidae (Owls),, +8210,species,mosowl1,Moluccan Scops-Owl,Otus magicus,Strigiformes,Strigidae (Owls),, +8211,issf,molsco1,Moluccan Scops-Owl (Moluccan),Otus magicus [magicus Group],Strigiformes,Strigidae (Owls),,mosowl1 +8218,issf,molsco2,Moluccan Scops-Owl (Wetar),Otus magicus tempestatis,Strigiformes,Strigidae (Owls),,mosowl1 +8219,species,rinsco1,Rinjani Scops-Owl,Otus jolandae,Strigiformes,Strigidae (Owls),, +8220,species,masowl2,Mantanani Scops-Owl,Otus mantananensis,Strigiformes,Strigidae (Owls),, +8225,species,ryusco1,Ryukyu Scops-Owl,Otus elegans,Strigiformes,Strigidae (Owls),, +8230,species,susowl1,Sulawesi Scops-Owl,Otus manadensis,Strigiformes,Strigidae (Owls),, +8231,issf,sulsco6,Sulawesi Scops-Owl (Sulawesi),Otus manadensis manadensis,Strigiformes,Strigidae (Owls),,susowl1 +8232,issf,sulsco5,Sulawesi Scops-Owl (Banggai),Otus manadensis mendeni,Strigiformes,Strigidae (Owls),,susowl1 +8233,issf,sulsco4,Sulawesi Scops-Owl (Kalidupa),Otus manadensis kalidupae,Strigiformes,Strigidae (Owls),,susowl1 +8234,species,sansco1,Sangihe Scops-Owl,Otus collari,Strigiformes,Strigidae (Owls),, +8235,species,sulsco2,Siau Scops-Owl,Otus siaoensis,Strigiformes,Strigidae (Owls),, +8236,species,sulsco3,Sula Scops-Owl,Otus sulaensis,Strigiformes,Strigidae (Owls),, +8237,species,biasco1,Biak Scops-Owl,Otus beccarii,Strigiformes,Strigidae (Owls),, +8238,species,sisowl1,Simeulue Scops-Owl,Otus umbra,Strigiformes,Strigidae (Owls),, +8239,species,ensowl1,Enggano Scops-Owl,Otus enganensis,Strigiformes,Strigidae (Owls),, +8240,species,nicsco1,Nicobar Scops-Owl,Otus alius,Strigiformes,Strigidae (Owls),, +8241,species,arasco1,Arabian Scops-Owl,Otus pamelae,Strigiformes,Strigidae (Owls),, +8242,species,eursco1,Eurasian Scops-Owl,Otus scops,Strigiformes,Strigidae (Owls),, +8243,issf,eursco2,Eurasian Scops-Owl (Eurasian),Otus scops [scops Group],Strigiformes,Strigidae (Owls),,eursco1 +8249,issf,eursco3,Eurasian Scops-Owl (Cyprus),Otus scops cyprius,Strigiformes,Strigidae (Owls),,eursco1 +8250,species,pesowl2,Pemba Scops-Owl,Otus pembaensis,Strigiformes,Strigidae (Owls),, +8251,species,stsowl1,Sao Tome Scops-Owl,Otus hartlaubi,Strigiformes,Strigidae (Owls),, +8252,form,prisco1,Principe Scops-Owl (undescribed form),Otus [undescribed form],Strigiformes,Strigidae (Owls),, +8253,species,afsowl1,African Scops-Owl,Otus senegalensis,Strigiformes,Strigidae (Owls),, +8254,issf,afrsco1,African Scops-Owl (African),Otus senegalensis senegalensis,Strigiformes,Strigidae (Owls),,afsowl1 +8255,issf,afrsco3,African Scops-Owl (Annobon),Otus senegalensis feae,Strigiformes,Strigidae (Owls),,afsowl1 +8256,issf,afrsco4,African Scops-Owl (Snowy),Otus senegalensis nivosus,Strigiformes,Strigidae (Owls),,afsowl1 +8257,species,pasowl3,Pallid Scops-Owl,Otus brucei,Strigiformes,Strigidae (Owls),, +8262,slash,y00858,Eurasian/Pallid Scops-Owl,Otus scops/brucei,Strigiformes,Strigidae (Owls),, +8263,species,misowl1,Mindanao Scops-Owl,Otus mirus,Strigiformes,Strigidae (Owls),, +8264,species,lusowl1,Luzon Scops-Owl,Otus longicornis,Strigiformes,Strigidae (Owls),, +8265,species,mohsco1,Moheli Scops-Owl,Otus moheliensis,Strigiformes,Strigidae (Owls),, +8266,species,cosowl3,Comoro Scops-Owl,Otus pauliani,Strigiformes,Strigidae (Owls),, +8267,species,sesowl1,Seychelles Scops-Owl,Otus insularis,Strigiformes,Strigidae (Owls),, +8268,species,orsowl,Oriental Scops-Owl,Otus sunia,Strigiformes,Strigidae (Owls),, +8269,issf,orisco1,Oriental Scops-Owl (Oriental),Otus sunia [sunia Group],Strigiformes,Strigidae (Owls),,orsowl +8278,issf,orisco2,Oriental Scops-Owl (Walden's),Otus sunia modestus,Strigiformes,Strigidae (Owls),,orsowl +8279,species,afrsco2,Socotra Scops-Owl,Otus socotranus,Strigiformes,Strigidae (Owls),, +8280,species,ansowl2,Anjouan Scops-Owl,Otus capnodes,Strigiformes,Strigidae (Owls),, +8281,species,maysco1,Mayotte Scops-Owl,Otus mayottensis,Strigiformes,Strigidae (Owls),, +8282,species,reusco1,Reunion Scops-Owl,Otus grucheti,Strigiformes,Strigidae (Owls),, +8283,species,rodsco1,Rodrigues Scops-Owl,Otus murivorus,Strigiformes,Strigidae (Owls),, +8284,species,mausco1,Mauritius Scops-Owl,Otus sauzieri,Strigiformes,Strigidae (Owls),, +8285,species,masowl1,Malagasy Scops-Owl,Otus rutilus,Strigiformes,Strigidae (Owls),, +8286,species,torsco1,Torotoroka Scops-Owl,Otus madagascariensis,Strigiformes,Strigidae (Owls),, +8287,spuh,otus1,scops-owl sp.,Otus sp.,Strigiformes,Strigidae (Owls),, +8288,species,flaowl,Flammulated Owl,Psiloscops flammeolus,Strigiformes,Strigidae (Owls),, +8289,species,prsowl,Puerto Rican Screech-Owl,Megascops nudipes,Strigiformes,Strigidae (Owls),, +8292,species,bssowl,Bare-shanked Screech-Owl,Megascops clarkii,Strigiformes,Strigidae (Owls),, +8293,species,whsowl1,Whiskered Screech-Owl,Megascops trichopsis,Strigiformes,Strigidae (Owls),, +8297,species,whtsco1,White-throated Screech-Owl,Megascops albogularis,Strigiformes,Strigidae (Owls),, +8304,species,trsowl,Tropical Screech-Owl,Megascops choliba,Strigiformes,Strigidae (Owls),, +8314,species,koesco1,Koepcke's Screech-Owl,Megascops koepckeae,Strigiformes,Strigidae (Owls),, +8315,issf,koesco2,Koepcke's Screech-Owl (Koepcke's),Megascops koepckeae koepckeae,Strigiformes,Strigidae (Owls),,koesco1 +8316,issf,apusco1,Koepcke's Screech-Owl (Apurimac),Megascops koepckeae hockingi,Strigiformes,Strigidae (Owls),,koesco1 +8317,species,rufsco1,Rufescent Screech-Owl,Megascops ingens,Strigiformes,Strigidae (Owls),, +8318,issf,colsco1,Rufescent Screech-Owl (Colombian),Megascops ingens colombianus,Strigiformes,Strigidae (Owls),,rufsco1 +8319,issf,rufsco2,Rufescent Screech-Owl (Rufescent),Megascops ingens ingens/venezuelanus,Strigiformes,Strigidae (Owls),,rufsco1 +8322,species,cinsco1,Cinnamon Screech-Owl,Megascops petersoni,Strigiformes,Strigidae (Owls),, +8323,species,clfsco1,Cloud-forest Screech-Owl,Megascops marshalli,Strigiformes,Strigidae (Owls),, +8324,species,mofsco1,Montane Forest Screech-Owl,Megascops hoyi,Strigiformes,Strigidae (Owls),, +8325,species,vesowl,Middle American Screech-Owl,Megascops guatemalae,Strigiformes,Strigidae (Owls),, +8326,issf,versco1,Middle American Screech-Owl (Middle American),Megascops guatemalae [guatemalae Group],Strigiformes,Strigidae (Owls),,vesowl +8333,issf,versco5,Middle American Screech-Owl (Vermiculated),Megascops guatemalae vermiculatus,Strigiformes,Strigidae (Owls),,vesowl +8334,species,versco2,Choco Screech-Owl,Megascops centralis,Strigiformes,Strigidae (Owls),, +8335,species,foosco1,Foothill Screech-Owl,Megascops roraimae,Strigiformes,Strigidae (Owls),, +8336,issf,versco4,Foothill Screech-Owl (Roraima),Megascops roraimae roraimae,Strigiformes,Strigidae (Owls),,foosco1 +8337,issf,versco3,Foothill Screech-Owl (Foothill),Megascops roraimae [napensis Group],Strigiformes,Strigidae (Owls),,foosco1 +8342,species,lotsco1,Long-tufted Screech-Owl,Megascops sanctaecatarinae,Strigiformes,Strigidae (Owls),, +8343,species,besowl,Bearded Screech-Owl,Megascops barbarus,Strigiformes,Strigidae (Owls),, +8344,species,basowl,Balsas Screech-Owl,Megascops seductus,Strigiformes,Strigidae (Owls),, +8345,species,pasowl4,Pacific Screech-Owl,Megascops cooperi,Strigiformes,Strigidae (Owls),, +8346,issf,pacsco1,Pacific Screech-Owl (lambi),Megascops cooperi lambi,Strigiformes,Strigidae (Owls),,pasowl4 +8347,issf,pacsco2,Pacific Screech-Owl (cooperi),Megascops cooperi cooperi,Strigiformes,Strigidae (Owls),,pasowl4 +8348,species,wesowl1,Western Screech-Owl,Megascops kennicottii,Strigiformes,Strigidae (Owls),, +8349,issf,wessco1,Western Screech-Owl (Northern),Megascops kennicottii [kennicottii Group],Strigiformes,Strigidae (Owls),,wesowl1 +8356,issf,wessco3,Western Screech-Owl (Vinaceous),Megascops kennicottii vinaceus,Strigiformes,Strigidae (Owls),,wesowl1 +8357,issf,wessco2,Western Screech-Owl (Sutton's),Megascops kennicottii suttoni,Strigiformes,Strigidae (Owls),,wesowl1 +8358,species,easowl1,Eastern Screech-Owl,Megascops asio,Strigiformes,Strigidae (Owls),, +8359,issf,eassco1,Eastern Screech-Owl (Northern),Megascops asio [asio Group],Strigiformes,Strigidae (Owls),,easowl1 +8365,issf,eassco2,Eastern Screech-Owl (McCall's),Megascops asio mccallii,Strigiformes,Strigidae (Owls),,easowl1 +8366,hybrid,x00933,Western x Eastern Screech-Owl (hybrid),Megascops kennicottii x asio,Strigiformes,Strigidae (Owls),, +8367,species,samsco1,Santa Marta Screech-Owl,Megascops gilesi,Strigiformes,Strigidae (Owls),, +8368,species,persco1,Peruvian Screech-Owl,Megascops roboratus,Strigiformes,Strigidae (Owls),, +8369,issf,persco2,Peruvian Screech-Owl (pacificus),Megascops roboratus pacificus,Strigiformes,Strigidae (Owls),,persco1 +8370,issf,persco3,Peruvian Screech-Owl (roboratus),Megascops roboratus roboratus,Strigiformes,Strigidae (Owls),,persco1 +8371,species,tabsco1,Tawny-bellied Screech-Owl,Megascops watsonii,Strigiformes,Strigidae (Owls),, +8372,issf,tabsco2,Tawny-bellied Screech-Owl (Tawny-bellied),Megascops watsonii watsonii,Strigiformes,Strigidae (Owls),,tabsco1 +8373,issf,tabsco3,Tawny-bellied Screech-Owl (Austral),Megascops watsonii usta,Strigiformes,Strigidae (Owls),,tabsco1 +8374,species,bkcsco1,Black-capped Screech-Owl,Megascops atricapilla,Strigiformes,Strigidae (Owls),, +8375,spuh,screec1,screech-owl sp.,Megascops sp.,Strigiformes,Strigidae (Owls),, +8376,species,palowl2,Palau Owl,Pyrroglaux podargina,Strigiformes,Strigidae (Owls),, +8377,species,balowl,Bare-legged Owl,Margarobyas lawrencii,Strigiformes,Strigidae (Owls),, +8380,species,nwfowl1,Northern White-faced Owl,Ptilopsis leucotis,Strigiformes,Strigidae (Owls),, +8381,species,swfowl1,Southern White-faced Owl,Ptilopsis granti,Strigiformes,Strigidae (Owls),, +8382,species,creowl1,Crested Owl,Lophostrix cristata,Strigiformes,Strigidae (Owls),, +8386,species,manowl1,Maned Owl,Jubula lettii,Strigiformes,Strigidae (Owls),, +8387,species,speowl1,Spectacled Owl,Pulsatrix perspicillata,Strigiformes,Strigidae (Owls),, +8394,species,tabowl1,Tawny-browed Owl,Pulsatrix koeniswaldiana,Strigiformes,Strigidae (Owls),, +8395,species,babowl1,Band-bellied Owl,Pulsatrix melanota,Strigiformes,Strigidae (Owls),, +8398,spuh,pulsat1,Pulsatrix sp.,Pulsatrix sp.,Strigiformes,Strigidae (Owls),, +8399,species,grhowl,Great Horned Owl,Bubo virginianus,Strigiformes,Strigidae (Owls),, +8400,issf,grhowl1,Great Horned Owl (Great Horned),Bubo virginianus [virginianus Group],Strigiformes,Strigidae (Owls),,grhowl +8413,issf,grhowl2,Great Horned Owl (Magellanic),Bubo virginianus magellanicus,Strigiformes,Strigidae (Owls),,grhowl +8414,species,eueowl1,Eurasian Eagle-Owl,Bubo bubo,Strigiformes,Strigidae (Owls),, +8429,species,roeowl1,Rock Eagle-Owl,Bubo bengalensis,Strigiformes,Strigidae (Owls),, +8430,species,pheowl1,Pharaoh Eagle-Owl,Bubo ascalaphus,Strigiformes,Strigidae (Owls),, +8431,issf,phaeao1,Pharaoh Eagle-Owl (Pharaoh),Bubo ascalaphus ascalaphus,Strigiformes,Strigidae (Owls),,pheowl1 +8432,issf,phaeao2,Pharaoh Eagle-Owl (Desert),Bubo ascalaphus desertorum,Strigiformes,Strigidae (Owls),,pheowl1 +8433,species,caeowl1,Cape Eagle-Owl,Bubo capensis,Strigiformes,Strigidae (Owls),, +8434,issf,capeao1,Cape Eagle-Owl (Northern),Bubo capensis dillonii/mackinderi,Strigiformes,Strigidae (Owls),,caeowl1 +8437,issf,capeao2,Cape Eagle-Owl (Cape),Bubo capensis capensis,Strigiformes,Strigidae (Owls),,caeowl1 +8438,species,speowl2,Spotted Eagle-Owl,Bubo africanus,Strigiformes,Strigidae (Owls),, +8439,issf,spoeao1,Spotted Eagle-Owl (Arabian),Bubo africanus milesi,Strigiformes,Strigidae (Owls),,speowl2 +8440,issf,spoeao2,Spotted Eagle-Owl (Spotted),Bubo africanus africanus/tanae,Strigiformes,Strigidae (Owls),,speowl2 +8443,species,graeao1,Grayish Eagle-Owl,Bubo cinerascens,Strigiformes,Strigidae (Owls),, +8444,species,freowl1,Fraser's Eagle-Owl,Bubo poensis,Strigiformes,Strigidae (Owls),, +8445,species,useowl1,Usambara Eagle-Owl,Bubo vosseleri,Strigiformes,Strigidae (Owls),, +8446,species,sbeowl1,Spot-bellied Eagle-Owl,Bubo nipalensis,Strigiformes,Strigidae (Owls),, +8449,species,baeowl1,Barred Eagle-Owl,Bubo sumatranus,Strigiformes,Strigidae (Owls),, +8452,species,sheowl1,Shelley's Eagle-Owl,Bubo shelleyi,Strigiformes,Strigidae (Owls),, +8453,species,veeowl1,Verreaux's Eagle-Owl,Bubo lacteus,Strigiformes,Strigidae (Owls),, +8454,species,dueowl1,Dusky Eagle-Owl,Bubo coromandus,Strigiformes,Strigidae (Owls),, +8457,species,akeowl1,Akun Eagle-Owl,Bubo leucostictus,Strigiformes,Strigidae (Owls),, +8458,species,pheowl2,Philippine Eagle-Owl,Bubo philippensis,Strigiformes,Strigidae (Owls),, +8461,species,snoowl1,Snowy Owl,Bubo scandiacus,Strigiformes,Strigidae (Owls),, +8462,spuh,bubo1,Bubo sp.,Bubo sp.,Strigiformes,Strigidae (Owls),, +8463,species,blfowl1,Blakiston's Fish-Owl,Ketupa blakistoni,Strigiformes,Strigidae (Owls),, +8468,species,brfowl1,Brown Fish-Owl,Ketupa zeylonensis,Strigiformes,Strigidae (Owls),, +8469,issf,brnfio2,Brown Fish-Owl (Turkish),Ketupa zeylonensis semenowi,Strigiformes,Strigidae (Owls),,brfowl1 +8470,issf,brnfio1,Brown Fish-Owl (Eastern),Ketupa zeylonensis [zeylonensis Group],Strigiformes,Strigidae (Owls),,brfowl1 +8474,species,tafowl1,Tawny Fish-Owl,Ketupa flavipes,Strigiformes,Strigidae (Owls),, +8475,species,bufowl2,Buffy Fish-Owl,Ketupa ketupu,Strigiformes,Strigidae (Owls),, +8480,species,pefowl1,Pel's Fishing-Owl,Scotopelia peli,Strigiformes,Strigidae (Owls),, +8481,species,rufowl1,Rufous Fishing-Owl,Scotopelia ussheri,Strigiformes,Strigidae (Owls),, +8482,species,vefowl1,Vermiculated Fishing-Owl,Scotopelia bouvieri,Strigiformes,Strigidae (Owls),, +8483,species,nohowl,Northern Hawk Owl,Surnia ulula,Strigiformes,Strigidae (Owls),, +8484,issf,nohowl1,Northern Hawk Owl (American),Surnia ulula caparoch,Strigiformes,Strigidae (Owls),,nohowl +8485,issf,nohowl2,Northern Hawk Owl (Eurasian),Surnia ulula ulula/tianschanica,Strigiformes,Strigidae (Owls),,nohowl +8488,species,eupowl1,Eurasian Pygmy-Owl,Glaucidium passerinum,Strigiformes,Strigidae (Owls),, +8491,species,colowl1,Collared Owlet,Glaucidium brodiei,Strigiformes,Strigidae (Owls),, +8492,issf,colowl2,Collared Owlet (Collared),Glaucidium brodiei brodiei/pardalotum,Strigiformes,Strigidae (Owls),,colowl1 +8495,issf,colowl3,Collared Owlet (Sunda),Glaucidium brodiei sylvaticum/borneense,Strigiformes,Strigidae (Owls),,colowl1 +8498,species,pesowl1,Pearl-spotted Owlet,Glaucidium perlatum,Strigiformes,Strigidae (Owls),, +8501,species,nopowl,Northern Pygmy-Owl,Glaucidium gnoma,Strigiformes,Strigidae (Owls),, +8502,issf,moupyo1,Northern Pygmy-Owl (Mountain),Glaucidium gnoma gnoma,Strigiformes,Strigidae (Owls),,nopowl +8503,issf,norpyo1,Northern Pygmy-Owl (Pacific),Glaucidium gnoma [californicum Group],Strigiformes,Strigidae (Owls),,nopowl +8507,issf,norpyo2,Northern Pygmy-Owl (Rocky Mts.),Glaucidium gnoma pinicola,Strigiformes,Strigidae (Owls),,nopowl +8508,issf,norpyo4,Northern Pygmy-Owl (Guatemalan),Glaucidium gnoma cobanense,Strigiformes,Strigidae (Owls),,nopowl +8509,issf,norpyo3,Northern Pygmy-Owl (Cape),Glaucidium gnoma hoskinsii,Strigiformes,Strigidae (Owls),,nopowl +8510,species,crpowl,Costa Rican Pygmy-Owl,Glaucidium costaricanum,Strigiformes,Strigidae (Owls),, +8511,species,clopyo1,Cloud-forest Pygmy-Owl,Glaucidium nubicola,Strigiformes,Strigidae (Owls),, +8512,species,anpowl1,Andean Pygmy-Owl,Glaucidium jardinii,Strigiformes,Strigidae (Owls),, +8513,species,yupowl1,Yungas Pygmy-Owl,Glaucidium bolivianum,Strigiformes,Strigidae (Owls),, +8514,species,supowl1,Subtropical Pygmy-Owl,Glaucidium parkeri,Strigiformes,Strigidae (Owls),, +8515,species,capowl1,Central American Pygmy-Owl,Glaucidium griseiceps,Strigiformes,Strigidae (Owls),, +8519,species,tapowl1,Tamaulipas Pygmy-Owl,Glaucidium sanchezi,Strigiformes,Strigidae (Owls),, +8520,species,copowl1,Colima Pygmy-Owl,Glaucidium palmarum,Strigiformes,Strigidae (Owls),, +8524,species,amapyo1,Amazonian Pygmy-Owl,Glaucidium hardyi,Strigiformes,Strigidae (Owls),, +8525,species,perpyo1,Pernambuco Pygmy-Owl,Glaucidium mooreorum,Strigiformes,Strigidae (Owls),, +8526,species,leapyo1,Least Pygmy-Owl,Glaucidium minutissimum,Strigiformes,Strigidae (Owls),, +8527,species,fepowl,Ferruginous Pygmy-Owl,Glaucidium brasilianum,Strigiformes,Strigidae (Owls),, +8528,issf,ferpyo1,Ferruginous Pygmy-Owl (Ferruginous),Glaucidium brasilianum [brasilianum Group],Strigiformes,Strigidae (Owls),,fepowl +8541,issf,ferpyo2,Ferruginous Pygmy-Owl (Tucuman),Glaucidium brasilianum tucumanum,Strigiformes,Strigidae (Owls),,fepowl +8542,species,aupowl1,Austral Pygmy-Owl,Glaucidium nana,Strigiformes,Strigidae (Owls),, +8543,slash,y01138,Ferruginous/Austral Pygmy-Owl,Glaucidium brasilianum/nana,Strigiformes,Strigidae (Owls),, +8544,species,pepowl1,Peruvian Pygmy-Owl,Glaucidium peruanum,Strigiformes,Strigidae (Owls),, +8545,species,cupowl1,Cuban Pygmy-Owl,Glaucidium siju,Strigiformes,Strigidae (Owls),, +8548,species,recowl1,Red-chested Owlet,Glaucidium tephronotum,Strigiformes,Strigidae (Owls),, +8549,issf,recowl2,Red-chested Owlet (Western),Glaucidium tephronotum tephronotum,Strigiformes,Strigidae (Owls),,recowl1 +8550,issf,recowl3,Red-chested Owlet (Pycraft's),Glaucidium tephronotum pycrafti,Strigiformes,Strigidae (Owls),,recowl1 +8551,issf,recowl4,Red-chested Owlet (Eastern),Glaucidium tephronotum medje,Strigiformes,Strigidae (Owls),,recowl1 +8552,species,sjoowl1,Sjöstedt's Owlet,Glaucidium sjostedti,Strigiformes,Strigidae (Owls),, +8553,species,asbowl1,Asian Barred Owlet,Glaucidium cuculoides,Strigiformes,Strigidae (Owls),, +8562,species,javowl1,Javan Owlet,Glaucidium castanopterum,Strigiformes,Strigidae (Owls),, +8563,species,junowl1,Jungle Owlet,Glaucidium radiatum,Strigiformes,Strigidae (Owls),, +8566,slash,y00859,Asian Barred/Jungle Owlet,Glaucidium cuculoides/radiatum,Strigiformes,Strigidae (Owls),, +8567,species,chbowl1,Chestnut-backed Owlet,Glaucidium castanotum,Strigiformes,Strigidae (Owls),, +8568,species,afbowl1,African Barred Owlet,Glaucidium capense,Strigiformes,Strigidae (Owls),, +8569,issf,afbowl2,African Barred Owlet (Spot-fronted),Glaucidium capense scheffleri,Strigiformes,Strigidae (Owls),,afbowl1 +8570,issf,afrbao1,African Barred Owlet (Bar-fronted),Glaucidium capense capense/ngamiense,Strigiformes,Strigidae (Owls),,afbowl1 +8573,species,cheowl1,Chestnut Owlet,Glaucidium castaneum,Strigiformes,Strigidae (Owls),, +8574,issf,cheowl2,Chestnut Owlet (Etchecopar's),Glaucidium castaneum etchecopari,Strigiformes,Strigidae (Owls),,cheowl1 +8575,issf,cheowl3,Chestnut Owlet (Chestnut),Glaucidium castaneum castaneum,Strigiformes,Strigidae (Owls),,cheowl1 +8576,species,albowl1,Albertine Owlet,Glaucidium albertinum,Strigiformes,Strigidae (Owls),, +8577,spuh,glauci1,Glaucidium sp.,Glaucidium sp.,Strigiformes,Strigidae (Owls),, +8578,species,lowowl1,Long-whiskered Owlet,Xenoglaux loweryi,Strigiformes,Strigidae (Owls),, +8579,species,elfowl,Elf Owl,Micrathene whitneyi,Strigiformes,Strigidae (Owls),, +8584,species,spoowl1,Spotted Owlet,Athene brama,Strigiformes,Strigidae (Owls),, +8589,species,litowl1,Little Owl,Athene noctua,Strigiformes,Strigidae (Owls),, +8590,issf,litowl3,Little Owl (Little),Athene noctua [noctua Group],Strigiformes,Strigidae (Owls),,litowl1 +8600,issf,litowl5,Little Owl (Abyssinian),Athene noctua spilogastra/somaliensis,Strigiformes,Strigidae (Owls),,litowl1 +8603,issf,litowl2,Little Owl (Lilith),Athene noctua lilith,Strigiformes,Strigidae (Owls),,litowl1 +8604,issf,litowl4,Little Owl (Hutton's),Athene noctua bactriana,Strigiformes,Strigidae (Owls),,litowl1 +8605,species,forowl1,Forest Owlet,Athene blewitti,Strigiformes,Strigidae (Owls),, +8606,species,whbowl1,White-browed Owl,Athene superciliaris,Strigiformes,Strigidae (Owls),, +8607,species,burowl,Burrowing Owl,Athene cunicularia,Strigiformes,Strigidae (Owls),, +8608,issf,burowl2,Burrowing Owl (Western),Athene cunicularia hypugaea/rostrata,Strigiformes,Strigidae (Owls),,burowl +8611,issf,burowl3,Burrowing Owl (Florida),Athene cunicularia floridana,Strigiformes,Strigidae (Owls),,burowl +8612,issf,burowl5,Burrowing Owl (guadeloupensis Group),Athene cunicularia [guadeloupensis Group],Strigiformes,Strigidae (Owls),,burowl +8619,issf,burowl1,Burrowing Owl (Andean),Athene cunicularia [tolimae Group],Strigiformes,Strigidae (Owls),,burowl +8623,issf,burowl6,Burrowing Owl (Littoral),Athene cunicularia nanodes/juninensis,Strigiformes,Strigidae (Owls),,burowl +8626,issf,burowl4,Burrowing Owl (grallaria),Athene cunicularia grallaria,Strigiformes,Strigidae (Owls),,burowl +8627,issf,burowl7,Burrowing Owl (Southern),Athene cunicularia [cunicularia Group],Strigiformes,Strigidae (Owls),,burowl +8631,species,motowl,Mottled Owl,Ciccaba virgata,Strigiformes,Strigidae (Owls),, +8632,issf,motowl1,Mottled Owl (Mottled),Ciccaba virgata [virgata Group],Strigiformes,Strigidae (Owls),,motowl +8637,issf,motowl3,Mottled Owl (Amazonian),Ciccaba virgata superciliaris/macconnelli,Strigiformes,Strigidae (Owls),,motowl +8640,issf,motowl2,Mottled Owl (Atlantic Forest),Ciccaba virgata borelliana,Strigiformes,Strigidae (Owls),,motowl +8641,species,bawowl1,Black-and-white Owl,Ciccaba nigrolineata,Strigiformes,Strigidae (Owls),, +8642,form,saiowl1,San Isidro Owl (undescribed form),Ciccaba [undescribed form],Strigiformes,Strigidae (Owls),, +8643,species,bkbowl1,Black-banded Owl,Ciccaba huhula,Strigiformes,Strigidae (Owls),, +8646,species,rubowl3,Rufous-banded Owl,Ciccaba albitarsis,Strigiformes,Strigidae (Owls),, +8647,spuh,ciccab1,Ciccaba sp.,Ciccaba sp.,Strigiformes,Strigidae (Owls),, +8648,species,spwowl1,Spotted Wood-Owl,Strix seloputo,Strigiformes,Strigidae (Owls),, +8652,species,mowowl1,Mottled Wood-Owl,Strix ocellata,Strigiformes,Strigidae (Owls),, +8656,species,brwowl1,Brown Wood-Owl,Strix leptogrammica,Strigiformes,Strigidae (Owls),, +8657,issf,brnwoo2,Brown Wood-Owl (Brown),Strix leptogrammica [indranee Group],Strigiformes,Strigidae (Owls),,brwowl1 +8668,issf,brnwoo1,Brown Wood-Owl (Bornean),Strix leptogrammica [leptogrammica Group],Strigiformes,Strigidae (Owls),,brwowl1 +8673,species,tawowl1,Tawny Owl,Strix aluco,Strigiformes,Strigidae (Owls),, +8674,issf,tawowl2,Tawny Owl (Tawny),Strix aluco [aluco Group],Strigiformes,Strigidae (Owls),,tawowl1 +8682,issf,tawowl3,Tawny Owl (Atlas),Strix aluco mauritanica,Strigiformes,Strigidae (Owls),,tawowl1 +8683,species,himowl1,Himalayan Owl,Strix nivicolum,Strigiformes,Strigidae (Owls),, +8687,species,humowl1,Desert Owl,Strix hadorami,Strigiformes,Strigidae (Owls),, +8688,species,omaowl1,Omani Owl,Strix butleri,Strigiformes,Strigidae (Owls),, +8689,species,spoowl,Spotted Owl,Strix occidentalis,Strigiformes,Strigidae (Owls),, +8690,issf,spoowl2,Spotted Owl (Northern),Strix occidentalis caurina,Strigiformes,Strigidae (Owls),,spoowl +8691,issf,spoowl3,Spotted Owl (California),Strix occidentalis occidentalis,Strigiformes,Strigidae (Owls),,spoowl +8692,issf,spoowl4,Spotted Owl (Mexican),Strix occidentalis lucida,Strigiformes,Strigidae (Owls),,spoowl +8693,species,brdowl,Barred Owl,Strix varia,Strigiformes,Strigidae (Owls),, +8694,issf,barowl12,Barred Owl (Northern),Strix varia [varia Group],Strigiformes,Strigidae (Owls),,brdowl +8698,issf,barowl13,Barred Owl (Cinereous),Strix varia sartorii,Strigiformes,Strigidae (Owls),,brdowl +8699,hybrid,x00439,Spotted x Barred Owl (hybrid),Strix occidentalis x varia,Strigiformes,Strigidae (Owls),, +8700,slash,y01139,Spotted/Barred Owl,Strix occidentalis/varia,Strigiformes,Strigidae (Owls),, +8701,species,fulowl1,Fulvous Owl,Strix fulvescens,Strigiformes,Strigidae (Owls),, +8702,species,rubowl2,Rusty-barred Owl,Strix hylophila,Strigiformes,Strigidae (Owls),, +8703,species,rulowl1,Rufous-legged Owl,Strix rufipes,Strigiformes,Strigidae (Owls),, +8706,species,chaowl1,Chaco Owl,Strix chacoensis,Strigiformes,Strigidae (Owls),, +8707,species,uraowl1,Ural Owl,Strix uralensis,Strigiformes,Strigidae (Owls),, +8716,species,pedowl1,Pere David's Owl,Strix davidi,Strigiformes,Strigidae (Owls),, +8717,species,grgowl,Great Gray Owl,Strix nebulosa,Strigiformes,Strigidae (Owls),, +8718,issf,grgowl1,Great Gray Owl (American),Strix nebulosa nebulosa,Strigiformes,Strigidae (Owls),,grgowl +8719,issf,grgowl2,Great Gray Owl (Lapland),Strix nebulosa lapponica,Strigiformes,Strigidae (Owls),,grgowl +8720,species,afwowl1,African Wood-Owl,Strix woodfordii,Strigiformes,Strigidae (Owls),, +8725,species,loeowl,Long-eared Owl,Asio otus,Strigiformes,Strigidae (Owls),, +8726,issf,loeowl1,Long-eared Owl (American),Asio otus wilsonianus/tuftsi,Strigiformes,Strigidae (Owls),,loeowl +8729,issf,loeowl2,Long-eared Owl (Eurasian),Asio otus otus/canariensis,Strigiformes,Strigidae (Owls),,loeowl +8732,species,aleowl1,Abyssinian Owl,Asio abyssinicus,Strigiformes,Strigidae (Owls),, +8735,species,mleowl1,Madagascar Owl,Asio madagascariensis,Strigiformes,Strigidae (Owls),, +8736,species,strowl1,Striped Owl,Asio clamator,Strigiformes,Strigidae (Owls),, +8741,species,styowl1,Stygian Owl,Asio stygius,Strigiformes,Strigidae (Owls),, +8748,species,sheowl,Short-eared Owl,Asio flammeus,Strigiformes,Strigidae (Owls),, +8749,issf,sheowl2,Short-eared Owl (Northern),Asio flammeus flammeus,Strigiformes,Strigidae (Owls),,sheowl +8750,issf,sheowl7,Short-eared Owl (Pohnpei),Asio flammeus ponapensis,Strigiformes,Strigidae (Owls),,sheowl +8751,issf,sheowl4,Short-eared Owl (Hawaiian),Asio flammeus sandwichensis,Strigiformes,Strigidae (Owls),,sheowl +8752,issf,sheowl3,Short-eared Owl (Antillean),Asio flammeus domingensis/portoricensis,Strigiformes,Strigidae (Owls),,sheowl +8755,issf,sheowl5,Short-eared Owl (Galapagos),Asio flammeus galapagoensis,Strigiformes,Strigidae (Owls),,sheowl +8756,issf,sheowl6,Short-eared Owl (South American),Asio flammeus [suinda Group],Strigiformes,Strigidae (Owls),,sheowl +8761,slash,y00673,Long-eared/Short-eared Owl,Asio otus/flammeus,Strigiformes,Strigidae (Owls),, +8762,species,marowl2,Marsh Owl,Asio capensis,Strigiformes,Strigidae (Owls),, +8766,spuh,asio1,Asio sp.,Asio sp.,Strigiformes,Strigidae (Owls),, +8767,species,feaowl1,Fearful Owl,Nesasio solomonensis,Strigiformes,Strigidae (Owls),, +8768,species,jamowl1,Jamaican Owl,Pseudoscops grammicus,Strigiformes,Strigidae (Owls),, +8769,species,borowl,Boreal Owl,Aegolius funereus,Strigiformes,Strigidae (Owls),, +8770,issf,borowl1,Boreal Owl (Tengmalm's),Aegolius funereus [funereus Group],Strigiformes,Strigidae (Owls),,borowl +8776,issf,borowl2,Boreal Owl (Richardson's),Aegolius funereus richardsoni,Strigiformes,Strigidae (Owls),,borowl +8777,species,nswowl,Northern Saw-whet Owl,Aegolius acadicus,Strigiformes,Strigidae (Owls),, +8778,issf,nswowl1,Northern Saw-whet Owl (acadicus),Aegolius acadicus acadicus,Strigiformes,Strigidae (Owls),,nswowl +8779,issf,nswowl2,Northern Saw-whet Owl (Haida Gwaii),Aegolius acadicus brooksi,Strigiformes,Strigidae (Owls),,nswowl +8780,species,bswowl1,Bermuda Saw-whet Owl,Aegolius gradyi,Strigiformes,Strigidae (Owls),, +8781,species,uswowl1,Unspotted Saw-whet Owl,Aegolius ridgwayi,Strigiformes,Strigidae (Owls),, +8785,species,bufowl1,Buff-fronted Owl,Aegolius harrisii,Strigiformes,Strigidae (Owls),, +8789,species,rufowl2,Rufous Owl,Ninox rufa,Strigiformes,Strigidae (Owls),, +8794,species,powowl1,Powerful Owl,Ninox strenua,Strigiformes,Strigidae (Owls),, +8795,species,barowl1,Barking Owl,Ninox connivens,Strigiformes,Strigidae (Owls),, +8800,species,sumboo1,Sumba Boobook,Ninox rudolfi,Strigiformes,Strigidae (Owls),, +8801,species,andhao1,Andaman Boobook,Ninox affinis,Strigiformes,Strigidae (Owls),, +8802,species,souboo8,Southern Boobook,Ninox boobook,Strigiformes,Strigidae (Owls),, +8803,issf,souboo6,Southern Boobook (Alor),Ninox boobook plesseni,Strigiformes,Strigidae (Owls),,souboo8 +8804,issf,souboo4,Southern Boobook (Rote),Ninox boobook rotiensis,Strigiformes,Strigidae (Owls),,souboo8 +8805,issf,souboo5,Southern Boobook (Timor),Ninox boobook fusca,Strigiformes,Strigidae (Owls),,souboo8 +8806,issf,souboo1,Southern Boobook (Boobook),Ninox boobook [boobook Group],Strigiformes,Strigidae (Owls),,souboo8 +8813,issf,souboo7,Southern Boobook (Red),Ninox boobook lurida,Strigiformes,Strigidae (Owls),,souboo8 +8814,species,morepo2,Morepork,Ninox novaeseelandiae,Strigiformes,Strigidae (Owls),, +8815,issf,souboo3,Morepork (Tasmanian),Ninox novaeseelandiae leucopsis,Strigiformes,Strigidae (Owls),,morepo2 +8816,issf,morepo1,Morepork (novaeseelandiae Group),Ninox novaeseelandiae [novaeseelandiae Group],Strigiformes,Strigidae (Owls),,morepo2 +8820,slash,souboo2,Southern Boobook/Morepork,Ninox boobook/novaeseelandiae,Strigiformes,Strigidae (Owls),, +8821,species,lishao1,Least Boobook,Ninox sumbaensis,Strigiformes,Strigidae (Owls),, +8822,species,brnhao1,Brown Boobook,Ninox scutulata,Strigiformes,Strigidae (Owls),, +8832,species,brnhao3,Hume's Boobook,Ninox obscura,Strigiformes,Strigidae (Owls),, +8833,species,norboo1,Northern Boobook,Ninox japonica,Strigiformes,Strigidae (Owls),, +8836,slash,y00785,Brown/Northern Boobook,Ninox scutulata/japonica,Strigiformes,Strigidae (Owls),, +8837,species,choboo1,Chocolate Boobook,Ninox randi,Strigiformes,Strigidae (Owls),, +8838,species,phihao1,Luzon Boobook,Ninox philippensis,Strigiformes,Strigidae (Owls),, +8842,species,minboo1,Mindanao Boobook,Ninox spilocephala,Strigiformes,Strigidae (Owls),, +8843,species,minboo2,Mindoro Boobook,Ninox mindorensis,Strigiformes,Strigidae (Owls),, +8844,species,romboo1,Romblon Boobook,Ninox spilonotus,Strigiformes,Strigidae (Owls),, +8847,species,cebboo1,Cebu Boobook,Ninox rumseyi,Strigiformes,Strigidae (Owls),, +8848,species,camboo1,Camiguin Boobook,Ninox leventisi,Strigiformes,Strigidae (Owls),, +8849,species,sulboo1,Sulu Boobook,Ninox reyi,Strigiformes,Strigidae (Owls),, +8850,species,ocbhao1,Ochre-bellied Boobook,Ninox ochracea,Strigiformes,Strigidae (Owls),, +8851,species,toghao1,Togian Boobook,Ninox burhani,Strigiformes,Strigidae (Owls),, +8852,species,cinhao1,Cinnabar Boobook,Ninox ios,Strigiformes,Strigidae (Owls),, +8853,form,whshao1,White-spotted Boobook (undescribed form),Ninox [undescribed form],Strigiformes,Strigidae (Owls),, +8854,species,molhao3,Halmahera Boobook,Ninox hypogramma,Strigiformes,Strigidae (Owls),, +8855,species,molhao2,Tanimbar Boobook,Ninox forbesi,Strigiformes,Strigidae (Owls),, +8856,species,molhao4,Hantu Boobook,Ninox squamipila,Strigiformes,Strigidae (Owls),, +8857,issf,hanboo1,Hantu Boobook (Buru),Ninox squamipila hantu,Strigiformes,Strigidae (Owls),,molhao4 +8858,issf,hanboo2,Hantu Boobook (Seram),Ninox squamipila squamipila,Strigiformes,Strigidae (Owls),,molhao4 +8859,species,chihao1,Christmas Island Boobook,Ninox natalis,Strigiformes,Strigidae (Owls),, +8860,species,junhao1,Papuan Boobook,Ninox theomacha,Strigiformes,Strigidae (Owls),, +8865,species,manhao1,Manus Boobook,Ninox meeki,Strigiformes,Strigidae (Owls),, +8866,species,spehao1,Speckled Boobook,Ninox punctulata,Strigiformes,Strigidae (Owls),, +8867,species,bishao1,Bismarck Boobook,Ninox variegata,Strigiformes,Strigidae (Owls),, +8870,species,nebhao1,New Britain Boobook,Ninox odiosa,Strigiformes,Strigidae (Owls),, +8871,species,solhao1,Solomons Boobook,Ninox jacquinoti,Strigiformes,Strigidae (Owls),, +8872,issf,solboo1,Solomons Boobook (West Solomons),Ninox jacquinoti [jacquinoti Group],Strigiformes,Strigidae (Owls),,solhao1 +8877,issf,solboo2,Solomons Boobook (Guadalcanal),Ninox jacquinoti granti,Strigiformes,Strigidae (Owls),,solhao1 +8878,issf,solboo3,Solomons Boobook (Malaita),Ninox jacquinoti malaitae,Strigiformes,Strigidae (Owls),,solhao1 +8879,issf,solboo4,Solomons Boobook (Makira),Ninox jacquinoti roseoaxillaris,Strigiformes,Strigidae (Owls),,solhao1 +8880,spuh,booboo1,boobook sp.,Ninox sp.,Strigiformes,Strigidae (Owls),, +8881,species,paphao1,Papuan Owl,Uroglaux dimorpha,Strigiformes,Strigidae (Owls),, +8882,species,lauowl1,Laughing Owl,Sceloglaux albifacies,Strigiformes,Strigidae (Owls),, +8883,spuh,owl1,owl sp.,Strigiformes sp.,Strigiformes,Strigidae (Owls),, +8884,species,spemou2,Speckled Mousebird,Colius striatus,Coliiformes,Coliidae (Mousebirds),Mousebirds, +8902,species,whhmou1,White-headed Mousebird,Colius leucocephalus,Coliiformes,Coliidae (Mousebirds),, +8905,species,rebmou1,Red-backed Mousebird,Colius castanotus,Coliiformes,Coliidae (Mousebirds),, +8906,species,whbmou1,White-backed Mousebird,Colius colius,Coliiformes,Coliidae (Mousebirds),, +8907,species,blnmou1,Blue-naped Mousebird,Urocolius macrourus,Coliiformes,Coliidae (Mousebirds),, +8914,species,refmou1,Red-faced Mousebird,Urocolius indicus,Coliiformes,Coliidae (Mousebirds),, +8920,spuh,mouseb1,mousebird sp.,Coliidae sp.,Coliiformes,Coliidae (Mousebirds),, +8921,species,cuckoo1,Cuckoo-roller,Leptosomus discolor,Leptosomiformes,Leptosomidae (Cuckoo-roller),Cuckoo-Roller, +8925,species,earque,Eared Quetzal,Euptilotis neoxenus,Trogoniformes,Trogonidae (Trogons),Trogons and Quetzals, +8926,species,pavque1,Pavonine Quetzal,Pharomachrus pavoninus,Trogoniformes,Trogonidae (Trogons),, +8927,species,gohque1,Golden-headed Quetzal,Pharomachrus auriceps,Trogoniformes,Trogonidae (Trogons),, +8930,species,resque1,Resplendent Quetzal,Pharomachrus mocinno,Trogoniformes,Trogonidae (Trogons),, +8931,issf,resque2,Resplendent Quetzal (Guatemalan),Pharomachrus mocinno mocinno,Trogoniformes,Trogonidae (Trogons),,resque1 +8932,issf,resque3,Resplendent Quetzal (Costa Rican),Pharomachrus mocinno costaricensis,Trogoniformes,Trogonidae (Trogons),,resque1 +8933,species,whtque1,White-tipped Quetzal,Pharomachrus fulgidus,Trogoniformes,Trogonidae (Trogons),, +8936,species,creque1,Crested Quetzal,Pharomachrus antisianus,Trogoniformes,Trogonidae (Trogons),, +8937,slash,y00787,Golden-headed/Crested Quetzal,Pharomachrus auriceps/antisianus,Trogoniformes,Trogonidae (Trogons),, +8938,species,cubtro1,Cuban Trogon,Priotelus temnurus,Trogoniformes,Trogonidae (Trogons),, +8941,species,histro1,Hispaniolan Trogon,Priotelus roseigaster,Trogoniformes,Trogonidae (Trogons),, +8942,species,lattro1,Lattice-tailed Trogon,Trogon clathratus,Trogoniformes,Trogonidae (Trogons),, +8943,species,slttro1,Slaty-tailed Trogon,Trogon massena,Trogoniformes,Trogonidae (Trogons),, +8944,issf,slttro2,Slaty-tailed Trogon (Massena),Trogon massena massena/hoffmanni,Trogoniformes,Trogonidae (Trogons),,slttro1 +8947,issf,slttro3,Slaty-tailed Trogon (Chapman's),Trogon massena australis,Trogoniformes,Trogonidae (Trogons),,slttro1 +8948,species,buttro1,Blue-tailed Trogon,Trogon comptus,Trogoniformes,Trogonidae (Trogons),, +8949,species,bkttro2,Ecuadorian Trogon,Trogon mesurus,Trogoniformes,Trogonidae (Trogons),, +8950,species,blttro1,Black-tailed Trogon,Trogon melanurus,Trogoniformes,Trogonidae (Trogons),, +8951,issf,bkttro3,Black-tailed Trogon (Large-tailed),Trogon melanurus macroura,Trogoniformes,Trogonidae (Trogons),,blttro1 +8952,issf,bkttro1,Black-tailed Trogon (Black-tailed),Trogon melanurus [melanurus Group],Trogoniformes,Trogonidae (Trogons),,blttro1 +8956,species,blhtro1,Black-headed Trogon,Trogon melanocephalus,Trogoniformes,Trogonidae (Trogons),, +8959,species,cittro1,Citreoline Trogon,Trogon citreolus,Trogoniformes,Trogonidae (Trogons),, +8962,species,whttro1,White-tailed Trogon,Trogon chionurus,Trogoniformes,Trogonidae (Trogons),, +8963,species,gnbtro1,Green-backed Trogon,Trogon viridis,Trogoniformes,Trogonidae (Trogons),, +8966,species,baitro1,Baird's Trogon,Trogon bairdii,Trogoniformes,Trogonidae (Trogons),, +8967,species,gartro1,Gartered Trogon,Trogon caligatus,Trogoniformes,Trogonidae (Trogons),, +8971,species,viotro2,Guianan Trogon,Trogon violaceus,Trogoniformes,Trogonidae (Trogons),, +8972,species,viotro3,Amazonian Trogon,Trogon ramonianus,Trogoniformes,Trogonidae (Trogons),, +8975,slash,viotro1,Guianan/Amazonian Trogon,Trogon violaceus/ramonianus,Trogoniformes,Trogonidae (Trogons),, +8976,species,blctro1,Blue-crowned Trogon,Trogon curucui,Trogoniformes,Trogonidae (Trogons),, +8980,species,surtro1,Surucua Trogon,Trogon surrucura,Trogoniformes,Trogonidae (Trogons),, +8981,issf,surtro2,Surucua Trogon (Orange-bellied),Trogon surrucura aurantius,Trogoniformes,Trogonidae (Trogons),,surtro1 +8982,issf,surtro3,Surucua Trogon (Red-bellied),Trogon surrucura surrucura,Trogoniformes,Trogonidae (Trogons),,surtro1 +8983,species,blttro2,Black-throated Trogon,Trogon rufus,Trogoniformes,Trogonidae (Trogons),, +8984,issf,bkttro7,Black-throated Trogon (tenellus),Trogon rufus tenellus,Trogoniformes,Trogonidae (Trogons),,blttro2 +8985,issf,bkttro5,Black-throated Trogon (cupreicauda),Trogon rufus cupreicauda,Trogoniformes,Trogonidae (Trogons),,blttro2 +8986,issf,bkttro6,Black-throated Trogon (rufus Group),Trogon rufus [rufus Group],Trogoniformes,Trogonidae (Trogons),,blttro2 +8990,issf,bkttro4,Black-throated Trogon (chrysochloros),Trogon rufus chrysochloros,Trogoniformes,Trogonidae (Trogons),,blttro2 +8991,species,eletro,Elegant Trogon,Trogon elegans,Trogoniformes,Trogonidae (Trogons),, +8992,issf,eletro1,Elegant Trogon (Coppery-tailed),Trogon elegans [ambiguus Group],Trogoniformes,Trogonidae (Trogons),,eletro +8996,issf,eletro2,Elegant Trogon (Elegant),Trogon elegans elegans/lubricus,Trogoniformes,Trogonidae (Trogons),,eletro +8999,species,moutro1,Mountain Trogon,Trogon mexicanus,Trogoniformes,Trogonidae (Trogons),, +9003,species,coltro1,Collared Trogon,Trogon collaris,Trogoniformes,Trogonidae (Trogons),, +9004,issf,coltro2,Collared Trogon (Xalapa),Trogon collaris puella,Trogoniformes,Trogonidae (Trogons),,coltro1 +9005,issf,orbtro1,Collared Trogon (Orange-bellied),Trogon collaris aurantiiventris/underwoodi,Trogoniformes,Trogonidae (Trogons),,coltro1 +9008,issf,coltro3,Collared Trogon (Collared),Trogon collaris [collaris Group],Trogoniformes,Trogonidae (Trogons),,coltro1 +9016,species,mastro1,Masked Trogon,Trogon personatus,Trogoniformes,Trogonidae (Trogons),, +9026,spuh,newtro1,new world trogon sp.,Trogon sp.,Trogoniformes,Trogonidae (Trogons),, +9027,species,nartro1,Narina Trogon,Apaloderma narina,Trogoniformes,Trogonidae (Trogons),, +9032,species,bactro1,Bare-cheeked Trogon,Apaloderma aequatoriale,Trogoniformes,Trogonidae (Trogons),, +9033,species,battro1,Bar-tailed Trogon,Apaloderma vittatum,Trogoniformes,Trogonidae (Trogons),, +9036,spuh,afrtro1,african trogon sp.,Apaloderma sp.,Trogoniformes,Trogonidae (Trogons),, +9037,species,javtro1,Javan Trogon,Harpactes reinwardtii,Trogoniformes,Trogonidae (Trogons),, +9038,species,sumtro1,Sumatran Trogon,Harpactes mackloti,Trogoniformes,Trogonidae (Trogons),, +9039,species,maltro1,Malabar Trogon,Harpactes fasciatus,Trogoniformes,Trogonidae (Trogons),, +9043,species,rentro1,Red-naped Trogon,Harpactes kasumba,Trogoniformes,Trogonidae (Trogons),, +9046,species,diatro1,Diard's Trogon,Harpactes diardii,Trogoniformes,Trogonidae (Trogons),, +9050,species,phitro1,Philippine Trogon,Harpactes ardens,Trogoniformes,Trogonidae (Trogons),, +9056,species,whitro1,Whitehead's Trogon,Harpactes whiteheadi,Trogoniformes,Trogonidae (Trogons),, +9057,species,cirtro1,Cinnamon-rumped Trogon,Harpactes orrhophaeus,Trogoniformes,Trogonidae (Trogons),, +9060,species,scrtro1,Scarlet-rumped Trogon,Harpactes duvaucelii,Trogoniformes,Trogonidae (Trogons),, +9061,species,rehtro1,Red-headed Trogon,Harpactes erythrocephalus,Trogoniformes,Trogonidae (Trogons),, +9072,species,orbtro2,Orange-breasted Trogon,Harpactes oreskios,Trogoniformes,Trogonidae (Trogons),, +9073,issf,orbtro5,Orange-breasted Trogon (Spice),Harpactes oreskios [dulitensis Group],Trogoniformes,Trogonidae (Trogons),,orbtro2 +9078,issf,orbtro4,Orange-breasted Trogon (Orange-breasted),Harpactes oreskios oreskios,Trogoniformes,Trogonidae (Trogons),,orbtro2 +9079,species,wartro1,Ward's Trogon,Harpactes wardi,Trogoniformes,Trogonidae (Trogons),, +9080,spuh,asitro1,asian trogon sp.,Harpactes sp.,Trogoniformes,Trogonidae (Trogons),, +9081,species,hoopoe,Eurasian Hoopoe,Upupa epops,Bucerotiformes,Upupidae (Hoopoes),Hoopoes, +9082,issf,eurhoo1,Eurasian Hoopoe (Eurasian),Upupa epops [epops Group],Bucerotiformes,Upupidae (Hoopoes),,hoopoe +9089,issf,eurhoo3,Eurasian Hoopoe (Central African),Upupa epops senegalensis/waibeli,Bucerotiformes,Upupidae (Hoopoes),,hoopoe +9092,issf,eurhoo2,Eurasian Hoopoe (African),Upupa epops africana,Bucerotiformes,Upupidae (Hoopoes),,hoopoe +9093,species,madhoo1,Madagascar Hoopoe,Upupa marginata,Bucerotiformes,Upupidae (Hoopoes),, +9094,species,sthhoo1,St. Helena Hoopoe,Upupa antaios,Bucerotiformes,Upupidae (Hoopoes),, +9095,species,grewoo2,Green Woodhoopoe,Phoeniculus purpureus,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),Woodhoopoes and Scimitarbills, +9102,species,viowoo1,Violet Woodhoopoe,Phoeniculus damarensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9103,issf,viowoo2,Violet Woodhoopoe (Violet),Phoeniculus damarensis damarensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),,viowoo1 +9104,issf,viowoo3,Violet Woodhoopoe (Grant's),Phoeniculus damarensis granti,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),,viowoo1 +9105,slash,y00659,Green/Violet Woodhoopoe,Phoeniculus purpureus/damarensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9106,species,blbwoo2,Black-billed Woodhoopoe,Phoeniculus somaliensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9110,species,whhwoo1,White-headed Woodhoopoe,Phoeniculus bollei,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9111,issf,whhwoo2,White-headed Woodhoopoe (bollei/jacksoni),Phoeniculus bollei bollei/jacksoni,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),,whhwoo1 +9114,issf,whhwoo3,White-headed Woodhoopoe (Oku),Phoeniculus bollei okuensis,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),,whhwoo1 +9115,species,forwoo1,Forest Woodhoopoe,Phoeniculus castaneiceps,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9116,issf,forwoo2,Forest Woodhoopoe (Western),Phoeniculus castaneiceps castaneiceps,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),,forwoo1 +9117,issf,forwoo3,Forest Woodhoopoe (Eastern),Phoeniculus castaneiceps brunneiceps,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),,forwoo1 +9118,spuh,woodho1,woodhoopoe sp.,Phoeniculus sp.,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9119,species,blsbil1,Black Scimitarbill,Rhinopomastus aterrimus,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9124,species,cosbil1,Common Scimitarbill,Rhinopomastus cyanomelas,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9127,species,absbil1,Abyssinian Scimitarbill,Rhinopomastus minor,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9130,spuh,y00961,woodhoopoe/scimitarbill sp.,Phoeniculus/Rhinopomastus sp.,Bucerotiformes,Phoeniculidae (Woodhoopoes and Scimitarbills),, +9131,species,noghor1,Abyssinian Ground-Hornbill,Bucorvus abyssinicus,Bucerotiformes,Bucorvidae (Ground-Hornbills),Hornbills, +9132,species,soghor1,Southern Ground-Hornbill,Bucorvus leadbeateri,Bucerotiformes,Bucorvidae (Ground-Hornbills),, +9133,species,rbdhor1,Red-billed Dwarf Hornbill,Lophoceros camurus,Bucerotiformes,Bucerotidae (Hornbills),, +9134,species,crohor1,Crowned Hornbill,Lophoceros alboterminatus,Bucerotiformes,Bucerotidae (Hornbills),, +9135,species,brahor1,Bradfield's Hornbill,Lophoceros bradfieldi,Bucerotiformes,Bucerotidae (Hornbills),, +9136,species,afphor1,African Pied Hornbill,Lophoceros fasciatus,Bucerotiformes,Bucerotidae (Hornbills),, +9137,issf,afphor2,African Pied Hornbill (Western),Lophoceros fasciatus semifasciatus,Bucerotiformes,Bucerotidae (Hornbills),,afphor1 +9138,issf,afphor3,African Pied Hornbill (Congo),Lophoceros fasciatus fasciatus,Bucerotiformes,Bucerotidae (Hornbills),,afphor1 +9139,species,hemhor1,Hemprich's Hornbill,Lophoceros hemprichii,Bucerotiformes,Bucerotidae (Hornbills),, +9140,species,afghor1,African Gray Hornbill,Lophoceros nasutus,Bucerotiformes,Bucerotidae (Hornbills),, +9143,species,pabhor1,Pale-billed Hornbill,Lophoceros pallidirostris,Bucerotiformes,Bucerotidae (Hornbills),, +9146,spuh,lophoc1,Lophoceros sp.,Lophoceros sp.,Bucerotiformes,Bucerotidae (Hornbills),, +9147,species,eybhor1,Eastern Yellow-billed Hornbill,Tockus flavirostris,Bucerotiformes,Bucerotidae (Hornbills),, +9148,species,sybhor1,Southern Yellow-billed Hornbill,Tockus leucomelas,Bucerotiformes,Bucerotidae (Hornbills),, +9149,species,jachor1,Jackson's Hornbill,Tockus jacksoni,Bucerotiformes,Bucerotidae (Hornbills),, +9150,species,vddhor1,Von der Decken's Hornbill,Tockus deckeni,Bucerotiformes,Bucerotidae (Hornbills),, +9151,species,monhor1,Monteiro's Hornbill,Tockus monteiri,Bucerotiformes,Bucerotidae (Hornbills),, +9152,species,srbhor1,Southern Red-billed Hornbill,Tockus rufirostris,Bucerotiformes,Bucerotidae (Hornbills),, +9153,species,drbhor1,Damara Red-billed Hornbill,Tockus damarensis,Bucerotiformes,Bucerotidae (Hornbills),, +9154,hybrid,x00667,Southern Red-billed x Damara Red-billed Hornbill (hybrid),Tockus rufirostris x damarensis,Bucerotiformes,Bucerotidae (Hornbills),, +9155,species,trbhor1,Tanzanian Red-billed Hornbill,Tockus ruahae,Bucerotiformes,Bucerotidae (Hornbills),, +9156,species,wrbhor2,Western Red-billed Hornbill,Tockus kempi,Bucerotiformes,Bucerotidae (Hornbills),, +9157,species,rebhor1,Northern Red-billed Hornbill,Tockus erythrorhynchus,Bucerotiformes,Bucerotidae (Hornbills),, +9158,spuh,tockus1,Tockus sp.,Tockus sp.,Bucerotiformes,Bucerotidae (Hornbills),, +9159,species,whchor2,White-crowned Hornbill,Berenicornis comatus,Bucerotiformes,Bucerotidae (Hornbills),, +9160,species,whchor3,White-crested Hornbill,Horizocerus albocristatus,Bucerotiformes,Bucerotidae (Hornbills),, +9161,issf,whchor1,White-crested Hornbill (White-cheeked),Horizocerus albocristatus albocristatus/macrourus,Bucerotiformes,Bucerotidae (Hornbills),,whchor3 +9164,issf,whchor4,White-crested Hornbill (Dark-cheeked),Horizocerus albocristatus cassini,Bucerotiformes,Bucerotidae (Hornbills),,whchor3 +9165,species,bldhor1,Black Dwarf Hornbill,Horizocerus hartlaubi,Bucerotiformes,Bucerotidae (Hornbills),, +9166,issf,bkdhor1,Black Dwarf Hornbill (Western),Horizocerus hartlaubi hartlaubi,Bucerotiformes,Bucerotidae (Hornbills),,bldhor1 +9167,issf,bkdhor2,Black Dwarf Hornbill (Eastern),Horizocerus hartlaubi granti,Bucerotiformes,Bucerotidae (Hornbills),,bldhor1 +9168,species,blchor1,Black-casqued Hornbill,Ceratogymna atrata,Bucerotiformes,Bucerotidae (Hornbills),, +9169,species,yechor1,Yellow-casqued Hornbill,Ceratogymna elata,Bucerotiformes,Bucerotidae (Hornbills),, +9170,slash,y00865,Black-casqued/Yellow-casqued Hornbill,Ceratogymna atrata/elata,Bucerotiformes,Bucerotidae (Hornbills),, +9171,species,sichor1,Silvery-cheeked Hornbill,Bycanistes brevis,Bucerotiformes,Bucerotidae (Hornbills),, +9172,species,bawhor2,Black-and-white-casqued Hornbill,Bycanistes subcylindricus,Bucerotiformes,Bucerotidae (Hornbills),, +9175,species,bnchor1,Brown-cheeked Hornbill,Bycanistes cylindricus,Bucerotiformes,Bucerotidae (Hornbills),, +9176,species,whthor1,White-thighed Hornbill,Bycanistes albotibialis,Bucerotiformes,Bucerotidae (Hornbills),, +9177,species,truhor1,Trumpeter Hornbill,Bycanistes bucinator,Bucerotiformes,Bucerotidae (Hornbills),, +9178,species,piphor1,Piping Hornbill,Bycanistes fistulator,Bucerotiformes,Bucerotidae (Hornbills),, +9179,issf,piphor2,Piping Hornbill (Western),Bycanistes fistulator fistulator,Bucerotiformes,Bucerotidae (Hornbills),,piphor1 +9180,issf,piphor3,Piping Hornbill (Eastern),Bycanistes fistulator sharpii/duboisi,Bucerotiformes,Bucerotidae (Hornbills),,piphor1 +9183,species,helhor1,Helmeted Hornbill,Buceros vigil,Bucerotiformes,Bucerotidae (Hornbills),, +9184,species,rufhor1,Rufous Hornbill,Buceros hydrocorax,Bucerotiformes,Bucerotidae (Hornbills),, +9185,issf,rufhor3,Rufous Hornbill (Northern),Buceros hydrocorax hydrocorax,Bucerotiformes,Bucerotidae (Hornbills),,rufhor1 +9186,issf,rufhor4,Rufous Hornbill (Southern),Buceros hydrocorax mindanensis/semigaleatus,Bucerotiformes,Bucerotidae (Hornbills),,rufhor1 +9189,species,rhihor1,Rhinoceros Hornbill,Buceros rhinoceros,Bucerotiformes,Bucerotidae (Hornbills),, +9193,species,grehor1,Great Hornbill,Buceros bicornis,Bucerotiformes,Bucerotidae (Hornbills),, +9194,species,buchor1,Bushy-crested Hornbill,Anorrhinus galeritus,Bucerotiformes,Bucerotidae (Hornbills),, +9195,species,brnhor1,Brown Hornbill,Anorrhinus austeni,Bucerotiformes,Bucerotidae (Hornbills),, +9196,species,ruchor1,Rusty-cheeked Hornbill,Anorrhinus tickelli,Bucerotiformes,Bucerotidae (Hornbills),, +9197,species,inghor2,Indian Gray Hornbill,Ocyceros birostris,Bucerotiformes,Bucerotidae (Hornbills),, +9198,species,maghor2,Malabar Gray Hornbill,Ocyceros griseus,Bucerotiformes,Bucerotidae (Hornbills),, +9199,species,ceghor1,Sri Lanka Gray Hornbill,Ocyceros gingalensis,Bucerotiformes,Bucerotidae (Hornbills),, +9200,species,blahor1,Black Hornbill,Anthracoceros malayanus,Bucerotiformes,Bucerotidae (Hornbills),, +9201,species,sulhor2,Sulu Hornbill,Anthracoceros montani,Bucerotiformes,Bucerotidae (Hornbills),, +9202,species,maphor1,Malabar Pied-Hornbill,Anthracoceros coronatus,Bucerotiformes,Bucerotidae (Hornbills),, +9203,species,orphor1,Oriental Pied-Hornbill,Anthracoceros albirostris,Bucerotiformes,Bucerotidae (Hornbills),, +9206,slash,y01097,Malabar/Oriental Pied-Hornbill,Anthracoceros coronatus/albirostris,Bucerotiformes,Bucerotidae (Hornbills),, +9207,species,palhor1,Palawan Hornbill,Anthracoceros marchei,Bucerotiformes,Bucerotidae (Hornbills),, +9208,species,runhor1,Rufous-necked Hornbill,Aceros nipalensis,Bucerotiformes,Bucerotidae (Hornbills),, +9209,species,knohor1,Knobbed Hornbill,Rhyticeros cassidix,Bucerotiformes,Bucerotidae (Hornbills),, +9210,species,sumhor1,Sumba Hornbill,Rhyticeros everetti,Bucerotiformes,Bucerotidae (Hornbills),, +9211,species,wrehor1,Wreathed Hornbill,Rhyticeros undulatus,Bucerotiformes,Bucerotidae (Hornbills),, +9212,species,plphor1,Plain-pouched Hornbill,Rhyticeros subruficollis,Bucerotiformes,Bucerotidae (Hornbills),, +9213,slash,y01032,Wreathed/Plain-pouched Hornbill,Rhyticeros undulatus/subruficollis,Bucerotiformes,Bucerotidae (Hornbills),, +9214,species,narhor1,Narcondam Hornbill,Rhyticeros narcondami,Bucerotiformes,Bucerotidae (Hornbills),, +9215,species,blyhor1,Blyth's Hornbill,Rhyticeros plicatus,Bucerotiformes,Bucerotidae (Hornbills),, +9222,species,sulhor1,Sulawesi Hornbill,Rhabdotorrhinus exarhatus,Bucerotiformes,Bucerotidae (Hornbills),, +9223,issf,sulhor3,Sulawesi Hornbill (Dwarf),Rhabdotorrhinus exarhatus exarhatus,Bucerotiformes,Bucerotidae (Hornbills),,sulhor1 +9224,issf,sulhor4,Sulawesi Hornbill (Sanford's),Rhabdotorrhinus exarhatus sanfordi,Bucerotiformes,Bucerotidae (Hornbills),,sulhor1 +9225,species,wrihor1,Wrinkled Hornbill,Rhabdotorrhinus corrugatus,Bucerotiformes,Bucerotidae (Hornbills),, +9226,species,wrbhor1,Writhe-billed Hornbill,Rhabdotorrhinus waldeni,Bucerotiformes,Bucerotidae (Hornbills),, +9227,species,wrihor2,Writhed Hornbill,Rhabdotorrhinus leucocephalus,Bucerotiformes,Bucerotidae (Hornbills),, +9228,species,tarhor1,Visayan Hornbill,Penelopides panini,Bucerotiformes,Bucerotidae (Hornbills),, +9231,species,luzhor1,Luzon Hornbill,Penelopides manillae,Bucerotiformes,Bucerotidae (Hornbills),, +9232,species,minhor2,Mindoro Hornbill,Penelopides mindorensis,Bucerotiformes,Bucerotidae (Hornbills),, +9233,species,samhor1,Samar Hornbill,Penelopides samarensis,Bucerotiformes,Bucerotidae (Hornbills),, +9234,species,minhor1,Mindanao Hornbill,Penelopides affinis,Bucerotiformes,Bucerotidae (Hornbills),, +9237,spuh,hornbi1,hornbill sp.,Bucerotidae sp.,Bucerotiformes,Bucerotidae (Hornbills),, +9238,species,cubtod1,Cuban Tody,Todus multicolor,Coraciiformes,Todidae (Todies),Todies, +9239,species,brbtod1,Broad-billed Tody,Todus subulatus,Coraciiformes,Todidae (Todies),, +9240,species,nabtod1,Narrow-billed Tody,Todus angustirostris,Coraciiformes,Todidae (Todies),, +9241,slash,y00866,Broad-billed/Narrow-billed Tody,Todus subulatus/angustirostris,Coraciiformes,Todidae (Todies),, +9242,species,jamtod1,Jamaican Tody,Todus todus,Coraciiformes,Todidae (Todies),, +9243,species,purtod1,Puerto Rican Tody,Todus mexicanus,Coraciiformes,Todidae (Todies),, +9244,species,todmot1,Tody Motmot,Hylomanes momotula,Coraciiformes,Momotidae (Motmots),Motmots, +9248,species,bltmot1,Blue-throated Motmot,Aspatha gularis,Coraciiformes,Momotidae (Motmots),, +9249,species,rucmot1,Russet-crowned Motmot,Momotus mexicanus,Coraciiformes,Momotidae (Motmots),, +9254,species,bucmot1,Blue-capped Motmot,Momotus coeruliceps,Coraciiformes,Momotidae (Motmots),, +9255,species,bucmot2,Lesson's Motmot,Momotus lessonii,Coraciiformes,Momotidae (Motmots),, +9259,hybrid,x00887,Blue-capped x Lesson's Motmot (hybrid),Momotus coeruliceps x lessonii,Coraciiformes,Momotidae (Motmots),, +9260,slash,y01033,Blue-capped/Lesson's Motmot,Momotus coeruliceps/lessonii,Coraciiformes,Momotidae (Motmots),, +9261,species,bucmot3,Whooping Motmot,Momotus subrufescens,Coraciiformes,Momotidae (Motmots),, +9262,issf,whomot1,Whooping Motmot (Whooping),Momotus subrufescens [subrufescens Group],Coraciiformes,Momotidae (Motmots),,bucmot3 +9266,issf,whomot2,Whooping Motmot (argenticinctus),Momotus subrufescens argenticinctus,Coraciiformes,Momotidae (Motmots),,bucmot3 +9267,species,trimot1,Trinidad Motmot,Momotus bahamensis,Coraciiformes,Momotidae (Motmots),, +9268,species,bucmot4,Amazonian Motmot,Momotus momota,Coraciiformes,Momotidae (Motmots),, +9277,species,higmot1,Andean Motmot,Momotus aequatorialis,Coraciiformes,Momotidae (Motmots),, +9280,species,rufmot1,Rufous Motmot,Baryphthengus martii,Coraciiformes,Momotidae (Motmots),, +9283,species,rucmot2,Rufous-capped Motmot,Baryphthengus ruficapillus,Coraciiformes,Momotidae (Motmots),, +9284,hybrid,x00769,Amazonian x Rufous-capped Motmot (hybrid),Momotus momota x Baryphthengus ruficapillus,Coraciiformes,Momotidae (Motmots),, +9285,species,kebmot1,Keel-billed Motmot,Electron carinatum,Coraciiformes,Momotidae (Motmots),, +9286,species,brbmot1,Broad-billed Motmot,Electron platyrhynchum,Coraciiformes,Momotidae (Motmots),, +9287,issf,brbmot2,Broad-billed Motmot (Broad-billed),Electron platyrhynchum [platyrhynchum Group],Coraciiformes,Momotidae (Motmots),,brbmot1 +9291,issf,brbmot3,Broad-billed Motmot (Plain-tailed),Electron platyrhynchum [pyrrholaemum Group],Coraciiformes,Momotidae (Motmots),,brbmot1 +9295,slash,y00733,Keel-billed/Broad-billed Motmot,Electron carinatum/platyrhynchum,Coraciiformes,Momotidae (Motmots),, +9296,species,tubmot1,Turquoise-browed Motmot,Eumomota superciliosa,Coraciiformes,Momotidae (Motmots),, +9304,spuh,motmot1,motmot sp.,Momotidae sp.,Coraciiformes,Momotidae (Motmots),, +9305,species,blykin1,Blyth's Kingfisher,Alcedo hercules,Coraciiformes,Alcedinidae (Kingfishers),Kingfishers, +9306,species,comkin1,Common Kingfisher,Alcedo atthis,Coraciiformes,Alcedinidae (Kingfishers),, +9307,issf,comkin2,Common Kingfisher (Common),Alcedo atthis [atthis Group],Coraciiformes,Alcedinidae (Kingfishers),,comkin1 +9313,issf,comkin3,Common Kingfisher (Cobalt-eared),Alcedo atthis hispidoides/salomonensis,Coraciiformes,Alcedinidae (Kingfishers),,comkin1 +9316,species,hackin1,Half-collared Kingfisher,Alcedo semitorquata,Coraciiformes,Alcedinidae (Kingfishers),, +9320,species,shbkin1,Shining-blue Kingfisher,Alcedo quadribrachys,Coraciiformes,Alcedinidae (Kingfishers),, +9323,species,blekin1,Blue-eared Kingfisher,Alcedo meninting,Coraciiformes,Alcedinidae (Kingfishers),, +9335,species,blbkin2,Blue-banded Kingfisher,Alcedo euryzona,Coraciiformes,Alcedinidae (Kingfishers),, +9336,issf,bubkin1,Blue-banded Kingfisher (Malay),Alcedo euryzona peninsulae,Coraciiformes,Alcedinidae (Kingfishers),,blbkin2 +9337,issf,bubkin2,Blue-banded Kingfisher (Javan),Alcedo euryzona euryzona,Coraciiformes,Alcedinidae (Kingfishers),,blbkin2 +9338,species,smbkin1,Small Blue Kingfisher,Alcedo coerulescens,Coraciiformes,Alcedinidae (Kingfishers),, +9339,species,azukin1,Azure Kingfisher,Ceyx azureus,Coraciiformes,Alcedinidae (Kingfishers),, +9348,species,biskin1,Bismarck Kingfisher,Ceyx websteri,Coraciiformes,Alcedinidae (Kingfishers),, +9349,species,inbkin2,Indigo-banded Kingfisher,Ceyx cyanopectus,Coraciiformes,Alcedinidae (Kingfishers),, +9350,issf,inbkin1,Indigo-banded Kingfisher (Northern),Ceyx cyanopectus cyanopectus,Coraciiformes,Alcedinidae (Kingfishers),,inbkin2 +9351,issf,inbkin3,Indigo-banded Kingfisher (Southern),Ceyx cyanopectus nigrirostris,Coraciiformes,Alcedinidae (Kingfishers),,inbkin2 +9352,species,norsik1,Northern Silvery-Kingfisher,Ceyx flumenicola,Coraciiformes,Alcedinidae (Kingfishers),, +9353,species,silkin1,Southern Silvery-Kingfisher,Ceyx argentatus,Coraciiformes,Alcedinidae (Kingfishers),, +9354,species,litkin1,Little Kingfisher,Ceyx pusillus,Coraciiformes,Alcedinidae (Kingfishers),, +9364,species,bkbkin1,Black-backed Dwarf-Kingfisher,Ceyx erithaca,Coraciiformes,Alcedinidae (Kingfishers),, +9367,species,rubkin1,Rufous-backed Dwarf-Kingfisher,Ceyx rufidorsa,Coraciiformes,Alcedinidae (Kingfishers),, +9372,slash,y00867,Black-backed/Rufous-backed Dwarf-Kingfisher,Ceyx erithaca/rufidorsa,Coraciiformes,Alcedinidae (Kingfishers),, +9373,species,phikin1,Philippine Dwarf-Kingfisher,Ceyx melanurus,Coraciiformes,Alcedinidae (Kingfishers),, +9374,issf,phidwk1,Philippine Dwarf-Kingfisher (Luzon),Ceyx melanurus melanurus,Coraciiformes,Alcedinidae (Kingfishers),,phikin1 +9375,issf,phidwk2,Philippine Dwarf-Kingfisher (Samar),Ceyx melanurus samarensis,Coraciiformes,Alcedinidae (Kingfishers),,phikin1 +9376,issf,phidwk3,Philippine Dwarf-Kingfisher (Mindanao),Ceyx melanurus mindanensis,Coraciiformes,Alcedinidae (Kingfishers),,phikin1 +9377,species,sulkin1,Sulawesi Dwarf-Kingfisher,Ceyx fallax,Coraciiformes,Alcedinidae (Kingfishers),, +9378,issf,suldwk1,Sulawesi Dwarf-Kingfisher (Sangihe),Ceyx fallax sangirensis,Coraciiformes,Alcedinidae (Kingfishers),,sulkin1 +9379,issf,suldwk2,Sulawesi Dwarf-Kingfisher (Sulawesi),Ceyx fallax fallax,Coraciiformes,Alcedinidae (Kingfishers),,sulkin1 +9380,species,vardwk1,Dimorphic Dwarf-Kingfisher,Ceyx margarethae,Coraciiformes,Alcedinidae (Kingfishers),, +9381,species,vardwk2,Sula Dwarf-Kingfisher,Ceyx wallacii,Coraciiformes,Alcedinidae (Kingfishers),, +9382,species,vardwk3,North Moluccan Dwarf-Kingfisher,Ceyx uropygialis,Coraciiformes,Alcedinidae (Kingfishers),, +9383,species,vardwk4,Seram Dwarf-Kingfisher,Ceyx lepidus,Coraciiformes,Alcedinidae (Kingfishers),, +9384,species,vardwk5,Buru Dwarf-Kingfisher,Ceyx cajeli,Coraciiformes,Alcedinidae (Kingfishers),, +9385,species,vardwk6,Papuan Dwarf-Kingfisher,Ceyx solitarius,Coraciiformes,Alcedinidae (Kingfishers),, +9386,species,vardwk7,Manus Dwarf-Kingfisher,Ceyx dispar,Coraciiformes,Alcedinidae (Kingfishers),, +9387,species,vardwk8,New Ireland Dwarf-Kingfisher,Ceyx mulcatus,Coraciiformes,Alcedinidae (Kingfishers),, +9388,species,vardwk9,New Britain Dwarf-Kingfisher,Ceyx sacerdotis,Coraciiformes,Alcedinidae (Kingfishers),, +9389,species,vardwk10,Bougainville Dwarf-Kingfisher,Ceyx pallidus,Coraciiformes,Alcedinidae (Kingfishers),, +9390,species,vardwk11,New Georgia Dwarf-Kingfisher,Ceyx collectoris,Coraciiformes,Alcedinidae (Kingfishers),, +9391,species,vardwk12,North Solomons Dwarf-Kingfisher,Ceyx meeki,Coraciiformes,Alcedinidae (Kingfishers),, +9392,species,vardwk13,Malaita Dwarf-Kingfisher,Ceyx malaitae,Coraciiformes,Alcedinidae (Kingfishers),, +9393,species,vardwk14,Guadalcanal Dwarf-Kingfisher,Ceyx nigromaxilla,Coraciiformes,Alcedinidae (Kingfishers),, +9394,species,vardwk15,Makira Dwarf-Kingfisher,Ceyx gentianus,Coraciiformes,Alcedinidae (Kingfishers),, +9395,species,malkin1,Malachite Kingfisher,Corythornis cristatus,Coraciiformes,Alcedinidae (Kingfishers),, +9396,issf,malkin3,Malachite Kingfisher (Mainland),Corythornis cristatus [cristatus Group],Coraciiformes,Alcedinidae (Kingfishers),,malkin1 +9400,issf,malkin5,Malachite Kingfisher (Sao Tome),Corythornis cristatus thomensis,Coraciiformes,Alcedinidae (Kingfishers),,malkin1 +9401,issf,malkin4,Malachite Kingfisher (Principe),Corythornis cristatus nais,Coraciiformes,Alcedinidae (Kingfishers),,malkin1 +9402,species,malkin2,Malagasy Kingfisher,Corythornis vintsioides,Coraciiformes,Alcedinidae (Kingfishers),, +9405,species,whbkin1,White-bellied Kingfisher,Corythornis leucogaster,Coraciiformes,Alcedinidae (Kingfishers),, +9409,species,mapkin1,Madagascar Pygmy-Kingfisher,Corythornis madagascariensis,Coraciiformes,Alcedinidae (Kingfishers),, +9412,species,afpkin1,African Pygmy-Kingfisher,Ispidina picta,Coraciiformes,Alcedinidae (Kingfishers),, +9416,species,dwakin1,African Dwarf Kingfisher,Ispidina lecontei,Coraciiformes,Alcedinidae (Kingfishers),, +9417,species,bankin1,Banded Kingfisher,Lacedo pulchella,Coraciiformes,Alcedinidae (Kingfishers),, +9418,issf,bankin2,Banded Kingfisher (Banded),Lacedo pulchella [pulchella Group],Coraciiformes,Alcedinidae (Kingfishers),,bankin1 +9422,issf,bankin3,Banded Kingfisher (Black-faced),Lacedo pulchella melanops,Coraciiformes,Alcedinidae (Kingfishers),,bankin1 +9423,species,laukoo1,Laughing Kookaburra,Dacelo novaeguineae,Coraciiformes,Alcedinidae (Kingfishers),, +9426,species,blwkoo1,Blue-winged Kookaburra,Dacelo leachii,Coraciiformes,Alcedinidae (Kingfishers),, +9431,species,spakoo1,Spangled Kookaburra,Dacelo tyro,Coraciiformes,Alcedinidae (Kingfishers),, +9434,species,rubkoo1,Rufous-bellied Kookaburra,Dacelo gaudichaud,Coraciiformes,Alcedinidae (Kingfishers),, +9435,species,shbkoo1,Shovel-billed Kookaburra,Clytoceyx rex,Coraciiformes,Alcedinidae (Kingfishers),, +9436,species,lilkin1,Lilac-cheeked Kingfisher,Cittura cyanotis,Coraciiformes,Alcedinidae (Kingfishers),, +9437,issf,lickin1,Lilac-cheeked Kingfisher (Sangihe),Cittura cyanotis sanghirensis,Coraciiformes,Alcedinidae (Kingfishers),,lilkin1 +9438,issf,lickin2,Lilac-cheeked Kingfisher (Sulawesi),Cittura cyanotis cyanotis,Coraciiformes,Alcedinidae (Kingfishers),,lilkin1 +9439,species,bnwkin1,Brown-winged Kingfisher,Pelargopsis amauroptera,Coraciiformes,Alcedinidae (Kingfishers),, +9440,species,stbkin1,Stork-billed Kingfisher,Pelargopsis capensis,Coraciiformes,Alcedinidae (Kingfishers),, +9456,species,blbkin1,Great-billed Kingfisher,Pelargopsis melanorhyncha,Coraciiformes,Alcedinidae (Kingfishers),, +9460,species,rudkin1,Ruddy Kingfisher,Halcyon coromanda,Coraciiformes,Alcedinidae (Kingfishers),, +9471,species,chbkin2,Chocolate-backed Kingfisher,Halcyon badia,Coraciiformes,Alcedinidae (Kingfishers),, +9474,species,whtkin2,White-throated Kingfisher,Halcyon smyrnensis,Coraciiformes,Alcedinidae (Kingfishers),, +9480,species,bnbkin1,Brown-breasted Kingfisher,Halcyon gularis,Coraciiformes,Alcedinidae (Kingfishers),, +9481,species,gyhkin1,Gray-headed Kingfisher,Halcyon leucocephala,Coraciiformes,Alcedinidae (Kingfishers),, +9487,species,blckin1,Black-capped Kingfisher,Halcyon pileata,Coraciiformes,Alcedinidae (Kingfishers),, +9488,species,javkin1,Javan Kingfisher,Halcyon cyanoventris,Coraciiformes,Alcedinidae (Kingfishers),, +9489,species,wookin1,Woodland Kingfisher,Halcyon senegalensis,Coraciiformes,Alcedinidae (Kingfishers),, +9493,species,mankin2,Mangrove Kingfisher,Halcyon senegaloides,Coraciiformes,Alcedinidae (Kingfishers),, +9496,species,blbkin4,Blue-breasted Kingfisher,Halcyon malimbica,Coraciiformes,Alcedinidae (Kingfishers),, +9501,species,brhkin1,Brown-hooded Kingfisher,Halcyon albiventris,Coraciiformes,Alcedinidae (Kingfishers),, +9506,species,strkin1,Striped Kingfisher,Halcyon chelicuti,Coraciiformes,Alcedinidae (Kingfishers),, +9509,species,blbkin3,Blue-black Kingfisher,Todiramphus nigrocyaneus,Coraciiformes,Alcedinidae (Kingfishers),, +9513,species,rulkin1,Rufous-lored Kingfisher,Todiramphus winchelli,Coraciiformes,Alcedinidae (Kingfishers),, +9519,species,bawkin1,Blue-and-white Kingfisher,Todiramphus diops,Coraciiformes,Alcedinidae (Kingfishers),, +9520,species,lazkin1,Lazuli Kingfisher,Todiramphus lazuli,Coraciiformes,Alcedinidae (Kingfishers),, +9521,species,rebkin2,Red-backed Kingfisher,Todiramphus pyrrhopygius,Coraciiformes,Alcedinidae (Kingfishers),, +9522,species,forkin1,Forest Kingfisher,Todiramphus macleayii,Coraciiformes,Alcedinidae (Kingfishers),, +9526,species,nebkin1,New Britain Kingfisher,Todiramphus albonotatus,Coraciiformes,Alcedinidae (Kingfishers),, +9527,species,ultkin1,Ultramarine Kingfisher,Todiramphus leucopygius,Coraciiformes,Alcedinidae (Kingfishers),, +9528,species,chbkin1,Vanuatu Kingfisher,Todiramphus farquhari,Coraciiformes,Alcedinidae (Kingfishers),, +9529,species,markin2,Marquesas Kingfisher,Todiramphus godeffroyi,Coraciiformes,Alcedinidae (Kingfishers),, +9530,species,mankin1,Mewing Kingfisher,Todiramphus ruficollaris,Coraciiformes,Alcedinidae (Kingfishers),, +9531,species,tahkin1,Society Kingfisher,Todiramphus veneratus,Coraciiformes,Alcedinidae (Kingfishers),, +9532,issf,sockin1,Society Kingfisher (Moorea),Todiramphus veneratus youngi,Coraciiformes,Alcedinidae (Kingfishers),,tahkin1 +9533,issf,sockin2,Society Kingfisher (Tahiti),Todiramphus veneratus veneratus,Coraciiformes,Alcedinidae (Kingfishers),,tahkin1 +9534,species,niakin1,Niau Kingfisher,Todiramphus gertrudae,Coraciiformes,Alcedinidae (Kingfishers),, +9535,species,mankin3,Mangareva Kingfisher,Todiramphus gambieri,Coraciiformes,Alcedinidae (Kingfishers),, +9536,species,chakin2,Chattering Kingfisher,Todiramphus tutus,Coraciiformes,Alcedinidae (Kingfishers),, +9540,species,packin1,Pacific Kingfisher,Todiramphus sacer,Coraciiformes,Alcedinidae (Kingfishers),, +9541,issf,colkin5,Pacific Kingfisher (Vanuatu),Todiramphus sacer [juliae Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 +9547,issf,colkin7,Pacific Kingfisher (South Pacific),Todiramphus sacer [sacer Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 +9551,issf,colkin8,Pacific Kingfisher (Solomon Is.),Todiramphus sacer [solomonis Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 +9562,issf,sackin6,Pacific Kingfisher (Fiji),Todiramphus sacer [vitiensis Group],Coraciiformes,Alcedinidae (Kingfishers),,packin1 +9566,issf,packin2,Pacific Kingfisher (Lau),Todiramphus sacer marinus,Coraciiformes,Alcedinidae (Kingfishers),,packin1 +9567,species,mickin4,Palau Kingfisher,Todiramphus pelewensis,Coraciiformes,Alcedinidae (Kingfishers),, +9568,species,mickin1,Guam Kingfisher,Todiramphus cinnamominus,Coraciiformes,Alcedinidae (Kingfishers),, +9569,issf,mickin3,Guam Kingfisher (Miyako-Jima I.),Todiramphus cinnamominus miyakoensis,Coraciiformes,Alcedinidae (Kingfishers),,mickin1 +9570,issf,mickin2,Guam Kingfisher (Guam),Todiramphus cinnamominus cinnamominus,Coraciiformes,Alcedinidae (Kingfishers),,mickin1 +9571,species,mickin5,Pohnpei Kingfisher,Todiramphus reichenbachii,Coraciiformes,Alcedinidae (Kingfishers),, +9572,species,flbkin1,Flat-billed Kingfisher,Todiramphus recurvirostris,Coraciiformes,Alcedinidae (Kingfishers),, +9573,species,colkin17,Colonist Kingfisher,Todiramphus colonus,Coraciiformes,Alcedinidae (Kingfishers),, +9574,species,colkin9,Torresian Kingfisher,Todiramphus sordidus,Coraciiformes,Alcedinidae (Kingfishers),, +9578,species,sackin1,Sacred Kingfisher,Todiramphus sanctus,Coraciiformes,Alcedinidae (Kingfishers),, +9579,issf,sackin2,Sacred Kingfisher (Australasian),Todiramphus sanctus sanctus,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 +9580,issf,sackin4,Sacred Kingfisher (New Caledonian),Todiramphus sanctus canacorum,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 +9581,issf,sackin5,Sacred Kingfisher (Loyalty Is.),Todiramphus sanctus macmillani,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 +9582,issf,sackin3,Sacred Kingfisher (New Zealand),Todiramphus sanctus vagans,Coraciiformes,Alcedinidae (Kingfishers),,sackin1 +9583,species,colkin1,Collared Kingfisher,Todiramphus chloris,Coraciiformes,Alcedinidae (Kingfishers),, +9584,issf,colkin10,Collared Kingfisher (Red Sea),Todiramphus chloris abyssinicus,Coraciiformes,Alcedinidae (Kingfishers),,colkin1 +9585,issf,colkin12,Collared Kingfisher (Arabian),Todiramphus chloris kalbaensis,Coraciiformes,Alcedinidae (Kingfishers),,colkin1 +9586,issf,colkin4,Collared Kingfisher (Oriental),Todiramphus chloris [humii Group],Coraciiformes,Alcedinidae (Kingfishers),,colkin1 +9591,issf,colkin14,Collared Kingfisher (Nicobar Is.),Todiramphus chloris occipitalis,Coraciiformes,Alcedinidae (Kingfishers),,colkin1 +9592,issf,colkin3,Collared Kingfisher (Collared),Todiramphus chloris [chloris Group],Coraciiformes,Alcedinidae (Kingfishers),,colkin1 +9600,species,beakin2,Beach Kingfisher,Todiramphus saurophagus,Coraciiformes,Alcedinidae (Kingfishers),, +9601,issf,beakin3,Beach Kingfisher (Beach),Todiramphus saurophagus saurophagus,Coraciiformes,Alcedinidae (Kingfishers),,beakin2 +9602,issf,beakin1,Beach Kingfisher (Admiralty Is.),Todiramphus saurophagus admiralitatis,Coraciiformes,Alcedinidae (Kingfishers),,beakin2 +9603,species,colkin2,Mariana Kingfisher,Todiramphus albicilla,Coraciiformes,Alcedinidae (Kingfishers),, +9607,species,melkin1,Melanesian Kingfisher,Todiramphus tristrami,Coraciiformes,Alcedinidae (Kingfishers),, +9608,issf,colkin13,Melanesian Kingfisher (St. Matthias Is.),Todiramphus tristrami matthiae,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 +9609,issf,colkin15,Melanesian Kingfisher (Dampier Straits),Todiramphus tristrami stresemanni,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 +9610,issf,colkin6,Melanesian Kingfisher (New Ireland),Todiramphus tristrami [nusae Group],Coraciiformes,Alcedinidae (Kingfishers),,melkin1 +9614,issf,colkin16,Melanesian Kingfisher (New Britain),Todiramphus tristrami tristrami,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 +9615,issf,colkin11,Melanesian Kingfisher (Bougainville-Guadalcanal),Todiramphus tristrami alberti,Coraciiformes,Alcedinidae (Kingfishers),,melkin1 +9616,species,somkin1,Sombre Kingfisher,Todiramphus funebris,Coraciiformes,Alcedinidae (Kingfishers),, +9617,species,talkin1,Talaud Kingfisher,Todiramphus enigma,Coraciiformes,Alcedinidae (Kingfishers),, +9618,species,cibkin1,Cinnamon-banded Kingfisher,Todiramphus australasia,Coraciiformes,Alcedinidae (Kingfishers),, +9622,spuh,todira1,Todiramphus sp.,Todiramphus sp.,Coraciiformes,Alcedinidae (Kingfishers),, +9623,species,whrkin1,White-rumped Kingfisher,Caridonax fulgidus,Coraciiformes,Alcedinidae (Kingfishers),, +9624,species,hobkin1,Hook-billed Kingfisher,Melidora macrorrhina,Coraciiformes,Alcedinidae (Kingfishers),, +9628,species,moukin2,Moustached Kingfisher,Actenoides bougainvillei,Coraciiformes,Alcedinidae (Kingfishers),, +9629,issf,moukin3,Moustached Kingfisher (Bougainville),Actenoides bougainvillei bougainvillei,Coraciiformes,Alcedinidae (Kingfishers),,moukin2 +9630,issf,moukin4,Moustached Kingfisher (Guadalcanal),Actenoides bougainvillei excelsus,Coraciiformes,Alcedinidae (Kingfishers),,moukin2 +9631,species,ruckin1,Rufous-collared Kingfisher,Actenoides concretus,Coraciiformes,Alcedinidae (Kingfishers),, +9635,species,spokin1,Spotted Kingfisher,Actenoides lindsayi,Coraciiformes,Alcedinidae (Kingfishers),, +9638,species,blckin2,Blue-capped Kingfisher,Actenoides hombroni,Coraciiformes,Alcedinidae (Kingfishers),, +9639,species,grbkin1,Green-backed Kingfisher,Actenoides monachus,Coraciiformes,Alcedinidae (Kingfishers),, +9640,issf,gnbkin1,Green-backed Kingfisher (Blue-headed),Actenoides monachus monachus,Coraciiformes,Alcedinidae (Kingfishers),,grbkin1 +9641,issf,gnbkin2,Green-backed Kingfisher (Black-headed),Actenoides monachus capucinus,Coraciiformes,Alcedinidae (Kingfishers),,grbkin1 +9642,species,scakin1,Scaly-breasted Kingfisher,Actenoides princeps,Coraciiformes,Alcedinidae (Kingfishers),, +9643,issf,scbkin1,Scaly-breasted Kingfisher (Scaly-breasted),Actenoides princeps princeps/erythrorhamphus,Coraciiformes,Alcedinidae (Kingfishers),,scakin1 +9646,issf,scbkin2,Scaly-breasted Kingfisher (Plain-backed),Actenoides princeps regalis,Coraciiformes,Alcedinidae (Kingfishers),,scakin1 +9647,species,yebkin1,Yellow-billed Kingfisher,Syma torotoro,Coraciiformes,Alcedinidae (Kingfishers),, +9651,species,moukin1,Mountain Kingfisher,Syma megarhyncha,Coraciiformes,Alcedinidae (Kingfishers),, +9655,slash,y00868,Yellow-billed/Mountain Kingfisher,Syma torotoro/megarhyncha,Coraciiformes,Alcedinidae (Kingfishers),, +9656,species,lipkin1,Little Paradise-Kingfisher,Tanysiptera hydrocharis,Coraciiformes,Alcedinidae (Kingfishers),, +9657,species,copkin1,Common Paradise-Kingfisher,Tanysiptera galatea,Coraciiformes,Alcedinidae (Kingfishers),, +9673,species,kopkin1,Kofiau Paradise-Kingfisher,Tanysiptera ellioti,Coraciiformes,Alcedinidae (Kingfishers),, +9674,species,bipkin1,Biak Paradise-Kingfisher,Tanysiptera riedelii,Coraciiformes,Alcedinidae (Kingfishers),, +9675,species,nupkin1,Numfor Paradise-Kingfisher,Tanysiptera carolinae,Coraciiformes,Alcedinidae (Kingfishers),, +9676,species,rbpkin1,Red-breasted Paradise-Kingfisher,Tanysiptera nympha,Coraciiformes,Alcedinidae (Kingfishers),, +9677,species,bhpkin1,Brown-headed Paradise-Kingfisher,Tanysiptera danae,Coraciiformes,Alcedinidae (Kingfishers),, +9678,species,bubpak1,Buff-breasted Paradise-Kingfisher,Tanysiptera sylvia,Coraciiformes,Alcedinidae (Kingfishers),, +9681,species,bubpak2,Black-capped Paradise-Kingfisher,Tanysiptera nigriceps,Coraciiformes,Alcedinidae (Kingfishers),, +9684,species,giakin3,Giant Kingfisher,Megaceryle maxima,Coraciiformes,Alcedinidae (Kingfishers),, +9687,species,crekin1,Crested Kingfisher,Megaceryle lugubris,Coraciiformes,Alcedinidae (Kingfishers),, +9692,species,rinkin1,Ringed Kingfisher,Megaceryle torquata,Coraciiformes,Alcedinidae (Kingfishers),, +9693,issf,rinkin3,Ringed Kingfisher (Northern),Megaceryle torquata torquata/stictipennis,Coraciiformes,Alcedinidae (Kingfishers),,rinkin1 +9696,issf,rinkin4,Ringed Kingfisher (Patagonian),Megaceryle torquata stellata,Coraciiformes,Alcedinidae (Kingfishers),,rinkin1 +9697,species,belkin1,Belted Kingfisher,Megaceryle alcyon,Coraciiformes,Alcedinidae (Kingfishers),, +9698,species,piekin1,Pied Kingfisher,Ceryle rudis,Coraciiformes,Alcedinidae (Kingfishers),, +9703,species,amakin1,Amazon Kingfisher,Chloroceryle amazona,Coraciiformes,Alcedinidae (Kingfishers),, +9704,species,ampkin1,American Pygmy Kingfisher,Chloroceryle aenea,Coraciiformes,Alcedinidae (Kingfishers),, +9707,species,grnkin,Green Kingfisher,Chloroceryle americana,Coraciiformes,Alcedinidae (Kingfishers),, +9713,species,garkin1,Green-and-rufous Kingfisher,Chloroceryle inda,Coraciiformes,Alcedinidae (Kingfishers),, +9714,spuh,chloro3,Chloroceryle sp.,Chloroceryle sp.,Coraciiformes,Alcedinidae (Kingfishers),, +9715,spuh,kingfi1,kingfisher sp.,Alcedinidae sp.,Coraciiformes,Alcedinidae (Kingfishers),, +9716,species,rbbeat1,Red-bearded Bee-eater,Nyctyornis amictus,Coraciiformes,Meropidae (Bee-eaters),"Bee-eaters, Rollers, and Allies", +9717,species,bbbeat1,Blue-bearded Bee-eater,Nyctyornis athertoni,Coraciiformes,Meropidae (Bee-eaters),, +9720,species,pbbeat1,Purple-bearded Bee-eater,Meropogon forsteni,Coraciiformes,Meropidae (Bee-eaters),, +9721,species,blbeat1,Black Bee-eater,Merops gularis,Coraciiformes,Meropidae (Bee-eaters),, +9724,species,bumbee1,Blue-moustached Bee-eater,Merops mentalis,Coraciiformes,Meropidae (Bee-eaters),, +9725,species,bhbeat2,Blue-headed Bee-eater,Merops muelleri,Coraciiformes,Meropidae (Bee-eaters),, +9726,species,rtbeat1,Red-throated Bee-eater,Merops bulocki,Coraciiformes,Meropidae (Bee-eaters),, +9729,species,wfbeat1,White-fronted Bee-eater,Merops bullockoides,Coraciiformes,Meropidae (Bee-eaters),, +9732,species,libeat1,Little Bee-eater,Merops pusillus,Coraciiformes,Meropidae (Bee-eaters),, +9738,species,bbbeat2,Blue-breasted Bee-eater,Merops variegatus,Coraciiformes,Meropidae (Bee-eaters),, +9739,issf,bubbee1,Blue-breasted Bee-eater (Blue-breasted),Merops variegatus [variegatus Group],Coraciiformes,Meropidae (Bee-eaters),,bbbeat2 +9743,issf,bubbee2,Blue-breasted Bee-eater (Ethiopian),Merops variegatus lafresnayii,Coraciiformes,Meropidae (Bee-eaters),,bbbeat2 +9744,species,ccbeat1,Cinnamon-chested Bee-eater,Merops oreobates,Coraciiformes,Meropidae (Bee-eaters),, +9745,species,stbeat1,Swallow-tailed Bee-eater,Merops hirundineus,Coraciiformes,Meropidae (Bee-eaters),, +9750,species,bhbeat1,Black-headed Bee-eater,Merops breweri,Coraciiformes,Meropidae (Bee-eaters),, +9751,species,sobeat1,Somali Bee-eater,Merops revoilii,Coraciiformes,Meropidae (Bee-eaters),, +9752,species,wtbeat1,White-throated Bee-eater,Merops albicollis,Coraciiformes,Meropidae (Bee-eaters),, +9753,species,grbeat1,Green Bee-eater,Merops orientalis,Coraciiformes,Meropidae (Bee-eaters),, +9754,issf,grnbee1,Green Bee-eater (Yellow-throated),Merops orientalis [viridissimus Group],Coraciiformes,Meropidae (Bee-eaters),,grbeat1 +9758,issf,grnbee2,Green Bee-eater (Arabian),Merops orientalis cyanophrys/najdanus,Coraciiformes,Meropidae (Bee-eaters),,grbeat1 +9761,issf,grnbee3,Green Bee-eater (Russet-crowned),Merops orientalis [orientalis Group],Coraciiformes,Meropidae (Bee-eaters),,grbeat1 +9765,species,bobeat1,Böhm's Bee-eater,Merops boehmi,Coraciiformes,Meropidae (Bee-eaters),, +9766,species,btbeat2,Blue-throated Bee-eater,Merops viridis,Coraciiformes,Meropidae (Bee-eaters),, +9767,species,rucbee1,Rufous-crowned Bee-eater,Merops americanus,Coraciiformes,Meropidae (Bee-eaters),, +9768,species,bcbeat1,Blue-cheeked Bee-eater,Merops persicus,Coraciiformes,Meropidae (Bee-eaters),, +9771,species,mabeat1,Madagascar Bee-eater,Merops superciliosus,Coraciiformes,Meropidae (Bee-eaters),, +9774,species,btbeat1,Blue-tailed Bee-eater,Merops philippinus,Coraciiformes,Meropidae (Bee-eaters),, +9775,slash,y00734,Blue-cheeked/Blue-tailed Bee-eater,Merops persicus/philippinus,Coraciiformes,Meropidae (Bee-eaters),, +9776,species,rabeat1,Rainbow Bee-eater,Merops ornatus,Coraciiformes,Meropidae (Bee-eaters),, +9777,species,eubeat1,European Bee-eater,Merops apiaster,Coraciiformes,Meropidae (Bee-eaters),, +9778,species,chbeat1,Chestnut-headed Bee-eater,Merops leschenaulti,Coraciiformes,Meropidae (Bee-eaters),, +9782,species,robeat1,Rosy Bee-eater,Merops malimbicus,Coraciiformes,Meropidae (Bee-eaters),, +9783,species,ncbeat1,Northern Carmine Bee-eater,Merops nubicus,Coraciiformes,Meropidae (Bee-eaters),, +9784,species,scbeat1,Southern Carmine Bee-eater,Merops nubicoides,Coraciiformes,Meropidae (Bee-eaters),, +9785,spuh,bee-ea1,bee-eater sp.,Merops sp.,Coraciiformes,Meropidae (Bee-eaters),, +9786,species,eurrol1,European Roller,Coracias garrulus,Coraciiformes,Coraciidae (Rollers),, +9789,species,abyrol2,Abyssinian Roller,Coracias abyssinicus,Coraciiformes,Coraciidae (Rollers),, +9790,species,librol2,Lilac-breasted Roller,Coracias caudatus,Coraciiformes,Coraciidae (Rollers),, +9791,issf,librol1,Lilac-breasted Roller (Blue-breasted),Coracias caudatus lorti,Coraciiformes,Coraciidae (Rollers),,librol2 +9792,issf,librol3,Lilac-breasted Roller (Lilac-breasted),Coracias caudatus caudatus,Coraciiformes,Coraciidae (Rollers),,librol2 +9793,species,ratrol2,Racket-tailed Roller,Coracias spatulatus,Coraciiformes,Coraciidae (Rollers),, +9794,species,rucrol2,Rufous-crowned Roller,Coracias naevius,Coraciiformes,Coraciidae (Rollers),, +9797,species,indrol2,Indian Roller,Coracias benghalensis,Coraciiformes,Coraciidae (Rollers),, +9800,slash,y01079,European/Indian Roller,Coracias garrulus/benghalensis,Coraciiformes,Coraciidae (Rollers),, +9801,species,indrol3,Indochinese Roller,Coracias affinis,Coraciiformes,Coraciidae (Rollers),, +9802,hybrid,indrol4,Indian x Indochinese Roller (hybrid),Coracias benghalensis x affinis,Coraciiformes,Coraciidae (Rollers),, +9803,slash,indrol1,Indian/Indochinese Roller,Coracias benghalensis/affinis,Coraciiformes,Coraciidae (Rollers),, +9804,species,puwrol1,Purple-winged Roller,Coracias temminckii,Coraciiformes,Coraciidae (Rollers),, +9805,species,blbrol1,Blue-bellied Roller,Coracias cyanogaster,Coraciiformes,Coraciidae (Rollers),, +9806,spuh,roller1,roller sp.,Coracias sp.,Coraciiformes,Coraciidae (Rollers),, +9807,species,brbrol1,Broad-billed Roller,Eurystomus glaucurus,Coraciiformes,Coraciidae (Rollers),, +9808,issf,brbrol2,Broad-billed Roller (African),Eurystomus glaucurus [afer Group],Coraciiformes,Coraciidae (Rollers),,brbrol1 +9812,issf,brbrol3,Broad-billed Roller (Madagascar),Eurystomus glaucurus glaucurus,Coraciiformes,Coraciidae (Rollers),,brbrol1 +9813,species,bltrol1,Blue-throated Roller,Eurystomus gularis,Coraciiformes,Coraciidae (Rollers),, +9816,species,dollar1,Dollarbird,Eurystomus orientalis,Coraciiformes,Coraciidae (Rollers),, +9828,species,purrol1,Azure Roller,Eurystomus azureus,Coraciiformes,Coraciidae (Rollers),, +9829,species,slgrol1,Short-legged Ground-Roller,Brachypteracias leptosomus,Coraciiformes,Brachypteraciidae (Ground-Rollers),, +9830,species,scagrr1,Scaly Ground-Roller,Brachypteracias squamiger,Coraciiformes,Brachypteraciidae (Ground-Rollers),, +9831,species,plgrol1,Pitta-like Ground-Roller,Atelornis pittoides,Coraciiformes,Brachypteraciidae (Ground-Rollers),, +9832,species,rhgrol1,Rufous-headed Ground-Roller,Atelornis crossleyi,Coraciiformes,Brachypteraciidae (Ground-Rollers),, +9833,species,ltgrol1,Long-tailed Ground-Roller,Uratelornis chimaera,Coraciiformes,Brachypteraciidae (Ground-Rollers),, +9834,species,whnpuf2,White-necked Puffbird,Notharchus hyperrhynchus,Galbuliformes,Bucconidae (Puffbirds),Puffbirds and Jacamars, +9838,species,guipuf1,Guianan Puffbird,Notharchus macrorhynchos,Galbuliformes,Bucconidae (Puffbirds),, +9839,species,bubpuf1,Buff-bellied Puffbird,Notharchus swainsoni,Galbuliformes,Bucconidae (Puffbirds),, +9840,species,blbpuf1,Black-breasted Puffbird,Notharchus pectoralis,Galbuliformes,Bucconidae (Puffbirds),, +9841,species,brbpuf1,Brown-banded Puffbird,Notharchus ordii,Galbuliformes,Bucconidae (Puffbirds),, +9842,species,piepuf1,Pied Puffbird,Notharchus tectus,Galbuliformes,Bucconidae (Puffbirds),, +9843,issf,piepuf2,Pied Puffbird (Lesser),Notharchus tectus subtectus,Galbuliformes,Bucconidae (Puffbirds),,piepuf1 +9844,issf,piepuf3,Pied Puffbird (Greater),Notharchus tectus tectus/picatus,Galbuliformes,Bucconidae (Puffbirds),,piepuf1 +9847,species,chcpuf1,Chestnut-capped Puffbird,Bucco macrodactylus,Galbuliformes,Bucconidae (Puffbirds),, +9848,species,spopuf1,Spotted Puffbird,Bucco tamatia,Galbuliformes,Bucconidae (Puffbirds),, +9852,species,socpuf1,Sooty-capped Puffbird,Bucco noanamae,Galbuliformes,Bucconidae (Puffbirds),, +9853,species,colpuf1,Collared Puffbird,Bucco capensis,Galbuliformes,Bucconidae (Puffbirds),, +9854,species,barpuf1,Barred Puffbird,Nystalus radiatus,Galbuliformes,Bucconidae (Puffbirds),, +9855,species,wespuf1,Western Striolated-Puffbird,Nystalus obamai,Galbuliformes,Bucconidae (Puffbirds),, +9856,species,strpuf1,Eastern Striolated-Puffbird,Nystalus striolatus,Galbuliformes,Bucconidae (Puffbirds),, +9857,issf,strpuf2,Eastern Striolated-Puffbird (Natterer's),Nystalus striolatus striolatus,Galbuliformes,Bucconidae (Puffbirds),,strpuf1 +9858,issf,strpuf3,Eastern Striolated-Puffbird (torridus),Nystalus striolatus torridus,Galbuliformes,Bucconidae (Puffbirds),,strpuf1 +9859,species,whepuf1,White-eared Puffbird,Nystalus chacuru,Galbuliformes,Bucconidae (Puffbirds),, +9862,species,spbpuf1,Spot-backed Puffbird,Nystalus maculatus,Galbuliformes,Bucconidae (Puffbirds),, +9863,issf,spbpuf2,Spot-backed Puffbird (Spot-backed),Nystalus maculatus maculatus,Galbuliformes,Bucconidae (Puffbirds),,spbpuf1 +9864,issf,spbpuf3,Spot-backed Puffbird (Chaco),Nystalus maculatus striatipectus,Galbuliformes,Bucconidae (Puffbirds),,spbpuf1 +9865,species,rutpuf1,Russet-throated Puffbird,Hypnelus ruficollis,Galbuliformes,Bucconidae (Puffbirds),, +9866,issf,rutpuf2,Russet-throated Puffbird (Russet-throated),Hypnelus ruficollis [ruficollis Group],Galbuliformes,Bucconidae (Puffbirds),,rutpuf1 +9870,issf,rutpuf3,Russet-throated Puffbird (Two-banded),Hypnelus ruficollis bicinctus/stoicus,Galbuliformes,Bucconidae (Puffbirds),,rutpuf1 +9873,species,whcpuf1,White-chested Puffbird,Malacoptila fusca,Galbuliformes,Bucconidae (Puffbirds),, +9874,species,sempuf1,Semicollared Puffbird,Malacoptila semicincta,Galbuliformes,Bucconidae (Puffbirds),, +9875,species,crcpuf1,Crescent-chested Puffbird,Malacoptila striata,Galbuliformes,Bucconidae (Puffbirds),, +9876,issf,crcpuf2,Crescent-chested Puffbird (Lesser),Malacoptila striata minor,Galbuliformes,Bucconidae (Puffbirds),,crcpuf1 +9877,issf,crcpuf3,Crescent-chested Puffbird (Greater),Malacoptila striata striata,Galbuliformes,Bucconidae (Puffbirds),,crcpuf1 +9878,species,runpuf1,Rufous-necked Puffbird,Malacoptila rufa,Galbuliformes,Bucconidae (Puffbirds),, +9881,species,whwpuf1,White-whiskered Puffbird,Malacoptila panamensis,Galbuliformes,Bucconidae (Puffbirds),, +9886,species,blspuf1,Black-streaked Puffbird,Malacoptila fulvogularis,Galbuliformes,Bucconidae (Puffbirds),, +9887,species,moupuf1,Moustached Puffbird,Malacoptila mystacalis,Galbuliformes,Bucconidae (Puffbirds),, +9888,species,lanmon1,Lanceolated Monklet,Micromonacha lanceolata,Galbuliformes,Bucconidae (Puffbirds),, +9889,species,rubnun1,Rusty-breasted Nunlet,Nonnula rubecula,Galbuliformes,Bucconidae (Puffbirds),, +9897,species,fucnun1,Fulvous-chinned Nunlet,Nonnula sclateri,Galbuliformes,Bucconidae (Puffbirds),, +9898,species,bronun1,Brown Nunlet,Nonnula brunnea,Galbuliformes,Bucconidae (Puffbirds),, +9899,species,gycnun1,Gray-cheeked Nunlet,Nonnula frontalis,Galbuliformes,Bucconidae (Puffbirds),, +9903,species,rucnun1,Rufous-capped Nunlet,Nonnula ruficapilla,Galbuliformes,Bucconidae (Puffbirds),, +9908,species,chhnun1,Chestnut-headed Nunlet,Nonnula amaurocephala,Galbuliformes,Bucconidae (Puffbirds),, +9909,spuh,nunlet1,nunlet sp.,Nonnula sp.,Galbuliformes,Bucconidae (Puffbirds),, +9910,species,whfnun2,White-faced Nunbird,Hapaloptila castanea,Galbuliformes,Bucconidae (Puffbirds),, +9911,species,blanun1,Black Nunbird,Monasa atra,Galbuliformes,Bucconidae (Puffbirds),, +9912,species,blfnun1,Black-fronted Nunbird,Monasa nigrifrons,Galbuliformes,Bucconidae (Puffbirds),, +9915,species,whfnun1,White-fronted Nunbird,Monasa morphoeus,Galbuliformes,Bucconidae (Puffbirds),, +9916,issf,whfnun3,White-fronted Nunbird (Costa Rican),Monasa morphoeus grandior/fidelis,Galbuliformes,Bucconidae (Puffbirds),,whfnun1 +9919,issf,whfnun4,White-fronted Nunbird (Pale-winged),Monasa morphoeus pallescens/sclateri,Galbuliformes,Bucconidae (Puffbirds),,whfnun1 +9922,issf,whfnun5,White-fronted Nunbird (White-fronted),Monasa morphoeus [morphoeus Group],Galbuliformes,Bucconidae (Puffbirds),,whfnun1 +9926,species,yebnun1,Yellow-billed Nunbird,Monasa flavirostris,Galbuliformes,Bucconidae (Puffbirds),, +9927,spuh,monasa1,Monasa sp.,Monasa sp.,Galbuliformes,Bucconidae (Puffbirds),, +9928,species,swwpuf1,Swallow-winged Puffbird,Chelidoptera tenebrosa,Galbuliformes,Bucconidae (Puffbirds),, +9932,spuh,buccon1,Bucconidae sp.,Bucconidae sp.,Galbuliformes,Bucconidae (Puffbirds),, +9933,species,whejac1,White-eared Jacamar,Galbalcyrhynchus leucotis,Galbuliformes,Galbulidae (Jacamars),, +9934,species,purjac2,Purus Jacamar,Galbalcyrhynchus purusianus,Galbuliformes,Galbulidae (Jacamars),, +9935,species,whtjac1,White-throated Jacamar,Brachygalba albogularis,Galbuliformes,Galbulidae (Jacamars),, +9936,species,brojac2,Brown Jacamar,Brachygalba lugubris,Galbuliformes,Galbulidae (Jacamars),, +9944,species,pahjac1,Pale-headed Jacamar,Brachygalba goeringi,Galbuliformes,Galbulidae (Jacamars),, +9945,species,dubjac1,Dusky-backed Jacamar,Brachygalba salmoni,Galbuliformes,Galbulidae (Jacamars),, +9946,species,thtjac1,Three-toed Jacamar,Jacamaralcyon tridactyla,Galbuliformes,Galbulidae (Jacamars),, +9947,species,yebjac1,Yellow-billed Jacamar,Galbula albirostris,Galbuliformes,Galbulidae (Jacamars),, +9948,issf,yebjac2,Yellow-billed Jacamar (Yellow-billed),Galbula albirostris albirostris,Galbuliformes,Galbulidae (Jacamars),,yebjac1 +9949,issf,yebjac3,Yellow-billed Jacamar (Cerise-crowned),Galbula albirostris chalcocephala,Galbuliformes,Galbulidae (Jacamars),,yebjac1 +9950,species,bucjac1,Blue-cheeked Jacamar,Galbula cyanicollis,Galbuliformes,Galbulidae (Jacamars),, +9951,species,rutjac1,Rufous-tailed Jacamar,Galbula ruficauda,Galbuliformes,Galbulidae (Jacamars),, +9952,issf,rutjac2,Rufous-tailed Jacamar (Black-chinned),Galbula ruficauda melanogenia,Galbuliformes,Galbulidae (Jacamars),,rutjac1 +9953,issf,rutjac3,Rufous-tailed Jacamar (Rufous-tailed),Galbula ruficauda [ruficauda Group],Galbuliformes,Galbulidae (Jacamars),,rutjac1 +9957,issf,rutjac4,Rufous-tailed Jacamar (Spot-tailed),Galbula ruficauda rufoviridis/heterogyna,Galbuliformes,Galbulidae (Jacamars),,rutjac1 +9960,species,grtjac1,Green-tailed Jacamar,Galbula galbula,Galbuliformes,Galbulidae (Jacamars),, +9961,species,whcjac1,White-chinned Jacamar,Galbula tombacea,Galbuliformes,Galbulidae (Jacamars),, +9964,species,blfjac1,Bluish-fronted Jacamar,Galbula cyanescens,Galbuliformes,Galbulidae (Jacamars),, +9965,species,cocjac2,Coppery-chested Jacamar,Galbula pastazae,Galbuliformes,Galbulidae (Jacamars),, +9966,species,purjac1,Purplish Jacamar,Galbula chalcothorax,Galbuliformes,Galbulidae (Jacamars),, +9967,species,brojac1,Bronzy Jacamar,Galbula leucogastra,Galbuliformes,Galbulidae (Jacamars),, +9968,species,parjac1,Paradise Jacamar,Galbula dea,Galbuliformes,Galbulidae (Jacamars),, +9973,spuh,galbul1,Galbula sp.,Galbula sp.,Galbuliformes,Galbulidae (Jacamars),, +9974,species,grejac2,Great Jacamar,Jacamerops aureus,Galbuliformes,Galbulidae (Jacamars),, +9979,spuh,jacama1,jacamar sp.,Galbulidae sp.,Galbuliformes,Galbulidae (Jacamars),, +9980,species,yebbar1,Yellow-billed Barbet,Trachyphonus purpuratus,Piciformes,Lybiidae (African Barbets),Barbets and Toucans, +9981,issf,yebbar3,Yellow-billed Barbet (Western),Trachyphonus purpuratus goffinii,Piciformes,Lybiidae (African Barbets),,yebbar1 +9982,issf,yebbar4,Yellow-billed Barbet (Togo),Trachyphonus purpuratus togoensis,Piciformes,Lybiidae (African Barbets),,yebbar1 +9983,issf,yebbar5,Yellow-billed Barbet (Eastern),Trachyphonus purpuratus purpuratus/elgonensis,Piciformes,Lybiidae (African Barbets),,yebbar1 +9986,species,crebar1,Crested Barbet,Trachyphonus vaillantii,Piciformes,Lybiidae (African Barbets),, +9989,species,raybar1,Red-and-yellow Barbet,Trachyphonus erythrocephalus,Piciformes,Lybiidae (African Barbets),, +9993,species,yebbar2,Yellow-breasted Barbet,Trachyphonus margaritatus,Piciformes,Lybiidae (African Barbets),, +9996,species,darbar1,D'Arnaud's Barbet,Trachyphonus darnaudii,Piciformes,Lybiidae (African Barbets),, +9997,issf,darbar2,D'Arnaud's Barbet (D'Arnaud's),Trachyphonus darnaudii darnaudii/boehmi,Piciformes,Lybiidae (African Barbets),,darbar1 +10000,issf,darbar3,D'Arnaud's Barbet (Usambiro),Trachyphonus darnaudii usambiro,Piciformes,Lybiidae (African Barbets),,darbar1 +10001,issf,darbar4,D'Arnaud's Barbet (Black-capped),Trachyphonus darnaudii emini,Piciformes,Lybiidae (African Barbets),,darbar1 +10002,species,gytbar1,Gray-throated Barbet,Gymnobucco bonapartei,Piciformes,Lybiidae (African Barbets),, +10003,issf,gytbar2,Gray-throated Barbet (Gray-throated),Gymnobucco bonapartei bonapartei,Piciformes,Lybiidae (African Barbets),,gytbar1 +10004,issf,gytbar3,Gray-throated Barbet (Gray-headed),Gymnobucco bonapartei cinereiceps,Piciformes,Lybiidae (African Barbets),,gytbar1 +10005,species,slabar1,Sladen's Barbet,Gymnobucco sladeni,Piciformes,Lybiidae (African Barbets),, +10006,species,brnbar1,Bristle-nosed Barbet,Gymnobucco peli,Piciformes,Lybiidae (African Barbets),, +10007,species,nafbar1,Naked-faced Barbet,Gymnobucco calvus,Piciformes,Lybiidae (African Barbets),, +10008,issf,nafbar2,Naked-faced Barbet (Naked-faced),Gymnobucco calvus calvus/congicus,Piciformes,Lybiidae (African Barbets),,nafbar1 +10011,issf,nafbar3,Naked-faced Barbet (Pale-throated),Gymnobucco calvus vernayi,Piciformes,Lybiidae (African Barbets),,nafbar1 +10012,species,whebar1,White-eared Barbet,Stactolaema leucotis,Piciformes,Lybiidae (African Barbets),, +10013,issf,whebar2,White-eared Barbet (White-lined),Stactolaema leucotis leucogrammica,Piciformes,Lybiidae (African Barbets),,whebar1 +10014,issf,whebar3,White-eared Barbet (White-eared),Stactolaema leucotis leucotis/kilimensis,Piciformes,Lybiidae (African Barbets),,whebar1 +10017,species,whybar1,Whyte's Barbet,Stactolaema whytii,Piciformes,Lybiidae (African Barbets),, +10024,species,ancbar1,Anchieta's Barbet,Stactolaema anchietae,Piciformes,Lybiidae (African Barbets),, +10028,species,grebar2,Green Barbet,Stactolaema olivacea,Piciformes,Lybiidae (African Barbets),, +10029,issf,grnbar2,Green Barbet (Green),Stactolaema olivacea olivacea,Piciformes,Lybiidae (African Barbets),,grebar2 +10030,issf,grnbar1,Green Barbet (Howell's),Stactolaema olivacea howelli,Piciformes,Lybiidae (African Barbets),,grebar2 +10031,issf,grnbar4,Green Barbet (Woodward's),Stactolaema olivacea woodwardi,Piciformes,Lybiidae (African Barbets),,grebar2 +10032,issf,grnbar3,Green Barbet (Malawi),Stactolaema olivacea belcheri/rungweensis,Piciformes,Lybiidae (African Barbets),,grebar2 +10035,species,spetin1,Speckled Tinkerbird,Pogoniulus scolopaceus,Piciformes,Lybiidae (African Barbets),, +10039,species,gretin2,Green Tinkerbird,Pogoniulus simplex,Piciformes,Lybiidae (African Barbets),, +10040,species,moutin1,Moustached Tinkerbird,Pogoniulus leucomystax,Piciformes,Lybiidae (African Barbets),, +10041,species,westin1,Western Tinkerbird,Pogoniulus coryphaea,Piciformes,Lybiidae (African Barbets),, +10042,issf,westin2,Western Tinkerbird (Western),Pogoniulus coryphaea coryphaea,Piciformes,Lybiidae (African Barbets),,westin1 +10043,issf,westin3,Western Tinkerbird (Eastern),Pogoniulus coryphaea hildamariae,Piciformes,Lybiidae (African Barbets),,westin1 +10044,issf,westin4,Western Tinkerbird (Angola),Pogoniulus coryphaea angolensis,Piciformes,Lybiidae (African Barbets),,westin1 +10045,species,rertin1,Red-rumped Tinkerbird,Pogoniulus atroflavus,Piciformes,Lybiidae (African Barbets),, +10046,species,yettin1,Yellow-throated Tinkerbird,Pogoniulus subsulphureus,Piciformes,Lybiidae (African Barbets),, +10050,species,yertin1,Yellow-rumped Tinkerbird,Pogoniulus bilineatus,Piciformes,Lybiidae (African Barbets),, +10051,issf,yertin2,Yellow-rumped Tinkerbird (Yellow-rumped),Pogoniulus bilineatus [bilineatus Group],Piciformes,Lybiidae (African Barbets),,yertin1 +10058,issf,whctin1,Yellow-rumped Tinkerbird (White-chested),Pogoniulus bilineatus makawai,Piciformes,Lybiidae (African Barbets),,yertin1 +10059,species,reftin1,Red-fronted Tinkerbird,Pogoniulus pusillus,Piciformes,Lybiidae (African Barbets),, +10063,species,yeftin1,Yellow-fronted Tinkerbird,Pogoniulus chrysoconus,Piciformes,Lybiidae (African Barbets),, +10067,spuh,tinker1,tinkerbird sp.,Pogoniulus sp.,Piciformes,Lybiidae (African Barbets),, +10068,species,yesbar1,Yellow-spotted Barbet,Buccanodon duchaillui,Piciformes,Lybiidae (African Barbets),, +10069,species,habbar1,Hairy-breasted Barbet,Tricholaema hirsuta,Piciformes,Lybiidae (African Barbets),, +10070,issf,habbar2,Hairy-breasted Barbet (Hairy-breasted),Tricholaema hirsuta hirsuta,Piciformes,Lybiidae (African Barbets),,habbar1 +10071,issf,habbar3,Hairy-breasted Barbet (Streaky-throated),Tricholaema hirsuta [flavipunctata Group],Piciformes,Lybiidae (African Barbets),,habbar1 +10075,species,refbar2,Red-fronted Barbet,Tricholaema diademata,Piciformes,Lybiidae (African Barbets),, +10078,species,miobar1,Miombo Barbet,Tricholaema frontata,Piciformes,Lybiidae (African Barbets),, +10079,species,piebar1,Pied Barbet,Tricholaema leucomelas,Piciformes,Lybiidae (African Barbets),, +10083,species,spfbar1,Spot-flanked Barbet,Tricholaema lacrymosa,Piciformes,Lybiidae (African Barbets),, +10086,species,bltbar1,Black-throated Barbet,Tricholaema melanocephala,Piciformes,Lybiidae (African Barbets),, +10091,species,banbar1,Banded Barbet,Lybius undatus,Piciformes,Lybiidae (African Barbets),, +10096,species,viebar1,Vieillot's Barbet,Lybius vieilloti,Piciformes,Lybiidae (African Barbets),, +10100,species,whhbar1,White-headed Barbet,Lybius leucocephalus,Piciformes,Lybiidae (African Barbets),, +10101,issf,whhbar2,White-headed Barbet (White-headed),Lybius leucocephalus [leucocephalus Group],Piciformes,Lybiidae (African Barbets),,whhbar1 +10106,issf,whhbar3,White-headed Barbet (Brown-and-white),Lybius leucocephalus senex,Piciformes,Lybiidae (African Barbets),,whhbar1 +10107,issf,whhbar4,White-headed Barbet (White-bellied),Lybius leucocephalus leucogaster,Piciformes,Lybiidae (African Barbets),,whhbar1 +10108,species,chabar1,Chaplin's Barbet,Lybius chaplini,Piciformes,Lybiidae (African Barbets),, +10109,species,refbar1,Red-faced Barbet,Lybius rubrifacies,Piciformes,Lybiidae (African Barbets),, +10110,species,blbbar3,Black-billed Barbet,Lybius guifsobalito,Piciformes,Lybiidae (African Barbets),, +10111,species,blcbar1,Black-collared Barbet,Lybius torquatus,Piciformes,Lybiidae (African Barbets),, +10119,species,brbbar1,Brown-breasted Barbet,Lybius melanopterus,Piciformes,Lybiidae (African Barbets),, +10120,species,blbbar1,Black-backed Barbet,Lybius minor,Piciformes,Lybiidae (African Barbets),, +10121,issf,bkbbar1,Black-backed Barbet (Brown-backed),Lybius minor minor,Piciformes,Lybiidae (African Barbets),,blbbar1 +10122,issf,bkbbar2,Black-backed Barbet (Black-backed),Lybius minor macclounii,Piciformes,Lybiidae (African Barbets),,blbbar1 +10123,species,dotbar1,Double-toothed Barbet,Lybius bidentatus,Piciformes,Lybiidae (African Barbets),, +10126,species,beabar1,Bearded Barbet,Lybius dubius,Piciformes,Lybiidae (African Barbets),, +10127,species,blbbar4,Black-breasted Barbet,Lybius rolleti,Piciformes,Lybiidae (African Barbets),, +10128,spuh,afrbar1,african barbet sp.,Lybiidae sp.,Piciformes,Lybiidae (African Barbets),, +10129,species,soobar2,Sooty Barbet,Caloramphus hayii,Piciformes,Megalaimidae (Asian Barbets),, +10132,species,brnbar2,Brown Barbet,Caloramphus fuliginosus,Piciformes,Megalaimidae (Asian Barbets),, +10135,species,crfbar1,Malabar Barbet,Psilopogon malabaricus,Piciformes,Megalaimidae (Asian Barbets),, +10136,species,crfbar3,Crimson-fronted Barbet,Psilopogon rubricapillus,Piciformes,Megalaimidae (Asian Barbets),, +10137,species,copbar1,Coppersmith Barbet,Psilopogon haemacephalus,Piciformes,Megalaimidae (Asian Barbets),, +10147,slash,y00869,Malabar/Coppersmith Barbet,Psilopogon malabaricus/haemacephalus,Piciformes,Megalaimidae (Asian Barbets),, +10148,species,blebar1,Blue-eared Barbet,Psilopogon duvaucelii,Piciformes,Megalaimidae (Asian Barbets),, +10149,issf,buebar1,Blue-eared Barbet (Blue-eared),Psilopogon duvaucelii cyanotis/orientalis,Piciformes,Megalaimidae (Asian Barbets),,blebar1 +10152,issf,buebar2,Blue-eared Barbet (Black-eared),Psilopogon duvaucelii [duvaucelii Group],Piciformes,Megalaimidae (Asian Barbets),,blebar1 +10156,species,litbar1,Little Barbet,Psilopogon australis,Piciformes,Megalaimidae (Asian Barbets),, +10157,species,borbar1,Bornean Barbet,Psilopogon eximius,Piciformes,Megalaimidae (Asian Barbets),, +10160,species,fitbar1,Fire-tufted Barbet,Psilopogon pyrolophus,Piciformes,Megalaimidae (Asian Barbets),, +10161,species,grebar1,Great Barbet,Psilopogon virens,Piciformes,Megalaimidae (Asian Barbets),, +10166,species,revbar1,Red-vented Barbet,Psilopogon lagrandieri,Piciformes,Megalaimidae (Asian Barbets),, +10169,species,recbar1,Red-crowned Barbet,Psilopogon rafflesii,Piciformes,Megalaimidae (Asian Barbets),, +10170,species,retbar1,Red-throated Barbet,Psilopogon mystacophanos,Piciformes,Megalaimidae (Asian Barbets),, +10173,species,blbbar2,Black-banded Barbet,Psilopogon javensis,Piciformes,Megalaimidae (Asian Barbets),, +10174,species,gonbar1,Golden-naped Barbet,Psilopogon pulcherrimus,Piciformes,Megalaimidae (Asian Barbets),, +10175,species,yecbar1,Yellow-crowned Barbet,Psilopogon henricii,Piciformes,Megalaimidae (Asian Barbets),, +10178,species,flfbar1,Flame-fronted Barbet,Psilopogon armillaris,Piciformes,Megalaimidae (Asian Barbets),, +10181,species,grebar3,Green-eared Barbet,Psilopogon faiostrictus,Piciformes,Megalaimidae (Asian Barbets),, +10184,species,linbar1,Lineated Barbet,Psilopogon lineatus,Piciformes,Megalaimidae (Asian Barbets),, +10187,species,brhbar1,Brown-headed Barbet,Psilopogon zeylanicus,Piciformes,Megalaimidae (Asian Barbets),, +10191,slash,y01095,Lineated/Brown-headed Barbet,Psilopogon lineatus/zeylanicus,Piciformes,Megalaimidae (Asian Barbets),, +10192,species,whcbar1,White-cheeked Barbet,Psilopogon viridis,Piciformes,Megalaimidae (Asian Barbets),, +10193,slash,y00870,Brown-headed/White-cheeked Barbet,Psilopogon zeylanicus/viridis,Piciformes,Megalaimidae (Asian Barbets),, +10194,species,yefbar1,Yellow-fronted Barbet,Psilopogon flavifrons,Piciformes,Megalaimidae (Asian Barbets),, +10195,species,gotbar2,Golden-throated Barbet,Psilopogon franklinii,Piciformes,Megalaimidae (Asian Barbets),, +10196,issf,gotbar4,Golden-throated Barbet (Himalayan),Psilopogon franklinii franklinii,Piciformes,Megalaimidae (Asian Barbets),,gotbar2 +10197,issf,gotbar5,Golden-throated Barbet (Malaysian),Psilopogon franklinii ramsayi,Piciformes,Megalaimidae (Asian Barbets),,gotbar2 +10198,species,gotbar3,Necklaced Barbet,Psilopogon auricularis,Piciformes,Megalaimidae (Asian Barbets),, +10199,species,moubar1,Mountain Barbet,Psilopogon monticola,Piciformes,Megalaimidae (Asian Barbets),, +10200,species,brtbar1,Brown-throated Barbet,Psilopogon corvinus,Piciformes,Megalaimidae (Asian Barbets),, +10201,species,gowbar2,Gold-whiskered Barbet,Psilopogon chrysopogon,Piciformes,Megalaimidae (Asian Barbets),, +10202,issf,gowbar1,Gold-whiskered Barbet (Gold-whiskered),Psilopogon chrysopogon chrysopogon/laetus,Piciformes,Megalaimidae (Asian Barbets),,gowbar2 +10205,issf,gofbar1,Gold-whiskered Barbet (Gold-faced),Psilopogon chrysopogon chrysopsis,Piciformes,Megalaimidae (Asian Barbets),,gowbar2 +10206,species,moubar2,Moustached Barbet,Psilopogon incognitus,Piciformes,Megalaimidae (Asian Barbets),, +10210,species,taibar2,Taiwan Barbet,Psilopogon nuchalis,Piciformes,Megalaimidae (Asian Barbets),, +10211,species,chibar1,Chinese Barbet,Psilopogon faber,Piciformes,Megalaimidae (Asian Barbets),, +10214,species,bltbar2,Blue-throated Barbet,Psilopogon asiaticus,Piciformes,Megalaimidae (Asian Barbets),, +10215,issf,butbar1,Blue-throated Barbet (Red-crowned),Psilopogon asiaticus asiaticus,Piciformes,Megalaimidae (Asian Barbets),,bltbar2 +10216,issf,butbar2,Blue-throated Barbet (Blue-crowned),Psilopogon asiaticus davisoni,Piciformes,Megalaimidae (Asian Barbets),,bltbar2 +10217,species,indbar1,Indochinese Barbet,Psilopogon annamensis,Piciformes,Megalaimidae (Asian Barbets),, +10218,species,blbbar5,Black-browed Barbet,Psilopogon oorti,Piciformes,Megalaimidae (Asian Barbets),, +10219,species,tutbar1,Turquoise-throated Barbet,Psilopogon chersonesus,Piciformes,Megalaimidae (Asian Barbets),, +10220,spuh,megala1,Psilopogon sp.,Psilopogon sp.,Piciformes,Megalaimidae (Asian Barbets),, +10221,spuh,asibar1,asian barbet sp.,Megalaimidae sp.,Piciformes,Megalaimidae (Asian Barbets),, +10222,species,sccbar1,Scarlet-crowned Barbet,Capito aurovirens,Piciformes,Capitonidae (New World Barbets),, +10223,species,blgbar1,Black-girdled Barbet,Capito dayi,Piciformes,Capitonidae (New World Barbets),, +10224,species,spcbar1,Spot-crowned Barbet,Capito maculicoronatus,Piciformes,Capitonidae (New World Barbets),, +10227,species,orfbar1,Orange-fronted Barbet,Capito squamatus,Piciformes,Capitonidae (New World Barbets),, +10228,species,whmbar1,White-mantled Barbet,Capito hypoleucus,Piciformes,Capitonidae (New World Barbets),, +10232,species,scbbar2,Scarlet-banded Barbet,Capito wallacei,Piciformes,Capitonidae (New World Barbets),, +10233,issf,scbbar1,Scarlet-banded Barbet (Scarlet-banded),Capito wallacei wallacei,Piciformes,Capitonidae (New World Barbets),,scbbar2 +10234,issf,sirbar1,Scarlet-banded Barbet (Sira),Capito wallacei fitzpatricki,Piciformes,Capitonidae (New World Barbets),,scbbar2 +10235,species,ficbar1,Five-colored Barbet,Capito quinticolor,Piciformes,Capitonidae (New World Barbets),, +10236,species,brcbar1,Brown-chested Barbet,Capito brunneipectus,Piciformes,Capitonidae (New World Barbets),, +10237,species,blsbar1,Black-spotted Barbet,Capito niger,Piciformes,Capitonidae (New World Barbets),, +10238,species,gilbar1,Gilded Barbet,Capito auratus,Piciformes,Capitonidae (New World Barbets),, +10247,spuh,capito1,Capito sp.,Capito sp.,Piciformes,Capitonidae (New World Barbets),, +10248,species,letbar1,Lemon-throated Barbet,Eubucco richardsoni,Piciformes,Capitonidae (New World Barbets),, +10249,issf,letbar2,Lemon-throated Barbet (Lemon-throated),Eubucco richardsoni richardsoni/nigriceps,Piciformes,Capitonidae (New World Barbets),,letbar1 +10252,issf,letbar3,Lemon-throated Barbet (Flame-throated),Eubucco richardsoni aurantiicollis/purusianus,Piciformes,Capitonidae (New World Barbets),,letbar1 +10255,species,schbar1,Scarlet-hooded Barbet,Eubucco tucinkae,Piciformes,Capitonidae (New World Barbets),, +10256,species,rehbar1,Red-headed Barbet,Eubucco bourcierii,Piciformes,Capitonidae (New World Barbets),, +10263,species,verbar1,Versicolored Barbet,Eubucco versicolor,Piciformes,Capitonidae (New World Barbets),, +10264,issf,verbar2,Versicolored Barbet (Blue-cowled),Eubucco versicolor steerii,Piciformes,Capitonidae (New World Barbets),,verbar1 +10265,issf,verbar3,Versicolored Barbet (Blue-chinned),Eubucco versicolor glaucogularis,Piciformes,Capitonidae (New World Barbets),,verbar1 +10266,issf,verbar4,Versicolored Barbet (Blue-moustached),Eubucco versicolor versicolor,Piciformes,Capitonidae (New World Barbets),,verbar1 +10267,spuh,newbar1,new world barbet sp.,Capitonidae sp.,Piciformes,Capitonidae (New World Barbets),, +10268,species,prbbar1,Prong-billed Barbet,Semnornis frantzii,Piciformes,Semnornithidae (Toucan-Barbets),, +10269,species,toubar1,Toucan Barbet,Semnornis ramphastinus,Piciformes,Semnornithidae (Toucan-Barbets),, +10272,species,noremt1,Northern Emerald-Toucanet,Aulacorhynchus prasinus,Piciformes,Ramphastidae (Toucans),, +10273,issf,emetou3,Northern Emerald-Toucanet (Wagler's),Aulacorhynchus prasinus wagleri,Piciformes,Ramphastidae (Toucans),,noremt1 +10274,issf,emetou2,Northern Emerald-Toucanet (Emerald),Aulacorhynchus prasinus [prasinus Group],Piciformes,Ramphastidae (Toucans),,noremt1 +10279,issf,emetou4,Northern Emerald-Toucanet (Blue-throated),Aulacorhynchus prasinus caeruleogularis,Piciformes,Ramphastidae (Toucans),,noremt1 +10280,issf,emetou5,Northern Emerald-Toucanet (Violet-throated),Aulacorhynchus prasinus cognatus,Piciformes,Ramphastidae (Toucans),,noremt1 +10281,species,souemt1,Southern Emerald-Toucanet,Aulacorhynchus albivitta,Piciformes,Ramphastidae (Toucans),, +10282,issf,emetou6,Southern Emerald-Toucanet (Santa Marta),Aulacorhynchus albivitta lautus,Piciformes,Ramphastidae (Toucans),,souemt1 +10283,issf,emetou9,Southern Emerald-Toucanet (Gray-throated),Aulacorhynchus albivitta griseigularis,Piciformes,Ramphastidae (Toucans),,souemt1 +10284,issf,emetou7,Southern Emerald-Toucanet (Andean),Aulacorhynchus albivitta albivitta/phaeolaemus,Piciformes,Ramphastidae (Toucans),,souemt1 +10287,issf,souemt2,Southern Emerald-Toucanet (Black-billed),Aulacorhynchus albivitta cyanolaemus,Piciformes,Ramphastidae (Toucans),,souemt1 +10288,issf,emetou8,Southern Emerald-Toucanet (Black-throated),Aulacorhynchus albivitta atrogularis/dimidiatus,Piciformes,Ramphastidae (Toucans),,souemt1 +10291,species,grbtou1,Groove-billed Toucanet,Aulacorhynchus sulcatus,Piciformes,Ramphastidae (Toucans),, +10292,issf,grbtou2,Groove-billed Toucanet (Yellow-billed),Aulacorhynchus sulcatus calorhynchus,Piciformes,Ramphastidae (Toucans),,grbtou1 +10293,issf,grbtou3,Groove-billed Toucanet (Groove-billed),Aulacorhynchus sulcatus sulcatus/erythrognathus,Piciformes,Ramphastidae (Toucans),,grbtou1 +10296,species,chttou3,Chestnut-tipped Toucanet,Aulacorhynchus derbianus,Piciformes,Ramphastidae (Toucans),, +10297,species,chttou2,Tepui Toucanet,Aulacorhynchus whitelianus,Piciformes,Ramphastidae (Toucans),, +10301,species,crrtou1,Crimson-rumped Toucanet,Aulacorhynchus haematopygus,Piciformes,Ramphastidae (Toucans),, +10304,species,yebtou1,Yellow-browed Toucanet,Aulacorhynchus huallagae,Piciformes,Ramphastidae (Toucans),, +10305,species,blbtou1,Blue-banded Toucanet,Aulacorhynchus coeruleicinctis,Piciformes,Ramphastidae (Toucans),, +10306,spuh,aulaco1,Aulacorhynchus sp.,Aulacorhynchus sp.,Piciformes,Ramphastidae (Toucans),, +10307,species,gybmot1,Gray-breasted Mountain-Toucan,Andigena hypoglauca,Piciformes,Ramphastidae (Toucans),, +10310,species,pbmtou1,Plate-billed Mountain-Toucan,Andigena laminirostris,Piciformes,Ramphastidae (Toucans),, +10311,species,homtou1,Hooded Mountain-Toucan,Andigena cucullata,Piciformes,Ramphastidae (Toucans),, +10312,species,bbmtou1,Black-billed Mountain-Toucan,Andigena nigrirostris,Piciformes,Ramphastidae (Toucans),, +10316,species,saftou2,Saffron Toucanet,Pteroglossus bailloni,Piciformes,Ramphastidae (Toucans),, +10317,species,greara1,Green Aracari,Pteroglossus viridis,Piciformes,Ramphastidae (Toucans),, +10318,species,letara1,Lettered Aracari,Pteroglossus inscriptus,Piciformes,Ramphastidae (Toucans),, +10319,issf,letara2,Lettered Aracari (Humboldt's),Pteroglossus inscriptus humboldti,Piciformes,Ramphastidae (Toucans),,letara1 +10320,issf,letara3,Lettered Aracari (Lettered),Pteroglossus inscriptus inscriptus,Piciformes,Ramphastidae (Toucans),,letara1 +10321,species,colara1,Collared Aracari,Pteroglossus torquatus,Piciformes,Ramphastidae (Toucans),, +10322,issf,colara2,Collared Aracari (Collared),Pteroglossus torquatus [torquatus Group],Piciformes,Ramphastidae (Toucans),,colara1 +10326,issf,colara4,Collared Aracari (Stripe-billed),Pteroglossus torquatus sanguineus,Piciformes,Ramphastidae (Toucans),,colara1 +10327,issf,colara5,Collared Aracari (Pale-mandibled),Pteroglossus torquatus erythropygius,Piciformes,Ramphastidae (Toucans),,colara1 +10328,species,fibara1,Fiery-billed Aracari,Pteroglossus frantzii,Piciformes,Ramphastidae (Toucans),, +10329,species,blnara1,Black-necked Aracari,Pteroglossus aracari,Piciformes,Ramphastidae (Toucans),, +10333,species,cheara1,Chestnut-eared Aracari,Pteroglossus castanotis,Piciformes,Ramphastidae (Toucans),, +10336,species,mabara1,Many-banded Aracari,Pteroglossus pluricinctus,Piciformes,Ramphastidae (Toucans),, +10337,species,ivbara1,Ivory-billed Aracari,Pteroglossus azara,Piciformes,Ramphastidae (Toucans),, +10338,issf,ivbara4,Ivory-billed Aracari (Yellow-billed),Pteroglossus azara flavirostris,Piciformes,Ramphastidae (Toucans),,ivbara1 +10339,issf,ivbara5,Ivory-billed Aracari (Ivory-billed),Pteroglossus azara azara,Piciformes,Ramphastidae (Toucans),,ivbara1 +10340,issf,ivbara3,Ivory-billed Aracari (Brown-billed),Pteroglossus azara mariae,Piciformes,Ramphastidae (Toucans),,ivbara1 +10341,species,cucara1,Curl-crested Aracari,Pteroglossus beauharnaesii,Piciformes,Ramphastidae (Toucans),, +10342,species,renara1,Red-necked Aracari,Pteroglossus bitorquatus,Piciformes,Ramphastidae (Toucans),, +10343,issf,renara2,Red-necked Aracari (Western),Pteroglossus bitorquatus sturmii,Piciformes,Ramphastidae (Toucans),,renara1 +10344,issf,renara3,Red-necked Aracari (Eastern),Pteroglossus bitorquatus bitorquatus/reichenowi,Piciformes,Ramphastidae (Toucans),,renara1 +10347,spuh,aracar1,aracari sp.,Pteroglossus sp.,Piciformes,Ramphastidae (Toucans),, +10348,species,yeetou1,Yellow-eared Toucanet,Selenidera spectabilis,Piciformes,Ramphastidae (Toucans),, +10349,species,guitou1,Guianan Toucanet,Selenidera piperivora,Piciformes,Ramphastidae (Toucans),, +10350,species,goctou1,Golden-collared Toucanet,Selenidera reinwardtii,Piciformes,Ramphastidae (Toucans),, +10351,issf,goctou2,Golden-collared Toucanet (Red-billed),Selenidera reinwardtii reinwardtii,Piciformes,Ramphastidae (Toucans),,goctou1 +10352,issf,goctou3,Golden-collared Toucanet (Green-billed),Selenidera reinwardtii langsdorffii,Piciformes,Ramphastidae (Toucans),,goctou1 +10353,species,tattou1,Tawny-tufted Toucanet,Selenidera nattereri,Piciformes,Ramphastidae (Toucans),, +10354,species,goutou1,Gould's Toucanet,Selenidera gouldii,Piciformes,Ramphastidae (Toucans),, +10355,species,spbtou1,Spot-billed Toucanet,Selenidera maculirostris,Piciformes,Ramphastidae (Toucans),, +10356,spuh,smatou1,small toucan sp.,Ramphastidae (small toucan sp.),Piciformes,Ramphastidae (Toucans),, +10357,species,toctou1,Toco Toucan,Ramphastos toco,Piciformes,Ramphastidae (Toucans),, +10360,species,bkmtou1,Yellow-throated Toucan,Ramphastos ambiguus,Piciformes,Ramphastidae (Toucans),, +10361,issf,chmtou1,Yellow-throated Toucan (Chestnut-mandibled),Ramphastos ambiguus swainsonii,Piciformes,Ramphastidae (Toucans),,bkmtou1 +10362,issf,blmtou1,Yellow-throated Toucan (Black-mandibled),Ramphastos ambiguus ambiguus/abbreviatus,Piciformes,Ramphastidae (Toucans),,bkmtou1 +10365,species,whttou1,White-throated Toucan,Ramphastos tucanus,Piciformes,Ramphastidae (Toucans),, +10366,issf,whttou2,White-throated Toucan (Red-billed),Ramphastos tucanus tucanus,Piciformes,Ramphastidae (Toucans),,whttou1 +10367,issf,whttou3,White-throated Toucan (Cuvier's),Ramphastos tucanus cuvieri/inca,Piciformes,Ramphastidae (Toucans),,whttou1 +10370,species,kebtou1,Keel-billed Toucan,Ramphastos sulfuratus,Piciformes,Ramphastidae (Toucans),, +10373,species,chotou1,Choco Toucan,Ramphastos brevis,Piciformes,Ramphastidae (Toucans),, +10374,species,chbtou1,Channel-billed Toucan,Ramphastos vitellinus,Piciformes,Ramphastidae (Toucans),, +10375,issf,chbtou3,Channel-billed Toucan (Citron-throated),Ramphastos vitellinus citreolaemus,Piciformes,Ramphastidae (Toucans),,chbtou1 +10376,issf,chbtou7,Channel-billed Toucan (Yellow-ridged),Ramphastos vitellinus culminatus/pintoi,Piciformes,Ramphastidae (Toucans),,chbtou1 +10379,intergrade,chbtou4,Channel-billed Toucan (Citron-throated x Yellow-ridged),Ramphastos vitellinus citreolaemus x culminatus,Piciformes,Ramphastidae (Toucans),,chbtou1 +10380,issf,chbtou8,Channel-billed Toucan (Channel-billed),Ramphastos vitellinus vitellinus,Piciformes,Ramphastidae (Toucans),,chbtou1 +10381,intergrade,chbtou6,Channel-billed Toucan (Yellow-ridged x Channel-billed),Ramphastos vitellinus culminatus x vitellinus,Piciformes,Ramphastidae (Toucans),,chbtou1 +10382,issf,chbtou2,Channel-billed Toucan (Ariel),Ramphastos vitellinus ariel,Piciformes,Ramphastidae (Toucans),,chbtou1 +10383,intergrade,chbtou5,Channel-billed Toucan (Yellow-ridged x Ariel),Ramphastos vitellinus culminatus x ariel,Piciformes,Ramphastidae (Toucans),,chbtou1 +10384,species,rebtou2,Red-breasted Toucan,Ramphastos dicolorus,Piciformes,Ramphastidae (Toucans),, +10385,spuh,lartou1,large toucan sp.,Ramphastos sp.,Piciformes,Ramphastidae (Toucans),, +10386,species,cashon1,Cassin's Honeyguide,Prodotiscus insignis,Piciformes,Indicatoridae (Honeyguides),Honeyguides, +10389,species,grbhon2,Green-backed Honeyguide,Prodotiscus zambesiae,Piciformes,Indicatoridae (Honeyguides),, +10392,species,wahhon1,Wahlberg's Honeyguide,Prodotiscus regulus,Piciformes,Indicatoridae (Honeyguides),, +10395,spuh,smahon1,small honeyguide sp.,Prodotiscus sp.,Piciformes,Indicatoridae (Honeyguides),, +10396,species,zenhon1,Zenker's Honeyguide,Melignomon zenkeri,Piciformes,Indicatoridae (Honeyguides),, +10397,species,yefhon2,Yellow-footed Honeyguide,Melignomon eisentrauti,Piciformes,Indicatoridae (Honeyguides),, +10398,species,dwahon1,Dwarf Honeyguide,Indicator pumilio,Piciformes,Indicatoridae (Honeyguides),, +10399,species,wilhon2,Willcocks's Honeyguide,Indicator willcocksi,Piciformes,Indicatoridae (Honeyguides),, +10403,species,palhon1,Pallid Honeyguide,Indicator meliphilus,Piciformes,Indicatoridae (Honeyguides),, +10406,species,leahon2,Least Honeyguide,Indicator exilis,Piciformes,Indicatoridae (Honeyguides),, +10410,species,thbhon1,Thick-billed Honeyguide,Indicator conirostris,Piciformes,Indicatoridae (Honeyguides),, +10413,species,leshon1,Lesser Honeyguide,Indicator minor,Piciformes,Indicatoridae (Honeyguides),, +10420,species,spohon2,Spotted Honeyguide,Indicator maculatus,Piciformes,Indicatoridae (Honeyguides),, +10423,species,scthon1,Scaly-throated Honeyguide,Indicator variegatus,Piciformes,Indicatoridae (Honeyguides),, +10424,species,yerhon1,Yellow-rumped Honeyguide,Indicator xanthonotus,Piciformes,Indicatoridae (Honeyguides),, +10427,species,malhon1,Malaysian Honeyguide,Indicator archipelagicus,Piciformes,Indicatoridae (Honeyguides),, +10428,species,grehon2,Greater Honeyguide,Indicator indicator,Piciformes,Indicatoridae (Honeyguides),, +10429,spuh,larhon1,large honeyguide sp.,Indicator sp.,Piciformes,Indicatoridae (Honeyguides),, +10430,spuh,honeyg1,honeyguide sp.,Indicatoridae sp.,Piciformes,Indicatoridae (Honeyguides),, +10431,species,lython1,Lyre-tailed Honeyguide,Melichneutes robustus,Piciformes,Indicatoridae (Honeyguides),, +10432,species,eurwry,Eurasian Wryneck,Jynx torquilla,Piciformes,Picidae (Woodpeckers),Woodpeckers, +10437,species,runwry1,Rufous-necked Wryneck,Jynx ruficollis,Piciformes,Picidae (Woodpeckers),, +10438,issf,runwry2,Rufous-necked Wryneck (Rufous-necked),Jynx ruficollis ruficollis,Piciformes,Picidae (Woodpeckers),,runwry1 +10439,issf,runwry3,Rufous-necked Wryneck (Bar-throated),Jynx ruficollis pulchricollis,Piciformes,Picidae (Woodpeckers),,runwry1 +10440,issf,runwry4,Rufous-necked Wryneck (Ethiopian),Jynx ruficollis aequatorialis,Piciformes,Picidae (Woodpeckers),,runwry1 +10441,species,spepic1,Speckled Piculet,Picumnus innominatus,Piciformes,Picidae (Woodpeckers),, +10445,species,babpic1,Bar-breasted Piculet,Picumnus aurifrons,Piciformes,Picidae (Woodpeckers),, +10453,species,oripic1,Orinoco Piculet,Picumnus pumilus,Piciformes,Picidae (Woodpeckers),, +10454,species,lafpic1,Lafresnaye's Piculet,Picumnus lafresnayi,Piciformes,Picidae (Woodpeckers),, +10459,species,gospic1,Golden-spangled Piculet,Picumnus exilis,Piciformes,Picidae (Woodpeckers),, +10460,issf,gospic4,Golden-spangled Piculet (Undulated),Picumnus exilis undulatus,Piciformes,Picidae (Woodpeckers),,gospic1 +10461,issf,gospic5,Golden-spangled Piculet (Buffon's),Picumnus exilis buffonii,Piciformes,Picidae (Woodpeckers),,gospic1 +10462,issf,gospic6,Golden-spangled Piculet (Pernambuco),Picumnus exilis pernambucensis,Piciformes,Picidae (Woodpeckers),,gospic1 +10463,issf,gospic7,Golden-spangled Piculet (Bahia),Picumnus exilis exilis,Piciformes,Picidae (Woodpeckers),,gospic1 +10464,species,ecupic1,Ecuadorian Piculet,Picumnus sclateri,Piciformes,Picidae (Woodpeckers),, +10468,species,scapic1,Scaled Piculet,Picumnus squamulatus,Piciformes,Picidae (Woodpeckers),, +10469,issf,scapic2,Scaled Piculet (Scaled),Picumnus squamulatus [squamulatus Group],Piciformes,Picidae (Woodpeckers),,scapic1 +10474,issf,gospic3,Scaled Piculet (Black-dotted),Picumnus squamulatus obsoletus,Piciformes,Picidae (Woodpeckers),,scapic1 +10475,species,whbpic2,White-bellied Piculet,Picumnus spilogaster,Piciformes,Picidae (Woodpeckers),, +10476,issf,whbpic4,White-bellied Piculet (White-bellied),Picumnus spilogaster spilogaster/orinocensis,Piciformes,Picidae (Woodpeckers),,whbpic2 +10479,issf,whbpic5,White-bellied Piculet (Mangrove),Picumnus spilogaster pallidus,Piciformes,Picidae (Woodpeckers),,whbpic2 +10480,species,arrpic1,Arrowhead Piculet,Picumnus minutissimus,Piciformes,Picidae (Woodpeckers),, +10481,species,spopic1,Spotted Piculet,Picumnus pygmaeus,Piciformes,Picidae (Woodpeckers),, +10482,species,spcpic1,Speckle-chested Piculet,Picumnus steindachneri,Piciformes,Picidae (Woodpeckers),, +10483,species,varpic1,Varzea Piculet,Picumnus varzeae,Piciformes,Picidae (Woodpeckers),, +10484,species,whbpic1,White-barred Piculet,Picumnus cirratus,Piciformes,Picidae (Woodpeckers),, +10485,issf,whbpic6,White-barred Piculet (Marajo),Picumnus cirratus macconnelli/confusus,Piciformes,Picidae (Woodpeckers),,whbpic1 +10488,issf,whbpic7,White-barred Piculet (White-barred),Picumnus cirratus [cirratus Group],Piciformes,Picidae (Woodpeckers),,whbpic1 +10493,species,ocepic2,Ocellated Piculet,Picumnus dorbignyanus,Piciformes,Picidae (Woodpeckers),, +10496,slash,y00962,White-barred/Ocellated Piculet,Picumnus cirratus/dorbignyanus,Piciformes,Picidae (Woodpeckers),, +10497,species,occpic1,Ochre-collared Piculet,Picumnus temminckii,Piciformes,Picidae (Woodpeckers),, +10498,hybrid,x00951,White-barred x Ochre-collared Piculet (hybrid),Picumnus cirratus x temminckii,Piciformes,Picidae (Woodpeckers),, +10499,slash,y01140,White-barred/Ochre-collared Piculet,Picumnus cirratus/temminckii,Piciformes,Picidae (Woodpeckers),, +10500,species,whwpic1,White-wedged Piculet,Picumnus albosquamatus,Piciformes,Picidae (Woodpeckers),, +10503,hybrid,x00952,White-barred x White-wedged Piculet (hybrid),Picumnus cirratus x albosquamatus,Piciformes,Picidae (Woodpeckers),, +10504,slash,y01141,White-barred/White-wedged Piculet,Picumnus cirratus/albosquamatus,Piciformes,Picidae (Woodpeckers),, +10505,species,runpic1,Rusty-necked Piculet,Picumnus fuscus,Piciformes,Picidae (Woodpeckers),, +10506,species,rubpic1,Rufous-breasted Piculet,Picumnus rufiventris,Piciformes,Picidae (Woodpeckers),, +10510,species,tawpic1,Tawny Piculet,Picumnus fulvescens,Piciformes,Picidae (Woodpeckers),, +10511,species,ochpic1,Ochraceous Piculet,Picumnus limae,Piciformes,Picidae (Woodpeckers),, +10512,species,motpic1,Mottled Piculet,Picumnus nebulosus,Piciformes,Picidae (Woodpeckers),, +10513,species,plbpic1,Plain-breasted Piculet,Picumnus castelnau,Piciformes,Picidae (Woodpeckers),, +10514,species,fibpic1,Fine-barred Piculet,Picumnus subtilis,Piciformes,Picidae (Woodpeckers),, +10515,species,olipic1,Olivaceous Piculet,Picumnus olivaceus,Piciformes,Picidae (Woodpeckers),, +10522,species,grapic1,Grayish Piculet,Picumnus granadensis,Piciformes,Picidae (Woodpeckers),, +10525,species,chepic1,Chestnut Piculet,Picumnus cinnamomeus,Piciformes,Picidae (Woodpeckers),, +10530,spuh,newpic1,new world piculet sp.,Picumnus sp.,Piciformes,Picidae (Woodpeckers),, +10531,species,afrpic1,African Piculet,Verreauxia africana,Piciformes,Picidae (Woodpeckers),, +10532,species,rufpic1,Rufous Piculet,Sasia abnormis,Piciformes,Picidae (Woodpeckers),, +10535,species,whbpic3,White-browed Piculet,Sasia ochracea,Piciformes,Picidae (Woodpeckers),, +10539,species,antpic1,Antillean Piculet,Nesoctites micromegas,Piciformes,Picidae (Woodpeckers),, +10542,species,gabwoo3,Gray-and-buff Woodpecker,Hemicircus concretus,Piciformes,Picidae (Woodpeckers),, +10543,issf,gabwoo2,Gray-and-buff Woodpecker (Gray-and-buff),Hemicircus concretus sordidus,Piciformes,Picidae (Woodpeckers),,gabwoo3 +10544,issf,gabwoo4,Gray-and-buff Woodpecker (Red-crested),Hemicircus concretus concretus,Piciformes,Picidae (Woodpeckers),,gabwoo3 +10545,species,heswoo1,Heart-spotted Woodpecker,Hemicircus canente,Piciformes,Picidae (Woodpeckers),, +10546,species,wilsap,Williamson's Sapsucker,Sphyrapicus thyroideus,Piciformes,Picidae (Woodpeckers),, +10549,species,yebsap,Yellow-bellied Sapsucker,Sphyrapicus varius,Piciformes,Picidae (Woodpeckers),, +10550,species,rensap,Red-naped Sapsucker,Sphyrapicus nuchalis,Piciformes,Picidae (Woodpeckers),, +10551,hybrid,x00634,Yellow-bellied x Red-naped Sapsucker (hybrid),Sphyrapicus varius x nuchalis,Piciformes,Picidae (Woodpeckers),, +10552,slash,y00019,Yellow-bellied/Red-naped Sapsucker,Sphyrapicus varius/nuchalis,Piciformes,Picidae (Woodpeckers),, +10553,species,rebsap,Red-breasted Sapsucker,Sphyrapicus ruber,Piciformes,Picidae (Woodpeckers),, +10554,issf,rebsap1,Red-breasted Sapsucker (ruber),Sphyrapicus ruber ruber,Piciformes,Picidae (Woodpeckers),,rebsap +10555,issf,rebsap2,Red-breasted Sapsucker (daggetti),Sphyrapicus ruber daggetti,Piciformes,Picidae (Woodpeckers),,rebsap +10556,hybrid,x00712,Yellow-bellied x Red-breasted Sapsucker (hybrid),Sphyrapicus varius x ruber,Piciformes,Picidae (Woodpeckers),, +10557,hybrid,rnxsap1,Red-naped x Red-breasted Sapsucker (hybrid),Sphyrapicus nuchalis x ruber,Piciformes,Picidae (Woodpeckers),, +10558,slash,y00789,Red-naped/Red-breasted Sapsucker,Sphyrapicus nuchalis/ruber,Piciformes,Picidae (Woodpeckers),, +10559,spuh,sapsuc,sapsucker sp.,Sphyrapicus sp.,Piciformes,Picidae (Woodpeckers),, +10560,species,cugwoo1,Cuban Green Woodpecker,Xiphidiopicus percussus,Piciformes,Picidae (Woodpeckers),, +10563,species,whiwoo1,White Woodpecker,Melanerpes candidus,Piciformes,Picidae (Woodpeckers),, +10564,species,lewwoo,Lewis's Woodpecker,Melanerpes lewis,Piciformes,Picidae (Woodpeckers),, +10565,species,guawoo1,Guadeloupe Woodpecker,Melanerpes herminieri,Piciformes,Picidae (Woodpeckers),, +10566,species,purwoo1,Puerto Rican Woodpecker,Melanerpes portoricensis,Piciformes,Picidae (Woodpeckers),, +10567,species,rehwoo,Red-headed Woodpecker,Melanerpes erythrocephalus,Piciformes,Picidae (Woodpeckers),, +10568,species,acowoo,Acorn Woodpecker,Melanerpes formicivorus,Piciformes,Picidae (Woodpeckers),, +10569,issf,acowoo1,Acorn Woodpecker (Acorn),Melanerpes formicivorus [formicivorus Group],Piciformes,Picidae (Woodpeckers),,acowoo +10576,issf,acowoo2,Acorn Woodpecker (Narrow-fronted),Melanerpes formicivorus angustifrons,Piciformes,Picidae (Woodpeckers),,acowoo +10577,species,gonwoo1,Golden-naped Woodpecker,Melanerpes chrysauchen,Piciformes,Picidae (Woodpeckers),, +10578,species,yetwoo2,Yellow-tufted Woodpecker,Melanerpes cruentatus,Piciformes,Picidae (Woodpeckers),, +10579,species,yefwoo1,Yellow-fronted Woodpecker,Melanerpes flavifrons,Piciformes,Picidae (Woodpeckers),, +10580,species,beawoo2,Beautiful Woodpecker,Melanerpes pulcher,Piciformes,Picidae (Woodpeckers),, +10581,species,blcwoo1,Black-cheeked Woodpecker,Melanerpes pucherani,Piciformes,Picidae (Woodpeckers),, +10582,species,whfwoo1,White-fronted Woodpecker,Melanerpes cactorum,Piciformes,Picidae (Woodpeckers),, +10583,species,hiswoo1,Hispaniolan Woodpecker,Melanerpes striatus,Piciformes,Picidae (Woodpeckers),, +10584,species,jamwoo1,Jamaican Woodpecker,Melanerpes radiolatus,Piciformes,Picidae (Woodpeckers),, +10585,species,gocwoo1,Golden-cheeked Woodpecker,Melanerpes chrysogenys,Piciformes,Picidae (Woodpeckers),, +10588,species,grbwoo1,Gray-breasted Woodpecker,Melanerpes hypopolius,Piciformes,Picidae (Woodpeckers),, +10589,species,yucwoo,Yucatan Woodpecker,Melanerpes pygmaeus,Piciformes,Picidae (Woodpeckers),, +10593,species,recwoo1,Red-crowned Woodpecker,Melanerpes rubricapillus,Piciformes,Picidae (Woodpeckers),, +10598,species,gilwoo,Gila Woodpecker,Melanerpes uropygialis,Piciformes,Picidae (Woodpeckers),, +10602,species,hofwoo1,Hoffmann's Woodpecker,Melanerpes hoffmannii,Piciformes,Picidae (Woodpeckers),, +10603,hybrid,x00440,Red-crowned x Hoffmann's Woodpecker (hybrid),Melanerpes rubricapillus x hoffmannii,Piciformes,Picidae (Woodpeckers),, +10604,species,gofwoo,Golden-fronted Woodpecker,Melanerpes aurifrons,Piciformes,Picidae (Woodpeckers),, +10605,issf,gofwoo1,Golden-fronted Woodpecker (Northern),Melanerpes aurifrons aurifrons,Piciformes,Picidae (Woodpeckers),,gofwoo +10606,issf,gofwoo2,Golden-fronted Woodpecker (Velasquez's),Melanerpes aurifrons [santacruzi Group],Piciformes,Picidae (Woodpeckers),,gofwoo +10617,issf,gofwoo3,Golden-fronted Woodpecker (West Mexico),Melanerpes aurifrons polygrammus,Piciformes,Picidae (Woodpeckers),,gofwoo +10618,hybrid,x00853,Hoffmann's x Golden-fronted Woodpecker (hybrid),Melanerpes hoffmannii x aurifrons,Piciformes,Picidae (Woodpeckers),, +10619,slash,y00963,Hoffmann's/Golden-fronted Woodpecker,Melanerpes hoffmannii/aurifrons,Piciformes,Picidae (Woodpeckers),, +10620,species,rebwoo,Red-bellied Woodpecker,Melanerpes carolinus,Piciformes,Picidae (Woodpeckers),, +10621,hybrid,x00460,Golden-fronted x Red-bellied Woodpecker (hybrid),Melanerpes aurifrons x carolinus,Piciformes,Picidae (Woodpeckers),, +10622,slash,y00788,Golden-fronted/Red-bellied Woodpecker,Melanerpes aurifrons/carolinus,Piciformes,Picidae (Woodpeckers),, +10623,species,weiwoo1,West Indian Woodpecker,Melanerpes superciliaris,Piciformes,Picidae (Woodpeckers),, +10629,spuh,melane1,Melanerpes sp.,Melanerpes sp.,Piciformes,Picidae (Woodpeckers),, +10630,species,ettwoo1,Eurasian Three-toed Woodpecker,Picoides tridactylus,Piciformes,Picidae (Woodpeckers),, +10631,issf,ettwoo2,Eurasian Three-toed Woodpecker (Eurasian),Picoides tridactylus [tridactylus Group],Piciformes,Picidae (Woodpeckers),,ettwoo1 +10636,issf,ettwoo3,Eurasian Three-toed Woodpecker (Dark-bodied),Picoides tridactylus funebris,Piciformes,Picidae (Woodpeckers),,ettwoo1 +10637,species,attwoo1,American Three-toed Woodpecker,Picoides dorsalis,Piciformes,Picidae (Woodpeckers),, +10638,issf,attwoo2,American Three-toed Woodpecker (Rocky Mts.),Picoides dorsalis dorsalis,Piciformes,Picidae (Woodpeckers),,attwoo1 +10639,issf,attwoo3,American Three-toed Woodpecker (Northwest),Picoides dorsalis fasciatus,Piciformes,Picidae (Woodpeckers),,attwoo1 +10640,issf,attwoo4,American Three-toed Woodpecker (Eastern),Picoides dorsalis bacatus,Piciformes,Picidae (Woodpeckers),,attwoo1 +10641,species,bkbwoo,Black-backed Woodpecker,Picoides arcticus,Piciformes,Picidae (Woodpeckers),, +10642,slash,y00617,American Three-toed/Black-backed Woodpecker,Picoides dorsalis/arcticus,Piciformes,Picidae (Woodpeckers),, +10643,species,sulwoo2,Sulawesi Woodpecker,Yungipicus temminckii,Piciformes,Picidae (Woodpeckers),, +10644,species,phiwoo1,Philippine Woodpecker,Yungipicus maculatus,Piciformes,Picidae (Woodpeckers),, +10648,species,phiwoo3,Sulu Woodpecker,Yungipicus ramsayi,Piciformes,Picidae (Woodpeckers),, +10649,species,bncwoo3,Brown-capped Woodpecker,Yungipicus nanus,Piciformes,Picidae (Woodpeckers),, +10653,species,bncwoo2,Sunda Woodpecker,Yungipicus moluccensis,Piciformes,Picidae (Woodpeckers),, +10656,species,gycwoo1,Gray-capped Woodpecker,Yungipicus canicapillus,Piciformes,Picidae (Woodpeckers),, +10668,slash,y00735,Brown-capped/Gray-capped Woodpecker,Yungipicus nanus/canicapillus,Piciformes,Picidae (Woodpeckers),, +10669,species,pygwoo1,Pygmy Woodpecker,Yungipicus kizuki,Piciformes,Picidae (Woodpeckers),, +10674,species,yecwoo1,Yellow-crowned Woodpecker,Leiopicus mahrattensis,Piciformes,Picidae (Woodpeckers),, +10677,species,miswoo1,Middle Spotted Woodpecker,Dendrocoptes medius,Piciformes,Picidae (Woodpeckers),, +10682,species,brfwoo1,Brown-fronted Woodpecker,Dendrocoptes auriceps,Piciformes,Picidae (Woodpeckers),, +10683,species,arawoo1,Arabian Woodpecker,Dendrocoptes dorae,Piciformes,Picidae (Woodpeckers),, +10684,species,abywoo1,Abyssinian Woodpecker,Chloropicus abyssinicus,Piciformes,Picidae (Woodpeckers),, +10685,species,melwoo1,Melancholy Woodpecker,Chloropicus lugubris,Piciformes,Picidae (Woodpeckers),, +10686,species,gabwoo1,Gabon Woodpecker,Chloropicus gabonensis,Piciformes,Picidae (Woodpeckers),, +10689,species,ellwoo1,Elliot's Woodpecker,Chloropicus elliotii,Piciformes,Picidae (Woodpeckers),, +10690,issf,ellwoo2,Elliot's Woodpecker (Elliot's),Chloropicus elliotii elliotii,Piciformes,Picidae (Woodpeckers),,ellwoo1 +10691,issf,ellwoo3,Elliot's Woodpecker (Johnston's),Chloropicus elliotii johnstoni,Piciformes,Picidae (Woodpeckers),,ellwoo1 +10692,species,ligwoo3,Little Gray Woodpecker,Chloropicus elachus,Piciformes,Picidae (Woodpeckers),, +10693,species,spbwoo2,Speckle-breasted Woodpecker,Chloropicus poecilolaemus,Piciformes,Picidae (Woodpeckers),, +10694,species,carwoo1,Cardinal Woodpecker,Chloropicus fuscescens,Piciformes,Picidae (Woodpeckers),, +10704,species,beawoo1,Bearded Woodpecker,Chloropicus namaquus,Piciformes,Picidae (Woodpeckers),, +10708,species,fibwoo1,Fire-bellied Woodpecker,Chloropicus pyrrhogaster,Piciformes,Picidae (Woodpeckers),, +10709,species,gocwoo3,Golden-crowned Woodpecker,Chloropicus xantholophus,Piciformes,Picidae (Woodpeckers),, +10710,species,stiwoo1,Stierling's Woodpecker,Chloropicus stierlingi,Piciformes,Picidae (Woodpeckers),, +10711,species,brbwoo1,Brown-backed Woodpecker,Chloropicus obsoletus,Piciformes,Picidae (Woodpeckers),, +10716,species,grywoo1,African Gray Woodpecker,Chloropicus goertae,Piciformes,Picidae (Woodpeckers),, +10717,issf,afgwoo1,African Gray Woodpecker (Gray),Chloropicus goertae [goertae Group],Piciformes,Picidae (Woodpeckers),,grywoo1 +10721,issf,afgwoo2,African Gray Woodpecker (Sahel),Chloropicus goertae koenigi,Piciformes,Picidae (Woodpeckers),,grywoo1 +10722,species,gyhwoo1,Mountain Gray Woodpecker,Chloropicus spodocephalus,Piciformes,Picidae (Woodpeckers),, +10725,species,oliwoo2,Olive Woodpecker,Chloropicus griseocephalus,Piciformes,Picidae (Woodpeckers),, +10726,issf,oliwoo8,Olive Woodpecker (Red-bellied),Chloropicus griseocephalus ruwenzori,Piciformes,Picidae (Woodpeckers),,oliwoo2 +10727,issf,oliwoo9,Olive Woodpecker (Montane),Chloropicus griseocephalus kilimensis,Piciformes,Picidae (Woodpeckers),,oliwoo2 +10728,issf,oliwoo10,Olive Woodpecker (Southern),Chloropicus griseocephalus griseocephalus,Piciformes,Picidae (Woodpeckers),,oliwoo2 +10729,species,rubwoo1,Rufous-bellied Woodpecker,Dendrocopos hyperythrus,Piciformes,Picidae (Woodpeckers),, +10734,species,fubwoo2,Fulvous-breasted Woodpecker,Dendrocopos macei,Piciformes,Picidae (Woodpeckers),, +10737,species,frbwoo1,Freckle-breasted Woodpecker,Dendrocopos analis,Piciformes,Picidae (Woodpeckers),, +10741,species,stbwoo4,Stripe-breasted Woodpecker,Dendrocopos atratus,Piciformes,Picidae (Woodpeckers),, +10742,species,okiwoo1,Okinawa Woodpecker,Dendrocopos noguchii,Piciformes,Picidae (Woodpeckers),, +10743,species,whbwoo1,White-backed Woodpecker,Dendrocopos leucotos,Piciformes,Picidae (Woodpeckers),, +10744,issf,whbwoo3,White-backed Woodpecker (Lilford's),Dendrocopos leucotos lilfordi,Piciformes,Picidae (Woodpeckers),,whbwoo1 +10745,issf,whbwoo9,White-backed Woodpecker (White-backed),Dendrocopos leucotos [leucotos Group],Piciformes,Picidae (Woodpeckers),,whbwoo1 +10754,issf,whbwoo10,White-backed Woodpecker (Amami),Dendrocopos leucotos owstoni,Piciformes,Picidae (Woodpeckers),,whbwoo1 +10755,species,darwoo1,Darjeeling Woodpecker,Dendrocopos darjellensis,Piciformes,Picidae (Woodpeckers),, +10756,species,grswoo,Great Spotted Woodpecker,Dendrocopos major,Piciformes,Picidae (Woodpeckers),, +10757,issf,grswoo2,Great Spotted Woodpecker (Great Spotted),Dendrocopos major [major Group],Piciformes,Picidae (Woodpeckers),,grswoo +10768,issf,grswoo3,Great Spotted Woodpecker (Canarian),Dendrocopos major canariensis/thanneri,Piciformes,Picidae (Woodpeckers),,grswoo +10771,issf,grswoo4,Great Spotted Woodpecker (Atlas),Dendrocopos major numidus/mauritanus,Piciformes,Picidae (Woodpeckers),,grswoo +10774,species,whwwoo1,White-winged Woodpecker,Dendrocopos leucopterus,Piciformes,Picidae (Woodpeckers),, +10775,species,himwoo1,Himalayan Woodpecker,Dendrocopos himalayensis,Piciformes,Picidae (Woodpeckers),, +10778,species,syrwoo1,Syrian Woodpecker,Dendrocopos syriacus,Piciformes,Picidae (Woodpeckers),, +10779,hybrid,x00914,Great Spotted x Syrian Woodpecker (hybrid),Dendrocopos major x syriacus,Piciformes,Picidae (Woodpeckers),, +10780,slash,y00790,Great Spotted/Syrian Woodpecker,Dendrocopos major/syriacus,Piciformes,Picidae (Woodpeckers),, +10781,species,sinwoo1,Sind Woodpecker,Dendrocopos assimilis,Piciformes,Picidae (Woodpeckers),, +10782,spuh,dendro1,Dendrocopos sp.,Dendrocopos sp.,Piciformes,Picidae (Woodpeckers),, +10783,species,leswoo1,Lesser Spotted Woodpecker,Dryobates minor,Piciformes,Picidae (Woodpeckers),, +10795,species,crbwoo3,Crimson-breasted Woodpecker,Dryobates cathpharius,Piciformes,Picidae (Woodpeckers),, +10796,issf,crbwoo6,Crimson-breasted Woodpecker (Scarlet-breasted),Dryobates cathpharius [cathpharius Group],Piciformes,Picidae (Woodpeckers),,crbwoo3 +10800,issf,crbwoo7,Crimson-breasted Woodpecker (Crimson-breasted),Dryobates cathpharius [pernyii Group],Piciformes,Picidae (Woodpeckers),,crbwoo3 +10804,slash,y00964,Darjeeling/Crimson-breasted Woodpecker,Dendrocopos darjellensis/Dryobates cathpharius,Piciformes,Picidae (Woodpeckers),, +10805,species,dowwoo,Downy Woodpecker,Dryobates pubescens,Piciformes,Picidae (Woodpeckers),, +10806,issf,dowwoo1,Downy Woodpecker (Eastern),Dryobates pubescens pubescens/medianus,Piciformes,Picidae (Woodpeckers),,dowwoo +10809,issf,dowwoo2,Downy Woodpecker (Rocky Mts.),Dryobates pubescens leucurus/glacialis,Piciformes,Picidae (Woodpeckers),,dowwoo +10812,issf,dowwoo3,Downy Woodpecker (Pacific),Dryobates pubescens gairdnerii/turati,Piciformes,Picidae (Woodpeckers),,dowwoo +10815,species,nutwoo,Nuttall's Woodpecker,Dryobates nuttallii,Piciformes,Picidae (Woodpeckers),, +10816,hybrid,x00662,Downy x Nuttall's Woodpecker (hybrid),Dryobates pubescens x nuttallii,Piciformes,Picidae (Woodpeckers),, +10817,species,labwoo,Ladder-backed Woodpecker,Dryobates scalaris,Piciformes,Picidae (Woodpeckers),, +10826,hybrid,x00801,Downy x Ladder-backed Woodpecker (hybrid),Dryobates pubescens x scalaris,Piciformes,Picidae (Woodpeckers),, +10827,slash,y01076,Downy/Ladder-backed Woodpecker,Dryobates pubescens/scalaris,Piciformes,Picidae (Woodpeckers),, +10828,hybrid,x00620,Nuttall's x Ladder-backed Woodpecker (hybrid),Dryobates nuttallii x scalaris,Piciformes,Picidae (Woodpeckers),, +10829,slash,y00965,Nuttall's/Ladder-backed Woodpecker,Dryobates nuttallii/scalaris,Piciformes,Picidae (Woodpeckers),, +10830,species,recwoo,Red-cockaded Woodpecker,Dryobates borealis,Piciformes,Picidae (Woodpeckers),, +10831,species,haiwoo,Hairy Woodpecker,Dryobates villosus,Piciformes,Picidae (Woodpeckers),, +10832,issf,haiwoo2,Hairy Woodpecker (Eastern),Dryobates villosus [villosus Group],Piciformes,Picidae (Woodpeckers),,haiwoo +10839,issf,haiwoo1,Hairy Woodpecker (Pacific),Dryobates villosus [harrisi Group],Piciformes,Picidae (Woodpeckers),,haiwoo +10844,issf,haiwoo5,Hairy Woodpecker (Rocky Mts.),Dryobates villosus orius/icastus,Piciformes,Picidae (Woodpeckers),,haiwoo +10847,issf,haiwoo4,Hairy Woodpecker (South Mexican),Dryobates villosus jardinii/sanctorum,Piciformes,Picidae (Woodpeckers),,haiwoo +10850,issf,haiwoo3,Hairy Woodpecker (Costa Rican),Dryobates villosus extimus,Piciformes,Picidae (Woodpeckers),,haiwoo +10851,hybrid,x00803,Downy x Hairy Woodpecker (hybrid),Dryobates pubescens x villosus,Piciformes,Picidae (Woodpeckers),, +10852,slash,y00322,Downy/Hairy Woodpecker,Dryobates pubescens/villosus,Piciformes,Picidae (Woodpeckers),, +10853,hybrid,x00663,Nuttall's x Hairy Woodpecker (hybrid),Dryobates nuttallii x villosus,Piciformes,Picidae (Woodpeckers),, +10854,hybrid,x00802,Ladder-backed x Hairy Woodpecker (hybrid),Dryobates scalaris x villosus,Piciformes,Picidae (Woodpeckers),, +10855,species,whhwoo,White-headed Woodpecker,Dryobates albolarvatus,Piciformes,Picidae (Woodpeckers),, +10858,species,smbwoo1,Smoky-brown Woodpecker,Dryobates fumigatus,Piciformes,Picidae (Woodpeckers),, +10864,species,strwoo,Strickland's Woodpecker,Dryobates stricklandi,Piciformes,Picidae (Woodpeckers),, +10865,species,ariwoo,Arizona Woodpecker,Dryobates arizonae,Piciformes,Picidae (Woodpeckers),, +10868,species,rerwoo1,Red-rumped Woodpecker,Dryobates kirkii,Piciformes,Picidae (Woodpeckers),, +10874,species,gocwoo2,Golden-collared Woodpecker,Dryobates cassini,Piciformes,Picidae (Woodpeckers),, +10875,species,whswoo2,White-spotted Woodpecker,Dryobates spilogaster,Piciformes,Picidae (Woodpeckers),, +10876,species,chewoo3,Checkered Woodpecker,Dryobates mixtus,Piciformes,Picidae (Woodpeckers),, +10881,species,strwoo6,Striped Woodpecker,Dryobates lignarius,Piciformes,Picidae (Woodpeckers),, +10882,species,blcwoo3,Blood-colored Woodpecker,Dryobates sanguineus,Piciformes,Picidae (Woodpeckers),, +10883,species,litwoo2,Little Woodpecker,Dryobates passerinus,Piciformes,Picidae (Woodpeckers),, +10893,species,dofwoo1,Dot-fronted Woodpecker,Dryobates frontalis,Piciformes,Picidae (Woodpeckers),, +10894,species,scbwoo3,Scarlet-backed Woodpecker,Dryobates callonotus,Piciformes,Picidae (Woodpeckers),, +10897,species,yevwoo1,Yellow-vented Woodpecker,Dryobates dignus,Piciformes,Picidae (Woodpeckers),, +10901,species,babwoo2,Bar-bellied Woodpecker,Dryobates nigriceps,Piciformes,Picidae (Woodpeckers),, +10905,species,reswoo1,Red-stained Woodpecker,Dryobates affinis,Piciformes,Picidae (Woodpeckers),, +10910,slash,y00871,Little/Red-stained Woodpecker,Dryobates passerinus/affinis,Piciformes,Picidae (Woodpeckers),, +10911,species,chowoo1,Choco Woodpecker,Dryobates chocoensis,Piciformes,Picidae (Woodpeckers),, +10912,species,yeewoo1,Yellow-eared Woodpecker,Dryobates maculifrons,Piciformes,Picidae (Woodpeckers),, +10913,spuh,dryoba1,Dryobates sp.,Dryobates sp.,Piciformes,Picidae (Woodpeckers),, +10914,species,marwoo1,Maroon Woodpecker,Blythipicus rubiginosus,Piciformes,Picidae (Woodpeckers),, +10915,species,baywoo1,Bay Woodpecker,Blythipicus pyrrhotis,Piciformes,Picidae (Woodpeckers),, +10921,species,orbwoo1,Orange-backed Woodpecker,Reinwardtipicus validus,Piciformes,Picidae (Woodpeckers),, +10924,species,grefla1,Greater Flameback,Chrysocolaptes guttacristatus,Piciformes,Picidae (Woodpeckers),, +10925,issf,grefla4,Greater Flameback (Malabar),Chrysocolaptes guttacristatus socialis,Piciformes,Picidae (Woodpeckers),,grefla1 +10926,issf,grefla5,Greater Flameback (Greater),Chrysocolaptes guttacristatus [guttacristatus Group],Piciformes,Picidae (Woodpeckers),,grefla1 +10930,species,javfla1,Javan Flameback,Chrysocolaptes strictus,Piciformes,Picidae (Woodpeckers),, +10933,species,luzfla1,Luzon Flameback,Chrysocolaptes haematribon,Piciformes,Picidae (Woodpeckers),, +10934,species,yeffla1,Yellow-faced Flameback,Chrysocolaptes xanthocephalus,Piciformes,Picidae (Woodpeckers),, +10935,species,busfla1,Buff-spotted Flameback,Chrysocolaptes lucidus,Piciformes,Picidae (Woodpeckers),, +10939,species,rehfla1,Red-headed Flameback,Chrysocolaptes erythrocephalus,Piciformes,Picidae (Woodpeckers),, +10940,species,crbfla1,Crimson-backed Flameback,Chrysocolaptes stricklandi,Piciformes,Picidae (Woodpeckers),, +10941,species,whnwoo1,White-naped Woodpecker,Chrysocolaptes festivus,Piciformes,Picidae (Woodpeckers),, +10944,species,powwoo1,Powerful Woodpecker,Campephilus pollens,Piciformes,Picidae (Woodpeckers),, +10947,species,crbwoo1,Crimson-bellied Woodpecker,Campephilus haematogaster,Piciformes,Picidae (Woodpeckers),, +10948,issf,crbwoo4,Crimson-bellied Woodpecker (Splendid),Campephilus haematogaster splendens,Piciformes,Picidae (Woodpeckers),,crbwoo1 +10949,issf,crbwoo5,Crimson-bellied Woodpecker (Crimson-bellied),Campephilus haematogaster haematogaster,Piciformes,Picidae (Woodpeckers),,crbwoo1 +10950,species,renwoo1,Red-necked Woodpecker,Campephilus rubricollis,Piciformes,Picidae (Woodpeckers),, +10954,species,robwoo1,Robust Woodpecker,Campephilus robustus,Piciformes,Picidae (Woodpeckers),, +10955,species,crcwoo1,Crimson-crested Woodpecker,Campephilus melanoleucos,Piciformes,Picidae (Woodpeckers),, +10958,species,pabwoo1,Pale-billed Woodpecker,Campephilus guatemalensis,Piciformes,Picidae (Woodpeckers),, +10962,species,guawoo2,Guayaquil Woodpecker,Campephilus gayaquilensis,Piciformes,Picidae (Woodpeckers),, +10963,species,crbwoo2,Cream-backed Woodpecker,Campephilus leucopogon,Piciformes,Picidae (Woodpeckers),, +10964,hybrid,x00854,Crimson-crested x Cream-backed Woodpecker (hybrid),Campephilus melanoleucos x leucopogon,Piciformes,Picidae (Woodpeckers),, +10965,species,magwoo1,Magellanic Woodpecker,Campephilus magellanicus,Piciformes,Picidae (Woodpeckers),, +10966,species,ivbwoo,Ivory-billed Woodpecker,Campephilus principalis,Piciformes,Picidae (Woodpeckers),, +10967,issf,ivbwoo3,Ivory-billed Woodpecker (Northern),Campephilus principalis principalis,Piciformes,Picidae (Woodpeckers),,ivbwoo +10968,issf,ivbwoo4,Ivory-billed Woodpecker (Cuban),Campephilus principalis bairdii,Piciformes,Picidae (Woodpeckers),,ivbwoo +10969,species,impwoo1,Imperial Woodpecker,Campephilus imperialis,Piciformes,Picidae (Woodpeckers),, +10970,spuh,campep1,Campephilus sp.,Campephilus sp.,Piciformes,Picidae (Woodpeckers),, +10971,species,rufwoo2,Rufous Woodpecker,Micropternus brachyurus,Piciformes,Picidae (Woodpeckers),, +10981,species,bunwoo1,Buff-necked Woodpecker,Meiglyptes tukki,Piciformes,Picidae (Woodpeckers),, +10987,species,burwoo1,Buff-rumped Woodpecker,Meiglyptes tristis,Piciformes,Picidae (Woodpeckers),, +10988,issf,burwoo2,Buff-rumped Woodpecker (Buff-rumped),Meiglyptes tristis grammithorax,Piciformes,Picidae (Woodpeckers),,burwoo1 +10989,issf,burwoo3,Buff-rumped Woodpecker (White-rumped),Meiglyptes tristis tristis,Piciformes,Picidae (Woodpeckers),,burwoo1 +10990,species,babwoo3,Black-and-buff Woodpecker,Meiglyptes jugularis,Piciformes,Picidae (Woodpeckers),, +10991,species,pahwoo1,Pale-headed Woodpecker,Gecinulus grantia,Piciformes,Picidae (Woodpeckers),, +10995,species,bamwoo1,Bamboo Woodpecker,Gecinulus viridis,Piciformes,Picidae (Woodpeckers),, +10996,hybrid,x00805,Pale-headed x Bamboo Woodpecker (hybrid),Gecinulus grantia x viridis,Piciformes,Picidae (Woodpeckers),, +10997,species,olbwoo2,Olive-backed Woodpecker,Dinopium rafflesii,Piciformes,Picidae (Woodpeckers),, +11000,species,himfla1,Himalayan Flameback,Dinopium shorii,Piciformes,Picidae (Woodpeckers),, +11003,species,comfla1,Common Flameback,Dinopium javanense,Piciformes,Picidae (Woodpeckers),, +11009,slash,y00737,Greater/Common Flameback,Chrysocolaptes guttacristatus/Dinopium javanense,Piciformes,Picidae (Woodpeckers),, +11010,slash,y01090,Himalayan/Common Flameback,Dinopium shorii/javanense,Piciformes,Picidae (Woodpeckers),, +11011,species,sptfla1,Spot-throated Flameback,Dinopium everetti,Piciformes,Picidae (Woodpeckers),, +11012,species,bkrfla1,Black-rumped Flameback,Dinopium benghalense,Piciformes,Picidae (Woodpeckers),, +11018,species,bkrfla2,Red-backed Flameback,Dinopium psarodes,Piciformes,Picidae (Woodpeckers),, +11019,hybrid,bkrfla3,Black-rumped x Red-backed Flameback (hybrid),Dinopium benghalense x psarodes,Piciformes,Picidae (Woodpeckers),, +11020,slash,blrfla1,Black-rumped/Red-backed Flameback,Dinopium benghalense/psarodes,Piciformes,Picidae (Woodpeckers),, +11021,spuh,flameb1,flameback sp.,Dinopium sp.,Piciformes,Picidae (Woodpeckers),, +11022,species,lesyel1,Lesser Yellownape,Picus chlorolophus,Piciformes,Picidae (Woodpeckers),, +11032,species,crwwoo1,Crimson-winged Woodpecker,Picus puniceus,Piciformes,Picidae (Woodpeckers),, +11036,species,sttwoo1,Streak-throated Woodpecker,Picus xanthopygaeus,Piciformes,Picidae (Woodpeckers),, +11037,species,scbwoo1,Scaly-bellied Woodpecker,Picus squamatus,Piciformes,Picidae (Woodpeckers),, +11040,species,recwoo2,Red-collared Woodpecker,Picus rabieri,Piciformes,Picidae (Woodpeckers),, +11041,species,stbwoo3,Streak-breasted Woodpecker,Picus viridanus,Piciformes,Picidae (Woodpeckers),, +11042,species,lacwoo1,Laced Woodpecker,Picus vittatus,Piciformes,Picidae (Woodpeckers),, +11043,slash,y01034,Streak-breasted/Laced Woodpecker,Picus viridanus/vittatus,Piciformes,Picidae (Woodpeckers),, +11044,species,japwoo1,Japanese Woodpecker,Picus awokera,Piciformes,Picidae (Woodpeckers),, +11045,species,gyfwoo1,Gray-headed Woodpecker,Picus canus,Piciformes,Picidae (Woodpeckers),, +11046,issf,gyhwoo2,Gray-headed Woodpecker (Gray-headed),Picus canus canus/jessoensis,Piciformes,Picidae (Woodpeckers),,gyfwoo1 +11049,issf,gyhwoo3,Gray-headed Woodpecker (Black-naped),Picus canus [guerini Group],Piciformes,Picidae (Woodpeckers),,gyfwoo1 +11058,issf,gyhwoo4,Gray-headed Woodpecker (Sumatran),Picus canus dedemi,Piciformes,Picidae (Woodpeckers),,gyfwoo1 +11059,species,blhwoo1,Black-headed Woodpecker,Picus erythropygius,Piciformes,Picidae (Woodpeckers),, +11062,species,levwoo1,Levaillant's Woodpecker,Picus vaillantii,Piciformes,Picidae (Woodpeckers),, +11063,species,eugwoo2,Eurasian Green Woodpecker,Picus viridis,Piciformes,Picidae (Woodpeckers),, +11064,issf,grnwoo2,Eurasian Green Woodpecker (Eurasian),Picus viridis viridis/karelini,Piciformes,Picidae (Woodpeckers),,eugwoo2 +11067,issf,grnwoo4,Eurasian Green Woodpecker (Mesopotamian),Picus viridis innominatus,Piciformes,Picidae (Woodpeckers),,eugwoo2 +11068,hybrid,x00855,Gray-headed x Eurasian Green Woodpecker (hybrid),Picus canus x viridis,Piciformes,Picidae (Woodpeckers),, +11069,species,grnwoo3,Iberian Green Woodpecker,Picus sharpei,Piciformes,Picidae (Woodpeckers),, +11070,hybrid,eugwoo1,Eurasian x Iberian Green Woodpecker (hybrid),Picus viridis x sharpei,Piciformes,Picidae (Woodpeckers),, +11071,slash,grnwoo1,Eurasian/Iberian Green Woodpecker,Picus viridis/sharpei,Piciformes,Picidae (Woodpeckers),, +11072,spuh,picus1,Picus sp.,Picus sp.,Piciformes,Picidae (Woodpeckers),, +11073,species,banwoo2,Banded Woodpecker,Chrysophlegma miniaceum,Piciformes,Picidae (Woodpeckers),, +11078,species,greyel1,Greater Yellownape,Chrysophlegma flavinucha,Piciformes,Picidae (Woodpeckers),, +11086,slash,y00736,Lesser/Greater Yellownape,Picus chlorolophus/Chrysophlegma flavinucha,Piciformes,Picidae (Woodpeckers),, +11087,species,chtwoo1,Checker-throated Woodpecker,Chrysophlegma mentale,Piciformes,Picidae (Woodpeckers),, +11088,issf,chtwoo2,Checker-throated Woodpecker (Checker-throated),Chrysophlegma mentale humii,Piciformes,Picidae (Woodpeckers),,chtwoo1 +11089,issf,chtwoo3,Checker-throated Woodpecker (Javan),Chrysophlegma mentale mentale,Piciformes,Picidae (Woodpeckers),,chtwoo1 +11090,species,growoo1,Ground Woodpecker,Geocolaptes olivaceus,Piciformes,Picidae (Woodpeckers),, +11091,species,brewoo1,Brown-eared Woodpecker,Campethera caroli,Piciformes,Picidae (Woodpeckers),, +11092,issf,bnewoo1,Brown-eared Woodpecker (Western),Campethera caroli arizela,Piciformes,Picidae (Woodpeckers),,brewoo1 +11093,issf,bnewoo2,Brown-eared Woodpecker (Carol's),Campethera caroli caroli,Piciformes,Picidae (Woodpeckers),,brewoo1 +11094,species,buswoo1,Buff-spotted Woodpecker,Campethera nivosa,Piciformes,Picidae (Woodpeckers),, +11099,species,tulwoo1,Tullberg's Woodpecker,Campethera tullbergi,Piciformes,Picidae (Woodpeckers),, +11100,issf,tulwoo2,Tullberg's Woodpecker (Tullberg's),Campethera tullbergi tullbergi,Piciformes,Picidae (Woodpeckers),,tulwoo1 +11101,issf,tulwoo3,Tullberg's Woodpecker (Fine-banded),Campethera tullbergi taeniolaema/hausburgi,Piciformes,Picidae (Woodpeckers),,tulwoo1 +11104,species,ligwoo1,Little Green Woodpecker,Campethera maculosa,Piciformes,Picidae (Woodpeckers),, +11105,species,grbwoo2,Green-backed Woodpecker,Campethera cailliautii,Piciformes,Picidae (Woodpeckers),, +11106,issf,gnbwoo1,Green-backed Woodpecker (Plain-backed),Campethera cailliautii permista,Piciformes,Picidae (Woodpeckers),,grbwoo2 +11107,issf,gnbwoo2,Green-backed Woodpecker (Spot-backed),Campethera cailliautii [cailliautii Group],Piciformes,Picidae (Woodpeckers),,grbwoo2 +11111,species,nubwoo1,Nubian Woodpecker,Campethera nubica,Piciformes,Picidae (Woodpeckers),, +11114,species,fiswoo1,Fine-spotted Woodpecker,Campethera punctuligera,Piciformes,Picidae (Woodpeckers),, +11117,species,benwoo1,Bennett's Woodpecker,Campethera bennettii,Piciformes,Picidae (Woodpeckers),, +11118,issf,benwoo2,Bennett's Woodpecker (Bennett's),Campethera bennettii bennettii,Piciformes,Picidae (Woodpeckers),,benwoo1 +11119,issf,benwoo3,Bennett's Woodpecker (Light-spotted),Campethera bennettii capricorni,Piciformes,Picidae (Woodpeckers),,benwoo1 +11120,species,reiwoo1,Reichenow's Woodpecker,Campethera scriptoricauda,Piciformes,Picidae (Woodpeckers),, +11121,species,knywoo1,Knysna Woodpecker,Campethera notata,Piciformes,Picidae (Woodpeckers),, +11122,species,gotwoo1,Golden-tailed Woodpecker,Campethera abingoni,Piciformes,Picidae (Woodpeckers),, +11123,issf,gotwoo2,Golden-tailed Woodpecker (Streak-backed),Campethera abingoni chrysura,Piciformes,Picidae (Woodpeckers),,gotwoo1 +11124,issf,gotwoo3,Golden-tailed Woodpecker (Golden-tailed),Campethera abingoni [abingoni Group],Piciformes,Picidae (Woodpeckers),,gotwoo1 +11130,species,momwoo1,Mombasa Woodpecker,Campethera mombassica,Piciformes,Picidae (Woodpeckers),, +11131,species,ashwoo1,Ashy Woodpecker,Mulleripicus fulvus,Piciformes,Picidae (Woodpeckers),, +11134,species,soowoo1,Northern Sooty-Woodpecker,Mulleripicus funebris,Piciformes,Picidae (Woodpeckers),, +11138,species,sousow1,Southern Sooty-Woodpecker,Mulleripicus fuliginosus,Piciformes,Picidae (Woodpeckers),, +11139,species,grswoo1,Great Slaty Woodpecker,Mulleripicus pulverulentus,Piciformes,Picidae (Woodpeckers),, +11142,species,linwoo1,Lineated Woodpecker,Dryocopus lineatus,Piciformes,Picidae (Woodpeckers),, +11143,issf,linwoo7,Lineated Woodpecker (Lineated),Dryocopus lineatus [lineatus Group],Piciformes,Picidae (Woodpeckers),,linwoo1 +11148,issf,linwoo8,Lineated Woodpecker (Dusky-winged),Dryocopus lineatus fuscipennis,Piciformes,Picidae (Woodpeckers),,linwoo1 +11149,slash,y00679,Campephilus sp./Lineated Woodpecker,Campephilus sp./Dryocopus lineatus,Piciformes,Picidae (Woodpeckers),, +11150,species,pilwoo,Pileated Woodpecker,Dryocopus pileatus,Piciformes,Picidae (Woodpeckers),, +11153,species,blbwoo3,Black-bodied Woodpecker,Dryocopus schulzii,Piciformes,Picidae (Woodpeckers),, +11154,hybrid,x00804,Lineated x Black-bodied Woodpecker (hybrid),Dryocopus lineatus x schulzii,Piciformes,Picidae (Woodpeckers),, +11155,species,whbwoo2,White-bellied Woodpecker,Dryocopus javensis,Piciformes,Picidae (Woodpeckers),, +11170,species,andwoo1,Andaman Woodpecker,Dryocopus hodgei,Piciformes,Picidae (Woodpeckers),, +11171,species,blawoo1,Black Woodpecker,Dryocopus martius,Piciformes,Picidae (Woodpeckers),, +11174,spuh,dryoco1,Dryocopus sp.,Dryocopus sp.,Piciformes,Picidae (Woodpeckers),, +11175,species,cinwoo1,Cinnamon Woodpecker,Celeus loricatus,Piciformes,Picidae (Woodpeckers),, +11180,species,rinwoo1,Ringed Woodpecker,Celeus torquatus,Piciformes,Picidae (Woodpeckers),, +11181,issf,rinwoo2,Ringed Woodpecker (Ringed),Celeus torquatus torquatus,Piciformes,Picidae (Woodpeckers),,rinwoo1 +11182,issf,rinwoo3,Ringed Woodpecker (Amazonian Black-breasted),Celeus torquatus occidentalis,Piciformes,Picidae (Woodpeckers),,rinwoo1 +11183,issf,rinwoo4,Ringed Woodpecker (Atlantic Black-breasted),Celeus torquatus tinnunculus,Piciformes,Picidae (Woodpeckers),,rinwoo1 +11184,species,helwoo1,Helmeted Woodpecker,Celeus galeatus,Piciformes,Picidae (Woodpeckers),, +11185,species,chcwoo1,Chestnut-colored Woodpecker,Celeus castaneus,Piciformes,Picidae (Woodpeckers),, +11186,species,scbwoo5,Scale-breasted Woodpecker,Celeus grammicus,Piciformes,Picidae (Woodpeckers),, +11191,species,wavwoo1,Waved Woodpecker,Celeus undatus,Piciformes,Picidae (Woodpeckers),, +11195,species,crcwoo2,Cream-colored Woodpecker,Celeus flavus,Piciformes,Picidae (Woodpeckers),, +11200,species,ruhwoo1,Rufous-headed Woodpecker,Celeus spectabilis,Piciformes,Picidae (Woodpeckers),, +11203,species,caawoo1,Kaempfer's Woodpecker,Celeus obrieni,Piciformes,Picidae (Woodpeckers),, +11204,species,blcwoo5,Ochre-backed Woodpecker,Celeus ochraceus,Piciformes,Picidae (Woodpeckers),, +11205,species,chewoo2,Chestnut Woodpecker,Celeus elegans,Piciformes,Picidae (Woodpeckers),, +11212,species,pacwoo1,Pale-crested Woodpecker,Celeus lugubris,Piciformes,Picidae (Woodpeckers),, +11215,species,blcwoo4,Blond-crested Woodpecker,Celeus flavescens,Piciformes,Picidae (Woodpeckers),, +11218,slash,blcwoo2,Ochre-backed/Blond-crested Woodpecker,Celeus ochraceus/flavescens,Piciformes,Picidae (Woodpeckers),, +11219,spuh,celeus1,Celeus sp.,Celeus sp.,Piciformes,Picidae (Woodpeckers),, +11220,species,ruwwoo1,Rufous-winged Woodpecker,Piculus simplex,Piciformes,Picidae (Woodpeckers),, +11221,species,stcwoo1,Stripe-cheeked Woodpecker,Piculus callopterus,Piciformes,Picidae (Woodpeckers),, +11222,species,whtwoo2,White-throated Woodpecker,Piculus leucolaemus,Piciformes,Picidae (Woodpeckers),, +11223,species,litwoo1,Lita Woodpecker,Piculus litae,Piciformes,Picidae (Woodpeckers),, +11224,species,yetwoo1,Yellow-throated Woodpecker,Piculus flavigula,Piciformes,Picidae (Woodpeckers),, +11228,species,gogwoo1,Golden-green Woodpecker,Piculus chrysochloros,Piciformes,Picidae (Woodpeckers),, +11229,issf,gogwoo2,Golden-green Woodpecker (Gold-throated),Piculus chrysochloros xanthochlorus,Piciformes,Picidae (Woodpeckers),,gogwoo1 +11230,issf,gogwoo3,Golden-green Woodpecker (Bar-throated),Piculus chrysochloros capistratus,Piciformes,Picidae (Woodpeckers),,gogwoo1 +11231,issf,gogwoo4,Golden-green Woodpecker (Belem),Piculus chrysochloros paraensis,Piciformes,Picidae (Woodpeckers),,gogwoo1 +11232,issf,gogwoo5,Golden-green Woodpecker (Spot-throated),Piculus chrysochloros laemostictus,Piciformes,Picidae (Woodpeckers),,gogwoo1 +11233,issf,gogwoo6,Golden-green Woodpecker (Golden-green),Piculus chrysochloros chrysochloros,Piciformes,Picidae (Woodpeckers),,gogwoo1 +11234,issf,gogwoo7,Golden-green Woodpecker (Atlantic),Piculus chrysochloros polyzonus,Piciformes,Picidae (Woodpeckers),,gogwoo1 +11235,species,whbwoo7,White-browed Woodpecker,Piculus aurulentus,Piciformes,Picidae (Woodpeckers),, +11236,spuh,piculu1,Piculus sp.,Piculus sp.,Piciformes,Picidae (Woodpeckers),, +11237,species,goowoo1,Golden-olive Woodpecker,Colaptes rubiginosus,Piciformes,Picidae (Woodpeckers),, +11238,issf,goowoo3,Golden-olive Woodpecker (Bronze-winged),Colaptes rubiginosus aeruginosus,Piciformes,Picidae (Woodpeckers),,goowoo1 +11239,issf,goowoo2,Golden-olive Woodpecker (Golden-olive),Colaptes rubiginosus [rubiginosus Group],Piciformes,Picidae (Woodpeckers),,goowoo1 +11257,issf,goowoo4,Golden-olive Woodpecker (rubripileus),Colaptes rubiginosus rubripileus,Piciformes,Picidae (Woodpeckers),,goowoo1 +11258,species,grcwoo1,Gray-crowned Woodpecker,Colaptes auricularis,Piciformes,Picidae (Woodpeckers),, +11259,species,crmwoo2,Crimson-mantled Woodpecker,Colaptes rivolii,Piciformes,Picidae (Woodpeckers),, +11260,issf,crmwoo1,Crimson-mantled Woodpecker (Crimson-mantled),Colaptes rivolii [rivolii Group],Piciformes,Picidae (Woodpeckers),,crmwoo2 +11265,issf,crmwoo3,Crimson-mantled Woodpecker (Black-crowned),Colaptes rivolii atriceps,Piciformes,Picidae (Woodpeckers),,crmwoo2 +11266,species,blnwoo1,Black-necked Woodpecker,Colaptes atricollis,Piciformes,Picidae (Woodpeckers),, +11269,species,spbwoo1,Spot-breasted Woodpecker,Colaptes punctigula,Piciformes,Picidae (Woodpeckers),, +11276,species,grbwoo3,Green-barred Woodpecker,Colaptes melanochloros,Piciformes,Picidae (Woodpeckers),, +11277,issf,gnbwoo3,Green-barred Woodpecker (Green-barred),Colaptes melanochloros melanochloros/nattereri,Piciformes,Picidae (Woodpeckers),,grbwoo3 +11280,issf,gnbwoo4,Green-barred Woodpecker (Golden-breasted),Colaptes melanochloros [melanolaimus Group],Piciformes,Picidae (Woodpeckers),,grbwoo3 +11284,species,norfli,Northern Flicker,Colaptes auratus,Piciformes,Picidae (Woodpeckers),, +11285,issf,norfli2,Northern Flicker (Cuban),Colaptes auratus chrysocaulosus,Piciformes,Picidae (Woodpeckers),,norfli +11286,issf,norfli3,Northern Flicker (Grand Cayman I.),Colaptes auratus gundlachi,Piciformes,Picidae (Woodpeckers),,norfli +11287,issf,yesfli,Northern Flicker (Yellow-shafted),Colaptes auratus auratus/luteus,Piciformes,Picidae (Woodpeckers),,norfli +11290,issf,resfli,Northern Flicker (Red-shafted),Colaptes auratus [cafer Group],Piciformes,Picidae (Woodpeckers),,norfli +11295,intergrade,rxyfli,Northern Flicker (Yellow-shafted x Red-shafted),Colaptes auratus luteus x cafer,Piciformes,Picidae (Woodpeckers),,norfli +11296,issf,norfli1,Northern Flicker (Guatemalan),Colaptes auratus mexicanoides,Piciformes,Picidae (Woodpeckers),,norfli +11297,species,gilfli,Gilded Flicker,Colaptes chrysoides,Piciformes,Picidae (Woodpeckers),, +11302,hybrid,x00924,Northern x Gilded Flicker (hybrid),Colaptes auratus x chrysoides,Piciformes,Picidae (Woodpeckers),, +11303,slash,y00323,Northern/Gilded Flicker,Colaptes auratus/chrysoides,Piciformes,Picidae (Woodpeckers),, +11304,species,berfli1,Bermuda Flicker,Colaptes oceanicus,Piciformes,Picidae (Woodpeckers),, +11305,species,ferfli1,Fernandina's Flicker,Colaptes fernandinae,Piciformes,Picidae (Woodpeckers),, +11306,species,chifli1,Chilean Flicker,Colaptes pitius,Piciformes,Picidae (Woodpeckers),, +11307,species,andfli1,Andean Flicker,Colaptes rupicola,Piciformes,Picidae (Woodpeckers),, +11308,issf,andfli2,Andean Flicker (Northern),Colaptes rupicola cinereicapillus,Piciformes,Picidae (Woodpeckers),,andfli1 +11309,issf,andfli3,Andean Flicker (Southern),Colaptes rupicola rupicola/puna,Piciformes,Picidae (Woodpeckers),,andfli1 +11312,species,camfli1,Campo Flicker,Colaptes campestris,Piciformes,Picidae (Woodpeckers),, +11313,issf,camfli2,Campo Flicker (Campo),Colaptes campestris campestris,Piciformes,Picidae (Woodpeckers),,camfli1 +11314,issf,camfli3,Campo Flicker (Field),Colaptes campestris campestroides,Piciformes,Picidae (Woodpeckers),,camfli1 +11315,intergrade,camfli4,Campo Flicker (Campo x Field),Colaptes campestris campestris x campestroides,Piciformes,Picidae (Woodpeckers),,camfli1 +11316,spuh,woodpe1,woodpecker sp.,Picidae sp.,Piciformes,Picidae (Woodpeckers),, +11317,species,relser1,Red-legged Seriema,Cariama cristata,Cariamiformes,Cariamidae (Seriemas),Seriemas, +11318,species,bllser1,Black-legged Seriema,Chunga burmeisteri,Cariamiformes,Cariamidae (Seriemas),, +11319,species,baffal1,Barred Forest-Falcon,Micrastur ruficollis,Falconiformes,Falconidae (Falcons and Caracaras),Falcons and Caracaras, +11326,species,plffal1,Plumbeous Forest-Falcon,Micrastur plumbeus,Falconiformes,Falconidae (Falcons and Caracaras),, +11327,slash,y00872,Barred/Plumbeous Forest-Falcon,Micrastur ruficollis/plumbeus,Falconiformes,Falconidae (Falcons and Caracaras),, +11328,species,liffal1,Lined Forest-Falcon,Micrastur gilvicollis,Falconiformes,Falconidae (Falcons and Caracaras),, +11329,slash,y00689,Barred/Lined Forest-Falcon,Micrastur ruficollis/gilvicollis,Falconiformes,Falconidae (Falcons and Caracaras),, +11330,species,cryfof1,Cryptic Forest-Falcon,Micrastur mintoni,Falconiformes,Falconidae (Falcons and Caracaras),, +11331,species,sbffal1,Slaty-backed Forest-Falcon,Micrastur mirandollei,Falconiformes,Falconidae (Falcons and Caracaras),, +11332,species,coffal1,Collared Forest-Falcon,Micrastur semitorquatus,Falconiformes,Falconidae (Falcons and Caracaras),, +11335,species,buffal1,Buckley's Forest-Falcon,Micrastur buckleyi,Falconiformes,Falconidae (Falcons and Caracaras),, +11336,spuh,forest1,forest-falcon sp.,Micrastur sp.,Falconiformes,Falconidae (Falcons and Caracaras),, +11337,species,blacar1,Black Caracara,Daptrius ater,Falconiformes,Falconidae (Falcons and Caracaras),, +11338,species,retcar2,Red-throated Caracara,Ibycter americanus,Falconiformes,Falconidae (Falcons and Caracaras),, +11339,species,carcar1,Carunculated Caracara,Phalcoboenus carunculatus,Falconiformes,Falconidae (Falcons and Caracaras),, +11340,species,moucar1,Mountain Caracara,Phalcoboenus megalopterus,Falconiformes,Falconidae (Falcons and Caracaras),, +11341,species,whtcar1,White-throated Caracara,Phalcoboenus albogularis,Falconiformes,Falconidae (Falcons and Caracaras),, +11342,species,strcar1,Striated Caracara,Phalcoboenus australis,Falconiformes,Falconidae (Falcons and Caracaras),, +11343,species,crecar1,Crested Caracara,Caracara cheriway,Falconiformes,Falconidae (Falcons and Caracaras),, +11347,species,soucar1,Southern Caracara,Caracara plancus,Falconiformes,Falconidae (Falcons and Caracaras),, +11348,slash,y00678,Crested/Southern Caracara,Caracara cheriway/plancus,Falconiformes,Falconidae (Falcons and Caracaras),, +11349,species,guacar2,Guadalupe Caracara,Caracara lutosa,Falconiformes,Falconidae (Falcons and Caracaras),, +11350,species,yehcar1,Yellow-headed Caracara,Milvago chimachima,Falconiformes,Falconidae (Falcons and Caracaras),, +11353,species,chicar1,Chimango Caracara,Milvago chimango,Falconiformes,Falconidae (Falcons and Caracaras),, +11356,species,laufal1,Laughing Falcon,Herpetotheres cachinnans,Falconiformes,Falconidae (Falcons and Caracaras),, +11360,species,spwfal2,Spot-winged Falconet,Spiziapteryx circumcincta,Falconiformes,Falconidae (Falcons and Caracaras),, +11361,species,pygfal1,Pygmy Falcon,Polihierax semitorquatus,Falconiformes,Falconidae (Falcons and Caracaras),, +11362,species,whrfal1,White-rumped Falcon,Polihierax insignis,Falconiformes,Falconidae (Falcons and Caracaras),, +11366,species,colfal1,Collared Falconet,Microhierax caerulescens,Falconiformes,Falconidae (Falcons and Caracaras),, +11369,species,bltfal1,Black-thighed Falconet,Microhierax fringillarius,Falconiformes,Falconidae (Falcons and Caracaras),, +11370,species,whffal1,White-fronted Falconet,Microhierax latifrons,Falconiformes,Falconidae (Falcons and Caracaras),, +11371,species,phifal1,Philippine Falconet,Microhierax erythrogenys,Falconiformes,Falconidae (Falcons and Caracaras),, +11374,species,piefal2,Pied Falconet,Microhierax melanoleucos,Falconiformes,Falconidae (Falcons and Caracaras),, +11375,species,leskes1,Lesser Kestrel,Falco naumanni,Falconiformes,Falconidae (Falcons and Caracaras),, +11376,species,eurkes,Eurasian Kestrel,Falco tinnunculus,Falconiformes,Falconidae (Falcons and Caracaras),, +11377,issf,eurkes2,Eurasian Kestrel (Eurasian),Falco tinnunculus [tinnunculus Group],Falconiformes,Falconidae (Falcons and Caracaras),,eurkes +11383,issf,eurkes3,Eurasian Kestrel (Canary Is.),Falco tinnunculus canariensis/dacotiae,Falconiformes,Falconidae (Falcons and Caracaras),,eurkes +11386,issf,eurkes4,Eurasian Kestrel (Cape Verde),Falco tinnunculus neglectus/alexandri,Falconiformes,Falconidae (Falcons and Caracaras),,eurkes +11389,issf,eurkes5,Eurasian Kestrel (Rufescent),Falco tinnunculus rufescens,Falconiformes,Falconidae (Falcons and Caracaras),,eurkes +11390,slash,y00613,Lesser/Eurasian Kestrel,Falco naumanni/tinnunculus,Falconiformes,Falconidae (Falcons and Caracaras),, +11391,species,eurkes1,Rock Kestrel,Falco rupicolus,Falconiformes,Falconidae (Falcons and Caracaras),, +11392,slash,y00933,Eurasian/Rock Kestrel,Falco tinnunculus/rupicolus,Falconiformes,Falconidae (Falcons and Caracaras),, +11393,species,madkes1,Madagascar Kestrel,Falco newtoni,Falconiformes,Falconidae (Falcons and Caracaras),, +11394,species,maukes1,Mauritius Kestrel,Falco punctatus,Falconiformes,Falconidae (Falcons and Caracaras),, +11395,species,seykes1,Seychelles Kestrel,Falco araeus,Falconiformes,Falconidae (Falcons and Caracaras),, +11396,species,reukes1,Reunion Kestrel,Falco duboisi,Falconiformes,Falconidae (Falcons and Caracaras),, +11397,species,spokes1,Spotted Kestrel,Falco moluccensis,Falconiformes,Falconidae (Falcons and Caracaras),, +11400,species,auskes1,Australian Kestrel,Falco cenchroides,Falconiformes,Falconidae (Falcons and Caracaras),, +11403,species,grekes1,Greater Kestrel,Falco rupicoloides,Falconiformes,Falconidae (Falcons and Caracaras),, +11407,species,amekes,American Kestrel,Falco sparverius,Falconiformes,Falconidae (Falcons and Caracaras),, +11408,issf,amekes1,American Kestrel (Northern),Falco sparverius [sparverius Group],Falconiformes,Falconidae (Falcons and Caracaras),,amekes +11413,issf,amekes7,American Kestrel (Southeastern),Falco sparverius paulus,Falconiformes,Falconidae (Falcons and Caracaras),,amekes +11414,issf,amekes3,American Kestrel (Eastern Caribbean),Falco sparverius caribaearum,Falconiformes,Falconidae (Falcons and Caracaras),,amekes +11415,issf,amekes4,American Kestrel (Hispaniolan),Falco sparverius dominicensis,Falconiformes,Falconidae (Falcons and Caracaras),,amekes +11416,issf,amekes5,American Kestrel (Cuban),Falco sparverius sparverioides,Falconiformes,Falconidae (Falcons and Caracaras),,amekes +11417,issf,amekes2,American Kestrel (South American),Falco sparverius [cinnamominus Group],Falconiformes,Falconidae (Falcons and Caracaras),,amekes +11426,issf,amekes6,American Kestrel (Juan Fernandez),Falco sparverius fernandensis,Falconiformes,Falconidae (Falcons and Caracaras),,amekes +11427,species,foxkes1,Fox Kestrel,Falco alopex,Falconiformes,Falconidae (Falcons and Caracaras),, +11428,species,grykes1,Gray Kestrel,Falco ardosiaceus,Falconiformes,Falconidae (Falcons and Caracaras),, +11429,species,dickes1,Dickinson's Kestrel,Falco dickinsoni,Falconiformes,Falconidae (Falcons and Caracaras),, +11430,species,bankes1,Banded Kestrel,Falco zoniventris,Falconiformes,Falconidae (Falcons and Caracaras),, +11431,species,renfal1,Red-necked Falcon,Falco chicquera,Falconiformes,Falconidae (Falcons and Caracaras),, +11432,issf,renfal2,Red-necked Falcon (Asian),Falco chicquera chicquera,Falconiformes,Falconidae (Falcons and Caracaras),,renfal1 +11433,issf,renfal3,Red-necked Falcon (African),Falco chicquera ruficollis/horsbrughi,Falconiformes,Falconidae (Falcons and Caracaras),,renfal1 +11436,species,reffal1,Red-footed Falcon,Falco vespertinus,Falconiformes,Falconidae (Falcons and Caracaras),, +11437,species,amufal1,Amur Falcon,Falco amurensis,Falconiformes,Falconidae (Falcons and Caracaras),, +11438,slash,y01111,Red-footed/Amur Falcon,Falco vespertinus/amurensis,Falconiformes,Falconidae (Falcons and Caracaras),, +11439,species,elefal1,Eleonora's Falcon,Falco eleonorae,Falconiformes,Falconidae (Falcons and Caracaras),, +11440,species,soofal1,Sooty Falcon,Falco concolor,Falconiformes,Falconidae (Falcons and Caracaras),, +11441,species,merlin,Merlin,Falco columbarius,Falconiformes,Falconidae (Falcons and Caracaras),, +11442,issf,merlin1,Merlin (Eurasian),Falco columbarius [aesalon Group],Falconiformes,Falconidae (Falcons and Caracaras),,merlin +11448,issf,merlin2,Merlin (Pallid),Falco columbarius pallidus,Falconiformes,Falconidae (Falcons and Caracaras),,merlin +11449,issf,taimer1,Merlin (Taiga),Falco columbarius columbarius,Falconiformes,Falconidae (Falcons and Caracaras),,merlin +11450,issf,pramer1,Merlin (Prairie),Falco columbarius richardsonii,Falconiformes,Falconidae (Falcons and Caracaras),,merlin +11451,issf,blkmer1,Merlin (Black),Falco columbarius suckleyi,Falconiformes,Falconidae (Falcons and Caracaras),,merlin +11452,species,eurhob,Eurasian Hobby,Falco subbuteo,Falconiformes,Falconidae (Falcons and Caracaras),, +11455,species,afrhob1,African Hobby,Falco cuvierii,Falconiformes,Falconidae (Falcons and Caracaras),, +11456,species,orihob1,Oriental Hobby,Falco severus,Falconiformes,Falconidae (Falcons and Caracaras),, +11457,species,aushob1,Australian Hobby,Falco longipennis,Falconiformes,Falconidae (Falcons and Caracaras),, +11460,species,nezfal1,New Zealand Falcon,Falco novaeseelandiae,Falconiformes,Falconidae (Falcons and Caracaras),, +11461,species,brofal1,Brown Falcon,Falco berigora,Falconiformes,Falconidae (Falcons and Caracaras),, +11465,species,gryfal1,Gray Falcon,Falco hypoleucos,Falconiformes,Falconidae (Falcons and Caracaras),, +11466,species,blafal1,Black Falcon,Falco subniger,Falconiformes,Falconidae (Falcons and Caracaras),, +11467,species,aplfal,Aplomado Falcon,Falco femoralis,Falconiformes,Falconidae (Falcons and Caracaras),, +11471,species,batfal1,Bat Falcon,Falco rufigularis,Falconiformes,Falconidae (Falcons and Caracaras),, +11475,species,orbfal1,Orange-breasted Falcon,Falco deiroleucus,Falconiformes,Falconidae (Falcons and Caracaras),, +11476,species,lanfal1,Lanner Falcon,Falco biarmicus,Falconiformes,Falconidae (Falcons and Caracaras),, +11482,species,lagfal1,Laggar Falcon,Falco jugger,Falconiformes,Falconidae (Falcons and Caracaras),, +11483,species,sakfal1,Saker Falcon,Falco cherrug,Falconiformes,Falconidae (Falcons and Caracaras),, +11486,species,gyrfal,Gyrfalcon,Falco rusticolus,Falconiformes,Falconidae (Falcons and Caracaras),, +11487,species,perfal,Peregrine Falcon,Falco peregrinus,Falconiformes,Falconidae (Falcons and Caracaras),, +11488,issf,perfal1,Peregrine Falcon (North American),Falco peregrinus anatum,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11489,issf,tupfal1,Peregrine Falcon (Tundra),Falco peregrinus calidus/tundrius,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11492,issf,pepfal1,Peregrine Falcon (Peale's),Falco peregrinus pealei,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11493,issf,perfal2,Peregrine Falcon (South American),Falco peregrinus cassini,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11494,issf,perfal4,Peregrine Falcon (Eurasian),Falco peregrinus [peregrinus Group],Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11498,issf,perfal3,Peregrine Falcon (Mediterranean),Falco peregrinus brookei,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11499,issf,barfal1,Peregrine Falcon (Barbary),Falco peregrinus pelegrinoides,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11500,issf,perfal5,Peregrine Falcon (Cape Verde),Falco peregrinus madens,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11501,issf,perfal8,Peregrine Falcon (Red-capped),Falco peregrinus babylonicus,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11502,issf,perfal6,Peregrine Falcon (African),Falco peregrinus minor,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11503,issf,perfal7,Peregrine Falcon (Malagasy),Falco peregrinus radama,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11504,issf,perfal9,Peregrine Falcon (Shaheen),Falco peregrinus peregrinator,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11505,issf,perfal10,Peregrine Falcon (Indo-Pacific),Falco peregrinus ernesti/nesiotes,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11508,issf,perfal11,Peregrine Falcon (Australian),Falco peregrinus macropus,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11509,issf,perfal12,Peregrine Falcon (Buff-fronted),Falco peregrinus submelanogenys,Falconiformes,Falconidae (Falcons and Caracaras),,perfal +11510,species,prafal,Prairie Falcon,Falco mexicanus,Falconiformes,Falconidae (Falcons and Caracaras),, +11511,hybrid,x00698,Peregrine x Prairie Falcon (hybrid),Falco peregrinus x mexicanus,Falconiformes,Falconidae (Falcons and Caracaras),, +11512,species,taifal1,Taita Falcon,Falco fasciinucha,Falconiformes,Falconidae (Falcons and Caracaras),, +11513,spuh,larfal,large falcon sp.,Falco sp. (large falcon sp.),Falconiformes,Falconidae (Falcons and Caracaras),, +11514,spuh,smafal,small falcon sp.,Falco sp. (small falcon sp.),Falconiformes,Falconidae (Falcons and Caracaras),, +11515,spuh,falcon,falcon sp.,Falco sp.,Falconiformes,Falconidae (Falcons and Caracaras),, +11516,spuh,diurap1,diurnal raptor sp.,Accipitriformes/Falconiformes sp.,,,, +11517,species,kea1,Kea,Nestor notabilis,Psittaciformes,Strigopidae (New Zealand Parrots),New Zealand Parrots, +11518,species,noikak1,Norfolk Island Kaka,Nestor productus,Psittaciformes,Strigopidae (New Zealand Parrots),, +11519,species,nezkak1,New Zealand Kaka,Nestor meridionalis,Psittaciformes,Strigopidae (New Zealand Parrots),, +11522,species,kakapo2,Kakapo,Strigops habroptila,Psittaciformes,Strigopidae (New Zealand Parrots),, +11523,species,palcoc1,Palm Cockatoo,Probosciger aterrimus,Psittaciformes,Cacatuidae (Cockatoos),Cockatoos, +11527,species,rtbcoc1,Red-tailed Black-Cockatoo,Calyptorhynchus banksii,Psittaciformes,Cacatuidae (Cockatoos),, +11533,species,glbcoc1,Glossy Black-Cockatoo,Calyptorhynchus lathami,Psittaciformes,Cacatuidae (Cockatoos),, +11537,species,ytbcoc1,Yellow-tailed Black-Cockatoo,Calyptorhynchus funereus,Psittaciformes,Cacatuidae (Cockatoos),, +11541,species,slbblc1,Carnaby's Black-Cockatoo,Calyptorhynchus latirostris,Psittaciformes,Cacatuidae (Cockatoos),, +11542,species,whtblc1,Baudin's Black-Cockatoo,Calyptorhynchus baudinii,Psittaciformes,Cacatuidae (Cockatoos),, +11543,spuh,black-1,black-cockatoo sp.,Calyptorhynchus sp.,Psittaciformes,Cacatuidae (Cockatoos),, +11544,species,gagcoc1,Gang-gang Cockatoo,Callocephalon fimbriatum,Psittaciformes,Cacatuidae (Cockatoos),, +11545,species,pincoc1,Pink Cockatoo,Lophochroa leadbeateri,Psittaciformes,Cacatuidae (Cockatoos),, +11548,species,galah,Galah,Eolophus roseicapilla,Psittaciformes,Cacatuidae (Cockatoos),, +11552,species,lobcor1,Long-billed Corella,Cacatua tenuirostris,Psittaciformes,Cacatuidae (Cockatoos),, +11553,species,wescor1,Western Corella,Cacatua pastinator,Psittaciformes,Cacatuidae (Cockatoos),, +11556,species,litcor2,Little Corella,Cacatua sanguinea,Psittaciformes,Cacatuidae (Cockatoos),, +11562,hybrid,x00953,Galah x Little Corella (hybrid),Eolophus roseicapilla x Cacatua sanguinea,Psittaciformes,Cacatuidae (Cockatoos),, +11563,hybrid,x00806,Long-billed x Little Corella (hybrid),Cacatua tenuirostris x sanguinea,Psittaciformes,Cacatuidae (Cockatoos),, +11564,species,tancoc1,Tanimbar Corella,Cacatua goffiniana,Psittaciformes,Cacatuidae (Cockatoos),, +11565,spuh,corell1,corella sp.,Cacatua sp. (corella sp.),Psittaciformes,Cacatuidae (Cockatoos),, +11566,species,phicoc1,Philippine Cockatoo,Cacatua haematuropygia,Psittaciformes,Cacatuidae (Cockatoos),, +11567,species,yeccoc1,Yellow-crested Cockatoo,Cacatua sulphurea,Psittaciformes,Cacatuidae (Cockatoos),, +11572,species,duccoc1,Ducorps's Cockatoo,Cacatua ducorpsii,Psittaciformes,Cacatuidae (Cockatoos),, +11573,species,succoc,Sulphur-crested Cockatoo,Cacatua galerita,Psittaciformes,Cacatuidae (Cockatoos),, +11578,hybrid,x00920,Little Corella x Sulphur-crested Cockatoo (hybrid),Cacatua sanguinea x galerita,Psittaciformes,Cacatuidae (Cockatoos),, +11579,species,blecoc1,Blue-eyed Cockatoo,Cacatua ophthalmica,Psittaciformes,Cacatuidae (Cockatoos),, +11580,species,saccoc,Salmon-crested Cockatoo,Cacatua moluccensis,Psittaciformes,Cacatuidae (Cockatoos),, +11581,species,whicoc1,White Cockatoo,Cacatua alba,Psittaciformes,Cacatuidae (Cockatoos),, +11582,spuh,cacatu1,corella/cockatoo sp.,Cacatua sp.,Psittaciformes,Cacatuidae (Cockatoos),, +11583,species,cockat,Cockatiel,Nymphicus hollandicus,Psittaciformes,Cacatuidae (Cockatoos),, +11584,domestic,cockat1,Cockatiel (Domestic type),Nymphicus hollandicus (Domestic type),Psittaciformes,Cacatuidae (Cockatoos),, +11585,species,pespar1,Pesquet's Parrot,Psittrichas fulgidus,Psittaciformes,Psittaculidae (Old World Parrots),"Parrots, Parakeets, and Allies", +11586,species,vaspar1,Greater Vasa Parrot,Coracopsis vasa,Psittaciformes,Psittaculidae (Old World Parrots),, +11590,species,blapar1,Lesser Vasa Parrot,Coracopsis nigra,Psittaciformes,Psittaculidae (Old World Parrots),, +11591,issf,levpar1,Lesser Vasa Parrot (Comoro),Coracopsis nigra sibilans,Psittaciformes,Psittaculidae (Old World Parrots),,blapar1 +11592,issf,levpar2,Lesser Vasa Parrot (Black),Coracopsis nigra nigra/libs,Psittaciformes,Psittaculidae (Old World Parrots),,blapar1 +11595,slash,y00873,Greater/Lesser Vasa Parrot,Coracopsis vasa/nigra,Psittaciformes,Psittaculidae (Old World Parrots),, +11596,species,seypar1,Seychelles Parrot,Coracopsis barklyi,Psittaciformes,Psittaculidae (Old World Parrots),, +11597,species,ycppar1,Yellow-capped Pygmy-Parrot,Micropsitta keiensis,Psittaciformes,Psittaculidae (Old World Parrots),, +11601,species,geppar1,Geelvink Pygmy-Parrot,Micropsitta geelvinkiana,Psittaciformes,Psittaculidae (Old World Parrots),, +11604,species,bfppar1,Buff-faced Pygmy-Parrot,Micropsitta pusio,Psittaciformes,Psittaculidae (Old World Parrots),, +11609,species,rbppar1,Red-breasted Pygmy-Parrot,Micropsitta bruijnii,Psittaciformes,Psittaculidae (Old World Parrots),, +11614,species,meppar1,Meek's Pygmy-Parrot,Micropsitta meeki,Psittaciformes,Psittaculidae (Old World Parrots),, +11617,species,fippar1,Finsch's Pygmy-Parrot,Micropsitta finschii,Psittaciformes,Psittaculidae (Old World Parrots),, +11623,spuh,pygmy-1,pygmy-parrot sp.,Micropsitta sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +11624,species,suppar1,Superb Parrot,Polytelis swainsonii,Psittaciformes,Psittaculidae (Old World Parrots),, +11625,species,regpar1,Regent Parrot,Polytelis anthopeplus,Psittaciformes,Psittaculidae (Old World Parrots),, +11628,species,alepar1,Princess Parrot,Polytelis alexandrae,Psittaciformes,Psittaculidae (Old World Parrots),, +11629,species,aukpar1,Australian King-Parrot,Alisterus scapularis,Psittaciformes,Psittaculidae (Old World Parrots),, +11632,species,mokpar1,Moluccan King-Parrot,Alisterus amboinensis,Psittaciformes,Psittaculidae (Old World Parrots),, +11639,species,pakpar1,Papuan King-Parrot,Alisterus chloropterus,Psittaciformes,Psittaculidae (Old World Parrots),, +11643,species,olspar1,Olive-shouldered Parrot,Aprosmictus jonquillaceus,Psittaciformes,Psittaculidae (Old World Parrots),, +11646,species,rewpar1,Red-winged Parrot,Aprosmictus erythropterus,Psittaciformes,Psittaculidae (Old World Parrots),, +11649,hybrid,x00954,Red-winged Parrot x Australian King-Parrot (hybrid),Alisterus scapularis x Aprosmictus erythropterus,Psittaciformes,Psittaculidae (Old World Parrots),, +11650,species,burtai1,Buru Racquet-tail,Prioniturus mada,Psittaciformes,Psittaculidae (Old World Parrots),, +11651,species,gmrtai1,Golden-mantled Racquet-tail,Prioniturus platurus,Psittaciformes,Psittaculidae (Old World Parrots),, +11655,species,mirtai1,Mindanao Racquet-tail,Prioniturus waterstradti,Psittaciformes,Psittaculidae (Old World Parrots),, +11656,species,luzrat1,Luzon Racquet-tail,Prioniturus montanus,Psittaciformes,Psittaculidae (Old World Parrots),, +11657,species,bhrtai1,Blue-headed Racquet-tail,Prioniturus platenae,Psittaciformes,Psittaculidae (Old World Parrots),, +11658,species,minrat1,Mindoro Racquet-tail,Prioniturus mindorensis,Psittaciformes,Psittaculidae (Old World Parrots),, +11659,species,bwrtai1,Blue-winged Racquet-tail,Prioniturus verticalis,Psittaciformes,Psittaculidae (Old World Parrots),, +11660,species,yebrat1,Yellow-breasted Racquet-tail,Prioniturus flavicans,Psittaciformes,Psittaculidae (Old World Parrots),, +11661,species,grrtai1,Green Racquet-tail,Prioniturus luconensis,Psittaciformes,Psittaculidae (Old World Parrots),, +11662,species,bcrtai1,Blue-crowned Racquet-tail,Prioniturus discurus,Psittaciformes,Psittaculidae (Old World Parrots),, +11663,issf,bucrat1,Blue-crowned Racquet-tail (Blue-crowned),Prioniturus discurus whiteheadi,Psittaciformes,Psittaculidae (Old World Parrots),,bcrtai1 +11664,issf,bucrat2,Blue-crowned Racquet-tail (Blue-capped),Prioniturus discurus discurus,Psittaciformes,Psittaculidae (Old World Parrots),,bcrtai1 +11665,spuh,racque1,racquet-tail sp.,Prioniturus sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +11666,species,eclpar,Eclectus Parrot,Eclectus roratus,Psittaciformes,Psittaculidae (Old World Parrots),, +11667,issf,eclpar1,Eclectus Parrot (Moluccan),Eclectus roratus roratus/vosmaeri,Psittaciformes,Psittaculidae (Old World Parrots),,eclpar +11670,issf,eclpar2,Eclectus Parrot (Sumba),Eclectus roratus cornelia,Psittaciformes,Psittaculidae (Old World Parrots),,eclpar +11671,issf,eclpar3,Eclectus Parrot (Tanimbar),Eclectus roratus riedeli,Psittaciformes,Psittaculidae (Old World Parrots),,eclpar +11672,issf,eclpar4,Eclectus Parrot (Papuan),Eclectus roratus [polychloros Group],Psittaciformes,Psittaculidae (Old World Parrots),,eclpar +11678,species,ocepar1,Oceanic Parrot,Eclectus infectus,Psittaciformes,Psittaculidae (Old World Parrots),, +11679,species,recpar2,Red-cheeked Parrot,Geoffroyus geoffroyi,Psittaciformes,Psittaculidae (Old World Parrots),, +11696,species,blcpar3,Blue-collared Parrot,Geoffroyus simplex,Psittaciformes,Psittaculidae (Old World Parrots),, +11699,species,sinpar1,Singing Parrot,Geoffroyus heteroclitus,Psittaciformes,Psittaculidae (Old World Parrots),, +11700,issf,sinpar2,Singing Parrot (Northern),Geoffroyus heteroclitus heteroclitus,Psittaciformes,Psittaculidae (Old World Parrots),,sinpar1 +11701,issf,sinpar3,Singing Parrot (Rennell),Geoffroyus heteroclitus hyacinthinus,Psittaciformes,Psittaculidae (Old World Parrots),,sinpar1 +11702,species,blrpar1,Blue-rumped Parrot,Psittinus cyanurus,Psittaciformes,Psittaculidae (Old World Parrots),, +11703,issf,burpar4,Blue-rumped Parrot (Blue-rumped),Psittinus cyanurus cyanurus/pontius,Psittaciformes,Psittaculidae (Old World Parrots),,blrpar1 +11706,issf,burpar5,Blue-rumped Parrot (Simeulue),Psittinus cyanurus abbotti,Psittaciformes,Psittaculidae (Old World Parrots),,blrpar1 +11707,species,maspar1,Mascarene Parrot,Mascarinus mascarin,Psittaciformes,Psittaculidae (Old World Parrots),, +11708,species,alepar2,Alexandrine Parakeet,Psittacula eupatria,Psittaciformes,Psittaculidae (Old World Parrots),, +11714,species,seypar2,Seychelles Parakeet,Psittacula wardi,Psittaciformes,Psittaculidae (Old World Parrots),, +11715,species,rorpar,Rose-ringed Parakeet,Psittacula krameri,Psittaciformes,Psittaculidae (Old World Parrots),, +11720,slash,y01061,Alexandrine/Rose-ringed Parakeet,Psittacula eupatria/krameri,Psittaciformes,Psittaculidae (Old World Parrots),, +11721,species,maupar1,Echo Parakeet,Psittacula eques,Psittaciformes,Psittaculidae (Old World Parrots),, +11724,species,slhpar1,Slaty-headed Parakeet,Psittacula himalayana,Psittaciformes,Psittaculidae (Old World Parrots),, +11725,species,gyhpar2,Gray-headed Parakeet,Psittacula finschii,Psittaciformes,Psittaculidae (Old World Parrots),, +11726,species,plhpar1,Plum-headed Parakeet,Psittacula cyanocephala,Psittaciformes,Psittaculidae (Old World Parrots),, +11727,hybrid,x00955,Slaty-headed x Plum-headed Parakeet (hybrid),Psittacula himalayana x cyanocephala,Psittaciformes,Psittaculidae (Old World Parrots),, +11728,species,blhpar3,Blossom-headed Parakeet,Psittacula roseata,Psittaciformes,Psittaculidae (Old World Parrots),, +11731,species,malpar1,Malabar Parakeet,Psittacula columboides,Psittaciformes,Psittaculidae (Old World Parrots),, +11732,species,laypar1,Layard's Parakeet,Psittacula calthrapae,Psittaciformes,Psittaculidae (Old World Parrots),, +11733,species,derpar1,Derbyan Parakeet,Psittacula derbiana,Psittaciformes,Psittaculidae (Old World Parrots),, +11734,species,rebpar4,Red-breasted Parakeet,Psittacula alexandri,Psittaciformes,Psittaculidae (Old World Parrots),, +11742,species,nicpar1,Nicobar Parakeet,Psittacula caniceps,Psittaciformes,Psittaculidae (Old World Parrots),, +11743,species,newpar2,Newton's Parakeet,Psittacula exsul,Psittaciformes,Psittaculidae (Old World Parrots),, +11744,species,lotpar2,Long-tailed Parakeet,Psittacula longicauda,Psittaciformes,Psittaculidae (Old World Parrots),, +11745,issf,lotpar3,Long-tailed Parakeet (Andaman),Psittacula longicauda tytleri,Psittaciformes,Psittaculidae (Old World Parrots),,lotpar2 +11746,issf,lotpar6,Long-tailed Parakeet (Nicobar),Psittacula longicauda nicobarica,Psittaciformes,Psittaculidae (Old World Parrots),,lotpar2 +11747,issf,lotpar5,Long-tailed Parakeet (Long-tailed),Psittacula longicauda longicauda/defontainei,Psittaciformes,Psittaculidae (Old World Parrots),,lotpar2 +11750,issf,lotpar4,Long-tailed Parakeet (Enggano),Psittacula longicauda modesta,Psittaciformes,Psittaculidae (Old World Parrots),,lotpar2 +11751,spuh,psitta1,Psittacula sp.,Psittacula sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +11752,species,magpar1,Mauritius Gray Parrot,Lophopsittacus bensoni,Psittaciformes,Psittaculidae (Old World Parrots),, +11753,species,brbpar3,Broad-billed Parrot,Lophopsittacus mauritianus,Psittaciformes,Psittaculidae (Old World Parrots),, +11754,species,rodpar1,Rodrigues Parrot,Necopsittacus rodricanus,Psittaciformes,Psittaculidae (Old World Parrots),, +11755,species,patpar1,Painted Tiger-Parrot,Psittacella picta,Psittaciformes,Psittaculidae (Old World Parrots),, +11756,issf,paitip1,Painted Tiger-Parrot (Snow Mountains),Psittacella picta lorentzi,Psittaciformes,Psittaculidae (Old World Parrots),,patpar1 +11757,issf,paitip2,Painted Tiger-Parrot (Eastern),Psittacella picta picta/excelsa,Psittaciformes,Psittaculidae (Old World Parrots),,patpar1 +11760,species,brtpar2,Brehm's Tiger-Parrot,Psittacella brehmii,Psittaciformes,Psittaculidae (Old World Parrots),, +11765,species,motpar1,Modest Tiger-Parrot,Psittacella modesta,Psittaciformes,Psittaculidae (Old World Parrots),, +11769,species,matpar1,Madarasz's Tiger-Parrot,Psittacella madaraszi,Psittaciformes,Psittaculidae (Old World Parrots),, +11774,spuh,tiger-2,tiger-parrot sp.,Psittacella sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +11775,species,bllpar1,Black-lored Parrot,Tanygnathus gramineus,Psittaciformes,Psittaculidae (Old World Parrots),, +11776,species,grbpar1,Great-billed Parrot,Tanygnathus megalorynchos,Psittaciformes,Psittaculidae (Old World Parrots),, +11782,species,blnpar1,Blue-naped Parrot,Tanygnathus lucionensis,Psittaciformes,Psittaculidae (Old World Parrots),, +11787,species,azrpar1,Azure-rumped Parrot,Tanygnathus sumatranus,Psittaciformes,Psittaculidae (Old World Parrots),, +11794,species,gropar1,Ground Parrot,Pezoporus wallicus,Psittaciformes,Psittaculidae (Old World Parrots),, +11795,issf,gropar2,Ground Parrot (Western),Pezoporus wallicus flaviventris,Psittaciformes,Psittaculidae (Old World Parrots),,gropar1 +11796,issf,gropar3,Ground Parrot (Eastern),Pezoporus wallicus wallicus,Psittaciformes,Psittaculidae (Old World Parrots),,gropar1 +11797,species,nigpar2,Night Parrot,Pezoporus occidentalis,Psittaciformes,Psittaculidae (Old World Parrots),, +11798,species,yeblor2,Yellow-billed Lorikeet,Neopsittacus musschenbroekii,Psittaciformes,Psittaculidae (Old World Parrots),, +11801,species,orblor1,Orange-billed Lorikeet,Neopsittacus pullicauda,Psittaciformes,Psittaculidae (Old World Parrots),, +11805,slash,y00874,Yellow-billed/Orange-billed Lorikeet,Neopsittacus musschenbroekii/pullicauda,Psittaciformes,Psittaculidae (Old World Parrots),, +11806,species,boupar2,Bourke's Parrot,Neophema bourkii,Psittaciformes,Psittaculidae (Old World Parrots),, +11807,species,blwpar3,Blue-winged Parrot,Neophema chrysostoma,Psittaciformes,Psittaculidae (Old World Parrots),, +11808,species,elepar1,Elegant Parrot,Neophema elegans,Psittaciformes,Psittaculidae (Old World Parrots),, +11809,species,rocpar1,Rock Parrot,Neophema petrophila,Psittaciformes,Psittaculidae (Old World Parrots),, +11810,species,orbpar1,Orange-bellied Parrot,Neophema chrysogaster,Psittaciformes,Psittaculidae (Old World Parrots),, +11811,species,turpar1,Turquoise Parrot,Neophema pulchella,Psittaciformes,Psittaculidae (Old World Parrots),, +11812,species,sccpar1,Scarlet-chested Parrot,Neophema splendida,Psittaciformes,Psittaculidae (Old World Parrots),, +11813,spuh,neophe1,Neophema sp.,Neophema sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +11814,species,swipar1,Swift Parrot,Lathamus discolor,Psittaciformes,Psittaculidae (Old World Parrots),, +11815,species,crspar1,Crimson Shining-Parrot,Prosopeia splendens,Psittaciformes,Psittaculidae (Old World Parrots),, +11816,species,respar1,Red Shining-Parrot,Prosopeia tabuensis,Psittaciformes,Psittaculidae (Old World Parrots),, +11819,species,maspar2,Masked Shining-Parrot,Prosopeia personata,Psittaciformes,Psittaculidae (Old World Parrots),, +11820,species,horpar2,Horned Parakeet,Eunymphicus cornutus,Psittaciformes,Psittaculidae (Old World Parrots),, +11821,species,horpar3,Ouvea Parakeet,Eunymphicus uvaeensis,Psittaciformes,Psittaculidae (Old World Parrots),, +11822,species,raipar1,Raiatea Parakeet,Cyanoramphus ulietanus,Psittaciformes,Psittaculidae (Old World Parrots),, +11823,species,blfpar2,Black-fronted Parakeet,Cyanoramphus zealandicus,Psittaciformes,Psittaculidae (Old World Parrots),, +11824,species,antpar1,Antipodes Parakeet,Cyanoramphus unicolor,Psittaciformes,Psittaculidae (Old World Parrots),, +11825,species,refpar4,Red-crowned Parakeet,Cyanoramphus novaezelandiae,Psittaciformes,Psittaculidae (Old World Parrots),, +11830,species,reipar1,Reischek's Parakeet,Cyanoramphus hochstetteri,Psittaciformes,Psittaculidae (Old World Parrots),, +11831,species,necpar1,New Caledonian Parakeet,Cyanoramphus saisseti,Psittaciformes,Psittaculidae (Old World Parrots),, +11832,species,noipar1,Norfolk Island Parakeet,Cyanoramphus cookii,Psittaciformes,Psittaculidae (Old World Parrots),, +11833,species,yefpar3,Yellow-crowned Parakeet,Cyanoramphus auriceps,Psittaciformes,Psittaculidae (Old World Parrots),, +11834,species,chipar1,Chatham Islands Parakeet,Cyanoramphus forbesi,Psittaciformes,Psittaculidae (Old World Parrots),, +11835,species,malpar2,Malherbe's Parakeet,Cyanoramphus malherbi,Psittaciformes,Psittaculidae (Old World Parrots),, +11836,spuh,cyanor1,Cyanoramphus sp.,Cyanoramphus sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +11837,species,polpar1,Australian Ringneck,Barnardius zonarius,Psittaciformes,Psittaculidae (Old World Parrots),, +11838,issf,polpar3,Australian Ringneck (Twenty-eight),Barnardius zonarius semitorquatus,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 +11839,issf,polpar2,Australian Ringneck (Port Lincoln),Barnardius zonarius zonarius,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 +11840,issf,malrin2,Australian Ringneck (Mallee),Barnardius zonarius barnardi,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 +11841,issf,malrin3,Australian Ringneck (Cloncurry),Barnardius zonarius macgillivrayi,Psittaciformes,Psittaculidae (Old World Parrots),,polpar1 +11842,species,greros2,Green Rosella,Platycercus caledonicus,Psittaciformes,Psittaculidae (Old World Parrots),, +11843,species,criros2,Crimson Rosella,Platycercus elegans,Psittaciformes,Psittaculidae (Old World Parrots),, +11844,issf,criros1,Crimson Rosella (Crimson),Platycercus elegans [elegans Group],Psittaciformes,Psittaculidae (Old World Parrots),,criros2 +11848,issf,yelros1,Crimson Rosella (Yellow),Platycercus elegans flaveolus,Psittaciformes,Psittaculidae (Old World Parrots),,criros2 +11849,intergrade,criros3,Crimson Rosella (Crimson x Yellow),Platycercus elegans [elegans Group] x flaveolus,Psittaciformes,Psittaculidae (Old World Parrots),,criros2 +11850,issf,aderos1,Crimson Rosella (Adelaide),Platycercus elegans adelaidae/subadelaidae,Psittaciformes,Psittaculidae (Old World Parrots),,criros2 +11853,species,norros1,Northern Rosella,Platycercus venustus,Psittaciformes,Psittaculidae (Old World Parrots),, +11854,species,easros1,Eastern Rosella,Platycercus eximius,Psittaciformes,Psittaculidae (Old World Parrots),, +11858,hybrid,x00807,Green x Eastern Rosella (hybrid),Platycercus caledonicus x eximius,Psittaciformes,Psittaculidae (Old World Parrots),, +11859,hybrid,x00808,Crimson x Eastern Rosella (hybrid),Platycercus elegans x eximius,Psittaciformes,Psittaculidae (Old World Parrots),, +11860,species,pahros1,Pale-headed Rosella,Platycercus adscitus,Psittaciformes,Psittaculidae (Old World Parrots),, +11863,hybrid,x00707,Eastern x Pale-headed Rosella (hybrid),Platycercus eximius x adscitus,Psittaciformes,Psittaculidae (Old World Parrots),, +11864,hybrid,x00956,Crimson x Pale-headed Rosella (hybrid),Platycercus elegans x adscitus,Psittaciformes,Psittaculidae (Old World Parrots),, +11865,species,wesros1,Western Rosella,Platycercus icterotis,Psittaciformes,Psittaculidae (Old World Parrots),, +11868,species,bluebo1,Greater Bluebonnet,Northiella haematogaster,Psittaciformes,Psittaculidae (Old World Parrots),, +11869,issf,bluebo2,Greater Bluebonnet (Yellow-vented),Northiella haematogaster haematogaster/pallescens,Psittaciformes,Psittaculidae (Old World Parrots),,bluebo1 +11872,issf,bluebo3,Greater Bluebonnet (Red-vented),Northiella haematogaster haematorrhoa,Psittaciformes,Psittaculidae (Old World Parrots),,bluebo1 +11873,species,bluebo4,Naretha Bluebonnet,Northiella narethae,Psittaciformes,Psittaculidae (Old World Parrots),, +11874,species,rerpar1,Red-rumped Parrot,Psephotus haematonotus,Psittaciformes,Psittaculidae (Old World Parrots),, +11877,species,mulpar1,Mulga Parrot,Psephotus varius,Psittaciformes,Psittaculidae (Old World Parrots),, +11878,species,hoopar1,Hooded Parrot,Psephotus dissimilis,Psittaciformes,Psittaculidae (Old World Parrots),, +11879,species,gospar1,Golden-shouldered Parrot,Psephotus chrysopterygius,Psittaciformes,Psittaculidae (Old World Parrots),, +11880,species,parpar2,Paradise Parrot,Psephotus pulcherrimus,Psittaciformes,Psittaculidae (Old World Parrots),, +11881,species,recpar1,Red-capped Parrot,Purpureicephalus spurius,Psittaciformes,Psittaculidae (Old World Parrots),, +11882,species,obfpar1,Orange-breasted Fig-Parrot,Cyclopsitta gulielmitertii,Psittaciformes,Psittaculidae (Old World Parrots),, +11883,issf,orbfip1,Orange-breasted Fig-Parrot (Dusky-cheeked),Cyclopsitta gulielmitertii [melanogenia Group],Psittaciformes,Psittaculidae (Old World Parrots),,obfpar1 +11887,issf,orbfip2,Orange-breasted Fig-Parrot (Blue-fronted),Cyclopsitta gulielmitertii gulielmitertii,Psittaciformes,Psittaculidae (Old World Parrots),,obfpar1 +11888,issf,orbfip3,Orange-breasted Fig-Parrot (Black-fronted),Cyclopsitta gulielmitertii nigrifrons,Psittaciformes,Psittaculidae (Old World Parrots),,obfpar1 +11889,issf,orbfip4,Orange-breasted Fig-Parrot (Creamy-breasted),Cyclopsitta gulielmitertii amabilis/ramuensis,Psittaciformes,Psittaculidae (Old World Parrots),,obfpar1 +11892,species,defpar1,Double-eyed Fig-Parrot,Cyclopsitta diophthalma,Psittaciformes,Psittaculidae (Old World Parrots),, +11893,issf,doefip1,Double-eyed Fig-Parrot (Double-eyed),Cyclopsitta diophthalma [diophthalma Group],Psittaciformes,Psittaculidae (Old World Parrots),,defpar1 +11901,issf,doefip2,Double-eyed Fig-Parrot (Coxen's),Cyclopsitta diophthalma coxeni,Psittaciformes,Psittaculidae (Old World Parrots),,defpar1 +11902,species,lafpar1,Large Fig-Parrot,Psittaculirostris desmarestii,Psittaciformes,Psittaculidae (Old World Parrots),, +11903,issf,larfip1,Large Fig-Parrot (Large),Psittaculirostris desmarestii [desmarestii Group],Psittaciformes,Psittaculidae (Old World Parrots),,lafpar1 +11908,issf,larfip2,Large Fig-Parrot (Yellow-naped),Psittaculirostris desmarestii godmani,Psittaciformes,Psittaculidae (Old World Parrots),,lafpar1 +11909,issf,larfip3,Large Fig-Parrot (Red-faced),Psittaculirostris desmarestii cervicalis,Psittaciformes,Psittaculidae (Old World Parrots),,lafpar1 +11910,species,edfpar1,Edwards's Fig-Parrot,Psittaculirostris edwardsii,Psittaciformes,Psittaculidae (Old World Parrots),, +11911,species,safpar1,Salvadori's Fig-Parrot,Psittaculirostris salvadorii,Psittaciformes,Psittaculidae (Old World Parrots),, +11912,species,guaiab1,Guaiabero,Bolbopsittacus lunulatus,Psittaciformes,Psittaculidae (Old World Parrots),, +11917,species,budger,Budgerigar,Melopsittacus undulatus,Psittaciformes,Psittaculidae (Old World Parrots),, +11918,domestic,budger1,Budgerigar (Domestic type),Melopsittacus undulatus (Domestic type),Psittaciformes,Psittaculidae (Old World Parrots),, +11919,species,plflor1,Plum-faced Lorikeet,Oreopsittacus arfaki,Psittaciformes,Psittaculidae (Old World Parrots),, +11923,species,pallor1,Palm Lorikeet,Charmosyna palmarum,Psittaciformes,Psittaculidae (Old World Parrots),, +11924,species,reclor1,Red-chinned Lorikeet,Charmosyna rubrigularis,Psittaciformes,Psittaculidae (Old World Parrots),, +11925,species,meelor1,Meek's Lorikeet,Charmosyna meeki,Psittaciformes,Psittaculidae (Old World Parrots),, +11926,species,blflor1,Blue-fronted Lorikeet,Charmosyna toxopei,Psittaciformes,Psittaculidae (Old World Parrots),, +11927,species,strlor1,Striated Lorikeet,Charmosyna multistriata,Psittaciformes,Psittaculidae (Old World Parrots),, +11928,species,pyglor1,Pygmy Lorikeet,Charmosyna wilhelminae,Psittaciformes,Psittaculidae (Old World Parrots),, +11929,species,reflor2,Red-fronted Lorikeet,Charmosyna rubronotata,Psittaciformes,Psittaculidae (Old World Parrots),, +11932,species,reflor1,Red-flanked Lorikeet,Charmosyna placentis,Psittaciformes,Psittaculidae (Old World Parrots),, +11938,species,neclor1,New Caledonian Lorikeet,Charmosyna diadema,Psittaciformes,Psittaculidae (Old World Parrots),, +11939,species,retlor1,Red-throated Lorikeet,Charmosyna amabilis,Psittaciformes,Psittaculidae (Old World Parrots),, +11940,species,duclor1,Duchess Lorikeet,Charmosyna margarethae,Psittaciformes,Psittaculidae (Old World Parrots),, +11941,species,failor1,Fairy Lorikeet,Charmosyna pulchella,Psittaciformes,Psittaculidae (Old World Parrots),, +11944,species,joslor1,Josephine's Lorikeet,Charmosyna josefinae,Psittaciformes,Psittaculidae (Old World Parrots),, +11948,species,paplor1,Papuan Lorikeet,Charmosyna papou,Psittaciformes,Psittaculidae (Old World Parrots),, +11949,issf,paplor2,Papuan Lorikeet (Vogelkop),Charmosyna papou papou,Psittaciformes,Psittaculidae (Old World Parrots),,paplor1 +11950,issf,paplor3,Papuan Lorikeet (Stella's),Charmosyna papou [stellae Group],Psittaciformes,Psittaculidae (Old World Parrots),,paplor1 +11954,spuh,charmo1,Charmosyna sp.,Charmosyna sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +11955,species,collor1,Collared Lory,Phigys solitarius,Psittaciformes,Psittaculidae (Old World Parrots),, +11956,species,blclor2,Blue-crowned Lorikeet,Vini australis,Psittaciformes,Psittaculidae (Old World Parrots),, +11957,species,kuhlor1,Kuhl's Lorikeet,Vini kuhlii,Psittaciformes,Psittaculidae (Old World Parrots),, +11958,species,stelor1,Stephen's Lorikeet,Vini stepheni,Psittaciformes,Psittaculidae (Old World Parrots),, +11959,species,blulor1,Blue Lorikeet,Vini peruviana,Psittaciformes,Psittaculidae (Old World Parrots),, +11960,species,ultlor1,Ultramarine Lorikeet,Vini ultramarina,Psittaciformes,Psittaculidae (Old World Parrots),, +11961,species,blalor1,Black Lory,Chalcopsitta atra,Psittaciformes,Psittaculidae (Old World Parrots),, +11965,species,brolor1,Brown Lory,Chalcopsitta duivenbodei,Psittaciformes,Psittaculidae (Old World Parrots),, +11968,species,yeslor1,Yellow-streaked Lory,Chalcopsitta scintillata,Psittaciformes,Psittaculidae (Old World Parrots),, +11972,species,carlor1,Cardinal Lory,Chalcopsitta cardinalis,Psittaciformes,Psittaculidae (Old World Parrots),, +11973,species,chalor1,Chattering Lory,Lorius garrulus,Psittaciformes,Psittaculidae (Old World Parrots),, +11977,species,publor1,Purple-bellied Lory,Lorius hypoinochrous,Psittaciformes,Psittaculidae (Old World Parrots),, +11981,species,punlor1,Purple-naped Lory,Lorius domicella,Psittaciformes,Psittaculidae (Old World Parrots),, +11982,species,blclor1,Black-capped Lory,Lorius lory,Psittaciformes,Psittaculidae (Old World Parrots),, +11990,species,whnlor2,White-naped Lory,Lorius albidinucha,Psittaciformes,Psittaculidae (Old World Parrots),, +11991,species,yeblor1,Yellow-bibbed Lory,Lorius chlorocercus,Psittaciformes,Psittaculidae (Old World Parrots),, +11992,species,muslor1,Musk Lorikeet,Glossopsitta concinna,Psittaciformes,Psittaculidae (Old World Parrots),, +11993,species,litlor1,Little Lorikeet,Glossopsitta pusilla,Psittaciformes,Psittaculidae (Old World Parrots),, +11994,species,puclor1,Purple-crowned Lorikeet,Glossopsitta porphyrocephala,Psittaciformes,Psittaculidae (Old World Parrots),, +11995,species,varlor1,Varied Lorikeet,Psitteuteles versicolor,Psittaciformes,Psittaculidae (Old World Parrots),, +11996,species,irilor1,Iris Lorikeet,Psitteuteles iris,Psittaciformes,Psittaculidae (Old World Parrots),, +12000,species,gollor1,Goldie's Lorikeet,Psitteuteles goldiei,Psittaciformes,Psittaculidae (Old World Parrots),, +12001,species,rablor1,Red-and-blue Lory,Eos histrio,Psittaciformes,Psittaculidae (Old World Parrots),, +12005,species,vinlor1,Violet-necked Lory,Eos squamata,Psittaciformes,Psittaculidae (Old World Parrots),, +12009,species,redlor1,Red Lory,Eos bornea,Psittaciformes,Psittaculidae (Old World Parrots),, +12012,species,blslor1,Blue-streaked Lory,Eos reticulata,Psittaciformes,Psittaculidae (Old World Parrots),, +12013,species,blwlor1,Black-winged Lory,Eos cyanogenia,Psittaciformes,Psittaculidae (Old World Parrots),, +12014,species,blelor1,Blue-eared Lory,Eos semilarvata,Psittaciformes,Psittaculidae (Old World Parrots),, +12015,species,duslor1,Dusky Lory,Pseudeos fuscata,Psittaciformes,Psittaculidae (Old World Parrots),, +12016,species,ornlor1,Ornate Lorikeet,Trichoglossus ornatus,Psittaciformes,Psittaculidae (Old World Parrots),, +12017,species,railor3,Sunset Lorikeet,Trichoglossus forsteni,Psittaciformes,Psittaculidae (Old World Parrots),, +12022,species,railor8,Leaf Lorikeet,Trichoglossus weberi,Psittaciformes,Psittaculidae (Old World Parrots),, +12023,species,railor2,Marigold Lorikeet,Trichoglossus capistratus,Psittaciformes,Psittaculidae (Old World Parrots),, +12027,species,railor4,Coconut Lorikeet,Trichoglossus haematodus,Psittaciformes,Psittaculidae (Old World Parrots),, +12028,issf,railor6,Coconut Lorikeet (Biak),Trichoglossus haematodus rosenbergii,Psittaciformes,Psittaculidae (Old World Parrots),,railor4 +12029,issf,coclor1,Coconut Lorikeet (Coconut),Trichoglossus haematodus [haematodus Group],Psittaciformes,Psittaculidae (Old World Parrots),,railor4 +12039,species,railor7,Red-collared Lorikeet,Trichoglossus rubritorquis,Psittaciformes,Psittaculidae (Old World Parrots),, +12040,species,railor5,Rainbow Lorikeet,Trichoglossus moluccanus,Psittaciformes,Psittaculidae (Old World Parrots),, +12043,hybrid,x00809,Musk x Rainbow Lorikeet (hybrid),Glossopsitta concinna x Trichoglossus haematodus,Psittaciformes,Psittaculidae (Old World Parrots),, +12044,hybrid,x00957,Red-collared x Rainbow Lorikeet (hybrid),Trichoglossus rubritorquis x moluccanus,Psittaciformes,Psittaculidae (Old World Parrots),, +12045,slash,y01142,Red-collared/Rainbow Lorikeet,Trichoglossus rubritorquis/moluccanus,Psittaciformes,Psittaculidae (Old World Parrots),, +12046,spuh,railor1,rainbow lorikeet sp.,Trichoglossus sp. (rainbow lorikeet complex),Psittaciformes,Psittaculidae (Old World Parrots),, +12047,species,olhlor1,Olive-headed Lorikeet,Trichoglossus euteles,Psittaciformes,Psittaculidae (Old World Parrots),, +12048,species,yaglor1,Yellow-and-green Lorikeet,Trichoglossus flavoviridis,Psittaciformes,Psittaculidae (Old World Parrots),, +12049,issf,yaglor2,Yellow-and-green Lorikeet (Mustard-capped),Trichoglossus flavoviridis meyeri,Psittaciformes,Psittaculidae (Old World Parrots),,yaglor1 +12050,issf,yaglor3,Yellow-and-green Lorikeet (Yellow-and-green),Trichoglossus flavoviridis flavoviridis,Psittaciformes,Psittaculidae (Old World Parrots),,yaglor1 +12051,species,minlor1,Mindanao Lorikeet,Trichoglossus johnstoniae,Psittaciformes,Psittaculidae (Old World Parrots),, +12052,species,pohlor1,Pohnpei Lorikeet,Trichoglossus rubiginosus,Psittaciformes,Psittaculidae (Old World Parrots),, +12053,species,scblor1,Scaly-breasted Lorikeet,Trichoglossus chlorolepidotus,Psittaciformes,Psittaculidae (Old World Parrots),, +12054,hybrid,x00810,Rainbow x Scaly-breasted Lorikeet (hybrid),Trichoglossus haematodus x chlorolepidotus,Psittaciformes,Psittaculidae (Old World Parrots),, +12055,slash,y01035,Rainbow/Scaly-breasted Lorikeet,Trichoglossus haematodus/chlorolepidotus,Psittaciformes,Psittaculidae (Old World Parrots),, +12056,hybrid,x00856,lorikeet sp. (Musk/Rainbow/Scaly-breasted Lorikeet hybrid),Glossopsitta/Trichoglossus sp. (hybrid),Psittaciformes,Psittaculidae (Old World Parrots),, +12057,spuh,y00637,lorikeet sp.,Psittaculidae sp. (lorikeet sp.),Psittaciformes,Psittaculidae (Old World Parrots),, +12058,species,vehpar1,Vernal Hanging-Parrot,Loriculus vernalis,Psittaciformes,Psittaculidae (Old World Parrots),, +12059,species,cehpar1,Sri Lanka Hanging-Parrot,Loriculus beryllinus,Psittaciformes,Psittaculidae (Old World Parrots),, +12060,species,phihap1,Philippine Hanging-Parrot,Loriculus philippensis,Psittaciformes,Psittaculidae (Old World Parrots),, +12071,species,camhap1,Camiguin Hanging-Parrot,Loriculus camiguinensis,Psittaciformes,Psittaculidae (Old World Parrots),, +12072,species,bchpar1,Blue-crowned Hanging-Parrot,Loriculus galgulus,Psittaciformes,Psittaculidae (Old World Parrots),, +12073,species,suhpar1,Sulawesi Hanging-Parrot,Loriculus stigmatus,Psittaciformes,Psittaculidae (Old World Parrots),, +12074,species,sulhap1,Sula Hanging-Parrot,Loriculus sclateri,Psittaciformes,Psittaculidae (Old World Parrots),, +12075,species,mohpar1,Moluccan Hanging-Parrot,Loriculus amabilis,Psittaciformes,Psittaculidae (Old World Parrots),, +12076,species,sahpar2,Sangihe Hanging-Parrot,Loriculus catamene,Psittaciformes,Psittaculidae (Old World Parrots),, +12077,species,paphap1,Papuan Hanging-Parrot,Loriculus aurantiifrons,Psittaciformes,Psittaculidae (Old World Parrots),, +12081,species,gfhpar1,Green-fronted Hanging-Parrot,Loriculus tener,Psittaciformes,Psittaculidae (Old World Parrots),, +12082,species,pyghap1,Pygmy Hanging-Parrot,Loriculus exilis,Psittaciformes,Psittaculidae (Old World Parrots),, +12083,species,ythpar1,Yellow-throated Hanging-Parrot,Loriculus pusillus,Psittaciformes,Psittaculidae (Old World Parrots),, +12084,species,wahpar2,Wallace's Hanging-Parrot,Loriculus flosculus,Psittaciformes,Psittaculidae (Old World Parrots),, +12085,spuh,hangin1,hanging-parrot sp.,Loriculus sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +12086,species,blclov2,Black-collared Lovebird,Agapornis swindernianus,Psittaciformes,Psittaculidae (Old World Parrots),, +12090,species,gyhlov1,Gray-headed Lovebird,Agapornis canus,Psittaciformes,Psittaculidae (Old World Parrots),, +12093,species,rehlov1,Red-headed Lovebird,Agapornis pullarius,Psittaciformes,Psittaculidae (Old World Parrots),, +12096,species,blwlov1,Black-winged Lovebird,Agapornis taranta,Psittaciformes,Psittaculidae (Old World Parrots),, +12097,species,peflov,Rosy-faced Lovebird,Agapornis roseicollis,Psittaciformes,Psittaculidae (Old World Parrots),, +12100,species,fislov1,Fischer's Lovebird,Agapornis fischeri,Psittaciformes,Psittaculidae (Old World Parrots),, +12101,species,yeclov,Yellow-collared Lovebird,Agapornis personatus,Psittaciformes,Psittaculidae (Old World Parrots),, +12102,hybrid,x00671,Fischer's x Yellow-collared Lovebird (hybrid),Agapornis fischeri x personatus,Psittaciformes,Psittaculidae (Old World Parrots),, +12103,slash,y00791,Fischer's/Yellow-collared Lovebird,Agapornis fischeri/personatus,Psittaciformes,Psittaculidae (Old World Parrots),, +12104,species,lillov1,Lilian's Lovebird,Agapornis lilianae,Psittaciformes,Psittaculidae (Old World Parrots),, +12105,species,blclov1,Black-cheeked Lovebird,Agapornis nigrigenis,Psittaciformes,Psittaculidae (Old World Parrots),, +12106,spuh,lovebi1,lovebird sp.,Agapornis sp.,Psittaciformes,Psittaculidae (Old World Parrots),, +12107,species,grepar,Gray Parrot,Psittacus erithacus,Psittaciformes,Psittacidae (New World and African Parrots),, +12108,issf,grypar1,Gray Parrot (Timneh),Psittacus erithacus timneh/princeps,Psittaciformes,Psittacidae (New World and African Parrots),,grepar +12111,issf,grypar2,Gray Parrot (Gray),Psittacus erithacus erithacus,Psittaciformes,Psittacidae (New World and African Parrots),,grepar +12112,species,brnpar1,Brown-necked Parrot,Poicephalus fuscicollis,Psittaciformes,Psittacidae (New World and African Parrots),, +12113,issf,bnnpar3,Brown-necked Parrot (Brown-necked),Poicephalus fuscicollis fuscicollis,Psittaciformes,Psittacidae (New World and African Parrots),,brnpar1 +12114,issf,bnnpar4,Brown-necked Parrot (Gray-headed),Poicephalus fuscicollis suahelicus,Psittaciformes,Psittacidae (New World and African Parrots),,brnpar1 +12115,species,bnnpar2,Cape Parrot,Poicephalus robustus,Psittaciformes,Psittacidae (New World and African Parrots),, +12116,species,refpar5,Red-fronted Parrot,Poicephalus gulielmi,Psittaciformes,Psittacidae (New World and African Parrots),, +12117,issf,refpar6,Red-fronted Parrot (Guinean),Poicephalus gulielmi fantiensis,Psittaciformes,Psittacidae (New World and African Parrots),,refpar5 +12118,issf,refpar7,Red-fronted Parrot (Red-fronted),Poicephalus gulielmi gulielmi/massaicus,Psittaciformes,Psittacidae (New World and African Parrots),,refpar5 +12121,species,meypar1,Meyer's Parrot,Poicephalus meyeri,Psittaciformes,Psittacidae (New World and African Parrots),, +12128,species,ruepar1,Rüppell's Parrot,Poicephalus rueppellii,Psittaciformes,Psittacidae (New World and African Parrots),, +12129,species,brhpar2,Brown-headed Parrot,Poicephalus cryptoxanthus,Psittaciformes,Psittacidae (New World and African Parrots),, +12132,species,ninpar1,Niam-Niam Parrot,Poicephalus crassus,Psittaciformes,Psittacidae (New World and African Parrots),, +12133,species,rebpar1,Red-bellied Parrot,Poicephalus rufiventris,Psittaciformes,Psittacidae (New World and African Parrots),, +12136,species,senpar,Senegal Parrot,Poicephalus senegalus,Psittaciformes,Psittacidae (New World and African Parrots),, +12139,species,yefpar4,Yellow-fronted Parrot,Poicephalus flavifrons,Psittaciformes,Psittacidae (New World and African Parrots),, +12140,spuh,poicep1,Poicephalus sp.,Poicephalus sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12141,species,litpar2,Lilac-tailed Parrotlet,Touit batavicus,Psittaciformes,Psittacidae (New World and African Parrots),, +12142,species,scspar1,Scarlet-shouldered Parrotlet,Touit huetii,Psittaciformes,Psittacidae (New World and African Parrots),, +12143,species,refpar1,Red-fronted Parrotlet,Touit costaricensis,Psittaciformes,Psittacidae (New World and African Parrots),, +12144,species,bufpar1,Blue-fronted Parrotlet,Touit dilectissimus,Psittaciformes,Psittacidae (New World and African Parrots),, +12145,species,sarpar2,Sapphire-rumped Parrotlet,Touit purpuratus,Psittaciformes,Psittacidae (New World and African Parrots),, +12148,species,brbpar1,Brown-backed Parrotlet,Touit melanonotus,Psittaciformes,Psittacidae (New World and African Parrots),, +12149,species,gotpar2,Golden-tailed Parrotlet,Touit surdus,Psittaciformes,Psittacidae (New World and African Parrots),, +12150,species,spwpar2,Spot-winged Parrotlet,Touit stictopterus,Psittaciformes,Psittacidae (New World and African Parrots),, +12151,spuh,touit1,Touit sp.,Touit sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12152,species,gyhpar1,Gray-hooded Parakeet,Psilopsiagon aymara,Psittaciformes,Psittacidae (New World and African Parrots),, +12153,species,moupar2,Mountain Parakeet,Psilopsiagon aurifrons,Psittaciformes,Psittacidae (New World and African Parrots),, +12158,species,barpar1,Barred Parakeet,Bolborhynchus lineola,Psittaciformes,Psittacidae (New World and African Parrots),, +12161,species,rufpar1,Rufous-fronted Parakeet,Bolborhynchus ferrugineifrons,Psittaciformes,Psittacidae (New World and African Parrots),, +12162,species,andpar1,Andean Parakeet,Bolborhynchus orbygnesius,Psittaciformes,Psittacidae (New World and African Parrots),, +12163,slash,y00875,Barred/Andean Parakeet,Bolborhynchus lineola/orbygnesius,Psittaciformes,Psittacidae (New World and African Parrots),, +12164,species,teppar1,Tepui Parrotlet,Nannopsittaca panychlora,Psittaciformes,Psittacidae (New World and African Parrots),, +12165,species,amapar1,Amazonian Parrotlet,Nannopsittaca dachilleae,Psittaciformes,Psittacidae (New World and African Parrots),, +12166,species,monpar,Monk Parakeet,Myiopsitta monachus,Psittaciformes,Psittacidae (New World and African Parrots),, +12167,issf,monpar1,Monk Parakeet (Monk),Myiopsitta monachus [monachus Group],Psittaciformes,Psittacidae (New World and African Parrots),,monpar +12171,issf,monpar2,Monk Parakeet (Cliff),Myiopsitta monachus luchsi,Psittaciformes,Psittacidae (New World and African Parrots),,monpar +12172,species,tuipar1,Tui Parakeet,Brotogeris sanctithomae,Psittaciformes,Psittacidae (New World and African Parrots),, +12175,species,plapar1,Plain Parakeet,Brotogeris tirica,Psittaciformes,Psittacidae (New World and African Parrots),, +12176,species,whwpar,White-winged Parakeet,Brotogeris versicolurus,Psittaciformes,Psittacidae (New World and African Parrots),, +12177,species,yecpar,Yellow-chevroned Parakeet,Brotogeris chiriri,Psittaciformes,Psittacidae (New World and African Parrots),, +12180,hybrid,wwxpar1,White-winged x Yellow-chevroned Parakeet (hybrid),Brotogeris versicolurus x chiriri,Psittaciformes,Psittacidae (New World and African Parrots),, +12181,slash,y00483,White-winged/Yellow-chevroned Parakeet,Brotogeris versicolurus/chiriri,Psittaciformes,Psittacidae (New World and African Parrots),, +12182,species,gycpar1,Gray-cheeked Parakeet,Brotogeris pyrrhoptera,Psittaciformes,Psittacidae (New World and African Parrots),, +12183,species,orcpar,Orange-chinned Parakeet,Brotogeris jugularis,Psittaciformes,Psittacidae (New World and African Parrots),, +12186,species,cowpar1,Cobalt-winged Parakeet,Brotogeris cyanoptera,Psittaciformes,Psittacidae (New World and African Parrots),, +12190,species,gowpar2,Golden-winged Parakeet,Brotogeris chrysoptera,Psittaciformes,Psittacidae (New World and African Parrots),, +12196,spuh,brotog1,Brotogeris sp.,Brotogeris sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12197,species,recpar3,Pileated Parrot,Pionopsitta pileata,Psittaciformes,Psittacidae (New World and African Parrots),, +12198,species,blbpar4,Blue-bellied Parrot,Triclaria malachitacea,Psittaciformes,Psittacidae (New World and African Parrots),, +12199,species,rufpar2,Rusty-faced Parrot,Hapalopsittaca amazonina,Psittaciformes,Psittacidae (New World and African Parrots),, +12203,species,inwpar1,Indigo-winged Parrot,Hapalopsittaca fuertesi,Psittaciformes,Psittacidae (New World and African Parrots),, +12204,species,refpar2,Red-faced Parrot,Hapalopsittaca pyrrhops,Psittaciformes,Psittacidae (New World and African Parrots),, +12205,species,blwpar1,Black-winged Parrot,Hapalopsittaca melanotis,Psittaciformes,Psittacidae (New World and African Parrots),, +12208,species,brhpar1,Brown-hooded Parrot,Pyrilia haematotis,Psittaciformes,Psittacidae (New World and African Parrots),, +12211,species,rofpar2,Rose-faced Parrot,Pyrilia pulchra,Psittaciformes,Psittacidae (New World and African Parrots),, +12212,species,sahpar1,Saffron-headed Parrot,Pyrilia pyrilia,Psittaciformes,Psittacidae (New World and African Parrots),, +12213,species,orcpar2,Orange-cheeked Parrot,Pyrilia barrabandi,Psittaciformes,Psittacidae (New World and African Parrots),, +12216,species,caipar2,Caica Parrot,Pyrilia caica,Psittaciformes,Psittacidae (New World and African Parrots),, +12217,species,balpar1,Bald Parrot,Pyrilia aurantiocephala,Psittaciformes,Psittacidae (New World and African Parrots),, +12218,species,vulpar1,Vulturine Parrot,Pyrilia vulturina,Psittaciformes,Psittacidae (New World and African Parrots),, +12219,spuh,pyrili1,Pyrilia sp.,Pyrilia sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12220,species,duspar1,Dusky Parrot,Pionus fuscus,Psittaciformes,Psittacidae (New World and African Parrots),, +12221,species,rebpar2,Red-billed Parrot,Pionus sordidus,Psittaciformes,Psittacidae (New World and African Parrots),, +12228,species,schpar1,Scaly-headed Parrot,Pionus maximiliani,Psittaciformes,Psittacidae (New World and African Parrots),, +12233,species,spfpar1,Speckle-faced Parrot,Pionus tumultuosus,Psittaciformes,Psittacidae (New World and African Parrots),, +12234,issf,spfpar2,Speckle-faced Parrot (White-capped),Pionus tumultuosus seniloides,Psittaciformes,Psittacidae (New World and African Parrots),,spfpar1 +12235,issf,spfpar3,Speckle-faced Parrot (Plum-crowned),Pionus tumultuosus tumultuosus,Psittaciformes,Psittacidae (New World and African Parrots),,spfpar1 +12236,species,blhpar1,Blue-headed Parrot,Pionus menstruus,Psittaciformes,Psittacidae (New World and African Parrots),, +12237,issf,buhpar1,Blue-headed Parrot (Blue-headed),Pionus menstruus menstruus/rubrigularis,Psittaciformes,Psittacidae (New World and African Parrots),,blhpar1 +12240,issf,buhpar2,Blue-headed Parrot (Reichenow's),Pionus menstruus reichenowi,Psittaciformes,Psittacidae (New World and African Parrots),,blhpar1 +12241,species,whcpar,White-crowned Parrot,Pionus senilis,Psittaciformes,Psittacidae (New World and African Parrots),, +12242,species,brwpar1,Bronze-winged Parrot,Pionus chalcopterus,Psittaciformes,Psittacidae (New World and African Parrots),, +12243,spuh,pionus1,Pionus sp.,Pionus sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12244,species,shtpar2,Short-tailed Parrot,Graydidascalus brachyurus,Psittaciformes,Psittacidae (New World and African Parrots),, +12245,species,yefpar5,Yellow-faced Parrot,Alipiopsitta xanthops,Psittaciformes,Psittacidae (New World and African Parrots),, +12246,species,fespar1,Festive Parrot,Amazona festiva,Psittaciformes,Psittacidae (New World and African Parrots),, +12247,issf,fespar2,Festive Parrot (Northern),Amazona festiva bodini,Psittaciformes,Psittacidae (New World and African Parrots),,fespar1 +12248,issf,fespar3,Festive Parrot (Southern),Amazona festiva festiva,Psittaciformes,Psittacidae (New World and African Parrots),,fespar1 +12249,species,vinpar1,Vinaceous-breasted Parrot,Amazona vinacea,Psittaciformes,Psittacidae (New World and African Parrots),, +12250,species,tucpar1,Tucuman Parrot,Amazona tucumana,Psittaciformes,Psittacidae (New World and African Parrots),, +12251,species,respar2,Red-spectacled Parrot,Amazona pretrei,Psittaciformes,Psittacidae (New World and African Parrots),, +12252,species,recpar,Red-crowned Parrot,Amazona viridigenalis,Psittaciformes,Psittacidae (New World and African Parrots),, +12253,species,licpar,Lilac-crowned Parrot,Amazona finschi,Psittaciformes,Psittacidae (New World and African Parrots),, +12254,hybrid,x00958,Red-crowned x Lilac-crowned Parrot (hybrid),Amazona viridigenalis x finschi,Psittaciformes,Psittacidae (New World and African Parrots),, +12255,species,relpar,Red-lored Parrot,Amazona autumnalis,Psittaciformes,Psittacidae (New World and African Parrots),, +12256,issf,relpar2,Red-lored Parrot (Yellow-cheeked),Amazona autumnalis autumnalis,Psittaciformes,Psittacidae (New World and African Parrots),,relpar +12257,issf,relpar3,Red-lored Parrot (Salvin's),Amazona autumnalis lilacina/salvini,Psittaciformes,Psittacidae (New World and African Parrots),,relpar +12260,issf,relpar4,Red-lored Parrot (Diademed),Amazona autumnalis diadema,Psittaciformes,Psittacidae (New World and African Parrots),,relpar +12261,hybrid,x00857,Red-crowned x Red-lored Parrot (hybrid),Amazona viridigenalis x autumnalis,Psittaciformes,Psittacidae (New World and African Parrots),, +12262,species,blcpar2,Blue-cheeked Parrot,Amazona dufresniana,Psittaciformes,Psittacidae (New World and African Parrots),, +12263,species,rebpar7,Red-browed Parrot,Amazona rhodocorytha,Psittaciformes,Psittacidae (New World and African Parrots),, +12264,species,renpar1,Red-necked Parrot,Amazona arausiaca,Psittaciformes,Psittacidae (New World and African Parrots),, +12265,species,marpar1,Martinique Parrot,Amazona martinicana,Psittaciformes,Psittacidae (New World and African Parrots),, +12266,species,stlpar1,St. Lucia Parrot,Amazona versicolor,Psittaciformes,Psittacidae (New World and African Parrots),, +12267,species,yenpar1,Yellow-naped Parrot,Amazona auropalliata,Psittaciformes,Psittacidae (New World and African Parrots),, +12271,species,yehpar,Yellow-headed Parrot,Amazona oratrix,Psittaciformes,Psittacidae (New World and African Parrots),, +12272,issf,yehpar2,Yellow-headed Parrot (Tres Marias Is.),Amazona oratrix tresmariae,Psittaciformes,Psittacidae (New World and African Parrots),,yehpar +12273,issf,yehpar1,Yellow-headed Parrot (Mainland),Amazona oratrix [oratrix Group],Psittaciformes,Psittacidae (New World and African Parrots),,yehpar +12277,species,ywcpar,Yellow-crowned Parrot,Amazona ochrocephala,Psittaciformes,Psittacidae (New World and African Parrots),, +12282,species,yespar1,Yellow-shouldered Parrot,Amazona barbadensis,Psittaciformes,Psittacidae (New World and African Parrots),, +12283,species,bufpar,Turquoise-fronted Parrot,Amazona aestiva,Psittaciformes,Psittacidae (New World and African Parrots),, +12286,species,blbpar1,Black-billed Parrot,Amazona agilis,Psittaciformes,Psittacidae (New World and African Parrots),, +12287,species,whfpar1,White-fronted Parrot,Amazona albifrons,Psittaciformes,Psittacidae (New World and African Parrots),, +12291,species,yelpar1,Yellow-lored Parrot,Amazona xantholora,Psittaciformes,Psittacidae (New World and African Parrots),, +12292,species,yebpar1,Yellow-billed Parrot,Amazona collaria,Psittaciformes,Psittacidae (New World and African Parrots),, +12293,slash,y00876,Black-billed/Yellow-billed Parrot,Amazona agilis/collaria,Psittaciformes,Psittacidae (New World and African Parrots),, +12294,species,cubpar1,Cuban Parrot,Amazona leucocephala,Psittaciformes,Psittacidae (New World and African Parrots),, +12295,issf,cubpar3,Cuban Parrot (Cuban),Amazona leucocephala leucocephala,Psittaciformes,Psittacidae (New World and African Parrots),,cubpar1 +12296,issf,cubpar4,Cuban Parrot (Bahamas),Amazona leucocephala bahamensis,Psittaciformes,Psittacidae (New World and African Parrots),,cubpar1 +12297,issf,cubpar5,Cuban Parrot (Cayman Is.),Amazona leucocephala caymanensis/hesterna,Psittaciformes,Psittacidae (New World and African Parrots),,cubpar1 +12300,species,hispar1,Hispaniolan Parrot,Amazona ventralis,Psittaciformes,Psittacidae (New World and African Parrots),, +12301,species,purpar1,Puerto Rican Parrot,Amazona vittata,Psittaciformes,Psittacidae (New World and African Parrots),, +12304,species,meapar,Mealy Parrot,Amazona farinosa,Psittaciformes,Psittacidae (New World and African Parrots),, +12305,issf,meapar1,Mealy Parrot (Northern),Amazona farinosa guatemalae/virenticeps,Psittaciformes,Psittacidae (New World and African Parrots),,meapar +12308,issf,meapar2,Mealy Parrot (Southern),Amazona farinosa farinosa,Psittaciformes,Psittacidae (New World and African Parrots),,meapar +12309,species,kawpar1,Kawall's Parrot,Amazona kawalli,Psittaciformes,Psittacidae (New World and African Parrots),, +12310,species,imppar1,Imperial Parrot,Amazona imperialis,Psittaciformes,Psittacidae (New World and African Parrots),, +12311,species,guapar1,Guadeloupe Parrot,Amazona violacea,Psittaciformes,Psittacidae (New World and African Parrots),, +12312,species,retpar1,Red-tailed Parrot,Amazona brasiliensis,Psittaciformes,Psittacidae (New World and African Parrots),, +12313,species,stvpar1,St. Vincent Parrot,Amazona guildingii,Psittaciformes,Psittacidae (New World and African Parrots),, +12314,species,orwpar,Orange-winged Parrot,Amazona amazonica,Psittaciformes,Psittacidae (New World and African Parrots),, +12317,species,scnpar1,Scaly-naped Parrot,Amazona mercenarius,Psittaciformes,Psittacidae (New World and African Parrots),, +12320,spuh,amazon,Amazona sp.,Amazona sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12321,species,dubpar1,Dusky-billed Parrotlet,Forpus modestus,Psittaciformes,Psittacidae (New World and African Parrots),, +12322,issf,dubpar2,Dusky-billed Parrotlet (Schomburgk's),Forpus modestus modestus,Psittaciformes,Psittacidae (New World and African Parrots),,dubpar1 +12323,issf,dubpar3,Dusky-billed Parrotlet (Dusky-billed),Forpus modestus sclateri,Psittaciformes,Psittacidae (New World and African Parrots),,dubpar1 +12324,species,mexpar1,Mexican Parrotlet,Forpus cyanopygius,Psittaciformes,Psittacidae (New World and African Parrots),, +12325,issf,mexpar2,Mexican Parrotlet (Mexican),Forpus cyanopygius cyanopygius,Psittaciformes,Psittacidae (New World and African Parrots),,mexpar1 +12326,issf,mexpar3,Mexican Parrotlet (Tres Marias),Forpus cyanopygius insularis,Psittaciformes,Psittacidae (New World and African Parrots),,mexpar1 +12327,species,blwpar4,Blue-winged Parrotlet,Forpus xanthopterygius,Psittaciformes,Psittacidae (New World and African Parrots),, +12328,issf,buwpar1,Blue-winged Parrotlet (Turquoise-winged),Forpus xanthopterygius spengeli,Psittaciformes,Psittacidae (New World and African Parrots),,blwpar4 +12329,issf,buwpar2,Blue-winged Parrotlet (crassirostris),Forpus xanthopterygius crassirostris,Psittaciformes,Psittacidae (New World and African Parrots),,blwpar4 +12330,issf,buwpar3,Blue-winged Parrotlet (Blue-winged),Forpus xanthopterygius xanthopterygius,Psittaciformes,Psittacidae (New World and African Parrots),,blwpar4 +12331,species,grrpar1,Green-rumped Parrotlet,Forpus passerinus,Psittaciformes,Psittacidae (New World and African Parrots),, +12337,species,spepar1,Spectacled Parrotlet,Forpus conspicillatus,Psittaciformes,Psittacidae (New World and African Parrots),, +12341,species,pacpar2,Pacific Parrotlet,Forpus coelestis,Psittaciformes,Psittacidae (New World and African Parrots),, +12342,species,yefpar2,Yellow-faced Parrotlet,Forpus xanthops,Psittaciformes,Psittacidae (New World and African Parrots),, +12343,spuh,forpus1,Forpus sp.,Forpus sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12344,species,blhpar4,Black-headed Parrot,Pionites melanocephalus,Psittaciformes,Psittacidae (New World and African Parrots),, +12347,species,whbpar1,White-bellied Parrot,Pionites leucogaster,Psittaciformes,Psittacidae (New World and African Parrots),, +12348,issf,whbpar2,White-bellied Parrot (Black-legged),Pionites leucogaster xanthomerius,Psittaciformes,Psittacidae (New World and African Parrots),,whbpar1 +12349,issf,whbpar3,White-bellied Parrot (Yellow-tailed),Pionites leucogaster xanthurus,Psittaciformes,Psittacidae (New World and African Parrots),,whbpar1 +12350,issf,whbpar4,White-bellied Parrot (Green-thighed),Pionites leucogaster leucogaster,Psittaciformes,Psittacidae (New World and African Parrots),,whbpar1 +12351,species,refpar3,Red-fan Parrot,Deroptyus accipitrinus,Psittaciformes,Psittacidae (New World and African Parrots),, +12354,species,bltpar2,Ochre-marked Parakeet,Pyrrhura cruentata,Psittaciformes,Psittacidae (New World and African Parrots),, +12355,species,blwpar2,Blaze-winged Parakeet,Pyrrhura devillei,Psittaciformes,Psittacidae (New World and African Parrots),, +12356,species,mabpar,Maroon-bellied Parakeet,Pyrrhura frontalis,Psittaciformes,Psittacidae (New World and African Parrots),, +12357,issf,mabpar2,Maroon-bellied Parakeet (Maroon-tailed),Pyrrhura frontalis frontalis,Psittaciformes,Psittacidae (New World and African Parrots),,mabpar +12358,issf,mabpar1,Maroon-bellied Parakeet (Green-tailed),Pyrrhura frontalis chiripepe,Psittaciformes,Psittacidae (New World and African Parrots),,mabpar +12359,species,peapar1,Pearly Parakeet,Pyrrhura lepida,Psittaciformes,Psittacidae (New World and African Parrots),, +12360,issf,peapar2,Pearly Parakeet (lepida),Pyrrhura lepida lepida,Psittaciformes,Psittacidae (New World and African Parrots),,peapar1 +12361,issf,peapar3,Pearly Parakeet (anerythra),Pyrrhura lepida anerythra,Psittaciformes,Psittacidae (New World and African Parrots),,peapar1 +12362,issf,peapar4,Pearly Parakeet (coerulescens),Pyrrhura lepida coerulescens,Psittaciformes,Psittacidae (New World and African Parrots),,peapar1 +12363,species,crbpar1,Crimson-bellied Parakeet,Pyrrhura perlata,Psittaciformes,Psittacidae (New World and African Parrots),, +12364,species,gncpar,Green-cheeked Parakeet,Pyrrhura molinae,Psittaciformes,Psittacidae (New World and African Parrots),, +12371,species,pfrpar1,Pfrimer's Parakeet,Pyrrhura pfrimeri,Psittaciformes,Psittacidae (New World and African Parrots),, +12372,species,gybpar1,Gray-breasted Parakeet,Pyrrhura griseipectus,Psittaciformes,Psittacidae (New World and African Parrots),, +12373,species,mafpar3,Maroon-faced Parakeet,Pyrrhura leucotis,Psittaciformes,Psittacidae (New World and African Parrots),, +12374,slash,mafpar2,Gray-breasted/Maroon-faced Parakeet,Pyrrhura griseipectus/leucotis,Psittaciformes,Psittacidae (New World and African Parrots),, +12375,species,paipar1,Painted Parakeet,Pyrrhura picta,Psittaciformes,Psittacidae (New World and African Parrots),, +12376,issf,paipar2,Painted Parakeet (Painted),Pyrrhura picta picta,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 +12377,issf,paipar6,Painted Parakeet (Venezuelan),Pyrrhura picta emma,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 +12378,issf,paipar4,Painted Parakeet (Sinu),Pyrrhura picta subandina,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 +12379,issf,paipar5,Painted Parakeet (Todd's),Pyrrhura picta caeruleiceps,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 +12380,issf,paipar3,Painted Parakeet (Azuero),Pyrrhura picta eisenmanni,Psittaciformes,Psittacidae (New World and African Parrots),,paipar1 +12381,species,sanpar2,Santarem Parakeet,Pyrrhura amazonum,Psittaciformes,Psittacidae (New World and African Parrots),, +12382,issf,sanpar3,Santarem Parakeet (Santarem),Pyrrhura amazonum amazonum,Psittaciformes,Psittacidae (New World and African Parrots),,sanpar2 +12383,issf,sanpar4,Santarem Parakeet (Madeira),Pyrrhura amazonum snethlageae,Psittaciformes,Psittacidae (New World and African Parrots),,sanpar2 +12384,issf,sanpar5,Santarem Parakeet (Cristalino),Pyrrhura amazonum lucida,Psittaciformes,Psittacidae (New World and African Parrots),,sanpar2 +12385,species,bonpar1,Bonaparte's Parakeet,Pyrrhura lucianii,Psittaciformes,Psittacidae (New World and African Parrots),, +12386,species,rofpar3,Rose-fronted Parakeet,Pyrrhura roseifrons,Psittaciformes,Psittacidae (New World and African Parrots),, +12387,issf,rofpar5,Rose-fronted Parakeet (Wavy-breasted),Pyrrhura roseifrons peruviana/dilutissima,Psittaciformes,Psittacidae (New World and African Parrots),,rofpar3 +12390,issf,rofpar1,Rose-fronted Parakeet (Garlepp's),Pyrrhura roseifrons parvifrons,Psittaciformes,Psittacidae (New World and African Parrots),,rofpar3 +12391,issf,rofpar4,Rose-fronted Parakeet (Rose-fronted),Pyrrhura roseifrons roseifrons,Psittaciformes,Psittacidae (New World and African Parrots),,rofpar3 +12392,species,sampar1,Santa Marta Parakeet,Pyrrhura viridicata,Psittaciformes,Psittacidae (New World and African Parrots),, +12393,species,fispar1,Fiery-shouldered Parakeet,Pyrrhura egregia,Psittaciformes,Psittacidae (New World and African Parrots),, +12396,species,matpar2,Maroon-tailed Parakeet,Pyrrhura melanura,Psittaciformes,Psittacidae (New World and African Parrots),, +12397,issf,matpar4,Maroon-tailed Parakeet (Choco),Pyrrhura melanura pacifica,Psittaciformes,Psittacidae (New World and African Parrots),,matpar2 +12398,issf,matpar5,Maroon-tailed Parakeet (Huila),Pyrrhura melanura chapmani,Psittaciformes,Psittacidae (New World and African Parrots),,matpar2 +12399,issf,matpar3,Maroon-tailed Parakeet (Maroon-tailed),Pyrrhura melanura [melanura Group],Psittaciformes,Psittacidae (New World and African Parrots),,matpar2 +12403,species,elopar1,El Oro Parakeet,Pyrrhura orcesi,Psittaciformes,Psittacidae (New World and African Parrots),, +12404,species,blcpar1,Black-capped Parakeet,Pyrrhura rupicola,Psittaciformes,Psittacidae (New World and African Parrots),, +12407,species,whnpar1,White-necked Parakeet,Pyrrhura albipectus,Psittaciformes,Psittacidae (New World and African Parrots),, +12408,species,brbpar2,Brown-breasted Parakeet,Pyrrhura calliptera,Psittaciformes,Psittacidae (New World and African Parrots),, +12409,species,reepar1,Red-eared Parakeet,Pyrrhura hoematotis,Psittaciformes,Psittacidae (New World and African Parrots),, +12412,species,rohpar1,Rose-headed Parakeet,Pyrrhura rhodocephala,Psittaciformes,Psittacidae (New World and African Parrots),, +12413,species,suwpar1,Sulphur-winged Parakeet,Pyrrhura hoffmanni,Psittaciformes,Psittacidae (New World and African Parrots),, +12416,spuh,pyrrhu1,Pyrrhura sp.,Pyrrhura sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12417,species,auspar1,Austral Parakeet,Enicognathus ferrugineus,Psittaciformes,Psittacidae (New World and African Parrots),, +12420,species,slbpar1,Slender-billed Parakeet,Enicognathus leptorhynchus,Psittaciformes,Psittacidae (New World and African Parrots),, +12421,slash,y00877,Austral/Slender-billed Parakeet,Enicognathus ferrugineus/leptorhynchus,Psittaciformes,Psittacidae (New World and African Parrots),, +12422,species,burpar,Burrowing Parakeet,Cyanoliseus patagonus,Psittaciformes,Psittacidae (New World and African Parrots),, +12423,issf,burpar1,Burrowing Parakeet (Olive),Cyanoliseus patagonus andinus,Psittaciformes,Psittacidae (New World and African Parrots),,burpar +12424,issf,burpar3,Burrowing Parakeet (Burrowing),Cyanoliseus patagonus patagonus/conlara,Psittaciformes,Psittacidae (New World and African Parrots),,burpar +12427,issf,burpar2,Burrowing Parakeet (Chilean),Cyanoliseus patagonus bloxami,Psittaciformes,Psittacidae (New World and African Parrots),,burpar +12428,species,hyamac1,Hyacinth Macaw,Anodorhynchus hyacinthinus,Psittaciformes,Psittacidae (New World and African Parrots),, +12429,species,glamac1,Glaucous Macaw,Anodorhynchus glaucus,Psittaciformes,Psittacidae (New World and African Parrots),, +12430,species,indmac1,Indigo Macaw,Anodorhynchus leari,Psittaciformes,Psittacidae (New World and African Parrots),, +12431,species,thbpar,Thick-billed Parrot,Rhynchopsitta pachyrhyncha,Psittaciformes,Psittacidae (New World and African Parrots),, +12432,species,mafpar1,Maroon-fronted Parrot,Rhynchopsitta terrisi,Psittaciformes,Psittacidae (New World and African Parrots),, +12433,species,oltpar1,Olive-throated Parakeet,Eupsittula nana,Psittaciformes,Psittacidae (New World and African Parrots),, +12434,issf,oltpar2,Olive-throated Parakeet (Aztec),Eupsittula nana astec/vicinalis,Psittaciformes,Psittacidae (New World and African Parrots),,oltpar1 +12437,issf,oltpar3,Olive-throated Parakeet (Jamaican),Eupsittula nana nana,Psittaciformes,Psittacidae (New World and African Parrots),,oltpar1 +12438,species,orfpar,Orange-fronted Parakeet,Eupsittula canicularis,Psittaciformes,Psittacidae (New World and African Parrots),, +12442,species,pefpar1,Peach-fronted Parakeet,Eupsittula aurea,Psittaciformes,Psittacidae (New World and African Parrots),, +12443,species,brtpar1,Brown-throated Parakeet,Eupsittula pertinax,Psittaciformes,Psittacidae (New World and African Parrots),, +12444,issf,bntpar1,Brown-throated Parakeet (Veraguas),Eupsittula pertinax ocularis,Psittaciformes,Psittacidae (New World and African Parrots),,brtpar1 +12445,issf,bntpar2,Brown-throated Parakeet (Brown-throated),Eupsittula pertinax [pertinax Group],Psittaciformes,Psittacidae (New World and African Parrots),,brtpar1 +12459,species,cacpar1,Cactus Parakeet,Eupsittula cactorum,Psittaciformes,Psittacidae (New World and African Parrots),, +12462,species,carpar,Carolina Parakeet,Conuropsis carolinensis,Psittaciformes,Psittacidae (New World and African Parrots),, +12463,species,duhpar,Dusky-headed Parakeet,Aratinga weddellii,Psittaciformes,Psittacidae (New World and African Parrots),, +12464,species,bkhpar,Nanday Parakeet,Aratinga nenday,Psittaciformes,Psittacidae (New World and African Parrots),, +12465,species,sunpar1,Sun Parakeet,Aratinga solstitialis,Psittaciformes,Psittacidae (New World and African Parrots),, +12466,species,subpar1,Sulphur-breasted Parakeet,Aratinga maculata,Psittaciformes,Psittacidae (New World and African Parrots),, +12467,species,janpar1,Jandaya Parakeet,Aratinga jandaya,Psittaciformes,Psittacidae (New World and African Parrots),, +12468,species,gocpar2,Golden-capped Parakeet,Aratinga auricapillus,Psittaciformes,Psittacidae (New World and African Parrots),, +12471,species,spimac1,Spix's Macaw,Cyanopsitta spixii,Psittaciformes,Psittacidae (New World and African Parrots),, +12472,species,rebmac2,Red-bellied Macaw,Orthopsittaca manilatus,Psittaciformes,Psittacidae (New World and African Parrots),, +12473,species,buwmac1,Blue-winged Macaw,Primolius maracana,Psittaciformes,Psittacidae (New World and African Parrots),, +12474,species,buhmac1,Blue-headed Macaw,Primolius couloni,Psittaciformes,Psittacidae (New World and African Parrots),, +12475,species,yecmac,Yellow-collared Macaw,Primolius auricollis,Psittaciformes,Psittacidae (New World and African Parrots),, +12476,species,baymac,Blue-and-yellow Macaw,Ara ararauna,Psittaciformes,Psittacidae (New World and African Parrots),, +12477,species,bltmac1,Blue-throated Macaw,Ara glaucogularis,Psittaciformes,Psittacidae (New World and African Parrots),, +12478,species,milmac,Military Macaw,Ara militaris,Psittaciformes,Psittacidae (New World and African Parrots),, +12482,species,grgmac,Great Green Macaw,Ara ambiguus,Psittaciformes,Psittacidae (New World and African Parrots),, +12485,species,scamac1,Scarlet Macaw,Ara macao,Psittaciformes,Psittacidae (New World and African Parrots),, +12488,hybrid,x00888,Blue-and-yellow x Scarlet Macaw (hybrid),Ara ararauna x macao,Psittaciformes,Psittacidae (New World and African Parrots),, +12489,species,ragmac1,Red-and-green Macaw,Ara chloropterus,Psittaciformes,Psittacidae (New World and African Parrots),, +12490,slash,y00792,Scarlet/Red-and-green Macaw,Ara macao/chloropterus,Psittaciformes,Psittacidae (New World and African Parrots),, +12491,species,cubmac1,Cuban Macaw,Ara tricolor,Psittaciformes,Psittacidae (New World and African Parrots),, +12492,species,refmac1,Red-fronted Macaw,Ara rubrogenys,Psittaciformes,Psittacidae (New World and African Parrots),, +12493,species,chfmac1,Chestnut-fronted Macaw,Ara severus,Psittaciformes,Psittacidae (New World and African Parrots),, +12494,spuh,larmac1,large macaw sp.,Ara sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12495,species,goppar1,Golden-plumed Parakeet,Leptosittaca branickii,Psittaciformes,Psittacidae (New World and African Parrots),, +12496,species,yeepar1,Yellow-eared Parrot,Ognorhynchus icterotis,Psittaciformes,Psittacidae (New World and African Parrots),, +12497,species,golpar3,Golden Parakeet,Guaruba guarouba,Psittaciformes,Psittacidae (New World and African Parrots),, +12498,species,bucpar,Blue-crowned Parakeet,Thectocercus acuticaudatus,Psittaciformes,Psittacidae (New World and African Parrots),, +12499,issf,bucpar1,Blue-crowned Parakeet (Blue-crowned),Thectocercus acuticaudatus [acuticaudatus Group],Psittaciformes,Psittacidae (New World and African Parrots),,bucpar +12504,issf,bucpar2,Blue-crowned Parakeet (Highland),Thectocercus acuticaudatus neumanni,Psittaciformes,Psittacidae (New World and African Parrots),,bucpar +12505,species,resmac2,Red-shouldered Macaw,Diopsittaca nobilis,Psittaciformes,Psittacidae (New World and African Parrots),, +12506,issf,resmac1,Red-shouldered Macaw (Northern),Diopsittaca nobilis nobilis,Psittaciformes,Psittacidae (New World and African Parrots),,resmac2 +12507,issf,resmac3,Red-shouldered Macaw (Southern),Diopsittaca nobilis cumanensis/longipennis,Psittaciformes,Psittacidae (New World and African Parrots),,resmac2 +12510,spuh,smamac1,small macaw sp.,Orthopsittaca/Primolius/Diopsittaca sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12511,species,grnpar,Green Parakeet,Psittacara holochlorus,Psittaciformes,Psittacidae (New World and African Parrots),, +12512,issf,grnpar1,Green Parakeet (Green),Psittacara holochlorus holochlorus/brewsteri,Psittaciformes,Psittacidae (New World and African Parrots),,grnpar +12515,issf,grnpar3,Green Parakeet (Red-throated),Psittacara holochlorus rubritorquis,Psittaciformes,Psittacidae (New World and African Parrots),,grnpar +12516,species,grnpar2,Socorro Parakeet,Psittacara brevipes,Psittaciformes,Psittacidae (New World and African Parrots),, +12517,species,pacpar1,Pacific Parakeet,Psittacara strenuus,Psittaciformes,Psittacidae (New World and African Parrots),, +12518,slash,y00878,Green/Pacific Parakeet,Psittacara holochlorus/strenuus,Psittaciformes,Psittacidae (New World and African Parrots),, +12519,species,crfpar,Crimson-fronted Parakeet,Psittacara finschi,Psittaciformes,Psittacidae (New World and African Parrots),, +12520,hybrid,x00959,Green x Crimson-fronted Parakeet (hybrid),Psittacara holochlorus x finschi,Psittaciformes,Psittacidae (New World and African Parrots),, +12521,species,scfpar1,Scarlet-fronted Parakeet,Psittacara wagleri,Psittaciformes,Psittacidae (New World and African Parrots),, +12522,issf,scfpar2,Scarlet-fronted Parakeet (Scarlet-fronted),Psittacara wagleri wagleri/transilis,Psittaciformes,Psittacidae (New World and African Parrots),,scfpar1 +12525,issf,scfpar3,Scarlet-fronted Parakeet (Cordilleran),Psittacara wagleri frontatus/minor,Psittaciformes,Psittacidae (New World and African Parrots),,scfpar1 +12528,species,mitpar,Mitred Parakeet,Psittacara mitratus,Psittaciformes,Psittacidae (New World and African Parrots),, +12529,issf,mitpar1,Mitred Parakeet (Mitred),Psittacara mitratus [mitratus Group],Psittaciformes,Psittacidae (New World and African Parrots),,mitpar +12533,issf,mitpar2,Mitred Parakeet (Chapman's),Psittacara mitratus alticola,Psittaciformes,Psittacidae (New World and African Parrots),,mitpar +12534,slash,y00793,Scarlet-fronted/Mitred Parakeet,Psittacara wagleri/mitratus,Psittaciformes,Psittacidae (New World and African Parrots),, +12535,species,rempar,Red-masked Parakeet,Psittacara erythrogenys,Psittaciformes,Psittacidae (New World and African Parrots),, +12536,slash,y00794,Mitred/Red-masked Parakeet,Psittacara mitratus/erythrogenys,Psittaciformes,Psittacidae (New World and African Parrots),, +12537,species,whepar2,White-eyed Parakeet,Psittacara leucophthalmus,Psittaciformes,Psittacidae (New World and African Parrots),, +12541,species,cubpar2,Cuban Parakeet,Psittacara euops,Psittaciformes,Psittacidae (New World and African Parrots),, +12542,species,hispar,Hispaniolan Parakeet,Psittacara chloropterus,Psittaciformes,Psittacidae (New World and African Parrots),, +12543,species,purpar2,Puerto Rican Parakeet,Psittacara maugei,Psittaciformes,Psittacidae (New World and African Parrots),, +12544,species,guapar2,Guadeloupe Parakeet,Psittacara labati,Psittaciformes,Psittacidae (New World and African Parrots),, +12545,spuh,psitta2,Psittacara sp.,Psittacara sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12546,spuh,aratin,large parakeet sp. (former Aratinga sp.),Eupsittula/Aratinga/Thectocercus/Psittacara sp.,Psittaciformes,Psittacidae (New World and African Parrots),, +12547,spuh,parake,parakeet sp.,Psittaciformes sp. (parakeet sp.),Psittaciformes,,, +12548,spuh,parrot,parrot sp.,Psittaciformes sp. (parrot sp.),Psittaciformes,,, +12549,species,stiwre1,Stephens Island Wren,Traversia lyalli,Passeriformes,Acanthisittidae (New Zealand Wrens),New Zealand Wrens, +12550,species,riflem1,Rifleman,Acanthisitta chloris,Passeriformes,Acanthisittidae (New Zealand Wrens),, +12553,species,buswre1,Bush Wren,Xenicus longipes,Passeriformes,Acanthisittidae (New Zealand Wrens),, +12557,species,soiwre1,South Island Wren,Xenicus gilviventris,Passeriformes,Acanthisittidae (New Zealand Wrens),, +12558,species,afrbro1,African Broadbill,Smithornis capensis,Passeriformes,Calyptomenidae (African and Green Broadbills),African and Green Broadbills, +12568,species,gyhbro1,Gray-headed Broadbill,Smithornis sharpei,Passeriformes,Calyptomenidae (African and Green Broadbills),, +12569,issf,gyhbro2,Gray-headed Broadbill (Zenker's),Smithornis sharpei zenkeri,Passeriformes,Calyptomenidae (African and Green Broadbills),,gyhbro1 +12570,issf,gyhbro3,Gray-headed Broadbill (Sharpe's),Smithornis sharpei sharpei,Passeriformes,Calyptomenidae (African and Green Broadbills),,gyhbro1 +12571,issf,gyhbro4,Gray-headed Broadbill (Gray-headed),Smithornis sharpei eurylaemus,Passeriformes,Calyptomenidae (African and Green Broadbills),,gyhbro1 +12572,species,rusbro1,Rufous-sided Broadbill,Smithornis rufolateralis,Passeriformes,Calyptomenidae (African and Green Broadbills),, +12575,spuh,smitho1,Smithornis sp.,Smithornis sp.,Passeriformes,Calyptomenidae (African and Green Broadbills),, +12576,species,grebro1,Green Broadbill,Calyptomena viridis,Passeriformes,Calyptomenidae (African and Green Broadbills),, +12580,species,hosbro1,Hose's Broadbill,Calyptomena hosii,Passeriformes,Calyptomenidae (African and Green Broadbills),, +12581,species,whibro1,Whitehead's Broadbill,Calyptomena whiteheadi,Passeriformes,Calyptomenidae (African and Green Broadbills),, +12582,species,barbro1,Black-and-red Broadbill,Cymbirhynchus macrorhynchos,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),Asian and Grauer's Broadbills, +12583,issf,barbro2,Black-and-red Broadbill (Irrawaddy),Cymbirhynchus macrorhynchos affinis,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,barbro1 +12584,issf,barbro3,Black-and-red Broadbill (Black-and-red),Cymbirhynchus macrorhynchos [macrorhynchos Group],Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,barbro1 +12588,species,lotbro1,Long-tailed Broadbill,Psarisomus dalhousiae,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12594,species,sibbro1,Silver-breasted Broadbill,Serilophus lunatus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12595,issf,sibbro2,Silver-breasted Broadbill (Gray-browed),Serilophus lunatus rubropygius,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,sibbro1 +12596,issf,sibbro3,Silver-breasted Broadbill (Silver-breasted),Serilophus lunatus [lunatus Group],Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,sibbro1 +12606,species,banbro1,Banded Broadbill,Eurylaimus javanicus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12607,issf,banbro2,Banded Broadbill (Banded),Eurylaimus javanicus [harterti Group],Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,banbro1 +12612,issf,banbro3,Banded Broadbill (Javan),Eurylaimus javanicus javanicus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),,banbro1 +12613,species,baybro1,Black-and-yellow Broadbill,Eurylaimus ochromalus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12614,slash,y00879,Banded/Black-and-yellow Broadbill,Eurylaimus javanicus/ochromalus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12615,species,watbro1,Wattled Broadbill,Eurylaimus steerii,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12618,species,visbro1,Visayan Broadbill,Eurylaimus samarensis,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12619,species,dusbro1,Dusky Broadbill,Corydon sumatranus,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12624,species,grabro1,Grauer's Broadbill,Pseudocalyptomena graueri,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12625,spuh,asibro1,asian broadbill sp.,Eurylaimidae sp.,Passeriformes,Eurylaimidae (Asian and Grauer's Broadbills),, +12626,species,sapayo1,Sapayoa,Sapayoa aenigma,Passeriformes,Sapayoidae (Sapayoa),Sapayoa, +12627,species,velasi1,Velvet Asity,Philepitta castanea,Passeriformes,Philepittidae (Asities),Asities, +12628,species,schasi1,Schlegel's Asity,Philepitta schlegeli,Passeriformes,Philepittidae (Asities),, +12629,species,sunasi1,Common Sunbird-Asity,Neodrepanis coruscans,Passeriformes,Philepittidae (Asities),, +12630,species,yebasi1,Yellow-bellied Sunbird-Asity,Neodrepanis hypoxantha,Passeriformes,Philepittidae (Asities),, +12631,slash,y00880,Common/Yellow-bellied Sunbird-Asity,Neodrepanis coruscans/hypoxantha,Passeriformes,Philepittidae (Asities),, +12632,species,whipit1,Whiskered Pitta,Erythropitta kochi,Passeriformes,Pittidae (Pittas),Old World Pittas, +12633,species,rebpit1,Blue-breasted Pitta,Erythropitta erythrogaster,Passeriformes,Pittidae (Pittas),, +12634,issf,bubpit1,Blue-breasted Pitta (Blue-breasted),Erythropitta erythrogaster [erythrogaster Group],Passeriformes,Pittidae (Pittas),,rebpit1 +12638,issf,talpit1,Blue-breasted Pitta (Talaud),Erythropitta erythrogaster inspeculata,Passeriformes,Pittidae (Pittas),,rebpit1 +12639,species,sanpit1,Sangihe Pitta,Erythropitta caeruleitorques,Passeriformes,Pittidae (Pittas),, +12640,species,siapit1,Siao Pitta,Erythropitta palliceps,Passeriformes,Pittidae (Pittas),, +12641,species,sulpit3,Sulawesi Pitta,Erythropitta celebensis,Passeriformes,Pittidae (Pittas),, +12642,species,sulpit1,Sula Pitta,Erythropitta dohertyi,Passeriformes,Pittidae (Pittas),, +12643,species,molpit1,North Moluccan Pitta,Erythropitta rufiventris,Passeriformes,Pittidae (Pittas),, +12647,species,sompit1,South Moluccan Pitta,Erythropitta rubrinucha,Passeriformes,Pittidae (Pittas),, +12650,species,pappit1,Papuan Pitta,Erythropitta macklotii,Passeriformes,Pittidae (Pittas),, +12656,species,neipit1,New Ireland Pitta,Erythropitta novaehibernicae,Passeriformes,Pittidae (Pittas),, +12659,species,tabpit1,Tabar Pitta,Erythropitta splendida,Passeriformes,Pittidae (Pittas),, +12660,species,nebpit1,New Britain Pitta,Erythropitta gazellae,Passeriformes,Pittidae (Pittas),, +12661,species,loupit1,Louisiade Pitta,Erythropitta meeki,Passeriformes,Pittidae (Pittas),, +12662,species,blcpit1,Graceful Pitta,Erythropitta venusta,Passeriformes,Pittidae (Pittas),, +12663,species,bkhpit1,Black-crowned Pitta,Erythropitta ussheri,Passeriformes,Pittidae (Pittas),, +12664,species,blbpit1,Blue-banded Pitta,Erythropitta arquata,Passeriformes,Pittidae (Pittas),, +12665,species,garpit1,Garnet Pitta,Erythropitta granatina,Passeriformes,Pittidae (Pittas),, +12668,spuh,erythr1,Erythropitta sp.,Erythropitta sp.,Passeriformes,Pittidae (Pittas),, +12669,species,earpit1,Eared Pitta,Hydrornis phayrei,Passeriformes,Pittidae (Pittas),, +12670,species,runpit1,Rusty-naped Pitta,Hydrornis oatesi,Passeriformes,Pittidae (Pittas),, +12675,species,blnpit1,Blue-naped Pitta,Hydrornis nipalensis,Passeriformes,Pittidae (Pittas),, +12678,species,blrpit1,Blue-rumped Pitta,Hydrornis soror,Passeriformes,Pittidae (Pittas),, +12684,species,giapit1,Giant Pitta,Hydrornis caeruleus,Passeriformes,Pittidae (Pittas),, +12687,species,schpit1,Schneider's Pitta,Hydrornis schneideri,Passeriformes,Pittidae (Pittas),, +12688,species,banpit3,Malayan Banded-Pitta,Hydrornis irena,Passeriformes,Pittidae (Pittas),, +12689,species,banpit2,Javan Banded-Pitta,Hydrornis guajanus,Passeriformes,Pittidae (Pittas),, +12690,species,banpit4,Bornean Banded-Pitta,Hydrornis schwaneri,Passeriformes,Pittidae (Pittas),, +12691,species,blhpit1,Blue-headed Pitta,Hydrornis baudii,Passeriformes,Pittidae (Pittas),, +12692,species,blupit1,Blue Pitta,Hydrornis cyaneus,Passeriformes,Pittidae (Pittas),, +12696,species,babpit1,Bar-bellied Pitta,Hydrornis elliotii,Passeriformes,Pittidae (Pittas),, +12697,species,gurpit1,Gurney's Pitta,Hydrornis gurneyi,Passeriformes,Pittidae (Pittas),, +12698,spuh,hydror1,Hydrornis sp.,Hydrornis sp.,Passeriformes,Pittidae (Pittas),, +12699,species,afrpit1,African Pitta,Pitta angolensis,Passeriformes,Pittidae (Pittas),, +12703,species,grbpit1,Green-breasted Pitta,Pitta reichenowi,Passeriformes,Pittidae (Pittas),, +12704,species,indpit1,Indian Pitta,Pitta brachyura,Passeriformes,Pittidae (Pittas),, +12705,species,blwpit1,Blue-winged Pitta,Pitta moluccensis,Passeriformes,Pittidae (Pittas),, +12706,species,faipit1,Fairy Pitta,Pitta nympha,Passeriformes,Pittidae (Pittas),, +12707,species,hoopit2,Hooded Pitta,Pitta sordida,Passeriformes,Pittidae (Pittas),, +12708,issf,hoopit3,Hooded Pitta (Chestnut-crowned),Pitta sordida cucullata,Passeriformes,Pittidae (Pittas),,hoopit2 +12709,issf,hoopit4,Hooded Pitta (Nicobar),Pitta sordida abbotti,Passeriformes,Pittidae (Pittas),,hoopit2 +12710,issf,hoopit5,Hooded Pitta (Sunda),Pitta sordida mulleri/bangkana,Passeriformes,Pittidae (Pittas),,hoopit2 +12713,issf,hoopit6,Hooded Pitta (Philippine),Pitta sordida sordida/palawanensis,Passeriformes,Pittidae (Pittas),,hoopit2 +12716,issf,hoopit7,Hooded Pitta (Sangihe),Pitta sordida sanghirana,Passeriformes,Pittidae (Pittas),,hoopit2 +12717,issf,hoopit8,Hooded Pitta (Minahassa),Pitta sordida forsteni,Passeriformes,Pittidae (Pittas),,hoopit2 +12718,issf,hoopit9,Hooded Pitta (Papuan),Pitta sordida novaeguineae/goodfellowi,Passeriformes,Pittidae (Pittas),,hoopit2 +12721,issf,hoopit10,Hooded Pitta (Numfor),Pitta sordida mefoorana,Passeriformes,Pittidae (Pittas),,hoopit2 +12722,issf,hoopit11,Hooded Pitta (Biak),Pitta sordida rosenbergii,Passeriformes,Pittidae (Pittas),,hoopit2 +12723,species,azbpit1,Azure-breasted Pitta,Pitta steerii,Passeriformes,Pittidae (Pittas),, +12726,species,noipit1,Noisy Pitta,Pitta versicolor,Passeriformes,Pittidae (Pittas),, +12730,species,ivbpit1,Ivory-breasted Pitta,Pitta maxima,Passeriformes,Pittidae (Pittas),, +12731,issf,ivbpit2,Ivory-breasted Pitta (Ivory-breasted),Pitta maxima maxima,Passeriformes,Pittidae (Pittas),,ivbpit1 +12732,issf,ivbpit3,Ivory-breasted Pitta (Morotai),Pitta maxima morotaiensis,Passeriformes,Pittidae (Pittas),,ivbpit1 +12733,species,elepit1,Elegant Pitta,Pitta elegans,Passeriformes,Pittidae (Pittas),, +12739,species,blfpit1,Black-faced Pitta,Pitta anerythra,Passeriformes,Pittidae (Pittas),, +12743,species,manpit1,Mangrove Pitta,Pitta megarhyncha,Passeriformes,Pittidae (Pittas),, +12744,species,suppit1,Superb Pitta,Pitta superba,Passeriformes,Pittidae (Pittas),, +12745,species,raipit1,Rainbow Pitta,Pitta iris,Passeriformes,Pittidae (Pittas),, +12748,spuh,pitta2,Pitta sp. (genus Pitta),Pitta sp.,Passeriformes,Pittidae (Pittas),, +12749,spuh,pitta1,pitta sp. (genus Erythropitta/Hydrornis/Pitta),Pittidae sp.,Passeriformes,Pittidae (Pittas),, +12750,species,rurant1,Rufous-rumped Antwren,Euchrepomis callinota,Passeriformes,Thamnophilidae (Typical Antbirds),Antbirds, +12755,species,chsant1,Chestnut-shouldered Antwren,Euchrepomis humeralis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12756,species,yerant1,Yellow-rumped Antwren,Euchrepomis sharpei,Passeriformes,Thamnophilidae (Typical Antbirds),, +12757,species,aswant1,Ash-winged Antwren,Euchrepomis spodioptila,Passeriformes,Thamnophilidae (Typical Antbirds),, +12761,spuh,euchre1,Euchrepomis sp.,Euchrepomis sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +12762,species,fasant1,Fasciated Antshrike,Cymbilaimus lineatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12766,species,bamant1,Bamboo Antshrike,Cymbilaimus sanctaemariae,Passeriformes,Thamnophilidae (Typical Antbirds),, +12767,species,spbant3,Spot-backed Antshrike,Hypoedaleus guttatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12768,species,giaant2,Giant Antshrike,Batara cinerea,Passeriformes,Thamnophilidae (Typical Antbirds),, +12772,species,latant1,Large-tailed Antshrike,Mackenziaena leachii,Passeriformes,Thamnophilidae (Typical Antbirds),, +12773,species,tufant1,Tufted Antshrike,Mackenziaena severa,Passeriformes,Thamnophilidae (Typical Antbirds),, +12774,species,bltant3,Black-throated Antshrike,Frederickena viridis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12775,species,undant2,Undulated Antshrike,Frederickena unduliger,Passeriformes,Thamnophilidae (Typical Antbirds),, +12779,species,fulant1,Fulvous Antshrike,Frederickena fulva,Passeriformes,Thamnophilidae (Typical Antbirds),, +12780,slash,y00966,Undulated/Fulvous Antshrike,Frederickena unduliger/fulva,Passeriformes,Thamnophilidae (Typical Antbirds),, +12781,species,greant1,Great Antshrike,Taraba major,Passeriformes,Thamnophilidae (Typical Antbirds),, +12792,species,blcant4,Black-crested Antshrike,Sakesphorus canadensis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12793,issf,bkcant1,Black-crested Antshrike (Streak-fronted),Sakesphorus canadensis pulchellus,Passeriformes,Thamnophilidae (Typical Antbirds),,blcant4 +12794,issf,bkcant2,Black-crested Antshrike (Black-crested),Sakesphorus canadensis [canadensis Group],Passeriformes,Thamnophilidae (Typical Antbirds),,blcant4 +12800,species,sicant1,Silvery-cheeked Antshrike,Sakesphorus cristatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12801,species,gloant1,Glossy Antshrike,Sakesphorus luctuosus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12804,species,whbant2,White-bearded Antshrike,Biatas nigropectus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12805,species,barant1,Barred Antshrike,Thamnophilus doliatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12806,issf,barant4,Barred Antshrike (Barred),Thamnophilus doliatus [doliatus Group],Passeriformes,Thamnophilidae (Typical Antbirds),,barant1 +12818,issf,barant3,Barred Antshrike (Caatinga),Thamnophilus doliatus capistratus,Passeriformes,Thamnophilidae (Typical Antbirds),,barant1 +12819,species,rucant1,Rufous-capped Antshrike,Thamnophilus ruficapillus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12820,issf,rucant4,Rufous-capped Antshrike (Northern),Thamnophilus ruficapillus [subfasciatus Group],Passeriformes,Thamnophilidae (Typical Antbirds),,rucant1 +12824,issf,rucant5,Rufous-capped Antshrike (Southern),Thamnophilus ruficapillus ruficapillus/cochabambae,Passeriformes,Thamnophilidae (Typical Antbirds),,rucant1 +12827,species,ruwant2,Rufous-winged Antshrike,Thamnophilus torquatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12828,species,chaant1,Chapman's Antshrike,Thamnophilus zarumae,Passeriformes,Thamnophilidae (Typical Antbirds),, +12831,species,bacant2,Bar-crested Antshrike,Thamnophilus multistriatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12836,species,linant1,Lined Antshrike,Thamnophilus tenuepunctatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12840,species,chbant2,Chestnut-backed Antshrike,Thamnophilus palliatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12845,species,colant1,Collared Antshrike,Thamnophilus bernardi,Passeriformes,Thamnophilidae (Typical Antbirds),, +12846,issf,colant2,Collared Antshrike (Collared),Thamnophilus bernardi bernardi,Passeriformes,Thamnophilidae (Typical Antbirds),,colant1 +12847,issf,colant3,Collared Antshrike (shumbae),Thamnophilus bernardi shumbae,Passeriformes,Thamnophilidae (Typical Antbirds),,colant1 +12848,species,wesant1,Black-crowned Antshrike,Thamnophilus atrinucha,Passeriformes,Thamnophilidae (Typical Antbirds),, +12851,species,blhant2,Black-hooded Antshrike,Thamnophilus bridgesi,Passeriformes,Thamnophilidae (Typical Antbirds),, +12852,species,plwant1,Plain-winged Antshrike,Thamnophilus schistaceus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12856,species,mocant1,Mouse-colored Antshrike,Thamnophilus murinus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12860,slash,y01143,Plain-winged/Mouse-colored Antshrike,Thamnophilus schistaceus/murinus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12861,species,blaant1,Black Antshrike,Thamnophilus nigriceps,Passeriformes,Thamnophilidae (Typical Antbirds),, +12862,species,cocant1,Cocha Antshrike,Thamnophilus praecox,Passeriformes,Thamnophilidae (Typical Antbirds),, +12863,species,casant1,Castelnau's Antshrike,Thamnophilus cryptoleucus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12864,species,blgant2,Blackish-gray Antshrike,Thamnophilus nigrocinereus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12870,species,norsla1,Northern Slaty-Antshrike,Thamnophilus punctatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12871,issf,norsla2,Northern Slaty-Antshrike (Guianan),Thamnophilus punctatus punctatus/interpositus,Passeriformes,Thamnophilidae (Typical Antbirds),,norsla1 +12874,issf,norsla3,Northern Slaty-Antshrike (Peruvian),Thamnophilus punctatus leucogaster/huallagae,Passeriformes,Thamnophilidae (Typical Antbirds),,norsla1 +12877,species,natsla1,Natterer's Slaty-Antshrike,Thamnophilus stictocephalus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12880,species,bolsla1,Bolivian Slaty-Antshrike,Thamnophilus sticturus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12881,species,plasla1,Planalto Slaty-Antshrike,Thamnophilus pelzelni,Passeriformes,Thamnophilidae (Typical Antbirds),, +12882,species,soosla1,Sooretama Slaty-Antshrike,Thamnophilus ambiguus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12883,species,varant1,Variable Antshrike,Thamnophilus caerulescens,Passeriformes,Thamnophilidae (Typical Antbirds),, +12892,species,uniant2,Uniform Antshrike,Thamnophilus unicolor,Passeriformes,Thamnophilidae (Typical Antbirds),, +12896,species,whsant2,White-shouldered Antshrike,Thamnophilus aethiops,Passeriformes,Thamnophilidae (Typical Antbirds),, +12907,species,uplant1,Upland Antshrike,Thamnophilus aroyae,Passeriformes,Thamnophilidae (Typical Antbirds),, +12908,species,blbant1,Black-backed Antshrike,Thamnophilus melanonotus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12909,species,batant2,Band-tailed Antshrike,Thamnophilus melanothorax,Passeriformes,Thamnophilidae (Typical Antbirds),, +12910,species,amaant2,Amazonian Antshrike,Thamnophilus amazonicus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12916,species,stbant1,Streak-backed Antshrike,Thamnophilus insignis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12919,species,acrant1,Acre Antshrike,Thamnophilus divisorius,Passeriformes,Thamnophilidae (Typical Antbirds),, +12920,spuh,thamno1,Thamnophilus sp.,Thamnophilus sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +12921,species,sttant1,Star-throated Antwren,Rhopias gularis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12922,species,peaant1,Pearly Antshrike,Megastictus margaritatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12923,species,blabus1,Black Bushbird,Neoctantes niger,Passeriformes,Thamnophilidae (Typical Antbirds),, +12924,species,rebbus1,Recurve-billed Bushbird,Clytoctantes alixii,Passeriformes,Thamnophilidae (Typical Antbirds),, +12925,species,ronbus1,Rondonia Bushbird,Clytoctantes atrogularis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12926,species,rusant1,Russet Antshrike,Thamnistes anabatinus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12927,issf,rusant2,Russet Antshrike (Tawny),Thamnistes anabatinus [anabatinus Group],Passeriformes,Thamnophilidae (Typical Antbirds),,rusant1 +12932,issf,rusant3,Russet Antshrike (Andean),Thamnistes anabatinus aequatorialis/gularis,Passeriformes,Thamnophilidae (Typical Antbirds),,rusant1 +12935,species,rufant12,Rufescent Antshrike,Thamnistes rufescens,Passeriformes,Thamnophilidae (Typical Antbirds),, +12936,slash,y01114,Russet/Rufescent Antshrike,Thamnistes anabatinus/rufescens,Passeriformes,Thamnophilidae (Typical Antbirds),, +12937,spuh,antshr1,antshrike sp.,Thamnophilidae sp. (antshrike sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, +12938,species,spbant5,Spot-breasted Antvireo,Dysithamnus stictothorax,Passeriformes,Thamnophilidae (Typical Antbirds),, +12939,species,plaant1,Plain Antvireo,Dysithamnus mentalis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12958,species,stcant1,Streak-crowned Antvireo,Dysithamnus striaticeps,Passeriformes,Thamnophilidae (Typical Antbirds),, +12959,species,spcant1,Spot-crowned Antvireo,Dysithamnus puncticeps,Passeriformes,Thamnophilidae (Typical Antbirds),, +12960,species,rubant2,Rufous-backed Antvireo,Dysithamnus xanthopterus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12961,species,bicant4,Bicolored Antvireo,Dysithamnus occidentalis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12964,species,pluant3,Plumbeous Antvireo,Dysithamnus plumbeus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12965,species,whsant4,White-streaked Antvireo,Dysithamnus leucostictus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12966,issf,whsant3,White-streaked Antvireo (White-streaked),Dysithamnus leucostictus leucostictus,Passeriformes,Thamnophilidae (Typical Antbirds),,whsant4 +12967,issf,pluant4,White-streaked Antvireo (Venezuelan),Dysithamnus leucostictus tucuyensis,Passeriformes,Thamnophilidae (Typical Antbirds),,whsant4 +12968,spuh,antvir1,antvireo sp.,Dysithamnus sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +12969,species,dutant2,Dusky-throated Antshrike,Thamnomanes ardesiacus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12972,species,satant1,Saturnine Antshrike,Thamnomanes saturninus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12975,slash,y00881,Dusky-throated/Saturnine Antshrike,Thamnomanes ardesiacus/saturninus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12976,species,cinant1,Cinereous Antshrike,Thamnomanes caesius,Passeriformes,Thamnophilidae (Typical Antbirds),, +12982,species,blsant1,Bluish-slate Antshrike,Thamnomanes schistogynus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12985,slash,y00703,Cinereous/Bluish-slate Antshrike,Thamnomanes caesius/schistogynus,Passeriformes,Thamnophilidae (Typical Antbirds),, +12986,species,spfant1,Spiny-faced Antshrike,Xenornis setifrons,Passeriformes,Thamnophilidae (Typical Antbirds),, +12987,species,pltant1,Plain-throated Antwren,Isleria hauxwelli,Passeriformes,Thamnophilidae (Typical Antbirds),, +12991,species,rubant3,Rufous-bellied Antwren,Isleria guttata,Passeriformes,Thamnophilidae (Typical Antbirds),, +12992,species,spwant2,Spot-winged Antshrike,Pygiptila stellaris,Passeriformes,Thamnophilidae (Typical Antbirds),, +12997,species,chtant1,Checker-throated Stipplethroat,Epinecrophylla fulviventris,Passeriformes,Thamnophilidae (Typical Antbirds),, +12998,species,brbant2,Brown-bellied Stipplethroat,Epinecrophylla gutturalis,Passeriformes,Thamnophilidae (Typical Antbirds),, +12999,species,wheant1,White-eyed Stipplethroat,Epinecrophylla leucophthalma,Passeriformes,Thamnophilidae (Typical Antbirds),, +13004,species,rubsti1,Rufous-backed Stipplethroat,Epinecrophylla haematonota,Passeriformes,Thamnophilidae (Typical Antbirds),, +13005,issf,sttant4,Rufous-backed Stipplethroat (Rio Negro),Epinecrophylla haematonota pyrrhonota,Passeriformes,Thamnophilidae (Typical Antbirds),,rubsti1 +13006,issf,bnbant1,Rufous-backed Stipplethroat (Yasuni),Epinecrophylla haematonota fjeldsaai,Passeriformes,Thamnophilidae (Typical Antbirds),,rubsti1 +13007,issf,sttant5,Rufous-backed Stipplethroat (Rufous-backed),Epinecrophylla haematonota haematonota,Passeriformes,Thamnophilidae (Typical Antbirds),,rubsti1 +13008,intergrade,x00931,Rufous-backed Stipplethroat (Yasuni x Rufous-backed),Epinecrophylla haematonota fjeldsaai x haematonota,Passeriformes,Thamnophilidae (Typical Antbirds),,rubsti1 +13009,species,madant1,Rio Madeira Stipplethroat,Epinecrophylla amazonica,Passeriformes,Thamnophilidae (Typical Antbirds),, +13010,issf,sttant6,Rio Madeira Stipplethroat (Madeira),Epinecrophylla amazonica amazonica,Passeriformes,Thamnophilidae (Typical Antbirds),,madant1 +13011,issf,rooant1,Rio Madeira Stipplethroat (Roosevelt),Epinecrophylla amazonica dentei,Passeriformes,Thamnophilidae (Typical Antbirds),,madant1 +13012,slash,y01113,Rufous-backed/Rio Madeira Stipplethroat,Epinecrophylla haematonota/amazonica,Passeriformes,Thamnophilidae (Typical Antbirds),, +13013,species,fooant1,Foothill Stipplethroat,Epinecrophylla spodionota,Passeriformes,Thamnophilidae (Typical Antbirds),, +13016,species,ornant1,Ornate Stipplethroat,Epinecrophylla ornata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13017,issf,ornant2,Ornate Stipplethroat (Western),Epinecrophylla ornata [ornata Group],Passeriformes,Thamnophilidae (Typical Antbirds),,ornant1 +13022,issf,ornant3,Ornate Stipplethroat (Eastern),Epinecrophylla ornata hoffmannsi,Passeriformes,Thamnophilidae (Typical Antbirds),,ornant1 +13023,species,rutant3,Rufous-tailed Stipplethroat,Epinecrophylla erythrura,Passeriformes,Thamnophilidae (Typical Antbirds),, +13026,spuh,epinec1,stipplethroat sp.,Epinecrophylla sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +13027,species,pygant1,Pygmy Antwren,Myrmotherula brachyura,Passeriformes,Thamnophilidae (Typical Antbirds),, +13028,species,mouant,Moustached Antwren,Myrmotherula ignota,Passeriformes,Thamnophilidae (Typical Antbirds),, +13029,issf,mouant3,Moustached Antwren (Moustached),Myrmotherula ignota ignota,Passeriformes,Thamnophilidae (Typical Antbirds),,mouant +13030,issf,mouant2,Moustached Antwren (Short-billed),Myrmotherula ignota obscura,Passeriformes,Thamnophilidae (Typical Antbirds),,mouant +13031,species,yetant1,Yellow-throated Antwren,Myrmotherula ambigua,Passeriformes,Thamnophilidae (Typical Antbirds),, +13032,species,sclant1,Sclater's Antwren,Myrmotherula sclateri,Passeriformes,Thamnophilidae (Typical Antbirds),, +13033,species,guista1,Guianan Streaked-Antwren,Myrmotherula surinamensis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13034,species,amasta1,Amazonian Streaked-Antwren,Myrmotherula multostriata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13035,species,pacant,Pacific Antwren,Myrmotherula pacifica,Passeriformes,Thamnophilidae (Typical Antbirds),, +13036,species,cheant1,Cherrie's Antwren,Myrmotherula cherriei,Passeriformes,Thamnophilidae (Typical Antbirds),, +13037,species,klaant1,Klages's Antwren,Myrmotherula klagesi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13038,species,stcant4,Stripe-chested Antwren,Myrmotherula longicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, +13043,species,whfant2,White-flanked Antwren,Myrmotherula axillaris,Passeriformes,Thamnophilidae (Typical Antbirds),, +13044,issf,whfant5,White-flanked Antwren (White-flanked),Myrmotherula axillaris [axillaris Group],Passeriformes,Thamnophilidae (Typical Antbirds),,whfant2 +13050,issf,whfant6,White-flanked Antwren (Silvery-flanked),Myrmotherula axillaris luctuosa,Passeriformes,Thamnophilidae (Typical Antbirds),,whfant2 +13051,species,slaant1,Slaty Antwren,Myrmotherula schisticolor,Passeriformes,Thamnophilidae (Typical Antbirds),, +13055,species,risant1,Rio Suno Antwren,Myrmotherula sunensis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13058,species,salant1,Salvadori's Antwren,Myrmotherula minor,Passeriformes,Thamnophilidae (Typical Antbirds),, +13059,species,lowant1,Long-winged Antwren,Myrmotherula longipennis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13066,species,batant3,Band-tailed Antwren,Myrmotherula urosticta,Passeriformes,Thamnophilidae (Typical Antbirds),, +13067,species,iheant1,Ihering's Antwren,Myrmotherula iheringi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13068,issf,iheant2,Ihering's Antwren (Purus),Myrmotherula iheringi heteroptera,Passeriformes,Thamnophilidae (Typical Antbirds),,iheant1 +13069,issf,iheant3,Ihering's Antwren (Ihering's),Myrmotherula iheringi iheringi,Passeriformes,Thamnophilidae (Typical Antbirds),,iheant1 +13070,issf,bamant2,Ihering's Antwren (Bamboo),Myrmotherula iheringi oreni,Passeriformes,Thamnophilidae (Typical Antbirds),,iheant1 +13071,species,rdjant2,Rio de Janeiro Antwren,Myrmotherula fluminensis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13072,species,ashant1,Ashy Antwren,Myrmotherula grisea,Passeriformes,Thamnophilidae (Typical Antbirds),, +13073,species,uniant1,Unicolored Antwren,Myrmotherula unicolor,Passeriformes,Thamnophilidae (Typical Antbirds),, +13074,species,alaant1,Alagoas Antwren,Myrmotherula snowi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13075,species,plwant2,Plain-winged Antwren,Myrmotherula behni,Passeriformes,Thamnophilidae (Typical Antbirds),, +13080,species,gryant1,Gray Antwren,Myrmotherula menetriesii,Passeriformes,Thamnophilidae (Typical Antbirds),, +13086,species,leaant1,Leaden Antwren,Myrmotherula assimilis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13087,spuh,myrmot1,Myrmotherula sp.,Myrmotherula sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +13088,species,banant2,Banded Antbird,Dichrozona cincta,Passeriformes,Thamnophilidae (Typical Antbirds),, +13089,species,stbant2,Stripe-backed Antbird,Myrmorchilus strigilatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13092,species,caaant1,Caatinga Antwren,Herpsilochmus sellowi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13093,species,bahant1,Bahia Antwren,Herpsilochmus pileatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13094,species,blcant2,Black-capped Antwren,Herpsilochmus atricapillus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13095,species,mapant1,Predicted Antwren,Herpsilochmus praedictus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13096,species,ajpant1,Aripuana Antwren,Herpsilochmus stotzi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13097,species,crbant1,Creamy-bellied Antwren,Herpsilochmus motacilloides,Passeriformes,Thamnophilidae (Typical Antbirds),, +13098,species,astant1,Ash-throated Antwren,Herpsilochmus parkeri,Passeriformes,Thamnophilidae (Typical Antbirds),, +13099,form,intant1,Inambari-Tambopata Antwren (undescribed form),Herpsilochmus [undescribed Inambari-Tambopata Antwren],Passeriformes,Thamnophilidae (Typical Antbirds),, +13100,form,lorant1,Loreto Antwren (undescribed form),Herpsilochmus [undescribed Loreto form],Passeriformes,Thamnophilidae (Typical Antbirds),, +13101,species,sptant1,Spot-tailed Antwren,Herpsilochmus sticturus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13102,species,dugant1,Dugand's Antwren,Herpsilochmus dugandi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13103,species,todant1,Todd's Antwren,Herpsilochmus stictocephalus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13104,species,ancant1,Ancient Antwren,Herpsilochmus gentryi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13105,species,spbant4,Spot-backed Antwren,Herpsilochmus dorsimaculatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13106,species,rorant1,Roraiman Antwren,Herpsilochmus roraimae,Passeriformes,Thamnophilidae (Typical Antbirds),, +13109,species,pecant1,Pectoral Antwren,Herpsilochmus pectoralis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13110,species,labant1,Large-billed Antwren,Herpsilochmus longirostris,Passeriformes,Thamnophilidae (Typical Antbirds),, +13111,species,yebant2,Yellow-breasted Antwren,Herpsilochmus axillaris,Passeriformes,Thamnophilidae (Typical Antbirds),, +13116,species,ruwant1,Rufous-winged Antwren,Herpsilochmus rufimarginatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13117,issf,ruwant3,Rufous-winged Antwren (Northern),Herpsilochmus rufimarginatus frater/exiguus,Passeriformes,Thamnophilidae (Typical Antbirds),,ruwant1 +13120,issf,ruwant4,Rufous-winged Antwren (Southern),Herpsilochmus rufimarginatus rufimarginatus/scapularis,Passeriformes,Thamnophilidae (Typical Antbirds),,ruwant1 +13123,spuh,herpsi1,Herpsilochmus sp.,Herpsilochmus sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +13124,species,dowant1,Dot-winged Antwren,Microrhopias quixensis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13125,issf,dowant3,Dot-winged Antwren (Boucard's),Microrhopias quixensis [boucardi Group],Passeriformes,Thamnophilidae (Typical Antbirds),,dowant1 +13129,issf,dowant5,Dot-winged Antwren (microstictus),Microrhopias quixensis microstictus,Passeriformes,Thamnophilidae (Typical Antbirds),,dowant1 +13130,issf,dowant7,Dot-winged Antwren (quixensis),Microrhopias quixensis quixensis,Passeriformes,Thamnophilidae (Typical Antbirds),,dowant1 +13131,issf,dowant6,Dot-winged Antwren (nigriventris),Microrhopias quixensis nigriventris,Passeriformes,Thamnophilidae (Typical Antbirds),,dowant1 +13132,issf,dowant8,Dot-winged Antwren (White-tailed),Microrhopias quixensis albicauda/intercedens,Passeriformes,Thamnophilidae (Typical Antbirds),,dowant1 +13135,issf,dowant2,Dot-winged Antwren (bicolor),Microrhopias quixensis bicolor,Passeriformes,Thamnophilidae (Typical Antbirds),,dowant1 +13136,issf,dowant4,Dot-winged Antwren (emiliae),Microrhopias quixensis emiliae,Passeriformes,Thamnophilidae (Typical Antbirds),,dowant1 +13137,species,nabant1,Narrow-billed Antwren,Formicivora iheringi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13138,species,blhant4,Black-hooded Antwren,Formicivora erythronotos,Passeriformes,Thamnophilidae (Typical Antbirds),, +13139,species,whfant1,White-fringed Antwren,Formicivora grisea,Passeriformes,Thamnophilidae (Typical Antbirds),, +13140,issf,whfant4,White-fringed Antwren (Northern),Formicivora grisea [intermedia Group],Passeriformes,Thamnophilidae (Typical Antbirds),,whfant1 +13147,issf,whfant3,White-fringed Antwren (Southern),Formicivora grisea [grisea Group],Passeriformes,Thamnophilidae (Typical Antbirds),,whfant1 +13151,species,serant1,Serra Antwren,Formicivora serrana,Passeriformes,Thamnophilidae (Typical Antbirds),, +13154,species,resant1,Restinga Antwren,Formicivora littoralis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13155,species,blbant2,Black-bellied Antwren,Formicivora melanogaster,Passeriformes,Thamnophilidae (Typical Antbirds),, +13158,species,rubant4,Rusty-backed Antwren,Formicivora rufa,Passeriformes,Thamnophilidae (Typical Antbirds),, +13162,species,sinant1,Sincora Antwren,Formicivora grantsaui,Passeriformes,Thamnophilidae (Typical Antbirds),, +13163,species,parant1,Parana Antwren,Stymphalornis acutirostris,Passeriformes,Thamnophilidae (Typical Antbirds),, +13164,issf,parant3,Parana Antwren (Parana),Stymphalornis acutirostris acutirostris,Passeriformes,Thamnophilidae (Typical Antbirds),,parant1 +13165,issf,parant4,Parana Antwren (Sao Paulo),Stymphalornis acutirostris paludicola,Passeriformes,Thamnophilidae (Typical Antbirds),,parant1 +13166,spuh,antwre1,antwren sp.,Thamnophilidae sp. (antwren sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, +13167,species,ferant1,Ferruginous Antbird,Drymophila ferruginea,Passeriformes,Thamnophilidae (Typical Antbirds),, +13168,species,berant1,Bertoni's Antbird,Drymophila rubricollis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13169,species,rutant1,Rufous-tailed Antbird,Drymophila genei,Passeriformes,Thamnophilidae (Typical Antbirds),, +13170,species,ocrant1,Ochre-rumped Antbird,Drymophila ochropyga,Passeriformes,Thamnophilidae (Typical Antbirds),, +13171,species,dutant1,Dusky-tailed Antbird,Drymophila malura,Passeriformes,Thamnophilidae (Typical Antbirds),, +13172,species,scaant2,Scaled Antbird,Drymophila squamata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13175,species,strant2,Striated Antbird,Drymophila devillei,Passeriformes,Thamnophilidae (Typical Antbirds),, +13178,species,lotant1,East Andean Antbird,Drymophila caudata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13179,species,klaant2,Klages's Antbird,Drymophila klagesi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13180,species,samant2,Santa Marta Antbird,Drymophila hellmayri,Passeriformes,Thamnophilidae (Typical Antbirds),, +13181,species,sthant1,Streak-headed Antbird,Drymophila striaticeps,Passeriformes,Thamnophilidae (Typical Antbirds),, +13186,spuh,drymop1,Drymophila sp.,Drymophila sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +13187,species,guiwaa1,Guianan Warbling-Antbird,Hypocnemis cantator,Passeriformes,Thamnophilidae (Typical Antbirds),, +13188,species,imewaa1,Imeri Warbling-Antbird,Hypocnemis flavescens,Passeriformes,Thamnophilidae (Typical Antbirds),, +13189,species,perwaa1,Peruvian Warbling-Antbird,Hypocnemis peruviana,Passeriformes,Thamnophilidae (Typical Antbirds),, +13192,species,yebwaa1,Yellow-breasted Warbling-Antbird,Hypocnemis subflava,Passeriformes,Thamnophilidae (Typical Antbirds),, +13195,species,ronwaa1,Rondonia Warbling-Antbird,Hypocnemis ochrogyna,Passeriformes,Thamnophilidae (Typical Antbirds),, +13196,species,spiwaa1,Spix's Warbling-Antbird,Hypocnemis striata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13200,species,manwaa1,Manicore Warbling-Antbird,Hypocnemis rondoni,Passeriformes,Thamnophilidae (Typical Antbirds),, +13201,spuh,warant1,warbling-antbird sp.,Hypocnemis sp. (warbling-antbird sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, +13202,species,yebant3,Yellow-browed Antbird,Hypocnemis hypoxantha,Passeriformes,Thamnophilidae (Typical Antbirds),, +13205,species,orbant1,Orange-bellied Antwren,Terenura sicki,Passeriformes,Thamnophilidae (Typical Antbirds),, +13206,species,stcant3,Streak-capped Antwren,Terenura maculata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13207,species,wilant1,Willis's Antbird,Cercomacroides laeta,Passeriformes,Thamnophilidae (Typical Antbirds),, +13211,species,parant2,Parker's Antbird,Cercomacroides parkeri,Passeriformes,Thamnophilidae (Typical Antbirds),, +13212,species,dusant1,Dusky Antbird,Cercomacroides tyrannina,Passeriformes,Thamnophilidae (Typical Antbirds),, +13213,issf,dusant2,Dusky Antbird (tyrannina/crepera),Cercomacroides tyrannina tyrannina/crepera,Passeriformes,Thamnophilidae (Typical Antbirds),,dusant1 +13216,issf,dusant3,Dusky Antbird (saturatior/vicina),Cercomacroides tyrannina saturatior/vicina,Passeriformes,Thamnophilidae (Typical Antbirds),,dusant1 +13219,species,blaant2,Black Antbird,Cercomacroides serva,Passeriformes,Thamnophilidae (Typical Antbirds),, +13220,species,blaant4,Blackish Antbird,Cercomacroides nigrescens,Passeriformes,Thamnophilidae (Typical Antbirds),, +13226,species,blaant5,Riparian Antbird,Cercomacroides fuscicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, +13227,slash,y00967,Blackish/Riparian Antbird,Cercomacroides nigrescens/fuscicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, +13228,spuh,cercom1,Cercomacroides sp.,Cercomacroides sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +13229,species,manant1,Manu Antbird,Cercomacra manu,Passeriformes,Thamnophilidae (Typical Antbirds),, +13230,species,gryant2,Gray Antbird,Cercomacra cinerascens,Passeriformes,Thamnophilidae (Typical Antbirds),, +13235,species,rdjant1,Rio de Janeiro Antbird,Cercomacra brasiliana,Passeriformes,Thamnophilidae (Typical Antbirds),, +13236,species,magant1,Mato Grosso Antbird,Cercomacra melanaria,Passeriformes,Thamnophilidae (Typical Antbirds),, +13237,species,banant1,Bananal Antbird,Cercomacra ferdinandi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13238,species,jetant1,Jet Antbird,Cercomacra nigricans,Passeriformes,Thamnophilidae (Typical Antbirds),, +13239,species,ribant1,Rio Branco Antbird,Cercomacra carbonaria,Passeriformes,Thamnophilidae (Typical Antbirds),, +13240,species,wbfeye1,White-backed Fire-eye,Pyriglena leuconota,Passeriformes,Thamnophilidae (Typical Antbirds),, +13241,issf,whbfie1,White-backed Fire-eye (Pacific),Pyriglena leuconota pacifica,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 +13242,issf,whbfie2,White-backed Fire-eye (Black-bellied),Pyriglena leuconota castanoptera,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 +13243,issf,whbfie3,White-backed Fire-eye (Black-headed),Pyriglena leuconota picea,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 +13244,issf,whbfie4,White-backed Fire-eye (White-backed),Pyriglena leuconota [leuconota Group],Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 +13251,issf,whbfie5,White-backed Fire-eye (Pernambuco),Pyriglena leuconota pernambucensis,Passeriformes,Thamnophilidae (Typical Antbirds),,wbfeye1 +13252,species,fbfeye1,Fringe-backed Fire-eye,Pyriglena atra,Passeriformes,Thamnophilidae (Typical Antbirds),, +13253,species,wsfeye1,White-shouldered Fire-eye,Pyriglena leucoptera,Passeriformes,Thamnophilidae (Typical Antbirds),, +13254,species,sleant1,Slender Antbird,Rhopornis ardesiacus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13255,species,whbant6,White-browed Antbird,Myrmoborus leucophrys,Passeriformes,Thamnophilidae (Typical Antbirds),, +13260,species,asbant1,Ash-breasted Antbird,Myrmoborus lugubris,Passeriformes,Thamnophilidae (Typical Antbirds),, +13265,species,blfant2,Black-faced Antbird,Myrmoborus myotherinus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13273,species,bltant1,Black-tailed Antbird,Myrmoborus melanurus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13274,species,whlant1,White-lined Antbird,Myrmoborus lophotes,Passeriformes,Thamnophilidae (Typical Antbirds),, +13275,species,blcant3,Black-chinned Antbird,Hypocnemoides melanopogon,Passeriformes,Thamnophilidae (Typical Antbirds),, +13278,species,batant1,Band-tailed Antbird,Hypocnemoides maculicauda,Passeriformes,Thamnophilidae (Typical Antbirds),, +13279,species,bawant1,Black-and-white Antbird,Myrmochanes hemileucus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13280,species,bacant1,Bare-crowned Antbird,Gymnocichla nudiceps,Passeriformes,Thamnophilidae (Typical Antbirds),, +13285,species,silant1,Silvered Antbird,Sclateria naevia,Passeriformes,Thamnophilidae (Typical Antbirds),, +13290,species,blhant3,Black-headed Antbird,Percnostola rufifrons,Passeriformes,Thamnophilidae (Typical Antbirds),, +13291,issf,bkhant1,Black-headed Antbird (Amazonas),Percnostola rufifrons minor/jensoni,Passeriformes,Thamnophilidae (Typical Antbirds),,blhant3 +13294,issf,bkhant2,Black-headed Antbird (Hellmayr's),Percnostola rufifrons rufifrons/subcristata,Passeriformes,Thamnophilidae (Typical Antbirds),,blhant3 +13297,species,allant1,Allpahuayo Antbird,Percnostola arenarum,Passeriformes,Thamnophilidae (Typical Antbirds),, +13298,species,slcant3,Slate-colored Antbird,Myrmelastes schistaceus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13299,species,rorant2,Roraiman Antbird,Myrmelastes saturatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13302,species,pluant1,Plumbeous Antbird,Myrmelastes hyperythrus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13303,species,spwant3,Spot-winged Antbird,Myrmelastes leucostigma,Passeriformes,Thamnophilidae (Typical Antbirds),, +13308,species,humant1,Humaita Antbird,Myrmelastes humaythae,Passeriformes,Thamnophilidae (Typical Antbirds),, +13309,species,brhant1,Brownish-headed Antbird,Myrmelastes brunneiceps,Passeriformes,Thamnophilidae (Typical Antbirds),, +13310,species,rufant4,Rufous-faced Antbird,Myrmelastes rufifacies,Passeriformes,Thamnophilidae (Typical Antbirds),, +13311,species,cauant2,Caura Antbird,Myrmelastes caurensis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13314,spuh,schist1,Myrmelastes sp.,Myrmelastes sp.,Passeriformes,Thamnophilidae (Typical Antbirds),, +13315,species,whbant1,White-bellied Antbird,Myrmeciza longipes,Passeriformes,Thamnophilidae (Typical Antbirds),, +13320,species,chbant1,Chestnut-backed Antbird,Poliocrania exsul,Passeriformes,Thamnophilidae (Typical Antbirds),, +13321,issf,chbant3,Chestnut-backed Antbird (Chestnut-backed),Poliocrania exsul [exsul Group],Passeriformes,Thamnophilidae (Typical Antbirds),,chbant1 +13325,issf,chbant4,Chestnut-backed Antbird (Short-tailed),Poliocrania exsul maculifer/cassini,Passeriformes,Thamnophilidae (Typical Antbirds),,chbant1 +13328,species,gyhant1,Gray-headed Antbird,Ampelornis griseiceps,Passeriformes,Thamnophilidae (Typical Antbirds),, +13329,species,dumant1,Dull-mantled Antbird,Sipia laemosticta,Passeriformes,Thamnophilidae (Typical Antbirds),, +13330,species,dumant3,Magdalena Antbird,Sipia palliata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13331,species,esmant1,Esmeraldas Antbird,Sipia nigricauda,Passeriformes,Thamnophilidae (Typical Antbirds),, +13332,species,sttant3,Stub-tailed Antbird,Sipia berlepschi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13333,species,chtant2,Chestnut-tailed Antbird,Sciaphylax hemimelaena,Passeriformes,Thamnophilidae (Typical Antbirds),, +13334,issf,chtant3,Chestnut-tailed Antbird (hemimelaena),Sciaphylax hemimelaena hemimelaena,Passeriformes,Thamnophilidae (Typical Antbirds),,chtant2 +13335,issf,chtant4,Chestnut-tailed Antbird (pallens),Sciaphylax hemimelaena pallens,Passeriformes,Thamnophilidae (Typical Antbirds),,chtant2 +13336,form,ariant1,Aripuana Antbird (undescribed form),Sciaphylax [undescribed form],Passeriformes,Thamnophilidae (Typical Antbirds),, +13337,species,zimant1,Zimmer's Antbird,Sciaphylax castanea,Passeriformes,Thamnophilidae (Typical Antbirds),, +13340,slash,y00690,Chestnut-tailed/Zimmer's Antbird,Sciaphylax hemimelaena/castanea,Passeriformes,Thamnophilidae (Typical Antbirds),, +13341,species,febant1,Ferruginous-backed Antbird,Myrmoderus ferrugineus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13344,species,whiant1,Cordillera Azul Antbird,Myrmoderus eowilsoni,Passeriformes,Thamnophilidae (Typical Antbirds),, +13345,species,scaant3,Scalloped Antbird,Myrmoderus ruficauda,Passeriformes,Thamnophilidae (Typical Antbirds),, +13348,species,whbant4,White-bibbed Antbird,Myrmoderus loricatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13349,species,squant1,Squamate Antbird,Myrmoderus squamosus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13350,species,whsant1,White-shouldered Antbird,Akletos melanoceps,Passeriformes,Thamnophilidae (Typical Antbirds),, +13351,species,goeant1,Goeldi's Antbird,Akletos goeldii,Passeriformes,Thamnophilidae (Typical Antbirds),, +13352,species,sooant1,Sooty Antbird,Hafferia fortis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13355,species,zelant1,Zeledon's Antbird,Hafferia zeledoni,Passeriformes,Thamnophilidae (Typical Antbirds),, +13356,issf,immant5,Zeledon's Antbird (Zeledon's),Hafferia zeledoni zeledoni,Passeriformes,Thamnophilidae (Typical Antbirds),,zelant1 +13357,issf,immant4,Zeledon's Antbird (Choco),Hafferia zeledoni berlepschi,Passeriformes,Thamnophilidae (Typical Antbirds),,zelant1 +13358,species,immant1,Blue-lored Antbird,Hafferia immaculata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13359,issf,immant3,Blue-lored Antbird (Andean),Hafferia immaculata immaculata,Passeriformes,Thamnophilidae (Typical Antbirds),,immant1 +13360,issf,immant2,Blue-lored Antbird (Concepcion),Hafferia immaculata concepcion,Passeriformes,Thamnophilidae (Typical Antbirds),,immant1 +13361,species,yapant1,Yapacana Antbird,Aprositornis disjuncta,Passeriformes,Thamnophilidae (Typical Antbirds),, +13362,species,bltant2,Black-throated Antbird,Myrmophylax atrothorax,Passeriformes,Thamnophilidae (Typical Antbirds),, +13368,species,gybant1,Gray-bellied Antbird,Ammonastes pelzelni,Passeriformes,Thamnophilidae (Typical Antbirds),, +13369,species,wibant1,Wing-banded Antbird,Myrmornis torquata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13370,issf,wibant2,Wing-banded Antbird (Buff-banded),Myrmornis torquata stictoptera,Passeriformes,Thamnophilidae (Typical Antbirds),,wibant1 +13371,issf,wibant3,Wing-banded Antbird (Wing-banded),Myrmornis torquata torquata,Passeriformes,Thamnophilidae (Typical Antbirds),,wibant1 +13372,species,whpant1,White-plumed Antbird,Pithys albifrons,Passeriformes,Thamnophilidae (Typical Antbirds),, +13375,species,whmant2,White-masked Antbird,Pithys castaneus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13376,species,bicant2,Bicolored Antbird,Gymnopithys bicolor,Passeriformes,Thamnophilidae (Typical Antbirds),, +13382,species,whcant1,White-cheeked Antbird,Gymnopithys leucaspis,Passeriformes,Thamnophilidae (Typical Antbirds),, +13387,species,rutant4,Rufous-throated Antbird,Gymnopithys rufigula,Passeriformes,Thamnophilidae (Typical Antbirds),, +13391,species,whtant1,White-throated Antbird,Oneillornis salvini,Passeriformes,Thamnophilidae (Typical Antbirds),, +13392,species,lunant2,Lunulated Antbird,Oneillornis lunulatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13393,species,baeant1,Bare-eyed Antbird,Rhegmatorhina gymnops,Passeriformes,Thamnophilidae (Typical Antbirds),, +13394,species,harant1,Harlequin Antbird,Rhegmatorhina berlepschi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13395,species,whbant5,White-breasted Antbird,Rhegmatorhina hoffmannsi,Passeriformes,Thamnophilidae (Typical Antbirds),, +13396,species,chcant1,Chestnut-crested Antbird,Rhegmatorhina cristata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13397,species,hacant1,Hairy-crested Antbird,Rhegmatorhina melanosticta,Passeriformes,Thamnophilidae (Typical Antbirds),, +13401,species,spoant1,Spotted Antbird,Hylophylax naevioides,Passeriformes,Thamnophilidae (Typical Antbirds),, +13404,species,spbant6,Spot-backed Antbird,Hylophylax naevius,Passeriformes,Thamnophilidae (Typical Antbirds),, +13410,species,dobant2,Dot-backed Antbird,Hylophylax punctulatus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13411,species,scbant3,Common Scale-backed Antbird,Willisornis poecilinotus,Passeriformes,Thamnophilidae (Typical Antbirds),, +13412,issf,scbant7,Common Scale-backed Antbird (Common Scale-backed),Willisornis poecilinotus poecilinotus,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 +13413,issf,scbant6,Common Scale-backed Antbird (Buff-breasted),Willisornis poecilinotus lepidonota/duidae,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 +13416,issf,scbant5,Common Scale-backed Antbird (Black-bibbed),Willisornis poecilinotus gutturalis,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 +13417,issf,scbant4,Common Scale-backed Antbird (Gray-breasted),Willisornis poecilinotus griseiventris,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant3 +13418,species,scbant8,Xingu Scale-backed Antbird,Willisornis vidua,Passeriformes,Thamnophilidae (Typical Antbirds),, +13419,issf,scbant1,Xingu Scale-backed Antbird (Tapajos),Willisornis vidua nigrigula,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant8 +13420,issf,xsbant1,Xingu Scale-backed Antbird (Xingu),Willisornis vidua vidua,Passeriformes,Thamnophilidae (Typical Antbirds),,scbant8 +13421,spuh,antbir1,antbird sp.,Thamnophilidae sp. (antbird sp.),Passeriformes,Thamnophilidae (Typical Antbirds),, +13422,species,bsbeye1,Black-spotted Bare-eye,Phlegopsis nigromaculata,Passeriformes,Thamnophilidae (Typical Antbirds),, +13427,species,rwbeye1,Reddish-winged Bare-eye,Phlegopsis erythroptera,Passeriformes,Thamnophilidae (Typical Antbirds),, +13430,species,pafant1,Pale-faced Bare-eye,Phlegopsis borbae,Passeriformes,Thamnophilidae (Typical Antbirds),, +13431,species,oceant1,Ocellated Antbird,Phaenostictus mcleannani,Passeriformes,Thamnophilidae (Typical Antbirds),, +13435,species,colcre1,Collared Crescentchest,Melanopareia torquata,Passeriformes,Melanopareiidae (Crescentchests),Crescentchests, +13436,issf,colcre2,Collared Crescentchest (Double-collared),Melanopareia torquata bitorquata,Passeriformes,Melanopareiidae (Crescentchests),,colcre1 +13437,issf,colcre3,Collared Crescentchest (Collared),Melanopareia torquata torquata/rufescens,Passeriformes,Melanopareiidae (Crescentchests),,colcre1 +13440,species,olccre1,Olive-crowned Crescentchest,Melanopareia maximiliani,Passeriformes,Melanopareiidae (Crescentchests),, +13444,species,marcre1,Marañon Crescentchest,Melanopareia maranonica,Passeriformes,Melanopareiidae (Crescentchests),, +13445,species,elecre1,Elegant Crescentchest,Melanopareia elegans,Passeriformes,Melanopareiidae (Crescentchests),, +13448,species,blcant1,Black-crowned Antpitta,Pittasoma michleri,Passeriformes,Conopophagidae (Gnateaters),Gnateaters and Antpittas, +13451,species,rucant3,Rufous-crowned Antpitta,Pittasoma rufopileatum,Passeriformes,Conopophagidae (Gnateaters),, +13455,species,blbgna1,Black-bellied Gnateater,Conopophaga melanogaster,Passeriformes,Conopophagidae (Gnateaters),, +13456,species,blcgna1,Black-cheeked Gnateater,Conopophaga melanops,Passeriformes,Conopophagidae (Gnateaters),, +13460,species,chbgna1,Chestnut-belted Gnateater,Conopophaga aurita,Passeriformes,Conopophagidae (Gnateaters),, +13461,issf,chbgna2,Chestnut-belted Gnateater (Chestnut-belted),Conopophaga aurita [aurita Group],Passeriformes,Conopophagidae (Gnateaters),,chbgna1 +13466,issf,chbgna3,Chestnut-belted Gnateater (Snethlage's),Conopophaga aurita snethlageae/pallida,Passeriformes,Conopophagidae (Gnateaters),,chbgna1 +13469,species,astgna1,Ash-throated Gnateater,Conopophaga peruviana,Passeriformes,Conopophagidae (Gnateaters),, +13470,species,rufgna2,Ceara Gnateater,Conopophaga cearae,Passeriformes,Conopophagidae (Gnateaters),, +13471,species,hoogna1,Hooded Gnateater,Conopophaga roberti,Passeriformes,Conopophagidae (Gnateaters),, +13472,species,rufgna3,Rufous Gnateater,Conopophaga lineata,Passeriformes,Conopophagidae (Gnateaters),, +13475,species,chcgna1,Chestnut-crowned Gnateater,Conopophaga castaneiceps,Passeriformes,Conopophagidae (Gnateaters),, +13480,species,slagna1,Slaty Gnateater,Conopophaga ardesiaca,Passeriformes,Conopophagidae (Gnateaters),, +13483,species,undant1,Undulated Antpitta,Grallaria squamigera,Passeriformes,Grallariidae (Antpittas),, +13486,species,giaant1,Giant Antpitta,Grallaria gigantea,Passeriformes,Grallariidae (Antpittas),, +13490,species,greant2,Great Antpitta,Grallaria excelsa,Passeriformes,Grallariidae (Antpittas),, +13493,species,varant2,Variegated Antpitta,Grallaria varia,Passeriformes,Grallariidae (Antpittas),, +13499,species,mouant1,Moustached Antpitta,Grallaria alleni,Passeriformes,Grallariidae (Antpittas),, +13502,species,scaant1,Scaled Antpitta,Grallaria guatimalensis,Passeriformes,Grallariidae (Antpittas),, +13503,issf,scaant4,Scaled Antpitta (guatimalensis Group),Grallaria guatimalensis [guatimalensis Group],Passeriformes,Grallariidae (Antpittas),,scaant1 +13507,issf,scaant5,Scaled Antpitta (princeps/chocoensis),Grallaria guatimalensis princeps/chocoensis,Passeriformes,Grallariidae (Antpittas),,scaant1 +13510,issf,scaant6,Scaled Antpitta (aripoensis),Grallaria guatimalensis aripoensis,Passeriformes,Grallariidae (Antpittas),,scaant1 +13511,issf,scaant7,Scaled Antpitta (roraimae),Grallaria guatimalensis roraimae,Passeriformes,Grallariidae (Antpittas),,scaant1 +13512,issf,scaant8,Scaled Antpitta (regulus/carmelitae),Grallaria guatimalensis regulus/carmelitae,Passeriformes,Grallariidae (Antpittas),,scaant1 +13515,issf,scaant9,Scaled Antpitta (sororia),Grallaria guatimalensis sororia,Passeriformes,Grallariidae (Antpittas),,scaant1 +13516,species,tacant1,Tachira Antpitta,Grallaria chthonia,Passeriformes,Grallariidae (Antpittas),, +13517,species,plbant1,Plain-backed Antpitta,Grallaria haplonota,Passeriformes,Grallariidae (Antpittas),, +13522,species,ocsant1,Ochre-striped Antpitta,Grallaria dignissima,Passeriformes,Grallariidae (Antpittas),, +13523,species,eluant1,Elusive Antpitta,Grallaria eludens,Passeriformes,Grallariidae (Antpittas),, +13524,species,chcant2,Chestnut-crowned Antpitta,Grallaria ruficapilla,Passeriformes,Grallariidae (Antpittas),, +13532,species,watant1,Watkins's Antpitta,Grallaria watkinsi,Passeriformes,Grallariidae (Antpittas),, +13533,species,samant1,Santa Marta Antpitta,Grallaria bangsi,Passeriformes,Grallariidae (Antpittas),, +13534,species,cunant1,Cundinamarca Antpitta,Grallaria kaestneri,Passeriformes,Grallariidae (Antpittas),, +13535,species,sthant2,Stripe-headed Antpitta,Grallaria andicolus,Passeriformes,Grallariidae (Antpittas),, +13538,species,gynant1,Gray-naped Antpitta,Grallaria griseonucha,Passeriformes,Grallariidae (Antpittas),, +13541,species,bicant3,Bicolored Antpitta,Grallaria rufocinerea,Passeriformes,Grallariidae (Antpittas),, +13544,species,jocant1,Jocotoco Antpitta,Grallaria ridgelyi,Passeriformes,Grallariidae (Antpittas),, +13545,species,chnant1,Chestnut-naped Antpitta,Grallaria nuchalis,Passeriformes,Grallariidae (Antpittas),, +13549,species,pabant1,Pale-billed Antpitta,Grallaria carrikeri,Passeriformes,Grallariidae (Antpittas),, +13550,species,whtant2,White-throated Antpitta,Grallaria albigula,Passeriformes,Grallariidae (Antpittas),, +13551,species,yebant1,Yellow-breasted Antpitta,Grallaria flavotincta,Passeriformes,Grallariidae (Antpittas),, +13552,species,whbant3,White-bellied Antpitta,Grallaria hypoleuca,Passeriformes,Grallariidae (Antpittas),, +13555,species,rutant5,Rusty-tinged Antpitta,Grallaria przewalskii,Passeriformes,Grallariidae (Antpittas),, +13556,species,bayant1,Bay Antpitta,Grallaria capitalis,Passeriformes,Grallariidae (Antpittas),, +13557,species,rawant1,Red-and-white Antpitta,Grallaria erythroleuca,Passeriformes,Grallariidae (Antpittas),, +13558,species,rufant1,Rufous Antpitta,Grallaria rufula,Passeriformes,Grallariidae (Antpittas),, +13559,issf,rufant5,Rufous Antpitta (Sierra Nevada),Grallaria rufula spatiator,Passeriformes,Grallariidae (Antpittas),,rufant1 +13560,issf,rufant6,Rufous Antpitta (Perija),Grallaria rufula saltuensis,Passeriformes,Grallariidae (Antpittas),,rufant1 +13561,issf,rufant7,Rufous Antpitta (Rufous),Grallaria rufula rufula,Passeriformes,Grallariidae (Antpittas),,rufant1 +13562,issf,rufant8,Rufous Antpitta (Cajamarca),Grallaria rufula cajamarcae,Passeriformes,Grallariidae (Antpittas),,rufant1 +13563,issf,rufant9,Rufous Antpitta (North Peruvian),Grallaria rufula obscura,Passeriformes,Grallariidae (Antpittas),,rufant1 +13564,issf,rufant10,Rufous Antpitta (South Peruvian),Grallaria rufula occabambae,Passeriformes,Grallariidae (Antpittas),,rufant1 +13565,issf,rufant11,Rufous Antpitta (Bolivian),Grallaria rufula cochabambae,Passeriformes,Grallariidae (Antpittas),,rufant1 +13566,species,cheant2,Chestnut Antpitta,Grallaria blakei,Passeriformes,Grallariidae (Antpittas),, +13567,species,tawant1,Tawny Antpitta,Grallaria quitensis,Passeriformes,Grallariidae (Antpittas),, +13568,issf,tawant2,Tawny Antpitta (Northern),Grallaria quitensis alticola,Passeriformes,Grallariidae (Antpittas),,tawant1 +13569,issf,tawant3,Tawny Antpitta (Western),Grallaria quitensis quitensis,Passeriformes,Grallariidae (Antpittas),,tawant1 +13570,issf,tawant4,Tawny Antpitta (Southern),Grallaria quitensis atuensis,Passeriformes,Grallariidae (Antpittas),,tawant1 +13571,species,antant1,Urrao Antpitta,Grallaria urraoensis,Passeriformes,Grallariidae (Antpittas),, +13572,species,brbant1,Brown-banded Antpitta,Grallaria milleri,Passeriformes,Grallariidae (Antpittas),, +13575,species,rufant2,Rufous-faced Antpitta,Grallaria erythrotis,Passeriformes,Grallariidae (Antpittas),, +13576,spuh,gralla1,Grallaria sp.,Grallaria sp.,Passeriformes,Grallariidae (Antpittas),, +13577,species,stcant2,Streak-chested Antpitta,Hylopezus perspicillatus,Passeriformes,Grallariidae (Antpittas),, +13578,issf,stcant9,Streak-chested Antpitta (Colombian Valleys),Hylopezus perspicillatus pallidior,Passeriformes,Grallariidae (Antpittas),,stcant2 +13579,issf,stcant8,Streak-chested Antpitta (Baudo),Hylopezus perspicillatus periophthalmicus,Passeriformes,Grallariidae (Antpittas),,stcant2 +13580,issf,stcant5,Streak-chested Antpitta (Eastern Panama),Hylopezus perspicillatus perspicillatus,Passeriformes,Grallariidae (Antpittas),,stcant2 +13581,issf,stcant6,Streak-chested Antpitta (Atlantic Slope),Hylopezus perspicillatus intermedius,Passeriformes,Grallariidae (Antpittas),,stcant2 +13582,issf,stcant7,Streak-chested Antpitta (Pacific Slope),Hylopezus perspicillatus lizanoi,Passeriformes,Grallariidae (Antpittas),,stcant2 +13583,species,spoant6,Spotted Antpitta,Hylopezus macularius,Passeriformes,Grallariidae (Antpittas),, +13584,issf,spoant4,Spotted Antpitta (Spotted),Hylopezus macularius macularius,Passeriformes,Grallariidae (Antpittas),,spoant6 +13585,issf,spoant3,Spotted Antpitta (Zimmer's),Hylopezus macularius dilutus,Passeriformes,Grallariidae (Antpittas),,spoant6 +13586,species,spoant5,Snethlage's Antpitta,Hylopezus paraensis,Passeriformes,Grallariidae (Antpittas),, +13587,species,alfant1,Alta Floresta Antpitta,Hylopezus whittakeri,Passeriformes,Grallariidae (Antpittas),, +13588,species,masant1,Masked Antpitta,Hylopezus auricularis,Passeriformes,Grallariidae (Antpittas),, +13589,species,thiant1,Thicket Antpitta,Hylopezus dives,Passeriformes,Grallariidae (Antpittas),, +13593,species,whlant2,White-lored Antpitta,Hylopezus fulviventris,Passeriformes,Grallariidae (Antpittas),, +13596,species,amaant1,Amazonian Antpitta,Hylopezus berlepschi,Passeriformes,Grallariidae (Antpittas),, +13599,species,whbant7,White-browed Antpitta,Hylopezus ochroleucus,Passeriformes,Grallariidae (Antpittas),, +13600,species,spbant1,Speckle-breasted Antpitta,Hylopezus nattereri,Passeriformes,Grallariidae (Antpittas),, +13601,species,thlant2,Thrush-like Antpitta,Myrmothera campanisona,Passeriformes,Grallariidae (Antpittas),, +13607,species,thlant3,Tapajos Antpitta,Myrmothera subcanescens,Passeriformes,Grallariidae (Antpittas),, +13608,species,tepant1,Tepui Antpitta,Myrmothera simplex,Passeriformes,Grallariidae (Antpittas),, +13613,slash,y00882,Thrush-like/Tepui Antpitta,Myrmothera campanisona/simplex,Passeriformes,Grallariidae (Antpittas),, +13614,species,ocbant1,Ochre-breasted Antpitta,Grallaricula flavirostris,Passeriformes,Grallariidae (Antpittas),, +13623,species,scbant2,Scallop-breasted Antpitta,Grallaricula loricata,Passeriformes,Grallariidae (Antpittas),, +13624,species,hooant1,Hooded Antpitta,Grallaricula cucullata,Passeriformes,Grallariidae (Antpittas),, +13627,species,perant1,Peruvian Antpitta,Grallaricula peruviana,Passeriformes,Grallariidae (Antpittas),, +13628,species,ocfant1,Ochre-fronted Antpitta,Grallaricula ochraceifrons,Passeriformes,Grallariidae (Antpittas),, +13629,species,rubant5,Rusty-breasted Antpitta,Grallaricula ferrugineipectus,Passeriformes,Grallariidae (Antpittas),, +13630,issf,rubant8,Rusty-breasted Antpitta (rara),Grallaricula ferrugineipectus rara,Passeriformes,Grallariidae (Antpittas),,rubant5 +13631,issf,rubant6,Rusty-breasted Antpitta (Rusty-breasted),Grallaricula ferrugineipectus ferrugineipectus,Passeriformes,Grallariidae (Antpittas),,rubant5 +13632,species,rubant7,Leymebamba Antpitta,Grallaricula leymebambae,Passeriformes,Grallariidae (Antpittas),, +13633,species,slcant2,Slate-crowned Antpitta,Grallaricula nana,Passeriformes,Grallariidae (Antpittas),, +13634,issf,slcant4,Slate-crowned Antpitta (Slate-crowned),Grallaricula nana [nana Group],Passeriformes,Grallariidae (Antpittas),,slcant2 +13640,issf,slcant6,Slate-crowned Antpitta (Guianan),Grallaricula nana kukenamensis,Passeriformes,Grallariidae (Antpittas),,slcant2 +13641,species,slcant5,Sucre Antpitta,Grallaricula cumanensis,Passeriformes,Grallariidae (Antpittas),, +13644,species,crfant1,Crescent-faced Antpitta,Grallaricula lineifrons,Passeriformes,Grallariidae (Antpittas),, +13645,species,cthhue1,Chestnut-throated Huet-huet,Pteroptochos castaneus,Passeriformes,Rhinocryptidae (Tapaculos),Tapaculos, +13646,species,bthhue1,Black-throated Huet-huet,Pteroptochos tarnii,Passeriformes,Rhinocryptidae (Tapaculos),, +13647,species,moutur1,Moustached Turca,Pteroptochos megapodius,Passeriformes,Rhinocryptidae (Tapaculos),, +13650,species,whttap1,White-throated Tapaculo,Scelorchilus albicollis,Passeriformes,Rhinocryptidae (Tapaculos),, +13653,species,chutap1,Chucao Tapaculo,Scelorchilus rubecula,Passeriformes,Rhinocryptidae (Tapaculos),, +13656,species,rubtap1,Rusty-belted Tapaculo,Liosceles thoracicus,Passeriformes,Rhinocryptidae (Tapaculos),, +13660,species,ocetap1,Ocellated Tapaculo,Acropternis orthonyx,Passeriformes,Rhinocryptidae (Tapaculos),, +13663,species,cregal1,Crested Gallito,Rhinocrypta lanceolata,Passeriformes,Rhinocryptidae (Tapaculos),, +13666,species,sangal1,Sandy Gallito,Teledromas fuscus,Passeriformes,Rhinocryptidae (Tapaculos),, +13667,species,spobam1,Spotted Bamboowren,Psilorhamphus guttatus,Passeriformes,Rhinocryptidae (Tapaculos),, +13668,species,slabri1,Slaty Bristlefront,Merulaxis ater,Passeriformes,Rhinocryptidae (Tapaculos),, +13669,species,strbri1,Stresemann's Bristlefront,Merulaxis stresemanni,Passeriformes,Rhinocryptidae (Tapaculos),, +13670,species,ocftap1,Ochre-flanked Tapaculo,Eugralla paradoxa,Passeriformes,Rhinocryptidae (Tapaculos),, +13671,species,asctap1,Ash-colored Tapaculo,Myornis senilis,Passeriformes,Rhinocryptidae (Tapaculos),, +13672,species,whbtap1,White-breasted Tapaculo,Eleoscytalopus indigoticus,Passeriformes,Rhinocryptidae (Tapaculos),, +13673,species,bahtap1,Bahia Tapaculo,Eleoscytalopus psychopompus,Passeriformes,Rhinocryptidae (Tapaculos),, +13674,species,blatap1,Blackish Tapaculo,Scytalopus latrans,Passeriformes,Rhinocryptidae (Tapaculos),, +13675,issf,blatap3,Blackish Tapaculo (Blackish),Scytalopus latrans latrans,Passeriformes,Rhinocryptidae (Tapaculos),,blatap1 +13676,issf,blatap4,Blackish Tapaculo (Pacific),Scytalopus latrans subcinereus,Passeriformes,Rhinocryptidae (Tapaculos),,blatap1 +13677,issf,blatap2,Blackish Tapaculo (Peruvian),Scytalopus latrans intermedius,Passeriformes,Rhinocryptidae (Tapaculos),,blatap1 +13678,species,juntap1,Junin Tapaculo,Scytalopus gettyae,Passeriformes,Rhinocryptidae (Tapaculos),, +13679,species,unitap1,Unicolored Tapaculo,Scytalopus unicolor,Passeriformes,Rhinocryptidae (Tapaculos),, +13680,species,tritap1,Trilling Tapaculo,Scytalopus parvirostris,Passeriformes,Rhinocryptidae (Tapaculos),, +13681,species,sertap1,Boa Nova Tapaculo,Scytalopus gonzagai,Passeriformes,Rhinocryptidae (Tapaculos),, +13682,species,moctap1,Mouse-colored Tapaculo,Scytalopus speluncae,Passeriformes,Rhinocryptidae (Tapaculos),, +13683,species,roctap1,Rock Tapaculo,Scytalopus petrophilus,Passeriformes,Rhinocryptidae (Tapaculos),, +13684,species,diatap2,Diamantina Tapaculo,Scytalopus diamantinensis,Passeriformes,Rhinocryptidae (Tapaculos),, +13685,species,platap1,Planalto Tapaculo,Scytalopus pachecoi,Passeriformes,Rhinocryptidae (Tapaculos),, +13686,species,martap1,Marsh Tapaculo,Scytalopus iraiensis,Passeriformes,Rhinocryptidae (Tapaculos),, +13687,species,laftap1,Large-footed Tapaculo,Scytalopus macropus,Passeriformes,Rhinocryptidae (Tapaculos),, +13688,species,samtap1,Santa Marta Tapaculo,Scytalopus sanctaemartae,Passeriformes,Rhinocryptidae (Tapaculos),, +13689,species,lottap1,Long-tailed Tapaculo,Scytalopus micropterus,Passeriformes,Rhinocryptidae (Tapaculos),, +13690,species,ruvtap1,Rufous-vented Tapaculo,Scytalopus femoralis,Passeriformes,Rhinocryptidae (Tapaculos),, +13691,species,whctap1,White-crowned Tapaculo,Scytalopus atratus,Passeriformes,Rhinocryptidae (Tapaculos),, +13695,species,boltap1,Bolivian Tapaculo,Scytalopus bolivianus,Passeriformes,Rhinocryptidae (Tapaculos),, +13696,species,tactap1,Tacarcuna Tapaculo,Scytalopus panamensis,Passeriformes,Rhinocryptidae (Tapaculos),, +13697,species,chotap1,Choco Tapaculo,Scytalopus chocoensis,Passeriformes,Rhinocryptidae (Tapaculos),, +13698,species,upmtap1,Magdalena Tapaculo,Scytalopus rodriguezi,Passeriformes,Rhinocryptidae (Tapaculos),, +13699,issf,magtap2,Magdalena Tapaculo (Yariguies),Scytalopus rodriguezi yariguiorum,Passeriformes,Rhinocryptidae (Tapaculos),,upmtap1 +13700,issf,magtap3,Magdalena Tapaculo (Upper Magdalena),Scytalopus rodriguezi rodriguezi,Passeriformes,Rhinocryptidae (Tapaculos),,upmtap1 +13701,species,stitap1,Stiles's Tapaculo,Scytalopus stilesi,Passeriformes,Rhinocryptidae (Tapaculos),, +13702,species,ecutap1,Ecuadorian Tapaculo,Scytalopus robbinsi,Passeriformes,Rhinocryptidae (Tapaculos),, +13703,species,alptap1,Tatama Tapaculo,Scytalopus alvarezlopezi,Passeriformes,Rhinocryptidae (Tapaculos),, +13704,species,nartap2,Nariño Tapaculo,Scytalopus vicinior,Passeriformes,Rhinocryptidae (Tapaculos),, +13705,species,brrtap1,Brown-rumped Tapaculo,Scytalopus latebricola,Passeriformes,Rhinocryptidae (Tapaculos),, +13706,species,pertap1,Perija Tapaculo,Scytalopus perijanus,Passeriformes,Rhinocryptidae (Tapaculos),, +13707,species,mertap1,Merida Tapaculo,Scytalopus meridanus,Passeriformes,Rhinocryptidae (Tapaculos),, +13708,issf,mertap2,Merida Tapaculo (Merida),Scytalopus meridanus meridanus,Passeriformes,Rhinocryptidae (Tapaculos),,mertap1 +13709,issf,lartap1,Merida Tapaculo (Lara),Scytalopus meridanus fuscicauda,Passeriformes,Rhinocryptidae (Tapaculos),,mertap1 +13710,species,siftap1,Silvery-fronted Tapaculo,Scytalopus argentifrons,Passeriformes,Rhinocryptidae (Tapaculos),, +13711,issf,siftap2,Silvery-fronted Tapaculo (Silvery-fronted),Scytalopus argentifrons argentifrons,Passeriformes,Rhinocryptidae (Tapaculos),,siftap1 +13712,issf,siftap3,Silvery-fronted Tapaculo (Chiriqui),Scytalopus argentifrons chiriquensis,Passeriformes,Rhinocryptidae (Tapaculos),,siftap1 +13713,species,cartap1,Caracas Tapaculo,Scytalopus caracae,Passeriformes,Rhinocryptidae (Tapaculos),, +13714,species,spitap2,Spillmann's Tapaculo,Scytalopus spillmanni,Passeriformes,Rhinocryptidae (Tapaculos),, +13715,species,chutap2,Chusquea Tapaculo,Scytalopus parkeri,Passeriformes,Rhinocryptidae (Tapaculos),, +13716,species,bratap1,Brasilia Tapaculo,Scytalopus novacapitalis,Passeriformes,Rhinocryptidae (Tapaculos),, +13717,species,magtap1,Magellanic Tapaculo,Scytalopus magellanicus,Passeriformes,Rhinocryptidae (Tapaculos),, +13718,species,mattap1,Pale-bellied Tapaculo,Scytalopus griseicollis,Passeriformes,Rhinocryptidae (Tapaculos),, +13722,species,nebtap1,Neblina Tapaculo,Scytalopus altirostris,Passeriformes,Rhinocryptidae (Tapaculos),, +13723,form,lamtap1,Lambayeque Tapaculo (undescribed form),Scytalopus [undescribed Lambayeque form],Passeriformes,Rhinocryptidae (Tapaculos),, +13724,species,anctap1,Ancash Tapaculo,Scytalopus affinis,Passeriformes,Rhinocryptidae (Tapaculos),, +13725,form,miltap1,Millpo Tapaculo (undescribed form),Scytalopus [undescribed Millpo form],Passeriformes,Rhinocryptidae (Tapaculos),, +13726,species,tsctap1,Tschudi's Tapaculo,Scytalopus acutirostris,Passeriformes,Rhinocryptidae (Tapaculos),, +13727,form,aputap1,Ayacucho Tapaculo (undescribed form),Scytalopus [undescribed Ayacucho form],Passeriformes,Rhinocryptidae (Tapaculos),, +13728,species,viltap1,Vilcabamba Tapaculo,Scytalopus urubambae,Passeriformes,Rhinocryptidae (Tapaculos),, +13729,form,amptap1,Ampay Tapaculo (undescribed form),Scytalopus [undescribed Ampay form],Passeriformes,Rhinocryptidae (Tapaculos),, +13730,species,puntap1,Puna Tapaculo,Scytalopus simonsi,Passeriformes,Rhinocryptidae (Tapaculos),, +13731,species,zimtap1,Zimmer's Tapaculo,Scytalopus zimmeri,Passeriformes,Rhinocryptidae (Tapaculos),, +13732,species,whbtap2,White-browed Tapaculo,Scytalopus superciliaris,Passeriformes,Rhinocryptidae (Tapaculos),, +13735,species,dustap1,Dusky Tapaculo,Scytalopus fuscus,Passeriformes,Rhinocryptidae (Tapaculos),, +13736,species,partap1,Paramillo Tapaculo,Scytalopus canus,Passeriformes,Rhinocryptidae (Tapaculos),, +13737,species,partap2,Paramo Tapaculo,Scytalopus opacus,Passeriformes,Rhinocryptidae (Tapaculos),, +13740,species,diatap1,Diademed Tapaculo,Scytalopus schulenbergi,Passeriformes,Rhinocryptidae (Tapaculos),, +13741,spuh,scytal1,Scytalopus sp.,Scytalopus sp.,Passeriformes,Rhinocryptidae (Tapaculos),, +13742,spuh,tapacu1,tapaculo sp.,Rhinocryptidae sp.,Passeriformes,Rhinocryptidae (Tapaculos),, +13743,species,rucant2,Rufous-capped Antthrush,Formicarius colma,Passeriformes,Formicariidae (Antthrushes),Antthrushes, +13748,species,blfant1,Black-faced Antthrush,Formicarius analis,Passeriformes,Formicariidae (Antthrushes),, +13749,issf,bkfant2,Black-faced Antthrush (Mayan),Formicarius analis [moniliger Group],Passeriformes,Formicariidae (Antthrushes),,blfant1 +13753,issf,bkfant1,Black-faced Antthrush (Central American),Formicarius analis [hoffmanni Group],Passeriformes,Formicariidae (Antthrushes),,blfant1 +13759,issf,bkfant3,Black-faced Antthrush (Black-faced),Formicarius analis [analis Group],Passeriformes,Formicariidae (Antthrushes),,blfant1 +13766,species,rufant3,Rufous-fronted Antthrush,Formicarius rufifrons,Passeriformes,Formicariidae (Antthrushes),, +13767,species,blhant1,Black-headed Antthrush,Formicarius nigricapillus,Passeriformes,Formicariidae (Antthrushes),, +13770,species,rubant1,Rufous-breasted Antthrush,Formicarius rufipectus,Passeriformes,Formicariidae (Antthrushes),, +13775,spuh,formic1,Formicarius sp.,Formicarius sp.,Passeriformes,Formicariidae (Antthrushes),, +13776,species,shtant1,Short-tailed Antthrush,Chamaeza campanisona,Passeriformes,Formicariidae (Antthrushes),, +13789,species,strant3,Striated Antthrush,Chamaeza nobilis,Passeriformes,Formicariidae (Antthrushes),, +13793,species,sucant1,Such's Antthrush,Chamaeza meruloides,Passeriformes,Formicariidae (Antthrushes),, +13794,species,schant1,Schwartz's Antthrush,Chamaeza turdina,Passeriformes,Formicariidae (Antthrushes),, +13797,species,rutant2,Rufous-tailed Antthrush,Chamaeza ruficauda,Passeriformes,Formicariidae (Antthrushes),, +13798,species,barant2,Barred Antthrush,Chamaeza mollissima,Passeriformes,Formicariidae (Antthrushes),, +13801,spuh,chamae1,Chamaeza sp.,Chamaeza sp.,Passeriformes,Formicariidae (Antthrushes),, +13802,spuh,antthr1,antthrush sp.,Formicarius/Chamaeza sp.,Passeriformes,Formicariidae (Antthrushes),, +13803,species,tatlea1,Tawny-throated Leaftosser,Sclerurus mexicanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),Leaftossers and Miners, +13804,issf,tatlea5,Tawny-throated Leaftosser (Mexican),Sclerurus mexicanus mexicanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 +13805,issf,tatlea8,Tawny-throated Leaftosser (Costa Rican),Sclerurus mexicanus pullus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 +13806,issf,tatlea2,Tawny-throated Leaftosser (Andean),Sclerurus mexicanus andinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 +13807,issf,tatlea6,Tawny-throated Leaftosser (Dusky),Sclerurus mexicanus obscurior,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 +13808,issf,tatlea7,Tawny-throated Leaftosser (Amazonian),Sclerurus mexicanus peruvianus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 +13809,issf,tatlea4,Tawny-throated Leaftosser (Guianan),Sclerurus mexicanus macconnelli,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 +13810,issf,tatlea3,Tawny-throated Leaftosser (Atlantic),Sclerurus mexicanus bahiae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,tatlea1 +13811,species,shblea1,Short-billed Leaftosser,Sclerurus rufigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13815,species,sctlea1,Scaly-throated Leaftosser,Sclerurus guatemalensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13819,species,bltlea1,Black-tailed Leaftosser,Sclerurus caudacutus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13826,species,grtlea1,Gray-throated Leaftosser,Sclerurus albigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13834,species,rublea1,Rufous-breasted Leaftosser,Sclerurus scansor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13835,issf,rublea2,Rufous-breasted Leaftosser (Ceara),Sclerurus scansor cearensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rublea1 +13836,issf,rublea3,Rufous-breasted Leaftosser (Rufous-breasted),Sclerurus scansor scansor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rublea1 +13837,spuh,leafto1,leaftosser sp.,Sclerurus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13838,species,coamin1,Coastal Miner,Geositta peruviana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13842,species,slbmin1,Slender-billed Miner,Geositta tenuirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13845,species,commin1,Common Miner,Geositta cunicularia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13846,issf,commin3,Common Miner (Altiplano),Geositta cunicularia [frobeni Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 +13850,issf,commin6,Common Miner (georgei),Geositta cunicularia georgei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 +13851,issf,commin4,Common Miner (Coastal Desert),Geositta cunicularia deserticolor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 +13852,issf,commin5,Common Miner (Central Chile),Geositta cunicularia fissirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 +13853,issf,commin2,Common Miner (Patagonian),Geositta cunicularia [cunicularia Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,commin1 +13857,species,punmin1,Puna Miner,Geositta punensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13858,slash,y00795,Common/Puna Miner,Geositta cunicularia/punensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13859,species,cammin2,Campo Miner,Geositta poeciloptera,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13860,species,thbmin1,Thick-billed Miner,Geositta crassirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13861,species,rubmin1,Rufous-banded Miner,Geositta rufipennis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13869,species,gramin1,Grayish Miner,Geositta maritima,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13870,species,shbmin1,Short-billed Miner,Geositta antarctica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13871,species,dawmin1,Dark-winged Miner,Geositta saxicolina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13872,species,crrmin1,Creamy-rumped Miner,Geositta isabellina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13873,spuh,miner1,miner sp. (Geositta sp.),Geositta sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13874,species,sptwoo1,Spot-throated Woodcreeper,Certhiasomus stictolaemus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),Woodcreepers, +13878,species,oliwoo1,Olivaceous Woodcreeper,Sittasomus griseicapillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13879,issf,oliwoo3,Olivaceous Woodcreeper (Grayish),Sittasomus griseicapillus [griseus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 +13886,issf,oliwoo4,Olivaceous Woodcreeper (Pacific),Sittasomus griseicapillus aequatorialis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 +13887,issf,oliwoo5,Olivaceous Woodcreeper (Amazonian),Sittasomus griseicapillus [griseicapillus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 +13893,issf,oliwoo6,Olivaceous Woodcreeper (Reiser's),Sittasomus griseicapillus reiseri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 +13894,issf,oliwoo7,Olivaceous Woodcreeper (Olivaceous),Sittasomus griseicapillus sylviellus/olivaceus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,oliwoo1 +13897,species,lotwoo1,Long-tailed Woodcreeper,Deconychura longicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13898,issf,lotwoo3,Long-tailed Woodcreeper (Little),Deconychura longicauda [typica Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotwoo1 +13902,issf,lotwoo4,Long-tailed Woodcreeper (Northern),Deconychura longicauda longicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotwoo1 +13903,issf,lotwoo5,Long-tailed Woodcreeper (Southern),Deconychura longicauda [pallida Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotwoo1 +13907,form,yunwoo1,Yungas Woodcreeper (undescribed form),Deconychura [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13908,species,tyrwoo1,Tyrannine Woodcreeper,Dendrocincla tyrannina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13911,species,whcwoo1,White-chinned Woodcreeper,Dendrocincla merula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13919,species,rudwoo1,Ruddy Woodcreeper,Dendrocincla homochroa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13924,species,tawwoo1,Tawny-winged Woodcreeper,Dendrocincla anabatina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13928,species,plbwoo1,Plain-brown Woodcreeper,Dendrocincla fuliginosa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13929,issf,plbwoo2,Plain-brown Woodcreeper (Plain-brown),Dendrocincla fuliginosa [meruloides Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plbwoo1 +13937,issf,plbwoo3,Plain-brown Woodcreeper (Line-throated),Dendrocincla fuliginosa [fuliginosa Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plbwoo1 +13942,species,plwwoo1,Plain-winged Woodcreeper,Dendrocincla turdina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13943,issf,plbwoo4,Plain-winged Woodcreeper (Pernambuco),Dendrocincla turdina taunayi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plwwoo1 +13944,issf,plbwoo5,Plain-winged Woodcreeper (Plain-winged),Dendrocincla turdina turdina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plwwoo1 +13945,spuh,dendro2,Dendrocincla sp.,Dendrocincla sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13946,species,webwoo1,Wedge-billed Woodcreeper,Glyphorynchus spirurus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13947,issf,webwoo2,Wedge-billed Woodcreeper (pectoralis Group),Glyphorynchus spirurus [pectoralis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 +13952,issf,webwoo3,Wedge-billed Woodcreeper (spirurus Group),Glyphorynchus spirurus [spirurus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 +13958,issf,webwoo4,Wedge-billed Woodcreeper (albigularis),Glyphorynchus spirurus albigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 +13959,issf,webwoo5,Wedge-billed Woodcreeper (cuneatus Group),Glyphorynchus spirurus [cuneatus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,webwoo1 +13963,species,citwoo1,Cinnamon-throated Woodcreeper,Dendrexetastes rufigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13964,issf,citwoo2,Cinnamon-throated Woodcreeper (devillei),Dendrexetastes rufigula devillei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,citwoo1 +13965,issf,citwoo3,Cinnamon-throated Woodcreeper (rufigula),Dendrexetastes rufigula rufigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,citwoo1 +13966,issf,citwoo4,Cinnamon-throated Woodcreeper (paraensis/moniliger),Dendrexetastes rufigula paraensis/moniliger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,citwoo1 +13969,species,lobwoo1,Long-billed Woodcreeper,Nasica longirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13970,species,nobwoo1,Northern Barred-Woodcreeper,Dendrocolaptes sanctithomae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13971,issf,norbaw1,Northern Barred-Woodcreeper (Western),Dendrocolaptes sanctithomae [sanctithomae Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,nobwoo1 +13975,issf,norbaw2,Northern Barred-Woodcreeper (Eastern),Dendrocolaptes sanctithomae punctipectus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,nobwoo1 +13976,species,amabaw1,Amazonian Barred-Woodcreeper,Dendrocolaptes certhia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13977,issf,amabaw2,Amazonian Barred-Woodcreeper (Napo),Dendrocolaptes certhia radiolatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 +13978,issf,amabaw3,Amazonian Barred-Woodcreeper (Amazonian),Dendrocolaptes certhia certhia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 +13979,issf,amabaw4,Amazonian Barred-Woodcreeper (Jurua),Dendrocolaptes certhia juruanus/polyzonus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 +13982,issf,amabaw5,Amazonian Barred-Woodcreeper (Plain-colored),Dendrocolaptes certhia concolor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 +13983,issf,amabaw6,Amazonian Barred-Woodcreeper (Ridgway's),Dendrocolaptes certhia ridgwayi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 +13984,issf,xinwoo1,Amazonian Barred-Woodcreeper (Xingu),Dendrocolaptes certhia retentus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 +13985,issf,amabaw7,Amazonian Barred-Woodcreeper (Todd's),Dendrocolaptes certhia medius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,amabaw1 +13986,species,blbwoo1,Black-banded Woodcreeper,Dendrocolaptes picumnus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +13987,issf,bkbwoo1,Black-banded Woodcreeper (Spot-throated),Dendrocolaptes picumnus [puncticollis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blbwoo1 +13991,issf,bkbwoo2,Black-banded Woodcreeper (Black-banded),Dendrocolaptes picumnus [picumnus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blbwoo1 +13997,issf,bkbwoo3,Black-banded Woodcreeper (Pale-billed),Dendrocolaptes picumnus pallescens/casaresi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blbwoo1 +14000,species,hofwoo2,Hoffmanns's Woodcreeper,Dendrocolaptes hoffmannsi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14001,species,plawoo1,Planalto Woodcreeper,Dendrocolaptes platyrostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14004,spuh,dendro4,Dendrocolaptes sp.,Dendrocolaptes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14005,species,babwoo1,Bar-bellied Woodcreeper,Hylexetastes stresemanni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14009,species,rebwoo1,Red-billed Woodcreeper,Hylexetastes perrotii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14010,issf,rebwoo2,Red-billed Woodcreeper (Red-billed),Hylexetastes perrotii perrotii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rebwoo1 +14011,issf,rebwoo3,Red-billed Woodcreeper (Uniform),Hylexetastes perrotii uniformis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rebwoo1 +14012,issf,rebwoo4,Red-billed Woodcreeper (Brigida's),Hylexetastes perrotii brigidai,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rebwoo1 +14013,species,stbwoo1,Strong-billed Woodcreeper,Xiphocolaptes promeropirhynchus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14014,issf,stbwoo6,Strong-billed Woodcreeper (Central American),Xiphocolaptes promeropirhynchus [emigrans Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 +14020,issf,stbwoo7,Strong-billed Woodcreeper (Andean/Northern),Xiphocolaptes promeropirhynchus [promeropirhynchus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 +14035,issf,stbwoo8,Strong-billed Woodcreeper (Amazonian),Xiphocolaptes promeropirhynchus [orenocensis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 +14041,issf,stbwoo9,Strong-billed Woodcreeper (Carajas),Xiphocolaptes promeropirhynchus carajaensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stbwoo1 +14042,species,mouwoo1,Moustached Woodcreeper,Xiphocolaptes falcirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14045,species,whtwoo1,White-throated Woodcreeper,Xiphocolaptes albicollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14049,species,grrwoo1,Great Rufous Woodcreeper,Xiphocolaptes major,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14054,species,strwoo2,Striped Woodcreeper,Xiphorhynchus obsoletus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14059,species,leswoo4,Ceara Woodcreeper,Xiphorhynchus atlanticus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14060,species,leswoo2,Lesser Woodcreeper,Xiphorhynchus fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14064,species,chrwoo1,Chestnut-rumped Woodcreeper,Xiphorhynchus pardalotus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14067,species,ocewoo1,Ocellated Woodcreeper,Xiphorhynchus ocellatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14068,issf,ocewoo2,Ocellated Woodcreeper (Tschudi's),Xiphorhynchus ocellatus [chunchotambo Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ocewoo1 +14072,issf,ocewoo4,Ocellated Woodcreeper (Line-crowned),Xiphorhynchus ocellatus beauperthuysii/lineatocapilla,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ocewoo1 +14075,issf,ocewoo3,Ocellated Woodcreeper (Ocellated),Xiphorhynchus ocellatus ocellatus/perplexus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ocewoo1 +14078,species,elewoo1,Elegant Woodcreeper,Xiphorhynchus elegans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14084,species,spiwoo1,Spix's Woodcreeper,Xiphorhynchus spixii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14085,species,cocwoo1,Cocoa Woodcreeper,Xiphorhynchus susurrans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14086,issf,cocwoo2,Cocoa Woodcreeper (Lawrence's),Xiphorhynchus susurrans [nana Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cocwoo1 +14092,issf,cocwoo3,Cocoa Woodcreeper (Cocoa),Xiphorhynchus susurrans [susurrans Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cocwoo1 +14096,species,butwoo1,Buff-throated Woodcreeper,Xiphorhynchus guttatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14097,issf,butwoo2,Buff-throated Woodcreeper (Buff-throated),Xiphorhynchus guttatus [guttatus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,butwoo1 +14101,issf,butwoo3,Buff-throated Woodcreeper (Lafresnaye's),Xiphorhynchus guttatus guttatoides/dorbignyanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,butwoo1 +14104,issf,butwoo4,Buff-throated Woodcreeper (Dusky-billed),Xiphorhynchus guttatus [eytoni Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,butwoo1 +14108,species,ivbwoo1,Ivory-billed Woodcreeper,Xiphorhynchus flavigaster,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14117,species,blswoo1,Black-striped Woodcreeper,Xiphorhynchus lachrymosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14121,species,spowoo1,Spotted Woodcreeper,Xiphorhynchus erythropygius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14122,issf,spowoo2,Spotted Woodcreeper (Spotted),Xiphorhynchus erythropygius erythropygius/parvus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spowoo1 +14125,issf,spowoo3,Spotted Woodcreeper (Berlepsch's),Xiphorhynchus erythropygius [aequatorialis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spowoo1 +14129,species,olbwoo1,Olive-backed Woodcreeper,Xiphorhynchus triangularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14134,spuh,xiphor1,Xiphorhynchus sp.,Xiphorhynchus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14135,species,stbwoo2,Straight-billed Woodcreeper,Dendroplex picus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14149,species,zimwoo2,Zimmer's Woodcreeper,Dendroplex kienerii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14150,slash,y00706,Straight-billed/Zimmer's Woodcreeper,Dendroplex picus/kienerii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14151,species,rebscy1,Red-billed Scythebill,Campylorhamphus trochilirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14164,species,blbscy1,Black-billed Scythebill,Campylorhamphus falcularius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14165,species,cubscy1,Curve-billed Scythebill,Campylorhamphus procurvoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14166,issf,cubscy2,Curve-billed Scythebill (Zimmer's),Campylorhamphus procurvoides sanus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 +14167,issf,cubscy3,Curve-billed Scythebill (Curve-billed),Campylorhamphus procurvoides procurvoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 +14168,issf,tupscy1,Curve-billed Scythebill (Tupana),Campylorhamphus procurvoides gyldenstolpei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 +14169,issf,cubscy4,Curve-billed Scythebill (Rondonia),Campylorhamphus procurvoides probatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 +14170,issf,tapscy1,Curve-billed Scythebill (Tapajos),Campylorhamphus procurvoides cardosoi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 +14171,issf,cubscy5,Curve-billed Scythebill (Snethlage's),Campylorhamphus procurvoides multostriatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,cubscy1 +14172,species,brbscy1,Brown-billed Scythebill,Campylorhamphus pusillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14178,spuh,scythe1,scythebill sp.,Campylorhamphus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14179,species,grescy1,Greater Scythebill,Drymotoxeres pucheranii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14180,species,scbwoo4,Scimitar-billed Woodcreeper,Drymornis bridgesii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14181,species,sthwoo1,Streak-headed Woodcreeper,Lepidocolaptes souleyetii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14189,species,nabwoo1,Narrow-billed Woodcreeper,Lepidocolaptes angustirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14198,species,whswoo1,White-striped Woodcreeper,Lepidocolaptes leucogaster,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14201,species,spcwoo1,Spot-crowned Woodcreeper,Lepidocolaptes affinis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14202,issf,spcwoo4,Spot-crowned Woodcreeper (Northern),Lepidocolaptes affinis affinis/lignicida,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spcwoo1 +14205,issf,spcwoo5,Spot-crowned Woodcreeper (Southern),Lepidocolaptes affinis neglectus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,spcwoo1 +14206,species,monwoo1,Montane Woodcreeper,Lepidocolaptes lacrymiger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14216,species,scawoo1,Scaled Woodcreeper,Lepidocolaptes squamatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14217,issf,scawoo4,Scaled Woodcreeper (Wagler's),Lepidocolaptes squamatus wagleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,scawoo1 +14218,issf,scawoo3,Scaled Woodcreeper (Scaled),Lepidocolaptes squamatus squamatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,scawoo1 +14219,species,scawoo2,Scalloped Woodcreeper,Lepidocolaptes falcinellus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14220,species,linwoo4,Duida Woodcreeper,Lepidocolaptes duidae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14221,species,linwoo3,Guianan Woodcreeper,Lepidocolaptes albolineatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14222,species,inawoo1,Inambari Woodcreeper,Lepidocolaptes fatimalimae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14223,slash,y00968,Duida/Inambari Woodcreeper,Lepidocolaptes duidae/fatimalimae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14224,species,linwoo5,Rondonia Woodcreeper,Lepidocolaptes fuscicapillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14225,species,linwoo6,Layard's Woodcreeper,Lepidocolaptes layardi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14226,spuh,lepido1,Lepidocolaptes sp.,Lepidocolaptes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14227,spuh,woodcr1,woodcreeper sp.,Dendrocolaptinae sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14228,species,slbxen1,Slender-billed Xenops,Xenops tenuirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),Ovenbirds, +14232,species,plaxen1,Plain Xenops,Xenops minutus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14233,issf,plaxen2,Plain Xenops (mexicanus Group),Xenops minutus [mexicanus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plaxen1 +14239,issf,plaxen3,Plain Xenops (genibarbis Group),Xenops minutus [genibarbis Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plaxen1 +14245,issf,plaxen4,Plain Xenops (White-throated),Xenops minutus minutus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plaxen1 +14246,species,strxen1,Streaked Xenops,Xenops rutilans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14258,slash,y00738,Slender-billed/Streaked Xenops,Xenops tenuirostris/rutilans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14259,spuh,xenops1,xenops sp.,Xenops sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14260,species,potpal1,Point-tailed Palmcreeper,Berlepschia rikeri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14261,species,rutxen1,Rufous-tailed Xenops,Microxenops milleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14262,species,whttre2,White-throated Treerunner,Pygarrhichas albogularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14263,species,rocear1,Rock Earthcreeper,Ochetorhynchus andaecola,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14264,species,stbear2,Straight-billed Earthcreeper,Ochetorhynchus ruficaudus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14268,species,batear1,Band-tailed Earthcreeper,Ochetorhynchus phoenicurus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14269,species,crachi1,Crag Chilia,Ochetorhynchus melanurus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14272,species,buftuf1,Buffy Tuftedcheek,Pseudocolaptes lawrencii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14273,issf,buftuf2,Buffy Tuftedcheek (Buffy),Pseudocolaptes lawrencii lawrencii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,buftuf1 +14274,issf,buftuf3,Buffy Tuftedcheek (Pacific),Pseudocolaptes lawrencii johnsoni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,buftuf1 +14275,species,strtuf1,Streaked Tuftedcheek,Pseudocolaptes boissonneautii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14286,species,ruwbar1,Rusty-winged Barbtail,Premnornis guttuliger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14289,species,bolear1,Bolivian Earthcreeper,Tarphonomus harterti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14290,species,chaear1,Chaco Earthcreeper,Tarphonomus certhioides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14294,species,wibhor1,Wing-banded Hornero,Furnarius figulus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14297,species,palhor2,Pale-legged Hornero,Furnarius leucopus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14298,issf,palhor5,Pale-legged Hornero (Caribbean),Furnarius leucopus longirostris/endoecus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,palhor2 +14301,issf,palhor3,Pale-legged Hornero (Pale-legged),Furnarius leucopus [leucopus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,palhor2 +14306,issf,palhor4,Pale-legged Hornero (Pacific),Furnarius leucopus cinnamomeus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,palhor2 +14307,species,pabhor2,Pale-billed Hornero,Furnarius torridus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14308,species,leshor1,Lesser Hornero,Furnarius minor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14309,species,rufhor2,Rufous Hornero,Furnarius rufus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14315,species,crehor1,Crested Hornero,Furnarius cristatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14316,spuh,horner1,hornero sp.,Furnarius sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14317,species,shtstr1,Sharp-tailed Streamcreeper,Lochmias nematura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14324,species,wrlrus1,Wren-like Rushbird,Phleocryptes melanops,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14329,species,cubree1,Curve-billed Reedhaunter,Limnornis curvirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14330,species,strear1,Striated Earthcreeper,Geocerthia serrana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14333,species,pafear1,Patagonian Forest Earthcreeper,Upucerthia saturatior,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14334,species,sctear1,Scale-throated Earthcreeper,Upucerthia dumetaria,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14338,species,whtear1,White-throated Earthcreeper,Upucerthia albigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14339,species,bubear2,Buff-breasted Earthcreeper,Upucerthia validirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14340,issf,plbear1,Buff-breasted Earthcreeper (Plain-breasted),Upucerthia validirostris jelskii/saturata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,bubear2 +14343,issf,bubear1,Buff-breasted Earthcreeper (Buff-breasted),Upucerthia validirostris validirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,bubear2 +14344,spuh,upucer1,Upucerthia sp.,Upucerthia sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14345,species,lotcin1,Long-tailed Cinclodes,Cinclodes pabsti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14346,issf,lotcin2,Long-tailed Cinclodes (Cipo),Cinclodes pabsti espinhacensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotcin1 +14347,issf,lotcin3,Long-tailed Cinclodes (Long-tailed),Cinclodes pabsti pabsti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,lotcin1 +14348,species,buwcin1,Buff-winged Cinclodes,Cinclodes fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14349,species,blacin1,Blackish Cinclodes,Cinclodes antarcticus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14350,issf,blacin2,Blackish Cinclodes (Black),Cinclodes antarcticus maculirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blacin1 +14351,issf,blacin3,Blackish Cinclodes (Blackish),Cinclodes antarcticus antarcticus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,blacin1 +14352,species,corcin1,Cordoba Cinclodes,Cinclodes comechingonus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14353,species,chwcin1,Chestnut-winged Cinclodes,Cinclodes albidiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14357,species,olrcin1,Olrog's Cinclodes,Cinclodes olrogi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14358,species,crwcin1,Cream-winged Cinclodes,Cinclodes albiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14364,spuh,bawcin1,bar-winged cinclodes sp.,Cinclodes albidiventris/albiventris/fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14365,species,gyfcin1,Gray-flanked Cinclodes,Cinclodes oustaleti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14369,species,stbcin1,Stout-billed Cinclodes,Cinclodes excelsior,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14372,species,roycin1,Royal Cinclodes,Cinclodes aricomae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14373,species,whbcin1,White-bellied Cinclodes,Cinclodes palliatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14374,species,whwcin1,White-winged Cinclodes,Cinclodes atacamensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14377,species,dabcin1,Dark-bellied Cinclodes,Cinclodes patagonicus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14380,species,surcin1,Surf Cinclodes,Cinclodes taczanowskii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14381,species,seacin1,Seaside Cinclodes,Cinclodes nigrofumosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14382,spuh,cinclo1,Cinclodes sp.,Cinclodes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14383,species,ducfog1,Dusky-cheeked Foliage-gleaner,Anabazenops dorsalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14384,species,wcfgle1,White-collared Foliage-gleaner,Anabazenops fuscus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14385,species,grexen1,Great Xenops,Megaxenops parnaguae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14386,species,pabtre1,Pale-browed Treehunter,Cichlocolaptes leucophrus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14387,issf,pabtre2,Pale-browed Treehunter (Pale-tailed),Cichlocolaptes leucophrus leucophrus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pabtre1 +14388,issf,pabtre3,Pale-browed Treehunter (Rufous-tailed),Cichlocolaptes leucophrus holti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pabtre1 +14389,species,crytre1,Cryptic Treehunter,Cichlocolaptes mazarbarnetti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14390,species,shbtre1,Sharp-billed Treehunter,Heliobletus contaminatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14393,form,bahtre1,Bahia Treehunter (undescribed form),Heliobletus [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14394,species,swfgle,Slaty-winged Foliage-gleaner,Philydor fuscipenne,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14395,issf,slwfog1,Slaty-winged Foliage-gleaner (Dusky-winged),Philydor fuscipenne fuscipenne,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,swfgle +14396,issf,slwfog2,Slaty-winged Foliage-gleaner (Rufous-backed),Philydor fuscipenne erythronotum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,swfgle +14397,species,rurfog1,Rufous-rumped Foliage-gleaner,Philydor erythrocercum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14403,species,chwfog1,Chestnut-winged Foliage-gleaner,Philydor erythropterum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14406,species,alfgle1,Alagoas Foliage-gleaner,Philydor novaesi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14407,slash,y00969,Cryptic Treehunter/Alagoas Foliage-Gleaner,Cichlocolaptes mazarbarnetti/Philydor novaesi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14408,species,bcfgle1,Black-capped Foliage-gleaner,Philydor atricapillus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14409,species,bffgle,Buff-fronted Foliage-gleaner,Philydor rufum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14417,species,crfgle1,Cinnamon-rumped Foliage-gleaner,Philydor pyrrhodes,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14418,spuh,philyd1,Philydor sp.,Philydor sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14419,species,stfgle1,Scaly-throated Foliage-gleaner,Anabacerthia variegaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14420,issf,sctfog1,Scaly-throated Foliage-gleaner (Scaly-throated),Anabacerthia variegaticeps variegaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stfgle1 +14421,issf,sctfog2,Scaly-throated Foliage-gleaner (Spot-breasted),Anabacerthia variegaticeps temporalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,stfgle1 +14422,species,mofgle1,Montane Foliage-gleaner,Anabacerthia striaticollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14429,species,rutfog1,Rufous-tailed Foliage-gleaner,Anabacerthia ruficaudata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14432,species,whbfog1,White-browed Foliage-gleaner,Anabacerthia amaurotis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14433,species,obfgle2,Ochre-breasted Foliage-gleaner,Anabacerthia lichtensteini,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14434,spuh,anabac1,Anabacerthia sp.,Anabacerthia sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14435,species,gufgle1,Guttulate Foliage-gleaner,Syndactyla guttulata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14438,species,lifgle1,Lineated Foliage-gleaner,Syndactyla subalaris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14446,species,bbfgle1,Buff-browed Foliage-gleaner,Syndactyla rufosuperciliata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14452,species,rnfgle1,Rufous-necked Foliage-gleaner,Syndactyla ruficollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14455,species,rumfog1,Russet-mantled Foliage-gleaner,Syndactyla dimidiata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14458,species,wtfgle1,White-throated Foliage-gleaner,Syndactyla roraimae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14463,species,perrec1,Peruvian Recurvebill,Syndactyla ucayalae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14464,species,bolrec1,Bolivian Recurvebill,Syndactyla striata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14465,spuh,syndac1,Syndactyla sp.,Syndactyla sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14466,species,chwhoo1,Chestnut-winged Hookbill,Ancistrops strigilatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14469,species,ccfgle1,Chestnut-capped Foliage-gleaner,Clibanornis rectirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14470,species,cangro1,Canebrake Groundcreeper,Clibanornis dendrocolaptoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14471,species,hhfgle1,Henna-hooded Foliage-gleaner,Clibanornis erythrocephalus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14474,species,rufgle1,Ruddy Foliage-gleaner,Clibanornis rubiginosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14475,issf,rudfog1,Ruddy Foliage-gleaner (Rusty),Clibanornis rubiginosus [rubiginosus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 +14481,issf,rudfog2,Ruddy Foliage-gleaner (Black-tailed),Clibanornis rubiginosus [nigricauda Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 +14485,issf,rudfog3,Ruddy Foliage-gleaner (Cinnamon-throated),Clibanornis rubiginosus cinnamomeigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 +14486,issf,rudfog4,Ruddy Foliage-gleaner (Dusky),Clibanornis rubiginosus [obscurus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 +14492,issf,rudfog5,Ruddy Foliage-gleaner (Watkins's),Clibanornis rubiginosus watkinsi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufgle1 +14493,species,samfog1,Santa Marta Foliage-gleaner,Clibanornis rufipectus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14494,species,unitre1,Uniform Treehunter,Thripadectes ignobilis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14495,species,flatre1,Flammulated Treehunter,Thripadectes flammulatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14498,species,rubtre1,Rufous-backed Treehunter,Thripadectes scrutator,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14499,species,strtre1,Striped Treehunter,Thripadectes holostictus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14503,species,stctre1,Streak-capped Treehunter,Thripadectes virgaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14510,species,stbtre1,Streak-breasted Treehunter,Thripadectes rufobrunneus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14511,species,blbtre1,Black-billed Treehunter,Thripadectes melanorhynchus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14514,species,ccfgle2,Chestnut-crowned Foliage-gleaner,Automolus rufipileatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14517,species,brfgle1,Brown-rumped Foliage-gleaner,Automolus melanopezus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14518,species,btfgle1,Buff-throated Foliage-gleaner,Automolus ochrolaemus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14519,issf,butfog1,Buff-throated Foliage-gleaner (Mexican),Automolus ochrolaemus cervinigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 +14520,issf,butfog2,Buff-throated Foliage-gleaner (amusos),Automolus ochrolaemus amusos,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 +14521,issf,butfog3,Buff-throated Foliage-gleaner (hypophaeus),Automolus ochrolaemus hypophaeus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 +14522,issf,butfog5,Buff-throated Foliage-gleaner (pallidigularis),Automolus ochrolaemus pallidigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 +14523,issf,butfog6,Buff-throated Foliage-gleaner (turdinus),Automolus ochrolaemus turdinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 +14524,issf,butfog7,Buff-throated Foliage-gleaner (ochrolaemus),Automolus ochrolaemus ochrolaemus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 +14525,issf,butfog8,Buff-throated Foliage-gleaner (auricularis),Automolus ochrolaemus auricularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,btfgle1 +14526,species,butfog4,Chiriqui Foliage-gleaner,Automolus exsertus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14527,species,strwoo1,Striped Woodhaunter,Automolus subulatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14528,issf,strwoo5,Striped Woodhaunter (Central American),Automolus subulatus [virgatus Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,strwoo1 +14533,issf,strwoo4,Striped Woodhaunter (Eastern South America),Automolus subulatus subulatus/lemae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,strwoo1 +14536,species,obfgle3,Olive-backed Foliage-gleaner,Automolus infuscatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14537,issf,olbfog1,Olive-backed Foliage-gleaner (Olive-backed),Automolus infuscatus infuscatus/purusianus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,obfgle3 +14540,issf,olbfog2,Olive-backed Foliage-gleaner (Olive-capped),Automolus infuscatus cervicalis/badius,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,obfgle3 +14543,species,parfog1,Para Foliage-gleaner,Automolus paraensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14544,species,perfog1,Pernambuco Foliage-gleaner,Automolus lammi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14545,species,wefgle1,White-eyed Foliage-gleaner,Automolus leucophthalmus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14548,spuh,automo1,Automolus sp.,Automolus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14549,spuh,foliag1,foliage-gleaner sp.,Furnariidae sp. (foliage-gleaner sp.),Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14550,species,spobar1,Spotted Barbtail,Premnoplex brunnescens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14559,species,whtbar1,White-throated Barbtail,Premnoplex tatei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14560,issf,whtbar2,White-throated Barbtail (White-throated),Premnoplex tatei tatei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whtbar1 +14561,issf,whtbar3,White-throated Barbtail (Paria),Premnoplex tatei pariae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whtbar1 +14562,species,beatre1,Beautiful Treerunner,Margarornis bellulus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14563,species,rudtre1,Ruddy Treerunner,Margarornis rubiginosus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14566,species,fudtre1,Fulvous-dotted Treerunner,Margarornis stellatus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14567,species,peatre1,Pearled Treerunner,Margarornis squamiger,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14571,species,thtray1,Thorn-tailed Rayadito,Aphrastura spinicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14575,species,masray1,Masafuera Rayadito,Aphrastura masafuerae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14576,species,demwir1,Des Murs's Wiretail,Sylviorthorhynchus desmursii,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14577,species,tatspi1,Tawny Tit-Spinetail,Sylviorthorhynchus yanacensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14578,species,bctspi1,Brown-capped Tit-Spinetail,Leptasthenura fuliginiceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14581,species,tutspi1,Tufted Tit-Spinetail,Leptasthenura platensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14582,species,pmtspi1,Plain-mantled Tit-Spinetail,Leptasthenura aegithaloides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14583,issf,plmtis3,Plain-mantled Tit-Spinetail (grisescens),Leptasthenura aegithaloides grisescens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 +14584,issf,plmtis2,Plain-mantled Tit-Spinetail (berlepschi),Leptasthenura aegithaloides berlepschi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 +14585,issf,plmtis1,Plain-mantled Tit-Spinetail (aegithaloides),Leptasthenura aegithaloides aegithaloides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 +14586,issf,plmtis4,Plain-mantled Tit-Spinetail (pallida),Leptasthenura aegithaloides pallida,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,pmtspi1 +14587,species,sttspi2,Striolated Tit-Spinetail,Leptasthenura striolata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14588,species,rctspi1,Rusty-crowned Tit-Spinetail,Leptasthenura pileata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14592,species,wbtspi1,White-browed Tit-Spinetail,Leptasthenura xenothorax,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14593,species,sttspi1,Streaked Tit-Spinetail,Leptasthenura striata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14597,species,antspi1,Andean Tit-Spinetail,Leptasthenura andicola,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14603,species,artspi1,Araucaria Tit-Spinetail,Leptasthenura setaria,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14604,spuh,tit-sp1,tit-spinetail sp.,Leptasthenura sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14605,species,ruftho1,Rufous-fronted Thornbird,Phacellodomus rufifrons,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14606,issf,ruftho3,Rufous-fronted Thornbird (Plain),Phacellodomus rufifrons inornatus/castilloi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ruftho1 +14609,issf,ruftho2,Rufous-fronted Thornbird (Rufous-fronted),Phacellodomus rufifrons [rufifrons Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,ruftho1 +14614,form,mantho1,Mantaro Thornbird (undescribed form),Phacellodomus [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14615,species,stftho1,Streak-fronted Thornbird,Phacellodomus striaticeps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14618,species,littho1,Little Thornbird,Phacellodomus sibilatrix,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14619,species,chbtho1,Chestnut-backed Thornbird,Phacellodomus dorsalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14620,species,spbtho1,Spot-breasted Thornbird,Phacellodomus maculipectus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14621,species,frbtho1,Freckle-breasted Thornbird,Phacellodomus striaticollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14622,species,gretho2,Greater Thornbird,Phacellodomus ruber,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14623,species,oretho1,Orange-eyed Thornbird,Phacellodomus erythrophthalmus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14624,species,orbtho1,Orange-breasted Thornbird,Phacellodomus ferrugineigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14625,slash,reetho1,Orange-eyed/Orange-breasted Thornbird,Phacellodomus erythrophthalmus/ferrugineigula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14626,spuh,thornb2,thornbird sp.,Phacellodomus sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14627,species,whbspi2,White-browed Spinetail,Hellmayrea gularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14628,issf,whbspi3,White-browed Spinetail (gularis),Hellmayrea gularis gularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 +14629,issf,whbspi4,White-browed Spinetail (brunneidorsalis),Hellmayrea gularis brunneidorsalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 +14630,issf,whbspi5,White-browed Spinetail (cinereiventris),Hellmayrea gularis cinereiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 +14631,issf,whbspi6,White-browed Spinetail (rufiventris),Hellmayrea gularis rufiventris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whbspi2 +14632,species,firgat1,Firewood-gatherer,Anumbius annumbi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14633,species,lalbru1,Lark-like Brushrunner,Coryphistera alaudina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14636,species,crbcan1,Creamy-breasted Canastero,Asthenes dorbignyi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14637,issf,crbcan2,Creamy-breasted Canastero (Rusty-vented),Asthenes dorbignyi dorbignyi/consobrina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,crbcan1 +14640,issf,crbcan4,Creamy-breasted Canastero (Dark-winged),Asthenes dorbignyi arequipae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,crbcan1 +14641,issf,crbcan3,Creamy-breasted Canastero (Pale-tailed),Asthenes dorbignyi usheri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,crbcan1 +14642,issf,crbcan5,Creamy-breasted Canastero (Huancavelica),Asthenes dorbignyi huancavelicae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,crbcan1 +14643,species,bercan1,Berlepsch's Canastero,Asthenes berlepschi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14644,species,shbcan1,Short-billed Canastero,Asthenes baeri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14647,species,cipcan1,Cipo Canastero,Asthenes luizae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14648,species,hudcan1,Hudson's Canastero,Asthenes hudsoni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14649,species,auscan1,Austral Canastero,Asthenes anthoides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14650,species,lifcan1,Line-fronted Canastero,Asthenes urubambensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14653,species,mascan1,Many-striped Canastero,Asthenes flammulata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14659,species,juncan1,Junin Canastero,Asthenes virgata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14660,species,sctcan1,Scribble-tailed Canastero,Asthenes maculicauda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14661,species,stbcan1,Streak-backed Canastero,Asthenes wyatti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14669,species,puncan1,Puna Canastero,Asthenes sclateri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14674,species,sttcan1,Streak-throated Canastero,Asthenes humilis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14678,species,corcan1,Cordilleran Canastero,Asthenes modesta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14684,species,itaspi1,Itatiaia Spinetail,Asthenes moreirae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14685,species,shbcan2,Sharp-billed Canastero,Asthenes pyrrholeuca,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14690,species,bltthi1,Black-throated Thistletail,Asthenes harterti,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14691,species,punthi1,Puna Thistletail,Asthenes helleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14692,species,vilthi3,Ayacucho Thistletail,Asthenes ayacuchensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14693,species,vilthi2,Vilcabamba Thistletail,Asthenes vilcabambae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14694,species,cancan1,Canyon Canastero,Asthenes pudibunda,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14698,species,rufcan1,Rusty-fronted Canastero,Asthenes ottonis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14699,species,maqcan1,Maquis Canastero,Asthenes heterura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14700,species,eyrthi1,Eye-ringed Thistletail,Asthenes palpebralis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14701,species,ocbthi1,Ochre-browed Thistletail,Asthenes coryi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14702,species,perthi1,Perija Thistletail,Asthenes perijana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14703,species,whcthi1,White-chinned Thistletail,Asthenes fuliginosa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14708,species,mocthi1,Mouse-colored Thistletail,Asthenes griseomurina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14709,spuh,canast1,canastero sp.,Asthenes sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14710,species,pilgra1,Pink-legged Graveteiro,Acrobatornis fonsecai,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14711,species,orfplu2,Orange-fronted Plushcrown,Metopothrix aurantiaca,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14712,species,dobgra1,Double-banded Graytail,Xenerpestes minlosi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14715,species,equgra1,Equatorial Graytail,Xenerpestes singularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14716,species,spepri1,Spectacled Prickletail,Siptornis striaticollis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14717,species,rorbar1,Roraiman Barbtail,Roraimia adusta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14721,species,strsof1,Striated Softtail,Thripophaga macroura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14722,species,orisof1,Orinoco Softtail,Thripophaga cherriei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14723,species,deasof1,Delta Amacuro Softtail,Thripophaga amacurensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14724,species,plasof1,Plain Softtail,Thripophaga fusciceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14725,issf,plasof2,Plain Softtail (dimorpha),Thripophaga fusciceps dimorpha,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plasof1 +14726,issf,plasof4,Plain Softtail (obidensis),Thripophaga fusciceps obidensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plasof1 +14727,issf,plasof3,Plain Softtail (fusciceps),Thripophaga fusciceps fusciceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,plasof1 +14728,species,rumsof1,Russet-mantled Softtail,Thripophaga berlepschi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14729,spuh,softta1,softtail sp.,Thripophaga sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14730,species,stbree2,Straight-billed Reedhaunter,Limnoctites rectirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14731,slash,y00686,Curve-billed/Straight-billed Reedhaunter,Limnornis curvirostris/Limnoctites rectirostris,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14732,species,sutspi1,Sulphur-bearded Reedhaunter,Limnoctites sulphuriferus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14733,species,marspi2,Marcapata Spinetail,Cranioleuca marcapatae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14734,issf,marspi1,Marcapata Spinetail (Pale-crowned),Cranioleuca marcapatae weskei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,marspi2 +14735,issf,marspi4,Marcapata Spinetail (Rufous-crowned),Cranioleuca marcapatae marcapatae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,marspi2 +14736,species,licspi1,Light-crowned Spinetail,Cranioleuca albiceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14737,issf,licspi3,Light-crowned Spinetail (White-crowned),Cranioleuca albiceps albiceps,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,licspi1 +14738,issf,licspi4,Light-crowned Spinetail (Buffy-crowned),Cranioleuca albiceps discolor,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,licspi1 +14739,species,rubspi4,Rusty-backed Spinetail,Cranioleuca vulpina,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14744,species,rubspi5,Coiba Spinetail,Cranioleuca dissita,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14745,species,parspi1,Parker's Spinetail,Cranioleuca vulpecula,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14746,species,crespi1,Crested Spinetail,Cranioleuca subcristata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14749,species,stcspi2,Stripe-crowned Spinetail,Cranioleuca pyrrhophia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14753,species,bolspi1,Bolivian Spinetail,Cranioleuca henricae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14754,species,olispi1,Olive Spinetail,Cranioleuca obsoleta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14755,hybrid,x00740,Stripe-crowned x Olive Spinetail (hybrid),Cranioleuca pyrrhophia x obsoleta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14756,species,palspi1,Pallid Spinetail,Cranioleuca pallida,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14757,species,gyhspi1,Gray-headed Spinetail,Cranioleuca semicinerea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14760,species,crcspi1,Creamy-crested Spinetail,Cranioleuca albicapilla,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14763,species,refspi1,Red-faced Spinetail,Cranioleuca erythrops,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14767,species,tepspi1,Tepui Spinetail,Cranioleuca demissa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14768,species,stcspi1,Streak-capped Spinetail,Cranioleuca hellmayri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14769,species,asbspi1,Ash-browed Spinetail,Cranioleuca curtata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14773,species,licspi5,Line-cheeked Spinetail,Cranioleuca antisiensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14774,issf,licspi2,Line-cheeked Spinetail (Line-cheeked),Cranioleuca antisiensis antisiensis/palamblae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,licspi5 +14777,issf,barspi1,Line-cheeked Spinetail (Baron's),Cranioleuca antisiensis [baroni Group],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,licspi5 +14781,species,spespi1,Speckled Spinetail,Cranioleuca gutturata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14782,species,scaspi1,Scaled Spinetail,Cranioleuca muelleri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14783,spuh,cranio1,Cranioleuca sp.,Cranioleuca sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14784,species,dutcan1,Dusky-tailed Canastero,Pseudasthenes humicola,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14788,species,patcan2,Patagonian Canastero,Pseudasthenes patagonica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14789,species,stecan1,Steinbach's Canastero,Pseudasthenes steinbachi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14790,species,caccan1,Cactus Canastero,Pseudasthenes cactorum,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14793,species,bcwspi1,Bay-capped Wren-Spinetail,Spartonoica maluroides,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14794,species,caacac1,Caatinga Cacholote,Pseudoseisura cristata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14795,species,rufcac2,Rufous Cacholote,Pseudoseisura unirufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14796,species,brncac1,Brown Cacholote,Pseudoseisura lophotes,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14797,species,whtcac2,White-throated Cacholote,Pseudoseisura gutturalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14798,species,yecspi2,Yellow-chinned Spinetail,Certhiaxis cinnamomeus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14807,species,rawspi2,Red-and-white Spinetail,Certhiaxis mustelinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14808,slash,y00970,Yellow-chinned/Red-and-white Spinetail,Certhiaxis cinnamomeus/mustelinus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14809,form,arrspi1,Araguaia River Spinetail (undescribed form),Certhiaxis [undescribed form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14810,species,whbspi1,White-bellied Spinetail,Mazaria propinqua,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14811,species,chospi2,Chotoy Spinetail,Schoeniophylax phryganophilus,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14814,species,occspi1,Ochre-cheeked Spinetail,Synallaxis scutata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14818,species,gybspi1,Gray-bellied Spinetail,Synallaxis cinerascens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14819,species,plcspi1,Plain-crowned Spinetail,Synallaxis gujanensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14826,species,whlspi1,White-lored Spinetail,Synallaxis albilora,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14827,issf,whlspi2,White-lored Spinetail (White-lored),Synallaxis albilora albilora,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whlspi1 +14828,issf,whlspi3,White-lored Spinetail (Araguaia),Synallaxis albilora simoni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,whlspi1 +14829,species,marspi3,Marañon Spinetail,Synallaxis maranonica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14830,species,grespi2,Great Spinetail,Synallaxis hypochondriaca,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14831,species,necspi1,Necklaced Spinetail,Synallaxis stictothorax,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14832,issf,necspi2,Necklaced Spinetail (Necklaced),Synallaxis stictothorax stictothorax/maculata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,necspi1 +14835,form,necspi4,Necklaced Spinetail (undescribed form),Synallaxis stictothorax [undescribed La Libertad form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,necspi1 +14836,issf,necspi3,Necklaced Spinetail (Chinchipe),Synallaxis stictothorax chinchipensis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,necspi1 +14837,species,rubspi3,Russet-bellied Spinetail,Synallaxis zimmeri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14838,species,slaspi1,Slaty Spinetail,Synallaxis brachyura,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14843,species,sitspi1,Silvery-throated Spinetail,Synallaxis subpudica,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14844,species,resspi2,Red-shouldered Spinetail,Synallaxis hellmayri,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14845,species,rucspi1,Rufous-capped Spinetail,Synallaxis ruficapilla,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14846,species,bahspi1,Bahia Spinetail,Synallaxis cinerea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14847,species,pinspi1,Pinto's Spinetail,Synallaxis infuscata,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14848,form,amaspi1,Amazonian Spinetail (undescribed form),Synallaxis [undescribed Amazonian form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14849,species,dusspi1,Dusky Spinetail,Synallaxis moesta,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14853,species,mccspi1,McConnell's Spinetail,Synallaxis macconnelli,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14854,species,cabspi1,Cabanis's Spinetail,Synallaxis cabanisi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14857,species,cibspi1,Cinereous-breasted Spinetail,Synallaxis hypospodia,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14858,species,spispi1,Spix's Spinetail,Synallaxis spixi,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14859,species,dabspi1,Dark-breasted Spinetail,Synallaxis albigularis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14862,species,riospi1,Rio Orinoco Spinetail,Synallaxis beverlyae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14863,species,pabspi1,Pale-breasted Spinetail,Synallaxis albescens,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14877,species,sofspi1,Sooty-fronted Spinetail,Synallaxis frontalis,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14880,species,azaspi1,Azara's Spinetail,Synallaxis azarae,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14890,form,manspi1,Mantaro Spinetail (undescribed form),Synallaxis [undescribed Mantaro form],Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14891,species,apuspi1,Apurimac Spinetail,Synallaxis courseni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14892,slash,y00700,Azara's/Apurimac Spinetail,Synallaxis azarae/courseni,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14893,species,hotspi1,Hoary-throated Spinetail,Synallaxis kollari,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14894,species,rubspi2,Rufous-breasted Spinetail,Synallaxis erythrothorax,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14898,species,whwspi1,White-whiskered Spinetail,Synallaxis candei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14902,species,blhspi1,Blackish-headed Spinetail,Synallaxis tithys,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14903,species,ruhspi1,Rusty-headed Spinetail,Synallaxis fuscorufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14904,species,rufspi1,Rufous Spinetail,Synallaxis unirufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14905,issf,rufspi2,Rufous Spinetail (unirufa),Synallaxis unirufa unirufa,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 +14906,issf,rufspi3,Rufous Spinetail (munoztebari),Synallaxis unirufa munoztebari,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 +14907,issf,rufspi4,Rufous Spinetail (meridana),Synallaxis unirufa meridana,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 +14908,issf,rufspi5,Rufous Spinetail (ochrogaster),Synallaxis unirufa ochrogaster,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),,rufspi1 +14909,species,bltspi1,Black-throated Spinetail,Synallaxis castanea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14910,species,stbspi1,Stripe-breasted Spinetail,Synallaxis cinnamomea,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14918,species,rudspi1,Ruddy Spinetail,Synallaxis rutilans,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14926,species,chtspi1,Chestnut-throated Spinetail,Synallaxis cherriei,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14929,spuh,synall1,Synallaxis sp.,Synallaxis sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14930,spuh,spinet1,spinetail sp.,Furnariidae sp. (spinetail sp.),Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14931,spuh,furnar1,Furnariid sp.,Furnariidae sp.,Passeriformes,Furnariidae (Ovenbirds and Woodcreepers),, +14932,species,dwtman1,Dwarf Tyrant-Manakin,Tyranneutes stolzmanni,Passeriformes,Pipridae (Manakins),Manakins, +14933,species,titman1,Tiny Tyrant-Manakin,Tyranneutes virescens,Passeriformes,Pipridae (Manakins),, +14934,species,pbtman1,Pale-bellied Tyrant-Manakin,Neopelma pallescens,Passeriformes,Pipridae (Manakins),, +14935,species,sctman1,Saffron-crested Tyrant-Manakin,Neopelma chrysocephalum,Passeriformes,Pipridae (Manakins),, +14936,species,witman1,Wied's Tyrant-Manakin,Neopelma aurifrons,Passeriformes,Pipridae (Manakins),, +14937,species,sdmman1,Serra do Mar Tyrant-Manakin,Neopelma chrysolophum,Passeriformes,Pipridae (Manakins),, +14938,species,sbtman1,Sulphur-bellied Tyrant-Manakin,Neopelma sulphureiventer,Passeriformes,Pipridae (Manakins),, +14939,species,yehman2,Yellow-headed Manakin,Chloropipo flavicapilla,Passeriformes,Pipridae (Manakins),, +14940,species,jetman2,Jet Manakin,Chloropipo unicolor,Passeriformes,Pipridae (Manakins),, +14941,species,araman1,Araripe Manakin,Antilophia bokermanni,Passeriformes,Pipridae (Manakins),, +14942,species,helman1,Helmeted Manakin,Antilophia galeata,Passeriformes,Pipridae (Manakins),, +14943,species,latman1,Lance-tailed Manakin,Chiroxiphia lanceolata,Passeriformes,Pipridae (Manakins),, +14944,species,lotman1,Long-tailed Manakin,Chiroxiphia linearis,Passeriformes,Pipridae (Manakins),, +14945,species,blbman1,Blue-backed Manakin,Chiroxiphia pareola,Passeriformes,Pipridae (Manakins),, +14946,issf,bubman2,Blue-backed Manakin (pareola/atlantica),Chiroxiphia pareola pareola/atlantica,Passeriformes,Pipridae (Manakins),,blbman1 +14949,issf,bubman1,Blue-backed Manakin (napensis),Chiroxiphia pareola napensis,Passeriformes,Pipridae (Manakins),,blbman1 +14950,issf,bubman3,Blue-backed Manakin (regina),Chiroxiphia pareola regina,Passeriformes,Pipridae (Manakins),,blbman1 +14951,species,yunman1,Yungas Manakin,Chiroxiphia boliviana,Passeriformes,Pipridae (Manakins),, +14952,species,swtman1,Swallow-tailed Manakin,Chiroxiphia caudata,Passeriformes,Pipridae (Manakins),, +14953,hybrid,x00960,Helmeted x Swallow-tailed Manakin (hybrid),Antilophia galeata x Chiroxiphia caudata,Passeriformes,Pipridae (Manakins),, +14954,species,pitman1,Pin-tailed Manakin,Ilicura militaris,Passeriformes,Pipridae (Manakins),, +14955,species,gowman1,Golden-winged Manakin,Masius chrysopterus,Passeriformes,Pipridae (Manakins),, +14961,species,whrman1,White-ruffed Manakin,Corapipo altera,Passeriformes,Pipridae (Manakins),, +14964,species,whbman2,White-bibbed Manakin,Corapipo leucorrhoa,Passeriformes,Pipridae (Manakins),, +14965,species,whtman1,White-throated Manakin,Corapipo gutturalis,Passeriformes,Pipridae (Manakins),, +14966,species,oliman2,Olive Manakin,Xenopipo uniformis,Passeriformes,Pipridae (Manakins),, +14969,species,blaman1,Black Manakin,Xenopipo atronitens,Passeriformes,Pipridae (Manakins),, +14970,species,greman2,Green Manakin,Cryptopipo holochlora,Passeriformes,Pipridae (Manakins),, +14971,issf,grnman1,Green Manakin (Choco),Cryptopipo holochlora litae/suffusa,Passeriformes,Pipridae (Manakins),,greman2 +14974,issf,grnman2,Green Manakin (Green),Cryptopipo holochlora holochlora/viridior,Passeriformes,Pipridae (Manakins),,greman2 +14977,species,blcman1,Blue-crowned Manakin,Lepidothrix coronata,Passeriformes,Pipridae (Manakins),, +14978,issf,bucman1,Blue-crowned Manakin (Velvety),Lepidothrix coronata velutina/minuscula,Passeriformes,Pipridae (Manakins),,blcman1 +14981,issf,bucman2,Blue-crowned Manakin (Blue-crowned),Lepidothrix coronata [coronata Group],Passeriformes,Pipridae (Manakins),,blcman1 +14985,issf,bucman3,Blue-crowned Manakin (Exquisite),Lepidothrix coronata [exquisita Group],Passeriformes,Pipridae (Manakins),,blcman1 +14989,species,sncman1,Snow-capped Manakin,Lepidothrix nattereri,Passeriformes,Pipridae (Manakins),, +14992,species,gocman2,Golden-crowned Manakin,Lepidothrix vilasboasi,Passeriformes,Pipridae (Manakins),, +14993,species,opcman1,Opal-crowned Manakin,Lepidothrix iris,Passeriformes,Pipridae (Manakins),, +14996,species,orbman1,Orange-bellied Manakin,Lepidothrix suavissima,Passeriformes,Pipridae (Manakins),, +14997,species,whfman1,White-fronted Manakin,Lepidothrix serena,Passeriformes,Pipridae (Manakins),, +14998,slash,y00886,Orange-bellied/White-fronted Manakin,Lepidothrix suavissima/serena,Passeriformes,Pipridae (Manakins),, +14999,species,blrman1,Blue-rumped Manakin,Lepidothrix isidorei,Passeriformes,Pipridae (Manakins),, +15002,species,cecman1,Cerulean-capped Manakin,Lepidothrix coeruleocapilla,Passeriformes,Pipridae (Manakins),, +15003,spuh,lepido2,Lepidothrix sp.,Lepidothrix sp.,Passeriformes,Pipridae (Manakins),, +15004,species,orcman3,Orange-crowned Manakin,Heterocercus aurantiivertex,Passeriformes,Pipridae (Manakins),, +15005,species,yecman2,Yellow-crowned Manakin,Heterocercus flavivertex,Passeriformes,Pipridae (Manakins),, +15006,species,flcman2,Flame-crowned Manakin,Heterocercus linteatus,Passeriformes,Pipridae (Manakins),, +15007,spuh,hetero1,Heterocercus sp.,Heterocercus sp.,Passeriformes,Pipridae (Manakins),, +15008,species,whcman1,White-collared Manakin,Manacus candei,Passeriformes,Pipridae (Manakins),, +15009,species,orcman1,Orange-collared Manakin,Manacus aurantiacus,Passeriformes,Pipridae (Manakins),, +15010,species,gocman1,Golden-collared Manakin,Manacus vitellinus,Passeriformes,Pipridae (Manakins),, +15015,hybrid,x00811,White-collared x Golden-collared Manakin (hybrid),Manacus candei x vitellinus,Passeriformes,Pipridae (Manakins),, +15016,species,whbman1,White-bearded Manakin,Manacus manacus,Passeriformes,Pipridae (Manakins),, +15032,species,crhman1,Crimson-hooded Manakin,Pipra aureola,Passeriformes,Pipridae (Manakins),, +15037,species,witman2,Wire-tailed Manakin,Pipra filicauda,Passeriformes,Pipridae (Manakins),, +15040,species,batman1,Band-tailed Manakin,Pipra fasciicauda,Passeriformes,Pipridae (Manakins),, +15046,species,clwman1,Club-winged Manakin,Machaeropterus deliciosus,Passeriformes,Pipridae (Manakins),, +15047,species,strman5,Striolated Manakin,Machaeropterus striolatus,Passeriformes,Pipridae (Manakins),, +15048,issf,strman3,Striolated Manakin (Striolated),Machaeropterus striolatus [striolatus Group],Passeriformes,Pipridae (Manakins),,strman5 +15053,issf,strman4,Striolated Manakin (aureopectus),Machaeropterus striolatus aureopectus,Passeriformes,Pipridae (Manakins),,strman5 +15054,species,paiman1,Painted Manakin,Machaeropterus eckelberryi,Passeriformes,Pipridae (Manakins),, +15055,slash,y01121,Striolated/Painted Manakin,Machaeropterus striolatus/eckelberryi,Passeriformes,Pipridae (Manakins),, +15056,species,strman2,Kinglet Manakin,Machaeropterus regulus,Passeriformes,Pipridae (Manakins),, +15057,species,ficman1,Fiery-capped Manakin,Machaeropterus pyrocephalus,Passeriformes,Pipridae (Manakins),, +15060,species,whcman2,White-crowned Manakin,Dixiphia pipra,Passeriformes,Pipridae (Manakins),, +15061,issf,whcman3,White-crowned Manakin (Zeledon's),Dixiphia pipra anthracina,Passeriformes,Pipridae (Manakins),,whcman2 +15062,issf,whcman4,White-crowned Manakin (White-crowned),Dixiphia pipra [pipra Group],Passeriformes,Pipridae (Manakins),,whcman2 +15075,species,schman1,Scarlet-horned Manakin,Ceratopipra cornuta,Passeriformes,Pipridae (Manakins),, +15076,species,recman1,Red-capped Manakin,Ceratopipra mentalis,Passeriformes,Pipridae (Manakins),, +15080,species,gohman1,Golden-headed Manakin,Ceratopipra erythrocephala,Passeriformes,Pipridae (Manakins),, +15084,species,rehman1,Red-headed Manakin,Ceratopipra rubrocapilla,Passeriformes,Pipridae (Manakins),, +15085,species,rotman1,Round-tailed Manakin,Ceratopipra chloromeros,Passeriformes,Pipridae (Manakins),, +15086,spuh,manaki1,manakin sp.,Pipridae sp.,Passeriformes,Pipridae (Manakins),, +15087,species,hoober2,Hooded Berryeater,Carpornis cucullata,Passeriformes,Cotingidae (Cotingas),Cotingas, +15088,species,bkhber1,Black-headed Berryeater,Carpornis melanocephala,Passeriformes,Cotingidae (Cotingas),, +15089,species,gabfru1,Green-and-black Fruiteater,Pipreola riefferii,Passeriformes,Cotingidae (Cotingas),, +15090,issf,gabfru4,Green-and-black Fruiteater (Green-and-black),Pipreola riefferii [riefferii Group],Passeriformes,Cotingidae (Cotingas),,gabfru1 +15095,issf,gabfru3,Green-and-black Fruiteater (Sira),Pipreola riefferii tallmanorum,Passeriformes,Cotingidae (Cotingas),,gabfru1 +15096,species,batfru1,Band-tailed Fruiteater,Pipreola intermedia,Passeriformes,Cotingidae (Cotingas),, +15097,issf,batfru2,Band-tailed Fruiteater (intermedia),Pipreola intermedia intermedia,Passeriformes,Cotingidae (Cotingas),,batfru1 +15098,issf,batfru3,Band-tailed Fruiteater (signata),Pipreola intermedia signata,Passeriformes,Cotingidae (Cotingas),,batfru1 +15099,species,barfru1,Barred Fruiteater,Pipreola arcuata,Passeriformes,Cotingidae (Cotingas),, +15102,species,gobfru1,Golden-breasted Fruiteater,Pipreola aureopectus,Passeriformes,Cotingidae (Cotingas),, +15106,species,orbfru1,Orange-breasted Fruiteater,Pipreola jucunda,Passeriformes,Cotingidae (Cotingas),, +15107,species,blcfru1,Black-chested Fruiteater,Pipreola lubomirskii,Passeriformes,Cotingidae (Cotingas),, +15108,species,masfru1,Masked Fruiteater,Pipreola pulchra,Passeriformes,Cotingidae (Cotingas),, +15109,species,scbfru1,Scarlet-breasted Fruiteater,Pipreola frontalis,Passeriformes,Cotingidae (Cotingas),, +15110,issf,scbfru2,Scarlet-breasted Fruiteater (squamipectus),Pipreola frontalis squamipectus,Passeriformes,Cotingidae (Cotingas),,scbfru1 +15111,issf,scbfru3,Scarlet-breasted Fruiteater (frontalis),Pipreola frontalis frontalis,Passeriformes,Cotingidae (Cotingas),,scbfru1 +15112,species,fitfru1,Fiery-throated Fruiteater,Pipreola chlorolepidota,Passeriformes,Cotingidae (Cotingas),, +15113,species,hanfru1,Handsome Fruiteater,Pipreola formosa,Passeriformes,Cotingidae (Cotingas),, +15117,species,rebfru1,Red-banded Fruiteater,Pipreola whitelyi,Passeriformes,Cotingidae (Cotingas),, +15120,spuh,pipreo1,Pipreola sp.,Pipreola sp.,Passeriformes,Cotingidae (Cotingas),, +15121,species,scafru1,Scaled Fruiteater,Ampelioides tschudii,Passeriformes,Cotingidae (Cotingas),, +15122,species,whccot1,White-cheeked Cotinga,Zaratornis stresemanni,Passeriformes,Cotingidae (Cotingas),, +15123,species,perpla1,Peruvian Plantcutter,Phytotoma raimondii,Passeriformes,Cotingidae (Cotingas),, +15124,species,whtpla1,White-tipped Plantcutter,Phytotoma rutila,Passeriformes,Cotingidae (Cotingas),, +15127,species,rutpla1,Rufous-tailed Plantcutter,Phytotoma rara,Passeriformes,Cotingidae (Cotingas),, +15128,species,swtcot1,Swallow-tailed Cotinga,Phibalura flavirostris,Passeriformes,Cotingidae (Cotingas),, +15129,issf,swtcot2,Swallow-tailed Cotinga (Palkachupa),Phibalura flavirostris boliviana,Passeriformes,Cotingidae (Cotingas),,swtcot1 +15130,issf,swtcot3,Swallow-tailed Cotinga (Swallow-tailed),Phibalura flavirostris flavirostris,Passeriformes,Cotingidae (Cotingas),,swtcot1 +15131,species,chbcot1,Chestnut-bellied Cotinga,Doliornis remseni,Passeriformes,Cotingidae (Cotingas),, +15132,species,bavcot1,Bay-vented Cotinga,Doliornis sclateri,Passeriformes,Cotingidae (Cotingas),, +15133,species,reccot1,Red-crested Cotinga,Ampelion rubrocristatus,Passeriformes,Cotingidae (Cotingas),, +15134,species,chccot1,Chestnut-crested Cotinga,Ampelion rufaxilla,Passeriformes,Cotingidae (Cotingas),, +15137,species,gurcot1,Guianan Red-Cotinga,Phoenicircus carnifex,Passeriformes,Cotingidae (Cotingas),, +15138,species,bnrcot1,Black-necked Red-Cotinga,Phoenicircus nigricollis,Passeriformes,Cotingidae (Cotingas),, +15139,species,gcoroc1,Guianan Cock-of-the-rock,Rupicola rupicola,Passeriformes,Cotingidae (Cotingas),, +15140,species,andcot1,Andean Cock-of-the-rock,Rupicola peruvianus,Passeriformes,Cotingidae (Cotingas),, +15145,species,gytpih1,Gray-tailed Piha,Snowornis subalaris,Passeriformes,Cotingidae (Cotingas),, +15146,species,olipih2,Olivaceous Piha,Snowornis cryptolophus,Passeriformes,Cotingidae (Cotingas),, +15149,species,crifru1,Crimson Fruitcrow,Haematoderus militaris,Passeriformes,Cotingidae (Cotingas),, +15150,species,putfru1,Purple-throated Fruitcrow,Querula purpurata,Passeriformes,Cotingidae (Cotingas),, +15151,species,rerfru1,Red-ruffed Fruitcrow,Pyroderus scutatus,Passeriformes,Cotingidae (Cotingas),, +15157,species,banumb1,Bare-necked Umbrellabird,Cephalopterus glabricollis,Passeriformes,Cotingidae (Cotingas),, +15158,species,amaumb1,Amazonian Umbrellabird,Cephalopterus ornatus,Passeriformes,Cotingidae (Cotingas),, +15159,species,lowumb1,Long-wattled Umbrellabird,Cephalopterus penduliger,Passeriformes,Cotingidae (Cotingas),, +15160,species,capuch1,Capuchinbird,Perissocephalus tricolor,Passeriformes,Cotingidae (Cotingas),, +15161,species,lovcot1,Lovely Cotinga,Cotinga amabilis,Passeriformes,Cotingidae (Cotingas),, +15162,species,turcot1,Turquoise Cotinga,Cotinga ridgwayi,Passeriformes,Cotingidae (Cotingas),, +15163,species,blucot1,Blue Cotinga,Cotinga nattererii,Passeriformes,Cotingidae (Cotingas),, +15164,species,pltcot1,Plum-throated Cotinga,Cotinga maynana,Passeriformes,Cotingidae (Cotingas),, +15165,species,pubcot1,Purple-breasted Cotinga,Cotinga cotinga,Passeriformes,Cotingidae (Cotingas),, +15166,species,bancot1,Banded Cotinga,Cotinga maculata,Passeriformes,Cotingidae (Cotingas),, +15167,species,spacot1,Spangled Cotinga,Cotinga cayana,Passeriformes,Cotingidae (Cotingas),, +15168,spuh,blucot2,blue cotinga sp.,Cotinga sp.,Passeriformes,Cotingidae (Cotingas),, +15169,species,chcpih1,Chestnut-capped Piha,Lipaugus weberi,Passeriformes,Cotingidae (Cotingas),, +15170,species,duspih1,Dusky Piha,Lipaugus fuscocinereus,Passeriformes,Cotingidae (Cotingas),, +15171,species,scwpih1,Scimitar-winged Piha,Lipaugus uropygialis,Passeriformes,Cotingidae (Cotingas),, +15172,species,rufpih1,Rufous Piha,Lipaugus unirufus,Passeriformes,Cotingidae (Cotingas),, +15175,species,scrpih1,Screaming Piha,Lipaugus vociferans,Passeriformes,Cotingidae (Cotingas),, +15176,species,civpih1,Cinnamon-vented Piha,Lipaugus lanioides,Passeriformes,Cotingidae (Cotingas),, +15177,species,rocpih1,Rose-collared Piha,Lipaugus streptophorus,Passeriformes,Cotingidae (Cotingas),, +15178,species,bagcot1,Black-and-gold Cotinga,Tijuca atra,Passeriformes,Cotingidae (Cotingas),, +15179,species,gywcot1,Gray-winged Cotinga,Tijuca condita,Passeriformes,Cotingidae (Cotingas),, +15180,species,thwbel,Three-wattled Bellbird,Procnias tricarunculatus,Passeriformes,Cotingidae (Cotingas),, +15181,species,whibel2,White Bellbird,Procnias albus,Passeriformes,Cotingidae (Cotingas),, +15184,species,beabel1,Bearded Bellbird,Procnias averano,Passeriformes,Cotingidae (Cotingas),, +15187,species,batbel1,Bare-throated Bellbird,Procnias nudicollis,Passeriformes,Cotingidae (Cotingas),, +15188,species,putcot1,Purple-throated Cotinga,Porphyrolaema porphyrolaema,Passeriformes,Cotingidae (Cotingas),, +15189,species,bltcot1,Black-tipped Cotinga,Carpodectes hopkei,Passeriformes,Cotingidae (Cotingas),, +15190,species,yebcot1,Yellow-billed Cotinga,Carpodectes antoniae,Passeriformes,Cotingidae (Cotingas),, +15191,species,snocot1,Snowy Cotinga,Carpodectes nitidus,Passeriformes,Cotingidae (Cotingas),, +15192,species,pomcot1,Pompadour Cotinga,Xipholena punicea,Passeriformes,Cotingidae (Cotingas),, +15193,species,whtcot1,White-tailed Cotinga,Xipholena lamellipennis,Passeriformes,Cotingidae (Cotingas),, +15194,species,whwcot1,White-winged Cotinga,Xipholena atropurpurea,Passeriformes,Cotingidae (Cotingas),, +15195,species,banfru1,Bare-necked Fruitcrow,Gymnoderus foetidus,Passeriformes,Cotingidae (Cotingas),, +15196,species,blfcot1,Black-faced Cotinga,Conioptilon mcilhennyi,Passeriformes,Cotingidae (Cotingas),, +15197,species,blttit1,Black-tailed Tityra,Tityra cayana,Passeriformes,Tityridae (Tityras and Allies),"Becards, Tityras, and Allies", +15198,issf,bkttit4,Black-tailed Tityra (Eastern),Tityra cayana braziliensis,Passeriformes,Tityridae (Tityras and Allies),,blttit1 +15199,issf,bkttit5,Black-tailed Tityra (Western),Tityra cayana cayana,Passeriformes,Tityridae (Tityras and Allies),,blttit1 +15200,species,blctit1,Black-crowned Tityra,Tityra inquisitor,Passeriformes,Tityridae (Tityras and Allies),, +15207,species,mastit1,Masked Tityra,Tityra semifasciata,Passeriformes,Tityridae (Tityras and Allies),, +15217,form,whttit2,White-tailed Tityra (unrecognized species),Tityra leucura [unrecognized species],Passeriformes,Tityridae (Tityras and Allies),, +15218,spuh,tityra1,Tityra sp.,Tityra sp.,Passeriformes,Tityridae (Tityras and Allies),, +15219,species,varsch1,Varzea Schiffornis,Schiffornis major,Passeriformes,Tityridae (Tityras and Allies),, +15222,species,thlsch7,Olivaceous Schiffornis,Schiffornis olivacea,Passeriformes,Tityridae (Tityras and Allies),, +15223,species,thlsch2,Northern Schiffornis,Schiffornis veraepacis,Passeriformes,Tityridae (Tityras and Allies),, +15224,issf,norsch1,Northern Schiffornis (Northern),Schiffornis veraepacis [veraepacis Group],Passeriformes,Tityridae (Tityras and Allies),,thlsch2 +15228,issf,thlsch5,Northern Schiffornis (Ecuadorian),Schiffornis veraepacis rosenbergi,Passeriformes,Tityridae (Tityras and Allies),,thlsch2 +15229,species,thlsch8,Foothill Schiffornis,Schiffornis aenea,Passeriformes,Tityridae (Tityras and Allies),, +15230,species,thlsch4,Russet-winged Schiffornis,Schiffornis stenorhyncha,Passeriformes,Tityridae (Tityras and Allies),, +15233,species,thlsch3,Brown-winged Schiffornis,Schiffornis turdina,Passeriformes,Tityridae (Tityras and Allies),, +15234,issf,thlsch6,Brown-winged Schiffornis (Amazonian),Schiffornis turdina amazonum,Passeriformes,Tityridae (Tityras and Allies),,thlsch3 +15235,issf,bnwsch1,Brown-winged Schiffornis (Brown-winged),Schiffornis turdina [turdina Group],Passeriformes,Tityridae (Tityras and Allies),,thlsch3 +15240,species,gresch2,Greenish Schiffornis,Schiffornis virescens,Passeriformes,Tityridae (Tityras and Allies),, +15241,spuh,thlsch,Schiffornis sp.,Schiffornis sp.,Passeriformes,Tityridae (Tityras and Allies),, +15242,species,cinmou1,Cinereous Mourner,Laniocera hypopyrra,Passeriformes,Tityridae (Tityras and Allies),, +15243,species,spemou1,Speckled Mourner,Laniocera rufescens,Passeriformes,Tityridae (Tityras and Allies),, +15247,species,whbpur1,White-browed Purpletuft,Iodopleura isabellae,Passeriformes,Tityridae (Tityras and Allies),, +15250,species,duspur1,Dusky Purpletuft,Iodopleura fusca,Passeriformes,Tityridae (Tityras and Allies),, +15251,species,butpur1,Buff-throated Purpletuft,Iodopleura pipra,Passeriformes,Tityridae (Tityras and Allies),, +15252,issf,butpur2,Buff-throated Purpletuft (Northern),Iodopleura pipra leucopygia,Passeriformes,Tityridae (Tityras and Allies),,butpur1 +15253,issf,butpur3,Buff-throated Purpletuft (Southern),Iodopleura pipra pipra,Passeriformes,Tityridae (Tityras and Allies),,butpur1 +15254,species,shlcot1,Shrike-like Cotinga,Laniisoma elegans,Passeriformes,Tityridae (Tityras and Allies),, +15255,issf,shlcot2,Shrike-like Cotinga (Andean),Laniisoma elegans [buckleyi Group],Passeriformes,Tityridae (Tityras and Allies),,shlcot1 +15259,issf,shlcot3,Shrike-like Cotinga (Brazilian),Laniisoma elegans elegans,Passeriformes,Tityridae (Tityras and Allies),,shlcot1 +15260,species,whnxen1,White-naped Xenopsaris,Xenopsaris albinucha,Passeriformes,Tityridae (Tityras and Allies),, +15263,species,grbbec1,Green-backed Becard,Pachyramphus viridis,Passeriformes,Tityridae (Tityras and Allies),, +15264,issf,gnbbec3,Green-backed Becard (Green-cheeked),Pachyramphus viridis griseigularis,Passeriformes,Tityridae (Tityras and Allies),,grbbec1 +15265,issf,gnbbec1,Green-backed Becard (Green-backed),Pachyramphus viridis viridis,Passeriformes,Tityridae (Tityras and Allies),,grbbec1 +15266,issf,gnbbec2,Green-backed Becard (Yellow-cheeked),Pachyramphus viridis xanthogenys/peruanus,Passeriformes,Tityridae (Tityras and Allies),,grbbec1 +15269,species,barbec1,Barred Becard,Pachyramphus versicolor,Passeriformes,Tityridae (Tityras and Allies),, +15273,species,slabec1,Slaty Becard,Pachyramphus spodiurus,Passeriformes,Tityridae (Tityras and Allies),, +15274,species,cinbec2,Cinereous Becard,Pachyramphus rufus,Passeriformes,Tityridae (Tityras and Allies),, +15277,species,cinbec1,Cinnamon Becard,Pachyramphus cinnamomeus,Passeriformes,Tityridae (Tityras and Allies),, +15282,species,chcbec1,Chestnut-crowned Becard,Pachyramphus castaneus,Passeriformes,Tityridae (Tityras and Allies),, +15288,species,whwbec1,White-winged Becard,Pachyramphus polychopterus,Passeriformes,Tityridae (Tityras and Allies),, +15297,species,bawbec1,Black-and-white Becard,Pachyramphus albogriseus,Passeriformes,Tityridae (Tityras and Allies),, +15303,species,grcbec1,Gray-collared Becard,Pachyramphus major,Passeriformes,Tityridae (Tityras and Allies),, +15304,issf,gycbec1,Gray-collared Becard (Eastern),Pachyramphus major [major Group],Passeriformes,Tityridae (Tityras and Allies),,grcbec1 +15309,issf,gycbec2,Gray-collared Becard (Western),Pachyramphus major uropygialis,Passeriformes,Tityridae (Tityras and Allies),,grcbec1 +15310,species,blcbec1,Black-capped Becard,Pachyramphus marginatus,Passeriformes,Tityridae (Tityras and Allies),, +15313,species,glbbec1,Glossy-backed Becard,Pachyramphus surinamus,Passeriformes,Tityridae (Tityras and Allies),, +15314,species,rotbec,Rose-throated Becard,Pachyramphus aglaiae,Passeriformes,Tityridae (Tityras and Allies),, +15323,species,jambec1,Jamaican Becard,Pachyramphus niger,Passeriformes,Tityridae (Tityras and Allies),, +15324,species,oncbec1,One-colored Becard,Pachyramphus homochrous,Passeriformes,Tityridae (Tityras and Allies),, +15328,species,pitbec1,Pink-throated Becard,Pachyramphus minor,Passeriformes,Tityridae (Tityras and Allies),, +15329,species,crebec1,Crested Becard,Pachyramphus validus,Passeriformes,Tityridae (Tityras and Allies),, +15332,spuh,becard1,becard sp.,Pachyramphus sp.,Passeriformes,Tityridae (Tityras and Allies),, +15333,species,sharpb1,Sharpbill,Oxyruncus cristatus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)","Sharpbill, Royal Flycatcher, and Allies", +15340,species,royfly1,Royal Flycatcher,Onychorhynchus coronatus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15341,issf,royfly2,Royal Flycatcher (Northern),Onychorhynchus coronatus mexicanus/fraterculus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,royfly1 +15344,issf,royfly3,Royal Flycatcher (Pacific),Onychorhynchus coronatus occidentalis,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,royfly1 +15345,issf,royfly4,Royal Flycatcher (Amazonian),Onychorhynchus coronatus coronatus/castelnaui,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,royfly1 +15348,issf,royfly5,Royal Flycatcher (Swainson's),Onychorhynchus coronatus swainsoni,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,royfly1 +15349,species,rutfly2,Ruddy-tailed Flycatcher,Terenotriccus erythrurus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15358,species,tabfly1,Tawny-breasted Flycatcher,Myiobius villosus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15363,species,surfly1,Sulphur-rumped Flycatcher,Myiobius sulphureipygius,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15366,species,whifly1,Whiskered Flycatcher,Myiobius barbatus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15367,issf,surfly4,Whiskered Flycatcher (Whiskered),Myiobius barbatus [barbatus Group],Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,whifly1 +15372,issf,surfly5,Whiskered Flycatcher (Yellow-rumped),Myiobius barbatus mastacalis,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,whifly1 +15373,species,bltfly1,Black-tailed Flycatcher,Myiobius atricaudus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15374,issf,bktfly1,Black-tailed Flycatcher (Black-tailed),Myiobius atricaudus [atricaudus Group],Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,bltfly1 +15381,issf,bktfly2,Black-tailed Flycatcher (Buff-rumped),Myiobius atricaudus ridgwayi,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",,bltfly1 +15382,slash,y01037,Sulphur-rumped/Black-tailed Flycatcher,Myiobius sulphureipygius/atricaudus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15383,slash,y01038,Whiskered/Black-tailed Flycatcher,Myiobius barbatus/atricaudus,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15384,spuh,myiobi1,Myiobius sp.,Myiobius sp.,Passeriformes,"Oxyruncidae (Sharpbill, Royal Flycatcher, and Allies)",, +15385,species,wibpip1,Wing-barred Piprites,Piprites chloris,Passeriformes,Tyrannidae (Tyrant Flycatchers),"Tyrant Flycatchers: Elaenias, Tyrannulets, and Allies", +15393,species,grhpip1,Gray-headed Piprites,Piprites griseiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15394,species,bkcpip1,Black-capped Piprites,Piprites pileata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15395,species,cinmat1,Cinnamon Manakin-Tyrant,Neopipo cinnamomea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15398,species,kincal1,Kinglet Calyptura,Calyptura cristata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15399,species,cicspa1,Cinnamon-crested Spadebill,Platyrinchus saturatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15402,species,sttspa1,Stub-tailed Spadebill,Platyrinchus cancrominus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15403,species,whtspa1,White-throated Spadebill,Platyrinchus mystaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15404,issf,whtspa2,White-throated Spadebill (Western),Platyrinchus mystaceus [albogularis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,whtspa1 +15410,issf,whtspa3,White-throated Spadebill (Eastern),Platyrinchus mystaceus [mystaceus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,whtspa1 +15420,species,gocspa1,Golden-crowned Spadebill,Platyrinchus coronatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15424,species,yetspa1,Yellow-throated Spadebill,Platyrinchus flavigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15427,species,whcspa1,White-crested Spadebill,Platyrinchus platyrhynchos,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15432,species,ruwspa1,Russet-winged Spadebill,Platyrinchus leucoryphus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15433,spuh,spadeb1,spadebill sp.,Platyrinchus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15434,species,mcrtyr1,Many-colored Rush Tyrant,Tachuris rubrigastra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15439,species,stnfly1,Streak-necked Flycatcher,Mionectes striaticollis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15444,species,olsfly1,Olive-striped Flycatcher,Mionectes olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15445,issf,olsfly2,Olive-striped Flycatcher (Olive-streaked),Mionectes olivaceus olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,olsfly1 +15446,issf,olsfly3,Olive-striped Flycatcher (Olive-striped),Mionectes olivaceus [galbinus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,olsfly1 +15451,slash,y00796,Streak-necked/Olive-striped Flycatcher,Mionectes striaticollis/olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15452,species,ocbfly1,Ochre-bellied Flycatcher,Mionectes oleagineus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15460,species,mccfly1,McConnell's Flycatcher,Mionectes macconnelli,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15461,issf,mccfly2,McConnell's Flycatcher (Guianan),Mionectes macconnelli macconnelli,Passeriformes,Tyrannidae (Tyrant Flycatchers),,mccfly1 +15462,issf,mccfly3,McConnell's Flycatcher (Sierra de Lema),Mionectes macconnelli roraimae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,mccfly1 +15463,issf,mccfly4,McConnell's Flycatcher (Inambari),Mionectes macconnelli amazonus/peruanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,mccfly1 +15466,slash,y00797,Ochre-bellied/McConnell's Flycatcher,Mionectes oleagineus/macconnelli,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15467,species,gyhfly1,Gray-hooded Flycatcher,Mionectes rufiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15468,spuh,mionec1,Mionectes sp.,Mionectes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15469,species,secfly1,Sepia-capped Flycatcher,Leptopogon amaurocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15476,species,slcfly1,Slaty-capped Flycatcher,Leptopogon superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15477,issf,slcfly4,Slaty-capped Flycatcher (transandinus),Leptopogon superciliaris transandinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,slcfly1 +15478,issf,slcfly2,Slaty-capped Flycatcher (superciliaris),Leptopogon superciliaris superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,slcfly1 +15479,issf,slcfly3,Slaty-capped Flycatcher (albidiventris),Leptopogon superciliaris albidiventer,Passeriformes,Tyrannidae (Tyrant Flycatchers),,slcfly1 +15480,species,rubfly2,Rufous-breasted Flycatcher,Leptopogon rufipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15481,species,incfly1,Inca Flycatcher,Leptopogon taczanowskii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15482,species,vabtyr1,Variegated Bristle-Tyrant,Phylloscartes poecilotis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15483,species,chabrt1,Chapman's Bristle-Tyrant,Phylloscartes chapmani,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15486,species,mfbtyr1,Marble-faced Bristle-Tyrant,Phylloscartes ophthalmicus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15490,species,vebtyr2,Venezuelan Bristle-Tyrant,Phylloscartes venezuelanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15491,species,anbtyr1,Antioquia Bristle-Tyrant,Phylloscartes lanyoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15492,species,spbtyr1,Spectacled Bristle-Tyrant,Phylloscartes orbitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15493,species,sobtyr2,Southern Bristle-Tyrant,Phylloscartes eximius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15494,species,moctyr2,Mottle-cheeked Tyrannulet,Phylloscartes ventralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15498,species,restyr1,Restinga Tyrannulet,Phylloscartes kronei,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15499,species,bahtyr1,Bahia Tyrannulet,Phylloscartes beckeri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15500,species,yegtyr1,Yellow-green Tyrannulet,Phylloscartes flavovirens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15501,species,olgtyr1,Olive-green Tyrannulet,Phylloscartes virescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15502,species,ecutyr1,Ecuadorian Tyrannulet,Phylloscartes gualaquizae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15503,species,blftyr1,Black-fronted Tyrannulet,Phylloscartes nigrifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15504,species,rubtyr1,Rufous-browed Tyrannulet,Phylloscartes superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15508,species,alatyr1,Alagoas Tyrannulet,Phylloscartes ceciliae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15509,species,rultyr1,Rufous-lored Tyrannulet,Phylloscartes flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15510,species,ciftyr1,Cinnamon-faced Tyrannulet,Phylloscartes parkeri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15511,species,migtyr1,Minas Gerais Tyrannulet,Phylloscartes roquettei,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15512,species,saptyr1,Sao Paulo Tyrannulet,Phylloscartes paulista,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15513,species,oustyr1,Oustalet's Tyrannulet,Phylloscartes oustaleti,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15514,species,sdmtyr2,Serra do Mar Tyrannulet,Phylloscartes difficilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15515,species,bartyr1,Bay-ringed Tyrannulet,Phylloscartes sylviolus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15516,spuh,phyllo2,Phylloscartes sp.,Phylloscartes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15517,species,boptyr1,Bronze-olive Pygmy-Tyrant,Pseudotriccus pelzelni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15518,issf,bropyt1,Bronze-olive Pygmy-Tyrant (annectens/berlepschi),Pseudotriccus pelzelni annectens/berlepschi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,boptyr1 +15521,issf,bropyt2,Bronze-olive Pygmy-Tyrant (pelzelni/peruvianus),Pseudotriccus pelzelni pelzelni/peruvianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,boptyr1 +15524,species,hfptyr1,Hazel-fronted Pygmy-Tyrant,Pseudotriccus simplex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15525,species,rhptyr1,Rufous-headed Pygmy-Tyrant,Pseudotriccus ruficeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15526,species,rinant2,Ringed Antpipit,Corythopis torquatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15530,species,souant1,Southern Antpipit,Corythopis delalandi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15531,species,eaptyr1,Eared Pygmy-Tyrant,Myiornis auricularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15534,form,mappyt1,Maranhao-Piaui Pygmy-Tyrant (undescribed form),Myiornis [undescribed form],Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15535,species,wbptyr1,White-bellied Pygmy-Tyrant,Myiornis albiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15536,species,bcptyr1,Black-capped Pygmy-Tyrant,Myiornis atricapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15537,species,stptyr1,Short-tailed Pygmy-Tyrant,Myiornis ecaudatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15540,species,scptyr1,Scale-crested Pygmy-Tyrant,Lophotriccus pileatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15546,species,dbptyr1,Double-banded Pygmy-Tyrant,Lophotriccus vitiosus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15551,species,lcptyr1,Long-crested Pygmy-Tyrant,Lophotriccus eulophotes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15552,species,heptyr1,Helmeted Pygmy-Tyrant,Lophotriccus galeatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15553,spuh,lophot1,Lophotriccus sp.,Lophotriccus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15554,species,peptyr1,Pale-eyed Pygmy-Tyrant,Atalotriccus pilaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15559,species,norben1,Northern Bentbill,Oncostoma cinereigulare,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15560,species,souben1,Southern Bentbill,Oncostoma olivaceum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15561,species,snttyr1,Snethlage's Tody-Tyrant,Hemitriccus minor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15562,issf,snetot1,Snethlage's Tody-Tyrant (Igapo),Hemitriccus minor pallens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,snttyr1 +15563,issf,snetot2,Snethlage's Tody-Tyrant (Snethlage's),Hemitriccus minor minor/snethlageae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,snttyr1 +15566,species,yuttyr1,Yungas Tody-Tyrant,Hemitriccus spodiops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15567,species,acrtot1,Acre Tody-Tyrant,Hemitriccus cohnhafti,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15568,species,flapyt1,Flammulated Pygmy-Tyrant,Hemitriccus flammulatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15571,species,drbpyt1,Drab-breasted Pygmy-Tyrant,Hemitriccus diops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15572,species,bnbpyt1,Brown-breasted Pygmy-Tyrant,Hemitriccus obsoletus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15575,species,bbttyr1,Boat-billed Tody-Tyrant,Hemitriccus josephinae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15576,species,wettyr1,White-eyed Tody-Tyrant,Hemitriccus zosterops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15579,species,whbtot1,White-bellied Tody-Tyrant,Hemitriccus griseipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15582,species,erttyr1,Eye-ringed Tody-Tyrant,Hemitriccus orbitatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15583,species,jottyr1,Johannes's Tody-Tyrant,Hemitriccus iohannis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15584,species,snttyr2,Stripe-necked Tody-Tyrant,Hemitriccus striaticollis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15587,species,hattyr1,Hangnest Tody-Tyrant,Hemitriccus nidipendulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15590,species,pvttyr1,Pearly-vented Tody-Tyrant,Hemitriccus margaritaceiventer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15600,species,pettyr1,Pelzeln's Tody-Tyrant,Hemitriccus inornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15601,species,zittyr1,Zimmer's Tody-Tyrant,Hemitriccus minimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15602,species,btttyr1,Black-throated Tody-Tyrant,Hemitriccus granadensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15610,species,cbttyr1,Cinnamon-breasted Tody-Tyrant,Hemitriccus cinnamomeipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15611,species,bbttyr2,Buff-breasted Tody-Tyrant,Hemitriccus mirandae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15612,species,kattyr1,Kaempfer's Tody-Tyrant,Hemitriccus kaempferi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15613,species,btttyr2,Buff-throated Tody-Tyrant,Hemitriccus rufigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15614,species,fotpyt1,Fork-tailed Pygmy-Tyrant,Hemitriccus furcatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15615,spuh,hemitr1,Hemitriccus sp.,Hemitriccus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15616,species,rcttyr1,Rufous-crowned Tody-Flycatcher,Poecilotriccus ruficeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15621,species,johtot1,Johnson's Tody-Flycatcher,Poecilotriccus luluae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15622,species,wcttyr1,White-cheeked Tody-Flycatcher,Poecilotriccus albifacies,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15623,species,bawtyr1,Black-and-white Tody-Flycatcher,Poecilotriccus capitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15624,species,buctof1,Buff-cheeked Tody-Flycatcher,Poecilotriccus senex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15625,species,rudtof1,Ruddy Tody-Flycatcher,Poecilotriccus russatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15626,species,ocftof1,Ochre-faced Tody-Flycatcher,Poecilotriccus plumbeiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15631,species,smftof1,Smoky-fronted Tody-Flycatcher,Poecilotriccus fumifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15634,species,ruftof1,Rusty-fronted Tody-Flycatcher,Poecilotriccus latirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15642,species,shtfly1,Slate-headed Tody-Flycatcher,Poecilotriccus sylvia,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15648,species,gowtof1,Golden-winged Tody-Flycatcher,Poecilotriccus calopterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15649,species,bkbtof1,Black-backed Tody-Flycatcher,Poecilotriccus pulchellus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15650,spuh,poecil1,Poecilotriccus sp.,Poecilotriccus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15651,species,blctyr2,Black-chested Tyrant,Taeniotriccus andrei,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15654,species,sptfly1,Spotted Tody-Flycatcher,Todirostrum maculatum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15660,species,gyhtof1,Gray-headed Tody-Flycatcher,Todirostrum poliocephalum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15661,species,cotfly1,Common Tody-Flycatcher,Todirostrum cinereum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15662,issf,comtof1,Common Tody-Flycatcher (cinereum Group),Todirostrum cinereum [cinereum Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,cotfly1 +15670,issf,comtof2,Common Tody-Flycatcher (sclateri),Todirostrum cinereum sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,cotfly1 +15671,species,matfly1,Maracaibo Tody-Flycatcher,Todirostrum viridanum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15672,species,bhtfly1,Black-headed Tody-Flycatcher,Todirostrum nigriceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15673,species,patfly1,Painted Tody-Flycatcher,Todirostrum pictum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15674,species,ybtfly1,Yellow-browed Tody-Flycatcher,Todirostrum chrysocrotaphum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15680,spuh,todiro1,Todirostrum sp.,Todirostrum sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15681,species,brofly1,Brownish Twistwing,Cnipodectes subbrunneus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15684,species,ruftwi1,Rufous Twistwing,Cnipodectes superrufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15685,species,eyrfla1,Eye-ringed Flatbill,Rhynchocyclus brevirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15689,species,olifla1,Olivaceous Flatbill,Rhynchocyclus olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15690,issf,olifla2,Olivaceous Flatbill (Western),Rhynchocyclus olivaceus [aequinoctialis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,olifla1 +15697,issf,olifla3,Olivaceous Flatbill (Eastern),Rhynchocyclus olivaceus [olivaceus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,olifla1 +15701,species,pacfla1,Pacific Flatbill,Rhynchocyclus pacificus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15702,species,fubfla1,Fulvous-breasted Flatbill,Rhynchocyclus fulvipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15703,spuh,flatbi1,flatbill sp.,Rhynchocyclus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15704,species,yeofly1,Yellow-olive Flycatcher,Tolmomyias sulphurescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15705,issf,yeofly6,Yellow-olive Flycatcher (Gray-headed),Tolmomyias sulphurescens cinereiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15706,issf,yeofly7,Yellow-olive Flycatcher (Yellow-olive),Tolmomyias sulphurescens flavoolivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15707,issf,yeofly8,Yellow-olive Flycatcher (asemus),Tolmomyias sulphurescens asemus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15708,issf,yeofly9,Yellow-olive Flycatcher (confusus),Tolmomyias sulphurescens confusus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15709,issf,yeofly10,Yellow-olive Flycatcher (Santa Marta),Tolmomyias sulphurescens exortivus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15710,issf,yeofly11,Yellow-olive Flycatcher (Trinidad),Tolmomyias sulphurescens berlepschi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15711,issf,yeofly12,Yellow-olive Flycatcher (Guianan),Tolmomyias sulphurescens cherriei/duidae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15714,issf,yeofly2,Yellow-olive Flycatcher (Equatorial),Tolmomyias sulphurescens aequatorialis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15715,issf,yeofly4,Yellow-olive Flycatcher (Andes),Tolmomyias sulphurescens peruvianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15716,issf,yeofly3,Yellow-olive Flycatcher (Riverine),Tolmomyias sulphurescens insignis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15717,issf,yeofly13,Yellow-olive Flycatcher (Para),Tolmomyias sulphurescens mixtus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15718,issf,yeofly14,Yellow-olive Flycatcher (inornatus),Tolmomyias sulphurescens inornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15719,issf,yeofly5,Yellow-olive Flycatcher (Mato Grosso),Tolmomyias sulphurescens pallescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15720,issf,yeofly15,Yellow-olive Flycatcher (grisescens),Tolmomyias sulphurescens grisescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15721,issf,yeofly16,Yellow-olive Flycatcher (Sooretama),Tolmomyias sulphurescens sulphurescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yeofly1 +15722,species,orefly1,Orange-eyed Flycatcher,Tolmomyias traylori,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15723,species,yemfly1,Yellow-margined Flycatcher,Tolmomyias assimilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15724,issf,yemfly2,Yellow-margined Flycatcher (Yellow-winged),Tolmomyias assimilis flavotectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 +15725,issf,yemfly4,Yellow-margined Flycatcher (neglectus),Tolmomyias assimilis neglectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 +15726,issf,yemfly5,Yellow-margined Flycatcher (examinatus),Tolmomyias assimilis examinatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 +15727,issf,yemfly6,Yellow-margined Flycatcher (obscuriceps),Tolmomyias assimilis obscuriceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 +15728,issf,yemfly7,Yellow-margined Flycatcher (assimilis Group),Tolmomyias assimilis [assimilis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 +15732,issf,sucfly1,Yellow-margined Flycatcher (Sucunduri),Tolmomyias assimilis sucunduri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 +15733,issf,yemfly8,Yellow-margined Flycatcher (paraensis),Tolmomyias assimilis paraensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,yemfly1 +15734,species,gycfly1,Gray-crowned Flycatcher,Tolmomyias poliocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15738,species,yebfly1,Yellow-breasted Flycatcher,Tolmomyias flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15739,issf,yebfly3,Yellow-breasted Flycatcher (Ochre-lored),Tolmomyias flaviventris [flaviventris Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,yebfly1 +15743,issf,yebfly4,Yellow-breasted Flycatcher (Olive-faced),Tolmomyias flaviventris [viridiceps Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,yebfly1 +15747,spuh,tolmom1,Tolmomyias sp.,Tolmomyias sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15748,species,cinfly2,Cinnamon Flycatcher,Pyrrhomyias cinnamomeus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15749,issf,cinfly3,Cinnamon Flycatcher (Santa Marta),Pyrrhomyias cinnamomeus assimilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,cinfly2 +15750,issf,cinfly4,Cinnamon Flycatcher (Venezuelan),Pyrrhomyias cinnamomeus [vieillotioides Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,cinfly2 +15754,issf,cinfly1,Cinnamon Flycatcher (Andean),Pyrrhomyias cinnamomeus cinnamomeus/pyrrhopterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,cinfly2 +15757,species,clifly1,Cliff Flycatcher,Hirundinea ferruginea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15758,issf,clifly2,Cliff Flycatcher (Cliff),Hirundinea ferruginea ferruginea/sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,clifly1 +15761,issf,clifly3,Cliff Flycatcher (Swallow),Hirundinea ferruginea bellicosa/pallidior,Passeriformes,Tyrannidae (Tyrant Flycatchers),,clifly1 +15764,species,ornfly1,Ornate Flycatcher,Myiotriccus ornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15765,issf,ornfly2,Ornate Flycatcher (Western),Myiotriccus ornatus ornatus/stellatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ornfly1 +15768,issf,ornfly3,Ornate Flycatcher (Eastern),Myiotriccus ornatus phoenicurus/aureiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ornfly1 +15771,species,hanfly1,Handsome Flycatcher,Nephelomyias pulcher,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15775,species,orbfly1,Orange-banded Flycatcher,Nephelomyias lintoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15776,species,ocbfly2,Ochraceous-breasted Flycatcher,Nephelomyias ochraceiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15777,species,yebtyr1,Yellow-bellied Tyrannulet,Ornithion semiflavum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15778,species,brctyr,Brown-capped Tyrannulet,Ornithion brunneicapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15779,species,whltyr1,White-lored Tyrannulet,Ornithion inerme,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15780,species,nobtyr,Northern Beardless-Tyrannulet,Camptostoma imberbe,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15781,species,sobtyr1,Southern Beardless-Tyrannulet,Camptostoma obsoletum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15782,issf,soubet1,Southern Beardless-Tyrannulet (Northern),Camptostoma obsoletum [pusillum Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,sobtyr1 +15790,issf,soubet2,Southern Beardless-Tyrannulet (Southern),Camptostoma obsoletum [obsoletum Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,sobtyr1 +15797,species,suifly1,Suiriri Flycatcher,Suiriri suiriri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15801,species,chafly3,Chapada Flycatcher,Suiriri affinis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15802,slash,y00883,Suiriri/Chapada Flycatcher,Suiriri suiriri/affinis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15803,species,whttyr1,White-tailed Tyrannulet,Mecocerculus poecilocercus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15804,species,bubtyr1,Buff-banded Tyrannulet,Mecocerculus hellmayri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15805,species,whbtyr1,White-banded Tyrannulet,Mecocerculus stictopterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15809,species,whttyr2,White-throated Tyrannulet,Mecocerculus leucophrys,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15821,species,ruwtyr1,Rufous-winged Tyrannulet,Mecocerculus calopterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15822,species,subtyr1,Sulphur-bellied Tyrannulet,Mecocerculus minor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15823,species,bkctit1,Black-crested Tit-Tyrant,Anairetes nigrocristatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15824,species,pcttyr1,Pied-crested Tit-Tyrant,Anairetes reguloides,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15827,species,abttyr1,Ash-breasted Tit-Tyrant,Anairetes alpinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15830,species,ybttyr1,Yellow-billed Tit-Tyrant,Anairetes flavirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15835,species,tuttyr1,Tufted Tit-Tyrant,Anairetes parulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15839,species,jfttyr1,Juan Fernandez Tit-Tyrant,Anairetes fernandezianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15840,spuh,anaire1,Anairetes sp.,Anairetes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15841,species,agitit1,Agile Tit-Tyrant,Uromyias agilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15842,species,unstit1,Unstreaked Tit-Tyrant,Uromyias agraphia,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15846,species,moctyr1,Mouse-colored Tyrannulet,Phaeomyias murina,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15847,issf,moctyr7,Mouse-colored Tyrannulet (Northern),Phaeomyias murina incomta/eremonoma,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 +15850,issf,moctyr3,Mouse-colored Tyrannulet (Amazonian),Phaeomyias murina murina/wagae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 +15853,issf,moctyr6,Mouse-colored Tyrannulet (Tumbes),Phaeomyias murina tumbezana/inflava,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 +15856,issf,moctyr4,Mouse-colored Tyrannulet (Marañon),Phaeomyias murina maranonica,Passeriformes,Tyrannidae (Tyrant Flycatchers),,moctyr1 +15857,species,cocfly1,Cocos Flycatcher,Nesotriccus ridgwayi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15858,species,yeltyr1,Yellow Tyrannulet,Capsiempis flaveola,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15864,species,beatac1,Bearded Tachuri,Polystictus pectoralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15868,species,gybtac1,Gray-backed Tachuri,Polystictus superciliaris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15869,species,shttyr1,Sharp-tailed Tyrant,Culicivora caudacuta,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15870,species,credor1,Crested Doradito,Pseudocolopteryx sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15871,species,subdor1,Subtropical Doradito,Pseudocolopteryx acutipennis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15872,species,dindor2,Dinelli's Doradito,Pseudocolopteryx dinelliana,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15873,species,wardor1,Warbling Doradito,Pseudocolopteryx flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15874,species,ticdor1,Ticking Doradito,Pseudocolopteryx citreola,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15875,slash,y00660,Warbling/Ticking Doradito,Pseudocolopteryx flaviventris/citreola,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15876,spuh,doradi1,doradito sp.,Pseudocolopteryx sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15877,species,yectyr1,Yellow-crowned Tyrannulet,Tyrannulus elatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15878,species,forela1,Forest Elaenia,Myiopagis gaimardii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15884,species,graela2,Gray Elaenia,Myiopagis caniceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15885,issf,gryela1,Gray Elaenia (Choco),Myiopagis caniceps parambae/absita,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela2 +15888,issf,gryela2,Gray Elaenia (Gray),Myiopagis caniceps cinerea,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela2 +15889,issf,gryela3,Gray Elaenia (Gray-headed),Myiopagis caniceps caniceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela2 +15890,species,fooela1,Foothill Elaenia,Myiopagis olallai,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15891,issf,fooela2,Foothill Elaenia (Perija),Myiopagis olallai incognita,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fooela1 +15892,issf,fooela3,Foothill Elaenia (Antioquia),Myiopagis olallai coopmansi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fooela1 +15893,issf,fooela4,Foothill Elaenia (Foothill),Myiopagis olallai olallai,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fooela1 +15894,species,pacela1,Pacific Elaenia,Myiopagis subplacens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15895,species,yecela1,Yellow-crowned Elaenia,Myiopagis flavivertex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15896,species,jamela1,Jamaican Elaenia,Myiopagis cotta,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15897,species,greela,Greenish Elaenia,Myiopagis viridicata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15898,issf,greela2,Greenish Elaenia (West Mexico),Myiopagis viridicata minima/jaliscensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,greela +15901,issf,greela3,Greenish Elaenia (Greenish),Myiopagis viridicata [viridicata Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,greela +15910,spuh,myiopa1,elaenia sp. (genus Myiopagis),Myiopagis sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15911,species,plcela1,Plain-crested Elaenia,Elaenia cristata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15914,species,rucela1,Rufous-crowned Elaenia,Elaenia ruficeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15915,species,slaela1,Slaty Elaenia,Elaenia strepera,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15916,species,mobela1,Mottle-backed Elaenia,Elaenia gigas,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15917,species,higela3,Small-headed Elaenia,Elaenia sordida,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15918,species,greela1,Great Elaenia,Elaenia dayi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15922,species,higela2,Highland Elaenia,Elaenia obscura,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15923,species,yebela1,Yellow-bellied Elaenia,Elaenia flavogaster,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15928,species,smbela1,Small-billed Elaenia,Elaenia parvirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15929,species,broela1,Brownish Elaenia,Elaenia pelzelni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15930,species,larela1,Large Elaenia,Elaenia spectabilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15931,species,norela1,Noronha Elaenia,Elaenia ridleyana,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15932,species,oliela1,Olivaceous Elaenia,Elaenia mesoleuca,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15933,species,lesela1,Lesser Elaenia,Elaenia chiriquensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15936,species,cooela1,Coopmans's Elaenia,Elaenia brachyptera,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15937,species,whcela1,White-crested Elaenia,Elaenia albiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15938,issf,whcela2,White-crested Elaenia (White-crested),Elaenia albiceps [albiceps Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,whcela1 +15943,issf,whcela4,White-crested Elaenia (Chilean),Elaenia albiceps chilensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whcela1 +15944,issf,whcela3,White-crested Elaenia (Peruvian),Elaenia albiceps modesta,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whcela1 +15945,slash,y00739,Small-billed/White-crested Elaenia,Elaenia parvirostris/albiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15946,species,sieela3,Sierran Elaenia,Elaenia pallatangae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15950,species,mouela1,Mountain Elaenia,Elaenia frantzii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15955,species,sieela2,Tepui Elaenia,Elaenia olivina,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15958,species,carela1,Caribbean Elaenia,Elaenia martinica,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15959,issf,carela2,Caribbean Elaenia (Caribbean),Elaenia martinica [martinica Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,carela1 +15963,issf,carela3,Caribbean Elaenia (Chinchorro),Elaenia martinica [cinerascens Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,carela1 +15968,species,graela1,Greater Antillean Elaenia,Elaenia fallax,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15969,issf,graela3,Greater Antillean Elaenia (Jamaican),Elaenia fallax fallax,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela1 +15970,issf,graela4,Greater Antillean Elaenia (Hispaniolan),Elaenia fallax cherriei,Passeriformes,Tyrannidae (Tyrant Flycatchers),,graela1 +15971,spuh,elaeni1,elaenia sp. (genus Elaenia),Elaenia sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15972,species,tortyr1,Torrent Tyrannulet,Serpophaga cinerea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15975,species,rivtyr1,River Tyrannulet,Serpophaga hypoleuca,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15979,species,sootyr1,Sooty Tyrannulet,Serpophaga nigricans,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15980,species,whctyr1,White-crested Tyrannulet,Serpophaga subcristata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15983,species,whbtyr2,White-bellied Tyrannulet,Serpophaga munda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15984,slash,y01036,White-crested/White-bellied Tyrannulet,Serpophaga subcristata/munda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15985,species,gyctyr2,Straneck's Tyrannulet,Serpophaga griseicapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15986,slash,y00884,White-crested/Straneck's Tyrannulet,Serpophaga subcristata/griseicapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15987,spuh,serpop1,Serpophaga sp.,Serpophaga sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15988,species,roltyr1,Rough-legged Tyrannulet,Phyllomyias burmeisteri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15989,issf,roltyr2,Rough-legged Tyrannulet (Zeledon's),Phyllomyias burmeisteri zeledoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),,roltyr1 +15990,issf,roltyr4,Rough-legged Tyrannulet (White-fronted),Phyllomyias burmeisteri [leucogonys Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,roltyr1 +15995,issf,roltyr3,Rough-legged Tyrannulet (Burmeister's),Phyllomyias burmeisteri burmeisteri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,roltyr1 +15996,species,gretyr1,Greenish Tyrannulet,Phyllomyias virescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15997,species,reityr1,Reiser's Tyrannulet,Phyllomyias reiseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15998,species,urityr1,Urich's Tyrannulet,Phyllomyias urichi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +15999,species,scltyr1,Sclater's Tyrannulet,Phyllomyias sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16002,species,platyr2,Planalto Tyrannulet,Phyllomyias fasciatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16006,species,yuntyr1,Yungas Tyrannulet,Phyllomyias weedeni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16007,species,sohtyr1,Sooty-headed Tyrannulet,Phyllomyias griseiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16008,issf,sohtyr2,Sooty-headed Tyrannulet (griseiceps),Phyllomyias griseiceps griseiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sohtyr1 +16009,issf,sohtyr3,Sooty-headed Tyrannulet (cristatus),Phyllomyias griseiceps cristatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sohtyr1 +16010,issf,sohtyr4,Sooty-headed Tyrannulet (caucae),Phyllomyias griseiceps caucae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sohtyr1 +16011,issf,sohtyr5,Sooty-headed Tyrannulet (pallidiceps),Phyllomyias griseiceps pallidiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sohtyr1 +16012,species,blctyr1,Black-capped Tyrannulet,Phyllomyias nigrocapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16016,species,ashtyr1,Ashy-headed Tyrannulet,Phyllomyias cinereiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16017,species,tartyr1,Tawny-rumped Tyrannulet,Phyllomyias uropygialis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16018,species,plctyr1,Plumbeous-crowned Tyrannulet,Phyllomyias plumbeiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16019,species,gyctyr1,Gray-capped Tyrannulet,Phyllomyias griseocapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16020,spuh,phyllo3,Phyllomyias sp.,Phyllomyias sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16021,species,rebtyr2,Red-billed Tyrannulet,Zimmerius cinereicapilla,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16022,species,mistyr1,Mishana Tyrannulet,Zimmerius villarejoi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16023,species,chityr1,Chico's Tyrannulet,Zimmerius chicomendesi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16024,species,guityr1,Guianan Tyrannulet,Zimmerius acer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16025,species,paltyr2,Guatemalan Tyrannulet,Zimmerius vilissimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16026,species,paltyr3,Mistletoe Tyrannulet,Zimmerius parvus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16027,slash,y01089,Guatemalan/Mistletoe Tyrannulet,Zimmerius vilissimus/parvus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16028,species,chotyr1,Choco Tyrannulet,Zimmerius albigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16029,species,paltyr4,Spectacled Tyrannulet,Zimmerius improbus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16032,species,goftyr1,Golden-faced Tyrannulet,Zimmerius chrysops,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16033,issf,goftyr5,Golden-faced Tyrannulet (Coopmans's),Zimmerius chrysops minimus/cumanensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,goftyr1 +16036,issf,goftyr3,Golden-faced Tyrannulet (Golden-faced),Zimmerius chrysops chrysops,Passeriformes,Tyrannidae (Tyrant Flycatchers),,goftyr1 +16037,species,pertyr1,Peruvian Tyrannulet,Zimmerius viridiflavus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16038,issf,goftyr4,Peruvian Tyrannulet (Loja),Zimmerius viridiflavus flavidifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),,pertyr1 +16039,form,goftyr2,Peruvian Tyrannulet (Amazonas),Zimmerius viridiflavus [undescribed form],Passeriformes,Tyrannidae (Tyrant Flycatchers),,pertyr1 +16040,issf,pertyr2,Peruvian Tyrannulet (Peruvian),Zimmerius viridiflavus viridiflavus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,pertyr1 +16041,species,boltyr1,Bolivian Tyrannulet,Zimmerius bolivianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16042,species,paltyr5,Venezuelan Tyrannulet,Zimmerius petersi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16043,species,slftyr1,Slender-footed Tyrannulet,Zimmerius gracilipes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16046,spuh,zimmer1,Zimmerius sp.,Zimmerius sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16047,species,tcptyr1,Tawny-crowned Pygmy-Tyrant,Euscarthmus meloryphus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16048,issf,tacpyt1,Tawny-crowned Pygmy-Tyrant (Tawny-crowned),Euscarthmus meloryphus meloryphus/paulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tcptyr1 +16051,issf,tacpyt2,Tawny-crowned Pygmy-Tyrant (Tawny-fronted),Euscarthmus meloryphus fulviceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tcptyr1 +16052,species,rsptyr1,Rufous-sided Pygmy-Tyrant,Euscarthmus rufomarginatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16053,species,gawtyr2,Gray-and-white Tyrannulet,Pseudelaenia leucospodia,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16054,species,lewtyr1,Lesser Wagtail-Tyrant,Stigmatura napensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16055,issf,leswat1,Lesser Wagtail-Tyrant (Lesser),Stigmatura napensis napensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,lewtyr1 +16056,issf,leswat2,Lesser Wagtail-Tyrant (Bahia),Stigmatura napensis bahiae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,lewtyr1 +16057,form,oriwat1,Orinoco Wagtail-Tyrant (undescribed form),Stigmatura [undescribed form],Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16058,species,grwtyr1,Greater Wagtail-Tyrant,Stigmatura budytoides,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16059,issf,grewat1,Greater Wagtail-Tyrant (Greater),Stigmatura budytoides [budytoides Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,grwtyr1 +16063,issf,grewat2,Greater Wagtail-Tyrant (Caatinga),Stigmatura budytoides gracilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,grwtyr1 +16064,species,slbtyr1,Slender-billed Tyrannulet,Inezia tenuirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16065,species,platyr1,Plain Tyrannulet,Inezia inornata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16066,species,amatyr1,Amazonian Tyrannulet,Inezia subflava,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16069,species,pattyr3,Pale-tipped Tyrannulet,Inezia caudata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16072,species,flafly2,Flavescent Flycatcher,Myiophobus flavicans,Passeriformes,Tyrannidae (Tyrant Flycatchers),"Tyrant Flycatchers: Pewees, Kingbirds, and Allies", +16078,species,orcfly1,Orange-crested Flycatcher,Myiophobus phoenicomitra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16081,species,unafly1,Unadorned Flycatcher,Myiophobus inornatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16082,species,rorfly1,Roraiman Flycatcher,Myiophobus roraimae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16086,species,olcfly1,Olive-chested Flycatcher,Myiophobus cryptoxanthus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16087,species,brcfly1,Bran-colored Flycatcher,Myiophobus fasciatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16088,issf,brcfly2,Bran-colored Flycatcher (Bran-colored),Myiophobus fasciatus [fasciatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,brcfly1 +16094,issf,brcfly4,Bran-colored Flycatcher (Mouse-gray),Myiophobus fasciatus crypterythrus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,brcfly1 +16095,issf,brcfly3,Bran-colored Flycatcher (Rufescent),Myiophobus fasciatus rufescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,brcfly1 +16096,spuh,myioph1,Myiophobus sp.,Myiophobus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16097,species,eulfly1,Euler's Flycatcher,Lathrotriccus euleri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16098,issf,eulfly2,Euler's Flycatcher (Lawrence's),Lathrotriccus euleri [flaviventris Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,eulfly1 +16102,issf,eulfly3,Euler's Flycatcher (Euler's),Lathrotriccus euleri euleri/argentinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,eulfly1 +16105,species,gybfly1,Gray-breasted Flycatcher,Lathrotriccus griseipectus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16106,species,tacfly1,Tawny-chested Flycatcher,Aphanotriccus capitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16107,species,blbfly1,Black-billed Flycatcher,Aphanotriccus audax,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16108,species,belfly1,Belted Flycatcher,Xenotriccus callizonus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16109,species,pilfly1,Pileated Flycatcher,Xenotriccus mexicanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16110,species,tuffly,Tufted Flycatcher,Mitrephanes phaeocercus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16111,issf,tuffly1,Tufted Flycatcher (Mexican),Mitrephanes phaeocercus phaeocercus/tenuirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tuffly +16114,issf,tuffly2,Tufted Flycatcher (Costa Rican),Mitrephanes phaeocercus aurantiiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tuffly +16115,issf,tuffly3,Tufted Flycatcher (South American),Mitrephanes phaeocercus berlepschi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tuffly +16116,species,olifly2,Olive Flycatcher,Mitrephanes olivaceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16117,species,olsfly,Olive-sided Flycatcher,Contopus cooperi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16118,species,grepew,Greater Pewee,Contopus pertinax,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16119,issf,grepew1,Greater Pewee (Mexican),Contopus pertinax pertinax,Passeriformes,Tyrannidae (Tyrant Flycatchers),,grepew +16120,issf,grepew2,Greater Pewee (Central American),Contopus pertinax minor,Passeriformes,Tyrannidae (Tyrant Flycatchers),,grepew +16121,species,darpew1,Dark Pewee,Contopus lugubris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16122,species,smcpew1,Smoke-colored Pewee,Contopus fumigatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16129,species,ochpew1,Ochraceous Pewee,Contopus ochraceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16130,species,wewpew,Western Wood-Pewee,Contopus sordidulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16135,species,eawpew,Eastern Wood-Pewee,Contopus virens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16136,hybrid,x00858,Western x Eastern Wood-Pewee (hybrid),Contopus sordidulus x virens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16137,slash,woopew,Western/Eastern Wood-Pewee,Contopus sordidulus/virens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16138,species,tropew1,Tropical Pewee,Contopus cinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16139,issf,tropew4,Tropical Pewee (Short-legged),Contopus cinereus [brachytarsus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,tropew1 +16143,issf,tropew3,Tropical Pewee (Tropical),Contopus cinereus [cinereus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,tropew1 +16148,issf,tropew2,Tropical Pewee (Tumbes),Contopus cinereus punensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,tropew1 +16149,species,cubpew1,Cuban Pewee,Contopus caribaeus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16154,species,jampew1,Jamaican Pewee,Contopus pallidus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16155,species,hispew1,Hispaniolan Pewee,Contopus hispaniolensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16158,species,leapew1,Lesser Antillean Pewee,Contopus latirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16159,issf,leapew2,Lesser Antillean Pewee (Lesser Antilles),Contopus latirostris brunneicapillus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,leapew1 +16160,issf,leapew3,Lesser Antillean Pewee (Puerto Rico),Contopus latirostris blancoi,Passeriformes,Tyrannidae (Tyrant Flycatchers),,leapew1 +16161,issf,leapew4,Lesser Antillean Pewee (St. Lucia),Contopus latirostris latirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,leapew1 +16162,species,whtpew1,White-throated Pewee,Contopus albogularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16163,species,blapew1,Blackish Pewee,Contopus nigrescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16166,spuh,pewee1,pewee sp. (Contopus sp.),Contopus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16167,species,fusfly1,Fuscous Flycatcher,Cnemotriccus fuscatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16168,issf,fusfly3,Fuscous Flycatcher (Campina),Cnemotriccus fuscatus duidae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fusfly1 +16169,issf,fusfly2,Fuscous Flycatcher (Fuscous),Cnemotriccus fuscatus [fuscatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,fusfly1 +16176,species,yebfly,Yellow-bellied Flycatcher,Empidonax flaviventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16177,species,acafly,Acadian Flycatcher,Empidonax virescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16178,species,aldfly,Alder Flycatcher,Empidonax alnorum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16179,species,wilfly,Willow Flycatcher,Empidonax traillii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16180,issf,wilfly1,Willow Flycatcher (Eastern),Empidonax traillii traillii,Passeriformes,Tyrannidae (Tyrant Flycatchers),,wilfly +16181,issf,wilfly2,Willow Flycatcher (Northwestern),Empidonax traillii brewsteri/adastus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,wilfly +16184,issf,wilfly3,Willow Flycatcher (Southwestern),Empidonax traillii extimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,wilfly +16185,slash,y00324,Alder/Willow Flycatcher (Traill's Flycatcher),Empidonax alnorum/traillii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16186,species,whtfly1,White-throated Flycatcher,Empidonax albigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16190,species,leafly,Least Flycatcher,Empidonax minimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16191,species,hamfly,Hammond's Flycatcher,Empidonax hammondii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16192,species,gryfly,Gray Flycatcher,Empidonax wrightii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16193,species,dusfly,Dusky Flycatcher,Empidonax oberholseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16194,slash,y00618,Gray/Dusky Flycatcher,Empidonax wrightii/oberholseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16195,slash,y00014,Hammond's/Dusky Flycatcher,Empidonax hammondii/oberholseri,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16196,species,pinfly1,Pine Flycatcher,Empidonax affinis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16202,species,pasfly,Pacific-slope Flycatcher,Empidonax difficilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16206,species,corfly,Cordilleran Flycatcher,Empidonax occidentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16209,hybrid,x00770,Pacific-slope x Cordilleran Flycatcher (hybrid),Empidonax difficilis x occidentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16210,slash,wesfly,Pacific-slope/Cordilleran Flycatcher (Western Flycatcher),Empidonax difficilis/occidentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16211,species,yelfly1,Yellowish Flycatcher,Empidonax flavescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16215,species,bubfly,Buff-breasted Flycatcher,Empidonax fulvifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16222,species,blcfly1,Black-capped Flycatcher,Empidonax atriceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16223,spuh,empido,Empidonax sp.,Empidonax sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16224,species,blkpho,Black Phoebe,Sayornis nigricans,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16225,issf,blkpho1,Black Phoebe (Northern),Sayornis nigricans [nigricans Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,blkpho +16230,issf,blkpho2,Black Phoebe (White-winged),Sayornis nigricans latirostris/angustirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,blkpho +16233,species,easpho,Eastern Phoebe,Sayornis phoebe,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16234,hybrid,x00621,Black x Eastern Phoebe (hybrid),Sayornis nigricans x phoebe,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16235,species,saypho,Say's Phoebe,Sayornis saya,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16238,hybrid,x00635,Black x Say's Phoebe (hybrid),Sayornis nigricans x saya,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16239,spuh,phoebe1,phoebe sp.,Sayornis sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16240,species,nosfly1,Northern Scrub-Flycatcher,Sublegatus arenarum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16247,species,amsfly1,Amazonian Scrub-Flycatcher,Sublegatus obscurior,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16248,species,sosfly1,Southern Scrub-Flycatcher,Sublegatus modestus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16251,spuh,scrub-2,scrub-flycatcher sp.,Sublegatus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16252,species,verfly,Vermilion Flycatcher,Pyrocephalus rubinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16253,issf,verfly5,Vermilion Flycatcher (Northern),Pyrocephalus rubinus [mexicanus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly +16258,issf,verfly6,Vermilion Flycatcher (saturatus),Pyrocephalus rubinus saturatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly +16259,issf,verfly7,Vermilion Flycatcher (obscurus Group),Pyrocephalus rubinus [obscurus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly +16265,issf,verfly1,Vermilion Flycatcher (Austral),Pyrocephalus rubinus rubinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly +16266,issf,verfly3,Vermilion Flycatcher (Galapagos),Pyrocephalus rubinus nanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly +16267,issf,verfly8,Vermilion Flycatcher (San Cristobal),Pyrocephalus rubinus dubius,Passeriformes,Tyrannidae (Tyrant Flycatchers),,verfly +16268,species,ausneg1,Austral Negrito,Lessonia rufa,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16269,species,andneg1,Andean Negrito,Lessonia oreas,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16270,slash,y00603,Austral/Andean Negrito,Lessonia rufa/oreas,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16271,species,rivtyr2,Riverside Tyrant,Knipolegus orenocensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16272,issf,rivtyr3,Riverside Tyrant (Riverside),Knipolegus orenocensis orenocensis/xinguensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rivtyr2 +16275,issf,rivtyr4,Riverside Tyrant (Sclater's),Knipolegus orenocensis sclateri,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rivtyr2 +16276,species,ruttyr1,Rufous-tailed Tyrant,Knipolegus poecilurus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16282,species,ambtyr1,Amazonian Black-Tyrant,Knipolegus poecilocercus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16283,species,whwblt2,Caatinga Black-Tyrant,Knipolegus franciscanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16284,species,crbtyr1,Crested Black-Tyrant,Knipolegus lophotes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16285,species,vebtyr1,Velvety Black-Tyrant,Knipolegus nigerrimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16286,species,andtyr3,Jelski's Black-Tyrant,Knipolegus signatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16287,species,andtyr2,Plumbeous Black-Tyrant,Knipolegus cabanisi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16288,slash,andtyr1,Jelski's/Plumbeous Black-Tyrant,Knipolegus signatus/cabanisi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16289,species,bbbtyr1,Blue-billed Black-Tyrant,Knipolegus cyanirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16290,species,cintyr1,Cinereous Tyrant,Knipolegus striaticeps,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16291,species,whwblt1,White-winged Black-Tyrant,Knipolegus aterrimus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16292,issf,whwblt4,White-winged Black-Tyrant (White-rumped),Knipolegus aterrimus heterogyna,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whwblt1 +16293,issf,whwblt5,White-winged Black-Tyrant (White-winged),Knipolegus aterrimus aterrimus/anthracinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,whwblt1 +16296,species,hubtyr1,Hudson's Black-Tyrant,Knipolegus hudsoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16297,slash,y00971,White-winged/Hudson's Black-Tyrant,Knipolegus aterrimus/hudsoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16298,spuh,black-2,black-tyrant sp.,Knipolegus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16299,species,spetyr1,Spectacled Tyrant,Hymenops perspicillatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16302,species,drwtyr1,Drab Water Tyrant,Ochthornis littoralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16303,species,yebtyr2,Yellow-browed Tyrant,Satrapa icterophrys,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16304,species,ligtyr1,Little Ground-Tyrant,Muscisaxicola fluviatilis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16305,species,sbgtyr1,Spot-billed Ground-Tyrant,Muscisaxicola maculirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16309,species,tacgrt1,Taczanowski's Ground-Tyrant,Muscisaxicola griseus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16310,species,pugtyr1,Puna Ground-Tyrant,Muscisaxicola juninensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16311,species,cingrt1,Cinereous Ground-Tyrant,Muscisaxicola cinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16314,species,wfgtyr1,White-fronted Ground-Tyrant,Muscisaxicola albifrons,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16315,species,ongtyr1,Ochre-naped Ground-Tyrant,Muscisaxicola flavinucha,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16318,species,rngtyr1,Rufous-naped Ground-Tyrant,Muscisaxicola rufivertex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16319,issf,rungrt1,Rufous-naped Ground-Tyrant (Rufous-naped),Muscisaxicola rufivertex rufivertex,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rngtyr1 +16320,issf,rungrt3,Rufous-naped Ground-Tyrant (Chestnut-naped),Muscisaxicola rufivertex occipitalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rngtyr1 +16321,issf,rungrt2,Rufous-naped Ground-Tyrant (pallidiceps),Muscisaxicola rufivertex pallidiceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,rngtyr1 +16322,species,dafgrt1,Dark-faced Ground-Tyrant,Muscisaxicola maclovianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16323,issf,dafgrt2,Dark-faced Ground-Tyrant (mentalis),Muscisaxicola maclovianus mentalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,dafgrt1 +16324,issf,dafgrt3,Dark-faced Ground-Tyrant (maclovianus),Muscisaxicola maclovianus maclovianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,dafgrt1 +16325,species,wbgtyr1,White-browed Ground-Tyrant,Muscisaxicola albilora,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16326,species,plcgrt1,Plain-capped Ground-Tyrant,Muscisaxicola alpinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16330,species,cibgrt1,Cinnamon-bellied Ground-Tyrant,Muscisaxicola capistratus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16331,species,bfgtyr1,Black-fronted Ground-Tyrant,Muscisaxicola frontalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16332,spuh,ground1,ground-tyrant sp.,Muscisaxicola sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16333,species,bkbsht1,Black-billed Shrike-Tyrant,Agriornis montanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16339,species,wtstyr1,White-tailed Shrike-Tyrant,Agriornis albicauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16342,species,gresht1,Great Shrike-Tyrant,Agriornis lividus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16345,species,gybsht1,Gray-bellied Shrike-Tyrant,Agriornis micropterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16346,issf,gybsht2,Gray-bellied Shrike-Tyrant (andecola),Agriornis micropterus andecola,Passeriformes,Tyrannidae (Tyrant Flycatchers),,gybsht1 +16347,issf,gybsht3,Gray-bellied Shrike-Tyrant (micropterus),Agriornis micropterus micropterus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,gybsht1 +16348,species,lessht1,Lesser Shrike-Tyrant,Agriornis murinus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16349,spuh,shrike1,shrike-tyrant sp.,Agriornis sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16350,species,fiediu1,Fire-eyed Diucon,Xolmis pyrope,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16353,species,grymon1,Gray Monjita,Xolmis cinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16356,species,bkcmon1,Black-crowned Monjita,Xolmis coronatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16357,species,whrmon2,White-rumped Monjita,Xolmis velatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16358,species,whimon1,White Monjita,Xolmis irupero,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16361,species,salmon1,Salinas Monjita,Xolmis salinarum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16362,species,rubmon1,Rusty-backed Monjita,Xolmis rubetra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16363,species,bawmon3,Black-and-white Monjita,Xolmis dominicanus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16364,species,stbtyr1,Streak-throated Bush-Tyrant,Myiotheretes striaticollis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16367,species,smbtyr1,Santa Marta Bush-Tyrant,Myiotheretes pernix,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16368,species,smbtyr2,Smoky Bush-Tyrant,Myiotheretes fumigatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16373,species,rbbtyr1,Rufous-bellied Bush-Tyrant,Myiotheretes fuscorufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16374,spuh,myioth2,Myiotheretes sp.,Myiotheretes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16375,species,rrbtyr1,Red-rumped Bush-Tyrant,Cnemarchus erythropygius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16378,species,rwbtyr1,Rufous-webbed Bush-Tyrant,Polioxolmis rufipennis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16381,species,chvtyr2,Chocolate-vented Tyrant,Neoxolmis rufiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16382,species,stttyr2,Streamer-tailed Tyrant,Gubernetes yetapa,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16383,species,shtgrt1,Shear-tailed Gray Tyrant,Muscipipra vetula,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16384,species,piwtyr1,Pied Water-Tyrant,Fluvicola pica,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16385,species,bbwtyr1,Black-backed Water-Tyrant,Fluvicola albiventer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16386,species,mawtyr1,Masked Water-Tyrant,Fluvicola nengeta,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16389,species,whmtyr1,White-headed Marsh Tyrant,Arundinicola leucocephala,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16390,species,cottyr1,Cock-tailed Tyrant,Alectrurus tricolor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16391,species,stttyr1,Strange-tailed Tyrant,Alectrurus risora,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16392,species,tumtyr2,Tumbes Tyrant,Tumbezia salvini,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16393,species,crocht1,Crowned Chat-Tyrant,Ochthoeca frontalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16394,issf,crocht2,Crowned Chat-Tyrant (Crowned),Ochthoeca frontalis frontalis/albidiadema,Passeriformes,Tyrannidae (Tyrant Flycatchers),,crocht1 +16397,issf,crocht3,Crowned Chat-Tyrant (Kalinowski's),Ochthoeca frontalis spodionota/boliviana,Passeriformes,Tyrannidae (Tyrant Flycatchers),,crocht1 +16400,species,jelcht1,Jelski's Chat-Tyrant,Ochthoeca jelskii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16401,species,gobcht1,Golden-browed Chat-Tyrant,Ochthoeca pulchella,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16404,species,yebcht1,Yellow-bellied Chat-Tyrant,Ochthoeca diadema,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16410,species,sbctyr1,Slaty-backed Chat-Tyrant,Ochthoeca cinnamomeiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16411,issf,slbcht2,Slaty-backed Chat-Tyrant (Slaty-backed),Ochthoeca cinnamomeiventris cinnamomeiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sbctyr1 +16412,issf,slbcht1,Slaty-backed Chat-Tyrant (Blackish),Ochthoeca cinnamomeiventris nigrita,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sbctyr1 +16413,issf,slbcht3,Slaty-backed Chat-Tyrant (Maroon-belted),Ochthoeca cinnamomeiventris thoracica/angustifasciata,Passeriformes,Tyrannidae (Tyrant Flycatchers),,sbctyr1 +16416,species,rbctyr1,Rufous-breasted Chat-Tyrant,Ochthoeca rufipectoralis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16424,species,bbctyr1,Brown-backed Chat-Tyrant,Ochthoeca fumicolor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16425,issf,bnbcht1,Brown-backed Chat-Tyrant (Brown-backed),Ochthoeca fumicolor [fumicolor Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,bbctyr1 +16430,issf,bnbcht2,Brown-backed Chat-Tyrant (Rufous-browed),Ochthoeca fumicolor superciliosa,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bbctyr1 +16431,species,dorcht1,d'Orbigny's Chat-Tyrant,Ochthoeca oenanthoides,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16434,species,pictyr1,Piura Chat-Tyrant,Ochthoeca piurae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16435,species,wbctyr1,White-browed Chat-Tyrant,Ochthoeca leucophrys,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16442,spuh,chat-t1,chat-tyrant sp.,Ochthoeca sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16443,species,pattyr2,Patagonian Tyrant,Colorhamphus parvirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16444,species,lottyr1,Long-tailed Tyrant,Colonia colonus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16450,species,stftyr1,Short-tailed Field Tyrant,Muscigralla brevicauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16451,species,lahfla2,Large-headed Flatbill,Ramphotrigon megacephalum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16456,species,rutfla1,Rufous-tailed Flatbill,Ramphotrigon ruficauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16457,species,dutfla1,Dusky-tailed Flatbill,Ramphotrigon fuscicauda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16458,spuh,rampho1,Ramphotrigon sp.,Ramphotrigon sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16459,species,rutatt1,Rufous-tailed Attila,Attila phoenicurus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16460,species,cinatt1,Cinnamon Attila,Attila cinnamomeus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16461,species,ochatt1,Ochraceous Attila,Attila torridus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16462,species,cibatt1,Citron-bellied Attila,Attila citriniventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16463,species,ducatt1,Dull-capped Attila,Attila bolivianus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16466,species,gyhatt1,Gray-hooded Attila,Attila rufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16469,species,brratt1,Bright-rumped Attila,Attila spadiceus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16470,issf,brratt2,Bright-rumped Attila (Northern),Attila spadiceus [flammulatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,brratt1 +16481,issf,brratt3,Bright-rumped Attila (Southern),Attila spadiceus spadiceus/uropygiatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,brratt1 +16484,spuh,attila1,attila sp.,Attila sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16485,species,siryst3,Choco Sirystes,Sirystes albogriseus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16486,species,whrsir1,White-rumped Sirystes,Sirystes albocinereus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16487,species,todsir1,Todd's Sirystes,Sirystes subcanescens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16488,species,sibsir1,Sibilant Sirystes,Sirystes sibilator,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16491,spuh,siryst1,sirystes sp.,Sirystes sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16492,species,rufcas2,Rufous Casiornis,Casiornis rufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16493,species,astcas2,Ash-throated Casiornis,Casiornis fuscus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16494,species,rufmou1,Rufous Mourner,Rhytipterna holerythra,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16497,species,gramou1,Grayish Mourner,Rhytipterna simplex,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16500,species,pabmou1,Pale-bellied Mourner,Rhytipterna immunda,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16501,species,ruffly1,Rufous Flycatcher,Myiarchus semirufus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16502,species,yucfly1,Yucatan Flycatcher,Myiarchus yucatanensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16506,species,sadfly1,Sad Flycatcher,Myiarchus barbirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16507,species,ducfly,Dusky-capped Flycatcher,Myiarchus tuberculifer,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16508,issf,ducfly3,Dusky-capped Flycatcher (Arizona),Myiarchus tuberculifer olivascens,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ducfly +16509,issf,ducfly4,Dusky-capped Flycatcher (lawrenceii Group),Myiarchus tuberculifer [lawrenceii Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,ducfly +16518,issf,ducfly6,Dusky-capped Flycatcher (tuberculifer/pallidus),Myiarchus tuberculifer tuberculifer/pallidus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ducfly +16521,issf,ducfly5,Dusky-capped Flycatcher (nigriceps/atriceps),Myiarchus tuberculifer nigriceps/atriceps,Passeriformes,Tyrannidae (Tyrant Flycatchers),,ducfly +16524,species,swafly1,Swainson's Flycatcher,Myiarchus swainsoni,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16525,issf,swafly2,Swainson's Flycatcher (phaeonotus),Myiarchus swainsoni phaeonotus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,swafly1 +16526,issf,swafly4,Swainson's Flycatcher (swainsoni Group),Myiarchus swainsoni [swainsoni Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,swafly1 +16530,species,venfly1,Venezuelan Flycatcher,Myiarchus venezuelensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16531,species,panfly1,Panama Flycatcher,Myiarchus panamensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16534,slash,y00972,Venezuelan/Panama Flycatcher,Myiarchus venezuelensis/panamensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16535,species,shcfly1,Short-crested Flycatcher,Myiarchus ferox,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16539,species,apifly1,Apical Flycatcher,Myiarchus apicalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16540,species,socfly2,Sooty-crowned Flycatcher,Myiarchus phaeocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16541,issf,socfly6,Sooty-crowned Flycatcher (phaeocephalus),Myiarchus phaeocephalus phaeocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly2 +16542,issf,socfly7,Sooty-crowned Flycatcher (interior),Myiarchus phaeocephalus interior,Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly2 +16543,species,paefly1,Pale-edged Flycatcher,Myiarchus cephalotes,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16546,species,astfly,Ash-throated Flycatcher,Myiarchus cinerascens,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16549,species,nutfly,Nutting's Flycatcher,Myiarchus nuttingi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16550,issf,nutfly1,Nutting's Flycatcher (Nutting's),Myiarchus nuttingi nuttingi/inquietus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,nutfly +16553,issf,nutfly2,Nutting's Flycatcher (flavidior),Myiarchus nuttingi flavidior,Passeriformes,Tyrannidae (Tyrant Flycatchers),,nutfly +16554,slash,y01144,Ash-throated/Nutting's Flycatcher,Myiarchus cinerascens/nuttingi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16555,species,grcfly,Great Crested Flycatcher,Myiarchus crinitus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16556,species,bncfly,Brown-crested Flycatcher,Myiarchus tyrannulus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16557,issf,bncfly1,Brown-crested Flycatcher (Arizona),Myiarchus tyrannulus magister,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly +16558,issf,bncfly5,Brown-crested Flycatcher (Cooper's),Myiarchus tyrannulus [cooperi Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly +16562,issf,bncfly3,Brown-crested Flycatcher (Ometepe),Myiarchus tyrannulus brachyurus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly +16563,issf,bncfly4,Brown-crested Flycatcher (South American),Myiarchus tyrannulus tyrannulus/bahiae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bncfly +16566,species,galfly1,Galapagos Flycatcher,Myiarchus magnirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16567,species,grefly1,Grenada Flycatcher,Myiarchus nugator,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16568,species,rutfly1,Rufous-tailed Flycatcher,Myiarchus validus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16569,species,lasfly,La Sagra's Flycatcher,Myiarchus sagrae,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16572,species,stofly1,Stolid Flycatcher,Myiarchus stolidus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16575,species,purfly1,Puerto Rican Flycatcher,Myiarchus antillarum,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16576,species,leafly1,Lesser Antillean Flycatcher,Myiarchus oberi,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16581,spuh,myiarc,Myiarchus sp.,Myiarchus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16582,species,flafly1,Flammulated Flycatcher,Deltarhynchus flammulatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16583,species,cattyr,Cattle Tyrant,Machetornis rixosa,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16587,species,leskis1,Lesser Kiskadee,Pitangus lictor,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16590,species,grekis,Great Kiskadee,Pitangus sulphuratus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16601,species,bobfly1,Boat-billed Flycatcher,Megarynchus pitangua,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16602,issf,bobfly3,Boat-billed Flycatcher (Northern),Megarynchus pitangua [mexicanus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,bobfly1 +16607,issf,bobfly5,Boat-billed Flycatcher (South American),Megarynchus pitangua pitangua,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bobfly1 +16608,issf,bobfly4,Boat-billed Flycatcher (Tumbes),Megarynchus pitangua chrysogaster,Passeriformes,Tyrannidae (Tyrant Flycatchers),,bobfly1 +16609,species,rumfly1,Rusty-margined Flycatcher,Myiozetetes cayanensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16614,species,socfly1,Social Flycatcher,Myiozetetes similis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16615,issf,socfly3,Social Flycatcher (Vermilion-crowned),Myiozetetes similis [texensis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly1 +16619,issf,socfly4,Social Flycatcher (Social),Myiozetetes similis [similis Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly1 +16623,issf,socfly5,Social Flycatcher (Tumbes),Myiozetetes similis grandis,Passeriformes,Tyrannidae (Tyrant Flycatchers),,socfly1 +16624,slash,y00798,Rusty-margined/Social Flycatcher,Myiozetetes cayanensis/similis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16625,species,grcfly1,Gray-capped Flycatcher,Myiozetetes granadensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16629,species,ducfly2,Dusky-chested Flycatcher,Myiozetetes luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16632,slash,y00799,Gray-capped/Dusky-chested Flycatcher,Myiozetetes granadensis/luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16633,species,whbfly1,White-bearded Flycatcher,Phelpsia inornata,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16634,species,whrfly,White-ringed Flycatcher,Conopias albovittatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16637,species,yetfly2,Yellow-throated Flycatcher,Conopias parvus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16638,species,thsfly2,Three-striped Flycatcher,Conopias trivirgatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16641,slash,y00885,Yellow-throated/Three-striped Flycatcher,Conopias parvus/trivirgatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16642,species,lebfly2,Lemon-browed Flycatcher,Conopias cinchoneti,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16645,species,gobfly1,Golden-bellied Flycatcher,Myiodynastes hemichrysus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16646,species,gocfly1,Golden-crowned Flycatcher,Myiodynastes chrysocephalus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16650,species,baifly1,Baird's Flycatcher,Myiodynastes bairdii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16651,species,strfly1,Streaked Flycatcher,Myiodynastes maculatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16652,issf,strfly2,Streaked Flycatcher (Northern),Myiodynastes maculatus [maculatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,strfly1 +16659,issf,strfly3,Streaked Flycatcher (Southern),Myiodynastes maculatus solitarius,Passeriformes,Tyrannidae (Tyrant Flycatchers),,strfly1 +16660,species,subfly,Sulphur-bellied Flycatcher,Myiodynastes luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16661,slash,y00607,Streaked/Sulphur-bellied Flycatcher,Myiodynastes maculatus/luteiventris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16662,species,pirfly1,Piratic Flycatcher,Legatus leucophaius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16665,species,varfly,Variegated Flycatcher,Empidonomus varius,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16668,species,croslf1,Crowned Slaty Flycatcher,Empidonomus aurantioatrocristatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16671,species,sulfly1,Sulphury Flycatcher,Tyrannopsis sulphurea,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16672,species,sntkin1,Snowy-throated Kingbird,Tyrannus niveigularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16673,species,whtkin1,White-throated Kingbird,Tyrannus albogularis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16674,species,trokin,Tropical Kingbird,Tyrannus melancholicus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16678,slash,y00740,White-throated/Tropical Kingbird,Tyrannus albogularis/melancholicus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16679,species,coukin,Couch's Kingbird,Tyrannus couchii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16680,slash,y00325,Tropical/Couch's Kingbird,Tyrannus melancholicus/couchii,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16681,species,caskin,Cassin's Kingbird,Tyrannus vociferans,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16684,species,thbkin,Thick-billed Kingbird,Tyrannus crassirostris,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16687,species,weskin,Western Kingbird,Tyrannus verticalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16688,slash,y00619,Cassin's/Western Kingbird,Tyrannus vociferans/verticalis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16689,spuh,yebkin2,yellow-bellied kingbird sp.,Tyrannus sp. (yellow-bellied),Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16690,spuh,tyrann1,Tyrannus sp.,Tyrannus sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16691,species,easkin,Eastern Kingbird,Tyrannus tyrannus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16692,hybrid,x00718,Western x Eastern Kingbird (hybrid),Tyrannus verticalis x tyrannus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16693,species,grykin,Gray Kingbird,Tyrannus dominicensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16696,hybrid,x00859,Tropical x Gray Kingbird (hybrid),Tyrannus melancholicus x dominicensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16697,species,logkin,Loggerhead Kingbird,Tyrannus caudifasciatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16698,issf,logkin3,Loggerhead Kingbird (Loggerhead),Tyrannus caudifasciatus [caudifasciatus Group],Passeriformes,Tyrannidae (Tyrant Flycatchers),,logkin +16704,issf,logkin1,Loggerhead Kingbird (Puerto Rican),Tyrannus caudifasciatus taylori,Passeriformes,Tyrannidae (Tyrant Flycatchers),,logkin +16705,issf,logkin2,Loggerhead Kingbird (Hispaniolan),Tyrannus caudifasciatus gabbii,Passeriformes,Tyrannidae (Tyrant Flycatchers),,logkin +16706,species,giakin1,Giant Kingbird,Tyrannus cubensis,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16707,species,sctfly,Scissor-tailed Flycatcher,Tyrannus forficatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16708,hybrid,x00441,Couch's Kingbird x Scissor-tailed Flycatcher (hybrid),Tyrannus couchii x forficatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16709,hybrid,x00442,Western Kingbird x Scissor-tailed Flycatcher (hybrid),Tyrannus verticalis x forficatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16710,species,fotfly,Fork-tailed Flycatcher,Tyrannus savana,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16711,issf,fotfly1,Fork-tailed Flycatcher (savana),Tyrannus savana savana,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly +16712,issf,fotfly2,Fork-tailed Flycatcher (monachus),Tyrannus savana monachus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly +16713,issf,fotfly3,Fork-tailed Flycatcher (sanctaemartae),Tyrannus savana sanctaemartae,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly +16714,issf,fotfly4,Fork-tailed Flycatcher (circumdatus),Tyrannus savana circumdatus,Passeriformes,Tyrannidae (Tyrant Flycatchers),,fotfly +16715,spuh,flycat1,flycatcher sp. (Tyrannidae sp.),Tyrannidae sp.,Passeriformes,Tyrannidae (Tyrant Flycatchers),, +16716,species,alblyr1,Albert's Lyrebird,Menura alberti,Passeriformes,Menuridae (Lyrebirds),Lyrebirds, +16717,species,suplyr1,Superb Lyrebird,Menura novaehollandiae,Passeriformes,Menuridae (Lyrebirds),, +16721,species,rusbir1,Rufous Scrub-bird,Atrichornis rufescens,Passeriformes,Atrichornithidae (Scrub-birds),Scrub-birds and Bowerbirds, +16724,species,nosbir1,Noisy Scrub-bird,Atrichornis clamosus,Passeriformes,Atrichornithidae (Scrub-birds),, +16725,species,whecat1,White-eared Catbird,Ailuroedus buccoides,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16726,species,ocbcat1,Ochre-breasted Catbird,Ailuroedus stonii,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16729,species,taccat1,Tan-capped Catbird,Ailuroedus geislerorum,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16732,species,spocat2,Spotted Catbird,Ailuroedus maculosus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16733,species,huocat1,Huon Catbird,Ailuroedus astigmaticus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16734,species,bkccat1,Black-capped Catbird,Ailuroedus melanocephalus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16735,species,norcat1,Northern Catbird,Ailuroedus jobiensis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16736,species,arfcat1,Arfak Catbird,Ailuroedus arfakianus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16739,species,spocat1,Black-eared Catbird,Ailuroedus melanotis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16743,species,grecat1,Green Catbird,Ailuroedus crassirostris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16744,species,tobcat2,Tooth-billed Bowerbird,Scenopoeetes dentirostris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16745,species,arcbow1,Archbold's Bowerbird,Archboldia papuensis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16748,species,vogbow2,Vogelkop Bowerbird,Amblyornis inornata,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16749,species,macbow2,MacGregor's Bowerbird,Amblyornis macgregoriae,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16756,species,strbow1,Streaked Bowerbird,Amblyornis subalaris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16757,species,gofbow1,Golden-fronted Bowerbird,Amblyornis flavifrons,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16758,species,golbow1,Golden Bowerbird,Amblyornis newtoniana,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16759,species,flabow3,Masked Bowerbird,Sericulus aureus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16760,species,flabow2,Flame Bowerbird,Sericulus ardens,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16761,species,fimbow1,Fire-maned Bowerbird,Sericulus bakeri,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16762,species,regbow1,Regent Bowerbird,Sericulus chrysocephalus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16763,species,satbow1,Satin Bowerbird,Ptilonorhynchus violaceus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16766,hybrid,x00961,Regent x Satin Bowerbird (hybrid),Sericulus chrysocephalus x Ptilonorhynchus violaceus,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16767,species,wesbow1,Western Bowerbird,Chlamydera guttata,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16770,species,spobow1,Spotted Bowerbird,Chlamydera maculata,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16771,species,grebow1,Great Bowerbird,Chlamydera nuchalis,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16774,species,yebbow1,Yellow-breasted Bowerbird,Chlamydera lauterbachi,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16777,species,fabbow1,Fawn-breasted Bowerbird,Chlamydera cerviniventris,Passeriformes,Ptilonorhynchidae (Bowerbirds),, +16778,species,paptre1,Papuan Treecreeper,Cormobates placens,Passeriformes,Climacteridae (Australasian Treecreepers),Australian Treecreepers, +16783,species,whttre3,White-throated Treecreeper,Cormobates leucophaea,Passeriformes,Climacteridae (Australasian Treecreepers),, +16784,issf,whttre1,White-throated Treecreeper (Little),Cormobates leucophaea minor,Passeriformes,Climacteridae (Australasian Treecreepers),,whttre3 +16785,issf,whttre4,White-throated Treecreeper (White-throated),Cormobates leucophaea [leucophaea Group],Passeriformes,Climacteridae (Australasian Treecreepers),,whttre3 +16790,species,whbtre2,White-browed Treecreeper,Climacteris affinis,Passeriformes,Climacteridae (Australasian Treecreepers),, +16793,species,rebtre1,Red-browed Treecreeper,Climacteris erythrops,Passeriformes,Climacteridae (Australasian Treecreepers),, +16794,species,brotre2,Brown Treecreeper,Climacteris picumnus,Passeriformes,Climacteridae (Australasian Treecreepers),, +16798,species,bkttre1,Black-tailed Treecreeper,Climacteris melanurus,Passeriformes,Climacteridae (Australasian Treecreepers),, +16801,species,ruftre3,Rufous Treecreeper,Climacteris rufus,Passeriformes,Climacteridae (Australasian Treecreepers),, +16802,spuh,austre1,Australian treecreeper sp.,Climacteridae sp.,Passeriformes,Climacteridae (Australasian Treecreepers),, +16803,species,grygra1,Gray Grasswren,Amytornis barbatus,Passeriformes,Maluridae (Fairywrens),Fairywrens, +16806,species,strgra4,Pilbara Grasswren,Amytornis whitei,Passeriformes,Maluridae (Fairywrens),, +16807,species,sangra1,Sandhill Grasswren,Amytornis oweni,Passeriformes,Maluridae (Fairywrens),, +16808,species,rusgra1,Rusty Grasswren,Amytornis rowleyi,Passeriformes,Maluridae (Fairywrens),, +16809,species,strgra2,Striated Grasswren,Amytornis striatus,Passeriformes,Maluridae (Fairywrens),, +16810,species,whtgra1,White-throated Grasswren,Amytornis woodwardi,Passeriformes,Maluridae (Fairywrens),, +16811,species,cargra2,Carpentarian Grasswren,Amytornis dorotheae,Passeriformes,Maluridae (Fairywrens),, +16812,species,shtgra1,Short-tailed Grasswren,Amytornis merrotsyi,Passeriformes,Maluridae (Fairywrens),, +16813,species,thbgra1,Western Grasswren,Amytornis textilis,Passeriformes,Maluridae (Fairywrens),, +16814,issf,thbgra2,Western Grasswren (Western),Amytornis textilis textilis,Passeriformes,Maluridae (Fairywrens),,thbgra1 +16815,issf,thbgra3,Western Grasswren (Gawler Ranges),Amytornis textilis myall,Passeriformes,Maluridae (Fairywrens),,thbgra1 +16816,species,thbgra4,Thick-billed Grasswren,Amytornis modestus,Passeriformes,Maluridae (Fairywrens),, +16824,species,blagra1,Black Grasswren,Amytornis housei,Passeriformes,Maluridae (Fairywrens),, +16825,species,eyrgra1,Eyrean Grasswren,Amytornis goyderi,Passeriformes,Maluridae (Fairywrens),, +16826,species,dusgra1,Dusky Grasswren,Amytornis purnelli,Passeriformes,Maluridae (Fairywrens),, +16827,species,kalgra1,Kalkadoon Grasswren,Amytornis ballarae,Passeriformes,Maluridae (Fairywrens),, +16828,species,souemu1,Southern Emuwren,Stipiturus malachurus,Passeriformes,Maluridae (Fairywrens),, +16837,species,rucemu1,Rufous-crowned Emuwren,Stipiturus ruficeps,Passeriformes,Maluridae (Fairywrens),, +16838,species,malemu1,Mallee Emuwren,Stipiturus mallee,Passeriformes,Maluridae (Fairywrens),, +16839,species,walfai1,Wallace's Fairywren,Sipodotus wallacii,Passeriformes,Maluridae (Fairywrens),, +16840,species,orcfai1,Orange-crowned Fairywren,Clytomyias insignis,Passeriformes,Maluridae (Fairywrens),, +16843,species,brbfai1,Broad-billed Fairywren,Chenorhamphus grayi,Passeriformes,Maluridae (Fairywrens),, +16844,species,brbfai2,Campbell's Fairywren,Chenorhamphus campbelli,Passeriformes,Maluridae (Fairywrens),, +16845,species,empfai1,Emperor Fairywren,Malurus cyanocephalus,Passeriformes,Maluridae (Fairywrens),, +16849,species,pucfai2,Purple-crowned Fairywren,Malurus coronatus,Passeriformes,Maluridae (Fairywrens),, +16852,species,rewfai1,Red-winged Fairywren,Malurus elegans,Passeriformes,Maluridae (Fairywrens),, +16853,species,blbfai1,Blue-breasted Fairywren,Malurus pulcherrimus,Passeriformes,Maluridae (Fairywrens),, +16854,species,varfai1,Purple-backed Fairywren,Malurus assimilis,Passeriformes,Maluridae (Fairywrens),, +16855,issf,varfai2,Purple-backed Fairywren (Lavender-flanked),Malurus assimilis dulcis/rogersi,Passeriformes,Maluridae (Fairywrens),,varfai1 +16858,issf,varfai3,Purple-backed Fairywren (Purple-backed),Malurus assimilis assimilis/bernieri,Passeriformes,Maluridae (Fairywrens),,varfai1 +16861,species,varfai5,Variegated Fairywren,Malurus lamberti,Passeriformes,Maluridae (Fairywrens),, +16862,slash,y01109,Purple-backed/Variegated Fairywren,Malurus assimilis/lamberti,Passeriformes,Maluridae (Fairywrens),, +16863,species,lovfai1,Lovely Fairywren,Malurus amabilis,Passeriformes,Maluridae (Fairywrens),, +16864,species,splfai1,Splendid Fairywren,Malurus splendens,Passeriformes,Maluridae (Fairywrens),, +16869,species,supfai1,Superb Fairywren,Malurus cyaneus,Passeriformes,Maluridae (Fairywrens),, +16876,species,whwfai1,White-winged Fairywren,Malurus leucopterus,Passeriformes,Maluridae (Fairywrens),, +16877,issf,whwfai2,White-winged Fairywren (Blue-and-white),Malurus leucopterus leuconotus,Passeriformes,Maluridae (Fairywrens),,whwfai1 +16878,issf,whwfai3,White-winged Fairywren (Black-and-white),Malurus leucopterus leucopterus/edouardi,Passeriformes,Maluridae (Fairywrens),,whwfai1 +16881,species,rebfai1,Red-backed Fairywren,Malurus melanocephalus,Passeriformes,Maluridae (Fairywrens),, +16884,species,whsfai1,White-shouldered Fairywren,Malurus alboscapulatus,Passeriformes,Maluridae (Fairywrens),, +16891,spuh,fairyw1,fairywren sp.,Malurus sp.,Passeriformes,Maluridae (Fairywrens),, +16892,species,daehon1,Dark-eared Myza,Myza celebensis,Passeriformes,Meliphagidae (Honeyeaters),Honeyeaters, +16895,species,grshon1,White-eared Myza,Myza sarasinorum,Passeriformes,Meliphagidae (Honeyeaters),, +16899,slash,y00887,Dark-eared/White-eared Myza,Myza celebensis/sarasinorum,Passeriformes,Meliphagidae (Honeyeaters),, +16900,species,easspi1,Eastern Spinebill,Acanthorhynchus tenuirostris,Passeriformes,Meliphagidae (Honeyeaters),, +16905,species,wesspi1,Western Spinebill,Acanthorhynchus superciliosus,Passeriformes,Meliphagidae (Honeyeaters),, +16906,species,piehon1,Pied Honeyeater,Certhionyx variegatus,Passeriformes,Meliphagidae (Honeyeaters),, +16907,species,plahon1,Plain Honeyeater,Pycnopygius ixoides,Passeriformes,Meliphagidae (Honeyeaters),, +16914,species,marhon1,Marbled Honeyeater,Pycnopygius cinereus,Passeriformes,Meliphagidae (Honeyeaters),, +16918,species,sthhon1,Streak-headed Honeyeater,Pycnopygius stictocephalus,Passeriformes,Meliphagidae (Honeyeaters),, +16919,species,tui1,Tui,Prosthemadera novaeseelandiae,Passeriformes,Meliphagidae (Honeyeaters),, +16923,species,nezbel1,New Zealand Bellbird,Anthornis melanura,Passeriformes,Meliphagidae (Honeyeaters),, +16927,species,chibel1,Chatham Island Bellbird,Anthornis melanocephala,Passeriformes,Meliphagidae (Honeyeaters),, +16928,species,orchon1,Orange-cheeked Honeyeater,Oreornis chrysogenys,Passeriformes,Meliphagidae (Honeyeaters),, +16929,species,pubhon1,Puff-backed Honeyeater,Meliphaga aruensis,Passeriformes,Meliphagidae (Honeyeaters),, +16932,species,yeshon1,Yellow-spotted Honeyeater,Meliphaga notata,Passeriformes,Meliphagidae (Honeyeaters),, +16935,species,lewhon1,Lewin's Honeyeater,Meliphaga lewinii,Passeriformes,Meliphagidae (Honeyeaters),, +16939,species,scrhon1,Scrub Honeyeater,Meliphaga albonotata,Passeriformes,Meliphagidae (Honeyeaters),, +16942,species,moumel1,Mountain Meliphaga,Meliphaga orientalis,Passeriformes,Meliphagidae (Honeyeaters),, +16946,species,mimhon1,Mimic Honeyeater,Meliphaga analoga,Passeriformes,Meliphagidae (Honeyeaters),, +16952,species,forhon1,Forest Honeyeater,Meliphaga montana,Passeriformes,Meliphagidae (Honeyeaters),, +16959,species,spbmel1,Spot-breasted Meliphaga,Meliphaga mimikae,Passeriformes,Meliphagidae (Honeyeaters),, +16964,species,yeghon1,Yellow-gaped Honeyeater,Meliphaga flavirictus,Passeriformes,Meliphagidae (Honeyeaters),, +16967,species,whlhon1,White-lined Honeyeater,Meliphaga albilineata,Passeriformes,Meliphagidae (Honeyeaters),, +16968,species,kimhon1,Kimberley Honeyeater,Meliphaga fordiana,Passeriformes,Meliphagidae (Honeyeaters),, +16969,species,stbhon3,Streak-breasted Honeyeater,Meliphaga reticulata,Passeriformes,Meliphagidae (Honeyeaters),, +16970,species,taghon1,Tagula Honeyeater,Meliphaga vicina,Passeriformes,Meliphagidae (Honeyeaters),, +16971,species,grahon2,Graceful Honeyeater,Meliphaga gracilis,Passeriformes,Meliphagidae (Honeyeaters),, +16972,issf,grahon4,Graceful Honeyeater (gracilis),Meliphaga gracilis gracilis,Passeriformes,Meliphagidae (Honeyeaters),,grahon2 +16973,issf,grahon5,Graceful Honeyeater (imitatrix),Meliphaga gracilis imitatrix,Passeriformes,Meliphagidae (Honeyeaters),,grahon2 +16974,species,grahon3,Elegant Honeyeater,Meliphaga cinereifrons,Passeriformes,Meliphagidae (Honeyeaters),, +16977,slash,grahon1,Graceful/Elegant Honeyeater,Meliphaga gracilis/cinereifrons,Passeriformes,Meliphagidae (Honeyeaters),, +16978,spuh,meliph1,Meliphaga sp.,Meliphaga sp.,Passeriformes,Meliphagidae (Honeyeaters),, +16979,species,yelhon1,Yellow Honeyeater,Stomiopera flava,Passeriformes,Meliphagidae (Honeyeaters),, +16982,species,whghon1,White-gaped Honeyeater,Stomiopera unicolor,Passeriformes,Meliphagidae (Honeyeaters),, +16983,species,whfhon1,White-fronted Honeyeater,Purnella albifrons,Passeriformes,Meliphagidae (Honeyeaters),, +16984,species,yefhon1,Yellow-faced Honeyeater,Caligavis chrysops,Passeriformes,Meliphagidae (Honeyeaters),, +16988,species,blthon1,Black-throated Honeyeater,Caligavis subfrenata,Passeriformes,Meliphagidae (Honeyeaters),, +16993,species,obshon1,Obscure Honeyeater,Caligavis obscura,Passeriformes,Meliphagidae (Honeyeaters),, +16996,species,yethon3,Yellow-tufted Honeyeater,Lichenostomus melanops,Passeriformes,Meliphagidae (Honeyeaters),, +16997,issf,yethon4,Yellow-tufted Honeyeater (Yellow-tufted),Lichenostomus melanops melanops/meltoni,Passeriformes,Meliphagidae (Honeyeaters),,yethon3 +17000,issf,yethon5,Yellow-tufted Honeyeater (Helmeted),Lichenostomus melanops cassidix,Passeriformes,Meliphagidae (Honeyeaters),,yethon3 +17001,species,pughon1,Purple-gaped Honeyeater,Lichenostomus cratitius,Passeriformes,Meliphagidae (Honeyeaters),, +17004,species,belmin1,Bell Miner,Manorina melanophrys,Passeriformes,Meliphagidae (Honeyeaters),, +17005,species,noimin1,Noisy Miner,Manorina melanocephala,Passeriformes,Meliphagidae (Honeyeaters),, +17010,species,yetmin1,Yellow-throated Miner,Manorina flavigula,Passeriformes,Meliphagidae (Honeyeaters),, +17016,species,blemin1,Black-eared Miner,Manorina melanotis,Passeriformes,Meliphagidae (Honeyeaters),, +17017,hybrid,x00741,Yellow-throated x Black-eared Miner (hybrid),Manorina flavigula x melanotis,Passeriformes,Meliphagidae (Honeyeaters),, +17018,spuh,miner2,miner sp. (Manorina sp.),Manorina sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17019,species,soomel1,Sooty Melidectes,Melidectes fuscus,Passeriformes,Meliphagidae (Honeyeaters),, +17022,species,shbmel1,Short-bearded Melidectes,Melidectes nouhuysi,Passeriformes,Meliphagidae (Honeyeaters),, +17023,species,lobmel1,Long-bearded Melidectes,Melidectes princeps,Passeriformes,Meliphagidae (Honeyeaters),, +17024,species,ornmel1,Ornate Melidectes,Melidectes torquatus,Passeriformes,Meliphagidae (Honeyeaters),, +17031,species,cibmel1,Cinnamon-browed Melidectes,Melidectes ochromelas,Passeriformes,Meliphagidae (Honeyeaters),, +17035,species,vogmel1,Vogelkop Melidectes,Melidectes leucostephes,Passeriformes,Meliphagidae (Honeyeaters),, +17036,species,huomel1,Huon Melidectes,Melidectes foersteri,Passeriformes,Meliphagidae (Honeyeaters),, +17037,species,belmel1,Belford's Melidectes,Melidectes belfordi,Passeriformes,Meliphagidae (Honeyeaters),, +17043,species,yebmel1,Yellow-browed Melidectes,Melidectes rufocrissalis,Passeriformes,Meliphagidae (Honeyeaters),, +17046,hybrid,x00742,Belford's x Yellow-browed Melidectes (hybrid),Melidectes belfordi x rufocrissalis,Passeriformes,Meliphagidae (Honeyeaters),, +17047,slash,y01063,Belford's/Yellow-browed Melidectes,Melidectes belfordi/rufocrissalis,Passeriformes,Meliphagidae (Honeyeaters),, +17048,spuh,melide1,melidectes sp.,Melidectes sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17049,species,brihon1,Bridled Honeyeater,Bolemoreus frenatus,Passeriformes,Meliphagidae (Honeyeaters),, +17050,species,eunhon1,Eungella Honeyeater,Bolemoreus hindwoodi,Passeriformes,Meliphagidae (Honeyeaters),, +17051,species,spchon1,Spiny-cheeked Honeyeater,Acanthagenys rufogularis,Passeriformes,Meliphagidae (Honeyeaters),, +17052,species,bruwat1,Little Wattlebird,Anthochaera chrysoptera,Passeriformes,Meliphagidae (Honeyeaters),, +17056,species,litwat1,Western Wattlebird,Anthochaera lunulata,Passeriformes,Meliphagidae (Honeyeaters),, +17057,species,reghon1,Regent Honeyeater,Anthochaera phrygia,Passeriformes,Meliphagidae (Honeyeaters),, +17058,species,redwat1,Red Wattlebird,Anthochaera carunculata,Passeriformes,Meliphagidae (Honeyeaters),, +17062,species,yelwat1,Yellow Wattlebird,Anthochaera paradoxa,Passeriformes,Meliphagidae (Honeyeaters),, +17065,spuh,wattle1,wattlebird sp.,Anthochaera sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17066,species,varhon1,Varied Honeyeater,Gavicalis versicolor,Passeriformes,Meliphagidae (Honeyeaters),, +17071,species,manhon1,Mangrove Honeyeater,Gavicalis fasciogularis,Passeriformes,Meliphagidae (Honeyeaters),, +17072,species,sinhon1,Singing Honeyeater,Gavicalis virescens,Passeriformes,Meliphagidae (Honeyeaters),, +17077,spuh,gavica1,Gavicalis sp.,Gavicalis sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17078,species,yephon1,Yellow-plumed Honeyeater,Ptilotula ornata,Passeriformes,Meliphagidae (Honeyeaters),, +17079,species,whphon1,White-plumed Honeyeater,Ptilotula penicillata,Passeriformes,Meliphagidae (Honeyeaters),, +17084,species,yethon2,Yellow-tinted Honeyeater,Ptilotula flavescens,Passeriformes,Meliphagidae (Honeyeaters),, +17087,species,fushon1,Fuscous Honeyeater,Ptilotula fusca,Passeriformes,Meliphagidae (Honeyeaters),, +17090,species,gyhhon1,Gray-headed Honeyeater,Ptilotula keartlandi,Passeriformes,Meliphagidae (Honeyeaters),, +17091,species,gyfhon1,Gray-fronted Honeyeater,Ptilotula plumula,Passeriformes,Meliphagidae (Honeyeaters),, +17095,species,bouhon1,Bougainville Honeyeater,Stresemannia bougainvillei,Passeriformes,Meliphagidae (Honeyeaters),, +17096,species,brbhon1,Brown-backed Honeyeater,Ramsayornis modestus,Passeriformes,Meliphagidae (Honeyeaters),, +17097,species,babhon1,Bar-breasted Honeyeater,Ramsayornis fasciatus,Passeriformes,Meliphagidae (Honeyeaters),, +17098,species,rubhon2,Rufous-banded Honeyeater,Conopophila albogularis,Passeriformes,Meliphagidae (Honeyeaters),, +17101,species,ruthon1,Rufous-throated Honeyeater,Conopophila rufogularis,Passeriformes,Meliphagidae (Honeyeaters),, +17102,species,gryhon1,Gray Honeyeater,Conopophila whitei,Passeriformes,Meliphagidae (Honeyeaters),, +17103,species,descha1,Gibber Chat,Ashbyia lovensis,Passeriformes,Meliphagidae (Honeyeaters),, +17104,species,yelcha1,Yellow Chat,Epthianura crocea,Passeriformes,Meliphagidae (Honeyeaters),, +17108,species,cricha1,Crimson Chat,Epthianura tricolor,Passeriformes,Meliphagidae (Honeyeaters),, +17109,species,oracha1,Orange Chat,Epthianura aurifrons,Passeriformes,Meliphagidae (Honeyeaters),, +17110,species,whfcha1,White-fronted Chat,Epthianura albifrons,Passeriformes,Meliphagidae (Honeyeaters),, +17111,species,arfhon1,Arfak Honeyeater,Melipotes gymnops,Passeriformes,Meliphagidae (Honeyeaters),, +17112,species,smohon1,Smoky Honeyeater,Melipotes fumigatus,Passeriformes,Meliphagidae (Honeyeaters),, +17116,species,washon1,Foja Honeyeater,Melipotes carolae,Passeriformes,Meliphagidae (Honeyeaters),, +17117,species,spahon1,Spangled Honeyeater,Melipotes ater,Passeriformes,Meliphagidae (Honeyeaters),, +17118,spuh,melipo1,Melipotes sp.,Melipotes sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17119,species,machon3,Macgregor's Honeyeater,Macgregoria pulchra,Passeriformes,Meliphagidae (Honeyeaters),, +17122,species,lobhon2,Long-billed Honeyeater,Melilestes megarhynchus,Passeriformes,Meliphagidae (Honeyeaters),, +17127,species,olistr1,Olive Straightbill,Timeliopsis fulvigula,Passeriformes,Meliphagidae (Honeyeaters),, +17132,species,tawstr1,Tawny Straightbill,Timeliopsis griseigula,Passeriformes,Meliphagidae (Honeyeaters),, +17135,species,blahon1,Black Honeyeater,Sugomel nigrum,Passeriformes,Meliphagidae (Honeyeaters),, +17136,species,bismel1,Bismarck Honeyeater,Vosea whitemanensis,Passeriformes,Meliphagidae (Honeyeaters),, +17137,species,sermyz1,Seram Myzomela,Myzomela blasii,Passeriformes,Meliphagidae (Honeyeaters),, +17138,species,whcmyz1,White-chinned Myzomela,Myzomela albigula,Passeriformes,Meliphagidae (Honeyeaters),, +17141,species,retmyz1,Ruby-throated Myzomela,Myzomela eques,Passeriformes,Meliphagidae (Honeyeaters),, +17146,species,ashmyz1,Ashy Myzomela,Myzomela cineracea,Passeriformes,Meliphagidae (Honeyeaters),, +17147,species,dusmyz1,Dusky Myzomela,Myzomela obscura,Passeriformes,Meliphagidae (Honeyeaters),, +17148,issf,dusmyz2,Dusky Myzomela (Red-brown),Myzomela obscura rubrobrunnea,Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 +17149,issf,dusmyz3,Dusky Myzomela (Obi),Myzomela obscura rubrotincta,Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 +17150,issf,dusmyz4,Dusky Myzomela (Moluccan),Myzomela obscura simplex/mortyana,Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 +17153,issf,dusmyz5,Dusky Myzomela (Dusky),Myzomela obscura [obscura Group],Passeriformes,Meliphagidae (Honeyeaters),,dusmyz1 +17158,species,redmyz1,Red Myzomela,Myzomela cruentata,Passeriformes,Meliphagidae (Honeyeaters),, +17159,issf,redmyz2,Red Myzomela (Red),Myzomela cruentata cruentata/coccinea,Passeriformes,Meliphagidae (Honeyeaters),,redmyz1 +17162,issf,redmyz3,Red Myzomela (Reddish),Myzomela cruentata [erythrina Group],Passeriformes,Meliphagidae (Honeyeaters),,redmyz1 +17167,species,blamyz1,Papuan Black Myzomela,Myzomela nigrita,Passeriformes,Meliphagidae (Honeyeaters),, +17174,species,neimyz1,New Ireland Myzomela,Myzomela pulchella,Passeriformes,Meliphagidae (Honeyeaters),, +17175,species,crhmyz1,Crimson-hooded Myzomela,Myzomela kuehni,Passeriformes,Meliphagidae (Honeyeaters),, +17176,form,alomyz1,Alor Myzomela (undescribed form),Myzomela [undescribed Alor form],Passeriformes,Meliphagidae (Honeyeaters),, +17177,species,rehmyz1,Red-headed Myzomela,Myzomela erythrocephala,Passeriformes,Meliphagidae (Honeyeaters),, +17180,species,summyz1,Sumba Myzomela,Myzomela dammermani,Passeriformes,Meliphagidae (Honeyeaters),, +17181,species,rotmyz2,Rote Myzomela,Myzomela irianawidodoae,Passeriformes,Meliphagidae (Honeyeaters),, +17182,species,moumyz1,Elfin Myzomela,Myzomela adolphinae,Passeriformes,Meliphagidae (Honeyeaters),, +17183,species,sulmyz1,Sulawesi Myzomela,Myzomela chloroptera,Passeriformes,Meliphagidae (Honeyeaters),, +17184,issf,sulmyz2,Sulawesi Myzomela (Sulawesi),Myzomela chloroptera [chloroptera Group],Passeriformes,Meliphagidae (Honeyeaters),,sulmyz1 +17189,issf,sulmyz3,Sulawesi Myzomela (Bacan),Myzomela chloroptera batjanensis,Passeriformes,Meliphagidae (Honeyeaters),,sulmyz1 +17190,form,talmyz1,Taliabu Myzomela (undescribed form),Myzomela [undescribed Taliabu form],Passeriformes,Meliphagidae (Honeyeaters),, +17191,species,wakmyz1,Wakolo Myzomela,Myzomela wakoloensis,Passeriformes,Meliphagidae (Honeyeaters),, +17192,issf,wakmyz2,Wakolo Myzomela (Seram),Myzomela wakoloensis elisabethae,Passeriformes,Meliphagidae (Honeyeaters),,wakmyz1 +17193,issf,wakmyz3,Wakolo Myzomela (Buru),Myzomela wakoloensis wakoloensis,Passeriformes,Meliphagidae (Honeyeaters),,wakmyz1 +17194,species,banmyz1,Banda Myzomela,Myzomela boiei,Passeriformes,Meliphagidae (Honeyeaters),, +17197,species,necmyz1,New Caledonian Myzomela,Myzomela caledonica,Passeriformes,Meliphagidae (Honeyeaters),, +17198,species,scamyz1,Scarlet Myzomela,Myzomela sanguinolenta,Passeriformes,Meliphagidae (Honeyeaters),, +17199,species,micmyz1,Micronesian Myzomela,Myzomela rubratra,Passeriformes,Meliphagidae (Honeyeaters),, +17207,species,carmyz1,Cardinal Myzomela,Myzomela cardinalis,Passeriformes,Meliphagidae (Honeyeaters),, +17208,issf,carmyz2,Cardinal Myzomela (Loyalty),Myzomela cardinalis lifuensis,Passeriformes,Meliphagidae (Honeyeaters),,carmyz1 +17209,issf,carmyz3,Cardinal Myzomela (Cardinal),Myzomela cardinalis [cardinalis Group],Passeriformes,Meliphagidae (Honeyeaters),,carmyz1 +17216,species,carmyz4,Samoan Myzomela,Myzomela nigriventris,Passeriformes,Meliphagidae (Honeyeaters),, +17217,species,rotmyz1,Rotuma Myzomela,Myzomela chermesina,Passeriformes,Meliphagidae (Honeyeaters),, +17218,species,scbmyz1,Sclater's Myzomela,Myzomela sclateri,Passeriformes,Meliphagidae (Honeyeaters),, +17219,species,ebomyz1,Bismarck Black Myzomela,Myzomela pammelaena,Passeriformes,Meliphagidae (Honeyeaters),, +17225,species,scnmyz1,Scarlet-naped Myzomela,Myzomela lafargei,Passeriformes,Meliphagidae (Honeyeaters),, +17226,species,yevmyz1,Yellow-vented Myzomela,Myzomela eichhorni,Passeriformes,Meliphagidae (Honeyeaters),, +17230,species,rebmyz1,Red-bellied Myzomela,Myzomela malaitae,Passeriformes,Meliphagidae (Honeyeaters),, +17231,species,blhmyz1,Black-headed Myzomela,Myzomela melanocephala,Passeriformes,Meliphagidae (Honeyeaters),, +17232,species,soomyz1,Sooty Myzomela,Myzomela tristrami,Passeriformes,Meliphagidae (Honeyeaters),, +17233,species,orbmyz1,Orange-breasted Myzomela,Myzomela jugularis,Passeriformes,Meliphagidae (Honeyeaters),, +17234,species,blbmyz1,Black-bellied Myzomela,Myzomela erythromelas,Passeriformes,Meliphagidae (Honeyeaters),, +17235,species,bkbmyz1,Black-breasted Myzomela,Myzomela vulnerata,Passeriformes,Meliphagidae (Honeyeaters),, +17236,species,recmyz1,Red-collared Myzomela,Myzomela rosenbergii,Passeriformes,Meliphagidae (Honeyeaters),, +17237,issf,recmyz2,Red-collared Myzomela (Red-collared),Myzomela rosenbergii rosenbergii/wahgiensis,Passeriformes,Meliphagidae (Honeyeaters),,recmyz1 +17240,issf,recmyz3,Red-collared Myzomela (Long-billed),Myzomela rosenbergii longirostris,Passeriformes,Meliphagidae (Honeyeaters),,recmyz1 +17241,spuh,myzome1,myzomela sp.,Myzomela sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17242,species,barhon2,Barred Honeyeater,Gliciphila undulata,Passeriformes,Meliphagidae (Honeyeaters),, +17243,species,tachon1,Tawny-crowned Honeyeater,Gliciphila melanops,Passeriformes,Meliphagidae (Honeyeaters),, +17246,species,nehhon1,Vanuatu Honeyeater,Gliciphila notabilis,Passeriformes,Meliphagidae (Honeyeaters),, +17249,species,grbhon1,Green-backed Honeyeater,Glycichaera fallax,Passeriformes,Meliphagidae (Honeyeaters),, +17254,species,leahon1,Leaden Honeyeater,Ptiloprora plumbea,Passeriformes,Meliphagidae (Honeyeaters),, +17257,species,olshon1,Yellow-streaked Honeyeater,Ptiloprora meekiana,Passeriformes,Meliphagidae (Honeyeaters),, +17260,species,rushon1,Rufous-sided Honeyeater,Ptiloprora erythropleura,Passeriformes,Meliphagidae (Honeyeaters),, +17263,species,mayhon1,Mayr's Honeyeater,Ptiloprora mayri,Passeriformes,Meliphagidae (Honeyeaters),, +17266,species,rubhon1,Rufous-backed Honeyeater,Ptiloprora guisei,Passeriformes,Meliphagidae (Honeyeaters),, +17267,species,blbhon1,Gray-streaked Honeyeater,Ptiloprora perstriata,Passeriformes,Meliphagidae (Honeyeaters),, +17271,species,banhon1,Banded Honeyeater,Cissomela pectoralis,Passeriformes,Meliphagidae (Honeyeaters),, +17272,species,sunhon1,Sunda Honeyeater,Lichmera lombokia,Passeriformes,Meliphagidae (Honeyeaters),, +17273,species,olihon1,Olive Honeyeater,Lichmera argentauris,Passeriformes,Meliphagidae (Honeyeaters),, +17274,species,brohon1,Brown Honeyeater,Lichmera indistincta,Passeriformes,Meliphagidae (Honeyeaters),, +17279,species,indhon1,Indonesian Honeyeater,Lichmera limbata,Passeriformes,Meliphagidae (Honeyeaters),, +17280,species,dabhon1,Dark-brown Honeyeater,Lichmera incana,Passeriformes,Meliphagidae (Honeyeaters),, +17286,species,whthon2,White-tufted Honeyeater,Lichmera squamata,Passeriformes,Meliphagidae (Honeyeaters),, +17287,species,siehon1,Silver-eared Honeyeater,Lichmera alboauricularis,Passeriformes,Meliphagidae (Honeyeaters),, +17290,species,burhon1,Buru Honeyeater,Lichmera deningeri,Passeriformes,Meliphagidae (Honeyeaters),, +17291,species,serhon1,Seram Honeyeater,Lichmera monticola,Passeriformes,Meliphagidae (Honeyeaters),, +17292,species,yeehon1,Yellow-eared Honeyeater,Lichmera flavicans,Passeriformes,Meliphagidae (Honeyeaters),, +17293,species,blchon1,Black-chested Honeyeater,Lichmera notabilis,Passeriformes,Meliphagidae (Honeyeaters),, +17294,species,crehon2,Crescent Honeyeater,Phylidonyris pyrrhopterus,Passeriformes,Meliphagidae (Honeyeaters),, +17297,species,nehhon2,New Holland Honeyeater,Phylidonyris novaehollandiae,Passeriformes,Meliphagidae (Honeyeaters),, +17303,species,whchon2,White-cheeked Honeyeater,Phylidonyris niger,Passeriformes,Meliphagidae (Honeyeaters),, +17306,hybrid,x00923,New Holland x White-cheeked Honeyeater (hybrid),Phylidonyris novaehollandiae x niger,Passeriformes,Meliphagidae (Honeyeaters),, +17307,species,whshon1,White-streaked Honeyeater,Trichodere cockerelli,Passeriformes,Meliphagidae (Honeyeaters),, +17308,species,whehon1,White-eared Honeyeater,Nesoptilotis leucotis,Passeriformes,Meliphagidae (Honeyeaters),, +17311,species,yethon1,Yellow-throated Honeyeater,Nesoptilotis flavicollis,Passeriformes,Meliphagidae (Honeyeaters),, +17312,species,blfhon1,Blue-faced Honeyeater,Entomyzon cyanotis,Passeriformes,Meliphagidae (Honeyeaters),, +17313,issf,bufhon1,Blue-faced Honeyeater (White-quilled),Entomyzon cyanotis albipennis,Passeriformes,Meliphagidae (Honeyeaters),,blfhon1 +17314,issf,bufhon2,Blue-faced Honeyeater (Blue-faced),Entomyzon cyanotis [cyanotis Group],Passeriformes,Meliphagidae (Honeyeaters),,blfhon1 +17318,species,whthon1,White-throated Honeyeater,Melithreptus albogularis,Passeriformes,Meliphagidae (Honeyeaters),, +17321,species,whnhon3,Gilbert's Honeyeater,Melithreptus chloropsis,Passeriformes,Meliphagidae (Honeyeaters),, +17322,species,whnhon2,White-naped Honeyeater,Melithreptus lunatus,Passeriformes,Meliphagidae (Honeyeaters),, +17323,species,blhhon1,Black-headed Honeyeater,Melithreptus affinis,Passeriformes,Meliphagidae (Honeyeaters),, +17324,species,brhhon1,Brown-headed Honeyeater,Melithreptus brevirostris,Passeriformes,Meliphagidae (Honeyeaters),, +17330,species,blchon2,Black-chinned Honeyeater,Melithreptus gularis,Passeriformes,Meliphagidae (Honeyeaters),, +17331,issf,bkchon1,Black-chinned Honeyeater (Golden-backed),Melithreptus gularis laetior,Passeriformes,Meliphagidae (Honeyeaters),,blchon2 +17332,issf,bkchon2,Black-chinned Honeyeater (Black-chinned),Melithreptus gularis gularis,Passeriformes,Meliphagidae (Honeyeaters),,blchon2 +17333,species,stbhon2,Strong-billed Honeyeater,Melithreptus validirostris,Passeriformes,Meliphagidae (Honeyeaters),, +17334,spuh,melith1,Melithreptus sp.,Melithreptus sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17335,species,sacmel1,Makira Honeyeater,Meliarchus sclateri,Passeriformes,Meliphagidae (Honeyeaters),, +17336,species,guahon1,Guadalcanal Honeyeater,Guadalcanaria inexpectata,Passeriformes,Meliphagidae (Honeyeaters),, +17337,species,kanhon1,Kadavu Honeyeater,Meliphacator provocator,Passeriformes,Meliphagidae (Honeyeaters),, +17338,species,chagih1,Chattering Giant-Honeyeater,Gymnomyza viridis,Passeriformes,Meliphagidae (Honeyeaters),, +17339,species,duegih1,Duetting Giant-Honeyeater,Gymnomyza brunneirostris,Passeriformes,Meliphagidae (Honeyeaters),, +17340,species,mao1,Mao,Gymnomyza samoensis,Passeriformes,Meliphagidae (Honeyeaters),, +17341,species,crohon1,Crow Honeyeater,Gymnomyza aubryana,Passeriformes,Meliphagidae (Honeyeaters),, +17342,species,weswah1,Western Wattled-Honeyeater,Foulehaio procerior,Passeriformes,Meliphagidae (Honeyeaters),, +17343,species,easwah1,Eastern Wattled-Honeyeater,Foulehaio carunculatus,Passeriformes,Meliphagidae (Honeyeaters),, +17344,species,norwah1,Northern Wattled-Honeyeater,Foulehaio taviunensis,Passeriformes,Meliphagidae (Honeyeaters),, +17345,species,tabhon1,Tawny-breasted Honeyeater,Xanthotis flaviventer,Passeriformes,Meliphagidae (Honeyeaters),, +17359,species,spohon3,Spotted Honeyeater,Xanthotis polygrammus,Passeriformes,Meliphagidae (Honeyeaters),, +17366,species,machon2,Macleay's Honeyeater,Xanthotis macleayanus,Passeriformes,Meliphagidae (Honeyeaters),, +17367,species,strhon1,Striped Honeyeater,Plectorhyncha lanceolata,Passeriformes,Meliphagidae (Honeyeaters),, +17368,species,paihon1,Painted Honeyeater,Grantiella picta,Passeriformes,Meliphagidae (Honeyeaters),, +17369,species,whsfri1,White-streaked Friarbird,Melitograis gilolensis,Passeriformes,Meliphagidae (Honeyeaters),, +17370,species,litfri1,Little Friarbird,Philemon citreogularis,Passeriformes,Meliphagidae (Honeyeaters),, +17374,species,meyfri1,Meyer's Friarbird,Philemon meyeri,Passeriformes,Meliphagidae (Honeyeaters),, +17375,species,timfri1,Timor Friarbird,Philemon inornatus,Passeriformes,Meliphagidae (Honeyeaters),, +17376,species,gryfri1,Gray Friarbird,Philemon kisserensis,Passeriformes,Meliphagidae (Honeyeaters),, +17377,species,brafri1,Brass's Friarbird,Philemon brassi,Passeriformes,Meliphagidae (Honeyeaters),, +17378,species,dusfri1,Dusky Friarbird,Philemon fuscicapillus,Passeriformes,Meliphagidae (Honeyeaters),, +17379,species,bkffri1,Buru Friarbird,Philemon moluccensis,Passeriformes,Meliphagidae (Honeyeaters),, +17380,species,bkffri2,Tanimbar Friarbird,Philemon plumigenis,Passeriformes,Meliphagidae (Honeyeaters),, +17381,species,serfri1,Seram Friarbird,Philemon subcorniculatus,Passeriformes,Meliphagidae (Honeyeaters),, +17382,species,neifri1,New Ireland Friarbird,Philemon eichhorni,Passeriformes,Meliphagidae (Honeyeaters),, +17383,species,helfri1,Helmeted Friarbird,Philemon buceroides,Passeriformes,Meliphagidae (Honeyeaters),, +17384,issf,helfri3,Helmeted Friarbird (New Guinea),Philemon buceroides novaeguineae,Passeriformes,Meliphagidae (Honeyeaters),,helfri1 +17385,issf,helfri4,Helmeted Friarbird (Hornbill),Philemon buceroides yorki,Passeriformes,Meliphagidae (Honeyeaters),,helfri1 +17386,issf,helfri2,Helmeted Friarbird (Helmeted),Philemon buceroides [buceroides Group],Passeriformes,Meliphagidae (Honeyeaters),,helfri1 +17391,species,whnfri1,White-naped Friarbird,Philemon albitorques,Passeriformes,Meliphagidae (Honeyeaters),, +17392,species,nebfri1,New Britain Friarbird,Philemon cockerelli,Passeriformes,Meliphagidae (Honeyeaters),, +17395,species,sicfri1,Silver-crowned Friarbird,Philemon argenticeps,Passeriformes,Meliphagidae (Honeyeaters),, +17398,species,noifri1,Noisy Friarbird,Philemon corniculatus,Passeriformes,Meliphagidae (Honeyeaters),, +17402,species,necfri1,New Caledonian Friarbird,Philemon diemenensis,Passeriformes,Meliphagidae (Honeyeaters),, +17403,spuh,friarb1,friarbird sp.,Philemon sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17404,spuh,meliph2,Meliphagidae sp.,Meliphagidae sp.,Passeriformes,Meliphagidae (Honeyeaters),, +17405,species,wesbri1,Western Bristlebird,Dasyornis longirostris,Passeriformes,Dasyornithidae (Bristlebirds),Bristlebirds, +17406,species,easbri1,Eastern Bristlebird,Dasyornis brachypterus,Passeriformes,Dasyornithidae (Bristlebirds),, +17409,species,rufbri1,Rufous Bristlebird,Dasyornis broadbenti,Passeriformes,Dasyornithidae (Bristlebirds),, +17413,species,spopar1,Spotted Pardalote,Pardalotus punctatus,Passeriformes,Pardalotidae (Pardalotes),Pardalotes, +17414,issf,spopar2,Spotted Pardalote (Wet Tropics),Pardalotus punctatus millitaris,Passeriformes,Pardalotidae (Pardalotes),,spopar1 +17415,issf,spopar3,Spotted Pardalote (Spotted),Pardalotus punctatus punctatus,Passeriformes,Pardalotidae (Pardalotes),,spopar1 +17416,issf,spopar4,Spotted Pardalote (Yellow-rumped),Pardalotus punctatus xanthopyge,Passeriformes,Pardalotidae (Pardalotes),,spopar1 +17417,species,fospar1,Forty-spotted Pardalote,Pardalotus quadragintus,Passeriformes,Pardalotidae (Pardalotes),, +17418,species,rebpar6,Red-browed Pardalote,Pardalotus rubricatus,Passeriformes,Pardalotidae (Pardalotes),, +17421,species,strpar1,Striated Pardalote,Pardalotus striatus,Passeriformes,Pardalotidae (Pardalotes),, +17422,issf,strpar2,Striated Pardalote (Black-headed),Pardalotus striatus [melanocephalus Group],Passeriformes,Pardalotidae (Pardalotes),,strpar1 +17426,issf,strpar3,Striated Pardalote (Eastern),Pardalotus striatus ornatus,Passeriformes,Pardalotidae (Pardalotes),,strpar1 +17427,issf,strpar4,Striated Pardalote (Yellow-tipped),Pardalotus striatus striatus,Passeriformes,Pardalotidae (Pardalotes),,strpar1 +17428,issf,strpar5,Striated Pardalote (Striated),Pardalotus striatus substriatus,Passeriformes,Pardalotidae (Pardalotes),,strpar1 +17429,spuh,pardal1,pardalote sp.,Pardalotus sp.,Passeriformes,Pardalotidae (Pardalotes),, +17430,species,dwawhi1,Goldenface,Pachycare flavogriseum,Passeriformes,Acanthizidae (Thornbills and Allies),Thornbills and Allies, +17436,species,pilotb1,Pilotbird,Pycnoptilus floccosus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17439,species,rocwar1,Rockwarbler,Origma solitaria,Passeriformes,Acanthizidae (Thornbills and Allies),, +17440,species,fernwr1,Fernwren,Oreoscopus gutturalis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17441,species,rumwar1,Rusty Mouse-Warbler,Crateroscelis murina,Passeriformes,Acanthizidae (Thornbills and Allies),, +17447,species,bimwar1,Bicolored Mouse-Warbler,Crateroscelis nigrorufa,Passeriformes,Acanthizidae (Thornbills and Allies),, +17450,species,momwar1,Mountain Mouse-Warbler,Crateroscelis robusta,Passeriformes,Acanthizidae (Thornbills and Allies),, +17458,spuh,mouse-1,mouse-warbler sp.,Crateroscelis sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, +17459,species,yetscr1,Yellow-throated Scrubwren,Sericornis citreogularis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17463,species,whbscr1,White-browed Scrubwren,Sericornis frontalis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17464,issf,whbscr2,White-browed Scrubwren (Buff-breasted),Sericornis frontalis laevigaster,Passeriformes,Acanthizidae (Thornbills and Allies),,whbscr1 +17465,issf,whbscr3,White-browed Scrubwren (Spotted),Sericornis frontalis [maculatus Group],Passeriformes,Acanthizidae (Thornbills and Allies),,whbscr1 +17470,issf,whbscr4,White-browed Scrubwren (White-browed),Sericornis frontalis [frontalis Group],Passeriformes,Acanthizidae (Thornbills and Allies),,whbscr1 +17476,species,tasscr1,Tasmanian Scrubwren,Sericornis humilis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17479,species,athscr1,Atherton Scrubwren,Sericornis keri,Passeriformes,Acanthizidae (Thornbills and Allies),, +17480,species,becscr1,Tropical Scrubwren,Sericornis beccarii,Passeriformes,Acanthizidae (Thornbills and Allies),, +17492,species,perscr1,Perplexing Scrubwren,Sericornis virgatus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17495,species,larscr1,Large Scrubwren,Sericornis nouhuysi,Passeriformes,Acanthizidae (Thornbills and Allies),, +17502,species,labscr2,Large-billed Scrubwren,Sericornis magnirostra,Passeriformes,Acanthizidae (Thornbills and Allies),, +17506,species,vogscr1,Vogelkop Scrubwren,Sericornis rufescens,Passeriformes,Acanthizidae (Thornbills and Allies),, +17507,species,bufscr1,Buff-faced Scrubwren,Sericornis perspicillatus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17508,species,papscr1,Papuan Scrubwren,Sericornis papuensis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17512,species,gygscr1,Gray-green Scrubwren,Sericornis arfakianus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17513,species,pabscr1,Pale-billed Scrubwren,Sericornis spilodera,Passeriformes,Acanthizidae (Thornbills and Allies),, +17521,spuh,scrubw1,scrubwren sp.,Sericornis sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, +17522,species,scrubt2,Scrubtit,Acanthornis magna,Passeriformes,Acanthizidae (Thornbills and Allies),, +17525,species,redthr1,Redthroat,Pyrrholaemus brunneus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17526,species,spewar3,Speckled Warbler,Pyrrholaemus sagittatus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17527,species,ruffie2,Rufous Fieldwren,Calamanthus campestris,Passeriformes,Acanthizidae (Thornbills and Allies),, +17535,species,ruffie3,Western Fieldwren,Calamanthus montanellus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17536,slash,ruffie1,Rufous/Western Fieldwren,Calamanthus campestris/montanellus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17537,species,strfie1,Striated Fieldwren,Calamanthus fuliginosus,Passeriformes,Acanthizidae (Thornbills and Allies),, +17542,species,chrhea1,Chestnut-rumped Heathwren,Hylacola pyrrhopygia,Passeriformes,Acanthizidae (Thornbills and Allies),, +17546,species,shyhea1,Shy Heathwren,Hylacola cauta,Passeriformes,Acanthizidae (Thornbills and Allies),, +17551,species,paptho1,Papuan Thornbill,Acanthiza murina,Passeriformes,Acanthizidae (Thornbills and Allies),, +17552,species,burtho1,Buff-rumped Thornbill,Acanthiza reguloides,Passeriformes,Acanthizidae (Thornbills and Allies),, +17557,species,westho1,Western Thornbill,Acanthiza inornata,Passeriformes,Acanthizidae (Thornbills and Allies),, +17558,species,slbtho2,Slender-billed Thornbill,Acanthiza iredalei,Passeriformes,Acanthizidae (Thornbills and Allies),, +17562,species,moutho1,Mountain Thornbill,Acanthiza katherina,Passeriformes,Acanthizidae (Thornbills and Allies),, +17563,species,brotho1,Brown Thornbill,Acanthiza pusilla,Passeriformes,Acanthizidae (Thornbills and Allies),, +17569,species,tastho1,Tasmanian Thornbill,Acanthiza ewingii,Passeriformes,Acanthizidae (Thornbills and Allies),, +17572,slash,y00973,Brown/Tasmanian Thornbill,Acanthiza pusilla/ewingii,Passeriformes,Acanthizidae (Thornbills and Allies),, +17573,species,inltho1,Inland Thornbill,Acanthiza apicalis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17578,species,yertho1,Yellow-rumped Thornbill,Acanthiza chrysorrhoa,Passeriformes,Acanthizidae (Thornbills and Allies),, +17583,species,chrtho1,Chestnut-rumped Thornbill,Acanthiza uropygialis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17584,species,slbtho1,Slaty-backed Thornbill,Acanthiza robustirostris,Passeriformes,Acanthizidae (Thornbills and Allies),, +17585,species,yeltho1,Yellow Thornbill,Acanthiza nana,Passeriformes,Acanthizidae (Thornbills and Allies),, +17589,species,mouger1,Gray Thornbill,Acanthiza cinerea,Passeriformes,Acanthizidae (Thornbills and Allies),, +17590,species,strtho1,Striated Thornbill,Acanthiza lineata,Passeriformes,Acanthizidae (Thornbills and Allies),, +17595,spuh,thornb1,thornbill sp.,Acanthiza sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, +17596,species,weebil1,Weebill,Smicrornis brevirostris,Passeriformes,Acanthizidae (Thornbills and Allies),, +17601,species,gnbger1,Green-backed Gerygone,Gerygone chloronota,Passeriformes,Acanthizidae (Thornbills and Allies),, +17606,species,faiger1,Fairy Gerygone,Gerygone palpebrosa,Passeriformes,Acanthizidae (Thornbills and Allies),, +17607,issf,faiger2,Fairy Gerygone (Black-throated),Gerygone palpebrosa [palpebrosa Group],Passeriformes,Acanthizidae (Thornbills and Allies),,faiger1 +17613,issf,faiger3,Fairy Gerygone (Fairy),Gerygone palpebrosa flavida,Passeriformes,Acanthizidae (Thornbills and Allies),,faiger1 +17614,species,biager1,Biak Gerygone,Gerygone hypoxantha,Passeriformes,Acanthizidae (Thornbills and Allies),, +17615,species,whtger1,White-throated Gerygone,Gerygone olivacea,Passeriformes,Acanthizidae (Thornbills and Allies),, +17619,species,yebger1,Yellow-bellied Gerygone,Gerygone chrysogaster,Passeriformes,Acanthizidae (Thornbills and Allies),, +17623,species,labger1,Large-billed Gerygone,Gerygone magnirostris,Passeriformes,Acanthizidae (Thornbills and Allies),, +17636,species,dusger1,Dusky Gerygone,Gerygone tenebrosa,Passeriformes,Acanthizidae (Thornbills and Allies),, +17639,species,broger1,Brown Gerygone,Gerygone mouki,Passeriformes,Acanthizidae (Thornbills and Allies),, +17643,species,gobger1,Golden-bellied Gerygone,Gerygone sulphurea,Passeriformes,Acanthizidae (Thornbills and Allies),, +17648,species,plager1,Plain Gerygone,Gerygone inornata,Passeriformes,Acanthizidae (Thornbills and Allies),, +17649,species,rusger1,Rufous-sided Gerygone,Gerygone dorsalis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17655,species,brbger1,Brown-breasted Gerygone,Gerygone ruficollis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17658,species,wesger1,Western Gerygone,Gerygone fusca,Passeriformes,Acanthizidae (Thornbills and Allies),, +17662,species,manger1,Mangrove Gerygone,Gerygone levigaster,Passeriformes,Acanthizidae (Thornbills and Allies),, +17666,species,noiger1,Norfolk Island Gerygone,Gerygone modesta,Passeriformes,Acanthizidae (Thornbills and Allies),, +17667,species,lohger1,Lord Howe Gerygone,Gerygone insularis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17668,species,gryger1,Gray Gerygone,Gerygone igata,Passeriformes,Acanthizidae (Thornbills and Allies),, +17669,species,chiger2,Chatham Island Gerygone,Gerygone albofrontata,Passeriformes,Acanthizidae (Thornbills and Allies),, +17670,species,fatger1,Fan-tailed Gerygone,Gerygone flavolateralis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17671,issf,fatger2,Fan-tailed Gerygone (Fan-tailed),Gerygone flavolateralis [flavolateralis Group],Passeriformes,Acanthizidae (Thornbills and Allies),,fatger1 +17676,issf,fatger3,Fan-tailed Gerygone (Rennell),Gerygone flavolateralis citrina,Passeriformes,Acanthizidae (Thornbills and Allies),,fatger1 +17677,spuh,gerygo1,gerygone sp.,Gerygone sp.,Passeriformes,Acanthizidae (Thornbills and Allies),, +17678,species,souwhi1,Southern Whiteface,Aphelocephala leucopsis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17681,species,chbwhi1,Chestnut-breasted Whiteface,Aphelocephala pectoralis,Passeriformes,Acanthizidae (Thornbills and Allies),, +17682,species,banwhi1,Banded Whiteface,Aphelocephala nigricincta,Passeriformes,Acanthizidae (Thornbills and Allies),, +17683,species,negbab1,Papuan Babbler,Pomatostomus isidorei,Passeriformes,Pomatostomidae (Pseudo-Babblers),Pseudo-Babblers, +17686,species,gycbab1,Gray-crowned Babbler,Pomatostomus temporalis,Passeriformes,Pomatostomidae (Pseudo-Babblers),, +17690,species,whbbab3,White-browed Babbler,Pomatostomus superciliosus,Passeriformes,Pomatostomidae (Pseudo-Babblers),, +17695,species,halbab1,Hall's Babbler,Pomatostomus halli,Passeriformes,Pomatostomidae (Pseudo-Babblers),, +17696,species,chcbab2,Chestnut-crowned Babbler,Pomatostomus ruficeps,Passeriformes,Pomatostomidae (Pseudo-Babblers),, +17697,spuh,pseudo1,pseudo-babbler sp.,Pomatostomus sp.,Passeriformes,Pomatostomidae (Pseudo-Babblers),, +17698,species,norlog1,Papuan Logrunner,Orthonyx novaeguineae,Passeriformes,Orthonychidae (Logrunners),Logrunners, +17702,species,soulog1,Australian Logrunner,Orthonyx temminckii,Passeriformes,Orthonychidae (Logrunners),, +17703,species,chowch1,Chowchilla,Orthonyx spaldingii,Passeriformes,Orthonychidae (Logrunners),, +17706,species,spqthr1,Spotted Quail-thrush,Cinclosoma punctatum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),Quail-thrushes and Jewel-babblers, +17710,species,chequt1,Chestnut Quail-thrush,Cinclosoma castanotum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17711,species,copqut1,Copperback Quail-thrush,Cinclosoma clarum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17714,species,cbqthr1,Chestnut-breasted Quail-thrush,Cinclosoma castaneothorax,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17715,species,chbqut1,Western Quail-thrush,Cinclosoma marginatum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17716,species,ciqthr1,Cinnamon Quail-thrush,Cinclosoma cinnamomeum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17717,species,nulqut1,Nullarbor Quail-thrush,Cinclosoma alisteri,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17718,species,paqthr1,Painted Quail-thrush,Cinclosoma ajax,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17723,species,spjbab1,Spotted Jewel-babbler,Ptilorrhoa leucosticta,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17731,species,blujeb1,Blue Jewel-babbler,Ptilorrhoa caerulescens,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17735,species,blujeb2,Dimorphic Jewel-babbler,Ptilorrhoa geislerorum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17736,slash,bljbab1,Blue/Dimorphic Jewel-babbler,Ptilorrhoa caerulescens/geislerorum,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17737,species,cbjbab1,Chestnut-backed Jewel-babbler,Ptilorrhoa castanonota,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17745,spuh,jewel-1,jewel-babbler sp.,Ptilorrhoa sp.,Passeriformes,Cinclosomatidae (Quail-thrushes and Jewel-babblers),, +17746,species,whbmin3,White-bellied Minivet,Pericrocotus erythropygius,Passeriformes,Campephagidae (Cuckooshrikes),Cuckooshrikes, +17747,species,whbmin2,Jerdon's Minivet,Pericrocotus albifrons,Passeriformes,Campephagidae (Cuckooshrikes),, +17748,species,fiemin1,Fiery Minivet,Pericrocotus igneus,Passeriformes,Campephagidae (Cuckooshrikes),, +17751,species,smamin1,Small Minivet,Pericrocotus cinnamomeus,Passeriformes,Campephagidae (Cuckooshrikes),, +17761,species,gycmin1,Gray-chinned Minivet,Pericrocotus solaris,Passeriformes,Campephagidae (Cuckooshrikes),, +17762,issf,gycmin2,Gray-chinned Minivet (Gray-chinned),Pericrocotus solaris [solaris Group],Passeriformes,Campephagidae (Cuckooshrikes),,gycmin1 +17769,issf,gycmin3,Gray-chinned Minivet (Gray-throated),Pericrocotus solaris montanus/cinereigula,Passeriformes,Campephagidae (Cuckooshrikes),,gycmin1 +17772,species,sunmin1,Sunda Minivet,Pericrocotus miniatus,Passeriformes,Campephagidae (Cuckooshrikes),, +17773,species,shbmin2,Short-billed Minivet,Pericrocotus brevirostris,Passeriformes,Campephagidae (Cuckooshrikes),, +17778,species,flomin1,Flores Minivet,Pericrocotus lansbergei,Passeriformes,Campephagidae (Cuckooshrikes),, +17779,species,lotmin1,Long-tailed Minivet,Pericrocotus ethologus,Passeriformes,Campephagidae (Cuckooshrikes),, +17786,species,scamin3,Orange Minivet,Pericrocotus flammeus,Passeriformes,Campephagidae (Cuckooshrikes),, +17787,species,scamin1,Scarlet Minivet,Pericrocotus speciosus,Passeriformes,Campephagidae (Cuckooshrikes),, +17788,issf,scamin2,Scarlet Minivet (Scarlet),Pericrocotus speciosus [speciosus Group],Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 +17800,issf,scamin6,Scarlet Minivet (Philippine Red),Pericrocotus speciosus leytensis/novus,Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 +17803,issf,scamin4,Scarlet Minivet (Philippine Yellow),Pericrocotus speciosus [marchesae Group],Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 +17808,issf,scamin5,Scarlet Minivet (Javan),Pericrocotus speciosus exul/siebersi,Passeriformes,Campephagidae (Cuckooshrikes),,scamin1 +17811,species,ryumin1,Ryukyu Minivet,Pericrocotus tegimae,Passeriformes,Campephagidae (Cuckooshrikes),, +17812,species,ashmin1,Ashy Minivet,Pericrocotus divaricatus,Passeriformes,Campephagidae (Cuckooshrikes),, +17813,slash,y01115,Ryukyu/Ashy Minivet,Pericrocotus tegimae/divaricatus,Passeriformes,Campephagidae (Cuckooshrikes),, +17814,species,brrmin1,Brown-rumped Minivet,Pericrocotus cantonensis,Passeriformes,Campephagidae (Cuckooshrikes),, +17815,slash,y00974,Ashy/Brown-rumped Minivet,Pericrocotus divaricatus/cantonensis,Passeriformes,Campephagidae (Cuckooshrikes),, +17816,species,rosmin1,Rosy Minivet,Pericrocotus roseus,Passeriformes,Campephagidae (Cuckooshrikes),, +17819,spuh,minive2,minivet sp. (red minivet sp.),Pericrocotus sp. (red minivet sp.),Passeriformes,Campephagidae (Cuckooshrikes),, +17820,spuh,minive3,minivet sp. (gray minivet sp.),Pericrocotus sp. (grey minivet sp.),Passeriformes,Campephagidae (Cuckooshrikes),, +17821,spuh,minive1,minivet sp.,Pericrocotus sp.,Passeriformes,Campephagidae (Cuckooshrikes),, +17822,species,ashcus3,Comoros Cuckooshrike,Coracina cucullata,Passeriformes,Campephagidae (Cuckooshrikes),, +17825,species,ashcus2,Madagascar Cuckooshrike,Coracina cinerea,Passeriformes,Campephagidae (Cuckooshrikes),, +17828,species,gracus1,Grauer's Cuckooshrike,Coracina graueri,Passeriformes,Campephagidae (Cuckooshrikes),, +17829,species,grycus1,Gray Cuckooshrike,Coracina caesia,Passeriformes,Campephagidae (Cuckooshrikes),, +17833,species,whbcus2,White-breasted Cuckooshrike,Coracina pectoralis,Passeriformes,Campephagidae (Cuckooshrikes),, +17834,species,stbcus1,Stout-billed Cuckooshrike,Coracina caeruleogrisea,Passeriformes,Campephagidae (Cuckooshrikes),, +17838,species,hoocus1,Hooded Cuckooshrike,Coracina longicauda,Passeriformes,Campephagidae (Cuckooshrikes),, +17841,species,piecus1,Pied Cuckooshrike,Coracina bicolor,Passeriformes,Campephagidae (Cuckooshrikes),, +17842,species,cercus1,Cerulean Cuckooshrike,Coracina temminckii,Passeriformes,Campephagidae (Cuckooshrikes),, +17846,species,grocus1,Ground Cuckooshrike,Coracina maxima,Passeriformes,Campephagidae (Cuckooshrikes),, +17847,species,yeecus1,Barred Cuckooshrike,Coracina lineata,Passeriformes,Campephagidae (Cuckooshrikes),, +17858,species,boycus1,Boyer's Cuckooshrike,Coracina boyeri,Passeriformes,Campephagidae (Cuckooshrikes),, +17861,species,bkfcus1,Black-faced Cuckooshrike,Coracina novaehollandiae,Passeriformes,Campephagidae (Cuckooshrikes),, +17865,species,melcus3,North Melanesian Cuckooshrike,Coracina welchmani,Passeriformes,Campephagidae (Cuckooshrikes),, +17870,species,whbcus1,White-bellied Cuckooshrike,Coracina papuensis,Passeriformes,Campephagidae (Cuckooshrikes),, +17884,species,molcus1,Moluccan Cuckooshrike,Coracina atriceps,Passeriformes,Campephagidae (Cuckooshrikes),, +17887,species,whbcus4,Manus Cuckooshrike,Coracina ingens,Passeriformes,Campephagidae (Cuckooshrikes),, +17888,species,melcus1,South Melanesian Cuckooshrike,Coracina caledonica,Passeriformes,Campephagidae (Cuckooshrikes),, +17893,species,larcus1,Large Cuckooshrike,Coracina macei,Passeriformes,Campephagidae (Cuckooshrikes),, +17894,issf,larcuc1,Large Cuckooshrike (Indian),Coracina macei macei/layardi,Passeriformes,Campephagidae (Cuckooshrikes),,larcus1 +17897,issf,larcuc2,Large Cuckooshrike (Large),Coracina macei [nipalensis Group],Passeriformes,Campephagidae (Cuckooshrikes),,larcus1 +17903,issf,larcuc3,Large Cuckooshrike (Malay),Coracina macei larutensis,Passeriformes,Campephagidae (Cuckooshrikes),,larcus1 +17904,species,babcus1,Bar-bellied Cuckooshrike,Coracina striata,Passeriformes,Campephagidae (Cuckooshrikes),, +17905,issf,babcuc3,Bar-bellied Cuckooshrike (Bar-bellied),Coracina striata [striata Group],Passeriformes,Campephagidae (Cuckooshrikes),,babcus1 +17920,issf,babcuc5,Bar-bellied Cuckooshrike (Visayan),Coracina striata panayensis,Passeriformes,Campephagidae (Cuckooshrikes),,babcus1 +17921,species,andcus1,Andaman Cuckooshrike,Coracina dobsoni,Passeriformes,Campephagidae (Cuckooshrikes),, +17922,species,suncus1,Sunda Cuckooshrike,Coracina larvata,Passeriformes,Campephagidae (Cuckooshrikes),, +17926,species,javcus1,Javan Cuckooshrike,Coracina javensis,Passeriformes,Campephagidae (Cuckooshrikes),, +17927,species,walcus1,Wallacean Cuckooshrike,Coracina personata,Passeriformes,Campephagidae (Cuckooshrikes),, +17934,species,burcus1,Buru Cuckooshrike,Coracina fortis,Passeriformes,Campephagidae (Cuckooshrikes),, +17935,species,whrcus1,White-rumped Cuckooshrike,Coracina leucopygia,Passeriformes,Campephagidae (Cuckooshrikes),, +17936,species,slacus1,Slaty Cuckooshrike,Coracina schistacea,Passeriformes,Campephagidae (Cuckooshrikes),, +17937,spuh,cuckoo2,Coracina sp.,Coracina sp.,Passeriformes,Campephagidae (Cuckooshrikes),, +17938,species,ghacus1,Ghana Cuckooshrike,Lobotos lobatus,Passeriformes,Campephagidae (Cuckooshrikes),, +17939,species,oricus1,Oriole Cuckooshrike,Lobotos oriolinus,Passeriformes,Campephagidae (Cuckooshrikes),, +17940,species,blkcus1,Black Cuckooshrike,Campephaga flava,Passeriformes,Campephagidae (Cuckooshrikes),, +17941,species,petcus1,Petit's Cuckooshrike,Campephaga petiti,Passeriformes,Campephagidae (Cuckooshrikes),, +17942,species,rescus1,Red-shouldered Cuckooshrike,Campephaga phoenicea,Passeriformes,Campephagidae (Cuckooshrikes),, +17943,species,putcus1,Purple-throated Cuckooshrike,Campephaga quiscalina,Passeriformes,Campephagidae (Cuckooshrikes),, +17947,spuh,afrcuc2,african cuckooshrike sp.,Campephaga sp.,Passeriformes,Campephagidae (Cuckooshrikes),, +17948,species,golcus1,Golden Cuckooshrike,Campochaera sloetii,Passeriformes,Campephagidae (Cuckooshrikes),, +17951,species,mcgcus1,McGregor's Cuckooshrike,Malindangia mcgregori,Passeriformes,Campephagidae (Cuckooshrikes),, +17952,species,poltri1,Polynesian Triller,Lalage maculosa,Passeriformes,Campephagidae (Cuckooshrikes),, +17969,species,samtri1,Samoan Triller,Lalage sharpei,Passeriformes,Campephagidae (Cuckooshrikes),, +17972,species,lottri1,Long-tailed Triller,Lalage leucopyga,Passeriformes,Campephagidae (Cuckooshrikes),, +17979,species,whwtri2,White-shouldered Triller,Lalage sueurii,Passeriformes,Campephagidae (Cuckooshrikes),, +17980,species,whwtri1,White-winged Triller,Lalage tricolor,Passeriformes,Campephagidae (Cuckooshrikes),, +17981,species,blbtri1,Black-browed Triller,Lalage atrovirens,Passeriformes,Campephagidae (Cuckooshrikes),, +17982,issf,bkbtri1,Black-browed Triller (Black-browed),Lalage atrovirens atrovirens,Passeriformes,Campephagidae (Cuckooshrikes),,blbtri1 +17983,issf,bkbtri2,Black-browed Triller (Biak),Lalage atrovirens leucoptera,Passeriformes,Campephagidae (Cuckooshrikes),,blbtri1 +17984,species,whbtri1,White-browed Triller,Lalage moesta,Passeriformes,Campephagidae (Cuckooshrikes),, +17985,species,vartri1,Varied Triller,Lalage leucomela,Passeriformes,Campephagidae (Cuckooshrikes),, +18001,species,vartri3,Mussau Triller,Lalage conjuncta,Passeriformes,Campephagidae (Cuckooshrikes),, +18002,species,bawtri1,Black-and-white Triller,Lalage melanoleuca,Passeriformes,Campephagidae (Cuckooshrikes),, +18003,issf,bawtri2,Black-and-white Triller (Northern),Lalage melanoleuca melanoleuca,Passeriformes,Campephagidae (Cuckooshrikes),,bawtri1 +18004,issf,bawtri3,Black-and-white Triller (Southern),Lalage melanoleuca minor,Passeriformes,Campephagidae (Cuckooshrikes),,bawtri1 +18005,species,whrtri1,White-rumped Triller,Lalage leucopygialis,Passeriformes,Campephagidae (Cuckooshrikes),, +18006,species,pietri1,Pied Triller,Lalage nigra,Passeriformes,Campephagidae (Cuckooshrikes),, +18010,species,rubtri1,Rufous-bellied Triller,Lalage aurea,Passeriformes,Campephagidae (Cuckooshrikes),, +18011,species,reucus1,Reunion Cuckooshrike,Lalage newtoni,Passeriformes,Campephagidae (Cuckooshrikes),, +18012,species,maucus1,Mauritius Cuckooshrike,Lalage typica,Passeriformes,Campephagidae (Cuckooshrikes),, +18013,species,bkwcus1,Black-winged Cuckooshrike,Lalage melaschistos,Passeriformes,Campephagidae (Cuckooshrikes),, +18018,species,bkhcus1,Black-headed Cuckooshrike,Lalage melanoptera,Passeriformes,Campephagidae (Cuckooshrikes),, +18021,species,lescus1,Lesser Cuckooshrike,Lalage fimbriata,Passeriformes,Campephagidae (Cuckooshrikes),, +18027,species,indcus1,Indochinese Cuckooshrike,Lalage polioptera,Passeriformes,Campephagidae (Cuckooshrikes),, +18031,spuh,trille1,Lalage sp.,Lalage sp.,Passeriformes,Campephagidae (Cuckooshrikes),, +18032,species,pygcus1,Pygmy Cuckooshrike,Celebesia abbotti,Passeriformes,Campephagidae (Cuckooshrikes),, +18033,species,halcus1,Halmahera Cuckooshrike,Celebesia parvula,Passeriformes,Campephagidae (Cuckooshrikes),, +18034,species,blucus1,Blue Cuckooshrike,Cyanograucalus azureus,Passeriformes,Campephagidae (Cuckooshrikes),, +18035,species,neccus1,New Caledonian Cuckooshrike,Analisoma analis,Passeriformes,Campephagidae (Cuckooshrikes),, +18036,species,blacus1,Blackish Cuckooshrike,Analisoma coerulescens,Passeriformes,Campephagidae (Cuckooshrikes),, +18040,species,whwcus1,White-winged Cuckooshrike,Analisoma ostenta,Passeriformes,Campephagidae (Cuckooshrikes),, +18041,species,bkbcus2,Black-bellied Cicadabird,Edolisoma montanum,Passeriformes,Campephagidae (Cuckooshrikes),, +18044,species,pagcus1,Pale Cicadabird,Edolisoma ceramense,Passeriformes,Campephagidae (Cuckooshrikes),, +18047,species,kaicus1,Kai Cicadabird,Edolisoma dispar,Passeriformes,Campephagidae (Cuckooshrikes),, +18048,species,sumcus1,Pale-shouldered Cicadabird,Edolisoma dohertyi,Passeriformes,Campephagidae (Cuckooshrikes),, +18049,species,bkbcus1,Black-bibbed Cuckooshrike,Edolisoma mindanense,Passeriformes,Campephagidae (Cuckooshrikes),, +18055,species,mancic1,Manus Cicadabird,Edolisoma admiralitatis,Passeriformes,Campephagidae (Cuckooshrikes),, +18056,species,cicada7,Makira Cicadabird,Edolisoma salomonis,Passeriformes,Campephagidae (Cuckooshrikes),, +18057,species,soicus1,Solomons Cuckooshrike,Edolisoma holopolium,Passeriformes,Campephagidae (Cuckooshrikes),, +18058,issf,solcuc1,Solomons Cuckooshrike (Solomon),Edolisoma holopolium holopolium/tricolor,Passeriformes,Campephagidae (Cuckooshrikes),,soicus1 +18061,issf,solcuc2,Solomons Cuckooshrike (New Georgia),Edolisoma holopolium pygmaeum,Passeriformes,Campephagidae (Cuckooshrikes),,soicus1 +18062,species,papcus1,Papuan Cicadabird,Edolisoma incertum,Passeriformes,Campephagidae (Cuckooshrikes),, +18063,species,sulcus2,Sulawesi Cicadabird,Edolisoma morio,Passeriformes,Campephagidae (Cuckooshrikes),, +18067,species,sulcus1,Sula Cicadabird,Edolisoma sula,Passeriformes,Campephagidae (Cuckooshrikes),, +18068,species,cicada1,Common Cicadabird,Edolisoma tenuirostre,Passeriformes,Campephagidae (Cuckooshrikes),, +18069,issf,comcic1,Common Cicadabird (Slender-billed),Edolisoma tenuirostre [tenuirostre Group],Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18082,issf,comcic2,Common Cicadabird (Obi),Edolisoma tenuirostre obiense/pelingi,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18085,issf,comcic3,Common Cicadabird (Moluccan),Edolisoma tenuirostre grayi,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18086,issf,comcic4,Common Cicadabird (Geelvink),Edolisoma tenuirostre meyerii/numforanum,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18089,issf,comcic5,Common Cicadabird (Rossel),Edolisoma tenuirostre rostratum,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18090,issf,comcic6,Common Cicadabird (Melanesian),Edolisoma tenuirostre [erythropygium Group],Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18098,issf,cicada6,Common Cicadabird (Gray-capped),Edolisoma tenuirostre remotus,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18099,issf,cicada4,Common Cicadabird (Palau),Edolisoma tenuirostre monacha,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18100,issf,cicada5,Common Cicadabird (Yap),Edolisoma tenuirostre nesiotis,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18101,issf,cicada3,Common Cicadabird (Pohnpei),Edolisoma tenuirostre insperatum,Passeriformes,Campephagidae (Cuckooshrikes),,cicada1 +18102,species,gyhcus1,Gray-headed Cicadabird,Edolisoma schisticeps,Passeriformes,Campephagidae (Cuckooshrikes),, +18107,species,negcus1,Black Cicadabird,Edolisoma melas,Passeriformes,Campephagidae (Cuckooshrikes),, +18114,spuh,edolis1,Edolisoma sp.,Edolisoma sp.,Passeriformes,Campephagidae (Cuckooshrikes),, +18115,spuh,cuckoo4,cuckooshrike sp.,Campephagidae sp.,Passeriformes,Campephagidae (Cuckooshrikes),, +18116,species,whiteh1,Whitehead,Mohoua albicilla,Passeriformes,Mohouidae (Whiteheads),Whiteheads, +18117,species,yellow3,Yellowhead,Mohoua ochrocephala,Passeriformes,Mohouidae (Whiteheads),, +18118,species,pipipi1,Pipipi,Mohoua novaeseelandiae,Passeriformes,Mohouidae (Whiteheads),, +18119,species,blksit1,Black Sittella,Daphoenositta miranda,Passeriformes,Neosittidae (Sittellas),Sittellas, +18123,species,varsit1,Papuan Sittella,Daphoenositta papuensis,Passeriformes,Neosittidae (Sittellas),, +18130,species,varsit8,Varied Sittella,Daphoenositta chrysoptera,Passeriformes,Neosittidae (Sittellas),, +18131,issf,varsit3,Varied Sittella (White-winged),Daphoenositta chrysoptera leucoptera,Passeriformes,Neosittidae (Sittellas),,varsit8 +18132,issf,varsit4,Varied Sittella (Striated),Daphoenositta chrysoptera striata,Passeriformes,Neosittidae (Sittellas),,varsit8 +18133,issf,varsit5,Varied Sittella (White-headed),Daphoenositta chrysoptera leucocephala,Passeriformes,Neosittidae (Sittellas),,varsit8 +18134,issf,varsit6,Varied Sittella (Orange-winged),Daphoenositta chrysoptera chrysoptera,Passeriformes,Neosittidae (Sittellas),,varsit8 +18135,issf,varsit7,Varied Sittella (Black-capped),Daphoenositta chrysoptera pileata,Passeriformes,Neosittidae (Sittellas),,varsit8 +18136,species,papwhi1,Papuan Whipbird,Androphobus viridis,Passeriformes,Psophodidae (Whipbirds and Wedgebills),Whipbirds and Wedgebills, +18137,species,easwhi1,Eastern Whipbird,Psophodes olivaceus,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, +18140,species,weswhi1,Western Whipbird,Psophodes nigrogularis,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, +18141,issf,weswhi3,Western Whipbird (Black-throated),Psophodes nigrogularis nigrogularis/oberon,Passeriformes,Psophodidae (Whipbirds and Wedgebills),,weswhi1 +18144,issf,weswhi4,Western Whipbird (White-bellied),Psophodes nigrogularis leucogaster/lashmari,Passeriformes,Psophodidae (Whipbirds and Wedgebills),,weswhi1 +18147,species,chiwed1,Chiming Wedgebill,Psophodes occidentalis,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, +18148,species,chiwed2,Chirruping Wedgebill,Psophodes cristatus,Passeriformes,Psophodidae (Whipbirds and Wedgebills),, +18149,species,watplo1,Wattled Ploughbill,Eulacestoma nigropectus,Passeriformes,Eulacestomatidae (Ploughbill),Ploughbill, +18152,species,crebel1,Crested Bellbird,Oreoica gutturalis,Passeriformes,Oreoicidae (Australo-Papuan Bellbirds),Australo-Papuan Bellbirds, +18155,species,runwhi1,Rufous-naped Bellbird,Aleadryas rufinucha,Passeriformes,Oreoicidae (Australo-Papuan Bellbirds),, +18160,species,crepit1,Piping Bellbird,Ornorectes cristatus,Passeriformes,Oreoicidae (Australo-Papuan Bellbirds),, +18164,species,crstit1,Crested Shrike-tit,Falcunculus frontatus,Passeriformes,Falcunculidae (Shrike-tit),Shrike-tit, +18165,issf,cresht1,Crested Shrike-tit (Eastern),Falcunculus frontatus frontatus,Passeriformes,Falcunculidae (Shrike-tit),,crstit1 +18166,issf,cresht2,Crested Shrike-tit (Western),Falcunculus frontatus leucogaster,Passeriformes,Falcunculidae (Shrike-tit),,crstit1 +18167,issf,cresht3,Crested Shrike-tit (Northern),Falcunculus frontatus whitei,Passeriformes,Falcunculidae (Shrike-tit),,crstit1 +18168,species,titber1,Tit Berrypecker,Oreocharis arfaki,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),Tit Berrypecker and Crested Berrypecker, +18169,species,creber1,Crested Berrypecker,Paramythia montium,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),, +18170,issf,creber2,Crested Berrypecker (Eastern),Paramythia montium montium/brevicauda,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),,creber1 +18173,issf,creber3,Crested Berrypecker (Western),Paramythia montium olivacea/alpina,Passeriformes,Paramythiidae (Tit Berrypecker and Crested Berrypecker),,creber1 +18176,species,bhsbab1,Black-headed Shrike-Babbler,Pteruthius rufiventer,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",Shrike-Babblers and Erpornis, +18177,species,wbsbab2,Pied Shrike-Babbler,Pteruthius flaviscapis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18178,species,himshb1,Himalayan Shrike-Babbler,Pteruthius ripleyi,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18179,species,blyshb1,Blyth's Shrike-Babbler,Pteruthius aeralatus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18180,issf,blyshb4,Blyth's Shrike-Babbler (Chestnut-winged),Pteruthius aeralatus validirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,blyshb1 +18181,issf,blyshb3,Blyth's Shrike-Babbler (Gray-breasted),Pteruthius aeralatus ricketti,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,blyshb1 +18182,issf,blyshb2,Blyth's Shrike-Babbler (Blyth's),Pteruthius aeralatus [aeralatus Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,blyshb1 +18187,species,dalshb1,Dalat Shrike-Babbler,Pteruthius annamensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18188,species,grsbab1,Green Shrike-Babbler,Pteruthius xanthochlorus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18189,issf,grnshb2,Green Shrike-Babbler (Black-crowned),Pteruthius xanthochlorus xanthochlorus/occidentalis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,grsbab1 +18192,issf,grnshb1,Green Shrike-Babbler (Eye-ringed),Pteruthius xanthochlorus pallidus/hybrida,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,grsbab1 +18195,species,besbab1,Black-eared Shrike-Babbler,Pteruthius melanotis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18198,species,cfsbab1,Trilling Shrike-Babbler,Pteruthius aenobarbus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18199,species,clishb1,Clicking Shrike-Babbler,Pteruthius intermedius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18200,issf,clishb2,Clicking Shrike-Babbler (Garo Hills),Pteruthius intermedius aenobarbulus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,clishb1 +18201,issf,clishb3,Clicking Shrike-Babbler (Clicking),Pteruthius intermedius intermedius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,clishb1 +18202,spuh,shrike2,shrike-babbler sp.,Pteruthius sp.,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18203,species,whbyuh1,White-bellied Erpornis,Erpornis zantholeuca,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18212,species,rubpep1,Rufous-browed Peppershrike,Cyclarhis gujanensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",Vireos, +18213,issf,rubpep2,Rufous-browed Peppershrike (Northern),Cyclarhis gujanensis [gujanensis Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 +18228,issf,rubpep3,Rufous-browed Peppershrike (Cozumel I.),Cyclarhis gujanensis insularis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 +18229,issf,rubpep4,Rufous-browed Peppershrike (Yellow-backed),Cyclarhis gujanensis [virenticeps Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 +18233,issf,rubpep5,Rufous-browed Peppershrike (Chaco),Cyclarhis gujanensis viridis/cearensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 +18236,issf,rubpep6,Rufous-browed Peppershrike (Ochre-crowned),Cyclarhis gujanensis ochrocephala,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,rubpep1 +18237,species,blbpep1,Black-billed Peppershrike,Cyclarhis nigrirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18240,slash,y00891,Rufous-browed/Black-billed Peppershrike,Cyclarhis gujanensis/nigrirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18241,species,gyegre1,Gray-eyed Greenlet,Hylophilus amaurocephalus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18242,species,rucgre1,Rufous-crowned Greenlet,Hylophilus poicilotis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18243,species,oligre1,Olivaceous Greenlet,Hylophilus olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18244,species,ashgre1,Ashy-headed Greenlet,Hylophilus pectoralis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18245,species,scrgre1,Scrub Greenlet,Hylophilus flavipes,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18246,issf,scrgre2,Scrub Greenlet (Yellow-green),Hylophilus flavipes viridiflavus/xuthus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scrgre1 +18249,issf,scrgre3,Scrub Greenlet (Scrub),Hylophilus flavipes [flavipes Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scrgre1 +18254,issf,scrgre4,Scrub Greenlet (Tobago),Hylophilus flavipes insularis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scrgre1 +18255,species,gycgre1,Gray-chested Greenlet,Hylophilus semicinereus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18259,species,brhgre1,Brown-headed Greenlet,Hylophilus brunneiceps,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18260,species,lecgre2,Lemon-chested Greenlet,Hylophilus thoracicus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18261,issf,lecgre1,Lemon-chested Greenlet (Lemon-chested),Hylophilus thoracicus griseiventris/aemulus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lecgre2 +18264,issf,lecgre3,Lemon-chested Greenlet (Rio de Janeiro),Hylophilus thoracicus thoracicus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lecgre2 +18265,species,cssvir1,Chestnut-sided Shrike-Vireo,Vireolanius melitophrys,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18268,species,grsvir1,Green Shrike-Vireo,Vireolanius pulchellus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18273,species,ybsvir1,Yellow-browed Shrike-Vireo,Vireolanius eximius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18276,species,scsvir1,Slaty-capped Shrike-Vireo,Vireolanius leucotis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18277,issf,slcshv1,Slaty-capped Shrike-Vireo (Pale-legged),Vireolanius leucotis mikettae,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scsvir1 +18278,issf,slcshv2,Slaty-capped Shrike-Vireo (Slaty-capped),Vireolanius leucotis [leucotis Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,scsvir1 +18282,species,tacgre1,Tawny-crowned Greenlet,Tunchiornis ochraceiceps,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18283,issf,tacgre2,Tawny-crowned Greenlet (Tawny-crowned),Tunchiornis ochraceiceps [ochraceiceps Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 +18288,issf,tacgre4,Tawny-crowned Greenlet (Rufous-fronted),Tunchiornis ochraceiceps ferrugineifrons/viridior,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 +18291,issf,tacgre5,Tawny-crowned Greenlet (Olive-crowned),Tunchiornis ochraceiceps luteifrons,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 +18292,issf,tacgre3,Tawny-crowned Greenlet (Red-fronted),Tunchiornis ochraceiceps rubrifrons/lutescens,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,tacgre1 +18295,species,lesgre1,Lesser Greenlet,Pachysylvia decurtata,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18296,issf,lesgre2,Lesser Greenlet (Northern),Pachysylvia decurtata decurtata/darienensis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lesgre1 +18299,issf,lesgre3,Lesser Greenlet (Gray-headed),Pachysylvia decurtata minor,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,lesgre1 +18300,species,ducgre1,Dusky-capped Greenlet,Pachysylvia hypoxantha,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18307,species,bucgre1,Buff-cheeked Greenlet,Pachysylvia muscicapina,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18310,species,gofgre1,Golden-fronted Greenlet,Pachysylvia aurantiifrons,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18314,species,rungre1,Rufous-naped Greenlet,Pachysylvia semibrunnea,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18315,spuh,greenl1,greenlet sp.,Hylophilus/Tunchiornis/Pachysylvia sp.,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18316,species,golvir1,Golden Vireo,Vireo hypochryseus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18320,species,blmvir1,Blue Mountain Vireo,Vireo osburni,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18321,species,slavir1,Slaty Vireo,Vireo brevipennis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18322,species,bkcvir1,Black-capped Vireo,Vireo atricapilla,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18323,species,dwavir1,Dwarf Vireo,Vireo nelsoni,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18324,species,whevir,White-eyed Vireo,Vireo griseus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18325,issf,whevir1,White-eyed Vireo (White-eyed),Vireo griseus [griseus Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,whevir +18331,issf,whevir2,White-eyed Vireo (Veracruz),Vireo griseus perquisitor,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,whevir +18332,species,thbvir,Thick-billed Vireo,Vireo crassirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18338,species,manvir1,Mangrove Vireo,Vireo pallens,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18339,issf,manvir4,Mangrove Vireo (West Mexico),Vireo pallens paluster,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,manvir1 +18340,issf,manvir3,Mangrove Vireo (Northern Central America),Vireo pallens ochraceus/semiflavus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,manvir1 +18343,issf,thbvir2,Mangrove Vireo (Providencia),Vireo pallens approximans,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,manvir1 +18344,issf,manvir2,Mangrove Vireo (Southern Central America),Vireo pallens pallens,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,manvir1 +18345,species,cozvir1,Cozumel Vireo,Vireo bairdi,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18346,species,stavir1,San Andres Vireo,Vireo caribaeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18347,species,jamvir1,Jamaican Vireo,Vireo modestus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18348,species,cubvir1,Cuban Vireo,Vireo gundlachii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18349,species,purvir1,Puerto Rican Vireo,Vireo latimeri,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18350,species,flbvir1,Flat-billed Vireo,Vireo nanus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18351,species,belvir,Bell's Vireo,Vireo bellii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18352,issf,belvir1,Bell's Vireo (Eastern),Vireo bellii bellii/medius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,belvir +18355,issf,belvir2,Bell's Vireo (Arizona),Vireo bellii arizonae,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,belvir +18356,issf,belvir3,Bell's Vireo (Least),Vireo bellii pusillus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,belvir +18357,species,gryvir,Gray Vireo,Vireo vicinior,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18358,species,hutvir,Hutton's Vireo,Vireo huttoni,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18359,issf,hutvir1,Hutton's Vireo (Pacific),Vireo huttoni [huttoni Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,hutvir +18368,issf,hutvir2,Hutton's Vireo (Interior),Vireo huttoni [stephensi Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,hutvir +18374,species,yetvir,Yellow-throated Vireo,Vireo flavifrons,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18375,species,yewvir1,Yellow-winged Vireo,Vireo carmioli,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18376,species,chovir1,Choco Vireo,Vireo masteri,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18377,species,casvir,Cassin's Vireo,Vireo cassinii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18378,issf,casvir1,Cassin's Vireo (Cassin's),Vireo cassinii cassinii,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,casvir +18379,issf,casvir2,Cassin's Vireo (San Lucas),Vireo cassinii lucasanus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,casvir +18380,species,buhvir,Blue-headed Vireo,Vireo solitarius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18383,slash,y00485,Cassin's/Blue-headed Vireo,Vireo cassinii/solitarius,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18384,species,plsvir,Plumbeous Vireo,Vireo plumbeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18385,issf,pluvir1,Plumbeous Vireo (Plumbeous),Vireo plumbeus [plumbeus Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,plsvir +18389,issf,pluvir2,Plumbeous Vireo (Central American),Vireo plumbeus notius/montanus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,plsvir +18392,slash,y00484,Cassin's/Plumbeous Vireo,Vireo cassinii/plumbeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18393,spuh,solvir1,solitary vireo sp.,Vireo cassinii/solitarius/plumbeus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18394,species,tepgre1,Tepui Vireo,Vireo sclateri,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18395,species,phivir,Philadelphia Vireo,Vireo philadelphicus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18396,species,warvir,Warbling Vireo,Vireo gilvus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18397,issf,eawvir1,Warbling Vireo (Eastern),Vireo gilvus gilvus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,warvir +18398,issf,wewvir2,Warbling Vireo (Western),Vireo gilvus [swainsoni Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,warvir +18403,slash,y00704,Philadelphia/Warbling Vireo,Vireo philadelphicus/gilvus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18404,species,brcvir1,Brown-capped Vireo,Vireo leucophrys,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18416,species,reevir1,Red-eyed Vireo,Vireo olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18417,slash,y00741,Philadelphia/Red-eyed Vireo,Vireo philadelphicus/olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18418,hybrid,x00889,Philadelphia x Red-eyed Vireo (hybrid),Vireo philadelphicus x olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18419,hybrid,x00890,Warbling x Red-eyed Vireo (hybrid),Vireo gilvus x olivaceus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18420,species,chivir1,Chivi Vireo,Vireo chivi,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18421,issf,reevir3,Chivi Vireo (resident),Vireo chivi [agilis Group],Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,chivir1 +18429,issf,reevir2,Chivi Vireo (migratory),Vireo chivi chivi/diversus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",,chivir1 +18432,slash,reevir,Red-eyed/Chivi Vireo,Vireo olivaceus/chivi,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18433,species,norvir1,Noronha Vireo,Vireo gracilirostris,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18434,species,yegvir,Yellow-green Vireo,Vireo flavoviridis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18438,slash,y01145,Red-eyed/Yellow-green Vireo,Vireo olivaceus/flavoviridis,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18439,species,bkwvir,Black-whiskered Vireo,Vireo altiloquus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18446,slash,y01146,Red-eyed/Black-whiskered Vireo,Vireo olivaceus/altiloquus,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18447,species,yucvir,Yucatan Vireo,Vireo magister,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18450,spuh,vireo2,vireo sp. (Red-eyed Vireo complex),Vireo sp. (Red-eyed Vireo complex),Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18451,spuh,vireo1,vireo sp.,Vireo sp.,Passeriformes,"Vireonidae (Vireos, Shrike-Babblers, and Erpornis)",, +18452,species,ruspit1,Rusty Pitohui,Pseudorectes ferrugineus,Passeriformes,Pachycephalidae (Whistlers and Allies),Whistlers and Allies, +18459,species,whbpit1,White-bellied Pitohui,Pseudorectes incertus,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18460,species,sansht2,Sandstone Shrikethrush,Colluricincla woodwardi,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18461,species,bowsht1,Bower's Shrikethrush,Colluricincla boweri,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18462,species,grysht1,Gray Shrikethrush,Colluricincla harmonica,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18469,species,soosht1,Sooty Shrikethrush,Colluricincla tenebrosa,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18472,species,rufsht1,Little Shrikethrush,Colluricincla megarhyncha,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18473,issf,litshr6,Little Shrikethrush (Waigeo),Colluricincla megarhyncha affinis,Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18474,issf,rufsht2,Little Shrikethrush (Arafura),Colluricincla megarhyncha [megarhyncha Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18482,issf,rufsht3,Little Shrikethrush (Little),Colluricincla megarhyncha parvula,Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18483,issf,litshr1,Little Shrikethrush (Mamberamo),Colluricincla megarhyncha [obscura Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18487,issf,litshr3,Little Shrikethrush (Sepik-Ramu),Colluricincla megarhyncha [tappenbecki Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18491,issf,litshr5,Little Shrikethrush (Variable),Colluricincla megarhyncha [fortis Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18497,issf,litshr4,Little Shrikethrush (Tagula),Colluricincla megarhyncha discolor,Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18498,issf,litshr2,Little Shrikethrush (Rufous),Colluricincla megarhyncha [rufogaster Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rufsht1 +18506,spuh,collur1,Colluricincla sp.,Colluricincla sp.,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18507,species,blapit1,Black Pitohui,Melanorectes nigrescens,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18514,species,sansht1,Sangihe Whistler,Coracornis sanghirensis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18515,species,mabwhi1,Maroon-backed Whistler,Coracornis raveni,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18516,species,oliwhi1,Olive Whistler,Pachycephala olivacea,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18522,species,relwhi1,Red-lored Whistler,Pachycephala rufogularis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18523,species,gilwhi1,Gilbert's Whistler,Pachycephala inornata,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18524,species,batwhi1,Bare-throated Whistler,Pachycephala nudigula,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18527,species,fabwhi1,Fawn-breasted Whistler,Pachycephala orpheus,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18528,species,regwhi1,Regent Whistler,Pachycephala schlegelii,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18532,species,necwhi2,Vanuatu Whistler,Pachycephala chlorura,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18537,species,vogwhi1,Vogelkop Whistler,Pachycephala meyeri,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18538,species,sclwhi1,Sclater's Whistler,Pachycephala soror,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18544,species,fijwhi2,Fiji Whistler,Pachycephala vitiensis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18545,issf,whtwhi1,Fiji Whistler (White-throated),Pachycephala vitiensis [vitiensis Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,fijwhi2 +18549,issf,fijwhi1,Fiji Whistler (Fiji),Pachycephala vitiensis [graeffii Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,fijwhi2 +18557,species,samwhi1,Samoan Whistler,Pachycephala flavifrons,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18558,species,tonwhi1,Tongan Whistler,Pachycephala jacquinoti,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18559,species,necwhi3,New Caledonian Whistler,Pachycephala caledonica,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18560,species,guhwhi1,Guadalcanal Hooded Whistler,Pachycephala implicata,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18561,species,bohwhi1,Bougainville Hooded Whistler,Pachycephala richardsi,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18562,species,biswhi1,Bismarck Whistler,Pachycephala citreogaster,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18568,species,louwhi1,Louisiade Whistler,Pachycephala collaris,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18572,species,temwhi1,Temotu Whistler,Pachycephala vanikorensis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18576,species,oriwhi1,Oriole Whistler,Pachycephala orioloides,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18587,species,renwhi1,Rennell Whistler,Pachycephala feminina,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18588,species,rubwhi1,Rusty-breasted Whistler,Pachycephala fulvotincta,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18589,issf,rubwhi2,Rusty-breasted Whistler (Salayar),Pachycephala fulvotincta teysmanni,Passeriformes,Pachycephalidae (Whistlers and Allies),,rubwhi1 +18590,issf,rubwhi3,Rusty-breasted Whistler (Rusty-breasted),Pachycephala fulvotincta [fulvotincta Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,rubwhi1 +18595,species,yetwhi1,Yellow-throated Whistler,Pachycephala macrorhyncha,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18596,issf,yetwhi2,Yellow-throated Whistler (Moluccan),Pachycephala macrorhyncha [macrorhyncha Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,yetwhi1 +18602,issf,yetwhi3,Yellow-throated Whistler (Timor),Pachycephala macrorhyncha calliope,Passeriformes,Pachycephalidae (Whistlers and Allies),,yetwhi1 +18603,issf,yetwhi4,Yellow-throated Whistler (Banda Sea),Pachycephala macrorhyncha par/compar,Passeriformes,Pachycephalidae (Whistlers and Allies),,yetwhi1 +18606,issf,yetwhi5,Yellow-throated Whistler (Damar),Pachycephala macrorhyncha dammeriana,Passeriformes,Pachycephalidae (Whistlers and Allies),,yetwhi1 +18607,issf,yetwhi6,Yellow-throated Whistler (Babar),Pachycephala macrorhyncha sharpei,Passeriformes,Pachycephalidae (Whistlers and Allies),,yetwhi1 +18608,species,bkcwhi1,Black-chinned Whistler,Pachycephala mentalis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18612,species,golwhi2,Baliem Whistler,Pachycephala balim,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18613,species,golwhi1,Golden Whistler,Pachycephala pectoralis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18614,issf,golwhi3,Golden Whistler (Golden),Pachycephala pectoralis [pectoralis Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,golwhi1 +18620,issf,golwhi4,Golden Whistler (fuliginosa),Pachycephala pectoralis fuliginosa,Passeriformes,Pachycephalidae (Whistlers and Allies),,golwhi1 +18621,species,weswhi2,Western Whistler,Pachycephala occidentalis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18622,species,bltwhi1,Black-tailed Whistler,Pachycephala melanura,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18627,species,mornin1,Morningbird,Pachycephala tenebrosa,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18628,species,brbwhi1,Brown-backed Whistler,Pachycephala modesta,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18632,species,lorwhi1,Lorentz's Whistler,Pachycephala lorentzi,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18633,species,gobwhi1,Golden-backed Whistler,Pachycephala aurea,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18634,species,yebwhi1,Yellow-bellied Whistler,Pachycephala philippinensis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18642,species,borwhi1,Bornean Whistler,Pachycephala hypoxantha,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18645,species,subwhi1,Sulphur-bellied Whistler,Pachycephala sulfuriventer,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18646,species,manwhi1,Mangrove Whistler,Pachycephala cinerea,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18647,species,grbwhi1,Green-backed Whistler,Pachycephala albiventris,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18648,species,whvwhi1,White-vented Whistler,Pachycephala homeyeri,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18649,issf,whvwhi2,White-vented Whistler (Sulu),Pachycephala homeyeri homeyeri,Passeriformes,Pachycephalidae (Whistlers and Allies),,whvwhi1 +18650,issf,whvwhi3,White-vented Whistler (Cebu),Pachycephala homeyeri major,Passeriformes,Pachycephalidae (Whistlers and Allies),,whvwhi1 +18651,issf,whvwhi4,White-vented Whistler (White-vented),Pachycephala homeyeri winchelli,Passeriformes,Pachycephalidae (Whistlers and Allies),,whvwhi1 +18652,species,islwhi2,Island Whistler,Pachycephala phaionota,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18653,species,biawhi1,Biak Whistler,Pachycephala melanorhyncha,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18654,species,ruswhi1,Rusty Whistler,Pachycephala hyperythra,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18659,species,grywhi2,Gray Whistler,Pachycephala simplex,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18660,issf,grywhi1,Gray Whistler (Brown),Pachycephala simplex simplex/brunnescens,Passeriformes,Pachycephalidae (Whistlers and Allies),,grywhi2 +18663,issf,gyhwhi1,Gray Whistler (Gray-headed),Pachycephala simplex [griseiceps Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,grywhi2 +18670,species,walwhi1,Wallacean Whistler,Pachycephala arctitorquis,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18674,species,drawhi1,Drab Whistler,Pachycephala griseonota,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18675,issf,drawhi2,Drab Whistler (Drab),Pachycephala griseonota [griseonota Group],Passeriformes,Pachycephalidae (Whistlers and Allies),,drawhi1 +18681,issf,drawhi3,Drab Whistler (Cinnamon-breasted),Pachycephala griseonota johni,Passeriformes,Pachycephalidae (Whistlers and Allies),,drawhi1 +18682,species,whbwhi1,White-bellied Whistler,Pachycephala leucogastra,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18685,species,blhwhi1,Black-headed Whistler,Pachycephala monacha,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18688,species,rufwhi1,Rufous Whistler,Pachycephala rufiventris,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18694,species,whbwhi2,White-breasted Whistler,Pachycephala lanioides,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18698,spuh,pachyc1,Pachycephala sp.,Pachycephala sp.,Passeriformes,Pachycephalidae (Whistlers and Allies),, +18699,species,hoopit1,Hooded Pitohui,Pitohui dichrous,Passeriformes,Oriolidae (Old World Orioles),Old World Orioles, +18702,species,varpit4,Raja Ampat Pitohui,Pitohui cerviniventris,Passeriformes,Oriolidae (Old World Orioles),, +18705,species,varpit2,Northern Variable Pitohui,Pitohui kirhocephalus,Passeriformes,Oriolidae (Old World Orioles),, +18715,species,varpit3,Southern Variable Pitohui,Pitohui uropygialis,Passeriformes,Oriolidae (Old World Orioles),, +18721,slash,y01147,Northern/Southern Variable Pitohui,Pitohui kirhocephalus/uropygialis,Passeriformes,Oriolidae (Old World Orioles),, +18722,species,timori1,Timor Oriole,Oriolus melanotis,Passeriformes,Oriolidae (Old World Orioles),, +18723,issf,timori2,Timor Oriole (Timor),Oriolus melanotis melanotis,Passeriformes,Oriolidae (Old World Orioles),,timori1 +18724,issf,timori3,Timor Oriole (Wetar),Oriolus melanotis finschi,Passeriformes,Oriolidae (Old World Orioles),,timori1 +18725,species,burori2,Buru Oriole,Oriolus bouroensis,Passeriformes,Oriolidae (Old World Orioles),, +18726,species,burori3,Tanimbar Oriole,Oriolus decipiens,Passeriformes,Oriolidae (Old World Orioles),, +18727,species,serori1,Seram Oriole,Oriolus forsteni,Passeriformes,Oriolidae (Old World Orioles),, +18728,species,halori1,Halmahera Oriole,Oriolus phaeochromus,Passeriformes,Oriolidae (Old World Orioles),, +18729,species,broori1,Brown Oriole,Oriolus szalayi,Passeriformes,Oriolidae (Old World Orioles),, +18730,species,olbori1,Olive-backed Oriole,Oriolus sagittatus,Passeriformes,Oriolidae (Old World Orioles),, +18735,species,greori1,Green Oriole,Oriolus flavocinctus,Passeriformes,Oriolidae (Old World Orioles),, +18740,species,datori1,Dark-throated Oriole,Oriolus xanthonotus,Passeriformes,Oriolidae (Old World Orioles),, +18745,species,whlori1,White-lored Oriole,Oriolus albiloris,Passeriformes,Oriolidae (Old World Orioles),, +18746,species,phiori1,Philippine Oriole,Oriolus steerii,Passeriformes,Oriolidae (Old World Orioles),, +18752,species,isaori1,Isabela Oriole,Oriolus isabellae,Passeriformes,Oriolidae (Old World Orioles),, +18753,species,eugori2,Eurasian Golden Oriole,Oriolus oriolus,Passeriformes,Oriolidae (Old World Orioles),, +18754,species,ingori1,Indian Golden Oriole,Oriolus kundoo,Passeriformes,Oriolidae (Old World Orioles),, +18755,slash,y00691,Eurasian/Indian Golden Oriole,Oriolus oriolus/kundoo,Passeriformes,Oriolidae (Old World Orioles),, +18756,species,afgori2,African Golden Oriole,Oriolus auratus,Passeriformes,Oriolidae (Old World Orioles),, +18759,slash,y01041,Eurasian/African Golden Oriole,Oriolus oriolus/auratus,Passeriformes,Oriolidae (Old World Orioles),, +18760,species,blnori1,Black-naped Oriole,Oriolus chinensis,Passeriformes,Oriolidae (Old World Orioles),, +18761,issf,bknori1,Black-naped Oriole (East Asian),Oriolus chinensis diffusus,Passeriformes,Oriolidae (Old World Orioles),,blnori1 +18762,issf,bknori2,Black-naped Oriole (Sunda),Oriolus chinensis [maculatus Group],Passeriformes,Oriolidae (Old World Orioles),,blnori1 +18770,issf,bknori4,Black-naped Oriole (Philippine),Oriolus chinensis [chinensis Group],Passeriformes,Oriolidae (Old World Orioles),,blnori1 +18774,issf,bknori6,Black-naped Oriole (Talaud),Oriolus chinensis melanisticus,Passeriformes,Oriolidae (Old World Orioles),,blnori1 +18775,issf,bknori5,Black-naped Oriole (Sulawesi),Oriolus chinensis [frontalis Group],Passeriformes,Oriolidae (Old World Orioles),,blnori1 +18780,issf,bknori7,Black-naped Oriole (Tenggara),Oriolus chinensis broderipi/boneratensis,Passeriformes,Oriolidae (Old World Orioles),,blnori1 +18783,slash,y00800,Indian Golden/Black-naped Oriole,Oriolus kundoo/chinensis,Passeriformes,Oriolidae (Old World Orioles),, +18784,species,slbori1,Slender-billed Oriole,Oriolus tenuirostris,Passeriformes,Oriolidae (Old World Orioles),, +18787,species,grhori1,Green-headed Oriole,Oriolus chlorocephalus,Passeriformes,Oriolidae (Old World Orioles),, +18788,issf,gnhori1,Green-headed Oriole (Green-headed),Oriolus chlorocephalus chlorocephalus/amani,Passeriformes,Oriolidae (Old World Orioles),,grhori1 +18791,issf,gnhori2,Green-headed Oriole (Gorongosa),Oriolus chlorocephalus speculifer,Passeriformes,Oriolidae (Old World Orioles),,grhori1 +18792,species,satori1,Sao Tome Oriole,Oriolus crassirostris,Passeriformes,Oriolidae (Old World Orioles),, +18793,species,wbhori1,Western Black-headed Oriole,Oriolus brachyrynchus,Passeriformes,Oriolidae (Old World Orioles),, +18796,species,dahori1,Ethiopian Black-headed Oriole,Oriolus monacha,Passeriformes,Oriolidae (Old World Orioles),, +18799,species,abhori1,African Black-headed Oriole,Oriolus larvatus,Passeriformes,Oriolidae (Old World Orioles),, +18806,species,bltori1,Black-tailed Oriole,Oriolus percivali,Passeriformes,Oriolidae (Old World Orioles),, +18807,species,blwori1,Black-winged Oriole,Oriolus nigripennis,Passeriformes,Oriolidae (Old World Orioles),, +18808,species,blhori1,Black-hooded Oriole,Oriolus xanthornus,Passeriformes,Oriolidae (Old World Orioles),, +18814,species,blaori1,Black Oriole,Oriolus hosii,Passeriformes,Oriolidae (Old World Orioles),, +18815,species,bacori1,Black-and-crimson Oriole,Oriolus cruentus,Passeriformes,Oriolidae (Old World Orioles),, +18816,issf,bacori2,Black-and-crimson Oriole (Black-and-crimson),Oriolus cruentus [consanguineus Group],Passeriformes,Oriolidae (Old World Orioles),,bacori1 +18820,issf,bacori3,Black-and-crimson Oriole (Javan),Oriolus cruentus cruentus,Passeriformes,Oriolidae (Old World Orioles),,bacori1 +18821,species,marori2,Maroon Oriole,Oriolus traillii,Passeriformes,Oriolidae (Old World Orioles),, +18826,species,silori1,Silver Oriole,Oriolus mellianus,Passeriformes,Oriolidae (Old World Orioles),, +18827,spuh,oriolu1,old world oriole sp.,Oriolus sp.,Passeriformes,Oriolidae (Old World Orioles),, +18828,species,wetfig1,Wetar Figbird,Sphecotheres hypoleucus,Passeriformes,Oriolidae (Old World Orioles),, +18829,species,grnfig1,Green Figbird,Sphecotheres viridis,Passeriformes,Oriolidae (Old World Orioles),, +18830,species,ausfig1,Australasian Figbird,Sphecotheres vieilloti,Passeriformes,Oriolidae (Old World Orioles),, +18836,species,noipio1,North Island Piopio,Turnagra tanagra,Passeriformes,Oriolidae (Old World Orioles),, +18837,species,soipio1,South Island Piopio,Turnagra capensis,Passeriformes,Oriolidae (Old World Orioles),, +18840,species,blbboa1,Black-breasted Boatbill,Machaerirhynchus nigripectus,Passeriformes,Machaerirhynchidae (Boatbills),Boatbills, +18844,species,yebboa1,Yellow-breasted Boatbill,Machaerirhynchus flaviventer,Passeriformes,Machaerirhynchidae (Boatbills),, +18851,species,ashwoo2,Ashy Woodswallow,Artamus fuscus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",Woodswallows, +18852,species,fijwoo1,Fiji Woodswallow,Artamus mentalis,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18853,species,whbwoo8,Ivory-backed Woodswallow,Artamus monachus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18854,species,grewoo1,Great Woodswallow,Artamus maximus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18855,species,whbwoo4,White-breasted Woodswallow,Artamus leucorynchus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18865,species,biswoo1,Bismarck Woodswallow,Artamus insignis,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18866,species,maswoo1,Masked Woodswallow,Artamus personatus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18867,species,whbwoo5,White-browed Woodswallow,Artamus superciliosus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18868,hybrid,x00962,Masked x White-browed Woodswallow (hybrid),Artamus personatus x superciliosus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18869,slash,y01039,Masked/White-browed Woodswallow,Artamus personatus/superciliosus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18870,species,blfwoo1,Black-faced Woodswallow,Artamus cinereus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18871,issf,bkfwoo1,Black-faced Woodswallow (White-vented),Artamus cinereus normani/inkermani,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,blfwoo1 +18874,issf,bkfwoo2,Black-faced Woodswallow (Black-vented),Artamus cinereus [cinereus Group],Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,blfwoo1 +18878,species,duswoo1,Dusky Woodswallow,Artamus cyanopterus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18881,species,litwoo4,Little Woodswallow,Artamus minor,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18884,spuh,woodsw1,woodswallow sp.,Artamus sp.,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18885,species,moupel1,Mountain Peltops,Peltops montanus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",Bellmagpies and Allies, +18886,species,lowpel1,Lowland Peltops,Peltops blainvillii,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18887,species,blbbut1,Black-backed Butcherbird,Cracticus mentalis,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18890,species,grybut1,Gray Butcherbird,Cracticus torquatus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18894,species,sibbut1,Silver-backed Butcherbird,Cracticus argenteus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18897,species,hoobut1,Hooded Butcherbird,Cracticus cassicus,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18900,species,tagbut1,Tagula Butcherbird,Cracticus louisiadensis,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18901,species,piebut1,Pied Butcherbird,Cracticus nigrogularis,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18904,species,blabut1,Black Butcherbird,Cracticus quoyi,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18910,species,ausmag2,Australian Magpie,Gymnorhina tibicen,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18911,issf,ausmag1,Australian Magpie (Papuan),Gymnorhina tibicen papuana,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,ausmag2 +18912,issf,ausmag3,Australian Magpie (Black-backed),Gymnorhina tibicen [tibicen Group],Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,ausmag2 +18917,issf,ausmag6,Australian Magpie (Western),Gymnorhina tibicen dorsalis,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,ausmag2 +18918,intergrade,ausmag4,Australian Magpie (Black-backed x Western),Gymnorhina tibicen [tibicen Group] x dorsalis,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,ausmag2 +18919,issf,ausmag7,Australian Magpie (White-backed),Gymnorhina tibicen telonocua/tyrannica,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,ausmag2 +18922,intergrade,ausmag5,Australian Magpie (Black-backed x White-backed),Gymnorhina tibicen [tibicen Group] x telonocua/tyrannica,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,ausmag2 +18923,issf,ausmag8,Australian Magpie (Tasmanian),Gymnorhina tibicen hypoleuca,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,ausmag2 +18924,species,piecur1,Pied Currawong,Strepera graculina,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18931,species,blacur2,Black Currawong,Strepera fuliginosa,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18935,species,grycur1,Gray Currawong,Strepera versicolor,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18936,issf,grycur2,Gray Currawong (Gray),Strepera versicolor versicolor/plumbea,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,grycur1 +18939,issf,grycur3,Gray Currawong (Clinking),Strepera versicolor arguta,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,grycur1 +18940,issf,grycur4,Gray Currawong (Black-winged),Strepera versicolor melanoptera,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,grycur1 +18941,issf,grycur5,Gray Currawong (Brown),Strepera versicolor intermedia,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,grycur1 +18942,issf,grycur6,Gray Currawong (Kangaroo I.),Strepera versicolor halmaturina,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",,grycur1 +18943,spuh,curraw1,currawong sp.,Strepera sp.,Passeriformes,"Artamidae (Woodswallows, Bellmagpies, and Allies)",, +18944,species,motwhi1,Mottled Berryhunter,Rhagologus leucostigma,Passeriformes,Rhagologidae (Mottled Berryhunter),Mottled Berryhunter, +18948,species,whtshr1,White-tailed Shrike,Lanioturdus torquatus,Passeriformes,Platysteiridae (Wattle-eyes and Batises),Wattle-eyes and Batises, +18949,species,btweye2,Brown-throated Wattle-eye,Platysteira cyanea,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18953,species,wfweye1,White-fronted Wattle-eye,Platysteira albifrons,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18954,species,btweye1,Black-throated Wattle-eye,Platysteira peltata,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18958,species,baweye1,Banded Wattle-eye,Platysteira laticincta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18959,species,chweye1,Chestnut Wattle-eye,Platysteira castanea,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18960,species,weawae1,West African Wattle-eye,Platysteira hormophora,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18961,species,wsweye1,White-spotted Wattle-eye,Platysteira tonsa,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18962,species,rcweye1,Red-cheeked Wattle-eye,Platysteira blissetti,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18963,species,bnweye1,Black-necked Wattle-eye,Platysteira chalybea,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18964,species,jaweye1,Jameson's Wattle-eye,Platysteira jamesoni,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18965,species,ybweye1,Yellow-bellied Wattle-eye,Platysteira concreta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18966,issf,yebwae1,Yellow-bellied Wattle-eye (West African),Platysteira concreta concreta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 +18967,issf,yebwae2,Yellow-bellied Wattle-eye (Angolan),Platysteira concreta ansorgei,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 +18968,issf,yebwae3,Yellow-bellied Wattle-eye (Central African),Platysteira concreta graueri,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 +18969,issf,yebwae4,Yellow-bellied Wattle-eye (Kungwe),Platysteira concreta kungwensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,ybweye1 +18970,spuh,wattle2,wattle-eye sp.,Platysteira sp.,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18971,species,boubat1,Boulton's Batis,Batis margaritae,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18972,issf,boubat2,Boulton's Batis (Angolan),Batis margaritae margaritae,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,boubat1 +18973,issf,boubat3,Boulton's Batis (Eastern),Batis margaritae kathleenae,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,boubat1 +18974,species,shtbat1,Short-tailed Batis,Batis mixta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18975,issf,shtbat2,Short-tailed Batis (Short-tailed),Batis mixta mixta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,shtbat1 +18976,issf,shtbat3,Short-tailed Batis (Reichenow's),Batis mixta reichenowi,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,shtbat1 +18977,species,darbat1,Dark Batis,Batis crypta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18978,species,ruwbat1,Rwenzori Batis,Batis diops,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18979,species,capbat1,Cape Batis,Batis capensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18980,issf,capbat2,Cape Batis (Malawi),Batis capensis dimorpha/sola,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,capbat1 +18983,issf,capbat3,Cape Batis (Gray-mantled),Batis capensis [erythrophthalma Group],Passeriformes,Platysteiridae (Wattle-eyes and Batises),,capbat1 +18987,issf,capbat4,Cape Batis (Cape),Batis capensis capensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),,capbat1 +18988,species,woobat1,Woodward's Batis,Batis fratrum,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18989,species,chibat1,Chinspot Batis,Batis molitor,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18994,species,palbat1,Pale Batis,Batis soror,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18995,species,pribat1,Pririt Batis,Batis pririt,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18998,species,senbat1,Senegal Batis,Batis senegalensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +18999,species,gyhbat1,Gray-headed Batis,Batis orientalis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19004,species,bkhbat1,Western Black-headed Batis,Batis erlangeri,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19007,species,bkhbat2,Eastern Black-headed Batis,Batis minor,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19010,slash,blhbat1,Western/Eastern Black-headed Batis,Batis erlangeri/minor,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19011,species,pygbat1,Pygmy Batis,Batis perkeo,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19012,species,verbat1,Verreaux's Batis,Batis minima,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19013,species,itubat1,Ituri Batis,Batis ituriensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19014,species,fepbat1,Bioko Batis,Batis poensis,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19015,species,weabat1,West African Batis,Batis occulta,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19016,species,angbat1,Angola Batis,Batis minulla,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19017,spuh,batis1,Batis sp.,Batis sp.,Passeriformes,Platysteiridae (Wattle-eyes and Batises),, +19018,species,whihel1,White Helmetshrike,Prionops plumatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)","Vangas, Helmetshrikes, and Allies", +19019,issf,whihel2,White Helmetshrike (Long-crested),Prionops plumatus plumatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,whihel1 +19020,issf,whihel3,White Helmetshrike (Yellow-eyed),Prionops plumatus [poliocephalus Group],Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,whihel1 +19025,species,gychel1,Gray-crested Helmetshrike,Prionops poliolophus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19026,species,yechel1,Yellow-crested Helmetshrike,Prionops alberti,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19027,species,chbhel1,Red-billed Helmetshrike,Prionops caniceps,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19028,issf,rebhel1,Red-billed Helmetshrike (Red-billed),Prionops caniceps caniceps,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chbhel1 +19029,issf,rebhel2,Red-billed Helmetshrike (Gray-cheeked),Prionops caniceps harterti,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chbhel1 +19030,species,rubhel1,Rufous-bellied Helmetshrike,Prionops rufiventris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19033,species,rethel1,Retz's Helmetshrike,Prionops retzii,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19038,species,anghel1,Angola Helmetshrike,Prionops gabela,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19039,species,chfhel1,Chestnut-fronted Helmetshrike,Prionops scopifrons,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19043,species,afrshf1,African Shrike-flycatcher,Megabyas flammulatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19046,species,bawfly1,Black-and-white Shrike-flycatcher,Bias musicus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19050,species,malwoo1,Malabar Woodshrike,Tephrodornis sylvicola,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19051,species,larwoo1,Large Woodshrike,Tephrodornis virgatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19062,species,comwoo1,Common Woodshrike,Tephrodornis pondicerianus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19066,slash,y01096,Malabar/Common Woodshrike,Tephrodornis sylvicola/pondicerianus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19067,slash,y00663,Large/Common Woodshrike,Tephrodornis virgatus/pondicerianus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19068,species,srlwoo1,Sri Lanka Woodshrike,Tephrodornis affinis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19069,species,bwfshr1,Bar-winged Flycatcher-shrike,Hemipus picatus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19074,species,bwfshr2,Black-winged Flycatcher-shrike,Hemipus hirundinaceus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19075,species,ruwphi2,Rufous-winged Philentoma,Philentoma pyrhoptera,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19078,species,mabphi2,Maroon-breasted Philentoma,Philentoma velata,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19081,slash,y00889,Rufous-winged/Maroon-breasted Philentoma,Philentoma pyrhoptera/velata,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19082,species,arcnew1,Archbold's Newtonia,Newtonia archboldi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19083,species,comnew1,Common Newtonia,Newtonia brunneicauda,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19086,species,darnew1,Dark Newtonia,Newtonia amphichroa,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19087,issf,darnew2,Dark Newtonia (amphichroa),Newtonia amphichroa amphichroa,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,darnew1 +19088,issf,darnew3,Dark Newtonia (lavarambo),Newtonia amphichroa lavarambo,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,darnew1 +19089,species,retnew1,Red-tailed Newtonia,Newtonia fanovanae,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19090,species,tylvan1,Tylas Vanga,Tylas eduardi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19091,issf,tylvan2,Tylas Vanga (Eduard's),Tylas eduardi eduardi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,tylvan1 +19092,issf,tylvan3,Tylas Vanga (White-throated),Tylas eduardi albigularis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,tylvan1 +19093,species,retvan1,Red-tailed Vanga,Calicalicus madagascariensis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19094,species,resvan1,Red-shouldered Vanga,Calicalicus rufocarpalis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19095,species,nuthat2,Nuthatch-Vanga,Hypositta corallirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19096,species,chavan2,Chabert Vanga,Leptopterus chabert,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19097,issf,chavan1,Chabert Vanga (Chabert),Leptopterus chabert chabert,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chavan2 +19098,issf,chavan3,Chabert Vanga (White-tailed),Leptopterus chabert schistocercus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,chavan2 +19099,species,crobab1,Crossley's Vanga,Mystacornis crossleyi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19100,species,bluvan1,Blue Vanga,Cyanolanius madagascarinus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19101,issf,bluvan3,Blue Vanga (Madagascar),Cyanolanius madagascarinus madagascarinus,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,bluvan1 +19102,issf,bluvan2,Blue Vanga (Comoro),Cyanolanius madagascarinus comorensis/bensoni,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,bluvan1 +19105,species,hobvan1,Hook-billed Vanga,Vanga curvirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19106,issf,hobvan2,Hook-billed Vanga (Hook-billed),Vanga curvirostris curvirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,hobvan1 +19107,issf,hobvan3,Hook-billed Vanga (Black-crowned),Vanga curvirostris cetera,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,hobvan1 +19108,species,warfly1,Ward's Flycatcher,Pseudobias wardi,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19109,species,rufvan1,Rufous Vanga,Schetba rufa,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19110,issf,rufvan2,Rufous Vanga (rufa),Schetba rufa rufa,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,rufvan1 +19111,issf,rufvan3,Rufous Vanga (occidentalis),Schetba rufa occidentalis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,rufvan1 +19112,species,helvan1,Helmet Vanga,Euryceros prevostii,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19113,species,bervan1,Bernier's Vanga,Oriolia bernieri,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19114,species,sibvan1,Sickle-billed Vanga,Falculea palliata,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19115,species,whhvan1,White-headed Vanga,Artamella viridis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19116,issf,whhvan2,White-headed Vanga (viridis),Artamella viridis viridis,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,whhvan1 +19117,issf,whhvan3,White-headed Vanga (annae),Artamella viridis annae,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",,whhvan1 +19118,species,polvan1,Pollen's Vanga,Xenopirostris polleni,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19119,species,lafvan1,Lafresnaye's Vanga,Xenopirostris xenopirostris,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19120,species,vadvan1,Van Dam's Vanga,Xenopirostris damii,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19121,spuh,vangid1,Vangidae sp.,Vangidae sp.,Passeriformes,"Vangidae (Vangas, Helmetshrikes, and Allies)",, +19122,species,borbri1,Bornean Bristlehead,Pityriasis gymnocephala,Passeriformes,Pityriasidae (Bristlehead),Bristlehead, +19123,species,comior1,Common Iora,Aegithina tiphia,Passeriformes,Aegithinidae (Ioras),Ioras, +19135,species,whtior1,White-tailed Iora,Aegithina nigrolutea,Passeriformes,Aegithinidae (Ioras),, +19136,slash,y00890,Common/White-tailed Iora,Aegithina tiphia/nigrolutea,Passeriformes,Aegithinidae (Ioras),, +19137,species,greior2,Green Iora,Aegithina viridissima,Passeriformes,Aegithinidae (Ioras),, +19140,species,greior1,Great Iora,Aegithina lafresnayei,Passeriformes,Aegithinidae (Ioras),, +19144,species,brubru1,Brubru,Nilaus afer,Passeriformes,Malaconotidae (Bushshrikes and Allies),Bushshrikes and Allies, +19154,species,norpuf1,Northern Puffback,Dryoscopus gambensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19159,species,pripuf1,Pringle's Puffback,Dryoscopus pringlii,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19160,species,blbpuf2,Black-backed Puffback,Dryoscopus cubla,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19166,species,reepuf1,Red-eyed Puffback,Dryoscopus senegalensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19167,species,pifpuf1,Pink-footed Puffback,Dryoscopus angolensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19171,species,labpuf1,Sabine's Puffback,Dryoscopus sabini,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19174,spuh,puffba1,puffback sp.,Dryoscopus sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19175,species,martch2,Marsh Tchagra,Tchagra minutus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19176,issf,martch1,Marsh Tchagra (Marsh),Tchagra minutus minutus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,martch2 +19177,issf,martch3,Marsh Tchagra (Anchieta's),Tchagra minutus anchietae/reichenowi,Passeriformes,Malaconotidae (Bushshrikes and Allies),,martch2 +19180,species,bkctch1,Black-crowned Tchagra,Tchagra senegalus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19181,issf,bkctch2,Black-crowned Tchagra (Hooded),Tchagra senegalus cucullatus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,bkctch1 +19182,issf,bkctch3,Black-crowned Tchagra (Black-crowned),Tchagra senegalus [senegalus Group],Passeriformes,Malaconotidae (Bushshrikes and Allies),,bkctch1 +19192,species,brctch1,Brown-crowned Tchagra,Tchagra australis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19202,species,thstch1,Three-streaked Tchagra,Tchagra jamesi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19205,species,soutch1,Southern Tchagra,Tchagra tchagra,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19209,spuh,tchagr1,Tchagra sp.,Tchagra sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19210,species,renbus1,Red-naped Bushshrike,Laniarius ruficeps,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19214,species,sombou1,Coastal Boubou,Laniarius nigerrimus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19215,species,luebus1,Lühder's Bushshrike,Laniarius luehderi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19216,species,brabus1,Braun's Bushshrike,Laniarius brauni,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19217,species,gabbus1,Gabela Bushshrike,Laniarius amboimensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19218,species,turbou1,Turati's Boubou,Laniarius turatii,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19219,species,trobou2,Ethiopian Boubou,Laniarius aethiopicus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19220,species,trobou1,Tropical Boubou,Laniarius major,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19225,species,zanbou1,Zanzibar Boubou,Laniarius sublacteus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19226,species,gabbou1,Gabon Boubou,Laniarius bicolor,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19227,issf,gabbou2,Gabon Boubou (Gabon),Laniarius bicolor bicolor/guttatus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,gabbou1 +19230,issf,gabbou3,Gabon Boubou (Okavango),Laniarius bicolor sticturus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,gabbou1 +19231,species,soubou1,Southern Boubou,Laniarius ferrugineus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19238,species,comgon1,Yellow-crowned Gonolek,Laniarius barbarus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19241,species,blhgon1,Black-headed Gonolek,Laniarius erythrogaster,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19242,species,crbgon1,Crimson-breasted Gonolek,Laniarius atrococcineus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19243,species,papgon1,Papyrus Gonolek,Laniarius mufumbiri,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19244,species,yebbou1,Yellow-breasted Boubou,Laniarius atroflavus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19245,species,slcbou1,Slate-colored Boubou,Laniarius funebris,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19248,species,soobou1,Lowland Sooty Boubou,Laniarius leucorhynchus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19249,species,wisbou1,Willard's Sooty Boubou,Laniarius willardi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19250,species,mosbou1,Western Boubou,Laniarius poensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19251,issf,mosbou2,Western Boubou (Cameroon),Laniarius poensis camerunensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,mosbou1 +19252,issf,mosbou3,Western Boubou (Bioko),Laniarius poensis poensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,mosbou1 +19253,species,mosbou4,Albertine Boubou,Laniarius holomelas,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19254,species,fuebou1,Fülleborn's Boubou,Laniarius fuelleborni,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19255,issf,fuebou2,Fülleborn's Boubou (Usambara),Laniarius fuelleborni usambaricus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,fuebou1 +19256,issf,fuebou3,Fülleborn's Boubou (Fülleborn's),Laniarius fuelleborni fuelleborni,Passeriformes,Malaconotidae (Bushshrikes and Allies),,fuebou1 +19257,spuh,boubou1,boubou sp.,Laniarius sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19258,species,ropbus1,Rosy-patched Bushshrike,Rhodophoneus cruentus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19263,species,bokmak1,Bokmakierie,Telophorus zeylonus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19264,issf,bokmak2,Bokmakierie (Southern),Telophorus zeylonus [zeylonus Group],Passeriformes,Malaconotidae (Bushshrikes and Allies),,bokmak1 +19268,issf,bokmak3,Bokmakierie (Chimanimani),Telophorus zeylonus restrictus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,bokmak1 +19269,species,gygbus1,Gray-green Bushshrike,Telophorus bocagei,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19272,species,subbus1,Sulphur-breasted Bushshrike,Telophorus sulfureopectus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19275,species,olibus1,Olive Bushshrike,Telophorus olivaceus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19281,species,macbus2,Many-colored Bushshrike,Telophorus multicolor,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19285,species,blfbus1,Black-fronted Bushshrike,Telophorus nigrifrons,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19289,species,mtkbus1,Mount Kupe Bushshrike,Telophorus kupeensis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19290,species,focbus2,Four-colored Bushshrike,Telophorus viridis,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19291,issf,focbus1,Four-colored Bushshrike (Gorgeous),Telophorus viridis viridis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,focbus2 +19292,issf,focbus3,Four-colored Bushshrike (Four-colored),Telophorus viridis [quadricolor Group],Passeriformes,Malaconotidae (Bushshrikes and Allies),,focbus2 +19296,species,dohbus1,Doherty's Bushshrike,Telophorus dohertyi,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19297,species,fibbus1,Fiery-breasted Bushshrike,Malaconotus cruentus,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19298,species,lagbus1,Lagden's Bushshrike,Malaconotus lagdeni,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19299,issf,lagbus2,Lagden's Bushshrike (Lagden's),Malaconotus lagdeni lagdeni,Passeriformes,Malaconotidae (Bushshrikes and Allies),,lagbus1 +19300,issf,lagbus3,Lagden's Bushshrike (Eastern),Malaconotus lagdeni centralis,Passeriformes,Malaconotidae (Bushshrikes and Allies),,lagbus1 +19301,species,grbbus1,Green-breasted Bushshrike,Malaconotus gladiator,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19302,species,gyhbus1,Gray-headed Bushshrike,Malaconotus blanchoti,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19310,species,monbus1,Monteiro's Bushshrike,Malaconotus monteiri,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19311,issf,monbus2,Monteiro's Bushshrike (Mt. Cameroon),Malaconotus monteiri perspicillatus,Passeriformes,Malaconotidae (Bushshrikes and Allies),,monbus1 +19312,issf,monbus3,Monteiro's Bushshrike (Monteiro's),Malaconotus monteiri monteiri,Passeriformes,Malaconotidae (Bushshrikes and Allies),,monbus1 +19313,species,ulubus1,Uluguru Bushshrike,Malaconotus alius,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19314,spuh,bushsh1,bushshrike sp.,Telophorus/Malaconotus sp.,Passeriformes,Malaconotidae (Bushshrikes and Allies),, +19315,species,papdro1,Drongo Fantail,Chaetorhynchus papuensis,Passeriformes,Rhipiduridae (Fantails),Fantails, +19316,species,cepfly1,Cerulean Paradise-Flycatcher,Eutrichomyias rowleyi,Passeriformes,Rhipiduridae (Fantails),, +19317,species,silkta2,Taveuni Silktail,Lamprolia victoriae,Passeriformes,Rhipiduridae (Fantails),, +19318,species,silkta3,Natewa Silktail,Lamprolia klinesmithi,Passeriformes,Rhipiduridae (Fantails),, +19319,species,blafan1,Black Fantail,Rhipidura atra,Passeriformes,Rhipiduridae (Fantails),, +19322,species,bacfan1,Black-and-cinnamon Fantail,Rhipidura nigrocinnamomea,Passeriformes,Rhipiduridae (Fantails),, +19325,species,blufan1,Mindanao Blue-Fantail,Rhipidura superciliaris,Passeriformes,Rhipiduridae (Fantails),, +19328,species,visblf1,Visayan Blue-Fantail,Rhipidura samarensis,Passeriformes,Rhipiduridae (Fantails),, +19329,species,tabfan1,Tablas Fantail,Rhipidura sauli,Passeriformes,Rhipiduridae (Fantails),, +19330,species,visfan1,Visayan Fantail,Rhipidura albiventris,Passeriformes,Rhipiduridae (Fantails),, +19331,species,blhfan1,Blue-headed Fantail,Rhipidura cyaniceps,Passeriformes,Rhipiduridae (Fantails),, +19334,species,spofan1,Spotted Fantail,Rhipidura perlata,Passeriformes,Rhipiduridae (Fantails),, +19335,species,citfan1,Cinnamon-tailed Fantail,Rhipidura fuscorufa,Passeriformes,Rhipiduridae (Fantails),, +19336,species,whwfan1,Cockerell's Fantail,Rhipidura cockerelli,Passeriformes,Rhipiduridae (Fantails),, +19337,issf,cocfan1,Cockerell's Fantail (White-winged),Rhipidura cockerelli [cockerelli Group],Passeriformes,Rhipiduridae (Fantails),,whwfan1 +19342,issf,cocfan2,Cockerell's Fantail (Dot-breasted),Rhipidura cockerelli lavellae,Passeriformes,Rhipiduridae (Fantails),,whwfan1 +19343,issf,cocfan3,Cockerell's Fantail (Black-breasted),Rhipidura cockerelli albina,Passeriformes,Rhipiduridae (Fantails),,whwfan1 +19344,issf,cocfan4,Cockerell's Fantail (Spot-breasted),Rhipidura cockerelli coultasi,Passeriformes,Rhipiduridae (Fantails),,whwfan1 +19345,species,norfan1,Northern Fantail,Rhipidura rufiventris,Passeriformes,Rhipiduridae (Fantails),, +19346,issf,norfan2,Northern Fantail (Obi),Rhipidura rufiventris obiensis,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19347,issf,norfan3,Northern Fantail (Buru),Rhipidura rufiventris bouruensis,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19348,issf,norfan4,Northern Fantail (Kai),Rhipidura rufiventris assimilis/finitima,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19351,issf,norfan10,Northern Fantail (Seram),Rhipidura rufiventris cinerea,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19352,issf,norfan5,Northern Fantail (Rote),Rhipidura rufiventris tenkatei,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19353,issf,norfan6,Northern Fantail (Timor),Rhipidura rufiventris rufiventris/pallidiceps,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19356,issf,norfan11,Northern Fantail (Banda Sea),Rhipidura rufiventris hoedti,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19357,issf,norfan12,Northern Fantail (Biak),Rhipidura rufiventris kordensis,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19358,issf,norfan8,Northern Fantail (Chin-spot),Rhipidura rufiventris nigromentalis,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19359,issf,norfan9,Northern Fantail (Melanesian),Rhipidura rufiventris [setosa Group],Passeriformes,Rhipiduridae (Fantails),,norfan1 +19368,issf,norfan13,Northern Fantail (Northern),Rhipidura rufiventris isura,Passeriformes,Rhipiduridae (Fantails),,norfan1 +19369,species,brcfan1,Brown-capped Fantail,Rhipidura diluta,Passeriformes,Rhipiduridae (Fantails),, +19372,species,sotfan1,Sooty Thicket-Fantail,Rhipidura threnothorax,Passeriformes,Rhipiduridae (Fantails),, +19375,species,bltfan1,Black Thicket-Fantail,Rhipidura maculipectus,Passeriformes,Rhipiduridae (Fantails),, +19376,species,wbtfan1,White-bellied Thicket-Fantail,Rhipidura leucothorax,Passeriformes,Rhipiduridae (Fantails),, +19379,species,wilwag1,Willie-wagtail,Rhipidura leucophrys,Passeriformes,Rhipiduridae (Fantails),, +19383,species,piefan1,Malaysian Pied-Fantail,Rhipidura javanica,Passeriformes,Rhipiduridae (Fantails),, +19386,species,phipif1,Philippine Pied-Fantail,Rhipidura nigritorquis,Passeriformes,Rhipiduridae (Fantails),, +19387,species,whtfan1,White-throated Fantail,Rhipidura albicollis,Passeriformes,Rhipiduridae (Fantails),, +19397,species,spbfan1,Spot-breasted Fantail,Rhipidura albogularis,Passeriformes,Rhipiduridae (Fantails),, +19400,hybrid,x00812,White-throated x Spot-breasted Fantail (hybrid),Rhipidura albicollis x albogularis,Passeriformes,Rhipiduridae (Fantails),, +19401,slash,y00892,White-throated/Spot-breasted Fantail,Rhipidura albicollis/albogularis,Passeriformes,Rhipiduridae (Fantails),, +19402,species,rutfan1,Rufous-tailed Fantail,Rhipidura phoenicura,Passeriformes,Rhipiduridae (Fantails),, +19403,species,whbfan1,White-bellied Fantail,Rhipidura euryura,Passeriformes,Rhipiduridae (Fantails),, +19404,species,whbfan2,White-browed Fantail,Rhipidura aureola,Passeriformes,Rhipiduridae (Fantails),, +19408,slash,y00893,White-throated/White-browed Fantail,Rhipidura albicollis/aureola,Passeriformes,Rhipiduridae (Fantails),, +19409,slash,y00801,Spot-breasted/White-browed Fantail,Rhipidura albogularis/aureola,Passeriformes,Rhipiduridae (Fantails),, +19410,species,rubfan1,Rufous-backed Fantail,Rhipidura rufidorsa,Passeriformes,Rhipiduridae (Fantails),, +19414,species,dimfan1,Dimorphic Fantail,Rhipidura brachyrhyncha,Passeriformes,Rhipiduridae (Fantails),, +19415,species,bisfan1,Bismarck Fantail,Rhipidura dahli,Passeriformes,Rhipiduridae (Fantails),, +19418,species,matfan1,Mussau Fantail,Rhipidura matthiae,Passeriformes,Rhipiduridae (Fantails),, +19419,species,malfan1,Malaita Fantail,Rhipidura malaitae,Passeriformes,Rhipiduridae (Fantails),, +19420,species,rubfan2,Sulawesi Fantail,Rhipidura teysmanni,Passeriformes,Rhipiduridae (Fantails),, +19423,species,rubfan3,Taliabu Fantail,Rhipidura sulaensis,Passeriformes,Rhipiduridae (Fantails),, +19424,form,pelfan1,Peleng Fantail (undescribed form),Rhipidura [undescribed form],Passeriformes,Rhipiduridae (Fantails),, +19425,species,cibfan1,Tawny-backed Fantail,Rhipidura superflua,Passeriformes,Rhipiduridae (Fantails),, +19426,species,stbfan1,Streak-breasted Fantail,Rhipidura dedemi,Passeriformes,Rhipiduridae (Fantails),, +19427,species,lotfan1,Long-tailed Fantail,Rhipidura opistherythra,Passeriformes,Rhipiduridae (Fantails),, +19428,species,palfan1,Palau Fantail,Rhipidura lepida,Passeriformes,Rhipiduridae (Fantails),, +19429,species,manfan2,Manus Fantail,Rhipidura semirubra,Passeriformes,Rhipiduridae (Fantails),, +19430,species,ruffan1,Rufous Fantail,Rhipidura rufifrons,Passeriformes,Rhipiduridae (Fantails),, +19431,issf,ruffan3,Rufous Fantail (Moluccan),Rhipidura rufifrons torrida,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19432,issf,ruffan4,Rufous Fantail (Gray-tailed),Rhipidura rufifrons louisiadensis,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19433,issf,ruffan5,Rufous Fantail (Guam),Rhipidura rufifrons uraniae,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19434,issf,ruffan6,Rufous Fantail (Marianas),Rhipidura rufifrons saipanensis/mariae,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19437,issf,ruffan7,Rufous Fantail (Yap),Rhipidura rufifrons versicolor,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19438,issf,ruffan8,Rufous Fantail (White-fronted),Rhipidura rufifrons melaenolaema/utupuae,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19441,issf,ruffan9,Rufous Fantail (Brown-capped),Rhipidura rufifrons agilis,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19442,issf,ruffan10,Rufous Fantail (Brown-backed),Rhipidura rufifrons [rufofronta Group],Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19447,issf,ruffan11,Rufous Fantail (Rufous-backed),Rhipidura rufifrons russata/kuperi,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19450,issf,ruffan12,Rufous Fantail (Dark-throated),Rhipidura rufifrons ugiensis,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19451,issf,ruffan13,Rufous Fantail (Rufous-fronted),Rhipidura rufifrons rufifrons/intermedia,Passeriformes,Rhipiduridae (Fantails),,ruffan1 +19454,species,arafan1,Arafura Fantail,Rhipidura dryas,Passeriformes,Rhipiduridae (Fantails),, +19455,issf,arafan2,Arafura Fantail (Supertramp),Rhipidura dryas [semicollaris Group],Passeriformes,Rhipiduridae (Fantails),,arafan1 +19466,issf,arafan3,Arafura Fantail (Arafura),Rhipidura dryas dryas,Passeriformes,Rhipiduridae (Fantails),,arafan1 +19467,species,pohfan1,Pohnpei Fantail,Rhipidura kubaryi,Passeriformes,Rhipiduridae (Fantails),, +19468,species,frifan1,Friendly Fantail,Rhipidura albolimbata,Passeriformes,Rhipiduridae (Fantails),, +19471,species,chbfan1,Chestnut-bellied Fantail,Rhipidura hyperythra,Passeriformes,Rhipiduridae (Fantails),, +19475,species,brofan1,Brown Fantail,Rhipidura drownei,Passeriformes,Rhipiduridae (Fantails),, +19476,issf,brnfan1,Brown Fantail (Bougainville),Rhipidura drownei drownei,Passeriformes,Rhipiduridae (Fantails),,brofan1 +19477,issf,brnfan2,Brown Fantail (Guadalcanal),Rhipidura drownei ocularis,Passeriformes,Rhipiduridae (Fantails),,brofan1 +19478,species,strfan1,Streaked Fantail,Rhipidura verreauxi,Passeriformes,Rhipiduridae (Fantails),, +19479,issf,strfan2,Streaked Fantail (Vanuatu),Rhipidura verreauxi spilodera,Passeriformes,Rhipiduridae (Fantails),,strfan1 +19480,issf,strfan3,Streaked Fantail (Fiji),Rhipidura verreauxi layardi/erythronota,Passeriformes,Rhipiduridae (Fantails),,strfan1 +19483,issf,strfan4,Streaked Fantail (Taveuni),Rhipidura verreauxi rufilateralis,Passeriformes,Rhipiduridae (Fantails),,strfan1 +19484,issf,strfan5,Streaked Fantail (New Caledonia),Rhipidura verreauxi verreauxi,Passeriformes,Rhipiduridae (Fantails),,strfan1 +19485,species,dusfan1,Dusky Fantail,Rhipidura tenebrosa,Passeriformes,Rhipiduridae (Fantails),, +19486,species,renfan1,Rennell Fantail,Rhipidura rennelliana,Passeriformes,Rhipiduridae (Fantails),, +19487,species,kanfan1,Kadavu Fantail,Rhipidura personata,Passeriformes,Rhipiduridae (Fantails),, +19488,species,samfan1,Samoan Fantail,Rhipidura nebulosa,Passeriformes,Rhipiduridae (Fantails),, +19491,species,gryfan1,Gray Fantail,Rhipidura albiscapa,Passeriformes,Rhipiduridae (Fantails),, +19492,issf,gryfan2,Gray Fantail (Melanesian),Rhipidura albiscapa [pelzelni Group],Passeriformes,Rhipiduridae (Fantails),,gryfan1 +19496,issf,gryfan4,Gray Fantail (keasti),Rhipidura albiscapa keasti,Passeriformes,Rhipiduridae (Fantails),,gryfan1 +19497,issf,gryfan5,Gray Fantail (alisteri),Rhipidura albiscapa alisteri,Passeriformes,Rhipiduridae (Fantails),,gryfan1 +19498,issf,gryfan6,Gray Fantail (albiscapa),Rhipidura albiscapa albiscapa,Passeriformes,Rhipiduridae (Fantails),,gryfan1 +19499,issf,gryfan7,Gray Fantail (preissi),Rhipidura albiscapa preissi,Passeriformes,Rhipiduridae (Fantails),,gryfan1 +19500,issf,gryfan8,Gray Fantail (albicauda),Rhipidura albiscapa albicauda,Passeriformes,Rhipiduridae (Fantails),,gryfan1 +19501,species,manfan1,Mangrove Fantail,Rhipidura phasiana,Passeriformes,Rhipiduridae (Fantails),, +19502,species,nezfan1,New Zealand Fantail,Rhipidura fuliginosa,Passeriformes,Rhipiduridae (Fantails),, +19507,spuh,fantai1,fantail sp.,Rhipidura sp.,Passeriformes,Rhipiduridae (Fantails),, +19508,species,wstdro1,Western Square-tailed Drongo,Dicrurus occidentalis,Passeriformes,Rhipiduridae (Fantails),, +19509,species,shadro1,Sharpe's Drongo,Dicrurus sharpei,Passeriformes,Dicruridae (Drongos),Drongos, +19510,species,cstdro1,Common Square-tailed Drongo,Dicrurus ludwigii,Passeriformes,Dicruridae (Drongos),, +19515,slash,sqtdro1,square-tailed drongo sp.,Dircurus occidentalis/sharpei/ludwigii,Passeriformes,Dicruridae (Drongos),, +19516,species,shidro1,Shining Drongo,Dicrurus atripennis,Passeriformes,Dicruridae (Drongos),, +19517,species,fotdro5,Fork-tailed Drongo,Dicrurus adsimilis,Passeriformes,Dicruridae (Drongos),, +19518,issf,fotdro3,Fork-tailed Drongo (Clancey's),Dicrurus adsimilis apivorus,Passeriformes,Dicruridae (Drongos),,fotdro5 +19519,issf,fotdro2,Fork-tailed Drongo (adsimilis Group),Dicrurus adsimilis [adsimilis Group],Passeriformes,Dicruridae (Drongos),,fotdro5 +19523,species,fotdro4,Glossy-backed Drongo,Dicrurus divaricatus,Passeriformes,Dicruridae (Drongos),, +19526,slash,fotdro1,Fork-tailed/Glossy-backed Drongo,Dicrurus adsimilis/divaricatus,Passeriformes,Dicruridae (Drongos),, +19527,species,vemdro5,Fanti Drongo,Dicrurus atactus,Passeriformes,Dicruridae (Drongos),, +19528,species,vemdro6,Velvet-mantled Drongo,Dicrurus modestus,Passeriformes,Dicruridae (Drongos),, +19529,issf,vemdro3,Velvet-mantled Drongo (Principe),Dicrurus modestus modestus,Passeriformes,Dicruridae (Drongos),,vemdro6 +19530,issf,vemdro4,Velvet-mantled Drongo (coracinus),Dicrurus modestus coracinus,Passeriformes,Dicruridae (Drongos),,vemdro6 +19531,slash,vemdro1,Fanti/Velvet-mantled Drongo,Dicrurus atactus/modestus,Passeriformes,Dicruridae (Drongos),, +19532,species,alddro1,Aldabra Drongo,Dicrurus aldabranus,Passeriformes,Dicruridae (Drongos),, +19533,species,comdro1,Comoro Drongo,Dicrurus fuscipennis,Passeriformes,Dicruridae (Drongos),, +19534,species,credro1,Crested Drongo,Dicrurus forficatus,Passeriformes,Dicruridae (Drongos),, +19535,issf,credro2,Crested Drongo (Malagasy),Dicrurus forficatus forficatus,Passeriformes,Dicruridae (Drongos),,credro1 +19536,issf,credro3,Crested Drongo (Comoro),Dicrurus forficatus potior,Passeriformes,Dicruridae (Drongos),,credro1 +19537,species,maydro1,Mayotte Drongo,Dicrurus waldenii,Passeriformes,Dicruridae (Drongos),, +19538,species,bladro1,Black Drongo,Dicrurus macrocercus,Passeriformes,Dicruridae (Drongos),, +19546,species,ashdro1,Ashy Drongo,Dicrurus leucophaeus,Passeriformes,Dicruridae (Drongos),, +19547,issf,ashdro4,Ashy Drongo (Blackish),Dicrurus leucophaeus [longicaudatus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 +19551,issf,ashdro2,Ashy Drongo (Sooty),Dicrurus leucophaeus [leucophaeus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 +19555,issf,ashdro3,Ashy Drongo (Chinese White-faced),Dicrurus leucophaeus [innexus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 +19559,issf,ashdro5,Ashy Drongo (Island White-faced),Dicrurus leucophaeus [periophthalmicus Group],Passeriformes,Dicruridae (Drongos),,ashdro1 +19564,issf,ashdro6,Ashy Drongo (Bornean),Dicrurus leucophaeus stigmatops,Passeriformes,Dicruridae (Drongos),,ashdro1 +19565,slash,y00638,Black/Ashy Drongo,Dicrurus macrocercus/leucophaeus,Passeriformes,Dicruridae (Drongos),, +19566,species,whbdro1,White-bellied Drongo,Dicrurus caerulescens,Passeriformes,Dicruridae (Drongos),, +19567,issf,whbdro2,White-bellied Drongo (White-bellied),Dicrurus caerulescens caerulescens,Passeriformes,Dicruridae (Drongos),,whbdro1 +19568,issf,whbdro3,White-bellied Drongo (White-vented),Dicrurus caerulescens leucopygialis/insularis,Passeriformes,Dicruridae (Drongos),,whbdro1 +19571,species,crbdro1,Crow-billed Drongo,Dicrurus annectens,Passeriformes,Dicruridae (Drongos),, +19572,species,brodro1,Bronzed Drongo,Dicrurus aeneus,Passeriformes,Dicruridae (Drongos),, +19576,species,lrtdro1,Lesser Racket-tailed Drongo,Dicrurus remifer,Passeriformes,Dicruridae (Drongos),, +19581,species,hacdro1,Hair-crested Drongo,Dicrurus hottentottus,Passeriformes,Dicruridae (Drongos),, +19582,issf,hacdro6,Hair-crested Drongo (Hair-crested),Dicrurus hottentottus hottentottus/brevirostris,Passeriformes,Dicruridae (Drongos),,hacdro1 +19585,issf,hacdro4,Hair-crested Drongo (Bornean),Dicrurus hottentottus borneensis,Passeriformes,Dicruridae (Drongos),,hacdro1 +19586,issf,hacdro7,Hair-crested Drongo (Javan),Dicrurus hottentottus jentincki/faberi,Passeriformes,Dicruridae (Drongos),,hacdro1 +19589,issf,hacdro12,Hair-crested Drongo (White-eyed),Dicrurus hottentottus leucops/banggaiensis,Passeriformes,Dicruridae (Drongos),,hacdro1 +19592,issf,hacdro8,Hair-crested Drongo (Obi),Dicrurus hottentottus guillemardi,Passeriformes,Dicruridae (Drongos),,hacdro1 +19593,issf,hacdro10,Hair-crested Drongo (Sula),Dicrurus hottentottus pectoralis,Passeriformes,Dicruridae (Drongos),,hacdro1 +19594,issf,hacdro9,Hair-crested Drongo (Palawan),Dicrurus hottentottus palawanensis,Passeriformes,Dicruridae (Drongos),,hacdro1 +19595,issf,hacdro5,Hair-crested Drongo (Cuyo),Dicrurus hottentottus cuyensis,Passeriformes,Dicruridae (Drongos),,hacdro1 +19596,issf,hacdro11,Hair-crested Drongo (Sulu),Dicrurus hottentottus suluensis,Passeriformes,Dicruridae (Drongos),,hacdro1 +19597,issf,hacdro3,Hair-crested Drongo (Short-tailed),Dicrurus hottentottus striatus/samarensis,Passeriformes,Dicruridae (Drongos),,hacdro1 +19600,species,balica1,Balicassiao,Dicrurus balicassius,Passeriformes,Dicruridae (Drongos),, +19601,issf,balica2,Balicassiao (Balicassiao),Dicrurus balicassius balicassius/abraensis,Passeriformes,Dicruridae (Drongos),,balica1 +19604,issf,balica3,Balicassiao (Visayan),Dicrurus balicassius mirabilis,Passeriformes,Dicruridae (Drongos),,balica1 +19605,species,suldro1,Sulawesi Drongo,Dicrurus montanus,Passeriformes,Dicruridae (Drongos),, +19606,species,sumdro1,Sumatran Drongo,Dicrurus sumatranus,Passeriformes,Dicruridae (Drongos),, +19607,issf,sumdro3,Sumatran Drongo (Sumatran),Dicrurus sumatranus sumatranus,Passeriformes,Dicruridae (Drongos),,sumdro1 +19608,issf,sumdro2,Sumatran Drongo (Mentawai),Dicrurus sumatranus viridinitens,Passeriformes,Dicruridae (Drongos),,sumdro1 +19609,species,waldro1,Wallacean Drongo,Dicrurus densus,Passeriformes,Dicruridae (Drongos),, +19610,issf,waldro4,Wallacean Drongo (Lombok),Dicrurus densus vicinus,Passeriformes,Dicruridae (Drongos),,waldro1 +19611,issf,waldro2,Wallacean Drongo (Flores),Dicrurus densus bimaensis,Passeriformes,Dicruridae (Drongos),,waldro1 +19612,issf,waldro5,Wallacean Drongo (Sumba),Dicrurus densus sumbae,Passeriformes,Dicruridae (Drongos),,waldro1 +19613,issf,waldro7,Wallacean Drongo (Timor),Dicrurus densus densus,Passeriformes,Dicruridae (Drongos),,waldro1 +19614,issf,waldro6,Wallacean Drongo (Tanimbar),Dicrurus densus kuehni,Passeriformes,Dicruridae (Drongos),,waldro1 +19615,issf,waldro3,Wallacean Drongo (Kai),Dicrurus densus megalornis,Passeriformes,Dicruridae (Drongos),,waldro1 +19616,species,ritdro1,Ribbon-tailed Drongo,Dicrurus megarhynchus,Passeriformes,Dicruridae (Drongos),, +19617,species,spadro1,Spangled Drongo,Dicrurus bracteatus,Passeriformes,Dicruridae (Drongos),, +19618,issf,spadro7,Spangled Drongo (Morotai),Dicrurus bracteatus morotensis,Passeriformes,Dicruridae (Drongos),,spadro1 +19619,issf,spadro5,Spangled Drongo (Halmahera),Dicrurus bracteatus atrocaeruleus,Passeriformes,Dicruridae (Drongos),,spadro1 +19620,issf,spadro3,Spangled Drongo (Buru),Dicrurus bracteatus buruensis,Passeriformes,Dicruridae (Drongos),,spadro1 +19621,issf,spadro9,Spangled Drongo (Seram),Dicrurus bracteatus amboinensis,Passeriformes,Dicruridae (Drongos),,spadro1 +19622,issf,spadro8,Spangled Drongo (Papuan),Dicrurus bracteatus carbonarius,Passeriformes,Dicruridae (Drongos),,spadro1 +19623,issf,spadro2,Spangled Drongo (Bismarck),Dicrurus bracteatus laemostictus,Passeriformes,Dicruridae (Drongos),,spadro1 +19624,issf,spadro4,Spangled Drongo (Guadalcanal),Dicrurus bracteatus meeki,Passeriformes,Dicruridae (Drongos),,spadro1 +19625,issf,spadro6,Spangled Drongo (Makira),Dicrurus bracteatus longirostris,Passeriformes,Dicruridae (Drongos),,spadro1 +19626,issf,spadro10,Spangled Drongo (Spangled),Dicrurus bracteatus [bracteatus Group],Passeriformes,Dicruridae (Drongos),,spadro1 +19630,form,bacdro1,Bacan Drongo (undescribed form),Dicrurus [undescribed form],Passeriformes,Dicruridae (Drongos),, +19631,species,tabdro1,Tablas Drongo,Dicrurus menagei,Passeriformes,Dicruridae (Drongos),, +19632,species,anddro1,Andaman Drongo,Dicrurus andamanensis,Passeriformes,Dicruridae (Drongos),, +19635,species,grtdro1,Greater Racket-tailed Drongo,Dicrurus paradiseus,Passeriformes,Dicruridae (Drongos),, +19649,species,srldro1,Sri Lanka Drongo,Dicrurus lophorinus,Passeriformes,Dicruridae (Drongos),, +19650,spuh,drongo1,drongo sp.,Dicrurus sp.,Passeriformes,Dicruridae (Drongos),, +19651,species,parcro1,Paradise-crow,Lycocorax pyrrhopterus,Passeriformes,Paradisaeidae (Birds-of-Paradise),Birds-of-Paradise, +19652,issf,paradi2,Paradise-crow (Halmahera),Lycocorax pyrrhopterus pyrrhopterus/morotensis,Passeriformes,Paradisaeidae (Birds-of-Paradise),,parcro1 +19655,issf,paradi3,Paradise-crow (Obi),Lycocorax pyrrhopterus obiensis,Passeriformes,Paradisaeidae (Birds-of-Paradise),,parcro1 +19656,species,truman1,Trumpet Manucode,Phonygammus keraudrenii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19666,species,cucman1,Curl-crested Manucode,Manucodia comrii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19669,species,crcman2,Crinkle-collared Manucode,Manucodia chalybatus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19670,species,jobman1,Jobi Manucode,Manucodia jobiensis,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19671,species,glmman2,Glossy-mantled Manucode,Manucodia ater,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19675,spuh,manuco1,manucode sp.,Phonygammus/Manucodia sp.,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19676,species,kospar1,King-of-Saxony Bird-of-Paradise,Pteridophora alberti,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19677,species,carpar1,Carola's Parotia,Parotia carolae,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19683,species,carpar3,Bronze Parotia,Parotia berlepschi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19684,species,wespar1,Western Parotia,Parotia sefilata,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19685,species,wahpar1,Wahnes's Parotia,Parotia wahnesi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19686,species,lawpar1,Lawes's Parotia,Parotia lawesii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19687,issf,lawpar3,Lawes's Parotia (Lawes's),Parotia lawesii lawesii,Passeriformes,Paradisaeidae (Birds-of-Paradise),,lawpar1 +19688,issf,lawpar2,Lawes's Parotia (Eastern),Parotia lawesii helenae,Passeriformes,Paradisaeidae (Birds-of-Paradise),,lawpar1 +19689,species,twwbop1,Twelve-wired Bird-of-Paradise,Seleucidis melanoleucus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19692,species,blbsic1,Black-billed Sicklebill,Drepanornis albertisi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19695,species,pabsic1,Pale-billed Sicklebill,Drepanornis bruijnii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19696,species,walsta2,Standardwing Bird-of-Paradise,Semioptera wallacii,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19699,species,vosbop1,Vogelkop Lophorina,Lophorina niedda,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19702,species,grsbop1,Greater Lophorina,Lophorina superba,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19706,species,lesbop1,Lesser Lophorina,Lophorina minor,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19707,species,parrif1,Paradise Riflebird,Ptiloris paradiseus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19708,species,vicrif1,Victoria's Riflebird,Ptiloris victoriae,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19709,species,magrif3,Magnificent Riflebird,Ptiloris magnificus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19712,species,magrif2,Growling Riflebird,Ptiloris intercedens,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19713,species,blasic1,Black Sicklebill,Epimachus fastosus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19717,species,brosic1,Brown Sicklebill,Epimachus meyeri,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19721,species,lotpar1,Long-tailed Paradigalla,Paradigalla carunculata,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19722,species,shtpar1,Short-tailed Paradigalla,Paradigalla brevicauda,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19723,species,splast1,Splendid Astrapia,Astrapia splendidissima,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19726,species,arfast1,Arfak Astrapia,Astrapia nigra,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19727,species,huoast1,Huon Astrapia,Astrapia rothschildi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19728,species,prsast1,Stephanie's Astrapia,Astrapia stephaniae,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19731,species,ritast1,Ribbon-tailed Astrapia,Astrapia mayeri,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19732,species,kbopar1,King Bird-of-Paradise,Cicinnurus regius,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19735,species,wbopar1,Wilson's Bird-of-Paradise,Cicinnurus respublica,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19736,species,mbopar2,Magnificent Bird-of-Paradise,Cicinnurus magnificus,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19740,species,bbopar1,Blue Bird-of-Paradise,Paradisaea rudolphi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19743,species,ebopar1,Emperor Bird-of-Paradise,Paradisaea guilielmi,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19744,species,rbopar2,Red Bird-of-Paradise,Paradisaea rubra,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19745,species,gbopar1,Goldie's Bird-of-Paradise,Paradisaea decora,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19746,species,lbopar1,Lesser Bird-of-Paradise,Paradisaea minor,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19750,species,rbopar1,Raggiana Bird-of-Paradise,Paradisaea raggiana,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19755,hybrid,x00814,Lesser x Raggiana Bird-of-Paradise (hybrid),Paradisaea minor x raggiana,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19756,species,gbopar2,Greater Bird-of-Paradise,Paradisaea apoda,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19759,hybrid,x00929,Raggiana x Greater Bird-of-Paradise (hybrid),Paradisaea raggiana x apoda,Passeriformes,Paradisaeidae (Birds-of-Paradise),, +19760,species,bucifr1,Blue-capped Ifrita,Ifrita kowaldi,Passeriformes,Ifritidae (Ifrita),Ifrita, +19763,species,bhcfly1,Blue-headed Crested-Flycatcher,Trochocercus nitens,Passeriformes,Monarchidae (Monarch Flycatchers),Monarch Flycatchers, +19766,species,afcfly1,African Crested-Flycatcher,Trochocercus cyanomelas,Passeriformes,Monarchidae (Monarch Flycatchers),, +19767,issf,afrcrf1,African Crested-Flycatcher (Eastern),Trochocercus cyanomelas [bivittatus Group],Passeriformes,Monarchidae (Monarch Flycatchers),,afcfly1 +19771,issf,afrcrf2,African Crested-Flycatcher (Southern),Trochocercus cyanomelas cyanomelas/segregus,Passeriformes,Monarchidae (Monarch Flycatchers),,afcfly1 +19774,species,shcmon1,Short-crested Monarch,Hypothymis helenae,Passeriformes,Monarchidae (Monarch Flycatchers),, +19778,species,blnmon1,Black-naped Monarch,Hypothymis azurea,Passeriformes,Monarchidae (Monarch Flycatchers),, +19802,species,pabmon1,Pale-blue Monarch,Hypothymis puella,Passeriformes,Monarchidae (Monarch Flycatchers),, +19805,species,celmon1,Celestial Monarch,Hypothymis coelestis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19806,species,blpfly1,Blue Paradise-Flycatcher,Terpsiphone cyanescens,Passeriformes,Monarchidae (Monarch Flycatchers),, +19807,species,rupfly1,Rufous Paradise-Flycatcher,Terpsiphone cinnamomea,Passeriformes,Monarchidae (Monarch Flycatchers),, +19808,issf,rufpaf1,Rufous Paradise-Flycatcher (Northern),Terpsiphone cinnamomea unirufa,Passeriformes,Monarchidae (Monarch Flycatchers),,rupfly1 +19809,issf,rufpaf2,Rufous Paradise-Flycatcher (Southern),Terpsiphone cinnamomea cinnamomea/talautensis,Passeriformes,Monarchidae (Monarch Flycatchers),,rupfly1 +19812,species,japfly1,Japanese Paradise-Flycatcher,Terpsiphone atrocaudata,Passeriformes,Monarchidae (Monarch Flycatchers),, +19816,species,amupaf1,Amur Paradise-Flycatcher,Terpsiphone incei,Passeriformes,Monarchidae (Monarch Flycatchers),, +19817,slash,y00976,Japanese/Amur Paradise-Flycatcher,Terpsiphone atrocaudata/incei,Passeriformes,Monarchidae (Monarch Flycatchers),, +19818,species,blypaf1,Blyth's Paradise-Flycatcher,Terpsiphone affinis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19819,issf,blypaf2,Blyth's Paradise-Flycatcher (Blyth's),Terpsiphone affinis [affinis Group],Passeriformes,Monarchidae (Monarch Flycatchers),,blypaf1 +19830,issf,blypaf3,Blyth's Paradise-Flycatcher (Lesser Sundas),Terpsiphone affinis floris/sumbaensis,Passeriformes,Monarchidae (Monarch Flycatchers),,blypaf1 +19833,slash,y00977,Amur/Blyth's Paradise-Flycatcher,Terpsiphone incei/affinis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19834,species,mapfly2,Mascarene Paradise-Flycatcher,Terpsiphone bourbonnensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19837,species,aspfly1,Indian Paradise-Flycatcher,Terpsiphone paradisi,Passeriformes,Monarchidae (Monarch Flycatchers),, +19841,slash,y00978,Blyth's/Indian Paradise-Flycatcher,Terpsiphone affinis/paradisi,Passeriformes,Monarchidae (Monarch Flycatchers),, +19842,slash,y00742,Amur/Blyth's/Indian Paradise-Flycatcher,Terpsiphone incei/affinis/paradisi,Passeriformes,Monarchidae (Monarch Flycatchers),, +19843,species,stpfly1,Sao Tome Paradise-Flycatcher,Terpsiphone atrochalybeia,Passeriformes,Monarchidae (Monarch Flycatchers),, +19844,species,sepfly1,Seychelles Paradise-Flycatcher,Terpsiphone corvina,Passeriformes,Monarchidae (Monarch Flycatchers),, +19845,species,mapfly1,Madagascar Paradise-Flycatcher,Terpsiphone mutata,Passeriformes,Monarchidae (Monarch Flycatchers),, +19846,issf,madpaf1,Madagascar Paradise-Flycatcher (Madagascar),Terpsiphone mutata [mutata Group],Passeriformes,Monarchidae (Monarch Flycatchers),,mapfly1 +19850,issf,madpaf2,Madagascar Paradise-Flycatcher (Comoros),Terpsiphone mutata vulpina/voeltzkowiana,Passeriformes,Monarchidae (Monarch Flycatchers),,mapfly1 +19853,issf,madpaf3,Madagascar Paradise-Flycatcher (Grand Comoro),Terpsiphone mutata comorensis,Passeriformes,Monarchidae (Monarch Flycatchers),,mapfly1 +19854,species,bhpfly1,Black-headed Paradise-Flycatcher,Terpsiphone rufiventer,Passeriformes,Monarchidae (Monarch Flycatchers),, +19855,issf,bkhpaf1,Black-headed Paradise-Flycatcher (Red-bellied),Terpsiphone rufiventer [rufiventer Group],Passeriformes,Monarchidae (Monarch Flycatchers),,bhpfly1 +19864,issf,bkhpaf3,Black-headed Paradise-Flycatcher (Tricolored),Terpsiphone rufiventer tricolor/neumanni,Passeriformes,Monarchidae (Monarch Flycatchers),,bhpfly1 +19867,issf,bkhpaf2,Black-headed Paradise-Flycatcher (Annobon),Terpsiphone rufiventer smithii,Passeriformes,Monarchidae (Monarch Flycatchers),,bhpfly1 +19868,species,bepfly1,Bedford's Paradise-Flycatcher,Terpsiphone bedfordi,Passeriformes,Monarchidae (Monarch Flycatchers),, +19869,species,rvpfly1,Rufous-vented Paradise-Flycatcher,Terpsiphone rufocinerea,Passeriformes,Monarchidae (Monarch Flycatchers),, +19870,species,batpaf1,Bates's Paradise-Flycatcher,Terpsiphone batesi,Passeriformes,Monarchidae (Monarch Flycatchers),, +19873,species,afpfly1,African Paradise-Flycatcher,Terpsiphone viridis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19884,hybrid,x00862,Black-headed x African Paradise-Flycatcher (hybrid),Terpsiphone rufiventer x viridis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19885,spuh,paradi1,paradise-flycatcher sp.,Terpsiphone sp.,Passeriformes,Monarchidae (Monarch Flycatchers),, +19886,species,elepai,Hawaii Elepaio,Chasiempis sandwichensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19887,issf,elepai1,Hawaii Elepaio (Kona coast),Chasiempis sandwichensis sandwichensis,Passeriformes,Monarchidae (Monarch Flycatchers),,elepai +19888,issf,elepai3,Hawaii Elepaio (Mauna Kea),Chasiempis sandwichensis bryani,Passeriformes,Monarchidae (Monarch Flycatchers),,elepai +19889,issf,elepai2,Hawaii Elepaio (Hilo coast),Chasiempis sandwichensis ridgwayi,Passeriformes,Monarchidae (Monarch Flycatchers),,elepai +19890,species,elepai5,Kauai Elepaio,Chasiempis sclateri,Passeriformes,Monarchidae (Monarch Flycatchers),, +19891,species,elepai4,Oahu Elepaio,Chasiempis ibidis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19892,species,tahmon2,Tahiti Monarch,Pomarea nigra,Passeriformes,Monarchidae (Monarch Flycatchers),, +19893,species,maumon1,Maupiti Monarch,Pomarea pomarea,Passeriformes,Monarchidae (Monarch Flycatchers),, +19894,species,rarmon1,Rarotonga Monarch,Pomarea dimidiata,Passeriformes,Monarchidae (Monarch Flycatchers),, +19895,species,eiamon1,Eiao Monarch,Pomarea fluxa,Passeriformes,Monarchidae (Monarch Flycatchers),, +19896,species,nuhmon1,Nuku Hiva Monarch,Pomarea nukuhivae,Passeriformes,Monarchidae (Monarch Flycatchers),, +19897,species,iphmon2,Iphis Monarch,Pomarea iphis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19898,species,uapmon1,Ua Pou Monarch,Pomarea mira,Passeriformes,Monarchidae (Monarch Flycatchers),, +19899,species,marmon2,Marquesas Monarch,Pomarea mendozae,Passeriformes,Monarchidae (Monarch Flycatchers),, +19902,species,fatmon1,Fatuhiva Monarch,Pomarea whitneyi,Passeriformes,Monarchidae (Monarch Flycatchers),, +19903,species,ogemon1,Ogea Monarch,Mayrornis versicolor,Passeriformes,Monarchidae (Monarch Flycatchers),, +19904,species,slamon1,Slaty Monarch,Mayrornis lessoni,Passeriformes,Monarchidae (Monarch Flycatchers),, +19907,species,vanmon1,Vanikoro Monarch,Mayrornis schistaceus,Passeriformes,Monarchidae (Monarch Flycatchers),, +19908,species,bubmon1,Buff-bellied Monarch,Neolalage banksiana,Passeriformes,Monarchidae (Monarch Flycatchers),, +19909,species,soushr2,Southern Shrikebill,Clytorhynchus pachycephaloides,Passeriformes,Monarchidae (Monarch Flycatchers),, +19912,species,renshr1,Rennell Shrikebill,Clytorhynchus hamlini,Passeriformes,Monarchidae (Monarch Flycatchers),, +19913,species,fijshr1,Fiji Shrikebill,Clytorhynchus vitiensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19914,issf,fijshr2,Fiji Shrikebill (Manua),Clytorhynchus vitiensis powelli,Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 +19915,issf,fijshr3,Fiji Shrikebill (Fiji),Clytorhynchus vitiensis [vitiensis Group],Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 +19925,issf,fijshr4,Fiji Shrikebill (Fortuna),Clytorhynchus vitiensis fortunae,Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 +19926,issf,fijshr5,Fiji Shrikebill (Dusky),Clytorhynchus vitiensis keppeli,Passeriformes,Monarchidae (Monarch Flycatchers),,fijshr1 +19927,species,bktshr1,Black-throated Shrikebill,Clytorhynchus nigrogularis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19928,slash,y00802,Fiji/Black-throated Shrikebill,Clytorhynchus vitiensis/nigrogularis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19929,species,bktshr2,Santa Cruz Shrikebill,Clytorhynchus sanctaecrucis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19930,species,whnmon1,White-naped Monarch,Carterornis pileatus,Passeriformes,Monarchidae (Monarch Flycatchers),, +19933,species,loemon1,Loetoe Monarch,Carterornis castus,Passeriformes,Monarchidae (Monarch Flycatchers),, +19934,species,whemon1,White-eared Monarch,Carterornis leucotis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19935,species,golmon1,Golden Monarch,Carterornis chrysomela,Passeriformes,Monarchidae (Monarch Flycatchers),, +19945,species,trumon1,Truk Monarch,Metabolus rugensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19946,species,yapmon1,Yap Monarch,Monarcha godeffroyi,Passeriformes,Monarchidae (Monarch Flycatchers),, +19947,species,tinmon1,Tinian Monarch,Monarcha takatsukasae,Passeriformes,Monarchidae (Monarch Flycatchers),, +19948,species,islmon1,Island Monarch,Monarcha cinerascens,Passeriformes,Monarchidae (Monarch Flycatchers),, +19959,species,whcmon1,White-capped Monarch,Monarcha richardsii,Passeriformes,Monarchidae (Monarch Flycatchers),, +19960,species,chbmon1,Chestnut-bellied Monarch,Monarcha castaneiventris,Passeriformes,Monarchidae (Monarch Flycatchers),, +19961,issf,chbmon2,Chestnut-bellied Monarch (Chestnut-bellied),Monarcha castaneiventris castaneiventris/obscurior,Passeriformes,Monarchidae (Monarch Flycatchers),,chbmon1 +19964,issf,chbmon3,Chestnut-bellied Monarch (Makira),Monarcha castaneiventris megarhynchus,Passeriformes,Monarchidae (Monarch Flycatchers),,chbmon1 +19965,issf,chbmon4,Chestnut-bellied Monarch (Ugi),Monarcha castaneiventris ugiensis,Passeriformes,Monarchidae (Monarch Flycatchers),,chbmon1 +19966,species,boumon1,Bougainville Monarch,Monarcha erythrostictus,Passeriformes,Monarchidae (Monarch Flycatchers),, +19967,species,blfmon1,Black-faced Monarch,Monarcha melanopsis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19968,species,blwmon1,Black-winged Monarch,Monarcha frater,Passeriformes,Monarchidae (Monarch Flycatchers),, +19973,hybrid,x00963,Black-faced x Black-winged Monarch (hybrid),Monarcha melanopsis x frater,Passeriformes,Monarchidae (Monarch Flycatchers),, +19974,spuh,monarc1,Monarcha sp.,Monarcha sp.,Passeriformes,Monarchidae (Monarch Flycatchers),, +19975,species,blamon1,Fan-tailed Monarch,Symposiachrus axillaris,Passeriformes,Monarchidae (Monarch Flycatchers),, +19978,species,rufmon1,Rufous Monarch,Symposiachrus rubiensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19979,species,flomon1,Flores Monarch,Symposiachrus sacerdotum,Passeriformes,Monarchidae (Monarch Flycatchers),, +19980,species,blcmon1,Black-chinned Monarch,Symposiachrus boanensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19981,species,spemon1,Spectacled Monarch,Symposiachrus trivirgatus,Passeriformes,Monarchidae (Monarch Flycatchers),, +19982,issf,spemon3,Spectacled Monarch (Halmahera),Symposiachrus trivirgatus bimaculatus,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 +19983,issf,spemon4,Spectacled Monarch (Obi),Symposiachrus trivirgatus diadematus,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 +19984,issf,spemon6,Spectacled Monarch (Seram),Symposiachrus trivirgatus nigrimentum,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 +19985,issf,spemon2,Spectacled Monarch (Spectacled),Symposiachrus trivirgatus [trivirgatus Group],Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 +19990,issf,spemon5,Spectacled Monarch (Australian),Symposiachrus trivirgatus gouldii/melanorrhous,Passeriformes,Monarchidae (Monarch Flycatchers),,spemon1 +19993,species,whtmon1,White-tailed Monarch,Symposiachrus leucurus,Passeriformes,Monarchidae (Monarch Flycatchers),, +19994,species,whtmon2,White-tipped Monarch,Symposiachrus everetti,Passeriformes,Monarchidae (Monarch Flycatchers),, +19995,species,bltmon2,Black-tipped Monarch,Symposiachrus loricatus,Passeriformes,Monarchidae (Monarch Flycatchers),, +19996,species,blbmon1,Kofiau Monarch,Symposiachrus julianae,Passeriformes,Monarchidae (Monarch Flycatchers),, +19997,species,biamon1,Biak Monarch,Symposiachrus brehmii,Passeriformes,Monarchidae (Monarch Flycatchers),, +19998,species,hoomon1,Hooded Monarch,Symposiachrus manadensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +19999,species,manmon1,Manus Monarch,Symposiachrus infelix,Passeriformes,Monarchidae (Monarch Flycatchers),, +20002,species,whbmon1,White-breasted Monarch,Symposiachrus menckei,Passeriformes,Monarchidae (Monarch Flycatchers),, +20003,species,bltmon1,Black-tailed Monarch,Symposiachrus verticalis,Passeriformes,Monarchidae (Monarch Flycatchers),, +20004,issf,bktmon1,Black-tailed Monarch (Djaul),Symposiachrus verticalis ateralbus,Passeriformes,Monarchidae (Monarch Flycatchers),,bltmon1 +20005,issf,bktmon2,Black-tailed Monarch (Black-tailed),Symposiachrus verticalis verticalis,Passeriformes,Monarchidae (Monarch Flycatchers),,bltmon1 +20006,species,bawmon1,Black-and-white Monarch,Symposiachrus barbatus,Passeriformes,Monarchidae (Monarch Flycatchers),, +20007,issf,bawmon2,Black-and-white Monarch (Solomons),Symposiachrus barbatus barbatus,Passeriformes,Monarchidae (Monarch Flycatchers),,bawmon1 +20008,issf,bawmon4,Black-and-white Monarch (White-cheeked),Symposiachrus barbatus malaitae,Passeriformes,Monarchidae (Monarch Flycatchers),,bawmon1 +20009,species,kulmon1,Kolombangara Monarch,Symposiachrus browni,Passeriformes,Monarchidae (Monarch Flycatchers),, +20014,species,blbmon2,Black-bibbed Monarch,Symposiachrus mundus,Passeriformes,Monarchidae (Monarch Flycatchers),, +20015,species,whcmon2,White-collared Monarch,Symposiachrus vidua,Passeriformes,Monarchidae (Monarch Flycatchers),, +20016,species,spwmon1,Spot-winged Monarch,Symposiachrus guttula,Passeriformes,Monarchidae (Monarch Flycatchers),, +20017,species,frimon1,Frilled Monarch,Arses telescopthalmus,Passeriformes,Monarchidae (Monarch Flycatchers),, +20024,species,frnmon1,Frill-necked Monarch,Arses lorealis,Passeriformes,Monarchidae (Monarch Flycatchers),, +20025,species,rucmon1,Ochre-collared Monarch,Arses insularis,Passeriformes,Monarchidae (Monarch Flycatchers),, +20026,hybrid,x00813,Frill-necked x Ochre-collared Monarch (hybrid),Arses telescopthalmus x insularis,Passeriformes,Monarchidae (Monarch Flycatchers),, +20027,species,piemon1,Pied Monarch,Arses kaupi,Passeriformes,Monarchidae (Monarch Flycatchers),, +20030,species,maglar1,Magpie-lark,Grallina cyanoleuca,Passeriformes,Monarchidae (Monarch Flycatchers),, +20033,species,torlar1,Torrent-lark,Grallina bruijnii,Passeriformes,Monarchidae (Monarch Flycatchers),, +20034,species,palfly3,Palau Flycatcher,Myiagra erythrops,Passeriformes,Monarchidae (Monarch Flycatchers),, +20035,species,guafly1,Guam Flycatcher,Myiagra freycineti,Passeriformes,Monarchidae (Monarch Flycatchers),, +20036,species,pohfly1,Pohnpei Flycatcher,Myiagra pluto,Passeriformes,Monarchidae (Monarch Flycatchers),, +20037,species,ocefly1,Oceanic Flycatcher,Myiagra oceanica,Passeriformes,Monarchidae (Monarch Flycatchers),, +20038,species,biafly1,Biak Flycatcher,Myiagra atra,Passeriformes,Monarchidae (Monarch Flycatchers),, +20039,species,molfly1,Moluccan Flycatcher,Myiagra galeata,Passeriformes,Monarchidae (Monarch Flycatchers),, +20044,species,leafly2,Leaden Flycatcher,Myiagra rubecula,Passeriformes,Monarchidae (Monarch Flycatchers),, +20051,species,stbfly1,Steel-blue Flycatcher,Myiagra ferrocyanea,Passeriformes,Monarchidae (Monarch Flycatchers),, +20056,species,ochfly1,Ochre-headed Flycatcher,Myiagra cervinicauda,Passeriformes,Monarchidae (Monarch Flycatchers),, +20057,species,melfly1,Melanesian Flycatcher,Myiagra caledonica,Passeriformes,Monarchidae (Monarch Flycatchers),, +20063,species,vanfly1,Vanikoro Flycatcher,Myiagra vanikorensis,Passeriformes,Monarchidae (Monarch Flycatchers),, +20069,species,samfly1,Samoan Flycatcher,Myiagra albiventris,Passeriformes,Monarchidae (Monarch Flycatchers),, +20070,species,blcfly2,Azure-crested Flycatcher,Myiagra azureocapilla,Passeriformes,Monarchidae (Monarch Flycatchers),, +20071,species,chtfly1,Chestnut-throated Flycatcher,Myiagra castaneigularis,Passeriformes,Monarchidae (Monarch Flycatchers),, +20074,species,brbfly1,Broad-billed Flycatcher,Myiagra ruficollis,Passeriformes,Monarchidae (Monarch Flycatchers),, +20078,species,satfly1,Satin Flycatcher,Myiagra cyanoleuca,Passeriformes,Monarchidae (Monarch Flycatchers),, +20079,slash,y00803,Leaden/Satin Flycatcher,Myiagra rubecula/cyanoleuca,Passeriformes,Monarchidae (Monarch Flycatchers),, +20080,species,resfly1,Restless Flycatcher,Myiagra inquieta,Passeriformes,Monarchidae (Monarch Flycatchers),, +20081,species,papfly1,Paperbark Flycatcher,Myiagra nana,Passeriformes,Monarchidae (Monarch Flycatchers),, +20082,slash,y00894,Restless/Paperbark Flycatcher,Myiagra inquieta/nana,Passeriformes,Monarchidae (Monarch Flycatchers),, +20083,species,shifly1,Shining Flycatcher,Myiagra alecto,Passeriformes,Monarchidae (Monarch Flycatchers),, +20091,species,dulfly1,Dull Flycatcher,Myiagra hebetior,Passeriformes,Monarchidae (Monarch Flycatchers),, +20092,issf,dulfly2,Dull Flycatcher (Mussau),Myiagra hebetior hebetior,Passeriformes,Monarchidae (Monarch Flycatchers),,dulfly1 +20093,issf,dulfly3,Dull Flycatcher (Velvet),Myiagra hebetior eichhorni,Passeriformes,Monarchidae (Monarch Flycatchers),,dulfly1 +20094,issf,dulfly4,Dull Flycatcher (Djaul),Myiagra hebetior cervinicolor,Passeriformes,Monarchidae (Monarch Flycatchers),,dulfly1 +20095,spuh,myiagr1,Myiagra sp.,Myiagra sp.,Passeriformes,Monarchidae (Monarch Flycatchers),, +20096,species,whwcho1,White-winged Chough,Corcorax melanorhamphos,Passeriformes,Corcoracidae (White-winged Chough and Apostlebird),White-winged Chough and Apostlebird, +20099,species,apostl1,Apostlebird,Struthidea cinerea,Passeriformes,Corcoracidae (White-winged Chough and Apostlebird),, +20102,species,lesmel1,Lesser Melampitta,Melampitta lugubris,Passeriformes,Melampittidae (Melampittas),Melampittas, +20106,species,gremel1,Greater Melampitta,Melampitta gigantea,Passeriformes,Melampittidae (Melampittas),, +20107,species,crejay1,Crested Shrikejay,Platylophus galericulatus,Passeriformes,Platylophidae (Crested Shrikejay),Crested Shrikejay, +20111,species,tigshr1,Tiger Shrike,Lanius tigrinus,Passeriformes,Laniidae (Shrikes),Shrikes, +20112,species,buhshr1,Bull-headed Shrike,Lanius bucephalus,Passeriformes,Laniidae (Shrikes),, +20115,species,rebshr1,Red-backed Shrike,Lanius collurio,Passeriformes,Laniidae (Shrikes),, +20116,species,rutshr2,Red-tailed Shrike,Lanius phoenicuroides,Passeriformes,Laniidae (Shrikes),, +20117,hybrid,x00860,Red-backed x Red-tailed Shrike (hybrid),Lanius collurio x phoenicuroides,Passeriformes,Laniidae (Shrikes),, +20118,species,isashr1,Isabelline Shrike,Lanius isabellinus,Passeriformes,Laniidae (Shrikes),, +20119,issf,rutshr3,Isabelline Shrike (Daurian),Lanius isabellinus isabellinus,Passeriformes,Laniidae (Shrikes),,isashr1 +20120,issf,rutshr4,Isabelline Shrike (Chinese),Lanius isabellinus arenarius/tsaidamensis,Passeriformes,Laniidae (Shrikes),,isashr1 +20123,slash,rutshr1,Red-tailed/Isabelline Shrike,Lanius phoenicuroides/isabellinus,Passeriformes,Laniidae (Shrikes),, +20124,species,brnshr,Brown Shrike,Lanius cristatus,Passeriformes,Laniidae (Shrikes),, +20125,issf,brnshr1,Brown Shrike (Brown),Lanius cristatus cristatus/confusus,Passeriformes,Laniidae (Shrikes),,brnshr +20128,issf,brnshr2,Brown Shrike (Japanese),Lanius cristatus superciliosus,Passeriformes,Laniidae (Shrikes),,brnshr +20129,issf,brnshr3,Brown Shrike (Philippine),Lanius cristatus lucionensis,Passeriformes,Laniidae (Shrikes),,brnshr +20130,slash,y00975,Red-tailed/Isabelline/Brown Shrike,Lanius phoenicuroides/isabellinus/cristatus,Passeriformes,Laniidae (Shrikes),, +20131,species,burshr1,Burmese Shrike,Lanius collurioides,Passeriformes,Laniidae (Shrikes),, +20134,species,emishr1,Emin's Shrike,Lanius gubernator,Passeriformes,Laniidae (Shrikes),, +20135,species,babshr1,Bay-backed Shrike,Lanius vittatus,Passeriformes,Laniidae (Shrikes),, +20138,species,lotshr1,Long-tailed Shrike,Lanius schach,Passeriformes,Laniidae (Shrikes),, +20139,issf,lotshr2,Long-tailed Shrike (erythronotus/caniceps),Lanius schach erythronotus/caniceps,Passeriformes,Laniidae (Shrikes),,lotshr1 +20142,issf,lotshr3,Long-tailed Shrike (schach),Lanius schach schach,Passeriformes,Laniidae (Shrikes),,lotshr1 +20143,issf,lotshr4,Long-tailed Shrike (tricolor/longicaudatus),Lanius schach tricolor/longicaudatus,Passeriformes,Laniidae (Shrikes),,lotshr1 +20146,issf,lotshr5,Long-tailed Shrike (bentet),Lanius schach bentet,Passeriformes,Laniidae (Shrikes),,lotshr1 +20147,issf,lotshr6,Long-tailed Shrike (nasutus Group),Lanius schach [nasutus Group],Passeriformes,Laniidae (Shrikes),,lotshr1 +20151,species,gybshr1,Gray-backed Shrike,Lanius tephronotus,Passeriformes,Laniidae (Shrikes),, +20154,species,gycshr1,Gray-capped Shrike,Lanius validirostris,Passeriformes,Laniidae (Shrikes),, +20158,species,logshr,Loggerhead Shrike,Lanius ludovicianus,Passeriformes,Laniidae (Shrikes),, +20170,species,norshr4,Northern Shrike,Lanius borealis,Passeriformes,Laniidae (Shrikes),, +20171,issf,norshr2,Northern Shrike (Asian),Lanius borealis [mollis Group],Passeriformes,Laniidae (Shrikes),,norshr4 +20176,issf,norshr3,Northern Shrike (American),Lanius borealis borealis,Passeriformes,Laniidae (Shrikes),,norshr4 +20177,slash,y00620,Loggerhead/Northern Shrike,Lanius ludovicianus/borealis,Passeriformes,Laniidae (Shrikes),, +20178,species,ibgshr1,Iberian Gray Shrike,Lanius meridionalis,Passeriformes,Laniidae (Shrikes),, +20179,species,norshr1,Great Gray Shrike,Lanius excubitor,Passeriformes,Laniidae (Shrikes),, +20180,issf,grgshr2,Great Gray Shrike (Great Gray),Lanius excubitor [excubitor Group],Passeriformes,Laniidae (Shrikes),,norshr1 +20184,issf,grgshr4,Great Gray Shrike (Sahara),Lanius excubitor [elegans Group],Passeriformes,Laniidae (Shrikes),,norshr1 +20189,issf,grgshr1,Great Gray Shrike (Arabian),Lanius excubitor aucheri/buryi,Passeriformes,Laniidae (Shrikes),,norshr1 +20192,issf,grgshr5,Great Gray Shrike (Socotra),Lanius excubitor uncinatus,Passeriformes,Laniidae (Shrikes),,norshr1 +20193,issf,sogshr3,Great Gray Shrike (Steppe),Lanius excubitor pallidirostris,Passeriformes,Laniidae (Shrikes),,norshr1 +20194,issf,grgshr3,Great Gray Shrike (Indian),Lanius excubitor lahtora,Passeriformes,Laniidae (Shrikes),,norshr1 +20195,slash,norshr,Northern/Great Gray Shrike,Lanius borealis/excubitor,Passeriformes,Laniidae (Shrikes),, +20196,slash,y01040,Iberian Gray/Great Gray Shrike,Lanius meridionalis/excubitor,Passeriformes,Laniidae (Shrikes),, +20197,species,legshr2,Lesser Gray Shrike,Lanius minor,Passeriformes,Laniidae (Shrikes),, +20198,species,chgshr2,Chinese Gray Shrike,Lanius sphenocercus,Passeriformes,Laniidae (Shrikes),, +20199,issf,chgshr1,Chinese Gray Shrike (Chinese),Lanius sphenocercus sphenocercus,Passeriformes,Laniidae (Shrikes),,chgshr2 +20200,issf,chgshr3,Chinese Gray Shrike (Giant),Lanius sphenocercus giganteus,Passeriformes,Laniidae (Shrikes),,chgshr2 +20201,species,gybfis1,Gray-backed Fiscal,Lanius excubitoroides,Passeriformes,Laniidae (Shrikes),, +20205,species,lotfis1,Long-tailed Fiscal,Lanius cabanisi,Passeriformes,Laniidae (Shrikes),, +20206,species,taifis1,Taita Fiscal,Lanius dorsalis,Passeriformes,Laniidae (Shrikes),, +20207,species,somfis1,Somali Fiscal,Lanius somalicus,Passeriformes,Laniidae (Shrikes),, +20208,species,macshr1,Mackinnon's Shrike,Lanius mackinnoni,Passeriformes,Laniidae (Shrikes),, +20209,species,norfis1,Northern Fiscal,Lanius humeralis,Passeriformes,Laniidae (Shrikes),, +20213,species,soufis1,Southern Fiscal,Lanius collaris,Passeriformes,Laniidae (Shrikes),, +20214,issf,soufis2,Southern Fiscal (Uhehe),Lanius collaris marwitzi,Passeriformes,Laniidae (Shrikes),,soufis1 +20215,issf,soufis3,Southern Fiscal (Southern),Lanius collaris [collaris Group],Passeriformes,Laniidae (Shrikes),,soufis1 +20220,slash,comfis1,Northern/Southern Fiscal (Common Fiscal),Lanius humeralis/collaris,Passeriformes,Laniidae (Shrikes),, +20221,species,soushr3,Souza's Shrike,Lanius souzae,Passeriformes,Laniidae (Shrikes),, +20225,species,newfis1,Newton's Fiscal,Lanius newtoni,Passeriformes,Laniidae (Shrikes),, +20226,species,masshr1,Masked Shrike,Lanius nubicus,Passeriformes,Laniidae (Shrikes),, +20227,species,wooshr1,Woodchat Shrike,Lanius senator,Passeriformes,Laniidae (Shrikes),, +20228,issf,wooshr2,Woodchat Shrike (Western),Lanius senator senator,Passeriformes,Laniidae (Shrikes),,wooshr1 +20229,issf,wooshr3,Woodchat Shrike (Balearic),Lanius senator badius,Passeriformes,Laniidae (Shrikes),,wooshr1 +20230,issf,wooshr4,Woodchat Shrike (Caucasian),Lanius senator niloticus,Passeriformes,Laniidae (Shrikes),,wooshr1 +20231,hybrid,x00861,Red-backed x Woodchat Shrike (hybrid),Lanius collurio x senator,Passeriformes,Laniidae (Shrikes),, +20232,spuh,shrike,shrike sp.,Lanius sp.,Passeriformes,Laniidae (Shrikes),, +20233,species,yebshr1,Yellow-billed Shrike,Corvinella corvina,Passeriformes,Laniidae (Shrikes),, +20238,species,magshr1,Magpie Shrike,Corvinella melanoleuca,Passeriformes,Laniidae (Shrikes),, +20242,species,whrshr1,White-rumped Shrike,Eurocephalus ruppelli,Passeriformes,Laniidae (Shrikes),, +20243,species,whcshr1,White-crowned Shrike,Eurocephalus anguitimens,Passeriformes,Laniidae (Shrikes),, +20246,species,blamag1,Black Magpie,Platysmurus leucopterus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)","Jays, Magpies, Crows, and Ravens", +20247,issf,blkmag1,Black Magpie (Malay),Platysmurus leucopterus leucopterus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blamag1 +20248,issf,blkmag2,Black Magpie (Bornean),Platysmurus leucopterus aterrimus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blamag1 +20249,species,sibjay1,Siberian Jay,Perisoreus infaustus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20259,species,sicjay1,Sichuan Jay,Perisoreus internigrans,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20260,species,gryjay,Canada Jay,Perisoreus canadensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20261,issf,gryjay1,Canada Jay (Northern),Perisoreus canadensis [canadensis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gryjay +20266,issf,gryjay2,Canada Jay (Rocky Mts.),Perisoreus canadensis capitalis/albescens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gryjay +20269,issf,gryjay3,Canada Jay (Pacific),Perisoreus canadensis [obscurus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gryjay +20273,species,whtjay1,White-throated Jay,Cyanolyca mirabilis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20274,species,dwajay1,Dwarf Jay,Cyanolyca nanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20275,species,bltjay1,Black-throated Jay,Cyanolyca pumilo,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20276,species,sitjay1,Silvery-throated Jay,Cyanolyca argentigula,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20279,species,azhjay1,Azure-hooded Jay,Cyanolyca cucullata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20284,species,beajay1,Beautiful Jay,Cyanolyca pulchra,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20285,species,blcjay2,Black-collared Jay,Cyanolyca armillata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20286,issf,bkcjay1,Black-collared Jay (Black-collared),Cyanolyca armillata armillata/meridana,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blcjay2 +20289,issf,bkcjay2,Black-collared Jay (Quindio),Cyanolyca armillata quindiuna,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,blcjay2 +20290,species,turjay1,Turquoise Jay,Cyanolyca turcosa,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20291,species,whcjay2,White-collared Jay,Cyanolyca viridicyanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20295,species,btmjay,Black-throated Magpie-Jay,Calocitta colliei,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20296,species,wtmjay1,White-throated Magpie-Jay,Calocitta formosa,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20300,hybrid,x00443,Black-throated x White-throated Magpie-Jay (hybrid),Calocitta colliei x formosa,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20301,slash,y01067,Black-throated/White-throated Magpie-Jay,Calocitta colliei/formosa,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20302,species,brnjay,Brown Jay,Psilorhinus morio,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20307,species,tufjay1,Tufted Jay,Cyanocorax dickeyi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20308,species,blcjay1,Black-chested Jay,Cyanocorax affinis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20311,species,grnjay,Green Jay,Cyanocorax yncas,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20312,issf,grnjay1,Green Jay (Green),Cyanocorax yncas [luxuosus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,grnjay +20318,issf,grnjay2,Green Jay (Inca),Cyanocorax yncas [yncas Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,grnjay +20325,species,bucjay1,Bushy-crested Jay,Cyanocorax melanocyaneus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20328,species,sabjay,San Blas Jay,Cyanocorax sanblasianus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20331,species,yucjay1,Yucatan Jay,Cyanocorax yucatanicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20334,species,pubjay1,Purplish-backed Jay,Cyanocorax beecheii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20335,species,purjay1,Purplish Jay,Cyanocorax cyanomelas,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20336,species,azujay1,Azure Jay,Cyanocorax caeruleus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20337,species,viojay1,Violaceous Jay,Cyanocorax violaceus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20340,species,cucjay1,Curl-crested Jay,Cyanocorax cristatellus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20341,species,whtjay2,White-tailed Jay,Cyanocorax mystacalis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20342,species,cayjay1,Cayenne Jay,Cyanocorax cayanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20343,species,aznjay1,Azure-naped Jay,Cyanocorax heilprini,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20344,issf,aznjay2,Azure-naped Jay (Azure-naped),Cyanocorax heilprini heilprini,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,aznjay1 +20345,issf,camjay1,Azure-naped Jay (Campina),Cyanocorax heilprini hafferi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,aznjay1 +20346,species,plcjay1,Plush-crested Jay,Cyanocorax chrysops,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20350,species,whnjay1,White-naped Jay,Cyanocorax cyanopogon,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20351,spuh,cyanoc1,Cyanocorax sp.,Cyanocorax sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20352,species,pinjay,Pinyon Jay,Gymnorhinus cyanocephalus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20353,species,stejay,Steller's Jay,Cyanocitta stelleri,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20354,issf,stejay1,Steller's Jay (Coastal),Cyanocitta stelleri [stelleri Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,stejay +20359,issf,stejay2,Steller's Jay (Interior),Cyanocitta stelleri [diademata Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,stejay +20364,issf,stejay3,Steller's Jay (Central American),Cyanocitta stelleri [coronata Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,stejay +20373,species,blujay,Blue Jay,Cyanocitta cristata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20378,hybrid,bxgjay1,Green x Blue Jay (hybrid),Cyanocorax yncas x Cyanocitta cristata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20379,hybrid,x00622,Steller's x Blue Jay (hybrid),Cyanocitta stelleri x cristata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20380,species,flsjay,Florida Scrub-Jay,Aphelocoma coerulescens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20381,species,issjay,Island Scrub-Jay,Aphelocoma insularis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20382,species,cowscj1,California Scrub-Jay,Aphelocoma californica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20391,hybrid,x00964,Steller's Jay x California Scrub-Jay (hybrid),Cyanocitta stelleri x Aphelocoma californica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20392,species,wooscj2,Woodhouse's Scrub-Jay,Aphelocoma woodhouseii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20393,issf,wooscj1,Woodhouse's Scrub-Jay (Woodhouse's),Aphelocoma woodhouseii [woodhouseii Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,wooscj2 +20399,issf,wesscj1,Woodhouse's Scrub-Jay (Sumichrast's),Aphelocoma woodhouseii sumichrasti/remota,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,wooscj2 +20402,hybrid,x00891,Steller's Jay x Woodhouse's Scrub-Jay (hybrid),Cyanocitta stelleri x Aphelocoma woodhouseii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20403,slash,wesjay,California/Woodhouse's Scrub-Jay,Aphelocoma californica/woodhouseii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20404,species,mexjay4,Mexican Jay,Aphelocoma wollweberi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20405,issf,mexjay1,Mexican Jay (Arizona),Aphelocoma wollweberi [wollweberi Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,mexjay4 +20409,issf,mexjay2,Mexican Jay (Couch's),Aphelocoma wollweberi couchii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,mexjay4 +20410,issf,mexjay5,Mexican Jay (San Luis Potosi),Aphelocoma wollweberi potosina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,mexjay4 +20411,species,mexjay3,Transvolcanic Jay,Aphelocoma ultramarina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20414,slash,mexjay,Mexican/Transvolcanic Jay,Aphelocoma wollweberi/ultramarina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20415,species,unijay1,Unicolored Jay,Aphelocoma unicolor,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20421,spuh,scrjay,Aphelocoma sp.,Aphelocoma sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20422,species,eurjay1,Eurasian Jay,Garrulus glandarius,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20423,issf,eurjay2,Eurasian Jay (Eurasian),Garrulus glandarius [glandarius Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20438,issf,eurjay3,Eurasian Jay (Black-capped),Garrulus glandarius [atricapillus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20444,issf,eurjay4,Eurasian Jay (Black-crowned),Garrulus glandarius [cervicalis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20448,issf,eurjay5,Eurasian Jay (Iranian),Garrulus glandarius hyrcanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20449,issf,eurjay6,Eurasian Jay (Brandt's),Garrulus glandarius [brandtii Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20454,issf,eurjay7,Eurasian Jay (Himalayan),Garrulus glandarius [bispecularis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20461,issf,eurjay8,Eurasian Jay (White-faced),Garrulus glandarius leucotis/oatesi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20464,issf,eurjay9,Eurasian Jay (Japanese),Garrulus glandarius [japonicus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurjay1 +20470,species,blhjay1,Black-headed Jay,Garrulus lanceolatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20471,species,lidjay1,Lidth's Jay,Garrulus lidthi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20472,spuh,jay1,jay sp.,Corvidae sp. (jay sp.),Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20473,species,azwmag3,Iberian Magpie,Cyanopica cooki,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20474,species,azwmag2,Azure-winged Magpie,Cyanopica cyanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20475,issf,azwmag1,Azure-winged Magpie (Azure-winged),Cyanopica cyanus [cyanus Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,azwmag2 +20483,issf,azwmag4,Azure-winged Magpie (Japanese),Cyanopica cyanus japonica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,azwmag2 +20484,species,ceymag1,Sri Lanka Blue-Magpie,Urocissa ornata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20485,species,formag1,Taiwan Blue-Magpie,Urocissa caerulea,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20486,species,gobmag1,Yellow-billed Blue-Magpie,Urocissa flavirostris,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20491,species,rbbmag,Red-billed Blue-Magpie,Urocissa erythroryncha,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20497,slash,y00804,Yellow-billed/Red-billed Blue-Magpie,Urocissa flavirostris/erythroryncha,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20498,species,whwmag1,White-winged Magpie,Urocissa whiteheadi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20499,issf,whwmag2,White-winged Magpie (Black-tailed),Urocissa whiteheadi xanthomelana,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,whwmag1 +20500,issf,whwmag3,White-winged Magpie (Gray-tailed),Urocissa whiteheadi whiteheadi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,whwmag1 +20501,species,gremag1,Common Green-Magpie,Cissa chinensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20502,issf,comgrm1,Common Green-Magpie (Common),Cissa chinensis [chinensis Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gremag1 +20507,issf,comgrm2,Common Green-Magpie (Yellow-crowned),Cissa chinensis margaritae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,gremag1 +20508,species,yebmag1,Indochinese Green-Magpie,Cissa hypoleuca,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20514,species,shtmag1,Javan Green-Magpie,Cissa thalassina,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20515,species,borgrm1,Bornean Green-Magpie,Cissa jefferyi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20516,spuh,green-1,green-magpie sp.,Cissa sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20517,species,ruftre2,Rufous Treepie,Dendrocitta vagabunda,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20527,species,grytre1,Gray Treepie,Dendrocitta formosae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20536,species,sumtre1,Sumatran Treepie,Dendrocitta occipitalis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20537,species,bortre1,Bornean Treepie,Dendrocitta cinerascens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20538,species,whbtre1,White-bellied Treepie,Dendrocitta leucogastra,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20539,species,coltre1,Collared Treepie,Dendrocitta frontalis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20540,species,andtre1,Andaman Treepie,Dendrocitta bayleii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20541,species,rattre1,Racket-tailed Treepie,Crypsirina temia,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20542,species,hootre1,Hooded Treepie,Crypsirina cucullata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20543,species,rattre2,Ratchet-tailed Treepie,Temnurus temnurus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20544,spuh,treepi1,treepie sp.,Dendrocitta/Crypsirina/Temnurus sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20545,species,eurmag3,Maghreb Magpie,Pica mauritanica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20546,species,eurmag5,Asir Magpie,Pica asirensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20547,species,eurmag6,Black-rumped Magpie,Pica bottanensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20548,species,orimag1,Oriental Magpie,Pica serica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20549,species,eurmag1,Eurasian Magpie,Pica pica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20550,issf,eurmag2,Eurasian Magpie (Iberian),Pica pica melanotos,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 +20551,issf,eurmag4,Eurasian Magpie (Eurasian),Pica pica [pica Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 +20556,issf,eurmag7,Eurasian Magpie (Kamchatkan),Pica pica camtschatica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurmag1 +20557,slash,y01104,Oriental/Eurasian Magpie,Pica serica/pica,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20558,species,bkbmag1,Black-billed Magpie,Pica hudsonia,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20559,species,yebmag,Yellow-billed Magpie,Pica nuttalli,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20560,spuh,pica1,Pica sp.,Pica sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20561,species,stbcro1,Stresemann's Bush-Crow,Zavattariornis stresemanni,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20562,species,mogjay1,Mongolian Ground-Jay,Podoces hendersoni,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20563,species,xigjay1,Xinjiang Ground-Jay,Podoces biddulphi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20564,species,tugjay1,Turkestan Ground-Jay,Podoces panderi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20565,species,irgjay1,Iranian Ground-Jay,Podoces pleskei,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20566,species,clanut,Clark's Nutcracker,Nucifraga columbiana,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20567,species,eurnut1,Eurasian Nutcracker,Nucifraga caryocatactes,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20568,issf,eurnut3,Eurasian Nutcracker (Northern),Nucifraga caryocatactes [caryocatactes Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurnut1 +20573,issf,eurnut4,Eurasian Nutcracker (Southern),Nucifraga caryocatactes [hemispila Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,eurnut1 +20579,species,sponut1,Kashmir Nutcracker,Nucifraga multipunctata,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20580,species,rebcho1,Red-billed Chough,Pyrrhocorax pyrrhocorax,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20581,issf,rebcho2,Red-billed Chough (Red-billed),Pyrrhocorax pyrrhocorax [pyrrhocorax Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,rebcho1 +20589,issf,rebcho3,Red-billed Chough (Ethiopian),Pyrrhocorax pyrrhocorax baileyi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,rebcho1 +20590,species,yebcho1,Yellow-billed Chough,Pyrrhocorax graculus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20593,slash,y00895,Red-billed/Yellow-billed Chough,Pyrrhocorax pyrrhocorax/graculus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20594,species,piapia1,Piapiac,Ptilostomus afer,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20595,species,eurjac,Eurasian Jackdaw,Corvus monedula,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20600,species,daujac1,Daurian Jackdaw,Corvus dauuricus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20601,species,houcro1,House Crow,Corvus splendens,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20607,species,neccro1,New Caledonian Crow,Corvus moneduloides,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20608,species,bancro1,Banggai Crow,Corvus unicolor,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20609,species,slbcro1,Slender-billed Crow,Corvus enca,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20610,issf,slbcro4,Slender-billed Crow (Sierra Madre),Corvus enca samarensis/sierramadrensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,slbcro1 +20613,issf,slbcro2,Slender-billed Crow (Slender-billed),Corvus enca [enca Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,slbcro1 +20619,species,slbcro3,Violet Crow,Corvus violaceus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20620,species,pipcro1,Piping Crow,Corvus typicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20621,species,flocro1,Flores Crow,Corvus florensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20622,species,marcro1,Mariana Crow,Corvus kubaryi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20623,species,lobcro1,Long-billed Crow,Corvus validus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20624,species,guacro1,Guadalcanal Crow,Corvus woodfordi,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20627,species,boucro1,Bougainville Crow,Corvus meeki,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20628,species,brhcro1,Brown-headed Crow,Corvus fuscicapillus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20631,species,grycro1,Gray Crow,Corvus tristis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20632,species,capcro2,Cape Crow,Corvus capensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20635,species,rook1,Rook,Corvus frugilegus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20638,species,amecro,American Crow,Corvus brachyrhynchos,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20643,species,norcro,Northwestern Crow,Corvus caurinus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20644,slash,y00486,American/Northwestern Crow,Corvus brachyrhynchos/caurinus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20645,species,palcro2,Palm Crow,Corvus palmarum,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20646,issf,cupcro1,Palm Crow (Cuban),Corvus palmarum minutus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,palcro2 +20647,issf,palcro1,Palm Crow (Hispaniolan),Corvus palmarum palmarum,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,palcro2 +20648,species,cubcro1,Cuban Crow,Corvus nasicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20649,species,whncro1,White-necked Crow,Corvus leucognaphalus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20650,species,jamcro1,Jamaican Crow,Corvus jamaicensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20651,species,tamcro,Tamaulipas Crow,Corvus imparatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20652,species,sincro1,Sinaloa Crow,Corvus sinaloae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20653,species,fiscro,Fish Crow,Corvus ossifragus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20654,species,hawcro,Hawaiian Crow,Corvus hawaiiensis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20655,species,chirav,Chihuahuan Raven,Corvus cryptoleucus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20656,species,carcro1,Carrion Crow,Corvus corone,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20659,species,hoocro1,Hooded Crow,Corvus cornix,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20660,issf,hoocro2,Hooded Crow (Hooded),Corvus cornix [cornix Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,hoocro1 +20664,issf,hoocro3,Hooded Crow (Mesopotamian),Corvus cornix capellanus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,hoocro1 +20665,hybrid,x00636,Carrion x Hooded Crow (hybrid),Corvus corone x cornix,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20666,slash,y00743,Carrion/Hooded Crow,Corvus corone/cornix,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20667,species,labcro1,Large-billed Crow,Corvus macrorhynchos,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20668,issf,labcro2,Large-billed Crow (Large-billed),Corvus macrorhynchos [macrorhynchos Group],Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,labcro1 +20680,issf,labcro3,Large-billed Crow (Indian Jungle),Corvus macrorhynchos culminatus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,labcro1 +20681,issf,labcro4,Large-billed Crow (Eastern),Corvus macrorhynchos levaillantii,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",,labcro1 +20682,species,torcro2,Torresian Crow,Corvus orru,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20686,species,torcro3,Bismarck Crow,Corvus insularis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20687,species,litcro1,Little Crow,Corvus bennetti,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20688,spuh,crow,crow sp.,Corvus sp. (crow sp.),Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20689,species,ausrav1,Australian Raven,Corvus coronoides,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20692,species,litrav1,Little Raven,Corvus mellori,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20693,species,forrav1,Forest Raven,Corvus tasmanicus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20696,species,colcro1,Collared Crow,Corvus pectoralis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20697,species,piecro1,Pied Crow,Corvus albus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20698,species,brnrav1,Brown-necked Raven,Corvus ruficollis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20699,species,somcro2,Somali Crow,Corvus edithae,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20700,species,fatrav1,Fan-tailed Raven,Corvus rhipidurus,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20701,species,whnrav1,White-necked Raven,Corvus albicollis,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20702,species,thbrav1,Thick-billed Raven,Corvus crassirostris,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20703,species,comrav,Common Raven,Corvus corax,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20712,spuh,raven,raven sp.,Corvus sp. (raven sp.),Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20713,spuh,y00639,crow/raven sp.,Corvus sp.,Passeriformes,"Corvidae (Crows, Jays, and Magpies)",, +20714,species,lorsat1,Loria's Satinbird,Cnemophilus loriae,Passeriformes,Cnemophilidae (Satinbirds),Satinbirds, +20718,species,cresat1,Crested Satinbird,Cnemophilus macgregorii,Passeriformes,Cnemophilidae (Satinbirds),, +20719,issf,cresat2,Crested Satinbird (Red),Cnemophilus macgregorii sanguineus,Passeriformes,Cnemophilidae (Satinbirds),,cresat1 +20720,issf,cresat3,Crested Satinbird (Yellow),Cnemophilus macgregorii macgregorii,Passeriformes,Cnemophilidae (Satinbirds),,cresat1 +20721,species,yebsat1,Yellow-breasted Satinbird,Loboparadisea sericea,Passeriformes,Cnemophilidae (Satinbirds),, +20724,species,obsber1,Obscure Berrypecker,Melanocharis arfakiana,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),Berrypeckers and Longbills, +20725,species,blaber1,Black Berrypecker,Melanocharis nigra,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20730,species,lebber1,Mid-mountain Berrypecker,Melanocharis longicauda,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20736,species,fatber1,Fan-tailed Berrypecker,Melanocharis versteri,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20741,species,strber1,Streaked Berrypecker,Melanocharis striativentris,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20746,species,spober1,Spotted Berrypecker,Melanocharis crassirostris,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20747,issf,spober2,Spotted Berrypecker (Thick-billed),Melanocharis crassirostris crassirostris,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),,spober1 +20748,issf,spober3,Spotted Berrypecker (Spotted),Melanocharis crassirostris piperata/viridescens,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),,spober1 +20751,spuh,melber1,Melanocharis berrypecker sp.,Melanocharis sp.,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20752,species,yeblon1,Yellow-bellied Longbill,Toxorhamphus novaeguineae,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20755,species,slclon1,Slaty-chinned Longbill,Toxorhamphus poliopterus,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20758,slash,y00888,Yellow-bellied/Slaty-chinned Longbill,Toxorhamphus novaeguineae/poliopterus,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20759,species,dwahon2,Spectacled Longbill,Oedistoma iliolophus,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20765,species,pyghon1,Pygmy Longbill,Oedistoma pygmaeum,Passeriformes,Melanocharitidae (Berrypeckers and Longbills),, +20771,species,kokako3,North Island Kokako,Callaeas wilsoni,Passeriformes,Callaeidae (Wattlebirds),Wattlebirds, +20772,species,kokako4,South Island Kokako,Callaeas cinereus,Passeriformes,Callaeidae (Wattlebirds),, +20773,species,saddle2,North Island Saddleback,Philesturnus rufusater,Passeriformes,Callaeidae (Wattlebirds),, +20774,species,saddle3,South Island Saddleback,Philesturnus carunculatus,Passeriformes,Callaeidae (Wattlebirds),, +20775,species,huia1,Huia,Heteralocha acutirostris,Passeriformes,Callaeidae (Wattlebirds),, +20776,species,stitch1,Stitchbird,Notiomystis cincta,Passeriformes,Notiomystidae (Stitchbird),Stitchbird, +20779,species,grgrob1,Greater Ground-Robin,Amalocichla sclateriana,Passeriformes,Petroicidae (Australasian Robins),Australasian Robins, +20782,species,legrob1,Lesser Ground-Robin,Amalocichla incerta,Passeriformes,Petroicidae (Australasian Robins),, +20786,species,torfly1,Torrent Flycatcher,Monachella muelleriana,Passeriformes,Petroicidae (Australasian Robins),, +20787,issf,torfly2,Torrent Flycatcher (Torrent),Monachella muelleriana muelleriana,Passeriformes,Petroicidae (Australasian Robins),,torfly1 +20788,issf,torfly3,Torrent Flycatcher (New Britain),Monachella muelleriana coultasi,Passeriformes,Petroicidae (Australasian Robins),,torfly1 +20789,species,jacwin1,Jacky-winter,Microeca fascinans,Passeriformes,Petroicidae (Australasian Robins),, +20794,species,gobfly2,Golden-bellied Flyrobin,Microeca hemixantha,Passeriformes,Petroicidae (Australasian Robins),, +20795,species,lebfly3,Lemon-bellied Flycatcher,Microeca flavigaster,Passeriformes,Petroicidae (Australasian Robins),, +20796,issf,lebfly1,Lemon-bellied Flycatcher (Lemon-bellied),Microeca flavigaster [flavigaster Group],Passeriformes,Petroicidae (Australasian Robins),,lebfly3 +20803,issf,lebfly4,Lemon-bellied Flycatcher (Kimberley),Microeca flavigaster tormenti,Passeriformes,Petroicidae (Australasian Robins),,lebfly3 +20804,form,bisfly1,Bismarck Flyrobin (undescribed form),Microeca [undescribed form],Passeriformes,Petroicidae (Australasian Robins),, +20805,species,yelfly4,Yellow-legged Flycatcher,Microeca griseoceps,Passeriformes,Petroicidae (Australasian Robins),, +20809,species,olifly3,Olive Flyrobin,Microeca flavovirescens,Passeriformes,Petroicidae (Australasian Robins),, +20812,species,canfly2,Papuan Flycatcher,Microeca papuana,Passeriformes,Petroicidae (Australasian Robins),, +20813,spuh,microe1,Microeca sp.,Microeca sp.,Passeriformes,Petroicidae (Australasian Robins),, +20814,species,garrob1,Garnet Robin,Eugerygone rubra,Passeriformes,Petroicidae (Australasian Robins),, +20817,species,nezrob2,North Island Robin,Petroica longipes,Passeriformes,Petroicidae (Australasian Robins),, +20818,species,nezrob3,South Island Robin,Petroica australis,Passeriformes,Petroicidae (Australasian Robins),, +20821,species,tomtit1,Tomtit,Petroica macrocephala,Passeriformes,Petroicidae (Australasian Robins),, +20822,issf,tomtit2,Tomtit (New Zealand),Petroica macrocephala [macrocephala Group],Passeriformes,Petroicidae (Australasian Robins),,tomtit1 +20827,issf,tomtit3,Tomtit (Snares Is.),Petroica macrocephala dannefaerdi,Passeriformes,Petroicidae (Australasian Robins),,tomtit1 +20828,species,charob1,Chatham Robin,Petroica traversi,Passeriformes,Petroicidae (Australasian Robins),, +20829,species,scarob2,Scarlet Robin,Petroica boodang,Passeriformes,Petroicidae (Australasian Robins),, +20830,issf,scarob3,Scarlet Robin (Campbell's),Petroica boodang campbelli,Passeriformes,Petroicidae (Australasian Robins),,scarob2 +20831,issf,scarob4,Scarlet Robin (Scarlet),Petroica boodang boodang/leggii,Passeriformes,Petroicidae (Australasian Robins),,scarob2 +20834,species,flarob1,Flame Robin,Petroica phoenicea,Passeriformes,Petroicidae (Australasian Robins),, +20835,species,rosrob1,Rose Robin,Petroica rosea,Passeriformes,Petroicidae (Australasian Robins),, +20836,species,pinrob1,Pink Robin,Petroica rodinogaster,Passeriformes,Petroicidae (Australasian Robins),, +20839,species,alprob1,Subalpine Robin,Petroica bivittata,Passeriformes,Petroicidae (Australasian Robins),, +20842,species,snmrob1,Snow Mountain Robin,Petroica archboldi,Passeriformes,Petroicidae (Australasian Robins),, +20843,species,pacrob2,Norfolk Robin,Petroica multicolor,Passeriformes,Petroicidae (Australasian Robins),, +20844,species,recrob1,Red-capped Robin,Petroica goodenovii,Passeriformes,Petroicidae (Australasian Robins),, +20845,species,pacrob1,Pacific Robin,Petroica pusilla,Passeriformes,Petroicidae (Australasian Robins),, +20846,issf,pacrob3,Pacific Robin (Solomons),Petroica pusilla [polymorpha Group],Passeriformes,Petroicidae (Australasian Robins),,pacrob1 +20851,issf,pacrob4,Pacific Robin (Vanuatu),Petroica pusilla [pusilla Group],Passeriformes,Petroicidae (Australasian Robins),,pacrob1 +20861,issf,pacrob5,Pacific Robin (Samoan),Petroica pusilla pusilla,Passeriformes,Petroicidae (Australasian Robins),,pacrob1 +20862,spuh,petroi1,Petroica sp.,Petroica sp.,Passeriformes,Petroicidae (Australasian Robins),, +20863,species,hoorob1,Hooded Robin,Melanodryas cucullata,Passeriformes,Petroicidae (Australasian Robins),, +20868,species,dusrob1,Dusky Robin,Melanodryas vittata,Passeriformes,Petroicidae (Australasian Robins),, +20871,species,whfrob1,White-faced Robin,Tregellasia leucops,Passeriformes,Petroicidae (Australasian Robins),, +20882,species,payrob1,Pale-yellow Robin,Tregellasia capito,Passeriformes,Petroicidae (Australasian Robins),, +20885,species,yelrob1,Eastern Yellow Robin,Eopsaltria australis,Passeriformes,Petroicidae (Australasian Robins),, +20888,species,gybrob1,Western Yellow Robin,Eopsaltria griseogularis,Passeriformes,Petroicidae (Australasian Robins),, +20891,species,yebrob1,Yellow-bellied Robin,Eopsaltria flaviventris,Passeriformes,Petroicidae (Australasian Robins),, +20892,species,whbrob1,White-breasted Robin,Eopsaltria georgiana,Passeriformes,Petroicidae (Australasian Robins),, +20893,species,manrob1,Mangrove Robin,Eopsaltria pulverulenta,Passeriformes,Petroicidae (Australasian Robins),, +20898,species,blcrob1,Black-chinned Robin,Poecilodryas brachyura,Passeriformes,Petroicidae (Australasian Robins),, +20902,species,blsrob2,Black-sided Robin,Poecilodryas hypoleuca,Passeriformes,Petroicidae (Australasian Robins),, +20906,species,whbrob2,White-browed Robin,Poecilodryas superciliosa,Passeriformes,Petroicidae (Australasian Robins),, +20907,species,busrob1,Buff-sided Robin,Poecilodryas cerviniventris,Passeriformes,Petroicidae (Australasian Robins),, +20908,species,olyrob1,Olive-yellow Robin,Poecilodryas placens,Passeriformes,Petroicidae (Australasian Robins),, +20909,species,bltrob1,Black-throated Robin,Poecilodryas albonotata,Passeriformes,Petroicidae (Australasian Robins),, +20913,species,whwrob2,White-winged Robin,Peneothello sigillata,Passeriformes,Petroicidae (Australasian Robins),, +20918,species,smorob2,Smoky Robin,Peneothello cryptoleuca,Passeriformes,Petroicidae (Australasian Robins),, +20922,species,whrrob2,White-rumped Robin,Peneothello bimaculata,Passeriformes,Petroicidae (Australasian Robins),, +20925,species,bugrob1,Blue-gray Robin,Peneothello cyanus,Passeriformes,Petroicidae (Australasian Robins),, +20929,species,gyhrob1,Ashy Robin,Heteromyias albispecularis,Passeriformes,Petroicidae (Australasian Robins),, +20930,issf,ashrob1,Ashy Robin (Ashy),Heteromyias albispecularis albispecularis,Passeriformes,Petroicidae (Australasian Robins),,gyhrob1 +20931,issf,ashrob2,Ashy Robin (Black-capped),Heteromyias albispecularis [armiti Group],Passeriformes,Petroicidae (Australasian Robins),,gyhrob1 +20936,species,gyhrob2,Gray-headed Robin,Heteromyias cinereifrons,Passeriformes,Petroicidae (Australasian Robins),, +20937,species,grbrob1,Green-backed Robin,Pachycephalopsis hattamensis,Passeriformes,Petroicidae (Australasian Robins),, +20943,species,wherob1,White-eyed Robin,Pachycephalopsis poliosoma,Passeriformes,Petroicidae (Australasian Robins),, +20951,species,papscr2,Papuan Scrub-Robin,Drymodes beccarii,Passeriformes,Petroicidae (Australasian Robins),, +20955,species,nosrob1,Northern Scrub-Robin,Drymodes superciliaris,Passeriformes,Petroicidae (Australasian Robins),, +20956,species,sosrob1,Southern Scrub-Robin,Drymodes brunneopygia,Passeriformes,Petroicidae (Australasian Robins),, +20957,species,whnroc1,White-necked Rockfowl,Picathartes gymnocephalus,Passeriformes,Picathartidae (Rockfowl),Rockfowl, +20958,species,gynroc1,Gray-necked Rockfowl,Picathartes oreas,Passeriformes,Picathartidae (Rockfowl),, +20959,species,rufroc1,Cape Rockjumper,Chaetops frenatus,Passeriformes,Chaetopidae (Rockjumpers),Rockjumpers, +20960,species,orbroc1,Drakensberg Rockjumper,Chaetops aurantius,Passeriformes,Chaetopidae (Rockjumpers),, +20961,species,marbab1,Malaysian Rail-babbler,Eupetes macrocerus,Passeriformes,Eupetidae (Rail-babbler),Rail-babbler, +20964,species,yebhyl1,Yellow-bellied Hyliota,Hyliota flavigaster,Passeriformes,Hyliotidae (Hyliotas),Hyliotas, +20967,species,souhyl1,Southern Hyliota,Hyliota australis,Passeriformes,Hyliotidae (Hyliotas),, +20971,species,usahyl1,Usambara Hyliota,Hyliota usambara,Passeriformes,Hyliotidae (Hyliotas),, +20972,species,vibhyl1,Violet-backed Hyliota,Hyliota violacea,Passeriformes,Hyliotidae (Hyliotas),, +20975,species,faifly1,Fairy Flycatcher,Stenostira scita,Passeriformes,Stenostiridae (Fairy Flycatchers),Fairy Flycatchers, +20979,species,yebfan1,Yellow-bellied Fairy-Fantail,Chelidorhynx hypoxanthus,Passeriformes,Stenostiridae (Fairy Flycatchers),, +20980,species,afbfly1,African Blue Flycatcher,Elminia longicauda,Passeriformes,Stenostiridae (Fairy Flycatchers),, +20983,species,wtbfly1,White-tailed Blue Flycatcher,Elminia albicauda,Passeriformes,Stenostiridae (Fairy Flycatchers),, +20984,species,ducfly1,Dusky Crested-Flycatcher,Elminia nigromitrata,Passeriformes,Stenostiridae (Fairy Flycatchers),, +20987,species,wbcfly1,White-bellied Crested-Flycatcher,Elminia albiventris,Passeriformes,Stenostiridae (Fairy Flycatchers),, +20988,issf,whbcrf1,White-bellied Crested-Flycatcher (White-bellied),Elminia albiventris albiventris,Passeriformes,Stenostiridae (Fairy Flycatchers),,wbcfly1 +20989,issf,whbcrf2,White-bellied Crested-Flycatcher (Toro),Elminia albiventris toroensis,Passeriformes,Stenostiridae (Fairy Flycatchers),,wbcfly1 +20990,species,wtcfly1,White-tailed Crested-Flycatcher,Elminia albonotata,Passeriformes,Stenostiridae (Fairy Flycatchers),, +20994,species,gyhcaf1,Gray-headed Canary-Flycatcher,Culicicapa ceylonensis,Passeriformes,Stenostiridae (Fairy Flycatchers),, +21000,species,citcaf1,Citrine Canary-Flycatcher,Culicicapa helianthea,Passeriformes,Stenostiridae (Fairy Flycatchers),, +21006,species,fictit1,Fire-capped Tit,Cephalopyrus flammiceps,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)","Tits, Chickadees, and Titmice", +21009,species,yebtit3,Yellow-browed Tit,Sylviparus modestus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21013,species,sultit1,Sultan Tit,Melanochlora sultanea,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21014,issf,sultit3,Sultan Tit (Yellow-crested),Melanochlora sultanea [sultanea Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,sultit1 +21018,issf,sultit2,Sultan Tit (Black-crested),Melanochlora sultanea gayeti,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,sultit1 +21019,species,coatit2,Coal Tit,Periparus ater,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21020,issf,coatit1,Coal Tit (British),Periparus ater britannicus/hibernicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21023,issf,coatit3,Coal Tit (Continental),Periparus ater [ater Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21029,issf,coatit4,Coal Tit (Atlas),Periparus ater ledouci/atlas,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21032,issf,coatit5,Coal Tit (Cyprus),Periparus ater cypriotes,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21033,issf,coatit6,Coal Tit (Caucasus),Periparus ater [phaeonotus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21038,issf,bkctit2,Coal Tit (Black-crested),Periparus ater melanolophus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21039,issf,coatit7,Coal Tit (Himalayan),Periparus ater aemodius/rufipectus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21042,issf,coatit8,Coal Tit (Chinese),Periparus ater ptilosus/kuatunensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,coatit2 +21045,species,bkbtit2,Rufous-naped Tit,Periparus rufonuchalis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21046,species,ruvtit2,Rufous-vented Tit,Periparus rubidiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21050,slash,y01066,Rufous-naped/Rufous-vented Tit,Periparus rufonuchalis/rubidiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21051,species,yebtit4,Yellow-bellied Tit,Periparus venustulus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21052,species,eletit2,Elegant Tit,Periparus elegans,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21062,species,paltit2,Palawan Tit,Periparus amabilis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21063,species,cretit2,Crested Tit,Lophophanes cristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21070,species,gyctit1,Gray-crested Tit,Lophophanes dichrous,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21075,species,vartit3,Chestnut-bellied Tit,Sittiparus castaneoventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21076,species,vartit2,Iriomote Tit,Sittiparus olivaceus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21077,species,vartit1,Varied Tit,Sittiparus varius,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21084,slash,y00982,Chestnut-bellied/Varied Tit,Sittiparus castaneoventris/varius,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21085,species,vartit4,Owston's Tit,Sittiparus owstoni,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21086,species,whftit2,White-fronted Tit,Sittiparus semilarvatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21090,species,whbtit4,White-browed Tit,Poecile superciliosus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21091,species,somtit3,Sombre Tit,Poecile lugubris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21096,species,pedtit1,Pere David's Tit,Poecile davidi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21097,species,martit2,Marsh Tit,Poecile palustris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21106,species,castit2,Caspian Tit,Poecile hyrcanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21107,species,bkbtit1,Black-bibbed Tit,Poecile hypermelaenus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21108,species,wiltit1,Willow Tit,Poecile montanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21109,issf,wiltit2,Willow Tit (Willow),Poecile montanus [montanus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,wiltit1 +21121,issf,sontit2,Willow Tit (Songar),Poecile montanus [songarus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,wiltit1 +21125,slash,y00696,Marsh/Willow Tit,Poecile palustris/montanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21126,species,sictit1,Sichuan Tit,Poecile weigoldicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21127,species,carchi,Carolina Chickadee,Poecile carolinensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21132,species,bkcchi,Black-capped Chickadee,Poecile atricapillus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21142,hybrid,x00195,Carolina x Black-capped Chickadee (hybrid),Poecile carolinensis x atricapillus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21143,slash,y00033,Carolina/Black-capped Chickadee,Poecile carolinensis/atricapillus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21144,species,mouchi,Mountain Chickadee,Poecile gambeli,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21145,issf,mouchi3,Mountain Chickadee (Rocky Mts.),Poecile gambeli [gambeli Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,mouchi +21149,issf,mouchi4,Mountain Chickadee (Sierra Nevada),Poecile gambeli [baileyae Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,mouchi +21153,hybrid,x00623,Black-capped x Mountain Chickadee (hybrid),Poecile atricapillus x gambeli,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21154,slash,y00983,Black-capped/Mountain Chickadee,Poecile atricapillus/gambeli,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21155,species,mexchi,Mexican Chickadee,Poecile sclateri,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21160,species,chbchi,Chestnut-backed Chickadee,Poecile rufescens,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21164,species,borchi2,Boreal Chickadee,Poecile hudsonicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21170,hybrid,x00708,Black-capped x Boreal Chickadee (hybrid),Poecile atricapillus x hudsonicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21171,hybrid,x00637,Mountain x Boreal Chickadee (hybrid),Poecile gambeli x hudsonicus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21172,species,gyhchi,Gray-headed Chickadee,Poecile cinctus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21177,hybrid,x00743,Willow Tit x Gray-headed Chickadee (hybrid),Poecile montanus x cinctus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21178,spuh,chicka1,chickadee sp.,Poecile sp.,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21179,species,blutit,Eurasian Blue Tit,Cyanistes caeruleus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21189,species,afbtit2,African Blue Tit,Cyanistes teneriffae,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21197,species,azutit2,Azure Tit,Cyanistes cyanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21198,issf,azutit1,Azure Tit (Azure),Cyanistes cyanus [cyanus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,azutit2 +21204,issf,yebtit5,Azure Tit (Yellow-breasted),Cyanistes cyanus [flavipectus Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,azutit2 +21208,hybrid,x00965,Eurasian Blue x Azure Tit (hybrid),Cyanistes caeruleus x cyanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21209,slash,y01148,Eurasian Blue/Azure Tit,Cyanistes caeruleus/cyanus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21210,species,britit,Bridled Titmouse,Baeolophus wollweberi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21215,species,oaktit,Oak Titmouse,Baeolophus inornatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21220,species,juntit1,Juniper Titmouse,Baeolophus ridgwayi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21223,slash,y01149,Bridled/Juniper Titmouse,Baeolophus wollweberi/ridgwayi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21224,slash,y00326,Oak/Juniper Titmouse (Plain Titmouse),Baeolophus inornatus/ridgwayi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21225,species,tuftit,Tufted Titmouse,Baeolophus bicolor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21226,hybrid,x00709,Carolina Chickadee x Tufted Titmouse (hybrid),Poecile carolinensis x Baeolophus bicolor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21227,hybrid,x00642,Black-capped Chickadee x Tufted Titmouse (hybrid),Poecile atricapillus x Baeolophus bicolor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21228,species,blctit4,Black-crested Titmouse,Baeolophus atricristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21232,hybrid,bcxtit1,Tufted x Black-crested Titmouse (hybrid),Baeolophus bicolor x atricristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21233,slash,y00327,Tufted/Black-crested Titmouse,Baeolophus bicolor/atricristatus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21234,species,grotit1,Ground Tit,Pseudopodoces humilis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21235,species,grbtit1,Green-backed Tit,Parus monticolus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21240,species,gretit1,Great Tit,Parus major,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21241,issf,gretit3,Great Tit (Great),Parus major [major Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit1 +21254,issf,turtit1,Great Tit (Turkestan),Parus major [bokharensis Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit1 +21258,species,gretit2,Cinereous Tit,Parus cinereus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21271,species,gretit4,Japanese Tit,Parus minor,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21272,issf,japtit4,Japanese Tit (Japanese),Parus minor [minor Group],Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit4 +21278,issf,japtit2,Japanese Tit (commixtus),Parus minor commixtus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit4 +21279,issf,japtit1,Japanese Tit (Amami),Parus minor amamiensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit4 +21280,issf,japtit5,Japanese Tit (Okinawa),Parus minor okinawae,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit4 +21281,issf,japtit3,Japanese Tit (Ishigaki),Parus minor nigriloris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,gretit4 +21282,spuh,parus1,Parus sp.,Parus sp.,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21283,species,whwtit2,White-naped Tit,Machlolophus nuchalis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21284,species,yeltit2,Taiwan Yellow Tit,Machlolophus holsti,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21285,species,blltit1,Himalayan Black-lored Tit,Machlolophus xanthogenys,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21286,species,indtit1,Indian Yellow Tit,Machlolophus aplonotus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21289,species,yectit1,Yellow-cheeked Tit,Machlolophus spilonotus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21294,species,whsblt1,White-shouldered Black-Tit,Melaniparus guineensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21295,species,whwblt3,White-winged Black-Tit,Melaniparus leucomelas,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21298,species,rubtit3,Rufous-bellied Tit,Melaniparus rufiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21299,issf,rubtit1,Rufous-bellied Tit (Rufous-bellied),Melaniparus rufiventris rufiventris/masukuensis,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,rubtit3 +21302,issf,rubtit2,Rufous-bellied Tit (Cinnamon-breasted),Melaniparus rufiventris pallidiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",,rubtit3 +21303,species,whbtit5,White-bellied Tit,Melaniparus albiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21304,species,soublt1,Southern Black-Tit,Melaniparus niger,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21308,species,cartit2,Carp's Tit,Melaniparus carpi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21309,species,dustit2,Dusky Tit,Melaniparus funereus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21312,species,miotit2,Miombo Tit,Melaniparus griseiventris,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21313,species,stbtit2,Stripe-breasted Tit,Melaniparus fasciiventer,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21317,species,somtit4,Somali Tit,Melaniparus thruppi,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21320,species,rettit2,Red-throated Tit,Melaniparus fringillinus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21321,species,whbblt1,White-backed Black-Tit,Melaniparus leuconotus,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21322,species,ashtit2,Ashy Tit,Melaniparus cinerascens,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21325,species,grytit1,Gray Tit,Melaniparus afer,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21328,spuh,parid1,Parid sp.,Paridae sp.,Passeriformes,"Paridae (Tits, Chickadees, and Titmice)",, +21329,species,verdin,Verdin,Auriparus flaviceps,Passeriformes,Remizidae (Penduline-Tits),Penduline-Tits and Verdin, +21336,species,euptit1,Eurasian Penduline-Tit,Remiz pendulinus,Passeriformes,Remizidae (Penduline-Tits),, +21341,species,bhptit1,Black-headed Penduline-Tit,Remiz macronyx,Passeriformes,Remizidae (Penduline-Tits),, +21346,species,wcptit1,White-crowned Penduline-Tit,Remiz coronatus,Passeriformes,Remizidae (Penduline-Tits),, +21347,species,chptit1,Chinese Penduline-Tit,Remiz consobrinus,Passeriformes,Remizidae (Penduline-Tits),, +21348,species,septit1,Sennar Penduline-Tit,Anthoscopus punctifrons,Passeriformes,Remizidae (Penduline-Tits),, +21349,species,mcptit1,Mouse-colored Penduline-Tit,Anthoscopus musculus,Passeriformes,Remizidae (Penduline-Tits),, +21350,species,yeptit1,Yellow Penduline-Tit,Anthoscopus parvulus,Passeriformes,Remizidae (Penduline-Tits),, +21354,species,foptit1,Forest Penduline-Tit,Anthoscopus flavifrons,Passeriformes,Remizidae (Penduline-Tits),, +21358,species,afptit1,African Penduline-Tit,Anthoscopus caroli,Passeriformes,Remizidae (Penduline-Tits),, +21359,issf,afrpet2,African Penduline-Tit (White-bellied),Anthoscopus caroli [ansorgei Group],Passeriformes,Remizidae (Penduline-Tits),,afptit1 +21363,issf,afrpet1,African Penduline-Tit (Buff-bellied),Anthoscopus caroli sylviella/sharpei,Passeriformes,Remizidae (Penduline-Tits),,afptit1 +21366,issf,afrpet3,African Penduline-Tit (Yellow-bellied),Anthoscopus caroli roccatii,Passeriformes,Remizidae (Penduline-Tits),,afptit1 +21367,issf,afrpet4,African Penduline-Tit (Slaty-backed),Anthoscopus caroli rankinei,Passeriformes,Remizidae (Penduline-Tits),,afptit1 +21368,issf,afrpet5,African Penduline-Tit (Buff-vented),Anthoscopus caroli [caroli Group],Passeriformes,Remizidae (Penduline-Tits),,afptit1 +21373,species,soptit1,Southern Penduline-Tit,Anthoscopus minutus,Passeriformes,Remizidae (Penduline-Tits),, +21377,species,grhlar1,Greater Hoopoe-Lark,Alaemon alaudipes,Passeriformes,Alaudidae (Larks),Larks, +21378,issf,grehol1,Greater Hoopoe-Lark (Cape Verde),Alaemon alaudipes boavistae,Passeriformes,Alaudidae (Larks),,grhlar1 +21379,issf,grehol2,Greater Hoopoe-Lark (Mainland),Alaemon alaudipes [alaudipes Group],Passeriformes,Alaudidae (Larks),,grhlar1 +21383,species,lehlar1,Lesser Hoopoe-Lark,Alaemon hamertoni,Passeriformes,Alaudidae (Larks),, +21387,species,sphlar1,Spike-heeled Lark,Chersomanes albofasciata,Passeriformes,Alaudidae (Larks),, +21398,species,beelar1,Beesley's Lark,Chersomanes beesleyi,Passeriformes,Alaudidae (Larks),, +21399,species,gralar2,Gray's Lark,Ammomanopsis grayi,Passeriformes,Alaudidae (Larks),, +21402,species,shclar1,Short-clawed Lark,Certhilauda chuana,Passeriformes,Alaudidae (Larks),, +21403,species,klblar1,Karoo Long-billed Lark,Certhilauda subcoronata,Passeriformes,Alaudidae (Larks),, +21408,species,benlar1,Benguela Lark,Certhilauda benguelensis,Passeriformes,Alaudidae (Larks),, +21411,species,elblar1,Eastern Long-billed Lark,Certhilauda semitorquata,Passeriformes,Alaudidae (Larks),, +21415,species,caplar1,Cape Lark,Certhilauda curvirostris,Passeriformes,Alaudidae (Larks),, +21418,species,agular1,Agulhas Lark,Certhilauda brevirostris,Passeriformes,Alaudidae (Larks),, +21419,species,rurlar1,Rufous-rumped Lark,Pinarocorys erythropygia,Passeriformes,Alaudidae (Larks),, +21420,species,duslar1,Dusky Lark,Pinarocorys nigricans,Passeriformes,Alaudidae (Larks),, +21423,species,thblar1,Thick-billed Lark,Ramphocoris clotbey,Passeriformes,Alaudidae (Larks),, +21424,species,batlar1,Bar-tailed Lark,Ammomanes cinctura,Passeriformes,Alaudidae (Larks),, +21428,species,rutlar2,Rufous-tailed Lark,Ammomanes phoenicura,Passeriformes,Alaudidae (Larks),, +21429,species,deslar1,Desert Lark,Ammomanes deserti,Passeriformes,Alaudidae (Larks),, +21454,spuh,ammoma1,Ammomanes sp.,Ammomanes sp.,Passeriformes,Alaudidae (Larks),, +21455,species,beslar1,Black-eared Sparrow-Lark,Eremopterix australis,Passeriformes,Alaudidae (Larks),, +21456,species,madlar1,Madagascar Lark,Eremopterix hova,Passeriformes,Alaudidae (Larks),, +21457,species,cbslar1,Chestnut-backed Sparrow-Lark,Eremopterix leucotis,Passeriformes,Alaudidae (Larks),, +21463,species,bcslar1,Black-crowned Sparrow-Lark,Eremopterix nigriceps,Passeriformes,Alaudidae (Larks),, +21468,species,ascspl1,Ashy-crowned Sparrow-Lark,Eremopterix griseus,Passeriformes,Alaudidae (Larks),, +21469,species,chhspl1,Chestnut-headed Sparrow-Lark,Eremopterix signatus,Passeriformes,Alaudidae (Larks),, +21472,species,gybspl1,Gray-backed Sparrow-Lark,Eremopterix verticalis,Passeriformes,Alaudidae (Larks),, +21477,species,fislar1,Fischer's Sparrow-Lark,Eremopterix leucopareia,Passeriformes,Alaudidae (Larks),, +21478,species,sablar2,Sabota Lark,Calendulauda sabota,Passeriformes,Alaudidae (Larks),, +21479,issf,sablar1,Sabota Lark (Bradfield's),Calendulauda sabota [naevia Group],Passeriformes,Alaudidae (Larks),,sablar2 +21483,issf,sablar3,Sabota Lark (Sabota),Calendulauda sabota [sabota Group],Passeriformes,Alaudidae (Larks),,sablar2 +21490,species,piblar3,Pink-breasted Lark,Calendulauda poecilosterna,Passeriformes,Alaudidae (Larks),, +21491,species,faclar2,Fawn-colored Lark,Calendulauda africanoides,Passeriformes,Alaudidae (Larks),, +21498,species,foxlar1,Foxy Lark,Calendulauda alopex,Passeriformes,Alaudidae (Larks),, +21501,species,karlar2,Karoo Lark,Calendulauda albescens,Passeriformes,Alaudidae (Larks),, +21506,species,ferlar2,Red Lark,Calendulauda burra,Passeriformes,Alaudidae (Larks),, +21507,species,barlar1,Barlow's Lark,Calendulauda barlowi,Passeriformes,Alaudidae (Larks),, +21508,issf,barlar2,Barlow's Lark (Barlow's),Calendulauda barlowi barlowi,Passeriformes,Alaudidae (Larks),,barlar1 +21509,issf,barlar4,Barlow's Lark (Coastal),Calendulauda barlowi patae,Passeriformes,Alaudidae (Larks),,barlar1 +21510,issf,barlar3,Barlow's Lark (Cave's),Calendulauda barlowi cavei,Passeriformes,Alaudidae (Larks),,barlar1 +21511,hybrid,x00863,Karoo x Barlow's Lark (hybrid),Calendulauda albescens x barlowi,Passeriformes,Alaudidae (Larks),, +21512,species,dunlar3,Dune Lark,Calendulauda erythrochlamys,Passeriformes,Alaudidae (Larks),, +21513,species,liblar1,Liben Lark,Heteromirafra archeri,Passeriformes,Alaudidae (Larks),, +21514,species,rudlar1,Rudd's Lark,Heteromirafra ruddi,Passeriformes,Alaudidae (Larks),, +21515,species,caclar1,Cape Clapper Lark,Mirafra apiata,Passeriformes,Alaudidae (Larks),, +21516,issf,caclar2,Cape Clapper Lark (Cape),Mirafra apiata apiata,Passeriformes,Alaudidae (Larks),,caclar1 +21517,issf,caclar3,Cape Clapper Lark (Agulhas),Mirafra apiata marjoriae,Passeriformes,Alaudidae (Larks),,caclar1 +21518,species,eaclar1,Eastern Clapper Lark,Mirafra fasciolata,Passeriformes,Alaudidae (Larks),, +21524,species,collar1,Collared Lark,Mirafra collaris,Passeriformes,Alaudidae (Larks),, +21525,species,rewlar1,Red-winged Lark,Mirafra hypermetra,Passeriformes,Alaudidae (Larks),, +21526,issf,rewlar2,Red-winged Lark (Red-winged),Mirafra hypermetra [hypermetra Group],Passeriformes,Alaudidae (Larks),,rewlar1 +21530,issf,rewlar3,Red-winged Lark (Rift Valley),Mirafra hypermetra gallarum,Passeriformes,Alaudidae (Larks),,rewlar1 +21531,species,runlar1,Rufous-naped Lark,Mirafra africana,Passeriformes,Alaudidae (Larks),, +21532,issf,runlar2,Rufous-naped Lark (Somali),Mirafra africana sharpii,Passeriformes,Alaudidae (Larks),,runlar1 +21533,issf,runlar3,Rufous-naped Lark (Sudan),Mirafra africana kurrae,Passeriformes,Alaudidae (Larks),,runlar1 +21534,issf,runlar4,Rufous-naped Lark (Bamenda),Mirafra africana stresemanni/bamendae,Passeriformes,Alaudidae (Larks),,runlar1 +21537,issf,runlar5,Rufous-naped Lark (Rufous-naped),Mirafra africana [africana Group],Passeriformes,Alaudidae (Larks),,runlar1 +21553,issf,runlar6,Rufous-naped Lark (Serengeti),Mirafra africana tropicalis,Passeriformes,Alaudidae (Larks),,runlar1 +21554,issf,runlar7,Rufous-naped Lark (Blackish),Mirafra africana nigrescens/nyikae,Passeriformes,Alaudidae (Larks),,runlar1 +21557,issf,runlar8,Rufous-naped Lark (Malbrant's),Mirafra africana malbranti,Passeriformes,Alaudidae (Larks),,runlar1 +21558,species,ashlar1,Ash's Lark,Mirafra ashi,Passeriformes,Alaudidae (Larks),, +21559,species,slblar1,Somali Long-billed Lark,Mirafra somalica,Passeriformes,Alaudidae (Larks),, +21562,species,anglar1,Angola Lark,Mirafra angolensis,Passeriformes,Alaudidae (Larks),, +21566,species,flalar1,Flappet Lark,Mirafra rufocinnamomea,Passeriformes,Alaudidae (Larks),, +21582,species,korlar1,Kordofan Lark,Mirafra cordofanica,Passeriformes,Alaudidae (Larks),, +21583,species,willar1,Williams's Lark,Mirafra williamsi,Passeriformes,Alaudidae (Larks),, +21584,species,frilar1,Friedmann's Lark,Mirafra pulpa,Passeriformes,Alaudidae (Larks),, +21585,species,monlar2,Monotonous Lark,Mirafra passerina,Passeriformes,Alaudidae (Larks),, +21586,species,whtlar1,White-tailed Lark,Mirafra albicauda,Passeriformes,Alaudidae (Larks),, +21587,species,latlar1,Latakoo Lark,Mirafra cheniana,Passeriformes,Alaudidae (Larks),, +21588,species,ausbus2,Australasian Bushlark,Mirafra javanica,Passeriformes,Alaudidae (Larks),, +21605,species,sinbus1,Singing Bushlark,Mirafra cantillans,Passeriformes,Alaudidae (Larks),, +21610,species,burbus1,Burmese Bushlark,Mirafra microptera,Passeriformes,Alaudidae (Larks),, +21611,species,benbus1,Bengal Bushlark,Mirafra assamica,Passeriformes,Alaudidae (Larks),, +21612,species,indbus3,Indochinese Bushlark,Mirafra erythrocephala,Passeriformes,Alaudidae (Larks),, +21613,species,jerbus2,Jerdon's Bushlark,Mirafra affinis,Passeriformes,Alaudidae (Larks),, +21614,species,indbus2,Indian Bushlark,Mirafra erythroptera,Passeriformes,Alaudidae (Larks),, +21615,slash,y01118,Singing/Indian Bushlark,Mirafra cantillans/erythroptera,Passeriformes,Alaudidae (Larks),, +21616,slash,y00744,Jerdon's/Indian Bushlark,Mirafra affinis/erythroptera,Passeriformes,Alaudidae (Larks),, +21617,species,ruslar1,Rusty Lark,Mirafra rufa,Passeriformes,Alaudidae (Larks),, +21621,species,gillar1,Gillett's Lark,Mirafra gilletti,Passeriformes,Alaudidae (Larks),, +21624,spuh,mirafr1,Mirafra sp.,Mirafra sp.,Passeriformes,Alaudidae (Larks),, +21625,species,horlar,Horned Lark,Eremophila alpestris,Passeriformes,Alaudidae (Larks),, +21626,issf,horlar5,Horned Lark (Atlas),Eremophila alpestris atlas,Passeriformes,Alaudidae (Larks),,horlar +21627,issf,horlar6,Horned Lark (Black-necklaced),Eremophila alpestris [penicillata Group],Passeriformes,Alaudidae (Larks),,horlar +21633,issf,horlar7,Horned Lark (Tibetan),Eremophila alpestris [longirostris Group],Passeriformes,Alaudidae (Larks),,horlar +21641,issf,horlar8,Horned Lark (Brandt's),Eremophila alpestris brandti,Passeriformes,Alaudidae (Larks),,horlar +21642,issf,horlar4,Horned Lark (Shore),Eremophila alpestris flava,Passeriformes,Alaudidae (Larks),,horlar +21643,issf,horlar3,Horned Lark (Eastern dark Group),Eremophila alpestris [alpestris Group],Passeriformes,Alaudidae (Larks),,horlar +21648,issf,horlar2,Horned Lark (Western pale Group),Eremophila alpestris [occidentalis Group],Passeriformes,Alaudidae (Larks),,horlar +21659,issf,horlar1,Horned Lark (Western rufous Group),Eremophila alpestris [strigata Group],Passeriformes,Alaudidae (Larks),,horlar +21666,issf,horlar9,Horned Lark (South Baja),Eremophila alpestris enertera,Passeriformes,Alaudidae (Larks),,horlar +21667,issf,horlar10,Horned Lark (Mexican),Eremophila alpestris [chrysolaema Group],Passeriformes,Alaudidae (Larks),,horlar +21673,issf,horlar11,Horned Lark (Colombian),Eremophila alpestris peregrina,Passeriformes,Alaudidae (Larks),,horlar +21674,species,temlar1,Temminck's Lark,Eremophila bilopha,Passeriformes,Alaudidae (Larks),, +21675,slash,y00898,Horned/Temminck's Lark,Eremophila alpestris/bilopha,Passeriformes,Alaudidae (Larks),, +21676,species,blalar2,Blanford's Lark,Calandrella blanfordi,Passeriformes,Alaudidae (Larks),, +21677,issf,blalar3,Blanford's Lark (Blanford's),Calandrella blanfordi blanfordi,Passeriformes,Alaudidae (Larks),,blalar2 +21678,issf,erllar1,Blanford's Lark (Erlanger's),Calandrella blanfordi erlangeri,Passeriformes,Alaudidae (Larks),,blalar2 +21679,species,blalar4,Rufous-capped Lark,Calandrella eremica,Passeriformes,Alaudidae (Larks),, +21682,species,reclar1,Red-capped Lark,Calandrella cinerea,Passeriformes,Alaudidae (Larks),, +21691,species,gstlar1,Greater Short-toed Lark,Calandrella brachydactyla,Passeriformes,Alaudidae (Larks),, +21699,species,sstlar4,Sykes's Short-toed Lark,Calandrella dukhunensis,Passeriformes,Alaudidae (Larks),, +21700,slash,y01042,Greater/Sykes's Short-toed Lark,Calandrella brachydactyla/dukhunensis,Passeriformes,Alaudidae (Larks),, +21701,species,humlar1,Hume's Lark,Calandrella acutirostris,Passeriformes,Alaudidae (Larks),, +21704,slash,y00897,Greater Short-toed/Hume's Lark,Calandrella brachydactyla/acutirostris,Passeriformes,Alaudidae (Larks),, +21705,spuh,caland1,Calandrella sp.,Calandrella sp.,Passeriformes,Alaudidae (Larks),, +21706,species,bimlar1,Bimaculated Lark,Melanocorypha bimaculata,Passeriformes,Alaudidae (Larks),, +21707,species,callar1,Calandra Lark,Melanocorypha calandra,Passeriformes,Alaudidae (Larks),, +21712,slash,y00687,Bimaculated/Calandra Lark,Melanocorypha bimaculata/calandra,Passeriformes,Alaudidae (Larks),, +21713,species,tiblar1,Tibetan Lark,Melanocorypha maxima,Passeriformes,Alaudidae (Larks),, +21714,species,blalar1,Black Lark,Melanocorypha yeltoniensis,Passeriformes,Alaudidae (Larks),, +21715,species,monlar1,Mongolian Lark,Melanocorypha mongolica,Passeriformes,Alaudidae (Larks),, +21716,species,duplar1,Dupont's Lark,Chersophilus duponti,Passeriformes,Alaudidae (Larks),, +21719,species,dunlar2,Dunn's Lark,Eremalauda dunni,Passeriformes,Alaudidae (Larks),, +21720,issf,dunlar1,Dunn's Lark (African),Eremalauda dunni dunni,Passeriformes,Alaudidae (Larks),,dunlar2 +21721,issf,dunlar4,Dunn's Lark (Arabian),Eremalauda dunni eremodites,Passeriformes,Alaudidae (Larks),,dunlar2 +21722,species,sstlar1,Somali Short-toed Lark,Alaudala somalica,Passeriformes,Alaudidae (Larks),, +21723,issf,sstlar2,Somali Short-toed Lark (Somali),Alaudala somalica [somalica Group],Passeriformes,Alaudidae (Larks),,sstlar1 +21727,issf,sstlar3,Somali Short-toed Lark (Athi),Alaudala somalica athensis,Passeriformes,Alaudidae (Larks),,sstlar1 +21728,species,lstlar2,Asian Short-toed Lark,Alaudala cheleensis,Passeriformes,Alaudidae (Larks),, +21736,species,lstlar3,Lesser Short-toed Lark,Alaudala rufescens,Passeriformes,Alaudidae (Larks),, +21746,slash,y00675,Greater/Asian/Lesser Short-toed Lark,Calandrella brachydactyla/Alaudala cheleensis/rufescens,Passeriformes,Alaudidae (Larks),, +21747,slash,y01043,Greater/Lesser Short-toed Lark,Calandrella brachydactyla/Alaudala rufescens,Passeriformes,Alaudidae (Larks),, +21748,slash,lstlar1,Asian/Lesser Short-toed Lark,Alaudala cheleensis/rufescens,Passeriformes,Alaudidae (Larks),, +21749,species,sanlar1,Sand Lark,Alaudala raytal,Passeriformes,Alaudidae (Larks),, +21753,spuh,y00979,Calandrella/Alaudala sp.,Calandrella/Alaudala sp.,Passeriformes,Alaudidae (Larks),, +21754,species,woolar1,Wood Lark,Lullula arborea,Passeriformes,Alaudidae (Larks),, +21757,species,stalar2,Stark's Lark,Spizocorys starki,Passeriformes,Alaudidae (Larks),, +21758,species,scllar1,Sclater's Lark,Spizocorys sclateri,Passeriformes,Alaudidae (Larks),, +21759,species,shtlar1,Short-tailed Lark,Spizocorys fremantlii,Passeriformes,Alaudidae (Larks),, +21763,species,piblar1,Pink-billed Lark,Spizocorys conirostris,Passeriformes,Alaudidae (Larks),, +21770,species,botlar1,Botha's Lark,Spizocorys fringillaris,Passeriformes,Alaudidae (Larks),, +21771,species,obblar1,Obbia Lark,Spizocorys obbiensis,Passeriformes,Alaudidae (Larks),, +21772,species,maslar1,Masked Lark,Spizocorys personata,Passeriformes,Alaudidae (Larks),, +21777,species,whwlar1,White-winged Lark,Alauda leucoptera,Passeriformes,Alaudidae (Larks),, +21778,species,skylar,Eurasian Skylark,Alauda arvensis,Passeriformes,Alaudidae (Larks),, +21779,issf,skylar1,Eurasian Skylark (European),Alauda arvensis [arvensis Group],Passeriformes,Alaudidae (Larks),,skylar +21787,issf,skylar2,Eurasian Skylark (Asian),Alauda arvensis [pekinensis Group],Passeriformes,Alaudidae (Larks),,skylar +21792,issf,eursky1,Eurasian Skylark (Far Eastern),Alauda arvensis japonica/intermedia,Passeriformes,Alaudidae (Larks),,skylar +21795,species,orisky1,Oriental Skylark,Alauda gulgula,Passeriformes,Alaudidae (Larks),, +21804,slash,y00652,Eurasian/Oriental Skylark,Alauda arvensis/gulgula,Passeriformes,Alaudidae (Larks),, +21805,species,razsky1,Razo Skylark,Alauda razae,Passeriformes,Alaudidae (Larks),, +21806,species,sunlar1,Sun Lark,Galerida modesta,Passeriformes,Alaudidae (Larks),, +21811,species,lablar1,Large-billed Lark,Galerida magnirostris,Passeriformes,Alaudidae (Larks),, +21815,species,thelar1,Thekla's Lark,Galerida theklae,Passeriformes,Alaudidae (Larks),, +21828,species,crelar2,Crested Lark,Galerida cristata,Passeriformes,Alaudidae (Larks),, +21864,slash,y00980,Thekla's/Crested Lark,Galerida theklae/cristata,Passeriformes,Alaudidae (Larks),, +21865,species,crelar3,Maghreb Lark,Galerida macrorhyncha,Passeriformes,Alaudidae (Larks),, +21868,slash,crelar1,Crested/Maghreb Lark,Galerida cristata/macrorhyncha,Passeriformes,Alaudidae (Larks),, +21869,species,mallar1,Malabar Lark,Galerida malabarica,Passeriformes,Alaudidae (Larks),, +21870,slash,y00655,Thekla's/Crested/Maghreb Lark,Galerida theklae/cristata/macrorhyncha,Passeriformes,Alaudidae (Larks),, +21871,species,tawlar1,Tawny Lark,Galerida deva,Passeriformes,Alaudidae (Larks),, +21872,spuh,lark1,lark sp.,Alaudidae sp.,Passeriformes,Alaudidae (Larks),, +21873,species,bearee1,Bearded Reedling,Panurus biarmicus,Passeriformes,Panuridae (Bearded Reedling),Bearded Reedling, +21877,species,yesnic1,Western Nicator,Nicator chloris,Passeriformes,Nicatoridae (Nicators),Nicators, +21878,species,easnic1,Eastern Nicator,Nicator gularis,Passeriformes,Nicatoridae (Nicators),, +21879,species,yetnic1,Yellow-throated Nicator,Nicator vireo,Passeriformes,Nicatoridae (Nicators),, +21880,slash,y00896,Western/Yellow-throated Nicator,Nicator chloris/vireo,Passeriformes,Nicatoridae (Nicators),, +21881,species,grecro1,Green Crombec,Sylvietta virens,Passeriformes,Macrosphenidae (African Warblers),African Warblers, +21886,species,lebcro1,Lemon-bellied Crombec,Sylvietta denti,Passeriformes,Macrosphenidae (African Warblers),, +21889,species,whbcro2,White-browed Crombec,Sylvietta leucophrys,Passeriformes,Macrosphenidae (African Warblers),, +21890,issf,whbcro1,White-browed Crombec (White-browed),Sylvietta leucophrys leucophrys/chloronota,Passeriformes,Macrosphenidae (African Warblers),,whbcro2 +21893,issf,whbcro3,White-browed Crombec (Chapin's),Sylvietta leucophrys chapini,Passeriformes,Macrosphenidae (African Warblers),,whbcro2 +21894,species,norcro1,Northern Crombec,Sylvietta brachyura,Passeriformes,Macrosphenidae (African Warblers),, +21895,issf,norcro3,Northern Crombec (Northern),Sylvietta brachyura brachyura/carnapi,Passeriformes,Macrosphenidae (African Warblers),,norcro1 +21898,issf,norcro2,Northern Crombec (Eastern),Sylvietta brachyura leucopsis,Passeriformes,Macrosphenidae (African Warblers),,norcro1 +21899,species,shbcro1,Short-billed Crombec,Sylvietta philippae,Passeriformes,Macrosphenidae (African Warblers),, +21900,species,reccro1,Red-capped Crombec,Sylvietta ruficapilla,Passeriformes,Macrosphenidae (African Warblers),, +21907,species,refcro1,Red-faced Crombec,Sylvietta whytii,Passeriformes,Macrosphenidae (African Warblers),, +21912,species,somcro1,Somali Crombec,Sylvietta isabellina,Passeriformes,Macrosphenidae (African Warblers),, +21913,species,capcro1,Cape Crombec,Sylvietta rufescens,Passeriformes,Macrosphenidae (African Warblers),, +21921,spuh,crombe1,crombec sp.,Sylvietta sp.,Passeriformes,Macrosphenidae (African Warblers),, +21922,species,damroc1,Rockrunner,Achaetops pycnopygius,Passeriformes,Macrosphenidae (African Warblers),, +21925,species,mogwar1,Moustached Grass-Warbler,Melocichla mentalis,Passeriformes,Macrosphenidae (African Warblers),, +21931,species,capgra1,Cape Grassbird,Sphenoeacus afer,Passeriformes,Macrosphenidae (African Warblers),, +21936,species,viswar1,Victorin's Warbler,Cryptillas victorini,Passeriformes,Macrosphenidae (African Warblers),, +21937,species,kemlon1,Kemp's Longbill,Macrosphenus kempi,Passeriformes,Macrosphenidae (African Warblers),, +21940,species,yellon1,Yellow Longbill,Macrosphenus flavicans,Passeriformes,Macrosphenidae (African Warblers),, +21943,species,grylon1,Gray Longbill,Macrosphenus concolor,Passeriformes,Macrosphenidae (African Warblers),, +21944,species,pullon1,Pulitzer's Longbill,Macrosphenus pulitzeri,Passeriformes,Macrosphenidae (African Warblers),, +21945,species,krelon1,Kretschmer's Longbill,Macrosphenus kretschmeri,Passeriformes,Macrosphenidae (African Warblers),, +21948,spuh,longbi1,longbill sp.,Macrosphenus sp.,Passeriformes,Macrosphenidae (African Warblers),, +21949,species,grawar1,Grauer's Warbler,Graueria vittata,Passeriformes,Macrosphenidae (African Warblers),, +21950,species,grehyl1,Green Hylia,Hylia prasina,Passeriformes,Macrosphenidae (African Warblers),, +21953,species,tithyl1,Tit-hylia,Pholidornis rushiae,Passeriformes,Macrosphenidae (African Warblers),, +21958,species,comjer1,Common Jery,Neomixis tenella,Passeriformes,Cisticolidae (Cisticolas and Allies),Cisticolas and Allies, +21963,species,grejer1,Green Jery,Neomixis viridis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21966,species,sttjer1,Stripe-throated Jery,Neomixis striatigula,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21967,issf,sttjer2,Stripe-throated Jery (Stripe-throated),Neomixis striatigula striatigula/sclateri,Passeriformes,Cisticolidae (Cisticolas and Allies),,sttjer1 +21970,issf,sttjer3,Stripe-throated Jery (Subdesert),Neomixis striatigula pallidior,Passeriformes,Cisticolidae (Cisticolas and Allies),,sttjer1 +21971,spuh,jery1,jery sp.,Neomixis sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21972,species,mitbab1,Leyte Plumed-Warbler,Micromacronus leytensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21973,species,minmib1,Mindanao Plumed-Warbler,Micromacronus sordidus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21974,species,salere1,Salvadori's Eremomela,Eremomela salvadorii,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21975,species,yevere1,Yellow-vented Eremomela,Eremomela flavicrissalis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21976,species,yebere1,Yellow-bellied Eremomela,Eremomela icteropygialis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21986,species,senere1,Senegal Eremomela,Eremomela pusilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21987,species,grbere1,Green-backed Eremomela,Eremomela canescens,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21992,species,greere1,Greencap Eremomela,Eremomela scotops,Passeriformes,Cisticolidae (Cisticolas and Allies),, +21998,species,yerere1,Yellow-rumped Eremomela,Eremomela gregalis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22001,species,rucere1,Rufous-crowned Eremomela,Eremomela badiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22005,species,turere1,Turner's Eremomela,Eremomela turneri,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22008,species,blnere1,Black-necked Eremomela,Eremomela atricollis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22009,species,bunere1,Burnt-neck Eremomela,Eremomela usticollis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22012,spuh,eremom1,Eremomela sp.,Eremomela sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22013,species,rwgwar2,Red-winged Gray Warbler,Drymocichla incana,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22014,species,silpri2,Sierra Leone Prinia,Schistolais leontica,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22015,species,whcpri2,White-chinned Prinia,Schistolais leucopogon,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22018,species,robpri1,Roberts's Warbler,Oreophilais robertsi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22019,species,nampri1,Namaqua Warbler,Phragmacia substriata,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22022,species,grnlon1,Green Longtail,Urolais epichlorus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22023,issf,grnlon2,Green Longtail (Green),Urolais epichlorus epichlorus,Passeriformes,Cisticolidae (Cisticolas and Allies),,grnlon1 +22024,issf,grnlon3,Green Longtail (Bioko),Urolais epichlorus mariae,Passeriformes,Cisticolidae (Cisticolas and Allies),,grnlon1 +22025,species,blcapa2,Black-collared Apalis,Oreolais pulcher,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22028,species,ruwapa1,Rwenzori Apalis,Oreolais ruwenzorii,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22029,species,afrtai2,African Tailorbird,Artisornis metopias,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22032,species,lobtai1,Long-billed Tailorbird,Artisornis moreaui,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22033,issf,lobtai2,Long-billed Tailorbird (Long-billed),Artisornis moreaui moreaui,Passeriformes,Cisticolidae (Cisticolas and Allies),,lobtai1 +22034,issf,lobtai3,Long-billed Tailorbird (Njesi),Artisornis moreaui sousae,Passeriformes,Cisticolidae (Cisticolas and Allies),,lobtai1 +22035,species,whtwar1,White-tailed Warbler,Poliolais lopezi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22036,issf,whtwar2,White-tailed Warbler (Highland),Poliolais lopezi manengubae,Passeriformes,Cisticolidae (Cisticolas and Allies),,whtwar1 +22037,issf,whtwar3,White-tailed Warbler (Alexander's),Poliolais lopezi alexanderi,Passeriformes,Cisticolidae (Cisticolas and Allies),,whtwar1 +22038,issf,whtwar4,White-tailed Warbler (Bioko),Poliolais lopezi lopezi,Passeriformes,Cisticolidae (Cisticolas and Allies),,whtwar1 +22039,species,miowrw2,Miombo Wren-Warbler,Calamonastes undosus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22044,species,miowrw3,Stierling's Wren-Warbler,Calamonastes stierlingi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22049,hybrid,x00966,Miombo x Stierling's Wren-Warbler (hybrid),Calamonastes undosus x stierlingi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22050,slash,miowrw1,Miombo/Stierling's Wren-Warbler,Calamonastes undosus/stierlingi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22051,species,grywrw1,Gray Wren-Warbler,Calamonastes simplex,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22052,species,bawwar1,Barred Wren-Warbler,Calamonastes fasciolatus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22056,species,grbcam1,Green-backed Camaroptera,Camaroptera brachyura,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22057,issf,gnbcam2,Green-backed Camaroptera (Gray-backed),Camaroptera brachyura [brevicaudata Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,grbcam1 +22069,issf,gnbcam1,Green-backed Camaroptera (Green-backed),Camaroptera brachyura [brachyura Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,grbcam1 +22075,species,gnbcam3,Hartert's Camaroptera,Camaroptera harterti,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22076,slash,y01150,Green-backed/Hartert's Camaroptera,Camaroptera brachyura/harterti,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22077,species,yebcam1,Yellow-browed Camaroptera,Camaroptera superciliaris,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22078,species,olgcam1,Olive-green Camaroptera,Camaroptera chloronota,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22079,issf,olgcam2,Olive-green Camaroptera (Olive-green),Camaroptera chloronota [chloronota Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,olgcam1 +22083,issf,olgcam3,Olive-green Camaroptera (Tawny-breasted),Camaroptera chloronota toroensis/kamitugaensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,olgcam1 +22086,spuh,camaro1,Camaroptera sp.,Camaroptera sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22087,species,crilon1,Cricket Longtail,Spiloptila clamans,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22088,species,bubwar2,Buff-bellied Warbler,Phyllolais pulchella,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22089,species,batapa2,Bar-throated Apalis,Apalis thoracica,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22108,species,batapa4,Taita Apalis,Apalis fuscigularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22109,species,batapa3,Yellow-throated Apalis,Apalis flavigularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22110,species,batapa5,Namuli Apalis,Apalis lynesi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22111,species,blcapa1,Black-capped Apalis,Apalis nigriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22112,issf,bkcapa1,Black-capped Apalis (Black-capped),Apalis nigriceps nigriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),,blcapa1 +22113,issf,bkcapa2,Black-capped Apalis (White-tailed),Apalis nigriceps collaris,Passeriformes,Cisticolidae (Cisticolas and Allies),,blcapa1 +22114,species,bltapa1,Black-throated Apalis,Apalis jacksoni,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22118,species,whwapa1,White-winged Apalis,Apalis chariessa,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22121,species,masapa1,Masked Apalis,Apalis binotata,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22122,species,blfapa1,Black-faced Apalis,Apalis personata,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22125,species,yebapa1,Yellow-breasted Apalis,Apalis flavida,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22126,issf,yebapa2,Yellow-breasted Apalis (Brown-tailed),Apalis flavida flavocincta/viridiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),,yebapa1 +22129,issf,yebapa3,Yellow-breasted Apalis (Yellow-breasted),Apalis flavida [flavida Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,yebapa1 +22137,species,rudapa1,Rudd's Apalis,Apalis ruddi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22141,species,shaapa2,Sharpe's Apalis,Apalis sharpii,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22142,species,butapa1,Buff-throated Apalis,Apalis rufogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22143,issf,butapa2,Buff-throated Apalis (Black-breasted),Apalis rufogularis rufogularis/sanderi,Passeriformes,Cisticolidae (Cisticolas and Allies),,butapa1 +22146,issf,butapa3,Buff-throated Apalis (Angola),Apalis rufogularis angolensis/brauni,Passeriformes,Cisticolidae (Cisticolas and Allies),,butapa1 +22149,issf,butapa4,Buff-throated Apalis (Buff-throated),Apalis rufogularis nigrescens/kigezi,Passeriformes,Cisticolidae (Cisticolas and Allies),,butapa1 +22152,species,kunapa1,Kungwe Apalis,Apalis argentea,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22153,species,bamapa1,Bamenda Apalis,Apalis bamendae,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22154,species,gosapa1,Gosling's Apalis,Apalis goslingi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22155,species,chtapa2,Kabobo Apalis,Apalis kaboboensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22156,species,chtapa3,Chestnut-throated Apalis,Apalis porphyrolaema,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22159,species,chaapa1,Chapin's Apalis,Apalis chapini,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22162,species,blhapa1,Black-headed Apalis,Apalis melanocephala,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22172,species,chiapa1,Chirinda Apalis,Apalis chirindensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22175,species,gryapa1,Gray Apalis,Apalis cinerea,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22176,issf,gryapa2,Gray Apalis (Sclater's),Apalis cinerea sclateri,Passeriformes,Cisticolidae (Cisticolas and Allies),,gryapa1 +22177,issf,gryapa3,Gray Apalis (Angola),Apalis cinerea grandis,Passeriformes,Cisticolidae (Cisticolas and Allies),,gryapa1 +22178,issf,gryapa4,Gray Apalis (Gray),Apalis cinerea cinerea/funebris,Passeriformes,Cisticolidae (Cisticolas and Allies),,gryapa1 +22181,species,brhapa1,Brown-headed Apalis,Apalis alticola,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22184,species,karapa1,Karamoja Apalis,Apalis karamojae,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22187,spuh,apalis1,Apalis sp.,Apalis sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22188,species,comtai1,Common Tailorbird,Orthotomus sutorius,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22198,species,ruftai1,Rufous-fronted Tailorbird,Orthotomus frontalis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22201,species,dantai1,Dark-necked Tailorbird,Orthotomus atrogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22206,species,camtai1,Cambodian Tailorbird,Orthotomus chaktomuk,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22207,species,ashtai1,Ashy Tailorbird,Orthotomus ruficeps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22216,species,olbtai1,Olive-backed Tailorbird,Orthotomus sepium,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22219,species,ruttai1,Rufous-tailed Tailorbird,Orthotomus sericeus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22224,species,phitai1,Visayan Tailorbird,Orthotomus castaneiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22227,species,gybtai1,Gray-backed Tailorbird,Orthotomus derbianus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22230,species,gnbtai1,Green-backed Tailorbird,Orthotomus chloronotus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22231,species,yebtai1,Yellow-breasted Tailorbird,Orthotomus samarensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22232,species,whbtai1,White-browed Tailorbird,Orthotomus nigriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22233,species,whetai1,White-eared Tailorbird,Orthotomus cinereiceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22236,spuh,tailor1,tailorbird sp.,Orthotomus sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22237,species,strpri2,Striated Prinia,Prinia crinigera,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22244,species,bropri1,Brown Prinia,Prinia polychroa,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22249,species,hilpri1,Black-throated Prinia,Prinia atrogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22250,issf,bktpri1,Black-throated Prinia (Black-throated),Prinia atrogularis atrogularis,Passeriformes,Cisticolidae (Cisticolas and Allies),,hilpri1 +22251,issf,bktpri2,Black-throated Prinia (Rufous-crowned),Prinia atrogularis khasiana,Passeriformes,Cisticolidae (Cisticolas and Allies),,hilpri1 +22252,species,hilpri2,Hill Prinia,Prinia superciliaris,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22258,species,gycpri1,Gray-crowned Prinia,Prinia cinereocapilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22259,species,rufpri2,Rufous-fronted Prinia,Prinia buchanani,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22260,species,rufpri1,Rufescent Prinia,Prinia rufescens,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22267,species,gybpri1,Gray-breasted Prinia,Prinia hodgsonii,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22274,species,bawpri1,Bar-winged Prinia,Prinia familiaris,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22277,species,grapri1,Graceful Prinia,Prinia gracilis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22290,species,junpri1,Jungle Prinia,Prinia sylvatica,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22296,species,yebpri1,Yellow-bellied Prinia,Prinia flaviventris,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22297,issf,yebpri2,Yellow-bellied Prinia (Yellow-bellied),Prinia flaviventris [flaviventris Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,yebpri1 +22304,issf,yebpri3,Yellow-bellied Prinia (Chinese),Prinia flaviventris sonitans,Passeriformes,Cisticolidae (Cisticolas and Allies),,yebpri1 +22305,species,ashpri1,Ashy Prinia,Prinia socialis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22310,slash,y01001,Yellow-bellied/Ashy Prinia,Prinia flaviventris/socialis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22311,species,tafpri1,Tawny-flanked Prinia,Prinia subflava,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22322,species,plapri1,Plain Prinia,Prinia inornata,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22333,species,palpri1,Pale Prinia,Prinia somalica,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22336,species,rivpri1,River Prinia,Prinia fluviatilis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22337,species,blcpri1,Black-chested Prinia,Prinia flavicans,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22343,species,karpri1,Karoo Prinia,Prinia maculosa,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22347,species,drapri1,Drakensberg Prinia,Prinia hypoxantha,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22348,species,satpri1,Sao Tome Prinia,Prinia molleri,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22349,species,banpri1,Banded Prinia,Prinia bairdii,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22350,issf,banpri2,Banded Prinia (Banded),Prinia bairdii bairdii/heinrichi,Passeriformes,Cisticolidae (Cisticolas and Allies),,banpri1 +22353,issf,banpri3,Banded Prinia (Black-faced),Prinia bairdii melanops/obscura,Passeriformes,Cisticolidae (Cisticolas and Allies),,banpri1 +22356,species,rewpri1,Red-winged Prinia,Prinia erythroptera,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22361,species,refwar2,Red-fronted Prinia,Prinia rufifrons,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22362,issf,refwar1,Red-fronted Prinia (Red-fronted),Prinia rufifrons rufifrons/smithi,Passeriformes,Cisticolidae (Cisticolas and Allies),,refwar2 +22365,issf,refwar3,Red-fronted Prinia (Rufous-backed),Prinia rufifrons rufidorsalis,Passeriformes,Cisticolidae (Cisticolas and Allies),,refwar2 +22366,spuh,prinia1,prinia sp.,Prinia sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22367,species,kopwar1,Kopje Warbler,Euryptila subcinnamomea,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22370,species,mrmwar1,Mrs. Moreau's Warbler,Scepomycter winifredae,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22371,issf,mrmwar2,Mrs. Moreau's Warbler (Mrs. Moreau's),Scepomycter winifredae winifredae,Passeriformes,Cisticolidae (Cisticolas and Allies),,mrmwar1 +22372,issf,mrmwar3,Mrs. Moreau's Warbler (Rubeho),Scepomycter winifredae rubehoensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,mrmwar1 +22373,species,socwar2,Socotra Warbler,Incana incana,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22374,species,ruewar2,Rufous-eared Warbler,Malcorus pectoralis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22378,species,bkcruw1,Black-capped Rufous-Warbler,Bathmocercus cerviniventris,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22379,species,bkfruw1,Black-faced Rufous-Warbler,Bathmocercus rufus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22382,species,oriwar2,Oriole Warbler,Hypergerus atriceps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22383,species,gycwar3,Gray-capped Warbler,Eminia lepida,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22384,species,refcis1,Red-faced Cisticola,Cisticola erythrops,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22385,issf,refcis2,Red-faced Cisticola (Red-faced),Cisticola erythrops [erythrops Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,refcis1 +22391,issf,refcis3,Red-faced Cisticola (Lepe),Cisticola erythrops lepe,Passeriformes,Cisticolidae (Cisticolas and Allies),,refcis1 +22392,species,sincis1,Singing Cisticola,Cisticola cantans,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22400,species,whicis1,Whistling Cisticola,Cisticola lateralis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22404,species,chacis1,Chattering Cisticola,Cisticola anonymus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22405,species,tricis1,Trilling Cisticola,Cisticola woosnami,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22408,species,bubcis1,Bubbling Cisticola,Cisticola bulliens,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22411,species,chucis1,Chubb's Cisticola,Cisticola chubbi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22412,issf,chucis3,Chubb's Cisticola (Discolored),Cisticola chubbi discolor/adametzi,Passeriformes,Cisticolidae (Cisticolas and Allies),,chucis1 +22415,issf,chucis4,Chubb's Cisticola (Chubb's),Cisticola chubbi chubbi/marungensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,chucis1 +22418,species,huncis1,Hunter's Cisticola,Cisticola hunteri,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22419,species,bllcis1,Black-lored Cisticola,Cisticola nigriloris,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22420,form,kilcis1,Kilombero Cisticola (undescribed form),Cisticola [undescribed Kilombero form],Passeriformes,Cisticolidae (Cisticolas and Allies),, +22421,species,rolcis2,Rock-loving Cisticola,Cisticola aberrans,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22422,issf,rolcis1,Rock-loving Cisticola (Rock-loving),Cisticola aberrans [emini Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,rolcis2 +22426,issf,rolcis4,Rock-loving Cisticola (Huambo),Cisticola aberrans bailunduensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,rolcis2 +22427,issf,rolcis3,Rock-loving Cisticola (Lazy),Cisticola aberrans [aberrans Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,rolcis2 +22432,species,borcis1,Boran Cisticola,Cisticola bodessa,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22435,species,ratcis1,Rattling Cisticola,Cisticola chiniana,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22453,species,ashcis1,Ashy Cisticola,Cisticola cinereolus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22456,species,repcis1,Red-pate Cisticola,Cisticola ruficeps,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22460,species,dorcis1,Dorst's Cisticola,Cisticola guinea,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22461,species,grycis1,Tinkling Cisticola,Cisticola rufilatus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22465,species,rehcis2,Red-headed Cisticola,Cisticola subruficapilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22466,issf,rehcis1,Red-headed Cisticola (Namib),Cisticola subruficapilla newtoni,Passeriformes,Cisticolidae (Cisticolas and Allies),,rehcis2 +22467,issf,rehcis3,Red-headed Cisticola (Red-headed),Cisticola subruficapilla [subruficapilla Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,rehcis2 +22472,issf,rehcis4,Red-headed Cisticola (Plain-breasted),Cisticola subruficapilla jamesi,Passeriformes,Cisticolidae (Cisticolas and Allies),,rehcis2 +22473,species,waicis1,Wailing Cisticola,Cisticola lais,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22474,issf,waicis2,Wailing Cisticola (Lynes's),Cisticola lais distinctus,Passeriformes,Cisticolidae (Cisticolas and Allies),,waicis1 +22475,issf,waicis3,Wailing Cisticola (Wailing),Cisticola lais [lais Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,waicis1 +22483,species,tarcis1,Tana River Cisticola,Cisticola restrictus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22484,species,chucis2,Churring Cisticola,Cisticola njombe,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22487,species,wincis3,Winding Cisticola,Cisticola marginatus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22493,species,wincis6,Ethiopian Cisticola,Cisticola lugubris,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22494,species,wincis4,Coastal Cisticola,Cisticola haematocephalus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22495,species,wincis5,Luapula Cisticola,Cisticola luapula,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22496,species,wincis2,Rufous-winged Cisticola,Cisticola galactotes,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22499,slash,wincis1,Winding/Coastal/Luapula Cisticola,Cisticola marginatus/haematocephalus/luapula,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22500,form,whtcis1,White-tailed Cisticola (undescribed form),Cisticola [undescribed White-tailed form],Passeriformes,Cisticolidae (Cisticolas and Allies),, +22501,species,chicis1,Chirping Cisticola,Cisticola pipiens,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22505,species,carcis1,Carruthers's Cisticola,Cisticola carruthersi,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22506,species,tincis1,Levaillant's Cisticola,Cisticola tinniens,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22512,species,stocis1,Stout Cisticola,Cisticola robustus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22513,issf,stocis2,Stout Cisticola (Western),Cisticola robustus santae,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 +22514,issf,stocis3,Stout Cisticola (Stout),Cisticola robustus robustus/schraderi,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 +22517,issf,stocis4,Stout Cisticola (Omo),Cisticola robustus omo,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 +22518,issf,stocis5,Stout Cisticola (Rufous-crowned),Cisticola robustus nuchalis/awemba,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 +22521,issf,stocis6,Stout Cisticola (Angola),Cisticola robustus angolensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,stocis1 +22522,species,crocis1,Croaking Cisticola,Cisticola natalensis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22530,species,pipcis2,Piping Cisticola,Cisticola fulvicapilla,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22540,species,abecis1,Aberdare Cisticola,Cisticola aberdare,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22541,species,tabcis1,Tabora Cisticola,Cisticola angusticauda,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22542,species,sltcis1,Slender-tailed Cisticola,Cisticola melanurus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22543,species,sifcis1,Siffling Cisticola,Cisticola brachypterus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22553,species,rufcis1,Rufous Cisticola,Cisticola rufus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22554,species,foxcis1,Foxy Cisticola,Cisticola troglodytes,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22557,species,tincis3,Tiny Cisticola,Cisticola nana,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22558,species,zitcis1,Zitting Cisticola,Cisticola juncidis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22559,issf,zitcis2,Zitting Cisticola (Zitting),Cisticola juncidis [juncidis Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,zitcis1 +22567,issf,zitcis3,Zitting Cisticola (African),Cisticola juncidis terrestris/uropygialis,Passeriformes,Cisticolidae (Cisticolas and Allies),,zitcis1 +22570,issf,zitcis4,Zitting Cisticola (tinnabulans Group),Cisticola juncidis [tinnabulans Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,zitcis1 +22578,issf,zitcis5,Zitting Cisticola (Eastern),Cisticola juncidis brunniceps,Passeriformes,Cisticolidae (Cisticolas and Allies),,zitcis1 +22579,species,soccis1,Socotra Cisticola,Cisticola haesitatus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22580,species,madcis2,Madagascar Cisticola,Cisticola cherina,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22581,species,descis1,Desert Cisticola,Cisticola aridulus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22591,species,clocis1,Cloud Cisticola,Cisticola textrix,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22592,issf,clocis2,Cloud Cisticola (Cloud),Cisticola textrix [major Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,clocis1 +22597,issf,clocis3,Cloud Cisticola (Cape),Cisticola textrix textrix,Passeriformes,Cisticolidae (Cisticolas and Allies),,clocis1 +22598,species,blncis1,Black-backed Cisticola,Cisticola eximius,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22599,issf,bkncis1,Black-backed Cisticola (winneba),Cisticola eximius winneba,Passeriformes,Cisticolidae (Cisticolas and Allies),,blncis1 +22600,issf,bkncis2,Black-backed Cisticola (Black-backed),Cisticola eximius eximius/occidens,Passeriformes,Cisticolidae (Cisticolas and Allies),,blncis1 +22603,species,clscis1,Cloud-scraping Cisticola,Cisticola dambo,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22606,species,pepcis1,Pectoral-patch Cisticola,Cisticola brunnescens,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22607,issf,pepcis2,Pectoral-patch Cisticola (Lynes's),Cisticola brunnescens lynesi/mbangensis,Passeriformes,Cisticolidae (Cisticolas and Allies),,pepcis1 +22610,issf,pepcis3,Pectoral-patch Cisticola (Pectoral-patch),Cisticola brunnescens [brunnescens Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,pepcis1 +22615,species,paccis1,Pale-crowned Cisticola,Cisticola cinnamomeus,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22619,species,wiscis1,Wing-snapping Cisticola,Cisticola ayresii,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22620,issf,wiscis2,Wing-snapping Cisticola (Gabon),Cisticola ayresii gabun,Passeriformes,Cisticolidae (Cisticolas and Allies),,wiscis1 +22621,issf,wiscis3,Wing-snapping Cisticola (Wing-snapping),Cisticola ayresii [ayresii Group],Passeriformes,Cisticolidae (Cisticolas and Allies),,wiscis1 +22627,species,gohcis1,Golden-headed Cisticola,Cisticola exilis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22640,slash,y01127,Zitting/Golden-headed Cisticola,Cisticola juncidis/exilis,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22641,spuh,cistic1,cisticola sp.,Cisticola sp.,Passeriformes,Cisticolidae (Cisticolas and Allies),, +22642,species,albwar1,Aldabra Brush-Warbler,Nesillas aldabrana,Passeriformes,Acrocephalidae (Reed Warblers and Allies),Reed Warblers and Allies, +22643,species,anbwar1,Anjouan Brush-Warbler,Nesillas longicaudata,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22644,species,madbrw1,Madagascar Brush-Warbler,Nesillas typica,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22648,species,subbrw1,Subdesert Brush-Warbler,Nesillas lantzii,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22649,species,gcbwar1,Grand Comoro Brush-Warbler,Nesillas brevicaudata,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22650,species,mohbrw1,Moheli Brush-Warbler,Nesillas mariae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22651,species,paywar1,Papyrus Yellow-Warbler,Calamonastides gracilirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22652,issf,papyew1,Papyrus Yellow-Warbler (Papyrus),Calamonastides gracilirostris gracilirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,paywar1 +22653,issf,papyew2,Papyrus Yellow-Warbler (Zambian),Calamonastides gracilirostris bensoni,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,paywar1 +22654,species,thbwar1,Thick-billed Warbler,Arundinax aedon,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22657,species,boowar1,Booted Warbler,Iduna caligata,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22658,species,sykwar2,Sykes's Warbler,Iduna rama,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22659,slash,y00643,Booted/Sykes's Warbler,Iduna caligata/rama,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22660,species,eaowar1,Eastern Olivaceous Warbler,Iduna pallida,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22665,species,weowar1,Western Olivaceous Warbler,Iduna opaca,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22666,slash,y00623,Eastern/Western Olivaceous Warbler,Iduna pallida/opaca,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22667,species,afywar1,African Yellow-Warbler,Iduna natalensis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22672,species,moywar1,Mountain Yellow-Warbler,Iduna similis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22673,spuh,iduna1,Iduna sp.,Iduna sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22674,species,upcwar1,Upcher's Warbler,Hippolais languida,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22675,species,oltwar1,Olive-tree Warbler,Hippolais olivetorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22676,species,melwar1,Melodious Warbler,Hippolais polyglotta,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22677,species,ictwar1,Icterine Warbler,Hippolais icterina,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22678,slash,y00644,Melodious/Icterine Warbler,Hippolais polyglotta/icterina,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22679,spuh,hippol1,Hippolais sp.,Hippolais sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22680,species,aquwar1,Aquatic Warbler,Acrocephalus paludicola,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22681,species,bbrwar1,Black-browed Reed Warbler,Acrocephalus bistrigiceps,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22682,species,strwar1,Streaked Reed Warbler,Acrocephalus sorghophilus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22683,species,mouwar1,Moustached Warbler,Acrocephalus melanopogon,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22687,species,sedwar1,Sedge Warbler,Acrocephalus schoenobaenus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22688,species,padwar1,Paddyfield Warbler,Acrocephalus agricola,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22689,species,blwwar1,Blunt-winged Warbler,Acrocephalus concinens,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22693,species,manrew1,Manchurian Reed Warbler,Acrocephalus tangorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22694,species,blrwar1,Blyth's Reed Warbler,Acrocephalus dumetorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22695,slash,y00751,Paddyfield/Blyth's Reed Warbler,Acrocephalus agricola/dumetorum,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22696,species,labrew1,Large-billed Reed Warbler,Acrocephalus orinus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22697,species,marwar3,Marsh Warbler,Acrocephalus palustris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22698,species,eurwar1,Eurasian Reed Warbler,Acrocephalus scirpaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22699,issf,eurrew1,Eurasian Reed Warbler (Eurasian),Acrocephalus scirpaceus scirpaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 +22700,issf,eurrew2,Eurasian Reed Warbler (Caspian),Acrocephalus scirpaceus fuscus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 +22701,issf,afrrew2,Eurasian Reed Warbler (Mangrove),Acrocephalus scirpaceus avicenniae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 +22702,issf,eurwar3,Eurasian Reed Warbler (Siwa),Acrocephalus scirpaceus ammon,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,eurwar1 +22703,slash,y00624,Marsh Warbler/Eurasian Reed Warbler,Acrocephalus palustris/scirpaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22704,species,afrwar1,African Reed Warbler,Acrocephalus baeticatus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22711,slash,y01046,Marsh/Eurasian Reed/African Reed Warbler,Acrocephalus palustris/scirpaceus/baeticatus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22712,slash,y01047,Eurasian Reed/African Reed Warbler,Acrocephalus scirpaceus/baeticatus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22713,species,barwar2,Basra Reed Warbler,Acrocephalus griseldis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22714,species,leswar1,Lesser Swamp Warbler,Acrocephalus gracilirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22723,species,grswar2,Greater Swamp Warbler,Acrocephalus rufescens,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22728,species,cvswar1,Cape Verde Swamp Warbler,Acrocephalus brevipennis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22729,species,maswar1,Madagascar Swamp Warbler,Acrocephalus newtoni,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22730,species,rodbrw1,Rodrigues Warbler,Acrocephalus rodericanus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22731,species,sebwar1,Seychelles Warbler,Acrocephalus sechellensis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22732,species,grrwar1,Great Reed Warbler,Acrocephalus arundinaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22735,slash,y00667,Eurasian/Great Reed Warbler,Acrocephalus scirpaceus/arundinaceus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22736,species,orrwar1,Oriental Reed Warbler,Acrocephalus orientalis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22737,species,clrwar1,Clamorous Reed Warbler,Acrocephalus stentoreus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22738,issf,clarew3,Clamorous Reed Warbler (Clamorous),Acrocephalus stentoreus stentoreus/levantinus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,clrwar1 +22741,issf,clarew2,Clamorous Reed Warbler (Brown),Acrocephalus stentoreus [brunnescens Group],Passeriformes,Acrocephalidae (Reed Warblers and Allies),,clrwar1 +22749,slash,y00996,Great/Oriental/Clamorous Reed Warbler,Acrocephalus arundinaceus/orientalis/stentoreus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22750,species,nigrew1,Nightingale Reed Warbler,Acrocephalus luscinius,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22751,species,sairew1,Saipan Reed Warbler,Acrocephalus hiwae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22752,species,aurwar1,Australian Reed Warbler,Acrocephalus australis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22756,species,carrew1,Caroline Reed Warbler,Acrocephalus syrinx,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22757,species,agurew1,Aguiguan Reed Warbler,Acrocephalus nijoi,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22758,species,chiwar1,Kiritimati Reed Warbler,Acrocephalus aequinoctialis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22761,species,marwar2,Southern Marquesan Reed Warbler,Acrocephalus mendanae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22766,species,pagrew1,Pagan Reed Warbler,Acrocephalus yamashinae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22767,species,narwar1,Nauru Reed Warbler,Acrocephalus rehsei,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22768,species,miller,Millerbird,Acrocephalus familiaris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22769,issf,miller1,Millerbird (Nihoa),Acrocephalus familiaris kingi,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,miller +22770,issf,miller2,Millerbird (Laysan),Acrocephalus familiaris familiaris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),,miller +22771,species,pirwar2,Pitcairn Reed Warbler,Acrocephalus vaughani,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22772,species,hirwar1,Henderson Island Reed Warbler,Acrocephalus taiti,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22773,species,cirwar2,Cook Islands Reed Warbler,Acrocephalus kerearako,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22776,species,rimrew1,Rimitara Reed Warbler,Acrocephalus rimitarae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22777,species,soirew1,Society Islands Reed Warbler,Acrocephalus musae,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22780,species,tahrew1,Tahiti Reed Warbler,Acrocephalus caffer,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22781,species,moorew1,Moorea Reed Warbler,Acrocephalus longirostris,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22782,species,marrew2,Northern Marquesan Reed Warbler,Acrocephalus percernis,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22787,species,turwar1,Tuamotu Reed Warbler,Acrocephalus atyphus,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22794,species,manrew2,Mangareva Reed Warbler,Acrocephalus astrolabii,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22795,spuh,acroce1,Acrocephalus sp.,Acrocephalus sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22796,spuh,y00908,Iduna/Hippolais/Acrocephalus sp.,Iduna/Hippolais/Acrocephalus sp.,Passeriformes,Acrocephalidae (Reed Warblers and Allies),, +22797,species,luzwrb1,Cordillera Ground-Warbler,Robsonius rabori,Passeriformes,Locustellidae (Grassbirds and Allies),Grassbirds and Allies, +22798,species,simgrw1,Sierra Madre Ground-Warbler,Robsonius thompsoni,Passeriformes,Locustellidae (Grassbirds and Allies),, +22799,species,gybbab2,Bicol Ground-Warbler,Robsonius sorsogonensis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22800,species,flrgra1,Fly River Grassbird,Poodytes albolimbatus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22801,species,spibir1,Spinifexbird,Poodytes carteri,Passeriformes,Locustellidae (Grassbirds and Allies),, +22802,species,litgra1,Little Grassbird,Poodytes gramineus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22807,species,chifer1,Chatham Islands Fernbird,Poodytes rufescens,Passeriformes,Locustellidae (Grassbirds and Allies),, +22808,species,fernbi1,New Zealand Fernbird,Poodytes punctatus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22809,issf,fernbi2,New Zealand Fernbird (New Zealand),Poodytes punctatus [punctatus Group],Passeriformes,Locustellidae (Grassbirds and Allies),,fernbi1 +22814,issf,fernbi3,New Zealand Fernbird (Snares),Poodytes punctatus caudatus,Passeriformes,Locustellidae (Grassbirds and Allies),,fernbi1 +22815,species,malia1,Malia,Malia grata,Passeriformes,Locustellidae (Grassbirds and Allies),, +22819,species,broson1,Brown Songlark,Cincloramphus cruralis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22820,species,bisthi1,Bismarck Thicketbird,Cincloramphus grosvenori,Passeriformes,Locustellidae (Grassbirds and Allies),, +22821,species,rusthi1,Rusty Thicketbird,Cincloramphus rubiginosus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22822,species,bubbus1,Buff-banded Bushbird,Cincloramphus bivittatus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22823,species,rufson1,Rufous Songlark,Cincloramphus mathewsi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22824,species,necgra1,New Caledonian Grassbird,Cincloramphus mariei,Passeriformes,Locustellidae (Grassbirds and Allies),, +22825,species,bouthi1,Bougainville Thicketbird,Cincloramphus llaneae,Passeriformes,Locustellidae (Grassbirds and Allies),, +22826,species,lolwar1,Long-legged Thicketbird,Cincloramphus rufus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22829,species,guathi1,Guadalcanal Thicketbird,Cincloramphus whitneyi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22830,issf,guathi2,Guadalcanal Thicketbird (Santo),Cincloramphus whitneyi whitneyi,Passeriformes,Locustellidae (Grassbirds and Allies),,guathi1 +22831,issf,guathi3,Guadalcanal Thicketbird (Guadalcanal),Cincloramphus whitneyi turipavae,Passeriformes,Locustellidae (Grassbirds and Allies),,guathi1 +22832,species,tawgra3,Tawny Grassbird,Cincloramphus timoriensis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22843,species,tawgra2,Papuan Grassbird,Cincloramphus macrurus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22844,issf,papgra1,Papuan Grassbird (interscapularis/mayri),Cincloramphus macrurus interscapularis/mayri,Passeriformes,Locustellidae (Grassbirds and Allies),,tawgra2 +22847,issf,papgra2,Papuan Grassbird (macrurus Group),Cincloramphus macrurus [macrurus Group],Passeriformes,Locustellidae (Grassbirds and Allies),,tawgra2 +22853,slash,tawgra1,Tawny/Papuan Grassbird,Cincloramphus timoriensis/macrurus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22854,species,strgra1,Striated Grassbird,Megalurus palustris,Passeriformes,Locustellidae (Grassbirds and Allies),, +22858,spuh,megalu1,Poodytes/Cincloramphus/Megalurus sp.,Poodytes/Cincloramphus/Megalurus sp.,Passeriformes,Locustellidae (Grassbirds and Allies),, +22859,species,fatgra1,Fan-tailed Grassbird,Schoenicola brevirostris,Passeriformes,Locustellidae (Grassbirds and Allies),, +22862,species,brtgra2,Broad-tailed Grassbird,Schoenicola platyurus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22863,species,afswar1,Barratt's Warbler,Bradypterus barratti,Passeriformes,Locustellidae (Grassbirds and Allies),, +22868,species,banscw1,Bangwa Warbler,Bradypterus bangwaensis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22869,species,camscw1,Evergreen-forest Warbler,Bradypterus lopezi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22870,issf,evfwar1,Evergreen-forest Warbler (Lopez's),Bradypterus lopezi [lopezi Group],Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 +22874,issf,evfwar2,Evergreen-forest Warbler (Volcanic),Bradypterus lopezi barakae,Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 +22875,issf,evfwar3,Evergreen-forest Warbler (Boulton's),Bradypterus lopezi boultoni,Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 +22876,issf,evfwar4,Evergreen-forest Warbler (Eastern),Bradypterus lopezi [mariae Group],Passeriformes,Locustellidae (Grassbirds and Allies),,camscw1 +22881,species,cibwar1,Cinnamon Bracken-Warbler,Bradypterus cinnamomeus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22886,species,knswar1,Knysna Warbler,Bradypterus sylvaticus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22889,species,bretai1,Brown Emutail,Bradypterus brunneus,Passeriformes,Locustellidae (Grassbirds and Allies),, +22890,species,grswar1,Grauer's Swamp Warbler,Bradypterus graueri,Passeriformes,Locustellidae (Grassbirds and Allies),, +22891,species,afbwar1,Little Rush-Warbler,Bradypterus baboecala,Passeriformes,Locustellidae (Grassbirds and Allies),, +22892,issf,litruw1,Little Rush-Warbler (Kenyan Highlands),Bradypterus baboecala elgonensis,Passeriformes,Locustellidae (Grassbirds and Allies),,afbwar1 +22893,issf,litruw2,Little Rush-Warbler (Little),Bradypterus baboecala [baboecala Group],Passeriformes,Locustellidae (Grassbirds and Allies),,afbwar1 +22903,species,jrswar1,Dja River Swamp Warbler,Bradypterus grandis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22904,species,wwswar1,White-winged Swamp Warbler,Bradypterus carpalis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22905,species,baswar1,Bamboo Warbler,Bradypterus alfredi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22908,spuh,bradyp1,Bradypterus sp.,Bradypterus sp.,Passeriformes,Locustellidae (Grassbirds and Allies),, +22909,species,grgwar1,Gray's Grasshopper-Warbler,Locustella fasciolata,Passeriformes,Locustellidae (Grassbirds and Allies),, +22910,species,sakwar1,Sakhalin Grasshopper-Warbler,Locustella amnicola,Passeriformes,Locustellidae (Grassbirds and Allies),, +22911,slash,y00997,Gray's/Sakhalin Grasshopper-Warbler,Locustella fasciolata/amnicola,Passeriformes,Locustellidae (Grassbirds and Allies),, +22912,species,margra1,Marsh Grassbird,Locustella pryeri,Passeriformes,Locustellidae (Grassbirds and Allies),, +22915,species,pagwar1,Pallas's Grasshopper-Warbler,Locustella certhiola,Passeriformes,Locustellidae (Grassbirds and Allies),, +22920,species,migwar,Middendorff's Grasshopper-Warbler,Locustella ochotensis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22923,species,plewar1,Pleske's Grasshopper-Warbler,Locustella pleskei,Passeriformes,Locustellidae (Grassbirds and Allies),, +22924,slash,y01100,Middendorff's/Pleske's Grasshopper-Warbler,Locustella ochotensis/pleskei,Passeriformes,Locustellidae (Grassbirds and Allies),, +22925,species,lanwar,Lanceolated Warbler,Locustella lanceolata,Passeriformes,Locustellidae (Grassbirds and Allies),, +22926,species,eurwar2,River Warbler,Locustella fluviatilis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22927,species,savwar1,Savi's Warbler,Locustella luscinioides,Passeriformes,Locustellidae (Grassbirds and Allies),, +22931,species,brbwar2,Brown Bush Warbler,Locustella luteoventris,Passeriformes,Locustellidae (Grassbirds and Allies),, +22932,species,chbwar1,Chinese Bush Warbler,Locustella tacsanowskia,Passeriformes,Locustellidae (Grassbirds and Allies),, +22933,species,lbbwar1,Long-billed Bush Warbler,Locustella major,Passeriformes,Locustellidae (Grassbirds and Allies),, +22936,species,cogwar1,Common Grasshopper-Warbler,Locustella naevia,Passeriformes,Locustellidae (Grassbirds and Allies),, +22941,species,ltbwar1,Long-tailed Bush Warbler,Locustella caudata,Passeriformes,Locustellidae (Grassbirds and Allies),, +22945,species,cbbwar1,Chestnut-backed Bush Warbler,Locustella castanea,Passeriformes,Locustellidae (Grassbirds and Allies),, +22946,issf,cbbwar2,Chestnut-backed Bush Warbler (Sulawesi),Locustella castanea castanea,Passeriformes,Locustellidae (Grassbirds and Allies),,cbbwar1 +22947,issf,cbbwar3,Chestnut-backed Bush Warbler (Buru),Locustella castanea disturbans,Passeriformes,Locustellidae (Grassbirds and Allies),,cbbwar1 +22948,issf,cbbwar4,Chestnut-backed Bush Warbler (Seram),Locustella castanea musculus,Passeriformes,Locustellidae (Grassbirds and Allies),,cbbwar1 +22949,form,talgrw1,Taliabu Grasshopper-Warbler (undescribed form),Locustella [undescribed form],Passeriformes,Locustellidae (Grassbirds and Allies),, +22950,species,spobuw1,Baikal Bush Warbler,Locustella davidi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22954,slash,y00998,Chinese/Baikal Bush Warbler,Locustella tacsanowskia/davidi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22955,species,spobuw2,West Himalayan Bush Warbler,Locustella kashmirensis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22956,species,spobuw3,Spotted Bush Warbler,Locustella thoracica,Passeriformes,Locustellidae (Grassbirds and Allies),, +22959,slash,y00999,Baikal/Spotted Bush Warbler,Locustella davidi/thoracica,Passeriformes,Locustellidae (Grassbirds and Allies),, +22960,species,taibuw1,Taiwan Bush Warbler,Locustella alishanensis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22961,species,frbwar1,Friendly Bush Warbler,Locustella accentor,Passeriformes,Locustellidae (Grassbirds and Allies),, +22962,species,rubwar1,Russet Bush Warbler,Locustella mandelli,Passeriformes,Locustellidae (Grassbirds and Allies),, +22965,species,dabwar1,Dalat Bush Warbler,Locustella idonea,Passeriformes,Locustellidae (Grassbirds and Allies),, +22966,slash,y01000,Brown/Russet Bush Warbler,Locustella luteoventris/mandelli,Passeriformes,Locustellidae (Grassbirds and Allies),, +22967,species,sicbuw1,Sichuan Bush Warbler,Locustella chengi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22968,species,benbuw1,Benguet Bush Warbler,Locustella seebohmi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22969,species,jabwar1,Javan Bush Warbler,Locustella montis,Passeriformes,Locustellidae (Grassbirds and Allies),, +22970,issf,javbuw1,Javan Bush Warbler (Javan),Locustella montis montis,Passeriformes,Locustellidae (Grassbirds and Allies),,jabwar1 +22971,issf,timbuw1,Javan Bush Warbler (Timor),Locustella montis timorensis,Passeriformes,Locustellidae (Grassbirds and Allies),,jabwar1 +22972,spuh,locust2,Locustella sp.,Locustella sp.,Passeriformes,Locustellidae (Grassbirds and Allies),, +22973,species,ceybuw1,Sri Lanka Bush Warbler,Elaphrornis palliseri,Passeriformes,Locustellidae (Grassbirds and Allies),, +22974,species,gryemt1,Gray Emutail,Amphilais seebohmi,Passeriformes,Locustellidae (Grassbirds and Allies),, +22975,species,brigra2,Bristled Grassbird,Chaetornis striata,Passeriformes,Locustellidae (Grassbirds and Allies),, +22976,species,bkcdon,Black-capped Donacobius,Donacobius atricapilla,Passeriformes,Donacobiidae (Donacobius),Donacobius, +22981,species,whtoxy1,White-throated Oxylabes,Oxylabes madagascariensis,Passeriformes,Bernieridae (Malagasy Warblers),Malagasy Warblers, +22982,species,lobber1,Long-billed Bernieria,Bernieria madagascariensis,Passeriformes,Bernieridae (Malagasy Warblers),, +22985,species,crywar1,Cryptic Warbler,Cryptosylvicola randrianasoloi,Passeriformes,Bernieridae (Malagasy Warblers),, +22986,species,wetjer2,Wedge-tailed Jery,Hartertula flavoviridis,Passeriformes,Bernieridae (Malagasy Warblers),, +22987,species,thamno2,Thamnornis,Thamnornis chloropetoides,Passeriformes,Bernieridae (Malagasy Warblers),, +22988,species,yeboxy1,Yellow-browed Oxylabes,Crossleyia xanthophrys,Passeriformes,Bernieridae (Malagasy Warblers),, +22989,species,spetet1,Spectacled Tetraka,Xanthomixis zosterops,Passeriformes,Bernieridae (Malagasy Warblers),, +22994,species,apptet1,Appert's Tetraka,Xanthomixis apperti,Passeriformes,Bernieridae (Malagasy Warblers),, +22995,species,dustet1,Dusky Tetraka,Xanthomixis tenebrosa,Passeriformes,Bernieridae (Malagasy Warblers),, +22996,species,gyctet1,Gray-crowned Tetraka,Xanthomixis cinereiceps,Passeriformes,Bernieridae (Malagasy Warblers),, +22997,species,ranwar1,Rand's Warbler,Randia pseudozosterops,Passeriformes,Bernieridae (Malagasy Warblers),, +22998,species,sbwbab1,Scaly-breasted Cupwing,Pnoepyga albiventer,Passeriformes,Pnoepygidae (Cupwings),Cupwings, +23001,species,chicup1,Chinese Cupwing,Pnoepyga mutica,Passeriformes,Pnoepygidae (Cupwings),, +23002,species,taiwrb1,Taiwan Cupwing,Pnoepyga formosana,Passeriformes,Pnoepygidae (Cupwings),, +23003,species,immwrb1,Immaculate Cupwing,Pnoepyga immaculata,Passeriformes,Pnoepygidae (Cupwings),, +23004,slash,y00811,Scaly-breasted/Immaculate Cupwing,Pnoepyga albiventer/immaculata,Passeriformes,Pnoepygidae (Cupwings),, +23005,species,pywbab1,Pygmy Cupwing,Pnoepyga pusilla,Passeriformes,Pnoepygidae (Cupwings),, +23013,spuh,cupwin1,cupwing sp.,Pnoepyga sp.,Passeriformes,Pnoepygidae (Cupwings),, +23014,species,afrmar2,African River Martin,Pseudochelidon eurystomina,Passeriformes,Hirundinidae (Swallows),Martins and Swallows, +23015,species,wermar2,White-eyed River Martin,Pseudochelidon sirintarae,Passeriformes,Hirundinidae (Swallows),, +23016,species,bawswa1,Blue-and-white Swallow,Pygochelidon cyanoleuca,Passeriformes,Hirundinidae (Swallows),, +23017,issf,bawswa3,Blue-and-white Swallow (cyanoleuca),Pygochelidon cyanoleuca cyanoleuca,Passeriformes,Hirundinidae (Swallows),,bawswa1 +23018,issf,bawswa5,Blue-and-white Swallow (peruviana),Pygochelidon cyanoleuca peruviana,Passeriformes,Hirundinidae (Swallows),,bawswa1 +23019,issf,bawswa4,Blue-and-white Swallow (patagonica),Pygochelidon cyanoleuca patagonica,Passeriformes,Hirundinidae (Swallows),,bawswa1 +23020,species,blcswa2,Black-collared Swallow,Pygochelidon melanoleuca,Passeriformes,Hirundinidae (Swallows),, +23021,species,tahswa2,Tawny-headed Swallow,Alopochelidon fucata,Passeriformes,Hirundinidae (Swallows),, +23022,species,pafswa1,Pale-footed Swallow,Orochelidon flavipes,Passeriformes,Hirundinidae (Swallows),, +23023,species,brbswa1,Brown-bellied Swallow,Orochelidon murina,Passeriformes,Hirundinidae (Swallows),, +23027,species,andswa2,Andean Swallow,Orochelidon andecola,Passeriformes,Hirundinidae (Swallows),, +23030,species,blcswa1,Black-capped Swallow,Atticora pileata,Passeriformes,Hirundinidae (Swallows),, +23031,species,whtswa1,White-thighed Swallow,Atticora tibialis,Passeriformes,Hirundinidae (Swallows),, +23035,species,whbswa2,White-banded Swallow,Atticora fasciata,Passeriformes,Hirundinidae (Swallows),, +23036,species,nrwswa,Northern Rough-winged Swallow,Stelgidopteryx serripennis,Passeriformes,Hirundinidae (Swallows),, +23037,issf,nrwswa1,Northern Rough-winged Swallow (Northern),Stelgidopteryx serripennis [serripennis Group],Passeriformes,Hirundinidae (Swallows),,nrwswa +23042,issf,nrwswa2,Northern Rough-winged Swallow (Ridgway's),Stelgidopteryx serripennis ridgwayi/stuarti,Passeriformes,Hirundinidae (Swallows),,nrwswa +23045,species,srwswa1,Southern Rough-winged Swallow,Stelgidopteryx ruficollis,Passeriformes,Hirundinidae (Swallows),, +23050,slash,y00899,Northern/Southern Rough-winged Swallow,Stelgidopteryx serripennis/ruficollis,Passeriformes,Hirundinidae (Swallows),, +23051,species,purmar,Purple Martin,Progne subis,Passeriformes,Hirundinidae (Swallows),, +23052,issf,purmar1,Purple Martin (subis/arboricola),Progne subis subis/arboricola,Passeriformes,Hirundinidae (Swallows),,purmar +23055,issf,purmar2,Purple Martin (hesperia),Progne subis hesperia,Passeriformes,Hirundinidae (Swallows),,purmar +23056,species,cubmar,Cuban Martin,Progne cryptoleuca,Passeriformes,Hirundinidae (Swallows),, +23057,slash,y00805,Purple/Cuban Martin,Progne subis/cryptoleuca,Passeriformes,Hirundinidae (Swallows),, +23058,species,carmar1,Caribbean Martin,Progne dominicensis,Passeriformes,Hirundinidae (Swallows),, +23059,species,sinmar1,Sinaloa Martin,Progne sinaloae,Passeriformes,Hirundinidae (Swallows),, +23060,slash,y00806,Caribbean/Sinaloa Martin,Progne dominicensis/sinaloae,Passeriformes,Hirundinidae (Swallows),, +23061,slash,y00807,Cuban/Caribbean/Sinaloa Martin (Snowy-bellied Martin),Progne cryptoleuca/dominicensis/sinaloae,Passeriformes,Hirundinidae (Swallows),, +23062,species,gybmar,Gray-breasted Martin,Progne chalybea,Passeriformes,Hirundinidae (Swallows),, +23066,species,soumar,Southern Martin,Progne elegans,Passeriformes,Hirundinidae (Swallows),, +23067,slash,y00745,Purple/Southern Martin,Progne subis/elegans,Passeriformes,Hirundinidae (Swallows),, +23068,species,permar1,Peruvian Martin,Progne murphyi,Passeriformes,Hirundinidae (Swallows),, +23069,species,galmar1,Galapagos Martin,Progne modesta,Passeriformes,Hirundinidae (Swallows),, +23070,species,brcmar1,Brown-chested Martin,Progne tapera,Passeriformes,Hirundinidae (Swallows),, +23071,issf,bncmar1,Brown-chested Martin (tapera),Progne tapera tapera,Passeriformes,Hirundinidae (Swallows),,brcmar1 +23072,issf,bncmar2,Brown-chested Martin (fusca),Progne tapera fusca,Passeriformes,Hirundinidae (Swallows),,brcmar1 +23073,spuh,martin1,martin sp. (Progne sp.),Progne sp.,Passeriformes,Hirundinidae (Swallows),, +23074,species,treswa,Tree Swallow,Tachycineta bicolor,Passeriformes,Hirundinidae (Swallows),, +23075,species,tumswa1,Tumbes Swallow,Tachycineta stolzmanni,Passeriformes,Hirundinidae (Swallows),, +23076,species,whwswa1,White-winged Swallow,Tachycineta albiventer,Passeriformes,Hirundinidae (Swallows),, +23077,species,whrswa1,White-rumped Swallow,Tachycineta leucorrhoa,Passeriformes,Hirundinidae (Swallows),, +23078,species,chiswa1,Chilean Swallow,Tachycineta leucopyga,Passeriformes,Hirundinidae (Swallows),, +23079,slash,y00702,White-rumped/Chilean Swallow,Tachycineta leucorrhoa/leucopyga,Passeriformes,Hirundinidae (Swallows),, +23080,species,manswa1,Mangrove Swallow,Tachycineta albilinea,Passeriformes,Hirundinidae (Swallows),, +23081,species,golswa1,Golden Swallow,Tachycineta euchrysea,Passeriformes,Hirundinidae (Swallows),, +23084,species,vigswa,Violet-green Swallow,Tachycineta thalassina,Passeriformes,Hirundinidae (Swallows),, +23087,hybrid,x00715,Northern Rough-winged x Violet-green Swallow (hybrid),Stelgidopteryx serripennis x Tachycineta thalassina,Passeriformes,Hirundinidae (Swallows),, +23088,hybrid,x00716,Tree x Violet-green Swallow (hybrid),Tachycineta bicolor x thalassina,Passeriformes,Hirundinidae (Swallows),, +23089,slash,y00701,Tree/Violet-green Swallow,Tachycineta bicolor/thalassina,Passeriformes,Hirundinidae (Swallows),, +23090,species,bahswa,Bahama Swallow,Tachycineta cyaneoviridis,Passeriformes,Hirundinidae (Swallows),, +23091,spuh,tachyc1,Tachycineta sp.,Tachycineta sp.,Passeriformes,Hirundinidae (Swallows),, +23092,species,plamar1,Plain Martin,Riparia paludicola,Passeriformes,Hirundinidae (Swallows),, +23093,issf,plamar2,Plain Martin (African),Riparia paludicola [paludicola Group],Passeriformes,Hirundinidae (Swallows),,plamar1 +23100,issf,plamar3,Plain Martin (Madagascar),Riparia paludicola cowani,Passeriformes,Hirundinidae (Swallows),,plamar1 +23101,species,gytmar1,Gray-throated Martin,Riparia chinensis,Passeriformes,Hirundinidae (Swallows),, +23104,species,conmar1,Congo Martin,Riparia congica,Passeriformes,Hirundinidae (Swallows),, +23105,species,banswa,Bank Swallow,Riparia riparia,Passeriformes,Hirundinidae (Swallows),, +23111,slash,y01086,Gray-throated Martin/Bank Swallow,Riparia chinensis/riparia,Passeriformes,Hirundinidae (Swallows),, +23112,species,pasmar1,Pale Sand Martin,Riparia diluta,Passeriformes,Hirundinidae (Swallows),, +23119,slash,y00808,Bank Swallow/Pale Sand Martin,Riparia riparia/diluta,Passeriformes,Hirundinidae (Swallows),, +23120,species,banmar1,Banded Martin,Riparia cincta,Passeriformes,Hirundinidae (Swallows),, +23126,spuh,ripari1,Riparia sp.,Riparia sp.,Passeriformes,Hirundinidae (Swallows),, +23127,species,masmar1,Mascarene Martin,Phedina borbonica,Passeriformes,Hirundinidae (Swallows),, +23130,species,bramar1,Brazza's Martin,Phedina brazzae,Passeriformes,Hirundinidae (Swallows),, +23131,species,eurcrm1,Eurasian Crag-Martin,Ptyonoprogne rupestris,Passeriformes,Hirundinidae (Swallows),, +23132,species,rocmar2,Rock Martin,Ptyonoprogne fuligula,Passeriformes,Hirundinidae (Swallows),, +23133,issf,rocmar1,Rock Martin (Pale Crag-Martin),Ptyonoprogne fuligula [obsoleta Group],Passeriformes,Hirundinidae (Swallows),,rocmar2 +23142,issf,rocmar4,Rock Martin (Red-throated),Ptyonoprogne fuligula fusciventris/bansoensis,Passeriformes,Hirundinidae (Swallows),,rocmar2 +23145,issf,rocmar5,Rock Martin (Large),Ptyonoprogne fuligula [fuligula Group],Passeriformes,Hirundinidae (Swallows),,rocmar2 +23149,slash,y00981,Eurasian Crag-Martin/Rock Martin,Ptyonoprogne rupestris/fuligula,Passeriformes,Hirundinidae (Swallows),, +23150,species,duscrm1,Dusky Crag-Martin,Ptyonoprogne concolor,Passeriformes,Hirundinidae (Swallows),, +23153,species,barswa,Barn Swallow,Hirundo rustica,Passeriformes,Hirundinidae (Swallows),, +23154,issf,barswa2,Barn Swallow (White-bellied),Hirundo rustica rustica,Passeriformes,Hirundinidae (Swallows),,barswa +23155,issf,barswa6,Barn Swallow (Egyptian),Hirundo rustica savignii,Passeriformes,Hirundinidae (Swallows),,barswa +23156,issf,barswa7,Barn Swallow (Levant),Hirundo rustica transitiva,Passeriformes,Hirundinidae (Swallows),,barswa +23157,issf,barswa8,Barn Swallow (Tytler's),Hirundo rustica tytleri,Passeriformes,Hirundinidae (Swallows),,barswa +23158,issf,barswa4,Barn Swallow (Buff-bellied),Hirundo rustica gutturalis/mandschurica,Passeriformes,Hirundinidae (Swallows),,barswa +23161,issf,barswa5,Barn Swallow (American),Hirundo rustica erythrogaster,Passeriformes,Hirundinidae (Swallows),,barswa +23162,hybrid,x00666,Tree x Barn Swallow (hybrid),Tachycineta bicolor x Hirundo rustica,Passeriformes,Hirundinidae (Swallows),, +23163,hybrid,x00710,Bank x Barn Swallow (hybrid),Riparia riparia x Hirundo rustica,Passeriformes,Hirundinidae (Swallows),, +23164,species,recswa1,Red-chested Swallow,Hirundo lucida,Passeriformes,Hirundinidae (Swallows),, +23168,species,ethswa1,Ethiopian Swallow,Hirundo aethiopica,Passeriformes,Hirundinidae (Swallows),, +23171,species,angswa1,Angola Swallow,Hirundo angolensis,Passeriformes,Hirundinidae (Swallows),, +23172,species,wtbswa1,White-throated Blue Swallow,Hirundo nigrita,Passeriformes,Hirundinidae (Swallows),, +23173,species,whtswa3,White-throated Swallow,Hirundo albigularis,Passeriformes,Hirundinidae (Swallows),, +23174,species,witswa1,Wire-tailed Swallow,Hirundo smithii,Passeriformes,Hirundinidae (Swallows),, +23177,species,welswa1,Welcome Swallow,Hirundo neoxena,Passeriformes,Hirundinidae (Swallows),, +23180,species,pacswa3,Hill Swallow,Hirundo domicola,Passeriformes,Hirundinidae (Swallows),, +23181,species,pacswa1,Pacific Swallow,Hirundo tahitica,Passeriformes,Hirundinidae (Swallows),, +23182,issf,pacswa4,Pacific Swallow (Pacific),Hirundo tahitica [javanica Group],Passeriformes,Hirundinidae (Swallows),,pacswa1 +23189,issf,pacswa5,Pacific Swallow (Tahiti),Hirundo tahitica tahitica,Passeriformes,Hirundinidae (Swallows),,pacswa1 +23190,slash,y00746,Barn/Pacific Swallow,Hirundo rustica/tahitica,Passeriformes,Hirundinidae (Swallows),, +23191,species,piwswa1,Pied-winged Swallow,Hirundo leucosoma,Passeriformes,Hirundinidae (Swallows),, +23192,species,whtswa2,White-tailed Swallow,Hirundo megaensis,Passeriformes,Hirundinidae (Swallows),, +23193,species,pebswa1,Pearl-breasted Swallow,Hirundo dimidiata,Passeriformes,Hirundinidae (Swallows),, +23196,species,bluswa1,Montane Blue Swallow,Hirundo atrocaerulea,Passeriformes,Hirundinidae (Swallows),, +23197,species,barswa1,Black-and-rufous Swallow,Hirundo nigrorufa,Passeriformes,Hirundinidae (Swallows),, +23198,species,grests1,Greater Striped Swallow,Cecropis cucullata,Passeriformes,Hirundinidae (Swallows),, +23199,species,rerswa1,Red-rumped Swallow,Cecropis daurica,Passeriformes,Hirundinidae (Swallows),, +23200,issf,rerswa2,Red-rumped Swallow (Red-rumped),Cecropis daurica [daurica Group],Passeriformes,Hirundinidae (Swallows),,rerswa1 +23209,issf,rerswa3,Red-rumped Swallow (West African),Cecropis daurica domicella,Passeriformes,Hirundinidae (Swallows),,rerswa1 +23210,hybrid,x00658,Barn x Red-rumped Swallow (hybrid),Hirundo rustica x Cecropis daurica,Passeriformes,Hirundinidae (Swallows),, +23211,species,srlswa1,Sri Lanka Swallow,Cecropis hyperythra,Passeriformes,Hirundinidae (Swallows),, +23212,species,strswa2,Striated Swallow,Cecropis striolata,Passeriformes,Hirundinidae (Swallows),, +23217,slash,y00621,Red-rumped/Striated Swallow,Cecropis daurica/striolata,Passeriformes,Hirundinidae (Swallows),, +23218,species,lessts1,Lesser Striped Swallow,Cecropis abyssinica,Passeriformes,Hirundinidae (Swallows),, +23225,species,rucswa2,Rufous-chested Swallow,Cecropis semirufa,Passeriformes,Hirundinidae (Swallows),, +23228,species,mosswa2,Mosque Swallow,Cecropis senegalensis,Passeriformes,Hirundinidae (Swallows),, +23232,species,rubswa1,Rufous-bellied Swallow,Cecropis badia,Passeriformes,Hirundinidae (Swallows),, +23233,species,retswa2,Red-throated Swallow,Petrochelidon rufigula,Passeriformes,Hirundinidae (Swallows),, +23234,species,preswa2,Preuss's Swallow,Petrochelidon preussi,Passeriformes,Hirundinidae (Swallows),, +23235,species,resswa2,Red Sea Swallow,Petrochelidon perdita,Passeriformes,Hirundinidae (Swallows),, +23236,species,soaswa2,South African Swallow,Petrochelidon spilodera,Passeriformes,Hirundinidae (Swallows),, +23237,species,sttswa2,Streak-throated Swallow,Petrochelidon fluvicola,Passeriformes,Hirundinidae (Swallows),, +23238,species,faimar2,Fairy Martin,Petrochelidon ariel,Passeriformes,Hirundinidae (Swallows),, +23239,species,tremar2,Tree Martin,Petrochelidon nigricans,Passeriformes,Hirundinidae (Swallows),, +23243,slash,y00900,Fairy/Tree Martin,Petrochelidon ariel/nigricans,Passeriformes,Hirundinidae (Swallows),, +23244,species,cliswa,Cliff Swallow,Petrochelidon pyrrhonota,Passeriformes,Hirundinidae (Swallows),, +23245,issf,cliswa2,Cliff Swallow (pyrrhonota Group),Petrochelidon pyrrhonota [pyrrhonota Group],Passeriformes,Hirundinidae (Swallows),,cliswa +23249,issf,cliswa3,Cliff Swallow (melanogaster),Petrochelidon pyrrhonota melanogaster,Passeriformes,Hirundinidae (Swallows),,cliswa +23250,hybrid,x00717,Barn x Cliff Swallow (hybrid),Hirundo rustica x Petrochelidon pyrrhonota,Passeriformes,Hirundinidae (Swallows),, +23251,hybrid,x00661,Violet-green x Cliff Swallow (hybrid),Tachycineta thalassina x Petrochelidon pyrrhonota,Passeriformes,Hirundinidae (Swallows),, +23252,species,cavswa,Cave Swallow,Petrochelidon fulva,Passeriformes,Hirundinidae (Swallows),, +23253,issf,cavswa2,Cave Swallow (Caribbean),Petrochelidon fulva [fulva Group],Passeriformes,Hirundinidae (Swallows),,cavswa +23258,issf,cavswa3,Cave Swallow (Texas),Petrochelidon fulva pallida,Passeriformes,Hirundinidae (Swallows),,cavswa +23259,issf,cavswa4,Cave Swallow (Yucatan),Petrochelidon fulva citata,Passeriformes,Hirundinidae (Swallows),,cavswa +23260,hybrid,x00660,Barn x Cave Swallow (hybrid),Hirundo rustica x Petrochelidon fulva,Passeriformes,Hirundinidae (Swallows),, +23261,hybrid,x00892,Cliff x Cave Swallow (hybrid),Petrochelidon pyrrhonota x fulva,Passeriformes,Hirundinidae (Swallows),, +23262,slash,y00604,Cliff/Cave Swallow,Petrochelidon pyrrhonota/fulva,Passeriformes,Hirundinidae (Swallows),, +23263,species,chcswa2,Chestnut-collared Swallow,Petrochelidon rufocollaris,Passeriformes,Hirundinidae (Swallows),, +23266,slash,y00809,Cliff/Chestnut-collared Swallow,Petrochelidon pyrrhonota/rufocollaris,Passeriformes,Hirundinidae (Swallows),, +23267,spuh,petroc1,Petrochelidon sp.,Petrochelidon sp.,Passeriformes,Hirundinidae (Swallows),, +23268,species,forswa2,Forest Swallow,Atronanus fuliginosus,Passeriformes,Hirundinidae (Swallows),, +23269,species,cohmar1,Common House-Martin,Delichon urbicum,Passeriformes,Hirundinidae (Swallows),, +23270,issf,comhom1,Common House-Martin (Western),Delichon urbicum urbicum/meridionale,Passeriformes,Hirundinidae (Swallows),,cohmar1 +23273,issf,comhom2,Common House-Martin (Eastern),Delichon urbicum lagopodum,Passeriformes,Hirundinidae (Swallows),,cohmar1 +23274,hybrid,x00659,Barn Swallow x Common House-Martin (hybrid),Hirundo rustica x Delichon urbicum,Passeriformes,Hirundinidae (Swallows),, +23275,species,ashmar1,Asian House-Martin,Delichon dasypus,Passeriformes,Hirundinidae (Swallows),, +23279,slash,y00649,Common/Asian House-Martin,Delichon urbicum/dasypus,Passeriformes,Hirundinidae (Swallows),, +23280,species,nephom1,Nepal House-Martin,Delichon nipalense,Passeriformes,Hirundinidae (Swallows),, +23283,spuh,house-1,house-martin sp.,Delichon sp.,Passeriformes,Hirundinidae (Swallows),, +23284,species,sqtsaw1,Square-tailed Sawwing,Psalidoprocne nitens,Passeriformes,Hirundinidae (Swallows),, +23287,slash,y00901,Forest Swallow/Square-tailed Sawwing,Petrochelidon fuliginosa/Psalidoprocne nitens,Passeriformes,Hirundinidae (Swallows),, +23288,species,mousaw1,Mountain Sawwing,Psalidoprocne fuliginosa,Passeriformes,Hirundinidae (Swallows),, +23289,species,whhsaw1,White-headed Sawwing,Psalidoprocne albiceps,Passeriformes,Hirundinidae (Swallows),, +23290,issf,whhsaw2,White-headed Sawwing (White-headed),Psalidoprocne albiceps albiceps,Passeriformes,Hirundinidae (Swallows),,whhsaw1 +23291,issf,whhsaw3,White-headed Sawwing (Dusky-throated),Psalidoprocne albiceps suffusa,Passeriformes,Hirundinidae (Swallows),,whhsaw1 +23292,species,blksaw1,Black Sawwing,Psalidoprocne pristoptera,Passeriformes,Hirundinidae (Swallows),, +23305,species,fansaw1,Fanti Sawwing,Psalidoprocne obscura,Passeriformes,Hirundinidae (Swallows),, +23306,spuh,sawwin1,sawwing sp.,Psalidoprocne sp.,Passeriformes,Hirundinidae (Swallows),, +23307,species,gyrswa1,Gray-rumped Swallow,Pseudhirundo griseopyga,Passeriformes,Hirundinidae (Swallows),, +23310,species,whbswa3,White-backed Swallow,Cheramoeca leucosterna,Passeriformes,Hirundinidae (Swallows),, +23311,spuh,swallo,swallow sp.,Hirundinidae sp.,Passeriformes,Hirundinidae (Swallows),, +23312,species,somgre1,Sombre Greenbul,Andropadus importunus,Passeriformes,Pycnonotidae (Bulbuls),Bulbuls, +23317,species,slbgre1,Slender-billed Greenbul,Stelgidillas gracilirostris,Passeriformes,Pycnonotidae (Bulbuls),, +23320,species,golgre1,Golden Greenbul,Calyptocichla serinus,Passeriformes,Pycnonotidae (Bulbuls),, +23321,species,blcbul1,Black-collared Bulbul,Neolestes torquatus,Passeriformes,Pycnonotidae (Bulbuls),, +23322,species,combri2,Red-tailed Bristlebill,Bleda syndactylus,Passeriformes,Pycnonotidae (Bulbuls),, +23326,species,gntbri1,Green-tailed Bristlebill,Bleda eximius,Passeriformes,Pycnonotidae (Bulbuls),, +23327,species,lesbri2,Lesser Bristlebill,Bleda notatus,Passeriformes,Pycnonotidae (Bulbuls),, +23328,issf,lesbri1,Lesser Bristlebill (Brown-eyed),Bleda notatus notatus,Passeriformes,Pycnonotidae (Bulbuls),,lesbri2 +23329,issf,lesbri3,Lesser Bristlebill (Yellow-eyed),Bleda notatus ugandae,Passeriformes,Pycnonotidae (Bulbuls),,lesbri2 +23330,species,gyhbri1,Gray-headed Bristlebill,Bleda canicapillus,Passeriformes,Pycnonotidae (Bulbuls),, +23331,spuh,bristl1,bristlebill sp.,Bleda sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23332,species,camgre2,Cameroon Mountain Greenbul,Arizelocichla montana,Passeriformes,Pycnonotidae (Bulbuls),, +23333,species,shegre1,Shelley's Greenbul,Arizelocichla masukuensis,Passeriformes,Pycnonotidae (Bulbuls),, +23334,issf,shebul1,Shelley's Greenbul (Kakamega),Arizelocichla masukuensis kakamegae/kungwensis,Passeriformes,Pycnonotidae (Bulbuls),,shegre1 +23337,issf,shegre2,Shelley's Greenbul (Shelley's),Arizelocichla masukuensis masukuensis/roehli,Passeriformes,Pycnonotidae (Bulbuls),,shegre1 +23340,species,wesmog1,Western Mountain Greenbul,Arizelocichla tephrolaema,Passeriformes,Pycnonotidae (Bulbuls),, +23343,species,easmog1,Eastern Mountain Greenbul,Arizelocichla nigriceps,Passeriformes,Pycnonotidae (Bulbuls),, +23344,issf,easmog5,Eastern Mountain Greenbul (Olive-breasted),Arizelocichla nigriceps kikuyuensis,Passeriformes,Pycnonotidae (Bulbuls),,easmog1 +23345,issf,easmog2,Eastern Mountain Greenbul (Mountain),Arizelocichla nigriceps nigriceps/usambarae,Passeriformes,Pycnonotidae (Bulbuls),,easmog1 +23348,species,easmog6,Uluguru Mountain Greenbul,Arizelocichla neumanni,Passeriformes,Pycnonotidae (Bulbuls),, +23349,species,easmog3,Yellow-throated Mountain Greenbul,Arizelocichla chlorigula,Passeriformes,Pycnonotidae (Bulbuls),, +23350,species,easmog4,Black-browed Mountain Greenbul,Arizelocichla fusciceps,Passeriformes,Pycnonotidae (Bulbuls),, +23351,species,stcgre1,Stripe-cheeked Greenbul,Arizelocichla milanjensis,Passeriformes,Pycnonotidae (Bulbuls),, +23352,issf,stcgre4,Stripe-cheeked Greenbul (Stripe-faced),Arizelocichla milanjensis striifacies,Passeriformes,Pycnonotidae (Bulbuls),,stcgre1 +23353,issf,stcgre3,Stripe-cheeked Greenbul (Olive-headed),Arizelocichla milanjensis olivaceiceps,Passeriformes,Pycnonotidae (Bulbuls),,stcgre1 +23354,issf,stcgre2,Stripe-cheeked Greenbul (Stripe-cheeked),Arizelocichla milanjensis milanjensis,Passeriformes,Pycnonotidae (Bulbuls),,stcgre1 +23355,spuh,arizel1,Arizelocichla sp.,Arizelocichla sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23356,species,simgre1,Simple Greenbul,Chlorocichla simplex,Passeriformes,Pycnonotidae (Bulbuls),, +23357,species,yengre1,Yellow-necked Greenbul,Chlorocichla falkensteini,Passeriformes,Pycnonotidae (Bulbuls),, +23360,species,yebgre1,Yellow-bellied Greenbul,Chlorocichla flaviventris,Passeriformes,Pycnonotidae (Bulbuls),, +23364,species,joygre1,Joyful Greenbul,Chlorocichla laetissima,Passeriformes,Pycnonotidae (Bulbuls),, +23367,species,prigre1,Prigogine's Greenbul,Chlorocichla prigoginei,Passeriformes,Pycnonotidae (Bulbuls),, +23368,species,hongre1,Honeyguide Greenbul,Baeopogon indicator,Passeriformes,Pycnonotidae (Bulbuls),, +23371,species,sjogre1,Sjöstedt's Greenbul,Baeopogon clamans,Passeriformes,Pycnonotidae (Bulbuls),, +23372,species,yetgre1,Yellow-throated Greenbul,Atimastillas flavicollis,Passeriformes,Pycnonotidae (Bulbuls),, +23373,issf,yetgre2,Yellow-throated Greenbul (flavicollis),Atimastillas flavicollis flavicollis,Passeriformes,Pycnonotidae (Bulbuls),,yetgre1 +23374,issf,yetgre3,Yellow-throated Greenbul (soror),Atimastillas flavicollis soror,Passeriformes,Pycnonotidae (Bulbuls),,yetgre1 +23375,issf,yetgre4,Yellow-throated Greenbul (flavigula),Atimastillas flavicollis flavigula,Passeriformes,Pycnonotidae (Bulbuls),,yetgre1 +23376,species,spogre1,Spotted Greenbul,Ixonotus guttatus,Passeriformes,Pycnonotidae (Bulbuls),, +23377,species,swagre1,Swamp Greenbul,Thescelocichla leucopleura,Passeriformes,Pycnonotidae (Bulbuls),, +23378,species,retgre1,Red-tailed Greenbul,Criniger calurus,Passeriformes,Pycnonotidae (Bulbuls),, +23382,species,wesbeg1,Western Bearded-Greenbul,Criniger barbatus,Passeriformes,Pycnonotidae (Bulbuls),, +23385,species,easbeg1,Eastern Bearded-Greenbul,Criniger chloronotus,Passeriformes,Pycnonotidae (Bulbuls),, +23386,species,yebgre3,Yellow-bearded Greenbul,Criniger olivaceus,Passeriformes,Pycnonotidae (Bulbuls),, +23387,species,whbgre1,White-bearded Greenbul,Criniger ndussumensis,Passeriformes,Pycnonotidae (Bulbuls),, +23388,slash,y00904,Red-tailed/White-bearded Greenbul,Criniger calurus/ndussumensis,Passeriformes,Pycnonotidae (Bulbuls),, +23389,spuh,crinig1,Criniger sp.,Criniger sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23390,species,grygre1,Gray Greenbul,Eurillas gracilis,Passeriformes,Pycnonotidae (Bulbuls),, +23394,species,ansgre1,Ansorge's Greenbul,Eurillas ansorgei,Passeriformes,Pycnonotidae (Bulbuls),, +23397,species,plagre2,Plain Greenbul,Eurillas curvirostris,Passeriformes,Pycnonotidae (Bulbuls),, +23398,issf,plagre1,Plain Greenbul (leonina),Eurillas curvirostris leonina,Passeriformes,Pycnonotidae (Bulbuls),,plagre2 +23399,issf,plagre3,Plain Greenbul (curvirostris),Eurillas curvirostris curvirostris,Passeriformes,Pycnonotidae (Bulbuls),,plagre2 +23400,species,yewgre1,Yellow-whiskered Greenbul,Eurillas latirostris,Passeriformes,Pycnonotidae (Bulbuls),, +23403,species,litgre2,Little Greenbul,Eurillas virens,Passeriformes,Pycnonotidae (Bulbuls),, +23408,spuh,eurill1,Eurillas sp.,Eurillas sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23409,species,leaf-l1,Leaf-love,Phyllastrephus scandens,Passeriformes,Pycnonotidae (Bulbuls),, +23412,species,terbro1,Terrestrial Brownbul,Phyllastrephus terrestris,Passeriformes,Pycnonotidae (Bulbuls),, +23416,species,norbro1,Northern Brownbul,Phyllastrephus strepitans,Passeriformes,Pycnonotidae (Bulbuls),, +23417,species,paogre1,Pale-olive Greenbul,Phyllastrephus fulviventris,Passeriformes,Pycnonotidae (Bulbuls),, +23418,species,gyogre1,Gray-olive Greenbul,Phyllastrephus cerviniventris,Passeriformes,Pycnonotidae (Bulbuls),, +23419,species,baugre1,Baumann's Greenbul,Phyllastrephus baumanni,Passeriformes,Pycnonotidae (Bulbuls),, +23420,species,toogre1,Toro Olive-Greenbul,Phyllastrephus hypochloris,Passeriformes,Pycnonotidae (Bulbuls),, +23421,species,fisgre1,Fischer's Greenbul,Phyllastrephus fischeri,Passeriformes,Pycnonotidae (Bulbuls),, +23422,species,cabgre1,Cabanis's Greenbul,Phyllastrephus cabanisi,Passeriformes,Pycnonotidae (Bulbuls),, +23423,issf,cabgre3,Cabanis's Greenbul (Placid),Phyllastrephus cabanisi placidus,Passeriformes,Pycnonotidae (Bulbuls),,cabgre1 +23424,issf,cabgre2,Cabanis's Greenbul (Cabanis's),Phyllastrephus cabanisi [cabanisi Group],Passeriformes,Pycnonotidae (Bulbuls),,cabgre1 +23429,species,caogre1,Cameroon Olive-Greenbul,Phyllastrephus poensis,Passeriformes,Pycnonotidae (Bulbuls),, +23430,species,ictgre1,Icterine Greenbul,Phyllastrephus icterinus,Passeriformes,Pycnonotidae (Bulbuls),, +23431,species,sasgre1,Sassi's Greenbul,Phyllastrephus lorenzi,Passeriformes,Pycnonotidae (Bulbuls),, +23432,species,xavgre1,Xavier's Greenbul,Phyllastrephus xavieri,Passeriformes,Pycnonotidae (Bulbuls),, +23435,slash,y00905,Icterine/Xavier's Greenbul,Phyllastrephus icterinus/xavieri,Passeriformes,Pycnonotidae (Bulbuls),, +23436,species,whtgre2,White-throated Greenbul,Phyllastrephus albigularis,Passeriformes,Pycnonotidae (Bulbuls),, +23437,issf,whtgre1,White-throated Greenbul (White-throated),Phyllastrephus albigularis albigularis,Passeriformes,Pycnonotidae (Bulbuls),,whtgre2 +23438,issf,whtgre4,White-throated Greenbul (Green-crowned),Phyllastrephus albigularis viridiceps,Passeriformes,Pycnonotidae (Bulbuls),,whtgre2 +23439,species,yesbul1,Yellow-streaked Greenbul,Phyllastrephus flavostriatus,Passeriformes,Pycnonotidae (Bulbuls),, +23440,issf,yesgre2,Yellow-streaked Greenbul (Sharpe's),Phyllastrephus flavostriatus alfredi,Passeriformes,Pycnonotidae (Bulbuls),,yesbul1 +23441,issf,yesgre1,Yellow-streaked Greenbul (Yellow-streaked),Phyllastrephus flavostriatus [flavostriatus Group],Passeriformes,Pycnonotidae (Bulbuls),,yesbul1 +23449,species,gyhgre1,Gray-headed Greenbul,Phyllastrephus poliocephalus,Passeriformes,Pycnonotidae (Bulbuls),, +23450,species,tingre1,Tiny Greenbul,Phyllastrephus debilis,Passeriformes,Pycnonotidae (Bulbuls),, +23453,species,usabul1,Usambara Greenbul,Phyllastrephus albigula,Passeriformes,Pycnonotidae (Bulbuls),, +23454,spuh,phylla1,Phyllastrephus sp.,Phyllastrephus sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23455,spuh,greenb1,greenbul sp.,Pycnonotidae sp. (greenbul sp.),Passeriformes,Pycnonotidae (Bulbuls),, +23456,species,bawbul2,Black-and-white Bulbul,Brachypodius melanoleucos,Passeriformes,Pycnonotidae (Bulbuls),, +23457,species,pubbul1,Puff-backed Bulbul,Brachypodius eutilotus,Passeriformes,Pycnonotidae (Bulbuls),, +23458,species,yewbul1,Yellow-wattled Bulbul,Brachypodius urostictus,Passeriformes,Pycnonotidae (Bulbuls),, +23464,species,gyhbul1,Gray-headed Bulbul,Brachypodius priocephalus,Passeriformes,Pycnonotidae (Bulbuls),, +23465,species,blhbul1,Black-headed Bulbul,Brachypodius atriceps,Passeriformes,Pycnonotidae (Bulbuls),, +23470,species,andbul1,Andaman Bulbul,Brachypodius fuscoflavescens,Passeriformes,Pycnonotidae (Bulbuls),, +23471,species,spebul1,Spectacled Bulbul,Rubigula erythropthalmos,Passeriformes,Pycnonotidae (Bulbuls),, +23474,species,gybbul1,Gray-bellied Bulbul,Rubigula cyaniventris,Passeriformes,Pycnonotidae (Bulbuls),, +23477,species,scbbul1,Scaly-breasted Bulbul,Rubigula squamata,Passeriformes,Pycnonotidae (Bulbuls),, +23481,species,blcbul2,Black-crested Bulbul,Rubigula flaviventris,Passeriformes,Pycnonotidae (Bulbuls),, +23490,species,bkcbul1,Flame-throated Bulbul,Rubigula gularis,Passeriformes,Pycnonotidae (Bulbuls),, +23491,species,bkcbul2,Black-capped Bulbul,Rubigula melanicterus,Passeriformes,Pycnonotidae (Bulbuls),, +23492,species,bkcbul3,Ruby-throated Bulbul,Rubigula dispar,Passeriformes,Pycnonotidae (Bulbuls),, +23493,species,bkcbul4,Bornean Bulbul,Rubigula montis,Passeriformes,Pycnonotidae (Bulbuls),, +23494,species,bafbul1,Bare-faced Bulbul,Nok hualon,Passeriformes,Pycnonotidae (Bulbuls),, +23495,species,crefin1,Crested Finchbill,Spizixos canifrons,Passeriformes,Pycnonotidae (Bulbuls),, +23498,species,colfin1,Collared Finchbill,Spizixos semitorques,Passeriformes,Pycnonotidae (Bulbuls),, +23501,species,sthbul1,Straw-headed Bulbul,Pycnonotus zeylanicus,Passeriformes,Pycnonotidae (Bulbuls),, +23502,species,strbul2,Striated Bulbul,Pycnonotus striatus,Passeriformes,Pycnonotidae (Bulbuls),, +23506,species,crsbul1,Cream-striped Bulbul,Pycnonotus leucogrammicus,Passeriformes,Pycnonotidae (Bulbuls),, +23507,species,spnbul1,Spot-necked Bulbul,Pycnonotus tympanistrigus,Passeriformes,Pycnonotidae (Bulbuls),, +23508,species,stybul1,Styan's Bulbul,Pycnonotus taivanus,Passeriformes,Pycnonotidae (Bulbuls),, +23509,species,revbul,Red-vented Bulbul,Pycnonotus cafer,Passeriformes,Pycnonotidae (Bulbuls),, +23519,species,rewbul,Red-whiskered Bulbul,Pycnonotus jocosus,Passeriformes,Pycnonotidae (Bulbuls),, +23529,slash,y00810,Red-vented/Red-whiskered Bulbul,Pycnonotus cafer/jocosus,Passeriformes,Pycnonotidae (Bulbuls),, +23530,species,brbbul1,Brown-breasted Bulbul,Pycnonotus xanthorrhous,Passeriformes,Pycnonotidae (Bulbuls),, +23533,species,livbul1,Light-vented Bulbul,Pycnonotus sinensis,Passeriformes,Pycnonotidae (Bulbuls),, +23534,issf,livbul2,Light-vented Bulbul (sinensis),Pycnonotus sinensis sinensis,Passeriformes,Pycnonotidae (Bulbuls),,livbul1 +23535,issf,livbul3,Light-vented Bulbul (hainanus),Pycnonotus sinensis hainanus,Passeriformes,Pycnonotidae (Bulbuls),,livbul1 +23536,issf,livbul4,Light-vented Bulbul (formosae/orii),Pycnonotus sinensis formosae/orii,Passeriformes,Pycnonotidae (Bulbuls),,livbul1 +23539,hybrid,x00744,Styan's x Light-vented Bulbul (hybrid),Pycnonotus taivanus x sinensis,Passeriformes,Pycnonotidae (Bulbuls),, +23540,slash,y00987,Styan's/Light-vented Bulbul,Pycnonotus taivanus/sinensis,Passeriformes,Pycnonotidae (Bulbuls),, +23541,species,combul2,Common Bulbul,Pycnonotus barbatus,Passeriformes,Pycnonotidae (Bulbuls),, +23542,issf,combul3,Common Bulbul (Common),Pycnonotus barbatus [barbatus Group],Passeriformes,Pycnonotidae (Bulbuls),,combul2 +23548,issf,combul5,Common Bulbul (Somali),Pycnonotus barbatus somaliensis,Passeriformes,Pycnonotidae (Bulbuls),,combul2 +23549,issf,combul4,Common Bulbul (Dodson's),Pycnonotus barbatus dodsoni,Passeriformes,Pycnonotidae (Bulbuls),,combul2 +23550,issf,combul6,Common Bulbul (Dark-capped),Pycnonotus barbatus [tricolor Group],Passeriformes,Pycnonotidae (Bulbuls),,combul2 +23554,species,blfbul1,Black-fronted Bulbul,Pycnonotus nigricans,Passeriformes,Pycnonotidae (Bulbuls),, +23557,species,capbul1,Cape Bulbul,Pycnonotus capensis,Passeriformes,Pycnonotidae (Bulbuls),, +23558,species,whsbul1,White-spectacled Bulbul,Pycnonotus xanthopygos,Passeriformes,Pycnonotidae (Bulbuls),, +23559,species,whebul1,White-eared Bulbul,Pycnonotus leucotis,Passeriformes,Pycnonotidae (Bulbuls),, +23563,species,whcbul2,Himalayan Bulbul,Pycnonotus leucogenys,Passeriformes,Pycnonotidae (Bulbuls),, +23564,species,sohbul1,Sooty-headed Bulbul,Pycnonotus aurigaster,Passeriformes,Pycnonotidae (Bulbuls),, +23574,hybrid,x00967,Red-vented x Sooty-headed Bulbul (hybrid),Pycnonotus cafer x aurigaster,Passeriformes,Pycnonotidae (Bulbuls),, +23575,species,blwbul1,Blue-wattled Bulbul,Pycnonotus nieuwenhuisii,Passeriformes,Pycnonotidae (Bulbuls),, +23578,species,orsbul2,Aceh Bulbul,Pycnonotus snouckaerti,Passeriformes,Pycnonotidae (Bulbuls),, +23579,species,orsbul3,Orange-spotted Bulbul,Pycnonotus bimaculatus,Passeriformes,Pycnonotidae (Bulbuls),, +23582,slash,orsbul1,Aceh/Orange-spotted Bulbul,Pycnonotus snouckaerti/bimaculatus,Passeriformes,Pycnonotidae (Bulbuls),, +23583,species,sttbul1,Stripe-throated Bulbul,Pycnonotus finlaysoni,Passeriformes,Pycnonotidae (Bulbuls),, +23584,issf,sttbul2,Stripe-throated Bulbul (Pale-eyed),Pycnonotus finlaysoni davisoni,Passeriformes,Pycnonotidae (Bulbuls),,sttbul1 +23585,issf,sttbul3,Stripe-throated Bulbul (Stripe-throated),Pycnonotus finlaysoni finlaysoni/eous,Passeriformes,Pycnonotidae (Bulbuls),,sttbul1 +23588,species,yetbul1,Yellow-throated Bulbul,Pycnonotus xantholaemus,Passeriformes,Pycnonotidae (Bulbuls),, +23589,species,yeebul1,Yellow-eared Bulbul,Pycnonotus penicillatus,Passeriformes,Pycnonotidae (Bulbuls),, +23590,species,flabul1,Flavescent Bulbul,Pycnonotus flavescens,Passeriformes,Pycnonotidae (Bulbuls),, +23591,issf,flabul2,Flavescent Bulbul (Flavescent),Pycnonotus flavescens [flavescens Group],Passeriformes,Pycnonotidae (Bulbuls),,flabul1 +23595,issf,flabul3,Flavescent Bulbul (Pale-faced),Pycnonotus flavescens leucops,Passeriformes,Pycnonotidae (Bulbuls),,flabul1 +23596,species,whbbul2,White-browed Bulbul,Pycnonotus luteolus,Passeriformes,Pycnonotidae (Bulbuls),, +23599,species,yevbul1,Yellow-vented Bulbul,Pycnonotus goiavier,Passeriformes,Pycnonotidae (Bulbuls),, +23607,species,olwbul1,Olive-winged Bulbul,Pycnonotus plumosus,Passeriformes,Pycnonotidae (Bulbuls),, +23615,species,asfbul1,Ashy-fronted Bulbul,Pycnonotus cinereifrons,Passeriformes,Pycnonotidae (Bulbuls),, +23616,species,crebul1,Cream-eyed Bulbul,Pycnonotus pseudosimplex,Passeriformes,Pycnonotidae (Bulbuls),, +23617,species,ayebul1,Ayeyarwady Bulbul,Pycnonotus blanfordi,Passeriformes,Pycnonotidae (Bulbuls),, +23618,species,stebul2,Streak-eared Bulbul,Pycnonotus conradi,Passeriformes,Pycnonotidae (Bulbuls),, +23619,species,crvbul1,Cream-vented Bulbul,Pycnonotus simplex,Passeriformes,Pycnonotidae (Bulbuls),, +23620,issf,crvbul2,Cream-vented Bulbul (White-eyed),Pycnonotus simplex simplex/halizonus,Passeriformes,Pycnonotidae (Bulbuls),,crvbul1 +23623,issf,crvbul3,Cream-vented Bulbul (Red-eyed),Pycnonotus simplex perplexus/prillwitzi,Passeriformes,Pycnonotidae (Bulbuls),,crvbul1 +23626,slash,y01151,Cream-eyed/Cream-vented Bulbul,Pycnonotus pseudosimplex/simplex,Passeriformes,Pycnonotidae (Bulbuls),, +23627,species,reebul1,Red-eyed Bulbul,Pycnonotus brunneus,Passeriformes,Pycnonotidae (Bulbuls),, +23630,spuh,pycnon3,Pycnonotus sp.,Pycnonotus sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23631,spuh,pycnon1,Brachypodius/Rubigula/Pycnonotus sp.,Brachypodius/Rubigula/Pycnonotus sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23632,species,habbul1,Hairy-backed Bulbul,Tricholestes criniger,Passeriformes,Pycnonotidae (Bulbuls),, +23636,species,hobbul1,Hook-billed Bulbul,Setornis criniger,Passeriformes,Pycnonotidae (Bulbuls),, +23637,species,finbul1,Finsch's Bulbul,Alophoixus finschii,Passeriformes,Pycnonotidae (Bulbuls),, +23638,species,whtbul1,White-throated Bulbul,Alophoixus flaveolus,Passeriformes,Pycnonotidae (Bulbuls),, +23641,species,putbul1,Puff-throated Bulbul,Alophoixus pallidus,Passeriformes,Pycnonotidae (Bulbuls),, +23642,issf,putbul2,Puff-throated Bulbul (Gray-crowned),Alophoixus pallidus griseiceps,Passeriformes,Pycnonotidae (Bulbuls),,putbul1 +23643,issf,putbul3,Puff-throated Bulbul (Puff-throated),Alophoixus pallidus [pallidus Group],Passeriformes,Pycnonotidae (Bulbuls),,putbul1 +23650,species,ochbul1,Ochraceous Bulbul,Alophoixus ochraceus,Passeriformes,Pycnonotidae (Bulbuls),, +23651,issf,ochbul2,Ochraceous Bulbul (Ochraceous),Alophoixus ochraceus [ochraceus Group],Passeriformes,Pycnonotidae (Bulbuls),,ochbul1 +23658,issf,ochbul3,Ochraceous Bulbul (Chestnut-vented),Alophoixus ochraceus ruficrissus/fowleri,Passeriformes,Pycnonotidae (Bulbuls),,ochbul1 +23661,species,gycbul1,Gray-cheeked Bulbul,Alophoixus bres,Passeriformes,Pycnonotidae (Bulbuls),, +23662,issf,gycbul2,Gray-cheeked Bulbul (Gray-cheeked),Alophoixus bres tephrogenys/gutturalis,Passeriformes,Pycnonotidae (Bulbuls),,gycbul1 +23665,issf,gycbul3,Gray-cheeked Bulbul (Brown-cheeked),Alophoixus bres bres/balicus,Passeriformes,Pycnonotidae (Bulbuls),,gycbul1 +23668,species,gytbul1,Gray-throated Bulbul,Alophoixus frater,Passeriformes,Pycnonotidae (Bulbuls),, +23669,species,yebbul2,Yellow-bellied Bulbul,Alophoixus phaeocephalus,Passeriformes,Pycnonotidae (Bulbuls),, +23674,species,sangob1,Sangihe Golden-Bulbul,Alophoixus platenae,Passeriformes,Pycnonotidae (Bulbuls),, +23675,species,toggob1,Togian Golden-Bulbul,Alophoixus aureus,Passeriformes,Pycnonotidae (Bulbuls),, +23676,species,sulgob1,Sula Golden-Bulbul,Alophoixus longirostris,Passeriformes,Pycnonotidae (Bulbuls),, +23677,issf,sulgob2,Sula Golden-Bulbul (Banggai),Alophoixus longirostris harterti,Passeriformes,Pycnonotidae (Bulbuls),,sulgob1 +23678,issf,sulgob3,Sula Golden-Bulbul (Sula),Alophoixus longirostris longirostris,Passeriformes,Pycnonotidae (Bulbuls),,sulgob1 +23679,species,halgob1,Halmahera Golden-Bulbul,Alophoixus chloris,Passeriformes,Pycnonotidae (Bulbuls),, +23680,species,obigob1,Obi Golden-Bulbul,Alophoixus lucasi,Passeriformes,Pycnonotidae (Bulbuls),, +23681,species,golbul4,Buru Golden-Bulbul,Alophoixus mystacalis,Passeriformes,Pycnonotidae (Bulbuls),, +23682,species,golbul3,Seram Golden-Bulbul,Alophoixus affinis,Passeriformes,Pycnonotidae (Bulbuls),, +23685,species,subbul1,Sulphur-bellied Bulbul,Iole palawanensis,Passeriformes,Pycnonotidae (Bulbuls),, +23686,species,buvbul1,Buff-vented Bulbul,Iole crypta,Passeriformes,Pycnonotidae (Bulbuls),, +23687,species,chabul1,Charlotte's Bulbul,Iole charlottae,Passeriformes,Pycnonotidae (Bulbuls),, +23688,species,gyebul1,Gray-eyed Bulbul,Iole propinqua,Passeriformes,Pycnonotidae (Bulbuls),, +23689,issf,gyebul2,Gray-eyed Bulbul (Gray-eyed),Iole propinqua [propinqua Group],Passeriformes,Pycnonotidae (Bulbuls),,gyebul1 +23694,issf,gyebul3,Gray-eyed Bulbul (innectens),Iole propinqua innectens,Passeriformes,Pycnonotidae (Bulbuls),,gyebul1 +23695,species,cacbul1,Cachar Bulbul,Iole cacharensis,Passeriformes,Pycnonotidae (Bulbuls),, +23696,species,olibul1,Olive Bulbul,Iole viridescens,Passeriformes,Pycnonotidae (Bulbuls),, +23697,issf,olibul2,Olive Bulbul (Olive),Iole viridescens viridescens/lekhakuni,Passeriformes,Pycnonotidae (Bulbuls),,olibul1 +23700,issf,olibul3,Olive Bulbul (Baker's),Iole viridescens cinnamomeoventris,Passeriformes,Pycnonotidae (Bulbuls),,olibul1 +23701,species,yebbul3,Yellow-browed Bulbul,Iole indica,Passeriformes,Pycnonotidae (Bulbuls),, +23705,spuh,iole1,Iole sp.,Iole sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23706,species,madbul1,Madagascar Bulbul,Hypsipetes madagascariensis,Passeriformes,Pycnonotidae (Bulbuls),, +23710,species,seybul1,Seychelles Bulbul,Hypsipetes crassirostris,Passeriformes,Pycnonotidae (Bulbuls),, +23711,species,combul1,Grand Comoro Bulbul,Hypsipetes parvirostris,Passeriformes,Pycnonotidae (Bulbuls),, +23712,species,mohbul1,Moheli Bulbul,Hypsipetes moheliensis,Passeriformes,Pycnonotidae (Bulbuls),, +23713,species,reubul1,Reunion Bulbul,Hypsipetes borbonicus,Passeriformes,Pycnonotidae (Bulbuls),, +23714,species,maubul1,Mauritius Bulbul,Hypsipetes olivaceus,Passeriformes,Pycnonotidae (Bulbuls),, +23715,species,blabul1,Black Bulbul,Hypsipetes leucocephalus,Passeriformes,Pycnonotidae (Bulbuls),, +23716,issf,blkbul1,Black Bulbul (psaroides Group),Hypsipetes leucocephalus [psaroides Group],Passeriformes,Pycnonotidae (Bulbuls),,blabul1 +23720,issf,blkbul2,Black Bulbul (Black),Hypsipetes leucocephalus sinensis/ambiens,Passeriformes,Pycnonotidae (Bulbuls),,blabul1 +23723,issf,blkbul3,Black Bulbul (leucocephalus Group),Hypsipetes leucocephalus [leucocephalus Group],Passeriformes,Pycnonotidae (Bulbuls),,blabul1 +23727,issf,blkbul4,Black Bulbul (perniger),Hypsipetes leucocephalus perniger,Passeriformes,Pycnonotidae (Bulbuls),,blabul1 +23728,issf,blkbul5,Black Bulbul (Gray-winged),Hypsipetes leucocephalus nigerrimus,Passeriformes,Pycnonotidae (Bulbuls),,blabul1 +23729,species,sqtbul1,Square-tailed Bulbul,Hypsipetes ganeesa,Passeriformes,Pycnonotidae (Bulbuls),, +23730,issf,sqtbul2,Square-tailed Bulbul (Indian),Hypsipetes ganeesa ganeesa,Passeriformes,Pycnonotidae (Bulbuls),,sqtbul1 +23731,issf,sqtbul3,Square-tailed Bulbul (Sri Lanka),Hypsipetes ganeesa humii,Passeriformes,Pycnonotidae (Bulbuls),,sqtbul1 +23732,species,nicbul2,Nicobar Bulbul,Hypsipetes nicobariensis,Passeriformes,Pycnonotidae (Bulbuls),, +23733,species,whhbul1,White-headed Bulbul,Hypsipetes thompsoni,Passeriformes,Pycnonotidae (Bulbuls),, +23734,species,brebul1,Brown-eared Bulbul,Hypsipetes amaurotis,Passeriformes,Pycnonotidae (Bulbuls),, +23749,species,visbul1,Visayan Bulbul,Hypsipetes guimarasensis,Passeriformes,Pycnonotidae (Bulbuls),, +23750,species,zambul1,Zamboanga Bulbul,Hypsipetes rufigularis,Passeriformes,Pycnonotidae (Bulbuls),, +23751,species,yelbul1,Yellowish Bulbul,Hypsipetes everetti,Passeriformes,Pycnonotidae (Bulbuls),, +23752,issf,yelbul2,Yellowish Bulbul (Yellowish),Hypsipetes everetti everetti/samarensis,Passeriformes,Pycnonotidae (Bulbuls),,yelbul1 +23755,issf,yelbul3,Yellowish Bulbul (Sulu),Hypsipetes everetti haynaldi,Passeriformes,Pycnonotidae (Bulbuls),,yelbul1 +23756,issf,yelbul4,Yellowish Bulbul (Camiguin),Hypsipetes everetti catarmanensis,Passeriformes,Pycnonotidae (Bulbuls),,yelbul1 +23757,species,minbul1,Mindoro Bulbul,Hypsipetes mindorensis,Passeriformes,Pycnonotidae (Bulbuls),, +23758,species,stbbul1,Streak-breasted Bulbul,Hypsipetes siquijorensis,Passeriformes,Pycnonotidae (Bulbuls),, +23759,issf,stbbul2,Streak-breasted Bulbul (Tablas),Hypsipetes siquijorensis cinereiceps,Passeriformes,Pycnonotidae (Bulbuls),,stbbul1 +23760,issf,stbbul3,Streak-breasted Bulbul (Cebu),Hypsipetes siquijorensis monticola,Passeriformes,Pycnonotidae (Bulbuls),,stbbul1 +23761,issf,stbbul4,Streak-breasted Bulbul (Siquijor),Hypsipetes siquijorensis siquijorensis,Passeriformes,Pycnonotidae (Bulbuls),,stbbul1 +23762,species,phibul1,Philippine Bulbul,Hypsipetes philippinus,Passeriformes,Pycnonotidae (Bulbuls),, +23766,species,ashbul1,Ashy Bulbul,Hemixos flavala,Passeriformes,Pycnonotidae (Bulbuls),, +23767,issf,ashbul2,Ashy Bulbul (Ashy),Hemixos flavala [flavala Group],Passeriformes,Pycnonotidae (Bulbuls),,ashbul1 +23772,issf,ashbul6,Ashy Bulbul (Brown-backed),Hemixos flavala remotus,Passeriformes,Pycnonotidae (Bulbuls),,ashbul1 +23773,species,cinbul1,Cinereous Bulbul,Hemixos cinereus,Passeriformes,Pycnonotidae (Bulbuls),, +23774,issf,ashbul4,Cinereous Bulbul (Cinereous),Hemixos cinereus cinereus,Passeriformes,Pycnonotidae (Bulbuls),,cinbul1 +23775,issf,ashbul5,Cinereous Bulbul (Green-winged),Hemixos cinereus connectens,Passeriformes,Pycnonotidae (Bulbuls),,cinbul1 +23776,species,chebul1,Chestnut Bulbul,Hemixos castanonotus,Passeriformes,Pycnonotidae (Bulbuls),, +23779,species,moubul2,Mountain Bulbul,Ixos mcclellandii,Passeriformes,Pycnonotidae (Bulbuls),, +23789,species,sunbul2,Sunda Bulbul,Ixos virescens,Passeriformes,Pycnonotidae (Bulbuls),, +23790,issf,sunbul1,Sunda Bulbul (Sumatran),Ixos virescens sumatranus,Passeriformes,Pycnonotidae (Bulbuls),,sunbul2 +23791,issf,sunbul3,Sunda Bulbul (Javan),Ixos virescens virescens,Passeriformes,Pycnonotidae (Bulbuls),,sunbul2 +23792,species,strbul1,Streaked Bulbul,Ixos malaccensis,Passeriformes,Pycnonotidae (Bulbuls),, +23793,spuh,pycnon2,Pycnonotidae sp.,Pycnonotidae sp.,Passeriformes,Pycnonotidae (Bulbuls),, +23794,species,woowar,Wood Warbler,Phylloscopus sibilatrix,Passeriformes,Phylloscopidae (Leaf Warblers),Leaf Warblers, +23795,species,webwar1,Western Bonelli's Warbler,Phylloscopus bonelli,Passeriformes,Phylloscopidae (Leaf Warblers),, +23796,species,eabwar1,Eastern Bonelli's Warbler,Phylloscopus orientalis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23797,slash,y00814,Western/Eastern Bonelli's Warbler,Phylloscopus bonelli/orientalis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23798,species,astwar2,Ashy-throated Warbler,Phylloscopus maculipennis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23801,species,bubwar1,Buff-barred Warbler,Phylloscopus pulcher,Passeriformes,Phylloscopidae (Leaf Warblers),, +23804,species,yebwar3,Yellow-browed Warbler,Phylloscopus inornatus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23805,species,humwar1,Hume's Warbler,Phylloscopus humei,Passeriformes,Phylloscopidae (Leaf Warblers),, +23808,slash,y00641,Yellow-browed/Hume's Warbler,Phylloscopus inornatus/humei,Passeriformes,Phylloscopidae (Leaf Warblers),, +23809,species,brlwar1,Brooks's Leaf Warbler,Phylloscopus subviridis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23810,species,chilew1,Chinese Leaf Warbler,Phylloscopus yunnanensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23811,species,palwar5,Pallas's Leaf Warbler,Phylloscopus proregulus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23812,species,ganlew1,Gansu Leaf Warbler,Phylloscopus kansuensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23813,species,parwar1,Lemon-rumped Warbler,Phylloscopus chloronotus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23816,species,siclew1,Sichuan Leaf Warbler,Phylloscopus forresti,Passeriformes,Phylloscopidae (Leaf Warblers),, +23817,slash,y00991,Lemon-rumped/Sichuan Leaf Warbler,Phylloscopus chloronotus/forresti,Passeriformes,Phylloscopidae (Leaf Warblers),, +23818,species,tylwar1,Tytler's Leaf Warbler,Phylloscopus tytleri,Passeriformes,Phylloscopidae (Leaf Warblers),, +23819,species,radwar1,Radde's Warbler,Phylloscopus schwarzi,Passeriformes,Phylloscopidae (Leaf Warblers),, +23820,species,yeswar1,Yellow-streaked Warbler,Phylloscopus armandii,Passeriformes,Phylloscopidae (Leaf Warblers),, +23823,species,subwar2,Sulphur-bellied Warbler,Phylloscopus griseolus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23824,species,tilwar1,Tickell's Leaf Warbler,Phylloscopus affinis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23827,slash,y01152,Sulphur-bellied/Tickell's Leaf Warbler,Phylloscopus griseolus/affinis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23828,species,alplew1,Alpine Leaf Warbler,Phylloscopus occisinensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23829,slash,y00989,Tickell's/Alpine Leaf Warbler,Phylloscopus affinis/occisinensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23830,species,duswar,Dusky Warbler,Phylloscopus fuscatus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23833,slash,y00749,Radde's/Dusky Warbler,Phylloscopus schwarzi/fuscatus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23834,slash,y00990,Radde's/Yellow-streaked/Dusky Warbler,Phylloscopus schwarzi/armandii/fuscatus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23835,species,smowar1,Smoky Warbler,Phylloscopus fuligiventer,Passeriformes,Phylloscopidae (Leaf Warblers),, +23839,slash,y00988,Dusky/Smoky Warbler,Phylloscopus fuscatus/fuligiventer,Passeriformes,Phylloscopidae (Leaf Warblers),, +23840,species,pllwar2,Plain Leaf Warbler,Phylloscopus neglectus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23841,species,butwar1,Buff-throated Warbler,Phylloscopus subaffinis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23842,species,wlwwar,Willow Warbler,Phylloscopus trochilus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23846,species,mouchi2,Mountain Chiffchaff,Phylloscopus sindianus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23847,issf,mouchi1,Mountain Chiffchaff (Caucasian),Phylloscopus sindianus lorenzii,Passeriformes,Phylloscopidae (Leaf Warblers),,mouchi2 +23848,issf,mouchi5,Mountain Chiffchaff (Kashmir),Phylloscopus sindianus sindianus,Passeriformes,Phylloscopidae (Leaf Warblers),,mouchi2 +23849,species,caichi1,Canary Islands Chiffchaff,Phylloscopus canariensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23852,species,comchi1,Common Chiffchaff,Phylloscopus collybita,Passeriformes,Phylloscopidae (Leaf Warblers),, +23853,issf,comchi3,Common Chiffchaff (Common),Phylloscopus collybita [collybita Group],Passeriformes,Phylloscopidae (Leaf Warblers),,comchi1 +23859,issf,comchi4,Common Chiffchaff (Siberian),Phylloscopus collybita tristis,Passeriformes,Phylloscopidae (Leaf Warblers),,comchi1 +23860,slash,y00812,Willow Warbler/Common Chiffchaff,Phylloscopus trochilus/collybita,Passeriformes,Phylloscopidae (Leaf Warblers),, +23861,slash,y01101,Mountain/Common Chiffchaff,Phylloscopus sindianus/collybita,Passeriformes,Phylloscopidae (Leaf Warblers),, +23862,species,ibechi2,Iberian Chiffchaff,Phylloscopus ibericus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23865,slash,y01045,Willow Warbler/Common Chiffchaff/Iberian Chiffchaff,Phylloscopus trochilus/collybita/ibericus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23866,slash,y00813,Common/Iberian Chiffchaff,Phylloscopus collybita/ibericus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23867,species,letwar1,Lemon-throated Leaf Warbler,Phylloscopus cebuensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23871,species,phlwar1,Philippine Leaf Warbler,Phylloscopus olivaceus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23872,species,eacwar1,Eastern Crowned Warbler,Phylloscopus coronatus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23873,species,ijlwar1,Ijima's Leaf Warbler,Phylloscopus ijimae,Passeriformes,Phylloscopidae (Leaf Warblers),, +23874,species,brwwar1,Brown Woodland-Warbler,Phylloscopus umbrovirens,Passeriformes,Phylloscopidae (Leaf Warblers),, +23884,species,yetwow1,Yellow-throated Woodland-Warbler,Phylloscopus ruficapilla,Passeriformes,Phylloscopidae (Leaf Warblers),, +23892,species,rfwwar1,Red-faced Woodland-Warbler,Phylloscopus laetus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23895,species,lauwow1,Laura's Woodland-Warbler,Phylloscopus laurae,Passeriformes,Phylloscopidae (Leaf Warblers),, +23898,species,bcwwar1,Black-capped Woodland-Warbler,Phylloscopus herberti,Passeriformes,Phylloscopidae (Leaf Warblers),, +23901,species,ugawow1,Uganda Woodland-Warbler,Phylloscopus budongoensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23902,species,whswar1,White-spectacled Warbler,Phylloscopus intermedius,Passeriformes,Phylloscopidae (Leaf Warblers),, +23905,species,gycwar2,Gray-cheeked Warbler,Phylloscopus poliogenys,Passeriformes,Phylloscopidae (Leaf Warblers),, +23906,species,goswar1,Green-crowned Warbler,Phylloscopus burkii,Passeriformes,Phylloscopidae (Leaf Warblers),, +23907,species,gycwar1,Gray-crowned Warbler,Phylloscopus tephrocephalus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23908,species,whiwar2,Whistler's Warbler,Phylloscopus whistleri,Passeriformes,Phylloscopidae (Leaf Warblers),, +23911,slash,y00993,Green-crowned/Whistler's Warbler,Phylloscopus burkii/whistleri,Passeriformes,Phylloscopidae (Leaf Warblers),, +23912,slash,y00994,Gray-crowned/Whistler's Warbler,Phylloscopus tephrocephalus/whistleri,Passeriformes,Phylloscopidae (Leaf Warblers),, +23913,species,biawar1,Bianchi's Warbler,Phylloscopus valentini,Passeriformes,Phylloscopidae (Leaf Warblers),, +23916,slash,y00650,Gray-crowned/Bianchi's Warbler,Phylloscopus tephrocephalus/valentini,Passeriformes,Phylloscopidae (Leaf Warblers),, +23917,species,marwar4,Martens's Warbler,Phylloscopus omeiensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23918,species,pltwar1,Alström's Warbler,Phylloscopus soror,Passeriformes,Phylloscopidae (Leaf Warblers),, +23919,slash,y00995,Bianchi's/Martens's/Alström's Warbler,Phylloscopus valentini/omeiensis/soror,Passeriformes,Phylloscopidae (Leaf Warblers),, +23920,spuh,seicer2,Phylloscopus sp. (Golden-spectacled Warbler complex),Phylloscopus sp. (burkii complex),Passeriformes,Phylloscopidae (Leaf Warblers),, +23921,species,grnwar1,Green Warbler,Phylloscopus nitidus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23922,species,grewar3,Greenish Warbler,Phylloscopus trochiloides,Passeriformes,Phylloscopidae (Leaf Warblers),, +23923,issf,grewar6,Greenish Warbler (viridanus),Phylloscopus trochiloides viridanus,Passeriformes,Phylloscopidae (Leaf Warblers),,grewar3 +23924,issf,grewar5,Greenish Warbler (trochiloides/ludlowi),Phylloscopus trochiloides trochiloides/ludlowi,Passeriformes,Phylloscopidae (Leaf Warblers),,grewar3 +23927,issf,grewar4,Greenish Warbler (obscuratus),Phylloscopus trochiloides obscuratus,Passeriformes,Phylloscopidae (Leaf Warblers),,grewar3 +23928,slash,y00642,Green/Greenish Warbler,Phylloscopus nitidus/trochiloides,Passeriformes,Phylloscopidae (Leaf Warblers),, +23929,species,grewar2,Two-barred Warbler,Phylloscopus plumbeitarsus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23930,slash,grewar1,Greenish/Two-barred Warbler,Phylloscopus trochiloides/plumbeitarsus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23931,species,emlwar1,Emei Leaf Warbler,Phylloscopus emeiensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23932,species,lblwar1,Large-billed Leaf Warbler,Phylloscopus magnirostris,Passeriformes,Phylloscopidae (Leaf Warblers),, +23933,slash,y01088,Greenish/Large-billed Leaf Warbler,Phylloscopus trochiloides/magnirostris,Passeriformes,Phylloscopidae (Leaf Warblers),, +23934,species,pllwar1,Pale-legged Leaf Warbler,Phylloscopus tenellipes,Passeriformes,Phylloscopidae (Leaf Warblers),, +23935,species,salwar1,Sakhalin Leaf Warbler,Phylloscopus borealoides,Passeriformes,Phylloscopidae (Leaf Warblers),, +23936,slash,y00750,Pale-legged/Sakhalin Leaf Warbler,Phylloscopus tenellipes/borealoides,Passeriformes,Phylloscopidae (Leaf Warblers),, +23937,species,arcwar3,Japanese Leaf Warbler,Phylloscopus xanthodryas,Passeriformes,Phylloscopidae (Leaf Warblers),, +23938,species,arcwar1,Arctic Warbler,Phylloscopus borealis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23943,slash,y00907,Japanese Leaf/Arctic Warbler,Phylloscopus xanthodryas/borealis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23944,species,arcwar2,Kamchatka Leaf Warbler,Phylloscopus examinandus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23945,slash,y00815,Arctic/Kamchatka Leaf Warbler,Phylloscopus borealis/examinandus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23946,slash,arcwar,Japanese Leaf/Arctic/Kamchatka Leaf Warbler,Phylloscopus xanthodryas/borealis/examinandus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23947,species,chcwar2,Chestnut-crowned Warbler,Phylloscopus castaniceps,Passeriformes,Phylloscopidae (Leaf Warblers),, +23957,species,yebwar2,Yellow-breasted Warbler,Phylloscopus montis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23964,species,sunwar1,Sunda Warbler,Phylloscopus grammiceps,Passeriformes,Phylloscopidae (Leaf Warblers),, +23965,issf,sunwar2,Sunda Warbler (Sumatran),Phylloscopus grammiceps sumatrensis,Passeriformes,Phylloscopidae (Leaf Warblers),,sunwar1 +23966,issf,sunwar3,Sunda Warbler (Javan),Phylloscopus grammiceps grammiceps,Passeriformes,Phylloscopidae (Leaf Warblers),,sunwar1 +23967,species,limlew1,Limestone Leaf Warbler,Phylloscopus calciatilis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23968,species,yevwar1,Yellow-vented Warbler,Phylloscopus cantator,Passeriformes,Phylloscopidae (Leaf Warblers),, +23971,species,subwar3,Sulphur-breasted Warbler,Phylloscopus ricketti,Passeriformes,Phylloscopidae (Leaf Warblers),, +23972,slash,y00992,Limestone Leaf/Sulphur-breasted Warbler,Phylloscopus calciatilis/ricketti,Passeriformes,Phylloscopidae (Leaf Warblers),, +23973,species,weclew1,Western Crowned Warbler,Phylloscopus occipitalis,Passeriformes,Phylloscopidae (Leaf Warblers),, +23974,species,blylew1,Blyth's Leaf Warbler,Phylloscopus reguloides,Passeriformes,Phylloscopidae (Leaf Warblers),, +23978,species,clalew1,Claudia's Leaf Warbler,Phylloscopus claudiae,Passeriformes,Phylloscopidae (Leaf Warblers),, +23979,species,harlew1,Hartert's Leaf Warbler,Phylloscopus goodsoni,Passeriformes,Phylloscopidae (Leaf Warblers),, +23982,slash,bllwar1,Blyth's/Claudia's/Hartert's Leaf Warbler,Phylloscopus reguloides/claudiae/goodsoni,Passeriformes,Phylloscopidae (Leaf Warblers),, +23983,species,gyhwar2,Gray-hooded Warbler,Phylloscopus xanthoschistos,Passeriformes,Phylloscopidae (Leaf Warblers),, +23988,species,davlew1,Davison's Leaf Warbler,Phylloscopus intensior,Passeriformes,Phylloscopidae (Leaf Warblers),, +23991,species,halwar1,Hainan Leaf Warbler,Phylloscopus hainanus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23992,species,klolew1,Kloss's Leaf Warbler,Phylloscopus ogilviegranti,Passeriformes,Phylloscopidae (Leaf Warblers),, +23996,slash,wtlwar1,Davison's/Kloss's Leaf Warbler,Phylloscopus intensior/ogilviegranti,Passeriformes,Phylloscopidae (Leaf Warblers),, +23997,species,mouwar2,Mountain Leaf Warbler,Phylloscopus trivirgatus,Passeriformes,Phylloscopidae (Leaf Warblers),, +23998,issf,mouwar3,Mountain Leaf Warbler (Mountain),Phylloscopus trivirgatus [trivirgatus Group],Passeriformes,Phylloscopidae (Leaf Warblers),,mouwar2 +24003,issf,mouwar4,Mountain Leaf Warbler (Philippines),Phylloscopus trivirgatus [nigrorum Group],Passeriformes,Phylloscopidae (Leaf Warblers),,mouwar2 +24011,species,tilwar2,Timor Leaf Warbler,Phylloscopus presbytes,Passeriformes,Phylloscopidae (Leaf Warblers),, +24012,issf,tilwar3,Timor Leaf Warbler (Flores),Phylloscopus presbytes floresianus,Passeriformes,Phylloscopidae (Leaf Warblers),,tilwar2 +24013,issf,tilwar4,Timor Leaf Warbler (Timor),Phylloscopus presbytes presbytes,Passeriformes,Phylloscopidae (Leaf Warblers),,tilwar2 +24014,species,rolwar1,Rote Leaf Warbler,Phylloscopus rotiensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +24015,species,sclwar1,Makira Leaf Warbler,Phylloscopus makirensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +24016,species,sulwar1,Sulawesi Leaf Warbler,Phylloscopus sarasinorum,Passeriformes,Phylloscopidae (Leaf Warblers),, +24017,issf,sulwar2,Sulawesi Leaf Warbler (Sulawesi),Phylloscopus sarasinorum nesophilus,Passeriformes,Phylloscopidae (Leaf Warblers),,sulwar1 +24018,issf,sulwar3,Sulawesi Leaf Warbler (Lompobattang),Phylloscopus sarasinorum sarasinorum,Passeriformes,Phylloscopidae (Leaf Warblers),,sulwar1 +24019,species,islwar1,Island Leaf Warbler,Phylloscopus maforensis,Passeriformes,Phylloscopidae (Leaf Warblers),, +24020,issf,isllew8,Island Leaf Warbler (Halmahera),Phylloscopus maforensis henrietta,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24021,issf,isllew11,Island Leaf Warbler (Bacan),Phylloscopus maforensis waterstradti,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24022,issf,isllew7,Island Leaf Warbler (Buru),Phylloscopus maforensis everetti,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24023,issf,isllew6,Island Leaf Warbler (Seram),Phylloscopus maforensis ceramensis,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24024,issf,isllew5,Island Leaf Warbler (Kai),Phylloscopus maforensis avicola,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24025,issf,isllew9,Island Leaf Warbler (Numfor),Phylloscopus maforensis maforensis,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24026,issf,isllew10,Island Leaf Warbler (Biak),Phylloscopus maforensis misoriensis,Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24027,issf,isllew2,Island Leaf Warbler (New Guinea),Phylloscopus maforensis [poliocephalus Group],Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24034,issf,isllew1,Island Leaf Warbler (South Pacific),Phylloscopus maforensis [matthiae Group],Passeriformes,Phylloscopidae (Leaf Warblers),,islwar1 +24041,species,kullew1,Kolombangara Leaf Warbler,Phylloscopus amoenus,Passeriformes,Phylloscopidae (Leaf Warblers),, +24042,form,isllew3,Taliabu Leaf Warbler (undescribed form),Phylloscopus [undescribed form 1],Passeriformes,Phylloscopidae (Leaf Warblers),, +24043,form,isllew4,Banggai Leaf Warbler (undescribed form),Phylloscopus [undescribed form 2],Passeriformes,Phylloscopidae (Leaf Warblers),, +24044,spuh,phyllo1,Phylloscopus sp.,Phylloscopus sp.,Passeriformes,Phylloscopidae (Leaf Warblers),, +24045,species,chcfly1,Chestnut-capped Flycatcher,Erythrocercus mccallii,Passeriformes,Scotocercidae (Bush Warblers and Allies),Bush Warblers and Allies, +24049,species,yelfly2,Yellow Flycatcher,Erythrocercus holochlorus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24050,species,livfly1,Livingstone's Flycatcher,Erythrocercus livingstonei,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24054,species,stswar1,Scrub Warbler,Scotocerca inquieta,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24055,issf,scrwar1,Scrub Warbler (Western),Scotocerca inquieta saharae/theresae,Passeriformes,Scotocercidae (Bush Warblers and Allies),,stswar1 +24058,issf,scrwar2,Scrub Warbler (Eastern),Scotocerca inquieta [inquieta Group],Passeriformes,Scotocercidae (Bush Warblers and Allies),,stswar1 +24065,species,neuwar1,Neumann's Warbler,Urosphena neumanni,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24066,species,pfbwar1,Pale-footed Bush Warbler,Urosphena pallidipes,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24070,species,timstu1,Timor Stubtail,Urosphena subulata,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24073,species,borstu1,Bornean Stubtail,Urosphena whiteheadi,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24074,species,asistu1,Asian Stubtail,Urosphena squameiceps,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24075,species,gybtes1,Gray-bellied Tesia,Tesia cyaniventer,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24076,species,slbtes1,Slaty-bellied Tesia,Tesia olivea,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24077,slash,y00906,Gray-bellied/Slaty-bellied Tesia,Tesia cyaniventer/olivea,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24078,species,javtes1,Javan Tesia,Tesia superciliaris,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24079,species,ructes1,Russet-capped Tesia,Tesia everetti,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24082,spuh,tesia1,Tesia sp. (genus Tesia),Tesia sp.,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24083,species,ccbwar1,Chestnut-crowned Bush Warbler,Cettia major,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24086,species,gysbuw1,Gray-sided Bush Warbler,Cettia brunnifrons,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24091,species,chhtes1,Chestnut-headed Tesia,Cettia castaneocoronata,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24095,species,cetwar1,Cetti's Warbler,Cettia cetti,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24099,spuh,cettia1,Cettia sp.,Cettia sp.,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24100,species,yebwar1,Yellow-bellied Warbler,Abroscopus superciliaris,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24111,species,rufwar1,Rufous-faced Warbler,Abroscopus albogularis,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24115,species,blfwar1,Black-faced Warbler,Abroscopus schisticeps,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24119,species,moutai2,Mountain Tailorbird,Phyllergates cucullatus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24134,species,ruhtai2,Rufous-headed Tailorbird,Phyllergates heterolaemus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24135,species,brbwar1,Broad-billed Warbler,Tickellia hodgsoni,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24138,slash,y01153,Mountain Tailorbird/Broad-billed Warbler,Phyllergates cucullatus/Tickellia hodgsoni,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24139,species,phbwar1,Philippine Bush Warbler,Horornis seebohmi,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24140,species,jabwar,Japanese Bush Warbler,Horornis diphone,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24146,species,manbuw1,Manchurian Bush Warbler,Horornis canturians,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24149,slash,y00747,Japanese/Manchurian Bush Warbler,Horornis diphone/canturians,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24150,species,pabwar1,Palau Bush Warbler,Horornis annae,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24151,species,tabwar1,Tanimbar Bush Warbler,Horornis carolinae,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24152,species,shawar1,Shade Warbler,Horornis parens,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24153,species,odedi1,Odedi,Horornis haddeni,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24154,species,fibwar1,Fiji Bush Warbler,Horornis ruficapilla,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24159,species,bfbwar1,Brownish-flanked Bush Warbler,Horornis fortipes,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24160,issf,bfbwar2,Brownish-flanked Bush Warbler (Brownish-flanked),Horornis fortipes [fortipes Group],Passeriformes,Scotocercidae (Bush Warblers and Allies),,bfbwar1 +24164,issf,bfbwar3,Brownish-flanked Bush Warbler (Taiwan),Horornis fortipes robustipes,Passeriformes,Scotocercidae (Bush Warblers and Allies),,bfbwar1 +24165,species,yebbuw2,Hume's Bush Warbler,Horornis brunnescens,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24166,species,ybbwar1,Yellowish-bellied Bush Warbler,Horornis acanthizoides,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24169,slash,y00748,Brownish-flanked/Yellowish-bellied Bush Warbler,Horornis fortipes/acanthizoides,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24170,species,subwar4,Sunda Bush Warbler,Horornis vulcanius,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24178,species,abbwar1,Aberrant Bush Warbler,Horornis flavolivaceus,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24179,issf,abbwar2,Aberrant Bush Warbler (Aberrant),Horornis flavolivaceus [flavolivaceus Group],Passeriformes,Scotocercidae (Bush Warblers and Allies),,abbwar1 +24184,issf,abbwar3,Aberrant Bush Warbler (Perplexing),Horornis flavolivaceus intricatus/oblitus,Passeriformes,Scotocercidae (Bush Warblers and Allies),,abbwar1 +24187,spuh,bush-w1,bush warbler sp.,Horornis sp.,Passeriformes,Scotocercidae (Bush Warblers and Allies),, +24188,species,wbtwar1,White-browed Tit-Warbler,Leptopoecile sophiae,Passeriformes,Aegithalidae (Long-tailed Tits),Long-tailed Tits and Bushtit, +24193,species,crtwar1,Crested Tit-Warbler,Leptopoecile elegans,Passeriformes,Aegithalidae (Long-tailed Tits),, +24194,species,lottit1,Long-tailed Tit,Aegithalos caudatus,Passeriformes,Aegithalidae (Long-tailed Tits),, +24195,issf,lottit2,Long-tailed Tit (caudatus),Aegithalos caudatus caudatus,Passeriformes,Aegithalidae (Long-tailed Tits),,lottit1 +24196,issf,lottit3,Long-tailed Tit (europaeus Group),Aegithalos caudatus [europaeus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,lottit1 +24206,issf,lottit4,Long-tailed Tit (alpinus Group),Aegithalos caudatus [alpinus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,lottit1 +24214,species,lottit5,Silver-throated Tit,Aegithalos glaucogularis,Passeriformes,Aegithalidae (Long-tailed Tits),, +24217,species,whctit1,White-cheeked Tit,Aegithalos leucogenys,Passeriformes,Aegithalidae (Long-tailed Tits),, +24218,species,blttit2,Black-throated Tit,Aegithalos concinnus,Passeriformes,Aegithalidae (Long-tailed Tits),, +24219,issf,bkttit1,Black-throated Tit (Black-throated),Aegithalos concinnus [concinnus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,blttit2 +24224,issf,bkttit3,Black-throated Tit (Red-headed),Aegithalos concinnus iredalei,Passeriformes,Aegithalidae (Long-tailed Tits),,blttit2 +24225,issf,bkttit2,Black-throated Tit (Gray-crowned),Aegithalos concinnus annamensis,Passeriformes,Aegithalidae (Long-tailed Tits),,blttit2 +24226,species,whttit1,White-throated Tit,Aegithalos niveogularis,Passeriformes,Aegithalidae (Long-tailed Tits),, +24227,species,bkbtit3,Black-browed Tit,Aegithalos iouschistos,Passeriformes,Aegithalidae (Long-tailed Tits),, +24228,issf,bkbtit5,Black-browed Tit (Rufous-fronted),Aegithalos iouschistos iouschistos,Passeriformes,Aegithalidae (Long-tailed Tits),,bkbtit3 +24229,issf,bkbtit6,Black-browed Tit (Burmese),Aegithalos iouschistos sharpei,Passeriformes,Aegithalidae (Long-tailed Tits),,bkbtit3 +24230,issf,bkbtit4,Black-browed Tit (Black-browed),Aegithalos iouschistos bonvaloti/obscuratus,Passeriformes,Aegithalidae (Long-tailed Tits),,bkbtit3 +24233,species,sootit1,Sooty Tit,Aegithalos fuliginosus,Passeriformes,Aegithalidae (Long-tailed Tits),, +24234,species,bushti,Bushtit,Psaltriparus minimus,Passeriformes,Aegithalidae (Long-tailed Tits),, +24235,issf,bushti1,Bushtit (Pacific),Psaltriparus minimus [minimus Group],Passeriformes,Aegithalidae (Long-tailed Tits),,bushti +24241,issf,bushti2,Bushtit (Interior),Psaltriparus minimus plumbeus,Passeriformes,Aegithalidae (Long-tailed Tits),,bushti +24242,issf,bkebus,Bushtit (melanotis Group),Psaltriparus minimus [melanotis Group],Passeriformes,Aegithalidae (Long-tailed Tits),,bushti +24247,species,pygtit1,Pygmy Tit,Psaltria exilis,Passeriformes,Aegithalidae (Long-tailed Tits),, +24248,species,abycat1,Abyssinian Catbird,Parophasma galinieri,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",Sylviid Warblers, +24249,species,afhbab1,African Hill Babbler,Sylvia abyssinica,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24250,issf,afhbab2,African Hill Babbler (African),Sylvia abyssinica abyssinica/stictigula,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,afhbab1 +24253,issf,afhbab4,African Hill Babbler (Mt. Cameroon),Sylvia abyssinica monachus,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,afhbab1 +24254,issf,afhbab5,African Hill Babbler (Claude's),Sylvia abyssinica claudei,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,afhbab1 +24255,issf,afhbab6,African Hill Babbler (Stierling's),Sylvia abyssinica stierlingi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,afhbab1 +24256,species,afhbab3,Rwenzori Hill Babbler,Sylvia atriceps,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24257,species,busbla1,Bush Blackcap,Sylvia nigricapillus,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24258,species,dohthb1,Dohrn's Thrush-Babbler,Sylvia dohrni,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24259,species,blackc1,Eurasian Blackcap,Sylvia atricapilla,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24265,species,garwar1,Garden Warbler,Sylvia borin,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24268,species,afdwar1,African Desert Warbler,Sylvia deserti,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24269,species,asdwar1,Asian Desert Warbler,Sylvia nana,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24270,species,barwar1,Barred Warbler,Sylvia nisoria,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24273,species,laywar2,Layard's Warbler,Sylvia layardi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24278,species,banwar2,Banded Parisoma,Sylvia boehmi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24282,species,ruvwar2,Chestnut-vented Warbler,Sylvia subcoerulea,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24287,species,leswhi4,Lesser Whitethroat,Sylvia curruca,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24288,issf,leswhi2,Lesser Whitethroat (curruca/blythi),Sylvia curruca curruca/blythi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24291,issf,leswhi3,Lesser Whitethroat (halimodendri),Sylvia curruca halimodendri,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24292,form,leswhi1,Lesser Whitethroat (Lesser),Sylvia curruca curruca/blythi/halimodendri,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24293,issf,smawhi1,Lesser Whitethroat (Desert),Sylvia curruca minula,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24294,form,y01048,Lesser Whitethroat (Lesser/Desert),Sylvia curruca curruca/minula,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24295,issf,marwhi1,Lesser Whitethroat (Gansu),Sylvia curruca margelanica,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24296,form,y01050,Lesser Whitethroat (Desert/Gansu),Sylvia curruca minula/margelanica,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24297,issf,humwhi1,Lesser Whitethroat (Hume's),Sylvia curruca althaea,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24298,form,y00752,Lesser Whitethroat (Lesser/Hume's),Sylvia curruca curruca /althaea,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24299,form,y01049,Lesser Whitethroat (Lesser/Desert/Hume's),Sylvia curruca curruca/minula/althaea,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,leswhi4 +24300,species,yemwar1,Yemen Warbler,Sylvia buryi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24301,species,brnwar1,Brown Parisoma,Sylvia lugens,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24302,issf,brnwar2,Brown Parisoma (Brown),Sylvia lugens [lugens Group],Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,brnwar1 +24307,issf,brnwar3,Brown Parisoma (Gray-vented),Sylvia lugens griseiventris,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,brnwar1 +24308,species,reswar1,Arabian Warbler,Sylvia leucomelaena,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24313,species,weowar2,Western Orphean Warbler,Sylvia hortensis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24316,species,eaowar2,Eastern Orphean Warbler,Sylvia crassirostris,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24320,slash,y00816,Western/Eastern Orphean Warbler,Sylvia hortensis/crassirostris,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24321,species,triwar1,Tristram's Warbler,Sylvia deserticola,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24324,species,cypwar1,Cyprus Warbler,Sylvia melanothorax,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24325,species,menwar1,Menetries's Warbler,Sylvia mystacea,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24326,issf,menwar2,Menetries's Warbler (mystacea),Sylvia mystacea mystacea,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,menwar1 +24327,issf,menwar3,Menetries's Warbler (rubescens/turcmenica),Sylvia mystacea rubescens/turcmenica,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,menwar1 +24330,species,ruewar1,Rüppell's Warbler,Sylvia ruppeli,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24331,species,subwar1,Subalpine Warbler,Sylvia cantillans,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24332,issf,subwar5,Subalpine Warbler (cantillans),Sylvia cantillans cantillans,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,subwar1 +24333,issf,subwar6,Subalpine Warbler (inornata),Sylvia cantillans inornata,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,subwar1 +24334,form,subwar9,Subalpine Warbler (cantillans/inornata),Sylvia cantillans cantillans/inornata,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,subwar1 +24335,issf,subwar7,Subalpine Warbler (albistriata),Sylvia cantillans albistriata,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,subwar1 +24336,species,subwar8,Moltoni's Warbler,Sylvia subalpina,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24337,slash,y00909,Subalpine/Moltoni's Warbler,Sylvia cantillans/subalpina,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24338,species,sarwar1,Sardinian Warbler,Sylvia melanocephala,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24342,species,grewhi1,Greater Whitethroat,Sylvia communis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24347,species,spewar2,Spectacled Warbler,Sylvia conspicillata,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24350,species,marwar1,Marmora's Warbler,Sylvia sarda,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24351,species,darwar1,Dartford Warbler,Sylvia undata,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24355,species,balwar1,Balearic Warbler,Sylvia balearica,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24356,spuh,sylvia1,Sylvia sp.,Sylvia sp.,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24357,spuh,olwwar1,old world warbler sp.,Passeriformes sp. (Old World warbler sp.),Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24358,species,fitmyz1,Fire-tailed Myzornis,Myzornis pyrrhoura,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)","Parrotbills, Wrentit, and Allies", +24359,species,gobful1,Golden-breasted Fulvetta,Lioparus chrysotis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24366,species,yeebab1,Yellow-eyed Babbler,Chrysomma sinense,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24371,species,jerbab1,Jerdon's Babbler,Chrysomma altirostre,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24375,species,rutbab1,Rufous-tailed Babbler,Chrysomma poecilotis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24376,species,speful1,Spectacled Fulvetta,Fulvetta ruficapilla,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24379,species,indful1,Indochinese Fulvetta,Fulvetta danisi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24382,species,chiful1,Chinese Fulvetta,Fulvetta striaticollis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24383,species,ludful1,Ludlow's Fulvetta,Fulvetta ludlowi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24384,species,whbful1,White-browed Fulvetta,Fulvetta vinipectus,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24393,species,taiful1,Taiwan Fulvetta,Fulvetta formosana,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24394,species,sttful1,Gray-hooded Fulvetta,Fulvetta cinereiceps,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24399,species,sttful2,Streak-throated Fulvetta,Fulvetta manipurensis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24402,spuh,fulvet2,Fulvetta sp.,Fulvetta sp.,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24403,species,tarbab1,Tarim Babbler,Rhopophilus albosuperciliaris,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24404,species,beibab1,Beijing Babbler,Rhopophilus pekinensis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24405,species,wrenti,Wrentit,Chamaea fasciata,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24411,species,grepar1,Great Parrotbill,Conostoma aemodium,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24412,species,bropar1,Brown Parrotbill,Cholornis unicolor,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24413,species,thtpar1,Three-toed Parrotbill,Cholornis paradoxus,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24416,species,gyhpar3,Gray-headed Parrotbill,Psittiparus gularis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24423,species,bkhpar1,Black-headed Parrotbill,Psittiparus margaritae,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24424,hybrid,x00815,Gray-headed x Black-headed Parrotbill (hybrid),Psittiparus gularis x margaritae,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24425,species,ruhpar3,White-breasted Parrotbill,Psittiparus ruficeps,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24426,species,ruhpar2,Rufous-headed Parrotbill,Psittiparus bakeri,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24429,species,blbpar2,Black-breasted Parrotbill,Paradoxornis flavirostris,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24430,species,spbpar1,Spot-breasted Parrotbill,Paradoxornis guttaticollis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24431,species,reepar3,Reed Parrotbill,Paradoxornis heudei,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24432,issf,reepar5,Reed Parrotbill (Northern),Paradoxornis heudei polivanovi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,reepar3 +24433,issf,reepar4,Reed Parrotbill (Reed),Paradoxornis heudei heudei,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,reepar3 +24434,species,blbpar3,Pale-billed Parrotbill,Chleuasicus atrosuperciliaris,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24437,species,spepar2,Spectacled Parrotbill,Sinosuthora conspicillata,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24440,species,vitpar1,Vinous-throated Parrotbill,Sinosuthora webbiana,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24447,species,brwpar2,Brown-winged Parrotbill,Sinosuthora brunnea,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24448,issf,bnwpar1,Brown-winged Parrotbill (Yunnan),Sinosuthora brunnea ricketti,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,brwpar2 +24449,issf,bnwpar2,Brown-winged Parrotbill (Brown-winged),Sinosuthora brunnea brunnea/styani,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,brwpar2 +24452,species,astpar1,Ashy-throated Parrotbill,Sinosuthora alphonsiana,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24455,species,gyhpar4,Gray-hooded Parrotbill,Sinosuthora zappeyi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24456,species,rutpar2,Rusty-throated Parrotbill,Sinosuthora przewalskii,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24457,species,fulpar1,Fulvous Parrotbill,Suthora fulvifrons,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24462,species,bltpar1,Black-throated Parrotbill,Suthora nipalensis,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24463,issf,bktpar1,Black-throated Parrotbill (Black-throated),Suthora nipalensis nipalensis/crocotius,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,bltpar1 +24466,issf,bktpar2,Black-throated Parrotbill (Orange-eared),Suthora nipalensis humii,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,bltpar1 +24467,issf,bktpar3,Black-throated Parrotbill (Gray-breasted),Suthora nipalensis poliotis/feae,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,bltpar1 +24470,issf,bktpar4,Black-throated Parrotbill (Buff-breasted),Suthora nipalensis ripponi/patriciae,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,bltpar1 +24473,issf,bktpar5,Black-throated Parrotbill (Black-eared),Suthora nipalensis beaulieu/kamoli,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",,bltpar1 +24476,species,golpar2,Golden Parrotbill,Suthora verreauxi,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24481,species,shtpar3,Short-tailed Parrotbill,Neosuthora davidiana,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24485,spuh,parrot1,parrotbill sp.,Paradoxornithidae sp.,Passeriformes,"Sylviidae (Sylviid Warblers, Parrotbills, and Allies)",, +24486,species,stryuh1,Striated Yuhina,Yuhina castaniceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)","White-eyes, Yuhinas, and Allies", +24491,species,indyuh1,Indochinese Yuhina,Yuhina torqueola,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24492,species,chcyuh1,Chestnut-crested Yuhina,Yuhina everetti,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24493,species,whnyuh1,White-naped Yuhina,Yuhina bakeri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24494,species,whiyuh1,Whiskered Yuhina,Yuhina flavicollis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24501,species,buryuh1,Burmese Yuhina,Yuhina humilis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24502,species,sttyuh1,Stripe-throated Yuhina,Yuhina gularis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24507,species,whcyuh1,White-collared Yuhina,Yuhina diademata,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24508,species,ruvyuh1,Rufous-vented Yuhina,Yuhina occipitalis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24511,species,taiyuh1,Taiwan Yuhina,Yuhina brunneiceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24512,species,blcyuh1,Black-chinned Yuhina,Yuhina nigrimenta,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24516,spuh,yuhina1,yuhina sp.,Yuhina sp.,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24517,species,chfbab1,Chestnut-faced Babbler,Zosterornis whiteheadi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24520,species,lusbab1,Luzon Striped-Babbler,Zosterornis striatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24521,species,pasbab2,Panay Striped-Babbler,Zosterornis latistriatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24522,species,nesbab1,Negros Striped-Babbler,Zosterornis nigrorum,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24523,species,pasbab1,Palawan Striped-Babbler,Zosterornis hypogrammicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24524,species,jgtwhe1,Javan Gray-throated White-eye,Lophozosterops javanicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24528,species,sthwhe1,Streak-headed White-eye,Lophozosterops squamiceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24535,species,gyhwhe1,Gray-hooded White-eye,Lophozosterops pinaiae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24536,species,minwhe1,Mindanao White-eye,Lophozosterops goodfellowi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24540,species,whbwhe1,White-browed White-eye,Lophozosterops superciliaris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24543,species,dacwhe1,Dark-crowned White-eye,Lophozosterops dohertyi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24546,species,pyweye1,Pygmy White-eye,Oculocincta squamifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24547,species,flowhe1,Flores White-eye,Heleia crassirostris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24548,species,timwhe1,Timor White-eye,Heleia muelleri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24549,species,mouble1,Mountain Black-eye,Chlorocharis emiliae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24554,species,beweye1,Bare-eyed White-eye,Woodfordia superciliosa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24555,species,saweye2,Sanford's White-eye,Woodfordia lacertosa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24556,species,giweye1,Giant White-eye,Megazosterops palauensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24557,species,trweye1,Truk White-eye,Rukia ruki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24558,species,lbweye2,Long-billed White-eye,Rukia longirostra,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24559,species,goweye1,Golden White-eye,Cleptornis marchei,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24560,species,bonhon1,Bonin White-eye,Apalopteron familiare,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24563,species,rufwhe1,Rufescent White-eye,Tephrozosterops stalkeri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24564,species,gocbab1,Golden-crowned Babbler,Sterrhoptilus dennistouni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24565,species,blcbab3,Black-crowned Babbler,Sterrhoptilus nigrocapitatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24569,species,rucbab3,Rusty-crowned Babbler,Sterrhoptilus capitalis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24573,species,fltbab1,Flame-templed Babbler,Dasycrotapha speciosa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24574,species,vispyb1,Visayan Pygmy-Babbler,Dasycrotapha pygmaea,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24575,species,pygbab1,Mindanao Pygmy-Babbler,Dasycrotapha plateni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24576,species,marwhe1,Marianne White-eye,Zosterops semiflavus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24577,species,coweye1,Comoro White-eye,Zosterops mouroniensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24578,species,reuwhe1,Reunion White-eye,Zosterops olivaceus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24579,species,mauwhe1,Mauritius White-eye,Zosterops chloronothos,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24580,species,maswhe2,Reunion Gray White-eye,Zosterops borbonicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24581,species,maswhe3,Mauritius Gray White-eye,Zosterops mauritianus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24582,species,wbweye1,Abyssinian White-eye,Zosterops abyssinicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24583,issf,whbwhe2,Abyssinian White-eye (Abyssinian),Zosterops abyssinicus [abyssinicus Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,wbweye1 +24587,issf,abywhe1,Abyssinian White-eye (Socotra),Zosterops abyssinicus socotranus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,wbweye1 +24588,species,satwhe1,Principe White-eye,Zosterops ficedulinus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24589,species,anweye1,Annobon White-eye,Zosterops griseovirescens,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24590,species,satwhe2,Sao Tome White-eye,Zosterops feae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24591,species,blcspe1,Black-capped Speirops,Zosterops lugubris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24592,species,prispe1,Principe Speirops,Zosterops leucophaeus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24593,species,brrwhe9,Mbulu White-eye,Zosterops mbuluensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24594,species,whbwhe3,Pale White-eye,Zosterops flavilateralis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24597,species,seywhe1,Seychelles White-eye,Zosterops modestus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24598,species,mohwhe1,Moheli White-eye,Zosterops comorensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24599,species,madwhe1,Madagascar White-eye,Zosterops maderaspatanus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24603,species,kirwhe1,Kirk's White-eye,Zosterops kirki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24604,species,maywhe1,Mayotte White-eye,Zosterops mayottensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24605,species,aldwhe1,Aldabra White-eye,Zosterops aldabrensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24606,species,anjwhe1,Anjouan White-eye,Zosterops anjuanensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24607,species,brrwhe4,Taita White-eye,Zosterops silvanus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24608,species,capwhe6,Orange River White-eye,Zosterops pallidus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24609,species,brrwhe10,South Pare White-eye,Zosterops winifredae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24610,species,capwhe2,Cape White-eye,Zosterops virens,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24611,issf,capwhe4,Cape White-eye (Cape),Zosterops virens capensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe2 +24612,issf,capwhe5,Cape White-eye (Green),Zosterops virens virens,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe2 +24613,hybrid,x00968,Orange River x Cape White-eye (hybrid),Zosterops pallidus x virens,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24614,slash,y01154,Orange River/Cape White-eye,Zosterops pallidus/virens,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24615,species,camspe1,Cameroon Speirops,Zosterops melanocephalus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24616,species,fepspe1,Bioko Speirops,Zosterops brunneus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24617,species,heuwhe2,Heuglin's White-eye,Zosterops poliogastrus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24618,issf,brrwhe6,Heuglin's White-eye (Ethiopian),Zosterops poliogastrus poliogastrus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,heuwhe2 +24619,issf,brrwhe7,Heuglin's White-eye (Kaffa),Zosterops poliogastrus kaffensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,heuwhe2 +24620,issf,brrwhe5,Heuglin's White-eye (Kulal),Zosterops poliogastrus kulalensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,heuwhe2 +24621,species,brrwhe3,Kikuyu White-eye,Zosterops kikuyuensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24622,species,brrwhe8,Kilimanjaro White-eye,Zosterops eurycricotus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24623,spuh,brrwhe1,broad-ringed white-eye sp.,Zosterops sp. (Broad-ringed White-eye complex),Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24624,species,ayweye1,African Yellow White-eye,Zosterops senegalensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24625,issf,afywhe1,African Yellow White-eye (Forest),Zosterops senegalensis stenocricotus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,ayweye1 +24626,issf,afywhe2,African Yellow White-eye (African Yellow),Zosterops senegalensis [senegalensis Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,ayweye1 +24635,issf,afywhe3,African Yellow White-eye (Green),Zosterops senegalensis [stuhlmanni Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,ayweye1 +24639,issf,afywhe4,African Yellow White-eye (Southern),Zosterops senegalensis anderssoni/stierlingi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,ayweye1 +24642,species,peweye1,Pemba White-eye,Zosterops vaughani,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24643,species,ceywhe1,Sri Lanka White-eye,Zosterops ceylonensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24644,species,cfweye1,Chestnut-flanked White-eye,Zosterops erythropleurus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24645,species,indwhe1,Indian White-eye,Zosterops palpebrosus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24653,species,humwhe1,Hume's White-eye,Zosterops auriventer,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24658,species,sanwhe2,Sangkar White-eye,Zosterops melanurus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24661,form,merwhe1,Meratus White-eye (undescribed form),Zosterops [undescribed Meratus form],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24662,species,warwhe1,Warbling White-eye,Zosterops japonicus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24678,species,swiwhe1,Swinhoe's White-eye,Zosterops simplex,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24684,slash,y01105,Indian/Swinhoe's White-eye,Zosterops palpebrosus/simplex,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24685,slash,y01155,Hume's/Swinhoe's White-eye,Zosterops auriventer/simplex,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24686,species,loweye2,Lowland White-eye,Zosterops meyeni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24689,species,brweye1,Bridled White-eye,Zosterops conspicillatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24690,issf,briwhe1,Bridled White-eye (Bridled),Zosterops conspicillatus conspicillatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brweye1 +24691,issf,briwhe2,Bridled White-eye (Saipan),Zosterops conspicillatus saypani,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,brweye1 +24692,species,rotwhe1,Rota White-eye,Zosterops rotensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24693,species,ciweye1,Caroline Islands White-eye,Zosterops semperi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24697,species,plweye1,Plain White-eye,Zosterops hypolais,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24698,species,bkcwhe1,Black-capped White-eye,Zosterops atricapilla,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24701,species,evweye1,Everett's White-eye,Zosterops everetti,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24708,species,yelwhe1,Yellowish White-eye,Zosterops nigrorum,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24717,species,ciweye2,Christmas Island White-eye,Zosterops natalis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24718,species,jaweye2,Javan White-eye,Zosterops flavus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24719,species,yebwhe1,Lemon-bellied White-eye,Zosterops chloris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24720,issf,lebwhe1,Lemon-bellied White-eye (Lemon-bellied),Zosterops chloris [chloris Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,yebwhe1 +24725,issf,lebwhe2,Lemon-bellied White-eye (Wakatobi),Zosterops chloris flavissimus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,yebwhe1 +24726,species,asbwhe1,Ashy-bellied White-eye,Zosterops citrinella,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24731,species,grkwhe1,Great Kai White-eye,Zosterops grayi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24732,species,likwhe1,Little Kai White-eye,Zosterops uropygialis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24733,species,sulwhe1,Sulawesi White-eye,Zosterops consobrinorum,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24734,form,wawwhe1,Wangi-Wangi White-eye (undescribed form),Zosterops [undescribed Wangi-Wangi form],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24735,species,bkrwhe1,Black-ringed White-eye,Zosterops anomalus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24736,species,ysweye1,Yellow-spectacled White-eye,Zosterops wallacei,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24737,species,bcweye2,Black-crowned White-eye,Zosterops atrifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24742,species,togwhe1,Togian White-eye,Zosterops somadikartai,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24743,species,sanwhe1,Sangihe White-eye,Zosterops nehrkorni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24744,species,serwhe1,Seram White-eye,Zosterops stalkeri,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24745,species,crtwhe1,Cream-throated White-eye,Zosterops atriceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24746,issf,crtwhe2,Cream-throated White-eye (Morotai),Zosterops atriceps dehaani,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,crtwhe1 +24747,issf,crtwhe3,Cream-throated White-eye (Halmahera),Zosterops atriceps fuscifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,crtwhe1 +24748,issf,crtwhe4,Cream-throated White-eye (Bacan),Zosterops atriceps atriceps,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,crtwhe1 +24749,form,obiwhe1,Obi White-eye (undescribed form),Zosterops [undescribed Obi form],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24750,species,bfweye1,Black-fronted White-eye,Zosterops minor,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24751,issf,bkfwhe1,Black-fronted White-eye (Black-fronted),Zosterops minor [chrysolaemus Group],Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,bfweye1 +24756,issf,bkfwhe2,Black-fronted White-eye (Green-fronted),Zosterops minor minor/rothschildi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,bfweye1 +24759,species,wtweye1,Tagula White-eye,Zosterops meeki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24760,species,bhweye1,Black-headed White-eye,Zosterops hypoxanthus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24764,species,biweye1,Biak White-eye,Zosterops mysorensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24765,species,capwhe3,Capped White-eye,Zosterops fuscicapilla,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24766,issf,capwhe7,Capped White-eye (Capped),Zosterops fuscicapilla fuscicapilla,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe3 +24767,issf,capwhe8,Capped White-eye (Oya Tabu),Zosterops fuscicapilla crookshanki,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,capwhe3 +24768,species,burwhe1,Buru White-eye,Zosterops buruensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24769,species,ambwhe1,Ambon White-eye,Zosterops kuehni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24770,species,ngweye1,New Guinea White-eye,Zosterops novaeguineae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24778,species,ayweye3,Australian Yellow White-eye,Zosterops luteus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24781,species,loweye1,Louisiade White-eye,Zosterops griseotinctus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24786,species,reweye1,Rennell White-eye,Zosterops rennellianus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24787,species,baweye2,Banded White-eye,Zosterops vellalavella,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24788,species,gaweye1,Ganongga White-eye,Zosterops splendidus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24789,species,spweye2,Splendid White-eye,Zosterops luteirostris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24790,species,ytweye1,Yellow-throated White-eye,Zosterops metcalfii,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24793,species,soiwhe1,Solomons White-eye,Zosterops kulambangrae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24794,issf,soiwhe2,Solomons White-eye (Solomons),Zosterops kulambangrae kulambangrae,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,soiwhe1 +24795,issf,soiwhe3,Solomons White-eye (Rendova),Zosterops kulambangrae tetiparius/paradoxus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,soiwhe1 +24798,species,kulwhe1,Kolombangara White-eye,Zosterops murphyi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24799,species,gytwhe1,Gray-throated White-eye,Zosterops ugiensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24800,issf,gytwhe2,Gray-throated White-eye (Bougainville),Zosterops ugiensis hamlini,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,gytwhe1 +24801,issf,gytwhe3,Gray-throated White-eye (Gray-throated),Zosterops ugiensis ugiensis/oblitus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",,gytwhe1 +24804,species,maweye2,Malaita White-eye,Zosterops stresemanni,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24805,species,sacwhe1,Santa Cruz White-eye,Zosterops sanctaecrucis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24806,species,vanwhe1,Vanikoro White-eye,Zosterops gibbsi,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24807,species,llweye1,Large Lifou White-eye,Zosterops inornatus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24808,species,gnbwhe1,Green-backed White-eye,Zosterops xanthochroa,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24809,species,slweye1,Small Lifou White-eye,Zosterops minutus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24810,species,sbweye1,Slender-billed White-eye,Zosterops tenuirostris,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24811,species,robwhe1,Robust White-eye,Zosterops strenuus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24812,species,wcweye1,White-chested White-eye,Zosterops albogularis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24813,species,laweye1,Layard's White-eye,Zosterops explorator,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24814,species,silver3,Silvereye,Zosterops lateralis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24832,slash,y00817,Layard's White-eye/Silvereye,Zosterops explorator/lateralis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24833,species,yfweye1,Yellow-fronted White-eye,Zosterops flavifrons,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24841,species,saweye1,Samoan White-eye,Zosterops samoensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24842,species,duweye1,Dusky White-eye,Zosterops finschii,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24843,species,pohwhe1,Pohnpei White-eye,Zosterops ponapensis,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24844,species,koswhe1,Kosrae White-eye,Zosterops cinereus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24845,species,yapwhe1,Yap White-eye,Zosterops oleagineus,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24846,spuh,zoster1,Zosterops sp.,Zosterops sp.,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24847,spuh,white-1,white-eye sp.,Zosteropidae sp.,Passeriformes,"Zosteropidae (White-eyes, Yuhinas, and Allies)",, +24848,species,chcbab1,Chestnut-capped Babbler,Timalia pileata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)","Tree-Babblers, Scimitar-Babblers, and Allies", +24855,species,sttbab1,Pin-striped Tit-Babbler,Mixornis gularis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24856,issf,pistib1,Pin-striped Tit-Babbler (Pin-striped),Mixornis gularis [gularis Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,sttbab1 +24870,issf,pistib2,Pin-striped Tit-Babbler (Palawan),Mixornis gularis woodi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,sttbab1 +24871,species,bostib1,Bold-striped Tit-Babbler,Mixornis bornensis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24872,issf,bostib2,Bold-striped Tit-Babbler (Bold-striped),Mixornis bornensis [bornensis Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,bostib1 +24880,issf,bostib3,Bold-striped Tit-Babbler (Mapun),Mixornis bornensis cagayanensis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,bostib1 +24881,species,gyctib1,Gray-cheeked Tit-Babbler,Mixornis flavicollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24882,issf,gyctib2,Gray-cheeked Tit-Babbler (Gray-cheeked),Mixornis flavicollis flavicollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,gyctib1 +24883,issf,gyctib3,Gray-cheeked Tit-Babbler (Kangean),Mixornis flavicollis prillwitzi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,gyctib1 +24884,species,gyftib1,Gray-faced Tit-Babbler,Mixornis kelleyi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24885,slash,y01051,Pin-striped/Gray-faced Tit-Babbler,Mixornis gularis/kelleyi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24886,species,tabbab1,Tawny-bellied Babbler,Dumetia hyperythra,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24890,species,dafbab1,Dark-fronted Babbler,Rhopocichla atriceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24891,issf,dafbab2,Dark-fronted Babbler (atriceps),Rhopocichla atriceps atriceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 +24892,issf,dafbab3,Dark-fronted Babbler (bourdilloni),Rhopocichla atriceps bourdilloni,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 +24893,issf,dafbab4,Dark-fronted Babbler (siccata),Rhopocichla atriceps siccata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 +24894,issf,dafbab5,Dark-fronted Babbler (nigrifrons),Rhopocichla atriceps nigrifrons,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,dafbab1 +24895,species,brtbab1,Brown Tit-Babbler,Macronus striaticeps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24900,species,fbtbab1,Fluffy-backed Tit-Babbler,Macronus ptilosus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24905,species,golbab1,Golden Babbler,Cyanoderma chrysaeum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24912,species,chwbab1,Chestnut-winged Babbler,Cyanoderma erythropterum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24913,issf,chwbab2,Chestnut-winged Babbler (Chestnut-winged),Cyanoderma erythropterum [erythropterum Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,chwbab1 +24917,issf,chwbab3,Chestnut-winged Babbler (Gray-hooded),Cyanoderma erythropterum bicolor/rufum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,chwbab1 +24920,species,crcbab1,Crescent-chested Babbler,Cyanoderma melanothorax,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24926,species,blcbab2,Black-chinned Babbler,Cyanoderma pyrrhops,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24927,species,rucbab1,Rufous-capped Babbler,Cyanoderma ruficeps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24935,species,bucbab1,Buff-chested Babbler,Cyanoderma ambiguum,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24940,species,rufbab2,Rufous-fronted Babbler,Cyanoderma rufifrons,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24946,spuh,cyanod1,Cyanoderma sp.,Cyanoderma sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24947,species,rtwbab1,Rufous-throated Wren-Babbler,Spelaeornis caudatus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24948,species,miswrb1,Rusty-throated Wren-Babbler,Spelaeornis badeigularis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24949,species,bwwbab1,Bar-winged Wren-Babbler,Spelaeornis troglodytoides,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24955,species,ltwbab1,Long-tailed Wren-Babbler,Spelaeornis chocolatinus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24956,species,chhwrb1,Chin Hills Wren-Babbler,Spelaeornis oatesi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24957,species,gybwrb1,Gray-bellied Wren-Babbler,Spelaeornis reptatus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24958,species,patwrb1,Pale-throated Wren-Babbler,Spelaeornis kinneari,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24959,species,tbwbab1,Tawny-breasted Wren-Babbler,Spelaeornis longicaudatus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24960,species,rbsbab1,Red-billed Scimitar-Babbler,Pomatorhinus ochraceiceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24965,species,cbsbab2,Coral-billed Scimitar-Babbler,Pomatorhinus ferruginosus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24966,issf,cobscb1,Coral-billed Scimitar-Babbler (Black-crowned),Pomatorhinus ferruginosus ferruginosus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab2 +24967,issf,cobscb2,Coral-billed Scimitar-Babbler (Phayre's),Pomatorhinus ferruginosus phayrei/stanfordi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab2 +24970,issf,cobscb3,Coral-billed Scimitar-Babbler (albogularis Group),Pomatorhinus ferruginosus [albogularis Group],Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab2 +24974,slash,y01110,Red-billed/Coral-billed Scimitar-Babbler,Pomatorhinus ochraceiceps/ferruginosus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24975,species,sbsbab1,Slender-billed Scimitar-Babbler,Pomatorhinus superciliaris,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24980,species,sbsbab3,Streak-breasted Scimitar-Babbler,Pomatorhinus ruficollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24994,species,taiscb1,Taiwan Scimitar-Babbler,Pomatorhinus musicus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +24995,species,insbab1,Indian Scimitar-Babbler,Pomatorhinus horsfieldii,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25000,species,srlscb1,Sri Lanka Scimitar-Babbler,Pomatorhinus melanurus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25001,species,wbsbab1,White-browed Scimitar-Babbler,Pomatorhinus schisticeps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25015,slash,y01119,Streak-breasted/White-browed Scimitar-Babbler,Pomatorhinus ruficollis/schisticeps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25016,species,cbsbab1,Chestnut-backed Scimitar-Babbler,Pomatorhinus montanus,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25017,issf,chbscb2,Chestnut-backed Scimitar-Babbler (Sunda),Pomatorhinus montanus bornensis/occidentalis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab1 +25020,issf,chbscb1,Chestnut-backed Scimitar-Babbler (Javan),Pomatorhinus montanus montanus/ottolanderi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",,cbsbab1 +25023,spuh,pomato1,Pomatorhinus sp.,Pomatorhinus sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25024,species,lasbab1,Large Scimitar-Babbler,Megapomatorhinus hypoleucos,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25030,species,sbsbab2,Black-necklaced Scimitar-Babbler,Megapomatorhinus erythrocnemis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25031,species,rcsbab1,Rusty-cheeked Scimitar-Babbler,Megapomatorhinus erythrogenys,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25037,species,spbscb1,Spot-breasted Scimitar-Babbler,Megapomatorhinus mcclellandi,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25038,species,bksscb1,Black-streaked Scimitar-Babbler,Megapomatorhinus gravivox,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25045,species,gysscb1,Gray-sided Scimitar-Babbler,Megapomatorhinus swinhoei,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25048,species,whbbab2,White-breasted Babbler,Stachyris grammiceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25049,species,bltbab1,Black-throated Babbler,Stachyris nigricollis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25050,species,chrbab1,Chestnut-rumped Babbler,Stachyris maculata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25055,species,gytbab1,Gray-throated Babbler,Stachyris nigriceps,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25069,species,gyhbab1,Gray-headed Babbler,Stachyris poliocephala,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25070,species,whnbab1,White-necked Babbler,Stachyris leucotis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25074,species,whbbab1,White-bibbed Babbler,Stachyris thoracica,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25077,species,sntbab1,Snowy-throated Babbler,Stachyris oglei,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25078,species,spnbab1,Spot-necked Babbler,Stachyris strialata,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25086,species,soobab1,Sooty Babbler,Stachyris herberti,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25087,species,nonbab1,Nonggang Babbler,Stachyris nonggangensis,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25088,species,wbwbab1,Blackish-breasted Babbler,Stachyris humei,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25089,species,chbbab1,Chevron-breasted Babbler,Stachyris roberti,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25090,spuh,stachy1,Stachyris sp.,Stachyris sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25091,spuh,babble1,Timaliidae sp.,Timaliidae sp.,Passeriformes,"Timaliidae (Tree-Babblers, Scimitar-Babblers, and Allies)",, +25092,species,palbab1,Palawan Babbler,Malacopteron palawanense,Passeriformes,Pellorneidae (Ground Babblers and Allies),Ground Babblers and Allies, +25093,species,moubab1,Moustached Babbler,Malacopteron magnirostre,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25096,species,socbab1,Sooty-capped Babbler,Malacopteron affine,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25100,species,sccbab1,Scaly-crowned Babbler,Malacopteron cinereum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25106,species,rucbab2,Rufous-crowned Babbler,Malacopteron magnum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25109,species,gybbab1,Gray-breasted Babbler,Malacopteron albogulare,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25112,spuh,malaco1,Malacopteron sp.,Malacopteron sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25113,species,whhbab2,White-hooded Babbler,Gampsorhynchus rufulus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25114,species,colbab1,Collared Babbler,Gampsorhynchus torquatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25117,species,yetful1,Yellow-throated Fulvetta,Schoeniparus cinereus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25118,species,ruwful1,Rufous-winged Fulvetta,Schoeniparus castaneceps,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25123,species,bkcful1,Black-crowned Fulvetta,Schoeniparus klossi,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25124,species,rutful1,Rufous-throated Fulvetta,Schoeniparus rufogularis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25131,species,dusful1,Dusky Fulvetta,Schoeniparus brunneus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25136,species,rucful1,Rusty-capped Fulvetta,Schoeniparus dubius,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25142,spuh,fulvet1,Schoeniparus sp.,Schoeniparus sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25143,species,ruvpri1,Rufous-vented Grass Babbler,Laticilla burnesii,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25146,species,swapri1,Swamp Grass Babbler,Laticilla cinerascens,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25147,species,broill1,Brown Illadopsis,Illadopsis fulvescens,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25148,issf,brnill1,Brown Illadopsis (Moloney's),Illadopsis fulvescens moloneyana/iboensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,broill1 +25151,issf,brnill2,Brown Illadopsis (Brown),Illadopsis fulvescens [fulvescens Group],Passeriformes,Pellorneidae (Ground Babblers and Allies),,broill1 +25156,species,pabill1,Pale-breasted Illadopsis,Illadopsis rufipennis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25157,issf,pabill2,Pale-breasted Illadopsis (Pale-breasted),Illadopsis rufipennis rufipennis/extrema,Passeriformes,Pellorneidae (Ground Babblers and Allies),,pabill1 +25160,issf,pabill3,Pale-breasted Illadopsis (Gray-breasted),Illadopsis rufipennis distans/pugensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,pabill1 +25163,species,mouill1,Mountain Illadopsis,Illadopsis pyrrhoptera,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25166,species,blaill1,Blackcap Illadopsis,Illadopsis cleaveri,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25167,issf,blaill2,Blackcap Illadopsis (Western),Illadopsis cleaveri cleaveri/johnsoni,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blaill1 +25170,issf,blaill3,Blackcap Illadopsis (Eastern),Illadopsis cleaveri batesi/marchanti,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blaill1 +25173,issf,blaill4,Blackcap Illadopsis (Bioko),Illadopsis cleaveri poensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blaill1 +25174,species,scbill1,Scaly-breasted Illadopsis,Illadopsis albipectus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25175,species,ruwill1,Rufous-winged Illadopsis,Illadopsis rufescens,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25176,species,puvill1,Puvel's Illadopsis,Illadopsis puveli,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25179,species,thrbab1,Thrush Babbler,Illadopsis turdina,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25180,issf,thrbab2,Thrush Babbler (Rufous-tailed),Illadopsis turdina harterti,Passeriformes,Pellorneidae (Ground Babblers and Allies),,thrbab1 +25181,issf,thrbab3,Thrush Babbler (Thrush),Illadopsis turdina turdina,Passeriformes,Pellorneidae (Ground Babblers and Allies),,thrbab1 +25182,issf,thrbab4,Thrush Babbler (Olive),Illadopsis turdina upembae,Passeriformes,Pellorneidae (Ground Babblers and Allies),,thrbab1 +25183,spuh,illado1,Illadopsis sp.,Illadopsis sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25184,species,putbab1,Puff-throated Babbler,Pellorneum ruficeps,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25211,species,blcbab1,Black-capped Babbler,Pellorneum capistratum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25212,issf,bkcbab1,Black-capped Babbler (Black-capped),Pellorneum capistratum [nigrocapitatum Group],Passeriformes,Pellorneidae (Ground Babblers and Allies),,blcbab1 +25217,issf,bkcbab2,Black-capped Babbler (Rufous-browed),Pellorneum capistratum capistratum,Passeriformes,Pellorneidae (Ground Babblers and Allies),,blcbab1 +25218,species,bncbab1,Brown-capped Babbler,Pellorneum fuscocapillus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25222,species,marbab2,Marsh Babbler,Pellorneum palustre,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25223,species,sptbab1,Spot-throated Babbler,Pellorneum albiventre,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25228,species,bubbab1,Buff-breasted Babbler,Pellorneum tickelli,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25234,species,sumbab1,Sumatran Babbler,Pellorneum buettikoferi,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25235,species,tembab1,Temminck's Babbler,Pellorneum pyrrogenys,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25241,species,shtbab1,Short-tailed Babbler,Pellorneum malaccense,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25246,species,ashbab1,Ashy-headed Babbler,Pellorneum cinereiceps,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25247,species,whcbab1,White-chested Babbler,Pellorneum rostratum,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25250,species,sulbab1,Sulawesi Babbler,Pellorneum celebense,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25255,species,ferbab1,Ferruginous Babbler,Pellorneum bicolor,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25256,species,stwbab3,Striped Wren-Babbler,Kenopia striata,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25257,species,eywbab1,Eyebrowed Wren-Babbler,Napothera epilepidota,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25271,species,stsbab1,Short-tailed Scimitar-Babbler,Napothera danjoui,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25274,species,namscb1,Naung Mung Scimitar-Babbler,Napothera naungmungensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25275,species,lbwbab1,Long-billed Wren-Babbler,Napothera malacoptila,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25276,species,whtwrb1,White-throated Wren-Babbler,Napothera pasquieri,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25277,species,sumwrb1,Sumatran Wren-Babbler,Napothera albostriata,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25278,species,bowbab1,Bornean Wren-Babbler,Ptilocichla leucogrammica,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25279,species,stwbab2,Striated Wren-Babbler,Ptilocichla mindanensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25284,species,fawbab1,Falcated Wren-Babbler,Ptilocichla falcata,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25285,species,abbbab1,Abbott's Babbler,Turdinus abbotti,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25294,species,horbab2,Horsfield's Babbler,Turdinus sepiarius,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25295,issf,horbab1,Horsfield's Babbler (Hartert's),Turdinus sepiarius tardinatus/barussanus,Passeriformes,Pellorneidae (Ground Babblers and Allies),,horbab2 +25298,issf,horbab3,Horsfield's Babbler (Horsfield's),Turdinus sepiarius sepiarius,Passeriformes,Pellorneidae (Ground Babblers and Allies),,horbab2 +25299,issf,horbab4,Horsfield's Babbler (Salvadori's),Turdinus sepiarius rufiventris/harterti,Passeriformes,Pellorneidae (Ground Babblers and Allies),,horbab2 +25302,species,blbbab1,Black-browed Babbler,Turdinus perspicillatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25303,species,lawbab1,Large Wren-Babbler,Turdinus macrodactylus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25307,species,rbwbab1,Rusty-breasted Wren-Babbler,Turdinus rufipectus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25308,species,btwbab1,Black-throated Wren-Babbler,Turdinus atrigularis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25309,species,mawbab1,Marbled Wren-Babbler,Turdinus marmoratus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25312,species,liwbab1,Limestone Wren-Babbler,Turdinus crispifrons,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25313,issf,limwrb1,Limestone Wren-Babbler (Grayish),Turdinus crispifrons crispifrons/annamensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),,liwbab1 +25316,issf,limwrb2,Limestone Wren-Babbler (Rufous),Turdinus crispifrons calcicola,Passeriformes,Pellorneidae (Ground Babblers and Allies),,liwbab1 +25317,species,stwbab1,Streaked Wren-Babbler,Turdinus brevicaudatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25326,species,mowbab1,Mountain Wren-Babbler,Turdinus crassus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25327,species,rurgra1,Indian Grassbird,Graminicola bengalensis,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25328,species,chigra1,Chinese Grassbird,Graminicola striatus,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25331,spuh,pellor1,Pellorneidae sp.,Pellorneidae sp.,Passeriformes,Pellorneidae (Ground Babblers and Allies),, +25332,species,gofful2,Gold-fronted Fulvetta,Alcippe variegaticeps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),Laughingthrushes and Allies, +25333,species,broful1,Brown Fulvetta,Alcippe brunneicauda,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25336,species,brcful1,Brown-cheeked Fulvetta,Alcippe poioicephala,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25345,species,gycful1,Morrison's Fulvetta,Alcippe morrisonia,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25346,species,gycful4,Yunnan Fulvetta,Alcippe fratercula,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25349,species,gycful3,David's Fulvetta,Alcippe davidi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25352,species,gycful5,Huet's Fulvetta,Alcippe hueti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25355,species,javful1,Javan Fulvetta,Alcippe pyrrhoptera,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25356,species,mouful1,Mountain Fulvetta,Alcippe peracensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25359,species,nepful1,Nepal Fulvetta,Alcippe nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25363,species,bkbful1,Black-browed Fulvetta,Alcippe grotei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25366,slash,y00653,Mountain/Black-browed Fulvetta,Alcippe peracensis/grotei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25367,spuh,alcipp1,Alcippe sp.,Alcippe sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25368,species,strlau2,Striated Laughingthrush,Grammatoptila striata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25373,species,cutia1,Himalayan Cutia,Cutia nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25377,species,viecut1,Vietnamese Cutia,Cutia legalleni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25380,species,spibab1,Spiny Babbler,Turdoides nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25381,species,irabab1,Iraq Babbler,Turdoides altirostris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25382,species,combab1,Afghan Babbler,Turdoides huttoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25385,species,combab3,Common Babbler,Turdoides caudata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25388,species,strbab1,Striated Babbler,Turdoides earlei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25391,slash,y01072,Common/Striated Babbler,Turdoides caudata/earlei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25392,species,whtbab1,White-throated Babbler,Turdoides gularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25393,species,slbbab1,Slender-billed Babbler,Turdoides longirostris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25394,species,lagbab2,Large Gray Babbler,Turdoides malcolmi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25395,species,arabab1,Arabian Babbler,Turdoides squamiceps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25399,species,fulcha1,Fulvous Chatterer,Turdoides fulva,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25404,species,scacha1,Scaly Chatterer,Turdoides aylmeri,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25409,species,rufcha2,Rufous Chatterer,Turdoides rubiginosa,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25414,species,rufbab3,Rufous Babbler,Turdoides subrufa,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25417,species,junbab2,Jungle Babbler,Turdoides striata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25418,issf,junbab1,Jungle Babbler (Jungle),Turdoides striata [striata Group],Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,junbab2 +25423,issf,junbab3,Jungle Babbler (Black-winged),Turdoides striata somervillei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,junbab2 +25424,species,orbbab1,Orange-billed Babbler,Turdoides rufescens,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25425,species,yebbab1,Yellow-billed Babbler,Turdoides affinis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25428,slash,y00818,Jungle/Yellow-billed Babbler,Turdoides striata/affinis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25429,species,blabab2,Blackcap Babbler,Turdoides reinwardtii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25430,issf,blabab1,Blackcap Babbler (Blackcap),Turdoides reinwardtii reinwardtii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blabab2 +25431,issf,blabab3,Blackcap Babbler (Dusky-throated),Turdoides reinwardtii stictilaema,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blabab2 +25432,species,dusbab2,Dusky Babbler,Turdoides tenebrosa,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25433,species,bklbab1,Black-lored Babbler,Turdoides sharpei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25434,issf,bklbab2,Black-lored Babbler (Sharpe's),Turdoides sharpei sharpei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bklbab1 +25435,issf,bklbab3,Black-lored Babbler (Nanyuki),Turdoides sharpei vepres,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bklbab1 +25436,species,harbab1,Hartlaub's Babbler,Turdoides hartlaubii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25439,species,bkfbab1,Black-faced Babbler,Turdoides melanops,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25442,species,scabab2,Scaly Babbler,Turdoides squamulata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25446,species,whrbab2,White-rumped Babbler,Turdoides leucopygia,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25452,species,sopbab1,Southern Pied-Babbler,Turdoides bicolor,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25453,species,norpib1,Northern Pied-Babbler,Turdoides hypoleuca,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25456,species,hipbab1,Hinde's Pied-Babbler,Turdoides hindei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25457,species,crebab1,Cretzschmar's Babbler,Turdoides leucocephala,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25458,species,brobab1,Brown Babbler,Turdoides plebejus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25462,species,armbab1,Arrow-marked Babbler,Turdoides jardineii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25469,species,bacbab1,Bare-cheeked Babbler,Turdoides gymnogenys,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25470,species,wtmbab1,White-throated Mountain-Babbler,Turdoides gilberti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25471,species,rcmbab1,Red-collared Mountain-Babbler,Turdoides rufocincta,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25472,species,chmbab1,Chapin's Mountain-Babbler,Turdoides chapini,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25476,species,capbab1,Capuchin Babbler,Turdoides atripennis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25477,issf,capbab2,Capuchin Babbler (Gray-hooded),Turdoides atripennis atripennis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,capbab1 +25478,issf,capbab4,Capuchin Babbler (Black-crowned),Turdoides atripennis rubiginosus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,capbab1 +25479,issf,capbab3,Capuchin Babbler (Brown-throated),Turdoides atripennis bohndorffi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,capbab1 +25480,spuh,turdoi1,Turdoides sp.,Turdoides sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25481,species,ashlau1,Ashy-headed Laughingthrush,Garrulax cinereifrons,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25482,species,sunlau1,Sunda Laughingthrush,Garrulax palliatus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25485,species,ruflau1,Rufous-fronted Laughingthrush,Garrulax rufifrons,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25488,species,maslau1,Masked Laughingthrush,Garrulax perspicillatus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25489,species,whclau2,White-crested Laughingthrush,Garrulax leucolophus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25494,species,sumlau1,Sumatran Laughingthrush,Garrulax bicolor,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25495,species,lenlau1,Lesser Necklaced Laughingthrush,Garrulax monileger,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25506,species,blalau1,Black Laughingthrush,Garrulax lugubris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25507,species,bahlau1,Bare-headed Laughingthrush,Garrulax calvus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25508,species,camlau1,Cambodian Laughingthrush,Garrulax ferrarius,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25509,species,whnlau1,White-necked Laughingthrush,Garrulax strepitans,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25510,species,blhlau1,Black-hooded Laughingthrush,Garrulax milleti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25513,species,grylau1,Gray Laughingthrush,Garrulax maesi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25516,species,ruclau3,Rufous-cheeked Laughingthrush,Garrulax castanotis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25519,species,spblau1,Spot-breasted Laughingthrush,Garrulax merulinus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25522,species,orblau1,Orange-breasted Laughingthrush,Garrulax annamensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25523,species,melthr,Chinese Hwamei,Garrulax canorus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25526,species,taihwa1,Taiwan Hwamei,Garrulax taewanus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25527,hybrid,x00816,Chinese x Taiwan Hwamei (hybrid),Garrulax canorus x taewanus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25528,slash,y00910,Chinese/Taiwan Hwamei,Garrulax canorus/taewanus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25529,spuh,garrul1,Garrulax sp.,Garrulax sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25530,species,suklau1,Snowy-cheeked Laughingthrush,Ianthocincla sukatschewi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25531,species,moulau1,Moustached Laughingthrush,Ianthocincla cineracea,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25532,issf,moulau2,Moustached Laughingthrush (Western),Ianthocincla cineracea cineracea/strenua,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,moulau1 +25535,issf,moulau3,Moustached Laughingthrush (Eastern),Ianthocincla cineracea cinereiceps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,moulau1 +25536,species,ruclau1,Rufous-chinned Laughingthrush,Ianthocincla rufogularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25544,species,chelau1,Chestnut-eared Laughingthrush,Ianthocincla konkakinhensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25545,species,spolau1,Spotted Laughingthrush,Ianthocincla ocellata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25550,species,barlau1,Barred Laughingthrush,Ianthocincla lunulata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25551,species,bielau1,Biet's Laughingthrush,Ianthocincla bieti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25552,species,gialau1,Giant Laughingthrush,Ianthocincla maxima,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25553,species,gnlthr,Greater Necklaced Laughingthrush,Ianthocincla pectoralis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25561,slash,y01002,Lesser/Greater Necklaced Laughingthrush,Garrulax monileger/Ianthocincla pectoralis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25562,species,whtlau1,White-throated Laughingthrush,Ianthocincla albogularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25566,species,ruclau2,Rufous-crowned Laughingthrush,Ianthocincla ruficeps,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25567,species,runlau1,Rufous-necked Laughingthrush,Ianthocincla ruficollis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25568,species,chblau1,Chestnut-backed Laughingthrush,Ianthocincla nuchalis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25569,species,bltlau1,Black-throated Laughingthrush,Ianthocincla chinensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25570,issf,bktlau1,Black-throated Laughingthrush (Black-throated),Ianthocincla chinensis [chinensis Group],Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bltlau1 +25575,issf,bktlau2,Black-throated Laughingthrush (Hainan),Ianthocincla chinensis monachus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,bltlau1 +25576,species,whclau1,White-cheeked Laughingthrush,Ianthocincla vassali,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25577,species,yetlau1,Yellow-throated Laughingthrush,Ianthocincla galbana,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25578,species,buclau1,Blue-crowned Laughingthrush,Ianthocincla courtoisi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25581,species,wynlau1,Wayanad Laughingthrush,Ianthocincla delesserti,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25582,species,ruvlau1,Rufous-vented Laughingthrush,Ianthocincla gularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25583,species,pedlau1,Pere David's Laughingthrush,Ianthocincla davidi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25588,species,gyslau,Gray-sided Laughingthrush,Ianthocincla caerulata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25594,species,ruslau1,Rusty Laughingthrush,Ianthocincla poecilorhyncha,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25595,species,buflau1,Buffy Laughingthrush,Ianthocincla berthemyi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25596,species,chclau3,Chestnut-capped Laughingthrush,Ianthocincla mitrata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25599,species,chhlau1,Chestnut-hooded Laughingthrush,Ianthocincla treacheri,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25603,species,whblau1,White-browed Laughingthrush,Ianthocincla sannio,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25608,species,chibab2,Chinese Babax,Ianthocincla lanceolata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25612,species,chibub1,Mount Victoria Babax,Ianthocincla woodi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25613,species,giabab1,Giant Babax,Ianthocincla waddelli,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25617,species,tibbab1,Tibetan Babax,Ianthocincla koslowi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25620,spuh,iantho1,Ianthocincla sp.,Ianthocincla sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25621,species,strlau1,Streaked Laughingthrush,Trochalopteron lineatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25626,species,bhulau1,Bhutan Laughingthrush,Trochalopteron imbricatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25627,species,strlau3,Striped Laughingthrush,Trochalopteron virgatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25628,species,scalau1,Scaly Laughingthrush,Trochalopteron subunicolor,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25632,species,brclau1,Brown-capped Laughingthrush,Trochalopteron austeni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25635,species,blwlau1,Blue-winged Laughingthrush,Trochalopteron squamatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25636,species,elllau1,Elliot's Laughingthrush,Trochalopteron elliotii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25639,species,varlau1,Variegated Laughingthrush,Trochalopteron variegatum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25642,species,prhlau1,Prince Henry's Laughingthrush,Trochalopteron henrici,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25643,species,blflau1,Black-faced Laughingthrush,Trochalopteron affine,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25650,species,whwlau1,White-whiskered Laughingthrush,Trochalopteron morrisonianum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25651,species,chclau2,Chestnut-crowned Laughingthrush,Trochalopteron erythrocephalum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25655,species,asslau1,Assam Laughingthrush,Trochalopteron chrysopterum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25661,species,sielau1,Silver-eared Laughingthrush,Trochalopteron melanostigma,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25667,species,mallau1,Malayan Laughingthrush,Trochalopteron peninsulae,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25668,species,gowlau1,Golden-winged Laughingthrush,Trochalopteron ngoclinhense,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25669,species,collau1,Collared Laughingthrush,Trochalopteron yersini,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25670,species,rewlau1,Red-winged Laughingthrush,Trochalopteron formosum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25673,species,retlau1,Red-tailed Laughingthrush,Trochalopteron milnei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25678,spuh,trocha1,Trochalopteron sp.,Trochalopteron sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25679,species,bkclau1,Banasura Laughingthrush,Montecincla jerdoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25680,species,bkclau2,Nilgiri Laughingthrush,Montecincla cachinnans,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25681,species,kerlau2,Palani Laughingthrush,Montecincla fairbanki,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25682,species,kerlau3,Ashambu Laughingthrush,Montecincla meridionalis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25683,spuh,laughi1,laughingthrush sp.,Garrulax/Ianthocincla/Trochalopteron/Montecincla sp.,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25684,species,rufsib1,Rufous Sibia,Heterophasia capistrata,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25688,species,grysib1,Gray Sibia,Heterophasia gracilis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25689,species,blbsib1,Black-backed Sibia,Heterophasia melanoleuca,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25692,species,blhsib1,Black-headed Sibia,Heterophasia desgodinsi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25693,issf,bkhsib1,Black-headed Sibia (Black-headed),Heterophasia desgodinsi desgodinsi/tonkinensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blhsib1 +25696,issf,bkhsib2,Black-headed Sibia (engelbachi/kingi),Heterophasia desgodinsi engelbachi/kingi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blhsib1 +25699,issf,bkhsib3,Black-headed Sibia (Lang Bian),Heterophasia desgodinsi robinsoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,blhsib1 +25700,species,whesib1,White-eared Sibia,Heterophasia auricularis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25701,species,beasib1,Beautiful Sibia,Heterophasia pulchella,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25702,species,lotsib1,Long-tailed Sibia,Heterophasia picaoides,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25707,species,siemes1,Silver-eared Mesia,Leiothrix argentauris,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25708,issf,siemes2,Silver-eared Mesia (Silver-eared),Leiothrix argentauris [argentauris Group],Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,siemes1 +25717,issf,siemes3,Silver-eared Mesia (Sumatran),Leiothrix argentauris laurinae/rookmakeri,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,siemes1 +25720,species,reblei,Red-billed Leiothrix,Leiothrix lutea,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25727,species,retmin1,Red-tailed Minla,Minla ignotincta,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25732,species,rubsib1,Rufous-backed Sibia,Minla annectens,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25738,species,gyccro1,Gray-crowned Crocias,Crocias langbianis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25739,species,spocro1,Spotted Crocias,Crocias albonotatus,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25740,species,gyflio1,Gray-faced Liocichla,Liocichla omeiensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25741,species,buglio1,Bugun Liocichla,Liocichla bugunorum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25742,species,stelio1,Steere's Liocichla,Liocichla steerii,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25743,species,reflio2,Red-faced Liocichla,Liocichla phoenicea,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25746,species,reflio3,Scarlet-faced Liocichla,Liocichla ripponi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25749,species,bkcbar1,Black-crowned Barwing,Actinodura sodangorum,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25750,species,hotbar1,Hoary-throated Barwing,Actinodura nipalensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25753,species,sttbar1,Streak-throated Barwing,Actinodura waldeni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25758,slash,y00753,Hoary-throated/Streak-throated Barwing,Actinodura nipalensis/waldeni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25759,species,strbar1,Streaked Barwing,Actinodura souliei,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25762,species,taibar1,Taiwan Barwing,Actinodura morrisoniana,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25763,species,rufbar1,Rusty-fronted Barwing,Actinodura egertoni,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25768,species,spebar1,Spectacled Barwing,Actinodura ramsayi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25769,issf,spebar2,Spectacled Barwing (Eastern),Actinodura ramsayi radcliffei/yunnanensis,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,spebar1 +25772,issf,spebar3,Spectacled Barwing (Western),Actinodura ramsayi ramsayi,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),,spebar1 +25773,species,blwmin1,Blue-winged Minla,Actinodura cyanouroptera,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25782,species,chtmin1,Chestnut-tailed Minla,Actinodura strigula,Passeriformes,Leiothrichidae (Laughingthrushes and Allies),, +25790,species,gockin,Golden-crowned Kinglet,Regulus satrapa,Passeriformes,Regulidae (Kinglets),Kinglets, +25797,species,ruckin,Ruby-crowned Kinglet,Regulus calendula,Passeriformes,Regulidae (Kinglets),, +25801,species,goldcr1,Goldcrest,Regulus regulus,Passeriformes,Regulidae (Kinglets),, +25802,issf,goldcr6,Goldcrest (European),Regulus regulus [regulus Group],Passeriformes,Regulidae (Kinglets),,goldcr1 +25808,issf,goldcr7,Goldcrest (western Canary Islands),Regulus regulus ellenthalerae,Passeriformes,Regulidae (Kinglets),,goldcr1 +25809,issf,caikin1,Goldcrest (Tenerife),Regulus regulus teneriffae,Passeriformes,Regulidae (Kinglets),,goldcr1 +25810,issf,goldcr2,Goldcrest (Sao Miguel),Regulus regulus azoricus,Passeriformes,Regulidae (Kinglets),,goldcr1 +25811,issf,goldcr3,Goldcrest (Santa Maria),Regulus regulus sanctaemariae,Passeriformes,Regulidae (Kinglets),,goldcr1 +25812,issf,goldcr4,Goldcrest (Western Azores),Regulus regulus inermis,Passeriformes,Regulidae (Kinglets),,goldcr1 +25813,issf,goldcr5,Goldcrest (Asian),Regulus regulus [himalayensis Group],Passeriformes,Regulidae (Kinglets),,goldcr1 +25818,species,flamec1,Flamecrest,Regulus goodfellowi,Passeriformes,Regulidae (Kinglets),, +25819,species,firecr3,Madeira Firecrest,Regulus madeirensis,Passeriformes,Regulidae (Kinglets),, +25820,species,firecr1,Common Firecrest,Regulus ignicapilla,Passeriformes,Regulidae (Kinglets),, +25823,slash,y00622,Goldcrest/Common Firecrest,Regulus regulus/ignicapilla,Passeriformes,Regulidae (Kinglets),, +25824,spuh,kingle,kinglet sp.,Regulus sp.,Passeriformes,Regulidae (Kinglets),, +25825,species,wallcr1,Wallcreeper,Tichodroma muraria,Passeriformes,Tichodromidae (Wallcreeper),Wallcreeper, +25828,species,chbnut2,Indian Nuthatch,Sitta castanea,Passeriformes,Sittidae (Nuthatches),Nuthatches, +25829,species,chbnut3,Chestnut-bellied Nuthatch,Sitta cinnamoventris,Passeriformes,Sittidae (Nuthatches),, +25834,slash,y00902,Indian/Chestnut-bellied Nuthatch,Sitta castanea/cinnamoventris,Passeriformes,Sittidae (Nuthatches),, +25835,species,chbnut4,Burmese Nuthatch,Sitta neglecta,Passeriformes,Sittidae (Nuthatches),, +25836,species,eurnut2,Eurasian Nuthatch,Sitta europaea,Passeriformes,Sittidae (Nuthatches),, +25837,issf,eurnut9,Eurasian Nuthatch (Western),Sitta europaea [europaea Group],Passeriformes,Sittidae (Nuthatches),,eurnut2 +25847,issf,eurnut6,Eurasian Nuthatch (Siberian),Sitta europaea arctica,Passeriformes,Sittidae (Nuthatches),,eurnut2 +25848,issf,eurnut10,Eurasian Nuthatch (White-bellied),Sitta europaea [asiatica Group],Passeriformes,Sittidae (Nuthatches),,eurnut2 +25855,issf,eurnut7,Eurasian Nuthatch (Buff-bellied),Sitta europaea [roseilia Group],Passeriformes,Sittidae (Nuthatches),,eurnut2 +25861,issf,eurnut8,Eurasian Nuthatch (Chinese),Sitta europaea sinensis/formosana,Passeriformes,Sittidae (Nuthatches),,eurnut2 +25864,species,chvnut1,Chestnut-vented Nuthatch,Sitta nagaensis,Passeriformes,Sittidae (Nuthatches),, +25867,species,kasnut1,Kashmir Nuthatch,Sitta cashmirensis,Passeriformes,Sittidae (Nuthatches),, +25868,species,whtnut1,White-tailed Nuthatch,Sitta himalayensis,Passeriformes,Sittidae (Nuthatches),, +25869,species,whbnut1,White-browed Nuthatch,Sitta victoriae,Passeriformes,Sittidae (Nuthatches),, +25870,species,rebnut,Red-breasted Nuthatch,Sitta canadensis,Passeriformes,Sittidae (Nuthatches),, +25871,species,whcnut1,White-cheeked Nuthatch,Sitta leucopsis,Passeriformes,Sittidae (Nuthatches),, +25872,species,prznut1,Przevalski's Nuthatch,Sitta przewalskii,Passeriformes,Sittidae (Nuthatches),, +25873,species,whbnut,White-breasted Nuthatch,Sitta carolinensis,Passeriformes,Sittidae (Nuthatches),, +25874,issf,whbnut2,White-breasted Nuthatch (Eastern),Sitta carolinensis carolinensis,Passeriformes,Sittidae (Nuthatches),,whbnut +25875,issf,whbnut3,White-breasted Nuthatch (Interior West),Sitta carolinensis [lagunae Group],Passeriformes,Sittidae (Nuthatches),,whbnut +25882,issf,whbnut4,White-breasted Nuthatch (Pacific),Sitta carolinensis aculeata/alexandrae,Passeriformes,Sittidae (Nuthatches),,whbnut +25885,species,pygnut,Pygmy Nuthatch,Sitta pygmaea,Passeriformes,Sittidae (Nuthatches),, +25893,species,bnhnut,Brown-headed Nuthatch,Sitta pusilla,Passeriformes,Sittidae (Nuthatches),, +25894,issf,bnhnut1,Brown-headed Nuthatch (Southeast),Sitta pusilla pusilla,Passeriformes,Sittidae (Nuthatches),,bnhnut +25895,issf,bnhnut2,Brown-headed Nuthatch (Grand Bahama),Sitta pusilla insularis,Passeriformes,Sittidae (Nuthatches),,bnhnut +25896,species,cornut1,Corsican Nuthatch,Sitta whiteheadi,Passeriformes,Sittidae (Nuthatches),, +25897,species,algnut1,Algerian Nuthatch,Sitta ledanti,Passeriformes,Sittidae (Nuthatches),, +25898,species,krunut1,Krüper's Nuthatch,Sitta krueperi,Passeriformes,Sittidae (Nuthatches),, +25899,species,snbnut1,Snowy-browed Nuthatch,Sitta villosa,Passeriformes,Sittidae (Nuthatches),, +25902,species,yunnut1,Yunnan Nuthatch,Sitta yunnanensis,Passeriformes,Sittidae (Nuthatches),, +25903,species,rocnut1,Western Rock Nuthatch,Sitta neumayer,Passeriformes,Sittidae (Nuthatches),, +25909,species,pernut1,Eastern Rock Nuthatch,Sitta tephronota,Passeriformes,Sittidae (Nuthatches),, +25914,slash,y00903,Western Rock/Eastern Rock Nuthatch,Sitta neumayer/tephronota,Passeriformes,Sittidae (Nuthatches),, +25915,species,vefnut1,Velvet-fronted Nuthatch,Sitta frontalis,Passeriformes,Sittidae (Nuthatches),, +25921,species,yebnut1,Yellow-billed Nuthatch,Sitta solangiae,Passeriformes,Sittidae (Nuthatches),, +25925,slash,y01044,Velvet-fronted/Yellow-billed Nuthatch,Sitta frontalis/solangiae,Passeriformes,Sittidae (Nuthatches),, +25926,species,subnut1,Sulphur-billed Nuthatch,Sitta oenochlamys,Passeriformes,Sittidae (Nuthatches),, +25933,species,blunut1,Blue Nuthatch,Sitta azurea,Passeriformes,Sittidae (Nuthatches),, +25937,species,gianut1,Giant Nuthatch,Sitta magna,Passeriformes,Sittidae (Nuthatches),, +25940,species,beanut1,Beautiful Nuthatch,Sitta formosa,Passeriformes,Sittidae (Nuthatches),, +25941,spuh,nuthat1,nuthatch sp.,Sitta sp.,Passeriformes,Sittidae (Nuthatches),, +25942,species,eurtre1,Eurasian Treecreeper,Certhia familiaris,Passeriformes,Certhiidae (Treecreepers),Treecreepers, +25953,species,eurtre3,Hodgson's Treecreeper,Certhia hodgsoni,Passeriformes,Certhiidae (Treecreepers),, +25957,species,sictre1,Sichuan Treecreeper,Certhia tianquanensis,Passeriformes,Certhiidae (Treecreepers),, +25958,species,brncre,Brown Creeper,Certhia americana,Passeriformes,Certhiidae (Treecreepers),, +25959,issf,brncre1,Brown Creeper (occidentalis Group),Certhia americana [occidentalis Group],Passeriformes,Certhiidae (Treecreepers),,brncre +25965,issf,brncre5,Brown Creeper (montana/idahoensis),Certhia americana montana/idahoensis,Passeriformes,Certhiidae (Treecreepers),,brncre +25968,issf,brncre3,Brown Creeper (americana/nigrescens),Certhia americana americana/nigrescens,Passeriformes,Certhiidae (Treecreepers),,brncre +25971,issf,brncre2,Brown Creeper (albescens/alticola),Certhia americana albescens/alticola,Passeriformes,Certhiidae (Treecreepers),,brncre +25974,issf,brncre6,Brown Creeper (pernigra),Certhia americana pernigra,Passeriformes,Certhiidae (Treecreepers),,brncre +25975,issf,brncre4,Brown Creeper (extima),Certhia americana extima,Passeriformes,Certhiidae (Treecreepers),,brncre +25976,species,shttre1,Short-toed Treecreeper,Certhia brachydactyla,Passeriformes,Certhiidae (Treecreepers),, +25982,slash,y00640,Eurasian/Short-toed Treecreeper,Certhia familiaris/brachydactyla,Passeriformes,Certhiidae (Treecreepers),, +25983,species,battre1,Bar-tailed Treecreeper,Certhia himalayana,Passeriformes,Certhiidae (Treecreepers),, +25988,species,ruftre4,Rusty-flanked Treecreeper,Certhia nipalensis,Passeriformes,Certhiidae (Treecreepers),, +25989,species,bnttre1,Sikkim Treecreeper,Certhia discolor,Passeriformes,Certhiidae (Treecreepers),, +25990,species,bnttre2,Hume's Treecreeper,Certhia manipurensis,Passeriformes,Certhiidae (Treecreepers),, +25995,spuh,certhi1,treecreeper sp.,Certhia sp.,Passeriformes,Certhiidae (Treecreepers),, +25996,species,spocre2,African Spotted Creeper,Salpornis salvadori,Passeriformes,Certhiidae (Treecreepers),, +26001,species,spocre3,Indian Spotted Creeper,Salpornis spilonota,Passeriformes,Certhiidae (Treecreepers),, +26002,species,colgna1,Collared Gnatwren,Microbates collaris,Passeriformes,Polioptilidae (Gnatcatchers),Gnatcatchers, +26006,species,tafgna1,Tawny-faced Gnatwren,Microbates cinereiventris,Passeriformes,Polioptilidae (Gnatcatchers),, +26011,species,lobgna5,Long-billed Gnatwren,Ramphocaenus melanurus,Passeriformes,Polioptilidae (Gnatcatchers),, +26012,issf,lobgna3,Long-billed Gnatwren (rufiventris Group),Ramphocaenus melanurus [rufiventris Group],Passeriformes,Polioptilidae (Gnatcatchers),,lobgna5 +26017,issf,lobgna2,Long-billed Gnatwren (Long-billed),Ramphocaenus melanurus [melanurus Group],Passeriformes,Polioptilidae (Gnatcatchers),,lobgna5 +26026,species,lobgna4,Chattering Gnatwren,Ramphocaenus sticturus,Passeriformes,Polioptilidae (Gnatcatchers),, +26029,slash,lobgna1,Long-billed/Chattering Gnatwren,Ramphocaenus melanurus/sticturus,Passeriformes,Polioptilidae (Gnatcatchers),, +26030,species,buggna,Blue-gray Gnatcatcher,Polioptila caerulea,Passeriformes,Polioptilidae (Gnatcatchers),, +26031,issf,buggna1,Blue-gray Gnatcatcher (caerulea),Polioptila caerulea caerulea,Passeriformes,Polioptilidae (Gnatcatchers),,buggna +26032,issf,buggna2,Blue-gray Gnatcatcher (obscura Group),Polioptila caerulea [obscura Group],Passeriformes,Polioptilidae (Gnatcatchers),,buggna +26039,issf,buggna3,Blue-gray Gnatcatcher (Cozumel),Polioptila caerulea cozumelae,Passeriformes,Polioptilidae (Gnatcatchers),,buggna +26040,species,cubgna1,Cuban Gnatcatcher,Polioptila lembeyei,Passeriformes,Polioptilidae (Gnatcatchers),, +26041,species,calgna,California Gnatcatcher,Polioptila californica,Passeriformes,Polioptilidae (Gnatcatchers),, +26045,species,bktgna,Black-tailed Gnatcatcher,Polioptila melanura,Passeriformes,Polioptilidae (Gnatcatchers),, +26049,species,bkcgna,Black-capped Gnatcatcher,Polioptila nigriceps,Passeriformes,Polioptilidae (Gnatcatchers),, +26052,hybrid,x00643,Black-tailed x Black-capped Gnatcatcher (hybrid),Polioptila melanura x nigriceps,Passeriformes,Polioptilidae (Gnatcatchers),, +26053,species,whlgna2,White-lored Gnatcatcher,Polioptila albiloris,Passeriformes,Polioptilidae (Gnatcatchers),, +26056,species,whlgna3,Yucatan Gnatcatcher,Polioptila albiventris,Passeriformes,Polioptilidae (Gnatcatchers),, +26057,species,trogna1,Tropical Gnatcatcher,Polioptila plumbea,Passeriformes,Polioptilidae (Gnatcatchers),, +26058,issf,trogna2,Tropical Gnatcatcher (White-browed),Polioptila plumbea [bilineata Group],Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 +26064,issf,trogna3,Tropical Gnatcatcher (Marañon),Polioptila plumbea maior,Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 +26065,issf,trogna9,Tropical Gnatcatcher (plumbiceps/anteocularis),Polioptila plumbea plumbiceps/anteocularis,Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 +26068,issf,trogna6,Tropical Gnatcatcher (innotata),Polioptila plumbea innotata,Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 +26069,issf,trogna8,Tropical Gnatcatcher (plumbea),Polioptila plumbea plumbea,Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 +26070,issf,trogna7,Tropical Gnatcatcher (parvirostris),Polioptila plumbea parvirostris,Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 +26071,issf,trogna5,Tropical Gnatcatcher (atricapilla),Polioptila plumbea atricapilla,Passeriformes,Polioptilidae (Gnatcatchers),,trogna1 +26072,species,crbgna1,Creamy-bellied Gnatcatcher,Polioptila lactea,Passeriformes,Polioptilidae (Gnatcatchers),, +26073,species,guigna3,Guianan Gnatcatcher,Polioptila guianensis,Passeriformes,Polioptilidae (Gnatcatchers),, +26074,species,sltgna1,Slate-throated Gnatcatcher,Polioptila schistaceigula,Passeriformes,Polioptilidae (Gnatcatchers),, +26075,species,iqugna1,Iquitos Gnatcatcher,Polioptila clementsi,Passeriformes,Polioptilidae (Gnatcatchers),, +26076,species,inagna1,Inambari Gnatcatcher,Polioptila attenboroughi,Passeriformes,Polioptilidae (Gnatcatchers),, +26077,species,guigna2,Rio Negro Gnatcatcher,Polioptila facilis,Passeriformes,Polioptilidae (Gnatcatchers),, +26078,slash,y01156,Guianan/Rio Negro Gnatcatcher,Polioptila guianensis/facilis,Passeriformes,Polioptilidae (Gnatcatchers),, +26079,species,guigna4,Klage's Gnatcatcher,Polioptila paraensis,Passeriformes,Polioptilidae (Gnatcatchers),, +26080,slash,y01157,Inambari/Klage's Gnatcatcher,Polioptila attenboroughi/paraensis,Passeriformes,Polioptilidae (Gnatcatchers),, +26081,species,masgna1,Masked Gnatcatcher,Polioptila dumicola,Passeriformes,Polioptilidae (Gnatcatchers),, +26085,spuh,gnatca1,gnatcatcher sp.,Polioptila sp.,Passeriformes,Polioptilidae (Gnatcatchers),, +26086,species,rocwre,Rock Wren,Salpinctes obsoletus,Passeriformes,Troglodytidae (Wrens),Wrens, +26087,issf,rocwre1,Rock Wren (Northern),Salpinctes obsoletus [obsoletus Group],Passeriformes,Troglodytidae (Wrens),,rocwre +26093,issf,rocwre2,Rock Wren (Central American),Salpinctes obsoletus [guttatus Group],Passeriformes,Troglodytidae (Wrens),,rocwre +26097,species,nigwre1,Nightingale Wren,Microcerculus philomela,Passeriformes,Troglodytidae (Wrens),, +26098,species,scbwre1,Scaly-breasted Wren,Microcerculus marginatus,Passeriformes,Troglodytidae (Wrens),, +26099,issf,scbwre2,Scaly-breasted Wren (Whistling),Microcerculus marginatus luscinia,Passeriformes,Troglodytidae (Wrens),,scbwre1 +26100,issf,scbwre3,Scaly-breasted Wren (Scaly),Microcerculus marginatus taeniatus/occidentalis,Passeriformes,Troglodytidae (Wrens),,scbwre1 +26103,issf,scbwre4,Scaly-breasted Wren (Southern),Microcerculus marginatus [marginatus Group],Passeriformes,Troglodytidae (Wrens),,scbwre1 +26107,species,fluwre1,Flutist Wren,Microcerculus ustulatus,Passeriformes,Troglodytidae (Wrens),, +26112,species,wibwre1,Wing-banded Wren,Microcerculus bambla,Passeriformes,Troglodytidae (Wrens),, +26116,species,gymwre1,Gray-mantled Wren,Odontorchilus branickii,Passeriformes,Troglodytidae (Wrens),, +26119,species,tobwre1,Tooth-billed Wren,Odontorchilus cinereus,Passeriformes,Troglodytidae (Wrens),, +26120,species,canwre,Canyon Wren,Catherpes mexicanus,Passeriformes,Troglodytidae (Wrens),, +26124,species,sumwre1,Sumichrast's Wren,Hylorchilus sumichrasti,Passeriformes,Troglodytidae (Wrens),, +26125,species,navwre1,Nava's Wren,Hylorchilus navai,Passeriformes,Troglodytidae (Wrens),, +26126,species,zapwre1,Zapata Wren,Ferminia cerverai,Passeriformes,Troglodytidae (Wrens),, +26127,species,houwre,House Wren,Troglodytes aedon,Passeriformes,Troglodytidae (Wrens),, +26128,issf,houwre1,House Wren (Northern),Troglodytes aedon [aedon Group],Passeriformes,Troglodytidae (Wrens),,houwre +26132,issf,houwre6,House Wren (Dominica),Troglodytes aedon rufescens,Passeriformes,Troglodytidae (Wrens),,houwre +26133,issf,houwre7,House Wren (Martinique),Troglodytes aedon martinicensis,Passeriformes,Troglodytidae (Wrens),,houwre +26134,issf,houwre8,House Wren (St. Lucia),Troglodytes aedon mesoleucus,Passeriformes,Troglodytidae (Wrens),,houwre +26135,issf,houwre9,House Wren (Guadeloupe),Troglodytes aedon guadeloupensis,Passeriformes,Troglodytidae (Wrens),,houwre +26136,issf,houwre10,House Wren (St. Vincent),Troglodytes aedon musicus,Passeriformes,Troglodytidae (Wrens),,houwre +26137,issf,houwre11,House Wren (Grenada),Troglodytes aedon grenadensis,Passeriformes,Troglodytidae (Wrens),,houwre +26138,issf,houwre3,House Wren (Cozumel I.),Troglodytes aedon beani,Passeriformes,Troglodytidae (Wrens),,houwre +26139,issf,bntwre1,House Wren (Brown-throated),Troglodytes aedon [brunneicollis Group],Passeriformes,Troglodytidae (Wrens),,houwre +26144,issf,houwre4,House Wren (Southern),Troglodytes aedon [musculus Group],Passeriformes,Troglodytidae (Wrens),,houwre +26163,species,houwre5,Cobb's Wren,Troglodytes cobbi,Passeriformes,Troglodytidae (Wrens),, +26164,species,socwre2,Socorro Wren,Troglodytes sissonii,Passeriformes,Troglodytidae (Wrens),, +26165,species,clawre1,Clarion Wren,Troglodytes tanneri,Passeriformes,Troglodytidae (Wrens),, +26166,species,rubwre2,Rufous-browed Wren,Troglodytes rufociliatus,Passeriformes,Troglodytidae (Wrens),, +26171,species,ochwre1,Ochraceous Wren,Troglodytes ochraceus,Passeriformes,Troglodytidae (Wrens),, +26175,species,mouwre1,Mountain Wren,Troglodytes solstitialis,Passeriformes,Troglodytidae (Wrens),, +26181,species,samwre1,Santa Marta Wren,Troglodytes monticola,Passeriformes,Troglodytidae (Wrens),, +26182,species,tepwre1,Tepui Wren,Troglodytes rufulus,Passeriformes,Troglodytidae (Wrens),, +26188,species,winwre4,Eurasian Wren,Troglodytes troglodytes,Passeriformes,Troglodytidae (Wrens),, +26189,issf,eurwre1,Eurasian Wren (Iceland),Troglodytes troglodytes islandicus,Passeriformes,Troglodytidae (Wrens),,winwre4 +26190,issf,eurwre2,Eurasian Wren (Faeroe),Troglodytes troglodytes borealis,Passeriformes,Troglodytidae (Wrens),,winwre4 +26191,issf,eurwre3,Eurasian Wren (Shetland),Troglodytes troglodytes zetlandicus,Passeriformes,Troglodytidae (Wrens),,winwre4 +26192,issf,eurwre4,Eurasian Wren (Hebridean),Troglodytes troglodytes hebridensis,Passeriformes,Troglodytidae (Wrens),,winwre4 +26193,issf,eurwre5,Eurasian Wren (Fair Isle),Troglodytes troglodytes fridariensis,Passeriformes,Troglodytidae (Wrens),,winwre4 +26194,issf,eurwre6,Eurasian Wren (St. Kilda),Troglodytes troglodytes hirtensis,Passeriformes,Troglodytidae (Wrens),,winwre4 +26195,issf,eurwre7,Eurasian Wren (British),Troglodytes troglodytes indigenus,Passeriformes,Troglodytidae (Wrens),,winwre4 +26196,issf,eurwre8,Eurasian Wren (Eurasian),Troglodytes troglodytes [troglodytes Group],Passeriformes,Troglodytidae (Wrens),,winwre4 +26218,species,pacwre1,Pacific Wren,Troglodytes pacificus,Passeriformes,Troglodytidae (Wrens),, +26219,issf,winwre1,Pacific Wren (alascensis Group),Troglodytes pacificus [alascensis Group],Passeriformes,Troglodytidae (Wrens),,pacwre1 +26228,issf,winwre2,Pacific Wren (pacificus Group),Troglodytes pacificus [pacificus Group],Passeriformes,Troglodytidae (Wrens),,pacwre1 +26234,species,winwre3,Winter Wren,Troglodytes hiemalis,Passeriformes,Troglodytidae (Wrens),, +26237,slash,winwre,Pacific/Winter Wren,Troglodytes pacificus/hiemalis,Passeriformes,Troglodytidae (Wrens),, +26238,species,timwre1,Timberline Wren,Thryorchilus browni,Passeriformes,Troglodytidae (Wrens),, +26242,species,sedwre,Sedge Wren,Cistothorus platensis,Passeriformes,Troglodytidae (Wrens),, +26243,issf,sedwre1,Sedge Wren (Sedge),Cistothorus platensis stellaris,Passeriformes,Troglodytidae (Wrens),,sedwre +26244,issf,sedwre2,Sedge Wren (Grass),Cistothorus platensis [elegans Group],Passeriformes,Troglodytidae (Wrens),,sedwre +26253,issf,sedwre6,Sedge Wren (Venezuelan),Cistothorus platensis alticola,Passeriformes,Troglodytidae (Wrens),,sedwre +26254,issf,sedwre7,Sedge Wren (Paramo),Cistothorus platensis aequatorialis,Passeriformes,Troglodytidae (Wrens),,sedwre +26255,issf,sedwre8,Sedge Wren (Junin),Cistothorus platensis graminicola,Passeriformes,Troglodytidae (Wrens),,sedwre +26256,issf,sedwre9,Sedge Wren (Puna),Cistothorus platensis minimus,Passeriformes,Troglodytidae (Wrens),,sedwre +26257,issf,sedwre10,Sedge Wren (Tucuman),Cistothorus platensis tucumanus,Passeriformes,Troglodytidae (Wrens),,sedwre +26258,issf,sedwre11,Sedge Wren (Pampas),Cistothorus platensis platensis/polyglottus,Passeriformes,Troglodytidae (Wrens),,sedwre +26261,issf,sedwre12,Sedge Wren (Austral),Cistothorus platensis hornensis/falklandicus,Passeriformes,Troglodytidae (Wrens),,sedwre +26264,species,merwre1,Merida Wren,Cistothorus meridae,Passeriformes,Troglodytidae (Wrens),, +26265,species,apowre1,Apolinar's Wren,Cistothorus apolinari,Passeriformes,Troglodytidae (Wrens),, +26268,species,marwre,Marsh Wren,Cistothorus palustris,Passeriformes,Troglodytidae (Wrens),, +26269,issf,marwre1,Marsh Wren (paludicola Group),Cistothorus palustris [paludicola Group],Passeriformes,Troglodytidae (Wrens),,marwre +26274,issf,marwre2,Marsh Wren (plesius Group),Cistothorus palustris [plesius Group],Passeriformes,Troglodytidae (Wrens),,marwre +26278,issf,marwre3,Marsh Wren (palustris Group),Cistothorus palustris [palustris Group],Passeriformes,Troglodytidae (Wrens),,marwre +26284,issf,marwre5,Marsh Wren (griseus),Cistothorus palustris griseus,Passeriformes,Troglodytidae (Wrens),,marwre +26285,issf,marwre4,Marsh Wren (tolucensis),Cistothorus palustris tolucensis,Passeriformes,Troglodytidae (Wrens),,marwre +26286,slash,y00328,Sedge/Marsh Wren,Cistothorus platensis/palustris,Passeriformes,Troglodytidae (Wrens),, +26287,species,carwre,Carolina Wren,Thryothorus ludovicianus,Passeriformes,Troglodytidae (Wrens),, +26288,issf,carwre1,Carolina Wren (Northern),Thryothorus ludovicianus [ludovicianus Group],Passeriformes,Troglodytidae (Wrens),,carwre +26293,issf,y00487,Carolina Wren (Northeast Mexico/South Texas),Thryothorus ludovicianus [berlandieri Group],Passeriformes,Troglodytidae (Wrens),,carwre +26297,issf,carwre2,Carolina Wren (White-browed),Thryothorus ludovicianus albinucha/subfulvus,Passeriformes,Troglodytidae (Wrens),,carwre +26300,species,bewwre,Bewick's Wren,Thryomanes bewickii,Passeriformes,Troglodytidae (Wrens),, +26301,issf,bewwre3,Bewick's Wren (bewickii),Thryomanes bewickii bewickii,Passeriformes,Troglodytidae (Wrens),,bewwre +26302,issf,bewwre2,Bewick's Wren (mexicanus Group),Thryomanes bewickii [mexicanus Group],Passeriformes,Troglodytidae (Wrens),,bewwre +26308,issf,bewwre1,Bewick's Wren (spilurus Group),Thryomanes bewickii [spilurus Group],Passeriformes,Troglodytidae (Wrens),,bewwre +26318,species,whhwre1,White-headed Wren,Campylorhynchus albobrunneus,Passeriformes,Troglodytidae (Wrens),, +26321,species,babwre1,Band-backed Wren,Campylorhynchus zonatus,Passeriformes,Troglodytidae (Wrens),, +26329,hybrid,x00969,White-headed x Band-backed Wren (hybrid),Campylorhynchus albobrunneus x zonatus,Passeriformes,Troglodytidae (Wrens),, +26330,species,grbwre1,Gray-barred Wren,Campylorhynchus megalopterus,Passeriformes,Troglodytidae (Wrens),, +26333,species,giawre1,Giant Wren,Campylorhynchus chiapensis,Passeriformes,Troglodytidae (Wrens),, +26334,species,runwre1,Rufous-naped Wren,Campylorhynchus rufinucha,Passeriformes,Troglodytidae (Wrens),, +26335,issf,runwre3,Rufous-naped Wren (Sclater's),Campylorhynchus rufinucha humilis,Passeriformes,Troglodytidae (Wrens),,runwre1 +26336,issf,runwre2,Rufous-naped Wren (Veracruz),Campylorhynchus rufinucha rufinucha,Passeriformes,Troglodytidae (Wrens),,runwre1 +26337,issf,runwre4,Rufous-naped Wren (Rufous-backed),Campylorhynchus rufinucha [capistratus Group],Passeriformes,Troglodytidae (Wrens),,runwre1 +26343,species,spowre1,Spotted Wren,Campylorhynchus gularis,Passeriformes,Troglodytidae (Wrens),, +26344,species,bouwre1,Boucard's Wren,Campylorhynchus jocosus,Passeriformes,Troglodytidae (Wrens),, +26345,species,yucwre1,Yucatan Wren,Campylorhynchus yucatanicus,Passeriformes,Troglodytidae (Wrens),, +26346,species,cacwre,Cactus Wren,Campylorhynchus brunneicapillus,Passeriformes,Troglodytidae (Wrens),, +26347,issf,cacwre2,Cactus Wren (brunneicapillus Group),Campylorhynchus brunneicapillus [brunneicapillus Group],Passeriformes,Troglodytidae (Wrens),,cacwre +26352,issf,cacwre1,Cactus Wren (affinis Group),Campylorhynchus brunneicapillus [affinis Group],Passeriformes,Troglodytidae (Wrens),,cacwre +26356,species,stbwre2,Stripe-backed Wren,Campylorhynchus nuchalis,Passeriformes,Troglodytidae (Wrens),, +26360,species,faswre1,Fasciated Wren,Campylorhynchus fasciatus,Passeriformes,Troglodytidae (Wrens),, +26363,species,bicwre1,Bicolored Wren,Campylorhynchus griseus,Passeriformes,Troglodytidae (Wrens),, +26370,species,thlwre1,Thrush-like Wren,Campylorhynchus turdinus,Passeriformes,Troglodytidae (Wrens),, +26374,species,sohwre1,Sooty-headed Wren,Pheugopedius spadix,Passeriformes,Troglodytidae (Wrens),, +26377,species,blbwre1,Black-bellied Wren,Pheugopedius fasciatoventris,Passeriformes,Troglodytidae (Wrens),, +26381,species,pltwre1,Plain-tailed Wren,Pheugopedius euophrys,Passeriformes,Troglodytidae (Wrens),, +26382,issf,pltwre2,Plain-tailed Wren (Plain-tailed),Pheugopedius euophrys [euophrys Group],Passeriformes,Troglodytidae (Wrens),,pltwre1 +26386,issf,pltwre3,Plain-tailed Wren (Gray-browed),Pheugopedius euophrys schulenbergi,Passeriformes,Troglodytidae (Wrens),,pltwre1 +26387,form,manwre1,Mantaro Wren (undescribed form),Pheugopedius [undescribed form],Passeriformes,Troglodytidae (Wrens),, +26388,species,incwre1,Inca Wren,Pheugopedius eisenmanni,Passeriformes,Troglodytidae (Wrens),, +26389,species,whiwre1,Whiskered Wren,Pheugopedius mystacalis,Passeriformes,Troglodytidae (Wrens),, +26398,species,mouwre2,Moustached Wren,Pheugopedius genibarbis,Passeriformes,Troglodytidae (Wrens),, +26403,species,corwre1,Coraya Wren,Pheugopedius coraya,Passeriformes,Troglodytidae (Wrens),, +26414,hybrid,x00970,Moustached x Coraya Wren (hybrid),Pheugopedius genibarbis x coraya,Passeriformes,Troglodytidae (Wrens),, +26415,slash,y00984,Moustached/Coraya Wren,Pheugopedius genibarbis/coraya,Passeriformes,Troglodytidae (Wrens),, +26416,species,rubwre1,Rufous-breasted Wren,Pheugopedius rutilus,Passeriformes,Troglodytidae (Wrens),, +26424,species,spbwre1,Spot-breasted Wren,Pheugopedius maculipectus,Passeriformes,Troglodytidae (Wrens),, +26431,species,spbwre2,Speckle-breasted Wren,Pheugopedius sclateri,Passeriformes,Troglodytidae (Wrens),, +26432,issf,spbwre5,Speckle-breasted Wren (Colombian),Pheugopedius sclateri columbianus,Passeriformes,Troglodytidae (Wrens),,spbwre2 +26433,issf,spbwre3,Speckle-breasted Wren (Speckle-breasted),Pheugopedius sclateri paucimaculatus,Passeriformes,Troglodytidae (Wrens),,spbwre2 +26434,issf,spbwre4,Speckle-breasted Wren (Marañon),Pheugopedius sclateri sclateri,Passeriformes,Troglodytidae (Wrens),,spbwre2 +26435,species,hapwre1,Happy Wren,Pheugopedius felix,Passeriformes,Troglodytidae (Wrens),, +26442,species,bltwre1,Black-throated Wren,Pheugopedius atrogularis,Passeriformes,Troglodytidae (Wrens),, +26443,spuh,pheugo1,Pheugopedius sp.,Pheugopedius sp.,Passeriformes,Troglodytidae (Wrens),, +26444,species,sinwre1,Sinaloa Wren,Thryophilus sinaloa,Passeriformes,Troglodytidae (Wrens),, +26448,species,banwre1,Banded Wren,Thryophilus pleurostictus,Passeriformes,Troglodytidae (Wrens),, +26456,species,rawwre1,Rufous-and-white Wren,Thryophilus rufalbus,Passeriformes,Troglodytidae (Wrens),, +26462,species,antwre2,Antioquia Wren,Thryophilus sernai,Passeriformes,Troglodytidae (Wrens),, +26463,species,nicwre1,Niceforo's Wren,Thryophilus nicefori,Passeriformes,Troglodytidae (Wrens),, +26464,species,stbwre1,Stripe-breasted Wren,Cantorchilus thoracicus,Passeriformes,Troglodytidae (Wrens),, +26465,species,sttwre1,Stripe-throated Wren,Cantorchilus leucopogon,Passeriformes,Troglodytidae (Wrens),, +26468,species,plawre1,Cabanis's Wren,Cantorchilus modestus,Passeriformes,Troglodytidae (Wrens),, +26469,species,plawre3,Canebrake Wren,Cantorchilus zeledoni,Passeriformes,Troglodytidae (Wrens),, +26470,slash,y00985,Cabanis's/Canebrake Wren,Cantorchilus modestus/zeledoni,Passeriformes,Troglodytidae (Wrens),, +26471,species,istwre1,Isthmian Wren,Cantorchilus elutus,Passeriformes,Troglodytidae (Wrens),, +26472,slash,y00986,Cabanis's/Isthmian Wren,Cantorchilus modestus/elutus,Passeriformes,Troglodytidae (Wrens),, +26473,species,rivwre1,Riverside Wren,Cantorchilus semibadius,Passeriformes,Troglodytidae (Wrens),, +26474,species,baywre1,Bay Wren,Cantorchilus nigricapillus,Passeriformes,Troglodytidae (Wrens),, +26475,issf,baywre2,Bay Wren (Central American),Cantorchilus nigricapillus [castaneus Group],Passeriformes,Troglodytidae (Wrens),,baywre1 +26481,issf,baywre3,Bay Wren (South American),Cantorchilus nigricapillus nigricapillus/connectens,Passeriformes,Troglodytidae (Wrens),,baywre1 +26484,species,supwre1,Superciliated Wren,Cantorchilus superciliaris,Passeriformes,Troglodytidae (Wrens),, +26487,species,bubwre1,Buff-breasted Wren,Cantorchilus leucotis,Passeriformes,Troglodytidae (Wrens),, +26499,species,lobwre1,Long-billed Wren,Cantorchilus longirostris,Passeriformes,Troglodytidae (Wrens),, +26502,species,fabwre1,Fawn-breasted Wren,Cantorchilus guarayanus,Passeriformes,Troglodytidae (Wrens),, +26503,species,grywre1,Gray Wren,Cantorchilus griseus,Passeriformes,Troglodytidae (Wrens),, +26504,spuh,cantor1,Cantorchilus sp.,Cantorchilus sp.,Passeriformes,Troglodytidae (Wrens),, +26505,species,rufwre1,Rufous Wren,Cinnycerthia unirufa,Passeriformes,Troglodytidae (Wrens),, +26509,species,shawre1,Sharpe's Wren,Cinnycerthia olivascens,Passeriformes,Troglodytidae (Wrens),, +26512,species,perwre1,Peruvian Wren,Cinnycerthia peruana,Passeriformes,Troglodytidae (Wrens),, +26513,species,fulwre1,Fulvous Wren,Cinnycerthia fulva,Passeriformes,Troglodytidae (Wrens),, +26517,spuh,cinnyc1,Cinnycerthia sp.,Cinnycerthia sp.,Passeriformes,Troglodytidae (Wrens),, +26518,species,whbwre1,White-bellied Wren,Uropsila leucogastra,Passeriformes,Troglodytidae (Wrens),, +26519,issf,whbwre3,White-bellied Wren (Middle America),Uropsila leucogastra [leucogastra Group],Passeriformes,Troglodytidae (Wrens),,whbwre1 +26526,issf,whbwre4,White-bellied Wren (West Mexico),Uropsila leucogastra pacifica,Passeriformes,Troglodytidae (Wrens),,whbwre1 +26527,species,wbwwre1,White-breasted Wood-Wren,Henicorhina leucosticta,Passeriformes,Troglodytidae (Wrens),, +26528,issf,whbwow1,White-breasted Wood-Wren (Sclater's),Henicorhina leucosticta [prostheleuca Group],Passeriformes,Troglodytidae (Wrens),,wbwwre1 +26533,issf,whbwow2,White-breasted Wood-Wren (Cherrie's),Henicorhina leucosticta pittieri/costaricensis,Passeriformes,Troglodytidae (Wrens),,wbwwre1 +26536,issf,whbwow4,White-breasted Wood-Wren (Choco),Henicorhina leucosticta inornata/eucharis,Passeriformes,Troglodytidae (Wrens),,wbwwre1 +26539,issf,whbwow3,White-breasted Wood-Wren (Black-capped),Henicorhina leucosticta [leucosticta Group],Passeriformes,Troglodytidae (Wrens),,wbwwre1 +26544,species,bwwwre1,Bar-winged Wood-Wren,Henicorhina leucoptera,Passeriformes,Troglodytidae (Wrens),, +26545,species,gbwwre1,Gray-breasted Wood-Wren,Henicorhina leucophrys,Passeriformes,Troglodytidae (Wrens),, +26546,issf,gybwow1,Gray-breasted Wood-Wren (Central American),Henicorhina leucophrys [mexicana Group],Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26552,issf,gybwow2,Gray-breasted Wood-Wren (Choco),Henicorhina leucophrys brunneiceps,Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26553,issf,gybwow4,Gray-breasted Wood-Wren (bangsi),Henicorhina leucophrys bangsi,Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26554,issf,gybwow5,Gray-breasted Wood-Wren (Perija),Henicorhina leucophrys manastarae,Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26555,issf,gybwow6,Gray-breasted Wood-Wren (meridana),Henicorhina leucophrys meridana,Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26556,issf,gybwow7,Gray-breasted Wood-Wren (venezuelensis),Henicorhina leucophrys venezuelensis,Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26557,issf,gybwow9,Gray-breasted Wood-Wren (hilaris),Henicorhina leucophrys hilaris,Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26558,issf,gybwow8,Gray-breasted Wood-Wren (Andean),Henicorhina leucophrys leucophrys/boliviana,Passeriformes,Troglodytidae (Wrens),,gbwwre1 +26561,species,gybwow3,Hermit Wood-Wren,Henicorhina anachoreta,Passeriformes,Troglodytidae (Wrens),, +26562,species,munwow1,Munchique Wood-Wren,Henicorhina negreti,Passeriformes,Troglodytidae (Wrens),, +26563,spuh,wood-w1,wood-wren sp.,Henicorhina sp.,Passeriformes,Troglodytidae (Wrens),, +26564,species,chbwre1,Chestnut-breasted Wren,Cyphorhinus thoracicus,Passeriformes,Troglodytidae (Wrens),, +26565,issf,chbwre2,Chestnut-breasted Wren (Northern),Cyphorhinus thoracicus dichrous,Passeriformes,Troglodytidae (Wrens),,chbwre1 +26566,issf,chbwre3,Chestnut-breasted Wren (Southern),Cyphorhinus thoracicus thoracicus,Passeriformes,Troglodytidae (Wrens),,chbwre1 +26567,species,sonwre1,Song Wren,Cyphorhinus phaeocephalus,Passeriformes,Troglodytidae (Wrens),, +26573,species,muswre2,Musician Wren,Cyphorhinus arada,Passeriformes,Troglodytidae (Wrens),, +26574,issf,muswre1,Musician Wren (Imeri),Cyphorhinus arada transfluvialis,Passeriformes,Troglodytidae (Wrens),,muswre2 +26575,issf,muswre3,Musician Wren (Gray-eared),Cyphorhinus arada salvini,Passeriformes,Troglodytidae (Wrens),,muswre2 +26576,issf,muswre4,Musician Wren (Musician),Cyphorhinus arada arada,Passeriformes,Troglodytidae (Wrens),,muswre2 +26577,issf,muswre5,Musician Wren (Gray-flanked),Cyphorhinus arada griseolateralis,Passeriformes,Troglodytidae (Wrens),,muswre2 +26578,issf,muswre6,Musician Wren (Rondonia),Cyphorhinus arada interpositus,Passeriformes,Troglodytidae (Wrens),,muswre2 +26579,issf,muswre7,Musician Wren (Ferruginous),Cyphorhinus arada modulator,Passeriformes,Troglodytidae (Wrens),,muswre2 +26580,spuh,wren1,wren sp.,Troglodytidae sp.,Passeriformes,Troglodytidae (Wrens),, +26581,species,spwbab1,Spotted Elachura,Elachura formosa,Passeriformes,Elachuridae (Spotted Elachura),Elachura, +26582,species,whtdip1,White-throated Dipper,Cinclus cinclus,Passeriformes,Cinclidae (Dippers),Dippers, +26596,species,brodip1,Brown Dipper,Cinclus pallasii,Passeriformes,Cinclidae (Dippers),, +26600,species,amedip,American Dipper,Cinclus mexicanus,Passeriformes,Cinclidae (Dippers),, +26601,issf,amedip1,American Dipper (Northern),Cinclus mexicanus [mexicanus Group],Passeriformes,Cinclidae (Dippers),,amedip +26605,issf,amedip2,American Dipper (Costa Rican),Cinclus mexicanus ardesiacus,Passeriformes,Cinclidae (Dippers),,amedip +26606,species,whcdip1,White-capped Dipper,Cinclus leucocephalus,Passeriformes,Cinclidae (Dippers),, +26607,issf,whcdip2,White-capped Dipper (Santa Marta),Cinclus leucocephalus rivularis,Passeriformes,Cinclidae (Dippers),,whcdip1 +26608,issf,whcdip3,White-capped Dipper (White-bellied),Cinclus leucocephalus leuconotus,Passeriformes,Cinclidae (Dippers),,whcdip1 +26609,issf,whcdip4,White-capped Dipper (White-capped),Cinclus leucocephalus leucocephalus,Passeriformes,Cinclidae (Dippers),,whcdip1 +26610,species,rutdip1,Rufous-throated Dipper,Cinclus schulzii,Passeriformes,Cinclidae (Dippers),, +26611,species,reboxp1,Red-billed Oxpecker,Buphagus erythrorynchus,Passeriformes,Buphagidae (Oxpeckers),Oxpeckers, +26612,species,yeboxp1,Yellow-billed Oxpecker,Buphagus africanus,Passeriformes,Buphagidae (Oxpeckers),, +26615,slash,y00825,Red-billed/Yellow-billed Oxpecker,Buphagus erythrorynchus/africanus,Passeriformes,Buphagidae (Oxpeckers),, +26616,species,stsrha2,Stripe-sided Rhabdornis,Rhabdornis mystacalis,Passeriformes,Sturnidae (Starlings),Starlings and Mynas, +26619,species,lobrha1,Long-billed Rhabdornis,Rhabdornis grandis,Passeriformes,Sturnidae (Starlings),, +26620,species,stbrha1,Stripe-breasted Rhabdornis,Rhabdornis inornatus,Passeriformes,Sturnidae (Starlings),, +26624,species,visrha1,Visayan Rhabdornis,Rhabdornis rabori,Passeriformes,Sturnidae (Starlings),, +26625,species,fibmyn1,Fiery-browed Myna,Enodes erythrophris,Passeriformes,Sturnidae (Starlings),, +26626,species,fibmyn2,Finch-billed Myna,Scissirostrum dubium,Passeriformes,Sturnidae (Starlings),, +26627,species,metsta1,Metallic Starling,Aplonis metallica,Passeriformes,Sturnidae (Starlings),, +26628,issf,metsta3,Metallic Starling (Violet-hooded),Aplonis metallica circumscripta,Passeriformes,Sturnidae (Starlings),,metsta1 +26629,issf,metsta2,Metallic Starling (Metallic),Aplonis metallica [metallica Group],Passeriformes,Sturnidae (Starlings),,metsta1 +26634,species,yeesta1,Yellow-eyed Starling,Aplonis mystacea,Passeriformes,Sturnidae (Starlings),, +26635,species,tansta1,Tanimbar Starling,Aplonis crassa,Passeriformes,Sturnidae (Starlings),, +26636,species,atosta1,Atoll Starling,Aplonis feadensis,Passeriformes,Sturnidae (Starlings),, +26639,species,rensta1,Rennell Starling,Aplonis insularis,Passeriformes,Sturnidae (Starlings),, +26640,species,lotsta1,Long-tailed Starling,Aplonis magna,Passeriformes,Sturnidae (Starlings),, +26643,species,whesta2,White-eyed Starling,Aplonis brunneicapillus,Passeriformes,Sturnidae (Starlings),, +26644,species,brwsta1,Brown-winged Starling,Aplonis grandis,Passeriformes,Sturnidae (Starlings),, +26648,species,sacsta1,Makira Starling,Aplonis dichroa,Passeriformes,Sturnidae (Starlings),, +26649,species,ruwsta1,Rusty-winged Starling,Aplonis zelandica,Passeriformes,Sturnidae (Starlings),, +26653,species,strsta1,Striated Starling,Aplonis striata,Passeriformes,Sturnidae (Starlings),, +26656,species,pohsta1,Pohnpei Starling,Aplonis pelzelni,Passeriformes,Sturnidae (Starlings),, +26657,species,sinsta1,Singing Starling,Aplonis cantoroides,Passeriformes,Sturnidae (Starlings),, +26658,species,mousta1,Mountain Starling,Aplonis santovestris,Passeriformes,Sturnidae (Starlings),, +26659,species,asgsta1,Asian Glossy Starling,Aplonis panayensis,Passeriformes,Sturnidae (Starlings),, +26674,species,molsta1,Moluccan Starling,Aplonis mysolensis,Passeriformes,Sturnidae (Starlings),, +26677,species,shtsta1,Short-tailed Starling,Aplonis minor,Passeriformes,Sturnidae (Starlings),, +26678,species,micsta1,Micronesian Starling,Aplonis opaca,Passeriformes,Sturnidae (Starlings),, +26686,species,polsta1,Polynesian Starling,Aplonis tabuensis,Passeriformes,Sturnidae (Starlings),, +26687,issf,polsta2,Polynesian Starling (Polynesian),Aplonis tabuensis [tabuensis Group],Passeriformes,Sturnidae (Starlings),,polsta1 +26699,issf,polsta3,Polynesian Starling (Manua),Aplonis tabuensis manuae,Passeriformes,Sturnidae (Starlings),,polsta1 +26700,species,samsta1,Samoan Starling,Aplonis atrifusca,Passeriformes,Sturnidae (Starlings),, +26701,species,kossta1,Kosrae Starling,Aplonis corvina,Passeriformes,Sturnidae (Starlings),, +26702,species,rarsta1,Rarotonga Starling,Aplonis cinerascens,Passeriformes,Sturnidae (Starlings),, +26703,species,myssta1,Mysterious Starling,Aplonis mavornata,Passeriformes,Sturnidae (Starlings),, +26704,species,norsta1,Norfolk Starling,Aplonis fusca,Passeriformes,Sturnidae (Starlings),, +26705,species,raista2,Raiatea Starling,Aplonis ulietensis,Passeriformes,Sturnidae (Starlings),, +26706,spuh,aploni1,Aplonis sp.,Aplonis sp.,Passeriformes,Sturnidae (Starlings),, +26707,species,sulmyn1,Sulawesi Myna,Basilornis celebensis,Passeriformes,Sturnidae (Starlings),, +26708,species,helmyn1,Helmeted Myna,Basilornis galeatus,Passeriformes,Sturnidae (Starlings),, +26709,species,locmyn1,Long-crested Myna,Basilornis corythaix,Passeriformes,Sturnidae (Starlings),, +26710,species,apomyn2,Apo Myna,Goodfellowia miranda,Passeriformes,Sturnidae (Starlings),, +26711,species,coleto1,Coleto,Sarcops calvus,Passeriformes,Sturnidae (Starlings),, +26715,species,whnmyn1,White-necked Myna,Streptocitta albicollis,Passeriformes,Sturnidae (Starlings),, +26716,issf,whnmyn2,White-necked Myna (Northern),Streptocitta albicollis torquata,Passeriformes,Sturnidae (Starlings),,whnmyn1 +26717,issf,whnmyn3,White-necked Myna (Southern),Streptocitta albicollis albicollis,Passeriformes,Sturnidae (Starlings),,whnmyn1 +26718,species,baemyn1,Bare-eyed Myna,Streptocitta albertinae,Passeriformes,Sturnidae (Starlings),, +26719,species,yefmyn1,Yellow-faced Myna,Mino dumontii,Passeriformes,Sturnidae (Starlings),, +26720,species,golmyn1,Golden Myna,Mino anais,Passeriformes,Sturnidae (Starlings),, +26724,species,lotmyn1,Long-tailed Myna,Mino kreffti,Passeriformes,Sturnidae (Starlings),, +26725,species,gocmyn1,Golden-crested Myna,Ampeliceps coronatus,Passeriformes,Sturnidae (Starlings),, +26726,species,ceymyn1,Sri Lanka Myna,Gracula ptilogenys,Passeriformes,Sturnidae (Starlings),, +26727,species,hilmyn,Common Hill Myna,Gracula religiosa,Passeriformes,Sturnidae (Starlings),, +26728,issf,cohmyn1,Common Hill Myna (Common),Gracula religiosa [religiosa Group],Passeriformes,Sturnidae (Starlings),,hilmyn +26735,issf,cohmyn2,Common Hill Myna (Tenggara),Gracula religiosa venerata,Passeriformes,Sturnidae (Starlings),,hilmyn +26736,species,sohmyn1,Southern Hill Myna,Gracula indica,Passeriformes,Sturnidae (Starlings),, +26737,species,engmyn1,Enggano Myna,Gracula enganensis,Passeriformes,Sturnidae (Starlings),, +26738,species,niamyn1,Nias Myna,Gracula robusta,Passeriformes,Sturnidae (Starlings),, +26739,species,eursta,European Starling,Sturnus vulgaris,Passeriformes,Sturnidae (Starlings),, +26752,species,sposta1,Spotless Starling,Sturnus unicolor,Passeriformes,Sturnidae (Starlings),, +26753,slash,y00626,European/Spotless Starling,Sturnus vulgaris/unicolor,Passeriformes,Sturnidae (Starlings),, +26754,species,watsta1,Wattled Starling,Creatophora cinerea,Passeriformes,Sturnidae (Starlings),, +26755,species,rossta2,Rosy Starling,Pastor roseus,Passeriformes,Sturnidae (Starlings),, +26756,species,dausta1,Daurian Starling,Agropsar sturninus,Passeriformes,Sturnidae (Starlings),, +26757,species,chcsta1,Chestnut-cheeked Starling,Agropsar philippensis,Passeriformes,Sturnidae (Starlings),, +26758,slash,y00756,Daurian/Chestnut-cheeked Starling,Agropsar sturninus/philippensis,Passeriformes,Sturnidae (Starlings),, +26759,species,bkcsta1,Black-collared Starling,Gracupica nigricollis,Passeriformes,Sturnidae (Starlings),, +26760,species,aspsta2,Asian Pied Starling,Gracupica contra,Passeriformes,Sturnidae (Starlings),, +26761,issf,aspsta1,Asian Pied Starling (Asian),Gracupica contra [contra Group],Passeriformes,Sturnidae (Starlings),,aspsta2 +26766,issf,aspsta3,Asian Pied Starling (Javan),Gracupica contra jalla,Passeriformes,Sturnidae (Starlings),,aspsta2 +26767,species,whfsta2,White-faced Starling,Sturnornis albofrontatus,Passeriformes,Sturnidae (Starlings),, +26768,species,balmyn1,Bali Myna,Leucopsar rothschildi,Passeriformes,Sturnidae (Starlings),, +26769,species,rodsta2,Rodrigues Starling,Necropsar rodericanus,Passeriformes,Sturnidae (Starlings),, +26770,species,reusta1,Reunion Starling,Fregilupus varius,Passeriformes,Sturnidae (Starlings),, +26771,species,whssta2,White-shouldered Starling,Sturnia sinensis,Passeriformes,Sturnidae (Starlings),, +26772,species,brasta1,Brahminy Starling,Sturnia pagodarum,Passeriformes,Sturnidae (Starlings),, +26773,species,chtsta2,Chestnut-tailed Starling,Sturnia malabarica,Passeriformes,Sturnidae (Starlings),, +26776,species,malsta1,Malabar Starling,Sturnia blythii,Passeriformes,Sturnidae (Starlings),, +26777,slash,y00824,Chestnut-tailed/Malabar Starling,Sturnia malabarica/blythii,Passeriformes,Sturnidae (Starlings),, +26778,species,whhsta2,White-headed Starling,Sturnia erythropygia,Passeriformes,Sturnidae (Starlings),, +26782,species,rebsta1,Red-billed Starling,Spodiopsar sericeus,Passeriformes,Sturnidae (Starlings),, +26783,species,whcsta1,White-cheeked Starling,Spodiopsar cineraceus,Passeriformes,Sturnidae (Starlings),, +26784,species,commyn,Common Myna,Acridotheres tristis,Passeriformes,Sturnidae (Starlings),, +26787,species,banmyn1,Bank Myna,Acridotheres ginginianus,Passeriformes,Sturnidae (Starlings),, +26788,species,vibsta3,Vinous-breasted Starling,Acridotheres burmannicus,Passeriformes,Sturnidae (Starlings),, +26789,issf,vibsta1,Vinous-breasted Starling (Burmese),Acridotheres burmannicus burmannicus,Passeriformes,Sturnidae (Starlings),,vibsta3 +26790,issf,vibsta4,Vinous-breasted Starling (Vinous-breasted),Acridotheres burmannicus leucocephalus,Passeriformes,Sturnidae (Starlings),,vibsta3 +26791,species,bkwsta1,Black-winged Starling,Acridotheres melanopterus,Passeriformes,Sturnidae (Starlings),, +26792,issf,bkwsta2,Black-winged Starling (Black-winged),Acridotheres melanopterus melanopterus,Passeriformes,Sturnidae (Starlings),,bkwsta1 +26793,issf,bkwsta3,Black-winged Starling (Gray-backed),Acridotheres melanopterus tricolor,Passeriformes,Sturnidae (Starlings),,bkwsta1 +26794,issf,bkwsta4,Black-winged Starling (Gray-rumped),Acridotheres melanopterus tertius,Passeriformes,Sturnidae (Starlings),,bkwsta1 +26795,species,junmyn1,Jungle Myna,Acridotheres fuscus,Passeriformes,Sturnidae (Starlings),, +26800,slash,y00823,Common/Jungle Myna,Acridotheres tristis/fuscus,Passeriformes,Sturnidae (Starlings),, +26801,species,whvmyn,Javan Myna,Acridotheres javanicus,Passeriformes,Sturnidae (Starlings),, +26802,species,pabmyn1,Pale-bellied Myna,Acridotheres cinereus,Passeriformes,Sturnidae (Starlings),, +26803,species,colmyn1,Collared Myna,Acridotheres albocinctus,Passeriformes,Sturnidae (Starlings),, +26804,species,whvmyn1,Great Myna,Acridotheres grandis,Passeriformes,Sturnidae (Starlings),, +26805,hybrid,x00893,Javan x Great Myna (hybrid),Acridotheres javanicus x grandis,Passeriformes,Sturnidae (Starlings),, +26806,species,cremyn,Crested Myna,Acridotheres cristatellus,Passeriformes,Sturnidae (Starlings),, +26810,slash,y01011,Jungle/Crested Myna,Acridotheres fuscus/cristatellus,Passeriformes,Sturnidae (Starlings),, +26811,spuh,blkmyn1,black myna sp.,Acridotheres sp. (black myna sp.),Passeriformes,Sturnidae (Starlings),, +26812,spuh,acrido1,Acridotheres sp.,Acridotheres sp.,Passeriformes,Sturnidae (Starlings),, +26813,species,madsta1,Madagascar Starling,Hartlaubius auratus,Passeriformes,Sturnidae (Starlings),, +26814,species,vibsta2,Violet-backed Starling,Cinnyricinclus leucogaster,Passeriformes,Sturnidae (Starlings),, +26818,species,slbsta1,Slender-billed Starling,Onychognathus tenuirostris,Passeriformes,Sturnidae (Starlings),, +26821,species,pawsta1,Pale-winged Starling,Onychognathus nabouroup,Passeriformes,Sturnidae (Starlings),, +26822,species,neusta1,Neumann's Starling,Onychognathus neumanni,Passeriformes,Sturnidae (Starlings),, +26825,species,rewsta1,Red-winged Starling,Onychognathus morio,Passeriformes,Sturnidae (Starlings),, +26828,species,chwsta1,Chestnut-winged Starling,Onychognathus fulgidus,Passeriformes,Sturnidae (Starlings),, +26829,issf,chwsta2,Chestnut-winged Starling (Chestnut-winged),Onychognathus fulgidus fulgidus,Passeriformes,Sturnidae (Starlings),,chwsta1 +26830,issf,chwsta3,Chestnut-winged Starling (Hartlaub's),Onychognathus fulgidus hartlaubii/intermedius,Passeriformes,Sturnidae (Starlings),,chwsta1 +26833,species,walsta1,Waller's Starling,Onychognathus walleri,Passeriformes,Sturnidae (Starlings),, +26834,issf,walsta3,Waller's Starling (Preuss's),Onychognathus walleri preussi,Passeriformes,Sturnidae (Starlings),,walsta1 +26835,issf,walsta4,Waller's Starling (Albertine),Onychognathus walleri elgonensis,Passeriformes,Sturnidae (Starlings),,walsta1 +26836,issf,walsta5,Waller's Starling (Waller's),Onychognathus walleri walleri,Passeriformes,Sturnidae (Starlings),,walsta1 +26837,species,trista1,Tristram's Starling,Onychognathus tristramii,Passeriformes,Sturnidae (Starlings),, +26838,species,whbsta1,White-billed Starling,Onychognathus albirostris,Passeriformes,Sturnidae (Starlings),, +26839,species,brcsta1,Bristle-crowned Starling,Onychognathus salvadorii,Passeriformes,Sturnidae (Starlings),, +26840,species,somsta1,Somali Starling,Onychognathus blythii,Passeriformes,Sturnidae (Starlings),, +26841,species,socsta1,Socotra Starling,Onychognathus frater,Passeriformes,Sturnidae (Starlings),, +26842,species,spwsta1,Spot-winged Starling,Saroglossa spilopterus,Passeriformes,Sturnidae (Starlings),, +26843,species,babsta1,Babbling Starling,Neocichla gutturalis,Passeriformes,Sturnidae (Starlings),, +26844,issf,babsta2,Babbling Starling (Western),Neocichla gutturalis gutturalis,Passeriformes,Sturnidae (Starlings),,babsta1 +26845,issf,babsta3,Babbling Starling (Eastern),Neocichla gutturalis angusta,Passeriformes,Sturnidae (Starlings),,babsta1 +26846,species,whcsta2,White-collared Starling,Grafisia torquata,Passeriformes,Sturnidae (Starlings),, +26847,species,magsta1,Magpie Starling,Speculipastor bicolor,Passeriformes,Sturnidae (Starlings),, +26848,species,shasta2,Sharpe's Starling,Pholia sharpii,Passeriformes,Sturnidae (Starlings),, +26849,species,abbsta2,Abbott's Starling,Poeoptera femoralis,Passeriformes,Sturnidae (Starlings),, +26850,species,natsta1,Narrow-tailed Starling,Poeoptera lugubris,Passeriformes,Sturnidae (Starlings),, +26851,species,stusta1,Stuhlmann's Starling,Poeoptera stuhlmanni,Passeriformes,Sturnidae (Starlings),, +26852,species,kensta1,Kenrick's Starling,Poeoptera kenricki,Passeriformes,Sturnidae (Starlings),, +26855,species,bbgsta1,Black-bellied Starling,Notopholia corusca,Passeriformes,Sturnidae (Starlings),, +26858,species,phgsta1,Purple-headed Starling,Hylopsar purpureiceps,Passeriformes,Sturnidae (Starlings),, +26859,species,ctgsta1,Copper-tailed Starling,Hylopsar cupreocauda,Passeriformes,Sturnidae (Starlings),, +26860,species,hilsta1,Hildebrandt's Starling,Lamprotornis hildebrandti,Passeriformes,Sturnidae (Starlings),, +26861,species,shesta1,Shelley's Starling,Lamprotornis shelleyi,Passeriformes,Sturnidae (Starlings),, +26862,species,bugsta1,Burchell's Starling,Lamprotornis australis,Passeriformes,Sturnidae (Starlings),, +26863,species,ruegls1,Rüppell's Starling,Lamprotornis purpuroptera,Passeriformes,Sturnidae (Starlings),, +26866,species,ltgsta1,Long-tailed Glossy Starling,Lamprotornis caudatus,Passeriformes,Sturnidae (Starlings),, +26867,species,megsta1,Meves's Starling,Lamprotornis mevesii,Passeriformes,Sturnidae (Starlings),, +26868,issf,mevgls1,Meves's Starling (Meves's),Lamprotornis mevesii mevesii,Passeriformes,Sturnidae (Starlings),,megsta1 +26869,issf,mevsta1,Meves's Starling (Cunene),Lamprotornis mevesii violacior,Passeriformes,Sturnidae (Starlings),,megsta1 +26870,issf,mevgls2,Meves's Starling (Benguela),Lamprotornis mevesii benguelensis,Passeriformes,Sturnidae (Starlings),,megsta1 +26871,species,ashsta2,Ashy Starling,Lamprotornis unicolor,Passeriformes,Sturnidae (Starlings),, +26872,species,spgsta1,Splendid Starling,Lamprotornis splendidus,Passeriformes,Sturnidae (Starlings),, +26877,species,prgsta1,Principe Starling,Lamprotornis ornatus,Passeriformes,Sturnidae (Starlings),, +26878,species,gobsta5,Golden-breasted Starling,Lamprotornis regius,Passeriformes,Sturnidae (Starlings),, +26879,species,supsta1,Superb Starling,Lamprotornis superbus,Passeriformes,Sturnidae (Starlings),, +26880,species,chbsta1,Chestnut-bellied Starling,Lamprotornis pulcher,Passeriformes,Sturnidae (Starlings),, +26881,species,afpsta1,African Pied Starling,Lamprotornis bicolor,Passeriformes,Sturnidae (Starlings),, +26882,species,whcsta3,White-crowned Starling,Lamprotornis albicapillus,Passeriformes,Sturnidae (Starlings),, +26885,species,fissta1,Fischer's Starling,Lamprotornis fischeri,Passeriformes,Sturnidae (Starlings),, +26886,species,lbesta1,Lesser Blue-eared Starling,Lamprotornis chloropterus,Passeriformes,Sturnidae (Starlings),, +26887,issf,lbegls1,Lesser Blue-eared Starling (Lesser),Lamprotornis chloropterus chloropterus,Passeriformes,Sturnidae (Starlings),,lbesta1 +26888,issf,lbegls2,Lesser Blue-eared Starling (Miombo),Lamprotornis chloropterus elisabeth,Passeriformes,Sturnidae (Starlings),,lbesta1 +26889,species,stgsta1,Sharp-tailed Starling,Lamprotornis acuticaudus,Passeriformes,Sturnidae (Starlings),, +26892,species,gbesta1,Greater Blue-eared Starling,Lamprotornis chalybaeus,Passeriformes,Sturnidae (Starlings),, +26897,species,emesta1,Emerald Starling,Lamprotornis iris,Passeriformes,Sturnidae (Starlings),, +26898,species,pugsta1,Purple Starling,Lamprotornis purpureus,Passeriformes,Sturnidae (Starlings),, +26901,species,capgls1,Cape Starling,Lamprotornis nitens,Passeriformes,Sturnidae (Starlings),, +26902,species,btgsta1,Bronze-tailed Starling,Lamprotornis chalcurus,Passeriformes,Sturnidae (Starlings),, +26905,spuh,glossy1,Lamprotornis sp.,Lamprotornis sp.,Passeriformes,Sturnidae (Starlings),, +26906,spuh,y00757,myna/starling sp.,Sturnidae sp.,Passeriformes,Sturnidae (Starlings),, +26907,species,blumoc,Blue Mockingbird,Melanotis caerulescens,Passeriformes,Mimidae (Mockingbirds and Thrashers),"Catbirds, Mockingbirds, and Thrashers", +26910,species,bawmoc1,Blue-and-white Mockingbird,Melanotis hypoleucus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26911,species,blacat1,Black Catbird,Melanoptila glabrirostris,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26912,species,grycat,Gray Catbird,Dumetella carolinensis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26913,species,whbthr1,White-breasted Thrasher,Ramphocinclus brachyurus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26914,issf,whbthr3,White-breasted Thrasher (Martinique),Ramphocinclus brachyurus brachyurus,Passeriformes,Mimidae (Mockingbirds and Thrashers),,whbthr1 +26915,issf,whbthr4,White-breasted Thrasher (St. Lucia),Ramphocinclus brachyurus sanctaeluciae,Passeriformes,Mimidae (Mockingbirds and Thrashers),,whbthr1 +26916,species,scbthr,Scaly-breasted Thrasher,Allenia fusca,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26922,species,peethr1,Pearly-eyed Thrasher,Margarops fuscatus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26927,slash,y01158,Scaly-breasted/Pearly-eyed Thrasher,Allenia fusca/Margarops fuscatus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26928,species,brotre1,Brown Trembler,Cinclocerthia ruficauda,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26933,species,gratre1,Gray Trembler,Cinclocerthia gutturalis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26936,slash,y01010,Brown/Gray Trembler,Cinclocerthia ruficauda/gutturalis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26937,species,cubthr,Curve-billed Thrasher,Toxostoma curvirostre,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26938,issf,cubthr1,Curve-billed Thrasher (curvirostre Group),Toxostoma curvirostre [curvirostre Group],Passeriformes,Mimidae (Mockingbirds and Thrashers),,cubthr +26942,issf,cubthr2,Curve-billed Thrasher (palmeri Group),Toxostoma curvirostre [palmeri Group],Passeriformes,Mimidae (Mockingbirds and Thrashers),,cubthr +26947,species,ocethr1,Ocellated Thrasher,Toxostoma ocellatum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26950,species,brnthr,Brown Thrasher,Toxostoma rufum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26953,species,lobthr,Long-billed Thrasher,Toxostoma longirostre,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26956,hybrid,x00971,Curve-billed x Long-billed Thrasher (hybrid),Toxostoma curvirostre x longirostre,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26957,slash,y00329,Brown/Long-billed Thrasher,Toxostoma rufum/longirostre,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26958,species,cozthr1,Cozumel Thrasher,Toxostoma guttatum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26959,species,benthr,Bendire's Thrasher,Toxostoma bendirei,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26963,slash,y00330,Curve-billed/Bendire's Thrasher,Toxostoma curvirostre/bendirei,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26964,species,grathr1,Gray Thrasher,Toxostoma cinereum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26967,species,calthr,California Thrasher,Toxostoma redivivum,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26970,species,lecthr,LeConte's Thrasher,Toxostoma lecontei,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26971,issf,lecthr1,LeConte's Thrasher (LeConte's),Toxostoma lecontei lecontei/macmillanorum,Passeriformes,Mimidae (Mockingbirds and Thrashers),,lecthr +26974,issf,lecthr2,LeConte's Thrasher (Vizcaino),Toxostoma lecontei arenicola,Passeriformes,Mimidae (Mockingbirds and Thrashers),,lecthr +26975,species,crithr,Crissal Thrasher,Toxostoma crissale,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26980,spuh,toxost1,Toxostoma sp.,Toxostoma sp.,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26981,species,sagthr,Sage Thrasher,Oreoscoptes montanus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26982,species,chimoc1,Chilean Mockingbird,Mimus thenca,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26983,species,patmoc1,Patagonian Mockingbird,Mimus patagonicus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26984,species,chbmoc1,Chalk-browed Mockingbird,Mimus saturninus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26989,species,whbmoc1,White-banded Mockingbird,Mimus triurus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26990,species,brbmoc1,Brown-backed Mockingbird,Mimus dorsalis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26991,species,bahmoc,Bahama Mockingbird,Mimus gundlachii,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +26994,species,galmoc1,Galapagos Mockingbird,Mimus parvulus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27001,species,chamoc1,Floreana Mockingbird,Mimus trifasciatus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27002,species,hoomoc1,Española Mockingbird,Mimus macdonaldi,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27003,species,chamoc2,San Cristobal Mockingbird,Mimus melanotis,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27004,species,lotmoc1,Long-tailed Mockingbird,Mimus longicaudatus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27009,species,socmoc1,Socorro Mockingbird,Mimus graysoni,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27010,species,tromoc,Tropical Mockingbird,Mimus gilvus,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27011,issf,tromoc1,Tropical Mockingbird (Tropical),Mimus gilvus [gilvus Group],Passeriformes,Mimidae (Mockingbirds and Thrashers),,tromoc +27021,issf,tromoc2,Tropical Mockingbird (San Andres),Mimus gilvus magnirostris,Passeriformes,Mimidae (Mockingbirds and Thrashers),,tromoc +27022,species,normoc,Northern Mockingbird,Mimus polyglottos,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27026,hybrid,x00907,Bahama x Northern Mockingbird (hybrid),Mimus gundlachii x polyglottos,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27027,hybrid,x00703,Tropical x Northern Mockingbird (hybrid),Mimus gilvus x polyglottos,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27028,slash,y01122,Tropical/Northern Mockingbird,Mimus gilvus/polyglottos,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27029,spuh,mimida1,Mimidae sp.,Mimidae sp.,Passeriformes,Mimidae (Mockingbirds and Thrashers),, +27030,species,granda1,Grandala,Grandala coelicolor,Passeriformes,Turdidae (Thrushes and Allies),Thrushes, +27031,species,easblu,Eastern Bluebird,Sialia sialis,Passeriformes,Turdidae (Thrushes and Allies),, +27032,issf,easblu1,Eastern Bluebird (Eastern),Sialia sialis sialis/bermudensis,Passeriformes,Turdidae (Thrushes and Allies),,easblu +27035,issf,easblu2,Eastern Bluebird (Mexican),Sialia sialis [guatemalae Group],Passeriformes,Turdidae (Thrushes and Allies),,easblu +27041,species,wesblu,Western Bluebird,Sialia mexicana,Passeriformes,Turdidae (Thrushes and Allies),, +27048,hybrid,x00972,Eastern x Western Bluebird (hybrid),Sialia sialis x mexicana,Passeriformes,Turdidae (Thrushes and Allies),, +27049,species,moublu,Mountain Bluebird,Sialia currucoides,Passeriformes,Turdidae (Thrushes and Allies),, +27050,hybrid,x00864,Eastern x Mountain Bluebird (hybrid),Sialia sialis x currucoides,Passeriformes,Turdidae (Thrushes and Allies),, +27051,hybrid,x00204,Western x Mountain Bluebird (hybrid),Sialia mexicana x currucoides,Passeriformes,Turdidae (Thrushes and Allies),, +27052,spuh,bluebi,bluebird sp.,Sialia sp.,Passeriformes,Turdidae (Thrushes and Allies),, +27053,species,rufthr1,Rufous Flycatcher-Thrush,Neocossyphus fraseri,Passeriformes,Turdidae (Thrushes and Allies),, +27057,species,fifthr1,Finsch's Flycatcher-Thrush,Neocossyphus finschi,Passeriformes,Turdidae (Thrushes and Allies),, +27058,species,rtathr1,Red-tailed Ant-Thrush,Neocossyphus rufus,Passeriformes,Turdidae (Thrushes and Allies),, +27059,issf,retant3,Red-tailed Ant-Thrush (Red-tailed),Neocossyphus rufus gabunensis,Passeriformes,Turdidae (Thrushes and Allies),,rtathr1 +27060,issf,retant4,Red-tailed Ant-Thrush (Coastal),Neocossyphus rufus rufus,Passeriformes,Turdidae (Thrushes and Allies),,rtathr1 +27061,species,wtathr1,White-tailed Ant-Thrush,Neocossyphus poensis,Passeriformes,Turdidae (Thrushes and Allies),, +27067,species,towsol,Townsend's Solitaire,Myadestes townsendi,Passeriformes,Turdidae (Thrushes and Allies),, +27070,species,brbsol1,Brown-backed Solitaire,Myadestes occidentalis,Passeriformes,Turdidae (Thrushes and Allies),, +27074,species,cubsol1,Cuban Solitaire,Myadestes elisabeth,Passeriformes,Turdidae (Thrushes and Allies),, +27077,species,rutsol1,Rufous-throated Solitaire,Myadestes genibarbis,Passeriformes,Turdidae (Thrushes and Allies),, +27078,issf,rutsol2,Rufous-throated Solitaire (Rufous-throated),Myadestes genibarbis [genibarbis Group],Passeriformes,Turdidae (Thrushes and Allies),,rutsol1 +27084,issf,rutsol3,Rufous-throated Solitaire (St. Vincent),Myadestes genibarbis sibilans,Passeriformes,Turdidae (Thrushes and Allies),,rutsol1 +27085,species,blfsol1,Black-faced Solitaire,Myadestes melanops,Passeriformes,Turdidae (Thrushes and Allies),, +27086,species,varsol1,Varied Solitaire,Myadestes coloratus,Passeriformes,Turdidae (Thrushes and Allies),, +27087,species,slcsol1,Slate-colored Solitaire,Myadestes unicolor,Passeriformes,Turdidae (Thrushes and Allies),, +27090,species,andsol1,Andean Solitaire,Myadestes ralloides,Passeriformes,Turdidae (Thrushes and Allies),, +27091,issf,andsol2,Andean Solitaire (plumbeiceps),Myadestes ralloides plumbeiceps,Passeriformes,Turdidae (Thrushes and Allies),,andsol1 +27092,issf,andsol3,Andean Solitaire (venezuelensis/candelae),Myadestes ralloides venezuelensis/candelae,Passeriformes,Turdidae (Thrushes and Allies),,andsol1 +27095,issf,andsol4,Andean Solitaire (ralloides),Myadestes ralloides ralloides,Passeriformes,Turdidae (Thrushes and Allies),,andsol1 +27096,species,kamao,Kamao,Myadestes myadestinus,Passeriformes,Turdidae (Thrushes and Allies),, +27097,species,amaui,Amaui,Myadestes woahensis,Passeriformes,Turdidae (Thrushes and Allies),, +27098,species,olomao,Olomao,Myadestes lanaiensis,Passeriformes,Turdidae (Thrushes and Allies),, +27101,species,omao,Omao,Myadestes obscurus,Passeriformes,Turdidae (Thrushes and Allies),, +27102,species,puaioh,Puaiohi,Myadestes palmeri,Passeriformes,Turdidae (Thrushes and Allies),, +27103,species,lotthr1,Long-tailed Thrush,Zoothera dixoni,Passeriformes,Turdidae (Thrushes and Allies),, +27104,species,alpthr1,Alpine Thrush,Zoothera mollissima,Passeriformes,Turdidae (Thrushes and Allies),, +27105,species,himthr1,Himalayan Thrush,Zoothera salimalii,Passeriformes,Turdidae (Thrushes and Allies),, +27106,slash,y01005,Alpine/Himalayan Thrush,Zoothera mollissima/salimalii,Passeriformes,Turdidae (Thrushes and Allies),, +27107,species,sicthr1,Sichuan Thrush,Zoothera griseiceps,Passeriformes,Turdidae (Thrushes and Allies),, +27108,slash,y01006,Alpine/Sichuan Thrush,Zoothera mollissima/griseiceps,Passeriformes,Turdidae (Thrushes and Allies),, +27109,slash,y01052,Alpine/Himalayan/Sichuan Thrush,Zoothera mollissima/salimalii/griseiceps,Passeriformes,Turdidae (Thrushes and Allies),, +27110,species,geomal1,Geomalia,Zoothera heinrichi,Passeriformes,Turdidae (Thrushes and Allies),, +27111,species,dasthr1,Dark-sided Thrush,Zoothera marginata,Passeriformes,Turdidae (Thrushes and Allies),, +27112,species,lobthr1,Long-billed Thrush,Zoothera monticola,Passeriformes,Turdidae (Thrushes and Allies),, +27115,species,evethr1,Everett's Thrush,Zoothera everetti,Passeriformes,Turdidae (Thrushes and Allies),, +27116,species,sunthr1,Sunda Thrush,Zoothera andromedae,Passeriformes,Turdidae (Thrushes and Allies),, +27117,species,scathr2,White's Thrush,Zoothera aurea,Passeriformes,Turdidae (Thrushes and Allies),, +27120,species,scathr8,Scaly Thrush,Zoothera dauma,Passeriformes,Turdidae (Thrushes and Allies),, +27121,issf,scathr3,Scaly Thrush (Scaly),Zoothera dauma dauma,Passeriformes,Turdidae (Thrushes and Allies),,scathr8 +27122,issf,scathr7,Scaly Thrush (Horsfield's),Zoothera dauma horsfieldi,Passeriformes,Turdidae (Thrushes and Allies),,scathr8 +27123,issf,scathr9,Scaly Thrush (Iriomotejima),Zoothera dauma iriomotensis,Passeriformes,Turdidae (Thrushes and Allies),,scathr8 +27124,slash,scathr1,White's/Scaly Thrush,Zoothera aurea/dauma,Passeriformes,Turdidae (Thrushes and Allies),, +27125,species,scathr6,Amami Thrush,Zoothera major,Passeriformes,Turdidae (Thrushes and Allies),, +27126,species,scathr4,Nilgiri Thrush,Zoothera neilgherriensis,Passeriformes,Turdidae (Thrushes and Allies),, +27127,species,scathr5,Sri Lanka Thrush,Zoothera imbricata,Passeriformes,Turdidae (Thrushes and Allies),, +27128,species,bonthr2,Bonin Thrush,Zoothera terrestris,Passeriformes,Turdidae (Thrushes and Allies),, +27129,species,sacthr2,Makira Thrush,Zoothera margaretae,Passeriformes,Turdidae (Thrushes and Allies),, +27130,species,sacthr3,Guadalcanal Thrush,Zoothera turipavae,Passeriformes,Turdidae (Thrushes and Allies),, +27131,species,oltthr1,Bassian Thrush,Zoothera lunulata,Passeriformes,Turdidae (Thrushes and Allies),, +27135,species,nebthr1,New Britain Thrush,Zoothera talaseae,Passeriformes,Turdidae (Thrushes and Allies),, +27136,species,bouthr1,Bougainville Thrush,Zoothera atrigena,Passeriformes,Turdidae (Thrushes and Allies),, +27137,species,rutthr1,Russet-tailed Thrush,Zoothera heinei,Passeriformes,Turdidae (Thrushes and Allies),, +27138,issf,rutthr2,Russet-tailed Thrush (Russet-tailed),Zoothera heinei [heinei Group],Passeriformes,Turdidae (Thrushes and Allies),,rutthr1 +27142,issf,rutthr3,Russet-tailed Thrush (Mussau),Zoothera heinei eichhorni,Passeriformes,Turdidae (Thrushes and Allies),,rutthr1 +27143,slash,y01007,Bassian/Russet-tailed Thrush,Zoothera lunulata/heinei,Passeriformes,Turdidae (Thrushes and Allies),, +27144,species,fabthr1,Fawn-breasted Thrush,Zoothera machiki,Passeriformes,Turdidae (Thrushes and Allies),, +27145,spuh,zoothe1,Zoothera sp.,Zoothera sp.,Passeriformes,Turdidae (Thrushes and Allies),, +27146,species,sulthr1,Sulawesi Thrush,Cataponera turdoides,Passeriformes,Turdidae (Thrushes and Allies),, +27151,species,fruit-2,Fruit-hunter,Chlamydochaera jefferyi,Passeriformes,Turdidae (Thrushes and Allies),, +27152,species,purcoc1,Purple Cochoa,Cochoa purpurea,Passeriformes,Turdidae (Thrushes and Allies),, +27153,species,grecoc1,Green Cochoa,Cochoa viridis,Passeriformes,Turdidae (Thrushes and Allies),, +27154,slash,y01009,Purple/Green Cochoa,Cochoa purpurea/viridis,Passeriformes,Turdidae (Thrushes and Allies),, +27155,species,sumcoc1,Sumatran Cochoa,Cochoa beccarii,Passeriformes,Turdidae (Thrushes and Allies),, +27156,species,javcoc1,Javan Cochoa,Cochoa azurea,Passeriformes,Turdidae (Thrushes and Allies),, +27157,species,varthr,Varied Thrush,Ixoreus naevius,Passeriformes,Turdidae (Thrushes and Allies),, +27161,species,bbnthr1,Black-billed Nightingale-Thrush,Catharus gracilirostris,Passeriformes,Turdidae (Thrushes and Allies),, +27164,species,obnthr1,Orange-billed Nightingale-Thrush,Catharus aurantiirostris,Passeriformes,Turdidae (Thrushes and Allies),, +27165,issf,orbnit1,Orange-billed Nightingale-Thrush (Brown-headed),Catharus aurantiirostris [melpomene Group],Passeriformes,Turdidae (Thrushes and Allies),,obnthr1 +27171,issf,orbnit2,Orange-billed Nightingale-Thrush (Gray-headed),Catharus aurantiirostris [griseiceps Group],Passeriformes,Turdidae (Thrushes and Allies),,obnthr1 +27175,issf,orbnit3,Orange-billed Nightingale-Thrush (Orange-billed),Catharus aurantiirostris [aurantiirostris Group],Passeriformes,Turdidae (Thrushes and Allies),,obnthr1 +27182,species,sbnthr1,Slaty-backed Nightingale-Thrush,Catharus fuscater,Passeriformes,Turdidae (Thrushes and Allies),, +27183,issf,slbnit2,Slaty-backed Nightingale-Thrush (Black-backed),Catharus fuscater hellmayri,Passeriformes,Turdidae (Thrushes and Allies),,sbnthr1 +27184,issf,slbnit1,Slaty-backed Nightingale-Thrush (Slaty-backed),Catharus fuscater [fuscater Group],Passeriformes,Turdidae (Thrushes and Allies),,sbnthr1 +27191,species,runthr1,Russet Nightingale-Thrush,Catharus occidentalis,Passeriformes,Turdidae (Thrushes and Allies),, +27196,species,rcnthr1,Ruddy-capped Nightingale-Thrush,Catharus frantzii,Passeriformes,Turdidae (Thrushes and Allies),, +27204,species,bhnthr1,Black-headed Nightingale-Thrush,Catharus mexicanus,Passeriformes,Turdidae (Thrushes and Allies),, +27208,species,spnthr1,Spotted Nightingale-Thrush,Catharus dryas,Passeriformes,Turdidae (Thrushes and Allies),, +27209,issf,sponit1,Spotted Nightingale-Thrush (Gould's),Catharus dryas dryas/ovandensis,Passeriformes,Turdidae (Thrushes and Allies),,spnthr1 +27212,issf,sponit2,Spotted Nightingale-Thrush (Sclater's),Catharus dryas maculatus/blakei,Passeriformes,Turdidae (Thrushes and Allies),,spnthr1 +27215,species,veery,Veery,Catharus fuscescens,Passeriformes,Turdidae (Thrushes and Allies),, +27220,species,gycthr,Gray-cheeked Thrush,Catharus minimus,Passeriformes,Turdidae (Thrushes and Allies),, +27223,species,bicthr,Bicknell's Thrush,Catharus bicknelli,Passeriformes,Turdidae (Thrushes and Allies),, +27224,hybrid,x00865,Veery x Bicknell's Thrush (hybrid),Catharus fuscescens x bicknelli,Passeriformes,Turdidae (Thrushes and Allies),, +27225,slash,y00225,Gray-cheeked/Bicknell's Thrush,Catharus minimus/bicknelli,Passeriformes,Turdidae (Thrushes and Allies),, +27226,species,swathr,Swainson's Thrush,Catharus ustulatus,Passeriformes,Turdidae (Thrushes and Allies),, +27227,issf,swathr1,Swainson's Thrush (Russet-backed),Catharus ustulatus [ustulatus Group],Passeriformes,Turdidae (Thrushes and Allies),,swathr +27231,issf,swathr2,Swainson's Thrush (Olive-backed),Catharus ustulatus [swainsoni Group],Passeriformes,Turdidae (Thrushes and Allies),,swathr +27235,species,herthr,Hermit Thrush,Catharus guttatus,Passeriformes,Turdidae (Thrushes and Allies),, +27236,issf,herthr1,Hermit Thrush (guttatus Group),Catharus guttatus [guttatus Group],Passeriformes,Turdidae (Thrushes and Allies),,herthr +27241,issf,herthr2,Hermit Thrush (auduboni Group),Catharus guttatus [auduboni Group],Passeriformes,Turdidae (Thrushes and Allies),,herthr +27245,issf,herthr3,Hermit Thrush (faxoni/crymophilus),Catharus guttatus faxoni/crymophilus,Passeriformes,Turdidae (Thrushes and Allies),,herthr +27248,spuh,cathus,Catharus sp.,Catharus sp.,Passeriformes,Turdidae (Thrushes and Allies),, +27249,species,woothr,Wood Thrush,Hylocichla mustelina,Passeriformes,Turdidae (Thrushes and Allies),, +27250,species,blasol1,Black Solitaire,Entomodestes coracinus,Passeriformes,Turdidae (Thrushes and Allies),, +27251,species,whesol1,White-eared Solitaire,Entomodestes leucotis,Passeriformes,Turdidae (Thrushes and Allies),, +27252,species,rubsol1,Rufous-brown Solitaire,Cichlopsis leucogenys,Passeriformes,Turdidae (Thrushes and Allies),, +27253,issf,rubsol2,Rufous-brown Solitaire (Chestnut-throated),Cichlopsis leucogenys chubbi,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 +27254,issf,rubsol3,Rufous-brown Solitaire (Peruvian),Cichlopsis leucogenys peruviana,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 +27255,issf,rubsol4,Rufous-brown Solitaire (Guianan),Cichlopsis leucogenys gularis,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 +27256,issf,rubsol5,Rufous-brown Solitaire (Rufous-brown),Cichlopsis leucogenys leucogenys,Passeriformes,Turdidae (Thrushes and Allies),,rubsol1 +27257,species,aztthr,Aztec Thrush,Ridgwayia pinicola,Passeriformes,Turdidae (Thrushes and Allies),, +27258,species,sibthr1,Siberian Thrush,Geokichla sibirica,Passeriformes,Turdidae (Thrushes and Allies),, +27261,species,piethr1,Pied Thrush,Geokichla wardii,Passeriformes,Turdidae (Thrushes and Allies),, +27262,species,spgthr1,Spotted Ground-Thrush,Geokichla guttata,Passeriformes,Turdidae (Thrushes and Allies),, +27263,issf,spogrt1,Spotted Ground-Thrush (Lotti),Geokichla guttata maxis,Passeriformes,Turdidae (Thrushes and Allies),,spgthr1 +27264,issf,spogrt2,Spotted Ground-Thrush (Upemba),Geokichla guttata lippensi,Passeriformes,Turdidae (Thrushes and Allies),,spgthr1 +27265,issf,spogrt3,Spotted Ground-Thrush (Spotted),Geokichla guttata [guttata Group],Passeriformes,Turdidae (Thrushes and Allies),,spgthr1 +27269,species,bkegrt1,Black-eared Ground-Thrush,Geokichla camaronensis,Passeriformes,Turdidae (Thrushes and Allies),, +27270,issf,bkegrt2,Black-eared Ground-Thrush (Cameroon),Geokichla camaronensis camaronensis,Passeriformes,Turdidae (Thrushes and Allies),,bkegrt1 +27271,issf,bkegrt3,Black-eared Ground-Thrush (Grauer's),Geokichla camaronensis graueri,Passeriformes,Turdidae (Thrushes and Allies),,bkegrt1 +27272,species,grygrt1,Gray Ground-Thrush,Geokichla princei,Passeriformes,Turdidae (Thrushes and Allies),, +27273,issf,grygrt2,Gray Ground-Thrush (Prince's),Geokichla princei princei,Passeriformes,Turdidae (Thrushes and Allies),,grygrt1 +27274,issf,grygrt3,Gray Ground-Thrush (Bates's),Geokichla princei batesi,Passeriformes,Turdidae (Thrushes and Allies),,grygrt1 +27275,species,crgthr1,Crossley's Ground-Thrush,Geokichla crossleyi,Passeriformes,Turdidae (Thrushes and Allies),, +27276,issf,crogrt1,Crossley's Ground-Thrush (Crossley's),Geokichla crossleyi crossleyi,Passeriformes,Turdidae (Thrushes and Allies),,crgthr1 +27277,issf,crogrt2,Crossley's Ground-Thrush (Itombwe),Geokichla crossleyi pilettei,Passeriformes,Turdidae (Thrushes and Allies),,crgthr1 +27278,species,obgthr1,Oberländer's Ground-Thrush,Geokichla oberlaenderi,Passeriformes,Turdidae (Thrushes and Allies),, +27279,species,abgthr1,Abyssinian Ground-Thrush,Geokichla piaggiae,Passeriformes,Turdidae (Thrushes and Allies),, +27280,issf,abygrt1,Abyssinian Ground-Thrush (Abyssinian),Geokichla piaggiae [piaggiae Group],Passeriformes,Turdidae (Thrushes and Allies),,abgthr1 +27286,issf,kigthr1,Abyssinian Ground-Thrush (Kivu),Geokichla piaggiae tanganjicae,Passeriformes,Turdidae (Thrushes and Allies),,abgthr1 +27287,species,orgthr1,Orange Ground-Thrush,Geokichla gurneyi,Passeriformes,Turdidae (Thrushes and Allies),, +27293,species,spwthr1,Spot-winged Thrush,Geokichla spiloptera,Passeriformes,Turdidae (Thrushes and Allies),, +27294,species,ashthr1,Ashy Thrush,Geokichla cinerea,Passeriformes,Turdidae (Thrushes and Allies),, +27295,species,burthr1,Buru Thrush,Geokichla dumasi,Passeriformes,Turdidae (Thrushes and Allies),, +27296,species,serthr2,Seram Thrush,Geokichla joiceyi,Passeriformes,Turdidae (Thrushes and Allies),, +27297,species,chcthr1,Chestnut-capped Thrush,Geokichla interpres,Passeriformes,Turdidae (Thrushes and Allies),, +27298,species,engthr1,Enggano Thrush,Geokichla leucolaema,Passeriformes,Turdidae (Thrushes and Allies),, +27299,species,chbthr1,Chestnut-backed Thrush,Geokichla dohertyi,Passeriformes,Turdidae (Thrushes and Allies),, +27300,species,orbthr1,Orange-banded Thrush,Geokichla peronii,Passeriformes,Turdidae (Thrushes and Allies),, +27303,species,slbthr1,Slaty-backed Thrush,Geokichla schistacea,Passeriformes,Turdidae (Thrushes and Allies),, +27304,species,rubthr2,Rusty-backed Thrush,Geokichla erythronota,Passeriformes,Turdidae (Thrushes and Allies),, +27307,species,rabthr1,Red-and-black Thrush,Geokichla mendeni,Passeriformes,Turdidae (Thrushes and Allies),, +27308,species,orhthr1,Orange-headed Thrush,Geokichla citrina,Passeriformes,Turdidae (Thrushes and Allies),, +27309,issf,orhthr2,Orange-headed Thrush (Orange-headed),Geokichla citrina [citrina Group],Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 +27316,issf,orhthr3,Orange-headed Thrush (White-throated),Geokichla citrina cyanota,Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 +27317,issf,orhthr4,Orange-headed Thrush (Plain-winged),Geokichla citrina albogularis/andamanensis,Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 +27320,issf,orhthr5,Orange-headed Thrush (Buff-throated),Geokichla citrina [aurimacula Group],Passeriformes,Turdidae (Thrushes and Allies),,orhthr1 +27324,spuh,geokic1,Geokichla sp.,Geokichla sp.,Passeriformes,Turdidae (Thrushes and Allies),, +27325,species,chithr2,Chinese Thrush,Otocichla mupinensis,Passeriformes,Turdidae (Thrushes and Allies),, +27326,species,grothr1,Groundscraper Thrush,Psophocichla litsitsirupa,Passeriformes,Turdidae (Thrushes and Allies),, +27327,issf,grothr2,Groundscraper Thrush (Heath),Psophocichla litsitsirupa simensis,Passeriformes,Turdidae (Thrushes and Allies),,grothr1 +27328,issf,grothr3,Groundscraper Thrush (Groundscraper),Psophocichla litsitsirupa [litsitsirupa Group],Passeriformes,Turdidae (Thrushes and Allies),,grothr1 +27332,species,misthr1,Mistle Thrush,Turdus viscivorus,Passeriformes,Turdidae (Thrushes and Allies),, +27336,species,sonthr1,Song Thrush,Turdus philomelos,Passeriformes,Turdidae (Thrushes and Allies),, +27341,species,abythr1,Abyssinian Thrush,Turdus abyssinicus,Passeriformes,Turdidae (Thrushes and Allies),, +27342,issf,abythr2,Abyssinian Thrush (Ngorongoro),Turdus abyssinicus oldeani,Passeriformes,Turdidae (Thrushes and Allies),,abythr1 +27343,issf,abythr3,Abyssinian Thrush (Abyssinian),Turdus abyssinicus [abyssinicus Group],Passeriformes,Turdidae (Thrushes and Allies),,abythr1 +27349,species,taithr1,Taita Thrush,Turdus helleri,Passeriformes,Turdidae (Thrushes and Allies),, +27350,species,usathr1,Usambara Thrush,Turdus roehli,Passeriformes,Turdidae (Thrushes and Allies),, +27351,species,redwin,Redwing,Turdus iliacus,Passeriformes,Turdidae (Thrushes and Allies),, +27352,issf,redwin1,Redwing (Icelandic),Turdus iliacus coburni,Passeriformes,Turdidae (Thrushes and Allies),,redwin +27353,issf,redwin2,Redwing (Eurasian),Turdus iliacus iliacus,Passeriformes,Turdidae (Thrushes and Allies),,redwin +27354,species,mourob1,Mountain Thrush,Turdus plebejus,Passeriformes,Turdidae (Thrushes and Allies),, +27357,species,eurbla,Eurasian Blackbird,Turdus merula,Passeriformes,Turdidae (Thrushes and Allies),, +27365,species,pabthr1,Pale-breasted Thrush,Turdus leucomelas,Passeriformes,Turdidae (Thrushes and Allies),, +27369,species,cocthr1,Cocoa Thrush,Turdus fumigatus,Passeriformes,Turdidae (Thrushes and Allies),, +27370,issf,cocthr2,Cocoa Thrush (Lesser Antillean),Turdus fumigatus personus,Passeriformes,Turdidae (Thrushes and Allies),,cocthr1 +27371,issf,cocthr3,Cocoa Thrush (Cocoa),Turdus fumigatus [fumigatus Group],Passeriformes,Turdidae (Thrushes and Allies),,cocthr1 +27375,species,hauthr1,Hauxwell's Thrush,Turdus hauxwelli,Passeriformes,Turdidae (Thrushes and Allies),, +27376,species,yelthr1,Yellow-legged Thrush,Turdus flavipes,Passeriformes,Turdidae (Thrushes and Allies),, +27382,species,pavthr1,Pale-vented Thrush,Turdus obsoletus,Passeriformes,Turdidae (Thrushes and Allies),, +27386,species,whtrob1,White-throated Thrush,Turdus assimilis,Passeriformes,Turdidae (Thrushes and Allies),, +27387,issf,whtthr1,White-throated Thrush (White-throated),Turdus assimilis [assimilis Group],Passeriformes,Turdidae (Thrushes and Allies),,whtrob1 +27398,issf,whtthr2,White-throated Thrush (Dagua),Turdus assimilis daguae,Passeriformes,Turdidae (Thrushes and Allies),,whtrob1 +27399,species,whnrob1,White-necked Thrush,Turdus albicollis,Passeriformes,Turdidae (Thrushes and Allies),, +27400,issf,whnthr1,White-necked Thrush (Gray-flanked),Turdus albicollis [phaeopygus Group],Passeriformes,Turdidae (Thrushes and Allies),,whnrob1 +27404,issf,whnthr2,White-necked Thrush (Rufous-flanked),Turdus albicollis [albicollis Group],Passeriformes,Turdidae (Thrushes and Allies),,whnrob1 +27409,species,rubthr1,Rufous-bellied Thrush,Turdus rufiventris,Passeriformes,Turdidae (Thrushes and Allies),, +27412,species,clcrob,Clay-colored Thrush,Turdus grayi,Passeriformes,Turdidae (Thrushes and Allies),, +27419,species,baerob1,Spectacled Thrush,Turdus nudigenis,Passeriformes,Turdidae (Thrushes and Allies),, +27422,species,ecuthr1,Ecuadorian Thrush,Turdus maculirostris,Passeriformes,Turdidae (Thrushes and Allies),, +27423,species,hauthr3,Varzea Thrush,Turdus sanchezorum,Passeriformes,Turdidae (Thrushes and Allies),, +27424,slash,y00755,Hauxwell's/Varzea Thrush,Turdus hauxwelli/sanchezorum,Passeriformes,Turdidae (Thrushes and Allies),, +27425,species,unithr1,Unicolored Thrush,Turdus haplochrous,Passeriformes,Turdidae (Thrushes and Allies),, +27426,species,somthr1,Somali Thrush,Turdus ludoviciae,Passeriformes,Turdidae (Thrushes and Allies),, +27427,species,chibla1,Chinese Blackbird,Turdus mandarinus,Passeriformes,Turdidae (Thrushes and Allies),, +27430,species,abethr1,African Bare-eyed Thrush,Turdus tephronotus,Passeriformes,Turdidae (Thrushes and Allies),, +27431,species,kurthr1,Kurrichane Thrush,Turdus libonyana,Passeriformes,Turdidae (Thrushes and Allies),, +27436,species,comthr1,Comoro Thrush,Turdus bewsheri,Passeriformes,Turdidae (Thrushes and Allies),, +27440,species,yemthr1,Yemen Thrush,Turdus menachensis,Passeriformes,Turdidae (Thrushes and Allies),, +27441,species,olithr2,Olive Thrush,Turdus olivaceus,Passeriformes,Turdidae (Thrushes and Allies),, +27448,species,karthr1,Karoo Thrush,Turdus smithi,Passeriformes,Turdidae (Thrushes and Allies),, +27449,slash,y01008,Olive/Karoo Thrush,Turdus olivaceus/smithi,Passeriformes,Turdidae (Thrushes and Allies),, +27450,species,forthr1,Forest Thrush,Turdus lherminieri,Passeriformes,Turdidae (Thrushes and Allies),, +27455,species,paethr1,Pale-eyed Thrush,Turdus leucops,Passeriformes,Turdidae (Thrushes and Allies),, +27456,species,whethr1,White-eyed Thrush,Turdus jamaicensis,Passeriformes,Turdidae (Thrushes and Allies),, +27457,species,lasthr1,La Selle Thrush,Turdus swalesi,Passeriformes,Turdidae (Thrushes and Allies),, +27460,species,blarob1,Black Thrush,Turdus infuscatus,Passeriformes,Turdidae (Thrushes and Allies),, +27461,species,soorob1,Sooty Thrush,Turdus nigrescens,Passeriformes,Turdidae (Thrushes and Allies),, +27462,species,amerob,American Robin,Turdus migratorius,Passeriformes,Turdidae (Thrushes and Allies),, +27463,issf,amerob3,American Robin (nigrideus),Turdus migratorius nigrideus,Passeriformes,Turdidae (Thrushes and Allies),,amerob +27464,issf,amerob1,American Robin (migratorius Group),Turdus migratorius [migratorius Group],Passeriformes,Turdidae (Thrushes and Allies),,amerob +27470,issf,amerob2,American Robin (San Lucas),Turdus migratorius confinis,Passeriformes,Turdidae (Thrushes and Allies),,amerob +27471,slash,y00822,Varied Thrush/American Robin,Ixoreus naevius/Turdus migratorius,Passeriformes,Turdidae (Thrushes and Allies),, +27472,species,rubrob,Rufous-backed Robin,Turdus rufopalliatus,Passeriformes,Turdidae (Thrushes and Allies),, +27473,issf,rubrob1,Rufous-backed Robin (Rufous-backed),Turdus rufopalliatus rufopalliatus,Passeriformes,Turdidae (Thrushes and Allies),,rubrob +27474,issf,rubrob2,Rufous-backed Robin (Grayson's),Turdus rufopalliatus graysoni,Passeriformes,Turdidae (Thrushes and Allies),,rubrob +27475,species,rucrob1,Rufous-collared Robin,Turdus rufitorques,Passeriformes,Turdidae (Thrushes and Allies),, +27476,species,austhr1,Austral Thrush,Turdus falcklandii,Passeriformes,Turdidae (Thrushes and Allies),, +27477,issf,austhr2,Austral Thrush (Magellan),Turdus falcklandii magellanicus/pembertoni,Passeriformes,Turdidae (Thrushes and Allies),,austhr1 +27480,issf,austhr3,Austral Thrush (Falkland),Turdus falcklandii falcklandii,Passeriformes,Turdidae (Thrushes and Allies),,austhr1 +27481,species,plbthr2,Plumbeous-backed Thrush,Turdus reevei,Passeriformes,Turdidae (Thrushes and Allies),, +27482,species,slathr3,Eastern Slaty Thrush,Turdus subalaris,Passeriformes,Turdidae (Thrushes and Allies),, +27483,species,lawthr1,Lawrence's Thrush,Turdus lawrencii,Passeriformes,Turdidae (Thrushes and Allies),, +27484,species,bkbthr4,Pantepui Thrush,Turdus murinus,Passeriformes,Turdidae (Thrushes and Allies),, +27485,species,trithr1,Tristan Thrush,Turdus eremita,Passeriformes,Turdidae (Thrushes and Allies),, +27489,species,crbthr1,Creamy-bellied Thrush,Turdus amaurochalinus,Passeriformes,Turdidae (Thrushes and Allies),, +27490,species,blbthr1,Black-billed Thrush,Turdus ignobilis,Passeriformes,Turdidae (Thrushes and Allies),, +27491,issf,bkbthr1,Black-billed Thrush (Drab),Turdus ignobilis ignobilis/goodfellowi,Passeriformes,Turdidae (Thrushes and Allies),,blbthr1 +27494,issf,bkbthr2,Black-billed Thrush (Amazonian),Turdus ignobilis debilis,Passeriformes,Turdidae (Thrushes and Allies),,blbthr1 +27495,species,bkbthr3,Campina Thrush,Turdus arthuri,Passeriformes,Turdidae (Thrushes and Allies),, +27496,slash,y01159,Pantepui/Campina Thrush,Turdus murinus/arthuri,Passeriformes,Turdidae (Thrushes and Allies),, +27497,slash,y01160,Black-billed/Campina Thrush,Turdus ignobilis/arthuri,Passeriformes,Turdidae (Thrushes and Allies),, +27498,species,marthr2,Marañon Thrush,Turdus maranonicus,Passeriformes,Turdidae (Thrushes and Allies),, +27499,species,chbthr2,Chestnut-bellied Thrush,Turdus fulviventris,Passeriformes,Turdidae (Thrushes and Allies),, +27500,species,blhthr1,Black-hooded Thrush,Turdus olivater,Passeriformes,Turdidae (Thrushes and Allies),, +27509,species,grethr1,Great Thrush,Turdus fuscater,Passeriformes,Turdidae (Thrushes and Allies),, +27517,species,chithr1,Chiguanco Thrush,Turdus chiguanco,Passeriformes,Turdidae (Thrushes and Allies),, +27518,issf,chithr4,Chiguanco Thrush (chiguanco/conradi),Turdus chiguanco chiguanco/conradi,Passeriformes,Turdidae (Thrushes and Allies),,chithr1 +27521,issf,chithr3,Chiguanco Thrush (anthracinus),Turdus chiguanco anthracinus,Passeriformes,Turdidae (Thrushes and Allies),,chithr1 +27522,species,slathr2,Andean Slaty Thrush,Turdus nigriceps,Passeriformes,Turdidae (Thrushes and Allies),, +27523,species,glbthr1,Glossy-black Thrush,Turdus serranus,Passeriformes,Turdidae (Thrushes and Allies),, +27529,species,prithr1,Principe Thrush,Turdus xanthorhynchus,Passeriformes,Turdidae (Thrushes and Allies),, +27530,species,satthr1,Sao Tome Thrush,Turdus olivaceofuscus,Passeriformes,Turdidae (Thrushes and Allies),, +27531,species,whcthr1,White-chinned Thrush,Turdus aurantius,Passeriformes,Turdidae (Thrushes and Allies),, +27532,species,grcthr1,Grand Cayman Thrush,Turdus ravidus,Passeriformes,Turdidae (Thrushes and Allies),, +27533,species,relthr1,Red-legged Thrush,Turdus plumbeus,Passeriformes,Turdidae (Thrushes and Allies),, +27534,issf,relthr2,Red-legged Thrush (plumbeus/schistaceus),Turdus plumbeus plumbeus/schistaceus,Passeriformes,Turdidae (Thrushes and Allies),,relthr1 +27537,issf,relthr4,Red-legged Thrush (rubripes/coryi),Turdus plumbeus rubripes/coryi,Passeriformes,Turdidae (Thrushes and Allies),,relthr1 +27540,issf,relthr3,Red-legged Thrush (ardosiaceus/albiventris),Turdus plumbeus ardosiaceus/albiventris,Passeriformes,Turdidae (Thrushes and Allies),,relthr1 +27543,species,afrthr1,African Thrush,Turdus pelios,Passeriformes,Turdidae (Thrushes and Allies),, +27544,issf,afrthr2,African Thrush (African),Turdus pelios [pelios Group],Passeriformes,Turdidae (Thrushes and Allies),,afrthr1 +27551,issf,afrthr3,African Thrush (Black-lored),Turdus pelios nigrilorum/poensis,Passeriformes,Turdidae (Thrushes and Allies),,afrthr1 +27554,issf,afrthr4,African Thrush (Orange-bellied),Turdus pelios stormsi/graueri,Passeriformes,Turdidae (Thrushes and Allies),,afrthr1 +27557,species,islthr24,Taiwan Thrush,Turdus niveiceps,Passeriformes,Turdidae (Thrushes and Allies),, +27558,species,gywbla1,Gray-winged Blackbird,Turdus boulboul,Passeriformes,Turdidae (Thrushes and Allies),, +27559,species,eurbla2,Indian Blackbird,Turdus simillimus,Passeriformes,Turdidae (Thrushes and Allies),, +27560,issf,indbla1,Indian Blackbird (Indian),Turdus simillimus simillimus/bourdilloni,Passeriformes,Turdidae (Thrushes and Allies),,eurbla2 +27563,issf,indbla2,Indian Blackbird (Black-capped),Turdus simillimus nigropileus/spencei,Passeriformes,Turdidae (Thrushes and Allies),,eurbla2 +27566,issf,indbla3,Indian Blackbird (Sri Lanka),Turdus simillimus kinnisii,Passeriformes,Turdidae (Thrushes and Allies),,eurbla2 +27567,species,japthr1,Japanese Thrush,Turdus cardis,Passeriformes,Turdidae (Thrushes and Allies),, +27568,species,gybthr1,Gray-backed Thrush,Turdus hortulorum,Passeriformes,Turdidae (Thrushes and Allies),, +27569,species,ticthr1,Tickell's Thrush,Turdus unicolor,Passeriformes,Turdidae (Thrushes and Allies),, +27570,species,blbthr2,Black-breasted Thrush,Turdus dissimilis,Passeriformes,Turdidae (Thrushes and Allies),, +27571,species,gysthr1,Gray-sided Thrush,Turdus feae,Passeriformes,Turdidae (Thrushes and Allies),, +27572,species,eyethr,Eyebrowed Thrush,Turdus obscurus,Passeriformes,Turdidae (Thrushes and Allies),, +27573,slash,y01053,Gray-sided/Eyebrowed Thrush,Turdus feae/obscurus,Passeriformes,Turdidae (Thrushes and Allies),, +27574,species,brhthr1,Brown-headed Thrush,Turdus chrysolaus,Passeriformes,Turdidae (Thrushes and Allies),, +27577,species,izuthr1,Izu Thrush,Turdus celaenops,Passeriformes,Turdidae (Thrushes and Allies),, +27578,species,palthr1,Pale Thrush,Turdus pallidus,Passeriformes,Turdidae (Thrushes and Allies),, +27579,species,islthr1,Island Thrush,Turdus poliocephalus,Passeriformes,Turdidae (Thrushes and Allies),, +27580,issf,islthr9,Island Thrush (Christmas),Turdus poliocephalus erythropleurus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27581,issf,islthr19,Island Thrush (Loeser's),Turdus poliocephalus loeseri,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27582,issf,islthr13,Island Thrush (Sumatran),Turdus poliocephalus indrapurae,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27583,issf,islthr14,Island Thrush (Javan),Turdus poliocephalus javanicus/biesenbachi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27586,issf,islthr10,Island Thrush (Sooty),Turdus poliocephalus fumidus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27587,issf,islthr34,Island Thrush (Stresemann's),Turdus poliocephalus whiteheadi/stresemanni,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27590,issf,islthr32,Island Thrush (Bornean),Turdus poliocephalus seebohmi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27591,issf,islthr36,Island Thrush (Luzon),Turdus poliocephalus thomassoni/mayonensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27594,issf,islthr22,Island Thrush (Mindoro),Turdus poliocephalus mindorensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27595,issf,islthr23,Island Thrush (Negros),Turdus poliocephalus nigrorum,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27596,issf,islthr20,Island Thrush (Malindang),Turdus poliocephalus malindangensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27597,issf,islthr15,Island Thrush (Katanglad),Turdus poliocephalus katanglad,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27598,issf,islthr16,Island Thrush (Apo),Turdus poliocephalus kelleri,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27599,issf,islthr12,Island Thrush (Latimojong),Turdus poliocephalus hygroscopus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27600,issf,islthr6,Island Thrush (Lompobattang),Turdus poliocephalus celebensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27601,issf,islthr31,Island Thrush (Schlegel's),Turdus poliocephalus schlegelii,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27602,issf,islthr33,Island Thrush (Sterling's),Turdus poliocephalus sterlingi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27603,issf,islthr7,Island Thrush (Seram),Turdus poliocephalus deningeri,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27604,issf,islthr37,Island Thrush (Jayawijaya),Turdus poliocephalus versteegi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27605,issf,islthr5,Island Thrush (Ashy),Turdus poliocephalus erebus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27606,issf,islthr25,Island Thrush (Papuan),Turdus poliocephalus papuensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27607,issf,islthr4,Island Thrush (Goodenough),Turdus poliocephalus canescens,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27608,issf,islthr2,Island Thrush (North Melanesian),Turdus poliocephalus [heinrothi Group],Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27615,issf,islthr17,Island Thrush (Kolombangara),Turdus poliocephalus kulambangrae,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27616,issf,islthr3,Island Thrush (Vanuatu),Turdus poliocephalus [vanikorensis Group],Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27621,issf,islthr26,Island Thrush (Ureparapara),Turdus poliocephalus placens,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27622,issf,islthr8,Island Thrush (Efate),Turdus poliocephalus efatensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27623,issf,islthr28,Island Thrush (White-headed),Turdus poliocephalus pritzbueri/albifrons,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27626,issf,islthr40,Island Thrush (New Caledonia),Turdus poliocephalus xanthopus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27627,issf,islthr21,Island Thrush (Mare),Turdus poliocephalus mareensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27628,issf,islthr27,Island Thrush (Norfolk I.),Turdus poliocephalus poliocephalus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27629,issf,islthr38,Island Thrush (Lord Howe I.),Turdus poliocephalus vinitinctus,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27630,issf,islthr18,Island Thrush (Viti Levu),Turdus poliocephalus layardi,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27631,issf,islthr29,Island Thrush (Kadavu),Turdus poliocephalus ruficeps,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27632,issf,islthr39,Island Thrush (Vanua Levu),Turdus poliocephalus vitiensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27633,issf,islthr11,Island Thrush (Satanic),Turdus poliocephalus hades,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27634,issf,islthr35,Island Thrush (Taveuni),Turdus poliocephalus tempesti,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27635,issf,islthr30,Island Thrush (Samoan),Turdus poliocephalus samoensis,Passeriformes,Turdidae (Thrushes and Allies),,islthr1 +27636,species,whbthr2,White-backed Thrush,Turdus kessleri,Passeriformes,Turdidae (Thrushes and Allies),, +27637,species,tibbla1,Tibetan Blackbird,Turdus maximus,Passeriformes,Turdidae (Thrushes and Allies),, +27638,species,fieldf,Fieldfare,Turdus pilaris,Passeriformes,Turdidae (Thrushes and Allies),, +27639,species,whcbla1,White-collared Blackbird,Turdus albocinctus,Passeriformes,Turdidae (Thrushes and Allies),, +27640,species,chethr1,Chestnut Thrush,Turdus rubrocanus,Passeriformes,Turdidae (Thrushes and Allies),, +27643,species,rinouz1,Ring Ouzel,Turdus torquatus,Passeriformes,Turdidae (Thrushes and Allies),, +27644,issf,rinouz2,Ring Ouzel (Northern),Turdus torquatus torquatus,Passeriformes,Turdidae (Thrushes and Allies),,rinouz1 +27645,issf,rinouz3,Ring Ouzel (Alpine),Turdus torquatus alpestris,Passeriformes,Turdidae (Thrushes and Allies),,rinouz1 +27646,issf,rinouz4,Ring Ouzel (Caucasian),Turdus torquatus amicorum,Passeriformes,Turdidae (Thrushes and Allies),,rinouz1 +27647,species,datthr1,Black-throated Thrush,Turdus atrogularis,Passeriformes,Turdidae (Thrushes and Allies),, +27648,species,retthr1,Red-throated Thrush,Turdus ruficollis,Passeriformes,Turdidae (Thrushes and Allies),, +27649,hybrid,x00644,Black-throated x Red-throated Thrush (hybrid),Turdus atrogularis x ruficollis,Passeriformes,Turdidae (Thrushes and Allies),, +27650,species,dusthr2,Dusky Thrush,Turdus eunomus,Passeriformes,Turdidae (Thrushes and Allies),, +27651,species,dusthr1,Naumann's Thrush,Turdus naumanni,Passeriformes,Turdidae (Thrushes and Allies),, +27652,hybrid,x00973,Dusky x Naumann's Thrush (hybrid),Turdus eunomus x naumanni,Passeriformes,Turdidae (Thrushes and Allies),, +27653,slash,dusthr,Dusky/Naumann's Thrush,Turdus eunomus/naumanni,Passeriformes,Turdidae (Thrushes and Allies),, +27654,spuh,turdus1,Turdus sp.,Turdus sp.,Passeriformes,Turdidae (Thrushes and Allies),, +27655,spuh,thrush1,thrush sp.,Turdidae sp.,Passeriformes,Turdidae (Thrushes and Allies),, +27656,species,gysfly1,Gray-streaked Flycatcher,Muscicapa griseisticta,Passeriformes,Muscicapidae (Old World Flycatchers),Old World Flycatchers, +27657,species,dasfly,Dark-sided Flycatcher,Muscicapa sibirica,Passeriformes,Muscicapidae (Old World Flycatchers),, +27662,slash,y01085,Gray-streaked/Dark-sided Flycatcher,Muscicapa griseisticta/sibirica,Passeriformes,Muscicapidae (Old World Flycatchers),, +27663,species,ferfly1,Ferruginous Flycatcher,Muscicapa ferruginea,Passeriformes,Muscicapidae (Old World Flycatchers),, +27664,species,asbfly,Asian Brown Flycatcher,Muscicapa dauurica,Passeriformes,Muscicapidae (Old World Flycatchers),, +27667,species,asbfly1,Ashy-breasted Flycatcher,Muscicapa randi,Passeriformes,Muscicapidae (Old World Flycatchers),, +27668,species,subfly2,Sumba Brown Flycatcher,Muscicapa segregata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27669,species,brbfly2,Brown-breasted Flycatcher,Muscicapa muttui,Passeriformes,Muscicapidae (Old World Flycatchers),, +27670,species,subfly3,Sulawesi Brown Flycatcher,Muscicapa sodhii,Passeriformes,Muscicapidae (Old World Flycatchers),, +27671,species,bnsfly1,Brown-streaked Flycatcher,Muscicapa williamsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, +27672,issf,bnsfly2,Brown-streaked Flycatcher (Brown-streaked),Muscicapa williamsoni williamsoni,Passeriformes,Muscicapidae (Old World Flycatchers),,bnsfly1 +27673,issf,bnsfly3,Brown-streaked Flycatcher (Umber),Muscicapa williamsoni umbrosa,Passeriformes,Muscicapidae (Old World Flycatchers),,bnsfly1 +27674,slash,y00754,Asian Brown/Brown-streaked Flycatcher,Muscicapa dauurica/williamsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, +27675,species,afdfly1,African Dusky Flycatcher,Muscicapa adusta,Passeriformes,Muscicapidae (Old World Flycatchers),, +27686,species,ligfly2,Little Flycatcher,Muscicapa epulata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27687,species,yeffly1,Yellow-footed Flycatcher,Muscicapa sethsmithi,Passeriformes,Muscicapidae (Old World Flycatchers),, +27688,species,spofly1,Spotted Flycatcher,Muscicapa striata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27689,issf,spofly2,Spotted Flycatcher (Spotted),Muscicapa striata [striata Group],Passeriformes,Muscicapidae (Old World Flycatchers),,spofly1 +27695,issf,spofly3,Spotted Flycatcher (Mediterranean),Muscicapa striata tyrrhenica/balearica,Passeriformes,Muscicapidae (Old World Flycatchers),,spofly1 +27698,species,gamfly1,Gambaga Flycatcher,Muscicapa gambagae,Passeriformes,Muscicapidae (Old World Flycatchers),, +27699,species,swafly3,Swamp Flycatcher,Muscicapa aquatica,Passeriformes,Muscicapidae (Old World Flycatchers),, +27704,species,casfly1,Cassin's Flycatcher,Muscicapa cassini,Passeriformes,Muscicapidae (Old World Flycatchers),, +27705,spuh,muscic1,Muscicapa sp.,Muscicapa sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +27706,species,boefly1,Böhm's Flycatcher,Bradornis boehmi,Passeriformes,Muscicapidae (Old World Flycatchers),, +27707,species,ussfly1,Ussher's Flycatcher,Bradornis ussheri,Passeriformes,Muscicapidae (Old World Flycatchers),, +27708,species,soofly1,Sooty Flycatcher,Bradornis fuliginosus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27711,species,dubfly2,Dusky-blue Flycatcher,Bradornis comitatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27715,species,marfly1,Mariqua Flycatcher,Bradornis mariquensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27719,species,afgfly1,African Gray Flycatcher,Bradornis microrhynchus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27720,issf,grafly2,African Gray Flycatcher (Ethiopian),Bradornis microrhynchus pumilus,Passeriformes,Muscicapidae (Old World Flycatchers),,afgfly1 +27721,issf,grafly1,African Gray Flycatcher (African Gray),Bradornis microrhynchus [microrhynchus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,afgfly1 +27726,spuh,brador1,Bradornis sp.,Bradornis sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +27727,spuh,y01003,Muscicapa/Bradornis sp.,Muscicapa/Bradornis sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +27728,species,palfly2,Pale Flycatcher,Agricola pallidus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27729,issf,palfly6,Pale Flycatcher (Pale),Agricola pallidus [pallidus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,palfly2 +27740,issf,palfly4,Pale Flycatcher (Wajir),Agricola pallidus bafirawari,Passeriformes,Muscicapidae (Old World Flycatchers),,palfly2 +27741,issf,palfly5,Pale Flycatcher (East Coast),Agricola pallidus subalaris/erlangeri,Passeriformes,Muscicapidae (Old World Flycatchers),,palfly2 +27744,species,chafly2,Chat Flycatcher,Agricola infuscatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27750,species,wbffly1,White-browed Forest-Flycatcher,Fraseria cinerascens,Passeriformes,Muscicapidae (Old World Flycatchers),, +27753,species,afffly1,African Forest-Flycatcher,Fraseria ocreata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27754,issf,afrfof1,African Forest-Flycatcher (Western),Fraseria ocreata prosphora/kelsalli,Passeriformes,Muscicapidae (Old World Flycatchers),,afffly1 +27757,issf,afrfof2,African Forest-Flycatcher (Eastern),Fraseria ocreata ocreata,Passeriformes,Muscicapidae (Old World Flycatchers),,afffly1 +27758,species,gyttif1,Gray-throated Tit-Flycatcher,Fraseria griseigularis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27761,species,grytif1,Gray Tit-Flycatcher,Fraseria plumbea,Passeriformes,Muscicapidae (Old World Flycatchers),, +27765,species,olifly1,Olivaceous Flycatcher,Fraseria olivascens,Passeriformes,Muscicapidae (Old World Flycatchers),, +27766,issf,olifly4,Olivaceous Flycatcher (Olivaceous),Fraseria olivascens olivascens,Passeriformes,Muscicapidae (Old World Flycatchers),,olifly1 +27767,issf,olifly5,Olivaceous Flycatcher (Mt. Nimba),Fraseria olivascens nimbae,Passeriformes,Muscicapidae (Old World Flycatchers),,olifly1 +27768,species,chafly1,Chapin's Flycatcher,Fraseria lendu,Passeriformes,Muscicapidae (Old World Flycatchers),, +27769,issf,chafly5,Chapin's Flycatcher (Chapin's),Fraseria lendu lendu,Passeriformes,Muscicapidae (Old World Flycatchers),,chafly1 +27770,issf,chafly4,Chapin's Flycatcher (Itombwe),Fraseria lendu itombwensis,Passeriformes,Muscicapidae (Old World Flycatchers),,chafly1 +27771,species,tesfly1,Tessmann's Flycatcher,Fraseria tessmanni,Passeriformes,Muscicapidae (Old World Flycatchers),, +27772,species,ashfly1,Ashy Flycatcher,Fraseria caerulescens,Passeriformes,Muscicapidae (Old World Flycatchers),, +27779,species,hercha1,Herero Chat,Melaenornis herero,Passeriformes,Muscicapidae (Old World Flycatchers),, +27780,species,silver1,Silverbird,Melaenornis semipartitus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27781,species,fisfly1,Fiscal Flycatcher,Melaenornis silens,Passeriformes,Muscicapidae (Old World Flycatchers),, +27782,species,yebfly2,Yellow-eyed Black-Flycatcher,Melaenornis ardesiacus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27783,species,nimfly1,Nimba Flycatcher,Melaenornis annamarulae,Passeriformes,Muscicapidae (Old World Flycatchers),, +27784,species,nobfly1,Northern Black-Flycatcher,Melaenornis edolioides,Passeriformes,Muscicapidae (Old World Flycatchers),, +27788,species,sobfly1,Southern Black-Flycatcher,Melaenornis pammelaina,Passeriformes,Muscicapidae (Old World Flycatchers),, +27794,species,wheslf1,White-eyed Slaty-Flycatcher,Melaenornis fischeri,Passeriformes,Muscicapidae (Old World Flycatchers),, +27799,species,angslf1,Angola Slaty-Flycatcher,Melaenornis brunneus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27802,species,abyslf1,Abyssinian Slaty-Flycatcher,Melaenornis chocolatinus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27805,species,grcfly3,Grand Comoro Flycatcher,Humblotia flavirostris,Passeriformes,Muscicapidae (Old World Flycatchers),, +27806,species,ficale3,White-tailed Alethe,Alethe diademata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27807,species,ficale2,Fire-crested Alethe,Alethe castanea,Passeriformes,Muscicapidae (Old World Flycatchers),, +27810,species,kasrob2,Karoo Scrub-Robin,Cercotrichas coryphoeus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27813,species,fosrob1,Forest Scrub-Robin,Cercotrichas leucosticta,Passeriformes,Muscicapidae (Old World Flycatchers),, +27814,issf,forscr2,Forest Scrub-Robin (Forest),Cercotrichas leucosticta [leucosticta Group],Passeriformes,Muscicapidae (Old World Flycatchers),,fosrob1 +27818,issf,forscr3,Forest Scrub-Robin (Huila),Cercotrichas leucosticta reichenowi,Passeriformes,Muscicapidae (Old World Flycatchers),,fosrob1 +27819,species,brsrob1,Brown Scrub-Robin,Cercotrichas signata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27822,species,besrob1,Bearded Scrub-Robin,Cercotrichas quadrivirgata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27823,issf,beascr1,Bearded Scrub-Robin (Bearded),Cercotrichas quadrivirgata quadrivirgata,Passeriformes,Muscicapidae (Old World Flycatchers),,besrob1 +27824,issf,beascr2,Bearded Scrub-Robin (Zanzibar),Cercotrichas quadrivirgata greenwayi,Passeriformes,Muscicapidae (Old World Flycatchers),,besrob1 +27825,species,misrob1,Miombo Scrub-Robin,Cercotrichas barbata,Passeriformes,Muscicapidae (Old World Flycatchers),, +27826,species,blsrob1,Black Scrub-Robin,Cercotrichas podobe,Passeriformes,Muscicapidae (Old World Flycatchers),, +27829,species,rutscr1,Rufous-tailed Scrub-Robin,Cercotrichas galactotes,Passeriformes,Muscicapidae (Old World Flycatchers),, +27830,issf,rtsrob1,Rufous-tailed Scrub-Robin (Rufous-tailed),Cercotrichas galactotes [galactotes Group],Passeriformes,Muscicapidae (Old World Flycatchers),,rutscr1 +27834,issf,afrscr1,Rufous-tailed Scrub-Robin (African),Cercotrichas galactotes minor/hamertoni,Passeriformes,Muscicapidae (Old World Flycatchers),,rutscr1 +27837,species,kasrob1,Kalahari Scrub-Robin,Cercotrichas paena,Passeriformes,Muscicapidae (Old World Flycatchers),, +27842,species,bbsrob1,Brown-backed Scrub-Robin,Cercotrichas hartlaubi,Passeriformes,Muscicapidae (Old World Flycatchers),, +27843,species,rbsrob1,Red-backed Scrub-Robin,Cercotrichas leucophrys,Passeriformes,Muscicapidae (Old World Flycatchers),, +27844,issf,rebscr1,Red-backed Scrub-Robin (White-winged),Cercotrichas leucophrys [leucoptera Group],Passeriformes,Muscicapidae (Old World Flycatchers),,rbsrob1 +27848,issf,rebscr2,Red-backed Scrub-Robin (Red-backed),Cercotrichas leucophrys [leucophrys Group],Passeriformes,Muscicapidae (Old World Flycatchers),,rbsrob1 +27855,spuh,scrub-1,scrub-robin sp.,Cercotrichas sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +27856,species,indrob1,Indian Robin,Copsychus fulicatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27862,species,magrob,Oriental Magpie-Robin,Copsychus saularis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27863,issf,orimar1,Oriental Magpie-Robin (Oriental),Copsychus saularis [saularis Group],Passeriformes,Muscicapidae (Old World Flycatchers),,magrob +27868,issf,orimar2,Oriental Magpie-Robin (Black),Copsychus saularis [amoenus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,magrob +27872,species,rutsha2,Rufous-tailed Shama,Copsychus pyrropygus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27873,species,mamrob1,Madagascar Magpie-Robin,Copsychus albospecularis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27874,issf,madmar1,Madagascar Magpie-Robin (Black-bellied),Copsychus albospecularis albospecularis,Passeriformes,Muscicapidae (Old World Flycatchers),,mamrob1 +27875,issf,madmar2,Madagascar Magpie-Robin (White-bellied),Copsychus albospecularis inexspectatus,Passeriformes,Muscicapidae (Old World Flycatchers),,mamrob1 +27876,issf,madmar3,Madagascar Magpie-Robin (White-winged),Copsychus albospecularis pica,Passeriformes,Muscicapidae (Old World Flycatchers),,mamrob1 +27877,species,semrob1,Seychelles Magpie-Robin,Copsychus sechellarum,Passeriformes,Muscicapidae (Old World Flycatchers),, +27878,species,phimar1,Philippine Magpie-Robin,Copsychus mindanensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27879,species,whrsha,White-rumped Shama,Copsychus malabaricus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27880,issf,whrsha1,White-rumped Shama (White-rumped),Copsychus malabaricus [malabaricus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whrsha +27889,issf,whrsha3,White-rumped Shama (Barusan),Copsychus malabaricus [melanurus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whrsha +27894,issf,whrsha2,White-rumped Shama (White-crowned),Copsychus malabaricus stricklandii/barbouri,Passeriformes,Muscicapidae (Old World Flycatchers),,whrsha +27897,species,andsha1,Andaman Shama,Copsychus albiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, +27898,species,whbsha1,White-browed Shama,Copsychus luzoniensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27902,species,vissha1,Visayan Shama,Copsychus superciliaris,Passeriformes,Muscicapidae (Old World Flycatchers),, +27903,species,whvsha1,White-vented Shama,Copsychus niger,Passeriformes,Muscicapidae (Old World Flycatchers),, +27904,species,blasha1,Black Shama,Copsychus cebuensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27905,species,whgfly1,White-gorgeted Flycatcher,Anthipes monileger,Passeriformes,Muscicapidae (Old World Flycatchers),, +27909,species,rubfly3,Rufous-browed Flycatcher,Anthipes solitaris,Passeriformes,Muscicapidae (Old World Flycatchers),, +27913,species,whbsho1,Nilgiri Sholakili,Sholicola major,Passeriformes,Muscicapidae (Old World Flycatchers),, +27914,species,whbsho3,White-bellied Sholakili,Sholicola albiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, +27917,species,matfly2,Matinan Flycatcher,Cyornis sanfordi,Passeriformes,Muscicapidae (Old World Flycatchers),, +27918,species,blffly1,Blue-fronted Flycatcher,Cyornis hoevelli,Passeriformes,Muscicapidae (Old World Flycatchers),, +27919,species,tibfly2,Timor Blue Flycatcher,Cyornis hyacinthinus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27922,species,whtfly2,White-tailed Flycatcher,Cyornis concretus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27926,species,rubfly1,Rück's Blue Flycatcher,Cyornis ruckii,Passeriformes,Muscicapidae (Old World Flycatchers),, +27927,species,blbfly3,Blue-breasted Flycatcher,Cyornis herioti,Passeriformes,Muscicapidae (Old World Flycatchers),, +27928,issf,bubfly1,Blue-breasted Flycatcher (Blue-breasted),Cyornis herioti herioti,Passeriformes,Muscicapidae (Old World Flycatchers),,blbfly3 +27929,issf,bubfly2,Blue-breasted Flycatcher (Rufous-breasted),Cyornis herioti camarinensis,Passeriformes,Muscicapidae (Old World Flycatchers),,blbfly3 +27930,species,habfly1,Hainan Blue Flycatcher,Cyornis hainanus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27933,species,wbbfly1,White-bellied Blue Flycatcher,Cyornis pallidipes,Passeriformes,Muscicapidae (Old World Flycatchers),, +27934,species,pacblf1,Pale-chinned Blue Flycatcher,Cyornis poliogenys,Passeriformes,Muscicapidae (Old World Flycatchers),, +27939,species,pabfly2,Pale Blue Flycatcher,Cyornis unicolor,Passeriformes,Muscicapidae (Old World Flycatchers),, +27940,issf,pabfly3,Pale Blue Flycatcher (Unicolored),Cyornis unicolor unicolor,Passeriformes,Muscicapidae (Old World Flycatchers),,pabfly2 +27941,issf,pabfly4,Pale Blue Flycatcher (Diao Luo),Cyornis unicolor diaoluoensis,Passeriformes,Muscicapidae (Old World Flycatchers),,pabfly2 +27942,issf,pabfly5,Pale Blue Flycatcher (Hartert's),Cyornis unicolor harterti,Passeriformes,Muscicapidae (Old World Flycatchers),,pabfly2 +27943,species,butfly1,Blue-throated Flycatcher,Cyornis rubeculoides,Passeriformes,Muscicapidae (Old World Flycatchers),, +27947,species,butfly2,Chinese Blue Flycatcher,Cyornis glaucicomans,Passeriformes,Muscicapidae (Old World Flycatchers),, +27948,slash,bltfly2,Blue-throated/Chinese Blue Flycatcher,Cyornis rubeculoides/glaucicomans,Passeriformes,Muscicapidae (Old World Flycatchers),, +27949,species,larblf1,Large Blue Flycatcher,Cyornis magnirostris,Passeriformes,Muscicapidae (Old World Flycatchers),, +27950,species,hibfly1,Hill Blue Flycatcher,Cyornis banyumas,Passeriformes,Muscicapidae (Old World Flycatchers),, +27951,issf,hibfly2,Hill Blue Flycatcher (Hill),Cyornis banyumas [whitei Group],Passeriformes,Muscicapidae (Old World Flycatchers),,hibfly1 +27956,issf,hibfly3,Hill Blue Flycatcher (Javan),Cyornis banyumas banyumas/ligus,Passeriformes,Muscicapidae (Old World Flycatchers),,hibfly1 +27959,issf,hibfly4,Hill Blue Flycatcher (Dayak),Cyornis banyumas montanus,Passeriformes,Muscicapidae (Old World Flycatchers),,hibfly1 +27960,slash,y01092,Large/Hill Blue Flycatcher,Cyornis magnirostris/banyumas,Passeriformes,Muscicapidae (Old World Flycatchers),, +27961,form,merjuf1,Meratus Jungle-Flycatcher (undescribed form),Cyornis [undescribed Meratus form],Passeriformes,Muscicapidae (Old World Flycatchers),, +27962,species,lobblf1,Sunda Blue Flycatcher,Cyornis caerulatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27966,species,mabfly1,Malaysian Blue Flycatcher,Cyornis turcosus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27967,species,pabfly1,Palawan Blue Flycatcher,Cyornis lemprieri,Passeriformes,Muscicapidae (Old World Flycatchers),, +27968,species,bobfly2,Bornean Blue Flycatcher,Cyornis superbus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27969,species,tibfly3,Tickell's Blue Flycatcher,Cyornis tickelliae,Passeriformes,Muscicapidae (Old World Flycatchers),, +27972,hybrid,x00927,Pale-chinned x Tickell's Blue Flycatcher (hybrid),Cyornis poliogenys x tickelliae,Passeriformes,Muscicapidae (Old World Flycatchers),, +27973,slash,y01069,Blue-throated/Tickell's Blue Flycatcher,Cyornis rubeculoides/tickelliae,Passeriformes,Muscicapidae (Old World Flycatchers),, +27974,species,tibfly4,Indochinese Blue Flycatcher,Cyornis sumatrensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27978,species,mabfly2,Mangrove Blue Flycatcher,Cyornis rufigastra,Passeriformes,Muscicapidae (Old World Flycatchers),, +27979,issf,manblf1,Mangrove Blue Flycatcher (Mangrove),Cyornis rufigastra [rufigastra Group],Passeriformes,Muscicapidae (Old World Flycatchers),,mabfly2 +27984,issf,manblf2,Mangrove Blue Flycatcher (Philippine),Cyornis rufigastra [blythi Group],Passeriformes,Muscicapidae (Old World Flycatchers),,mabfly2 +27989,species,subfly1,Sulawesi Blue Flycatcher,Cyornis omissus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27990,issf,sulblf1,Sulawesi Blue Flycatcher (Sulawesi),Cyornis omissus omissus/peromissus,Passeriformes,Muscicapidae (Old World Flycatchers),,subfly1 +27993,issf,subfly4,Sulawesi Blue Flycatcher (Tanahjampea),Cyornis omissus djampeanus,Passeriformes,Muscicapidae (Old World Flycatchers),,subfly1 +27994,issf,subfly5,Sulawesi Blue Flycatcher (Kalao),Cyornis omissus kalaoensis,Passeriformes,Muscicapidae (Old World Flycatchers),,subfly1 +27995,form,togjuf1,Togian Jungle-Flycatcher (undescribed form),Cyornis [undescribed Togian form],Passeriformes,Muscicapidae (Old World Flycatchers),, +27996,species,bncjuf1,Brown-chested Jungle-Flycatcher,Cyornis brunneatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27997,species,nicjuf1,Nicobar Jungle-Flycatcher,Cyornis nicobaricus,Passeriformes,Muscicapidae (Old World Flycatchers),, +27998,species,gycjuf1,Gray-chested Jungle-Flycatcher,Cyornis umbratilis,Passeriformes,Muscicapidae (Old World Flycatchers),, +27999,species,fucjuf1,Fulvous-chested Jungle-Flycatcher,Cyornis olivaceus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28002,species,flojuf1,Flores Jungle-Flycatcher,Cyornis oscillans,Passeriformes,Muscicapidae (Old World Flycatchers),, +28003,issf,flojuf2,Flores Jungle-Flycatcher (Russet-backed),Cyornis oscillans oscillans,Passeriformes,Muscicapidae (Old World Flycatchers),,flojuf1 +28004,issf,flojuf3,Flores Jungle-Flycatcher (Sumba),Cyornis oscillans stresemanni,Passeriformes,Muscicapidae (Old World Flycatchers),,flojuf1 +28005,species,chtjuf1,Chestnut-tailed Jungle-Flycatcher,Cyornis ruficauda,Passeriformes,Muscicapidae (Old World Flycatchers),, +28006,issf,chtjuf2,Chestnut-tailed Jungle-Flycatcher (Philippine),Cyornis ruficauda [ruficauda Group],Passeriformes,Muscicapidae (Old World Flycatchers),,chtjuf1 +28011,issf,chtjuf3,Chestnut-tailed Jungle-Flycatcher (Sulu),Cyornis ruficauda ocularis,Passeriformes,Muscicapidae (Old World Flycatchers),,chtjuf1 +28012,issf,chtjuf4,Chestnut-tailed Jungle-Flycatcher (Crocker),Cyornis ruficauda ruficrissa/isola,Passeriformes,Muscicapidae (Old World Flycatchers),,chtjuf1 +28015,species,banjuf1,Banggai Jungle-Flycatcher,Cyornis pelingensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28016,species,suljuf1,Sula Jungle-Flycatcher,Cyornis colonus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28017,spuh,blue-f1,blue flycatcher sp.,Cyornis sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28018,species,larnil1,Large Niltava,Niltava grandis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28023,species,smanil1,Small Niltava,Niltava macgrigoriae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28026,species,fujnil1,Fujian Niltava,Niltava davidi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28027,species,rubnil1,Rufous-bellied Niltava,Niltava sundara,Passeriformes,Muscicapidae (Old World Flycatchers),, +28031,species,ruvnil1,Rufous-vented Niltava,Niltava sumatrana,Passeriformes,Muscicapidae (Old World Flycatchers),, +28032,species,vivnil1,Vivid Niltava,Niltava vivida,Passeriformes,Muscicapidae (Old World Flycatchers),, +28033,issf,vivnil2,Vivid Niltava (Large),Niltava vivida oatesi,Passeriformes,Muscicapidae (Old World Flycatchers),,vivnil1 +28034,issf,vivnil3,Vivid Niltava (Small),Niltava vivida vivida,Passeriformes,Muscicapidae (Old World Flycatchers),,vivnil1 +28035,spuh,niltav1,niltava sp.,Niltava sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28036,species,bawfly2,Blue-and-white Flycatcher,Cyanoptila cyanomelana,Passeriformes,Muscicapidae (Old World Flycatchers),, +28039,species,zapfly1,Zappey's Flycatcher,Cyanoptila cumatilis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28040,slash,y00911,Blue-and-white/Zappey's Flycatcher,Cyanoptila cyanomelana/cumatilis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28041,species,dubfly3,Dull-blue Flycatcher,Eumyias sordidus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28042,species,nilfly2,Nilgiri Flycatcher,Eumyias albicaudatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28043,species,indfly1,Indigo Flycatcher,Eumyias indigo,Passeriformes,Muscicapidae (Old World Flycatchers),, +28044,issf,indfly2,Indigo Flycatcher (Rufous-vented),Eumyias indigo ruficrissa/cerviniventris,Passeriformes,Muscicapidae (Old World Flycatchers),,indfly1 +28047,issf,indfly3,Indigo Flycatcher (Javan),Eumyias indigo indigo,Passeriformes,Muscicapidae (Old World Flycatchers),,indfly1 +28048,species,verfly4,Verditer Flycatcher,Eumyias thalassinus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28051,slash,y01103,Nilgiri/Verditer Flycatcher,Eumyias albicaudatus/thalassinus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28052,species,burjuf1,Buru Jungle-Flycatcher,Eumyias additus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28053,species,islfly1,Turquoise Flycatcher,Eumyias panayensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28061,species,wbrcha1,White-bellied Robin-Chat,Cossyphicula roberti,Passeriformes,Muscicapidae (Old World Flycatchers),, +28062,issf,whbroc1,White-bellied Robin-Chat (White-bellied),Cossyphicula roberti roberti,Passeriformes,Muscicapidae (Old World Flycatchers),,wbrcha1 +28063,issf,whbroc2,White-bellied Robin-Chat (Albertine),Cossyphicula roberti rufescentior,Passeriformes,Muscicapidae (Old World Flycatchers),,wbrcha1 +28064,species,morcha1,Mountain Robin-Chat,Cossypha isabellae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28065,issf,mouroc1,Mountain Robin-Chat (Highland),Cossypha isabellae batesi,Passeriformes,Muscicapidae (Old World Flycatchers),,morcha1 +28066,issf,mouroc2,Mountain Robin-Chat (Mountain),Cossypha isabellae isabellae,Passeriformes,Muscicapidae (Old World Flycatchers),,morcha1 +28067,species,arrcha1,Archer's Robin-Chat,Cossypha archeri,Passeriformes,Muscicapidae (Old World Flycatchers),, +28068,issf,arcroc1,Archer's Robin-Chat (Archer's),Cossypha archeri archeri,Passeriformes,Muscicapidae (Old World Flycatchers),,arrcha1 +28069,issf,arcroc2,Archer's Robin-Chat (Kabobo),Cossypha archeri kimbutui,Passeriformes,Muscicapidae (Old World Flycatchers),,arrcha1 +28070,species,ofrcha1,Olive-flanked Robin-Chat,Cossypha anomala,Passeriformes,Muscicapidae (Old World Flycatchers),, +28071,issf,olfroc1,Olive-flanked Robin-Chat (White-bellied),Cossypha anomala grotei,Passeriformes,Muscicapidae (Old World Flycatchers),,ofrcha1 +28072,issf,olfroc2,Olive-flanked Robin-Chat (Black),Cossypha anomala mbuluensis,Passeriformes,Muscicapidae (Old World Flycatchers),,ofrcha1 +28073,issf,olfroc3,Olive-flanked Robin-Chat (Olive-flanked),Cossypha anomala [anomala Group],Passeriformes,Muscicapidae (Old World Flycatchers),,ofrcha1 +28077,species,carcha1,Cape Robin-Chat,Cossypha caffra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28082,species,wtrcha1,White-throated Robin-Chat,Cossypha humeralis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28083,species,bsrcha1,Blue-shouldered Robin-Chat,Cossypha cyanocampter,Passeriformes,Muscicapidae (Old World Flycatchers),, +28086,species,gywroc1,Gray-winged Robin-Chat,Cossypha polioptera,Passeriformes,Muscicapidae (Old World Flycatchers),, +28087,issf,gywroc2,Gray-winged Robin-Chat (Black-capped),Cossypha polioptera nigriceps/tessmanni,Passeriformes,Muscicapidae (Old World Flycatchers),,gywroc1 +28090,issf,gywroc3,Gray-winged Robin-Chat (Gray-winged),Cossypha polioptera polioptera,Passeriformes,Muscicapidae (Old World Flycatchers),,gywroc1 +28091,species,rurcha1,Rüppell's Robin-Chat,Cossypha semirufa,Passeriformes,Muscicapidae (Old World Flycatchers),, +28095,species,wbrcha2,White-browed Robin-Chat,Cossypha heuglini,Passeriformes,Muscicapidae (Old World Flycatchers),, +28099,species,rcrcha1,Red-capped Robin-Chat,Cossypha natalensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28103,species,chrcha1,Chorister Robin-Chat,Cossypha dichroa,Passeriformes,Muscicapidae (Old World Flycatchers),, +28106,species,whrcha1,White-headed Robin-Chat,Cossypha heinrichi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28107,species,scrcha1,Snowy-crowned Robin-Chat,Cossypha niveicapilla,Passeriformes,Muscicapidae (Old World Flycatchers),, +28110,species,wcrcha1,White-crowned Robin-Chat,Cossypha albicapillus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28114,spuh,robin-1,robin-chat sp.,Cossypha sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28115,species,anccha1,Angola Cave-Chat,Xenocopsychus ansorgei,Passeriformes,Muscicapidae (Old World Flycatchers),, +28116,species,copthr1,Collared Palm-Thrush,Cichladusa arquata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28117,species,rtpthr1,Rufous-tailed Palm-Thrush,Cichladusa ruficauda,Passeriformes,Muscicapidae (Old World Flycatchers),, +28118,species,spmthr1,Spotted Morning-Thrush,Cichladusa guttata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28122,species,eurrob1,European Robin,Erithacus rubecula,Passeriformes,Muscicapidae (Old World Flycatchers),, +28131,species,whsrob1,White-starred Robin,Pogonocichla stellata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28142,species,swyrob1,Swynnerton's Robin,Swynnertonia swynnertoni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28143,issf,swyrob2,Swynnerton's Robin (Udzungwa),Swynnertonia swynnertoni rodgersi,Passeriformes,Muscicapidae (Old World Flycatchers),,swyrob1 +28144,issf,swyrob3,Swynnerton's Robin (Swynnerton's),Swynnertonia swynnertoni swynnertoni,Passeriformes,Muscicapidae (Old World Flycatchers),,swyrob1 +28145,species,brcale1,Brown-chested Alethe,Chamaetylas poliocephala,Passeriformes,Muscicapidae (Old World Flycatchers),, +28146,issf,bncale1,Brown-chested Alethe (Gray-headed),Chamaetylas poliocephala poliocephala,Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 +28147,issf,bncale2,Brown-chested Alethe (Gabela),Chamaetylas poliocephala hallae,Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 +28148,issf,bncale3,Brown-chested Alethe (Chestnut-backed),Chamaetylas poliocephala compsonota,Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 +28149,issf,bncale4,Brown-chested Alethe (Brown-chested),Chamaetylas poliocephala [carruthersi Group],Passeriformes,Muscicapidae (Old World Flycatchers),,brcale1 +28157,species,retale1,Red-throated Alethe,Chamaetylas poliophrys,Passeriformes,Muscicapidae (Old World Flycatchers),, +28160,species,choale1,Cholo Alethe,Chamaetylas choloensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28163,species,whcale1,White-chested Alethe,Chamaetylas fuelleborni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28164,species,forrob1,Forest Robin,Stiphrornis erythrothorax,Passeriformes,Muscicapidae (Old World Flycatchers),, +28165,issf,forrob2,Forest Robin (Western),Stiphrornis erythrothorax erythrothorax,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 +28166,issf,forrob3,Forest Robin (Gabon),Stiphrornis erythrothorax gabonensis,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 +28167,issf,forrob4,Forest Robin (Sangha),Stiphrornis erythrothorax sanghensis,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 +28168,issf,forrob6,Forest Robin (Olive-backed),Stiphrornis erythrothorax pyrrholaemus,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 +28169,issf,forrob5,Forest Robin (Eastern),Stiphrornis erythrothorax xanthogaster,Passeriformes,Muscicapidae (Old World Flycatchers),,forrob1 +28170,species,bocaka1,Bocage's Akalat,Sheppardia bocagei,Passeriformes,Muscicapidae (Old World Flycatchers),, +28171,issf,bocaka2,Bocage's Akalat (Grant's),Sheppardia bocagei granti,Passeriformes,Muscicapidae (Old World Flycatchers),,bocaka1 +28172,issf,bocaka3,Bocage's Akalat (Bioko),Sheppardia bocagei poensis,Passeriformes,Muscicapidae (Old World Flycatchers),,bocaka1 +28173,issf,bocaka4,Bocage's Akalat (Bocage's),Sheppardia bocagei [bocagei Group],Passeriformes,Muscicapidae (Old World Flycatchers),,bocaka1 +28180,species,lowaka1,Lowland Akalat,Sheppardia cyornithopsis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28184,species,equaka1,Equatorial Akalat,Sheppardia aequatorialis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28187,species,shaaka1,Sharpe's Akalat,Sheppardia sharpei,Passeriformes,Muscicapidae (Old World Flycatchers),, +28190,species,eacaka1,East Coast Akalat,Sheppardia gunningi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28191,issf,eacaka2,East Coast Akalat (East Coast),Sheppardia gunningi sokokensis,Passeriformes,Muscicapidae (Old World Flycatchers),,eacaka1 +28192,issf,eacaka4,East Coast Akalat (Montane),Sheppardia gunningi alticola,Passeriformes,Muscicapidae (Old World Flycatchers),,eacaka1 +28193,issf,eacaka5,East Coast Akalat (Benson's),Sheppardia gunningi bensoni,Passeriformes,Muscicapidae (Old World Flycatchers),,eacaka1 +28194,issf,eacaka6,East Coast Akalat (Gunning's),Sheppardia gunningi gunningi,Passeriformes,Muscicapidae (Old World Flycatchers),,eacaka1 +28195,species,gabaka1,Gabela Akalat,Sheppardia gabela,Passeriformes,Muscicapidae (Old World Flycatchers),, +28196,species,usaaka1,Usambara Akalat,Sheppardia montana,Passeriformes,Muscicapidae (Old World Flycatchers),, +28197,species,iriaka1,Iringa Akalat,Sheppardia lowei,Passeriformes,Muscicapidae (Old World Flycatchers),, +28198,species,rubaka1,Rubeho Akalat,Sheppardia aurantiithorax,Passeriformes,Muscicapidae (Old World Flycatchers),, +28199,species,bagbab2,Bagobo Robin,Leonardina woodi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28200,species,eyjfly1,Eyebrowed Jungle-Flycatcher,Vauriella gularis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28201,species,rufjuf1,Rusty-flanked Jungle-Flycatcher,Vauriella insignis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28202,species,negjuf1,Negros Jungle-Flycatcher,Vauriella albigularis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28203,species,minjuf1,Mindanao Jungle-Flycatcher,Vauriella goodfellowi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28204,species,gresho1,Great Shortwing,Heinrichia calligyna,Passeriformes,Muscicapidae (Old World Flycatchers),, +28205,issf,gresho2,Great Shortwing (Minahasa),Heinrichia calligyna simplex,Passeriformes,Muscicapidae (Old World Flycatchers),,gresho1 +28206,issf,gresho3,Great Shortwing (Great),Heinrichia calligyna calligyna/picta,Passeriformes,Muscicapidae (Old World Flycatchers),,gresho1 +28209,species,rubsho1,Rusty-bellied Shortwing,Brachypteryx hyperythra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28210,species,gousho1,Gould's Shortwing,Brachypteryx stellata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28213,species,lessho1,Lesser Shortwing,Brachypteryx leucophris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28219,species,whbsho4,Himalayan Shortwing,Brachypteryx cruralis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28220,species,whbsho5,Chinese Shortwing,Brachypteryx sinensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28221,slash,y01161,Himalayan/Chinese Shortwing,Brachypteryx cruralis/sinensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28222,species,whbsho6,Taiwan Shortwing,Brachypteryx goodfellowi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28223,species,whbsho12,White-browed Shortwing,Brachypteryx montana,Passeriformes,Muscicapidae (Old World Flycatchers),, +28224,issf,whbsho7,White-browed Shortwing (Philippine),Brachypteryx montana [poliogyna Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho12 +28232,issf,whbsho8,White-browed Shortwing (Bornean),Brachypteryx montana erythrogyna,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho12 +28233,issf,whbsho9,White-browed Shortwing (Sumatran),Brachypteryx montana saturata,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho12 +28234,issf,whbsho10,White-browed Shortwing (Javan),Brachypteryx montana montana,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho12 +28235,issf,whbsho11,White-browed Shortwing (Flores),Brachypteryx montana floris,Passeriformes,Muscicapidae (Old World Flycatchers),,whbsho12 +28236,spuh,brachy1,Brachypteryx sp.,Brachypteryx sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28237,species,rutrob1,Rufous-tailed Robin,Larvivora sibilans,Passeriformes,Muscicapidae (Old World Flycatchers),, +28238,species,ruhrob1,Rufous-headed Robin,Larvivora ruficeps,Passeriformes,Muscicapidae (Old World Flycatchers),, +28239,species,japrob1,Japanese Robin,Larvivora akahige,Passeriformes,Muscicapidae (Old World Flycatchers),, +28240,issf,japrob2,Japanese Robin (Japanese),Larvivora akahige akahige/rishirensis,Passeriformes,Muscicapidae (Old World Flycatchers),,japrob1 +28243,issf,japrob3,Japanese Robin (Izu),Larvivora akahige tanensis,Passeriformes,Muscicapidae (Old World Flycatchers),,japrob1 +28244,species,ryurob1,Ryukyu Robin,Larvivora komadori,Passeriformes,Muscicapidae (Old World Flycatchers),, +28245,issf,ryurob2,Ryukyu Robin (Ryukyu),Larvivora komadori komadori/subrufus,Passeriformes,Muscicapidae (Old World Flycatchers),,ryurob1 +28248,issf,ryurob3,Ryukyu Robin (Okinawa),Larvivora komadori namiyei,Passeriformes,Muscicapidae (Old World Flycatchers),,ryurob1 +28249,species,inbrob1,Indian Blue Robin,Larvivora brunnea,Passeriformes,Muscicapidae (Old World Flycatchers),, +28252,species,sibrob,Siberian Blue Robin,Larvivora cyane,Passeriformes,Muscicapidae (Old World Flycatchers),, +28255,species,whtrob3,White-throated Robin,Irania gutturalis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28256,species,thrnig1,Thrush Nightingale,Luscinia luscinia,Passeriformes,Muscicapidae (Old World Flycatchers),, +28257,species,comnig1,Common Nightingale,Luscinia megarhynchos,Passeriformes,Muscicapidae (Old World Flycatchers),, +28258,issf,comnig2,Common Nightingale (megarhynchos/africana),Luscinia megarhynchos megarhynchos/africana,Passeriformes,Muscicapidae (Old World Flycatchers),,comnig1 +28261,issf,comnig3,Common Nightingale (golzii),Luscinia megarhynchos golzii,Passeriformes,Muscicapidae (Old World Flycatchers),,comnig1 +28262,slash,y00625,Thrush/Common Nightingale,Luscinia luscinia/megarhynchos,Passeriformes,Muscicapidae (Old World Flycatchers),, +28263,species,whbred1,White-bellied Redstart,Luscinia phaenicuroides,Passeriformes,Muscicapidae (Old World Flycatchers),, +28266,species,blueth,Bluethroat,Luscinia svecica,Passeriformes,Muscicapidae (Old World Flycatchers),, +28267,issf,blueth1,Bluethroat (Red-spotted),Luscinia svecica [svecica Group],Passeriformes,Muscicapidae (Old World Flycatchers),,blueth +28276,issf,blueth4,Bluethroat (Iberian),Luscinia svecica azuricollis,Passeriformes,Muscicapidae (Old World Flycatchers),,blueth +28277,issf,blueth2,Bluethroat (White-spotted),Luscinia svecica cyanecula/namnetum,Passeriformes,Muscicapidae (Old World Flycatchers),,blueth +28280,issf,blueth3,Bluethroat (Caucasian),Luscinia svecica magna,Passeriformes,Muscicapidae (Old World Flycatchers),,blueth +28281,species,ceywht1,Sri Lanka Whistling-Thrush,Myophonus blighi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28282,species,shwthr1,Shiny Whistling-Thrush,Myophonus melanurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28283,species,javwht1,Javan Whistling-Thrush,Myophonus glaucinus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28284,species,chwwht1,Sumatran Whistling-Thrush,Myophonus castaneus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28285,species,borwht1,Bornean Whistling-Thrush,Myophonus borneensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28286,species,mawthr2,Malayan Whistling-Thrush,Myophonus robinsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28287,species,mawthr1,Malabar Whistling-Thrush,Myophonus horsfieldii,Passeriformes,Muscicapidae (Old World Flycatchers),, +28288,species,fowthr1,Taiwan Whistling-Thrush,Myophonus insularis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28289,species,blwthr1,Blue Whistling-Thrush,Myophonus caeruleus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28290,issf,bluwht1,Blue Whistling-Thrush (Black-billed),Myophonus caeruleus caeruleus,Passeriformes,Muscicapidae (Old World Flycatchers),,blwthr1 +28291,issf,bluwht2,Blue Whistling-Thrush (Yellow-billed),Myophonus caeruleus [flavirostris Group],Passeriformes,Muscicapidae (Old World Flycatchers),,blwthr1 +28297,spuh,whistl2,whistling-thrush sp.,Myophonus sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28298,species,litfor1,Little Forktail,Enicurus scouleri,Passeriformes,Muscicapidae (Old World Flycatchers),, +28301,species,whcfor1,White-crowned Forktail,Enicurus leschenaulti,Passeriformes,Muscicapidae (Old World Flycatchers),, +28302,issf,whcfor4,White-crowned Forktail (White-crowned),Enicurus leschenaulti [frontalis Group],Passeriformes,Muscicapidae (Old World Flycatchers),,whcfor1 +28307,issf,whcfor5,White-crowned Forktail (Javan),Enicurus leschenaulti leschenaulti,Passeriformes,Muscicapidae (Old World Flycatchers),,whcfor1 +28308,issf,whcfor3,White-crowned Forktail (Bornean),Enicurus leschenaulti borneensis,Passeriformes,Muscicapidae (Old World Flycatchers),,whcfor1 +28309,species,spofor1,Spotted Forktail,Enicurus maculatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28314,species,sunfor1,Sunda Forktail,Enicurus velatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28317,species,chnfor1,Chestnut-naped Forktail,Enicurus ruficapillus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28318,species,blbfor1,Black-backed Forktail,Enicurus immaculatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28319,species,slbfor1,Slaty-backed Forktail,Enicurus schistaceus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28320,spuh,forkta1,forktail sp.,Enicurus sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28321,species,fireth1,Firethroat,Calliope pectardens,Passeriformes,Muscicapidae (Old World Flycatchers),, +28322,species,btbrob1,Blackthroat,Calliope obscura,Passeriformes,Muscicapidae (Old World Flycatchers),, +28323,species,sibrub,Siberian Rubythroat,Calliope calliope,Passeriformes,Muscicapidae (Old World Flycatchers),, +28324,species,himrub1,Himalayan Rubythroat,Calliope pectoralis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28328,species,chirub1,Chinese Rubythroat,Calliope tschebaiewi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28329,slash,whtrub1,Himalayan/Chinese Rubythroat (White-tailed Rubythroat),Calliope pectoralis/tschebaiewi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28330,species,whtrob2,White-tailed Robin,Myiomela leucura,Passeriformes,Muscicapidae (Old World Flycatchers),, +28331,issf,whtrob4,White-tailed Robin (White-tailed),Myiomela leucura leucura/montium,Passeriformes,Muscicapidae (Old World Flycatchers),,whtrob2 +28334,issf,whtrob5,White-tailed Robin (Cambodian),Myiomela leucura cambodiana,Passeriformes,Muscicapidae (Old World Flycatchers),,whtrob2 +28335,species,sunrob1,Sunda Robin,Myiomela diana,Passeriformes,Muscicapidae (Old World Flycatchers),, +28336,issf,sunrob2,Sunda Robin (Sumatran),Myiomela diana sumatrana,Passeriformes,Muscicapidae (Old World Flycatchers),,sunrob1 +28337,issf,sunrob3,Sunda Robin (Javan),Myiomela diana diana,Passeriformes,Muscicapidae (Old World Flycatchers),,sunrob1 +28338,species,blfrob1,Blue-fronted Robin,Cinclidium frontale,Passeriformes,Muscicapidae (Old World Flycatchers),, +28341,species,refblu,Red-flanked Bluetail,Tarsiger cyanurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28342,species,himblu1,Himalayan Bluetail,Tarsiger rufilatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28343,slash,y00912,Red-flanked/Himalayan Bluetail,Tarsiger cyanurus/rufilatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28344,species,rbbrob1,Rufous-breasted Bush-Robin,Tarsiger hyperythrus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28345,species,wbbrob1,White-browed Bush-Robin,Tarsiger indicus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28349,species,gobrob1,Golden Bush-Robin,Tarsiger chrysaeus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28352,species,cobrob1,Collared Bush-Robin,Tarsiger johnstoniae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28353,slash,y01124,White-browed/Collared Bush-Robin,Tarsiger indicus/johnstoniae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28354,spuh,tarsig1,Tarsiger sp.,Tarsiger sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28355,species,korfly1,Yellow-rumped Flycatcher,Ficedula zanthopygia,Passeriformes,Muscicapidae (Old World Flycatchers),, +28356,species,narfly1,Green-backed Flycatcher,Ficedula elisae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28357,species,narfly,Narcissus Flycatcher,Ficedula narcissina,Passeriformes,Muscicapidae (Old World Flycatchers),, +28358,issf,narfly2,Narcissus Flycatcher (Narcissus),Ficedula narcissina narcissina,Passeriformes,Muscicapidae (Old World Flycatchers),,narfly +28359,issf,narfly3,Narcissus Flycatcher (Green-crowned),Ficedula narcissina owstoni,Passeriformes,Muscicapidae (Old World Flycatchers),,narfly +28360,slash,y00913,Yellow-rumped/Green-backed/Narcissus Flycatcher,Ficedula zanthopygia/elisae/narcissina,Passeriformes,Muscicapidae (Old World Flycatchers),, +28361,species,mugfly,Mugimaki Flycatcher,Ficedula mugimaki,Passeriformes,Muscicapidae (Old World Flycatchers),, +28362,species,slbfly1,Slaty-backed Flycatcher,Ficedula erithacus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28363,species,barfly1,Black-and-orange Flycatcher,Ficedula nigrorufa,Passeriformes,Muscicapidae (Old World Flycatchers),, +28364,species,slbfly2,Slaty-blue Flycatcher,Ficedula tricolor,Passeriformes,Muscicapidae (Old World Flycatchers),, +28369,species,snbfly1,Snowy-browed Flycatcher,Ficedula hyperythra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28383,species,pybfly1,Pygmy Flycatcher,Ficedula hodgsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28386,species,rugfly1,Rufous-gorgeted Flycatcher,Ficedula strophiata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28389,species,sapfly1,Sapphire Flycatcher,Ficedula sapphira,Passeriformes,Muscicapidae (Old World Flycatchers),, +28393,species,lipfly1,Little Pied Flycatcher,Ficedula westermanni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28402,species,ultfly1,Ultramarine Flycatcher,Ficedula superciliaris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28405,species,rutfly6,Rusty-tailed Flycatcher,Ficedula ruficauda,Passeriformes,Muscicapidae (Old World Flycatchers),, +28406,species,taifly1,Taiga Flycatcher,Ficedula albicilla,Passeriformes,Muscicapidae (Old World Flycatchers),, +28407,species,kasfly1,Kashmir Flycatcher,Ficedula subrubra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28408,species,rebfly,Red-breasted Flycatcher,Ficedula parva,Passeriformes,Muscicapidae (Old World Flycatchers),, +28409,slash,y00821,Taiga/Red-breasted Flycatcher,Ficedula albicilla/parva,Passeriformes,Muscicapidae (Old World Flycatchers),, +28410,species,semfly1,Semicollared Flycatcher,Ficedula semitorquata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28411,species,eupfly1,European Pied Flycatcher,Ficedula hypoleuca,Passeriformes,Muscicapidae (Old World Flycatchers),, +28415,species,atlfly1,Atlas Flycatcher,Ficedula speculigera,Passeriformes,Muscicapidae (Old World Flycatchers),, +28416,slash,y00819,European Pied/Atlas Flycatcher,Ficedula hypoleuca/speculigera,Passeriformes,Muscicapidae (Old World Flycatchers),, +28417,species,colfly1,Collared Flycatcher,Ficedula albicollis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28418,hybrid,x00817,European Pied x Collared Flycatcher (hybrid),Ficedula hypoleuca x albicollis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28419,slash,y00820,European Pied/Collared/Semicollared Flycatcher,Ficedula hypoleuca/albicollis/semitorquata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28420,species,rucfly3,Tanimbar Flycatcher,Ficedula riedeli,Passeriformes,Muscicapidae (Old World Flycatchers),, +28421,species,rucfly1,Rufous-chested Flycatcher,Ficedula dumetoria,Passeriformes,Muscicapidae (Old World Flycatchers),, +28424,species,palfly1,Palawan Flycatcher,Ficedula platenae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28425,species,furfly1,Furtive Flycatcher,Ficedula disposita,Passeriformes,Muscicapidae (Old World Flycatchers),, +28426,species,rutfly5,Rufous-throated Flycatcher,Ficedula rufigula,Passeriformes,Muscicapidae (Old World Flycatchers),, +28427,species,damfly1,Damar Flycatcher,Ficedula henrici,Passeriformes,Muscicapidae (Old World Flycatchers),, +28428,species,cicfly1,Cinnamon-chested Flycatcher,Ficedula buruensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28432,species,lomfly1,Lompobattang Flycatcher,Ficedula bonthaina,Passeriformes,Muscicapidae (Old World Flycatchers),, +28433,species,sumfly1,Sumba Flycatcher,Ficedula harterti,Passeriformes,Muscicapidae (Old World Flycatchers),, +28434,species,blbfly2,Black-banded Flycatcher,Ficedula timorensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28435,species,lisfly1,Little Slaty Flycatcher,Ficedula basilanica,Passeriformes,Muscicapidae (Old World Flycatchers),, +28438,species,rutfly7,Cryptic Flycatcher,Ficedula crypta,Passeriformes,Muscicapidae (Old World Flycatchers),, +28439,species,bunfly1,Bundok Flycatcher,Ficedula luzoniensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28448,spuh,ficedu1,Ficedula sp.,Ficedula sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28449,species,blfred1,Blue-fronted Redstart,Phoenicurus frontalis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28450,species,plured1,Plumbeous Redstart,Phoenicurus fuliginosus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28453,species,luzred1,Luzon Redstart,Phoenicurus bicolor,Passeriformes,Muscicapidae (Old World Flycatchers),, +28454,species,rubred2,Rufous-backed Redstart,Phoenicurus erythronotus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28455,species,whcred1,White-capped Redstart,Phoenicurus leucocephalus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28456,species,alsred1,Ala Shan Redstart,Phoenicurus alaschanicus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28457,species,bucred1,Blue-capped Redstart,Phoenicurus coeruleocephala,Passeriformes,Muscicapidae (Old World Flycatchers),, +28458,species,moured1,Moussier's Redstart,Phoenicurus moussieri,Passeriformes,Muscicapidae (Old World Flycatchers),, +28459,species,comred2,Common Redstart,Phoenicurus phoenicurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28460,issf,comred5,Common Redstart (Common),Phoenicurus phoenicurus phoenicurus,Passeriformes,Muscicapidae (Old World Flycatchers),,comred2 +28461,issf,comred6,Common Redstart (Ehrenberg's),Phoenicurus phoenicurus samamisicus,Passeriformes,Muscicapidae (Old World Flycatchers),,comred2 +28462,species,hodred1,Hodgson's Redstart,Phoenicurus hodgsoni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28463,species,whtred1,White-throated Redstart,Phoenicurus schisticeps,Passeriformes,Muscicapidae (Old World Flycatchers),, +28464,species,whwred2,White-winged Redstart,Phoenicurus erythrogastrus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28467,species,blared1,Black Redstart,Phoenicurus ochruros,Passeriformes,Muscicapidae (Old World Flycatchers),, +28468,issf,blkred2,Black Redstart (Western),Phoenicurus ochruros gibraltariensis/aterrimus,Passeriformes,Muscicapidae (Old World Flycatchers),,blared1 +28471,issf,blkred1,Black Redstart (Eastern),Phoenicurus ochruros [ochruros Group],Passeriformes,Muscicapidae (Old World Flycatchers),,blared1 +28477,hybrid,x00745,Common x Black Redstart (hybrid),Phoenicurus phoenicurus x ochruros,Passeriformes,Muscicapidae (Old World Flycatchers),, +28478,slash,y01071,Common/Black Redstart,Phoenicurus phoenicurus/ochruros,Passeriformes,Muscicapidae (Old World Flycatchers),, +28479,species,daured1,Daurian Redstart,Phoenicurus auroreus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28482,spuh,redsta1,redstart sp.,Phoenicurus sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28483,species,lirthr1,Little Rock-Thrush,Monticola rufocinereus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28486,species,cbrthr1,Chestnut-bellied Rock-Thrush,Monticola rufiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28487,species,wtrthr1,White-throated Rock-Thrush,Monticola gularis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28488,species,bcrthr1,Blue-capped Rock-Thrush,Monticola cinclorhyncha,Passeriformes,Muscicapidae (Old World Flycatchers),, +28489,species,strthr1,Short-toed Rock-Thrush,Monticola brevipes,Passeriformes,Muscicapidae (Old World Flycatchers),, +28490,issf,shtrot1,Short-toed Rock-Thrush (Short-toed),Monticola brevipes brevipes,Passeriformes,Muscicapidae (Old World Flycatchers),,strthr1 +28491,issf,shtrot2,Short-toed Rock-Thrush (White-crowned),Monticola brevipes pretoriae,Passeriformes,Muscicapidae (Old World Flycatchers),,strthr1 +28492,species,serthr1,Sentinel Rock-Thrush,Monticola explorator,Passeriformes,Muscicapidae (Old World Flycatchers),, +28495,species,forrot2,Forest Rock-Thrush,Monticola sharpei,Passeriformes,Muscicapidae (Old World Flycatchers),, +28496,issf,ammrot1,Forest Rock-Thrush (Amber Mountain),Monticola sharpei erythronotus,Passeriformes,Muscicapidae (Old World Flycatchers),,forrot2 +28497,issf,forrot1,Forest Rock-Thrush (Forest),Monticola sharpei sharpei,Passeriformes,Muscicapidae (Old World Flycatchers),,forrot2 +28498,issf,benrot1,Forest Rock-Thrush (Benson's),Monticola sharpei bensoni,Passeriformes,Muscicapidae (Old World Flycatchers),,forrot2 +28499,species,litrot1,Littoral Rock-Thrush,Monticola imerina,Passeriformes,Muscicapidae (Old World Flycatchers),, +28500,species,rtrthr1,Rufous-tailed Rock-Thrush,Monticola saxatilis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28501,species,burthr,Blue Rock-Thrush,Monticola solitarius,Passeriformes,Muscicapidae (Old World Flycatchers),, +28502,issf,blurot1,Blue Rock-Thrush (solitarius/longirostris),Monticola solitarius solitarius/longirostris,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr +28505,issf,blurot5,Blue Rock-Thrush (pandoo),Monticola solitarius pandoo,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr +28506,issf,blurot2,Blue Rock-Thrush (philippensis),Monticola solitarius philippensis,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr +28507,intergrade,blurot3,Blue Rock-Thrush (pandoo x philippensis),Monticola solitarius pandoo x philippensis,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr +28508,issf,blurot4,Blue Rock-Thrush (madoci),Monticola solitarius madoci,Passeriformes,Muscicapidae (Old World Flycatchers),,burthr +28509,species,mirthr1,Miombo Rock-Thrush,Monticola angolensis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28512,species,carthr1,Cape Rock-Thrush,Monticola rupestris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28513,spuh,rock-t1,rock-thrush sp.,Monticola sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28514,species,whinch1,Whinchat,Saxicola rubetra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28515,hybrid,x00818,Common Redstart x Whinchat (hybrid),Phoenicurus phoenicurus x Saxicola rubetra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28516,species,whbbus4,White-browed Bushchat,Saxicola macrorhynchus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28517,species,whtbus1,White-throated Bushchat,Saxicola insignis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28518,species,caisto1,Fuerteventura Stonechat,Saxicola dacotiae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28521,species,stonec4,European Stonechat,Saxicola rubicola,Passeriformes,Muscicapidae (Old World Flycatchers),, +28524,species,sibsto1,Siberian Stonechat,Saxicola maurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28525,issf,sibsto2,Siberian Stonechat (Caspian),Saxicola maurus hemprichii,Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 +28526,issf,stonec2,Siberian Stonechat (Siberian),Saxicola maurus [maurus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 +28530,issf,sibsto3,Siberian Stonechat (Przevalski's),Saxicola maurus przewalskii,Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 +28531,issf,stonec7,Siberian Stonechat (Stejneger's),Saxicola maurus stejnegeri,Passeriformes,Muscicapidae (Old World Flycatchers),,sibsto1 +28532,slash,y01123,White-browed Bushchat/Siberian Stonechat,Saxicola insignis/maurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28533,slash,stonec1,European/Siberian Stonechat,Saxicola rubicola/maurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28534,species,afrsto1,African Stonechat,Saxicola torquatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28535,issf,stonec3,African Stonechat (African),Saxicola torquatus [torquatus Group],Passeriformes,Muscicapidae (Old World Flycatchers),,afrsto1 +28550,issf,stonec5,African Stonechat (Ethiopian),Saxicola torquatus albofasciatus,Passeriformes,Muscicapidae (Old World Flycatchers),,afrsto1 +28551,issf,stonec6,African Stonechat (Madagascar),Saxicola torquatus sibilla,Passeriformes,Muscicapidae (Old World Flycatchers),,afrsto1 +28552,species,reusto1,Reunion Stonechat,Saxicola tectes,Passeriformes,Muscicapidae (Old World Flycatchers),, +28553,species,whtsto2,White-tailed Stonechat,Saxicola leucurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28554,slash,y00914,Siberian/White-tailed Stonechat,Saxicola maurus/leucurus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28555,species,piebus1,Pied Bushchat,Saxicola caprata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28572,species,jerbus1,Jerdon's Bushchat,Saxicola jerdoni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28573,species,grybus1,Gray Bushchat,Saxicola ferreus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28576,species,timbus1,Timor Bushchat,Saxicola gutturalis,Passeriformes,Muscicapidae (Old World Flycatchers),, +28579,spuh,saxico1,Saxicola sp.,Saxicola sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28580,species,busbus1,Buff-streaked Chat,Campicoloides bifasciatus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28581,species,siccha1,Sickle-winged Chat,Emarginata sinuata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28585,species,karcha1,Karoo Chat,Emarginata schlegelii,Passeriformes,Muscicapidae (Old World Flycatchers),, +28591,species,tracha1,Tractrac Chat,Emarginata tractrac,Passeriformes,Muscicapidae (Old World Flycatchers),, +28597,species,moocha1,Moorland Chat,Pinarochroa sordida,Passeriformes,Muscicapidae (Old World Flycatchers),, +28598,issf,moocha2,Moorland Chat (Abyssinian),Pinarochroa sordida sordida,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 +28599,issf,moocha4,Moorland Chat (Mt. Kenya),Pinarochroa sordida ernesti,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 +28600,issf,moocha5,Moorland Chat (Ngorongoro),Pinarochroa sordida olimotiensis,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 +28601,issf,moocha6,Moorland Chat (Mt. Kilimanjaro),Pinarochroa sordida hypospodia,Passeriformes,Muscicapidae (Old World Flycatchers),,moocha1 +28602,species,moccha1,Mocking Cliff-Chat,Thamnolaea cinnamomeiventris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28611,species,wwccha1,White-winged Cliff-Chat,Thamnolaea semirufa,Passeriformes,Muscicapidae (Old World Flycatchers),, +28612,species,soocha1,Sooty Chat,Myrmecocichla nigra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28613,species,noacha1,Northern Anteater-Chat,Myrmecocichla aethiops,Passeriformes,Muscicapidae (Old World Flycatchers),, +28617,species,soacha1,Southern Anteater-Chat,Myrmecocichla formicivora,Passeriformes,Muscicapidae (Old World Flycatchers),, +28618,species,conmoo1,Congo Moor Chat,Myrmecocichla tholloni,Passeriformes,Muscicapidae (Old World Flycatchers),, +28619,species,mouwhe1,Mountain Wheatear,Myrmecocichla monticola,Passeriformes,Muscicapidae (Old World Flycatchers),, +28624,species,ruecha1,Rüppell's Chat,Myrmecocichla melaena,Passeriformes,Muscicapidae (Old World Flycatchers),, +28625,species,whbcha2,Arnot's Chat,Myrmecocichla arnotti,Passeriformes,Muscicapidae (Old World Flycatchers),, +28626,issf,arncha1,Arnot's Chat (Angola),Myrmecocichla arnotti harterti,Passeriformes,Muscicapidae (Old World Flycatchers),,whbcha2 +28627,issf,arncha2,Arnot's Chat (Arnot's),Myrmecocichla arnotti arnotti,Passeriformes,Muscicapidae (Old World Flycatchers),,whbcha2 +28628,species,ruacha1,Ruaha Chat,Myrmecocichla collaris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28629,species,norwhe,Northern Wheatear,Oenanthe oenanthe,Passeriformes,Muscicapidae (Old World Flycatchers),, +28630,issf,norwhe2,Northern Wheatear (Greenland),Oenanthe oenanthe leucorhoa,Passeriformes,Muscicapidae (Old World Flycatchers),,norwhe +28631,issf,norwhe1,Northern Wheatear (Eurasian),Oenanthe oenanthe oenanthe/libanotica,Passeriformes,Muscicapidae (Old World Flycatchers),,norwhe +28634,issf,norwhe3,Northern Wheatear (Black-throated),Oenanthe oenanthe seebohmi,Passeriformes,Muscicapidae (Old World Flycatchers),,norwhe +28635,species,capwhe1,Capped Wheatear,Oenanthe pileata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28639,species,rebwhe1,Red-breasted Wheatear,Oenanthe bottae,Passeriformes,Muscicapidae (Old World Flycatchers),, +28640,issf,rebwhe2,Red-breasted Wheatear (Buff-breasted),Oenanthe bottae bottae,Passeriformes,Muscicapidae (Old World Flycatchers),,rebwhe1 +28641,issf,rebwhe3,Red-breasted Wheatear (Rusty-breasted),Oenanthe bottae frenata,Passeriformes,Muscicapidae (Old World Flycatchers),,rebwhe1 +28642,species,isawhe1,Isabelline Wheatear,Oenanthe isabellina,Passeriformes,Muscicapidae (Old World Flycatchers),, +28643,species,heuwhe1,Heuglin's Wheatear,Oenanthe heuglini,Passeriformes,Muscicapidae (Old World Flycatchers),, +28644,species,hoowhe1,Hooded Wheatear,Oenanthe monacha,Passeriformes,Muscicapidae (Old World Flycatchers),, +28645,species,deswhe1,Desert Wheatear,Oenanthe deserti,Passeriformes,Muscicapidae (Old World Flycatchers),, +28650,species,piewhe1,Pied Wheatear,Oenanthe pleschanka,Passeriformes,Muscicapidae (Old World Flycatchers),, +28651,species,blewhe1,Black-eared Wheatear,Oenanthe hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),, +28652,issf,bkewhe1,Black-eared Wheatear (Western),Oenanthe hispanica hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),,blewhe1 +28653,issf,bkewhe2,Black-eared Wheatear (Eastern),Oenanthe hispanica melanoleuca,Passeriformes,Muscicapidae (Old World Flycatchers),,blewhe1 +28654,slash,y00915,Northern/Black-eared Wheatear,Oenanthe oenanthe/hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),, +28655,hybrid,x00771,Pied x Black-eared Wheatear (hybrid),Oenanthe pleschanka x hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),, +28656,slash,y01162,Pied/Black-eared Wheatear,Oenanthe pleschanka/hispanica,Passeriformes,Muscicapidae (Old World Flycatchers),, +28657,species,cypwhe1,Cyprus Wheatear,Oenanthe cypriaca,Passeriformes,Muscicapidae (Old World Flycatchers),, +28658,slash,y01004,Pied/Cyprus Wheatear,Oenanthe pleschanka/cypriaca,Passeriformes,Muscicapidae (Old World Flycatchers),, +28659,species,wfbcha1,White-fronted Black-Chat,Oenanthe albifrons,Passeriformes,Muscicapidae (Old World Flycatchers),, +28665,species,somwhe1,Somali Wheatear,Oenanthe phillipsi,Passeriformes,Muscicapidae (Old World Flycatchers),, +28666,species,rerwhe1,Red-rumped Wheatear,Oenanthe moesta,Passeriformes,Muscicapidae (Old World Flycatchers),, +28669,species,blacks1,Blackstart,Oenanthe melanura,Passeriformes,Muscicapidae (Old World Flycatchers),, +28676,species,famcha1,Familiar Chat,Oenanthe familiaris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28685,species,somcha1,Sombre Rock Chat,Oenanthe dubia,Passeriformes,Muscicapidae (Old World Flycatchers),, +28686,species,brtcha1,Brown-tailed Chat,Oenanthe scotocerca,Passeriformes,Muscicapidae (Old World Flycatchers),, +28687,issf,bntcha1,Brown-tailed Chat (Brown-tailed),Oenanthe scotocerca [scotocerca Group],Passeriformes,Muscicapidae (Old World Flycatchers),,brtcha1 +28691,issf,bntcha2,Brown-tailed Chat (Pale),Oenanthe scotocerca spectatrix/validior,Passeriformes,Muscicapidae (Old World Flycatchers),,brtcha1 +28694,species,indcha1,Brown Rock Chat,Oenanthe fusca,Passeriformes,Muscicapidae (Old World Flycatchers),, +28695,species,varwhe1,Variable Wheatear,Oenanthe picata,Passeriformes,Muscicapidae (Old World Flycatchers),, +28696,species,blawhe1,Black Wheatear,Oenanthe leucura,Passeriformes,Muscicapidae (Old World Flycatchers),, +28699,species,humwhe2,Hume's Wheatear,Oenanthe albonigra,Passeriformes,Muscicapidae (Old World Flycatchers),, +28700,species,whtwhe1,White-crowned Wheatear,Oenanthe leucopyga,Passeriformes,Muscicapidae (Old World Flycatchers),, +28704,species,mouwhe5,Arabian Wheatear,Oenanthe lugentoides,Passeriformes,Muscicapidae (Old World Flycatchers),, +28707,species,mouwhe4,Abyssinian Wheatear,Oenanthe lugubris,Passeriformes,Muscicapidae (Old World Flycatchers),, +28711,species,finwhe1,Finsch's Wheatear,Oenanthe finschii,Passeriformes,Muscicapidae (Old World Flycatchers),, +28714,species,mouwhe2,Mourning Wheatear,Oenanthe lugens,Passeriformes,Muscicapidae (Old World Flycatchers),, +28715,issf,mouwhe3,Mourning Wheatear (Mourning),Oenanthe lugens lugens/persica,Passeriformes,Muscicapidae (Old World Flycatchers),,mouwhe2 +28718,issf,mouwhe6,Mourning Wheatear (Maghreb),Oenanthe lugens halophila,Passeriformes,Muscicapidae (Old World Flycatchers),,mouwhe2 +28719,issf,mouwhe7,Mourning Wheatear (Basalt),Oenanthe lugens warriae,Passeriformes,Muscicapidae (Old World Flycatchers),,mouwhe2 +28720,species,retwhe3,Kurdish Wheatear,Oenanthe xanthoprymna,Passeriformes,Muscicapidae (Old World Flycatchers),, +28721,species,retwhe2,Persian Wheatear,Oenanthe chrysopygia,Passeriformes,Muscicapidae (Old World Flycatchers),, +28722,slash,retwhe1,Kurdish/Persian Wheatear (Red-tailed Wheatear),Oenanthe xanthoprymna/chrysopygia,Passeriformes,Muscicapidae (Old World Flycatchers),, +28723,spuh,wheate1,wheatear sp.,Oenanthe sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28724,species,boucha1,Boulder Chat,Pinarornis plumosus,Passeriformes,Muscicapidae (Old World Flycatchers),, +28725,spuh,muscic2,Muscicapid sp.,Muscicapidae sp.,Passeriformes,Muscicapidae (Old World Flycatchers),, +28726,species,bohwax,Bohemian Waxwing,Bombycilla garrulus,Passeriformes,Bombycillidae (Waxwings),Waxwings, +28730,species,cedwax,Cedar Waxwing,Bombycilla cedrorum,Passeriformes,Bombycillidae (Waxwings),, +28731,slash,waxwin,Bohemian/Cedar Waxwing,Bombycilla garrulus/cedrorum,Passeriformes,Bombycillidae (Waxwings),, +28732,species,japwax1,Japanese Waxwing,Bombycilla japonica,Passeriformes,Bombycillidae (Waxwings),, +28733,species,kauoo,Kauai Oo,Moho braccatus,Passeriformes,Mohoidae (Hawaiian Honeyeaters),Hawaiian Honeyeaters, +28734,species,oahoo,Oahu Oo,Moho apicalis,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, +28735,species,bisoo,Bishop's Oo,Moho bishopi,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, +28736,species,hawoo,Hawaii Oo,Moho nobilis,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, +28737,species,kioea,Kioea,Chaetoptila angustipluma,Passeriformes,Mohoidae (Hawaiian Honeyeaters),, +28738,species,bayfly1,Black-and-yellow Silky-flycatcher,Phainoptila melanoxantha,Passeriformes,Ptiliogonatidae (Silky-flycatchers),Silky-flycatchers, +28741,species,grsfly1,Gray Silky-flycatcher,Ptiliogonys cinereus,Passeriformes,Ptiliogonatidae (Silky-flycatchers),, +28746,species,ltsfly1,Long-tailed Silky-flycatcher,Ptiliogonys caudatus,Passeriformes,Ptiliogonatidae (Silky-flycatchers),, +28747,species,phaino,Phainopepla,Phainopepla nitens,Passeriformes,Ptiliogonatidae (Silky-flycatchers),, +28750,species,palmch1,Palmchat,Dulus dominicus,Passeriformes,Dulidae (Palmchat),Palmchat, +28751,species,olfwhi1,Hylocitrea,Hylocitrea bonensis,Passeriformes,Hylocitreidae (Hylocitrea),Hylocitrea, +28752,issf,hyloci1,Hylocitrea (Northern),Hylocitrea bonensis bonensis,Passeriformes,Hylocitreidae (Hylocitrea),,olfwhi1 +28753,issf,hyloci2,Hylocitrea (Southern),Hylocitrea bonensis bonthaina,Passeriformes,Hylocitreidae (Hylocitrea),,olfwhi1 +28754,species,hypoco1,Hypocolius,Hypocolius ampelinus,Passeriformes,Hypocoliidae (Hypocolius),Hypocolius, +28755,species,gursug1,Gurney's Sugarbird,Promerops gurneyi,Passeriformes,Promeropidae (Sugarbirds),Sugarbirds, +28758,species,capsug1,Cape Sugarbird,Promerops cafer,Passeriformes,Promeropidae (Sugarbirds),, +28759,species,spothr1,Spot-throat,Modulatrix stictigula,Passeriformes,Modulatricidae (Dapple-throat and Allies),Dapple-throats, +28762,species,dapthr1,Dapple-throat,Arcanator orostruthus,Passeriformes,Modulatricidae (Dapple-throat and Allies),, +28766,species,gycill1,Gray-chested Babbler,Kakamega poliothorax,Passeriformes,Modulatricidae (Dapple-throat and Allies),, +28767,species,olbflo1,Olive-backed Flowerpecker,Prionochilus olivaceus,Passeriformes,Dicaeidae (Flowerpeckers),Flowerpeckers, +28771,species,yebflo2,Yellow-breasted Flowerpecker,Prionochilus maculatus,Passeriformes,Dicaeidae (Flowerpeckers),, +28776,species,crbflo1,Crimson-breasted Flowerpecker,Prionochilus percussus,Passeriformes,Dicaeidae (Flowerpeckers),, +28780,species,palflo1,Palawan Flowerpecker,Prionochilus plateni,Passeriformes,Dicaeidae (Flowerpeckers),, +28783,species,yerflo1,Yellow-rumped Flowerpecker,Prionochilus xanthopygius,Passeriformes,Dicaeidae (Flowerpeckers),, +28784,species,scbflo2,Scarlet-breasted Flowerpecker,Prionochilus thoracicus,Passeriformes,Dicaeidae (Flowerpeckers),, +28785,spuh,priono1,Prionochilus sp.,Prionochilus sp.,Passeriformes,Dicaeidae (Flowerpeckers),, +28786,species,gorflo1,Golden-rumped Flowerpecker,Dicaeum annae,Passeriformes,Dicaeidae (Flowerpeckers),, +28789,species,thbflo1,Thick-billed Flowerpecker,Dicaeum agile,Passeriformes,Dicaeidae (Flowerpeckers),, +28790,issf,thbflo2,Thick-billed Flowerpecker (Indian),Dicaeum agile agile/zeylonicum,Passeriformes,Dicaeidae (Flowerpeckers),,thbflo1 +28793,issf,thbflo4,Thick-billed Flowerpecker (obsoletum Group),Dicaeum agile [obsoletum Group],Passeriformes,Dicaeidae (Flowerpeckers),,thbflo1 +28800,issf,thbflo3,Thick-billed Flowerpecker (Striped),Dicaeum agile [aeruginosum Group],Passeriformes,Dicaeidae (Flowerpeckers),,thbflo1 +28804,species,brbflo1,Brown-backed Flowerpecker,Dicaeum everetti,Passeriformes,Dicaeidae (Flowerpeckers),, +28807,species,whiflo1,Whiskered Flowerpecker,Dicaeum proprium,Passeriformes,Dicaeidae (Flowerpeckers),, +28808,species,yevflo1,Yellow-vented Flowerpecker,Dicaeum chrysorrheum,Passeriformes,Dicaeidae (Flowerpeckers),, +28811,species,yebflo1,Yellow-bellied Flowerpecker,Dicaeum melanozanthum,Passeriformes,Dicaeidae (Flowerpeckers),, +28812,species,whtflo1,White-throated Flowerpecker,Dicaeum vincens,Passeriformes,Dicaeidae (Flowerpeckers),, +28813,species,yesflo1,Yellow-sided Flowerpecker,Dicaeum aureolimbatum,Passeriformes,Dicaeidae (Flowerpeckers),, +28816,species,olcflo1,Olive-capped Flowerpecker,Dicaeum nigrilore,Passeriformes,Dicaeidae (Flowerpeckers),, +28819,species,flcflo1,Flame-crowned Flowerpecker,Dicaeum anthonyi,Passeriformes,Dicaeidae (Flowerpeckers),, +28820,issf,flcflo2,Flame-crowned Flowerpecker (Yellow-crowned),Dicaeum anthonyi anthonyi,Passeriformes,Dicaeidae (Flowerpeckers),,flcflo1 +28821,issf,flcflo3,Flame-crowned Flowerpecker (Flame-crowned),Dicaeum anthonyi kampalili/masawan,Passeriformes,Dicaeidae (Flowerpeckers),,flcflo1 +28824,species,bicflo1,Bicolored Flowerpecker,Dicaeum bicolor,Passeriformes,Dicaeidae (Flowerpeckers),, +28828,species,cebflo1,Cebu Flowerpecker,Dicaeum quadricolor,Passeriformes,Dicaeidae (Flowerpeckers),, +28829,species,resflo1,Red-keeled Flowerpecker,Dicaeum australe,Passeriformes,Dicaeidae (Flowerpeckers),, +28830,species,rekflo1,Black-belted Flowerpecker,Dicaeum haematostictum,Passeriformes,Dicaeidae (Flowerpeckers),, +28831,species,sccflo1,Scarlet-collared Flowerpecker,Dicaeum retrocinctum,Passeriformes,Dicaeidae (Flowerpeckers),, +28832,species,orbflo1,Orange-bellied Flowerpecker,Dicaeum trigonostigma,Passeriformes,Dicaeidae (Flowerpeckers),, +28851,form,speflo1,Spectacled Flowerpecker (undescribed form),Dicaeum [undescribed form],Passeriformes,Dicaeidae (Flowerpeckers),, +28852,species,whbflo1,White-bellied Flowerpecker,Dicaeum hypoleucum,Passeriformes,Dicaeidae (Flowerpeckers),, +28858,species,pabflo1,Pale-billed Flowerpecker,Dicaeum erythrorhynchos,Passeriformes,Dicaeidae (Flowerpeckers),, +28861,slash,y00826,Thick-billed/Pale-billed Flowerpecker,Dicaeum agile/erythrorhynchos,Passeriformes,Dicaeidae (Flowerpeckers),, +28862,species,plaflo1,Nilgiri Flowerpecker,Dicaeum concolor,Passeriformes,Dicaeidae (Flowerpeckers),, +28863,slash,y01106,Pale-billed/Nilgiri Flowerpecker,Dicaeum erythrorhynchos/concolor,Passeriformes,Dicaeidae (Flowerpeckers),, +28864,species,plaflo2,Plain Flowerpecker,Dicaeum minullum,Passeriformes,Dicaeidae (Flowerpeckers),, +28870,species,andflo1,Andaman Flowerpecker,Dicaeum virescens,Passeriformes,Dicaeidae (Flowerpeckers),, +28871,species,pygflo1,Pygmy Flowerpecker,Dicaeum pygmaeum,Passeriformes,Dicaeidae (Flowerpeckers),, +28877,species,crcflo1,Crimson-crowned Flowerpecker,Dicaeum nehrkorni,Passeriformes,Dicaeidae (Flowerpeckers),, +28878,species,flbflo3,Halmahera Flowerpecker,Dicaeum schistaceiceps,Passeriformes,Dicaeidae (Flowerpeckers),, +28879,species,flbflo2,Buru Flowerpecker,Dicaeum erythrothorax,Passeriformes,Dicaeidae (Flowerpeckers),, +28880,species,ashflo1,Ashy Flowerpecker,Dicaeum vulneratum,Passeriformes,Dicaeidae (Flowerpeckers),, +28881,species,olcflo2,Olive-crowned Flowerpecker,Dicaeum pectorale,Passeriformes,Dicaeidae (Flowerpeckers),, +28884,species,recflo1,Red-capped Flowerpecker,Dicaeum geelvinkianum,Passeriformes,Dicaeidae (Flowerpeckers),, +28894,species,louflo1,Louisiade Flowerpecker,Dicaeum nitidum,Passeriformes,Dicaeidae (Flowerpeckers),, +28897,species,rebflo1,Red-banded Flowerpecker,Dicaeum eximium,Passeriformes,Dicaeidae (Flowerpeckers),, +28901,species,midflo1,Midget Flowerpecker,Dicaeum aeneum,Passeriformes,Dicaeidae (Flowerpeckers),, +28905,species,motflo1,Mottled Flowerpecker,Dicaeum tristrami,Passeriformes,Dicaeidae (Flowerpeckers),, +28906,species,blfflo1,Black-fronted Flowerpecker,Dicaeum igniferum,Passeriformes,Dicaeidae (Flowerpeckers),, +28909,species,recflo2,Red-chested Flowerpecker,Dicaeum maugei,Passeriformes,Dicaeidae (Flowerpeckers),, +28914,species,fibflo2,Fire-breasted Flowerpecker,Dicaeum ignipectus,Passeriformes,Dicaeidae (Flowerpeckers),, +28915,issf,fibflo1,Fire-breasted Flowerpecker (Fire-breasted),Dicaeum ignipectus [ignipectus Group],Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 +28919,issf,fibflo3,Fire-breasted Flowerpecker (Cambodian),Dicaeum ignipectus cambodianum,Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 +28920,issf,fibflo4,Fire-breasted Flowerpecker (Fire-throated),Dicaeum ignipectus [luzoniense Group],Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 +28924,issf,fibflo5,Fire-breasted Flowerpecker (Sumatran),Dicaeum ignipectus beccarii,Passeriformes,Dicaeidae (Flowerpeckers),,fibflo2 +28925,species,blsflo1,Black-sided Flowerpecker,Dicaeum monticolum,Passeriformes,Dicaeidae (Flowerpeckers),, +28926,species,gysflo1,Gray-sided Flowerpecker,Dicaeum celebicum,Passeriformes,Dicaeidae (Flowerpeckers),, +28927,issf,gysflo2,Gray-sided Flowerpecker (Gray-sided),Dicaeum celebicum [celebicum Group],Passeriformes,Dicaeidae (Flowerpeckers),,gysflo1 +28932,issf,gysflo3,Gray-sided Flowerpecker (Wakatobi),Dicaeum celebicum kuehni,Passeriformes,Dicaeidae (Flowerpeckers),,gysflo1 +28933,species,blbflo1,Blood-breasted Flowerpecker,Dicaeum sanguinolentum,Passeriformes,Dicaeidae (Flowerpeckers),, +28934,issf,blbflo2,Blood-breasted Flowerpecker (Blood-breasted),Dicaeum sanguinolentum sanguinolentum/rhodopygiale,Passeriformes,Dicaeidae (Flowerpeckers),,blbflo1 +28937,issf,blbflo3,Blood-breasted Flowerpecker (Sumba),Dicaeum sanguinolentum wilhelminae,Passeriformes,Dicaeidae (Flowerpeckers),,blbflo1 +28938,issf,blbflo4,Blood-breasted Flowerpecker (Timor),Dicaeum sanguinolentum hanieli,Passeriformes,Dicaeidae (Flowerpeckers),,blbflo1 +28939,species,mistle1,Mistletoebird,Dicaeum hirundinaceum,Passeriformes,Dicaeidae (Flowerpeckers),, +28940,issf,mistle2,Mistletoebird (Pink-breasted),Dicaeum hirundinaceum keiense/fulgidum,Passeriformes,Dicaeidae (Flowerpeckers),,mistle1 +28943,issf,mistle3,Mistletoebird (Aru),Dicaeum hirundinaceum ignicolle,Passeriformes,Dicaeidae (Flowerpeckers),,mistle1 +28944,issf,mistle4,Mistletoebird (Mistletoebird),Dicaeum hirundinaceum hirundinaceum,Passeriformes,Dicaeidae (Flowerpeckers),,mistle1 +28945,species,scbflo1,Scarlet-backed Flowerpecker,Dicaeum cruentatum,Passeriformes,Dicaeidae (Flowerpeckers),, +28953,species,schflo1,Scarlet-headed Flowerpecker,Dicaeum trochileum,Passeriformes,Dicaeidae (Flowerpeckers),, +28956,spuh,dicaeu1,Dicaeum sp.,Dicaeum sp.,Passeriformes,Dicaeidae (Flowerpeckers),, +28957,spuh,flower2,flowerpecker sp.,Prionochilus/Dicaeum sp.,Passeriformes,Dicaeidae (Flowerpeckers),, +28958,species,rucsun2,Ruby-cheeked Sunbird,Chalcoparia singalensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),Sunbirds and Spiderhunters, +28970,species,sctsun2,Fraser's Sunbird,Deleornis fraseri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +28974,species,gyhsun1,Gray-headed Sunbird,Deleornis axillaris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +28975,species,plbsun1,Plain-backed Sunbird,Anthreptes reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +28978,species,ancsun1,Anchieta's Sunbird,Anthreptes anchietae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +28979,species,plasun1,Plain Sunbird,Anthreptes simplex,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +28980,species,pltsun2,Brown-throated Sunbird,Anthreptes malacensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +28996,species,pltsun3,Gray-throated Sunbird,Anthreptes griseigularis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +28999,slash,pltsun1,Brown-throated/Gray-throated Sunbird,Anthreptes malacensis/griseigularis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29000,species,retsun3,Red-throated Sunbird,Anthreptes rhodolaemus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29001,species,mobsun1,Mouse-brown Sunbird,Anthreptes gabonicus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29002,species,wvbsun1,Western Violet-backed Sunbird,Anthreptes longuemarei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29003,issf,wvbsun3,Western Violet-backed Sunbird (Northern),Anthreptes longuemarei longuemarei/haussarum,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,wvbsun1 +29006,issf,wvbsun2,Western Violet-backed Sunbird (Southern),Anthreptes longuemarei angolensis/nyassae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,wvbsun1 +29009,species,kvbsun1,Eastern Violet-backed Sunbird,Anthreptes orientalis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29010,species,uvbsun1,Uluguru Violet-backed Sunbird,Anthreptes neglectus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29011,species,vitsun1,Violet-tailed Sunbird,Anthreptes aurantius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29012,species,ligsun2,Little Green Sunbird,Anthreptes seimundi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29016,species,gresun1,Green Sunbird,Anthreptes rectirostris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29017,issf,grnsun1,Green Sunbird (Yellow-throated),Anthreptes rectirostris rectirostris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gresun1 +29018,issf,grnsun2,Green Sunbird (Gray-throated),Anthreptes rectirostris tephrolaemus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gresun1 +29019,species,bansun1,Banded Sunbird,Anthreptes rubritorques,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29020,species,colsun2,Collared Sunbird,Hedydipna collaris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29030,species,pygsun2,Pygmy Sunbird,Hedydipna platura,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29031,species,nivsun2,Nile Valley Sunbird,Hedydipna metallica,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29032,species,amasun2,Amani Sunbird,Hedydipna pallidigaster,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29033,species,reisun2,Reichenbach's Sunbird,Anabathmis reichenbachii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29034,species,prisun2,Principe Sunbird,Anabathmis hartlaubii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29035,species,newsun2,Newton's Sunbird,Anabathmis newtonii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29036,species,satsun1,Sao Tome Sunbird,Dreptes thomensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29037,species,orbsun2,Orange-breasted Sunbird,Anthobaphes violacea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29038,species,gnhsun1,Green-headed Sunbird,Cyanomitra verticalis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29039,issf,gnhsun3,Green-headed Sunbird (Green-headed),Cyanomitra verticalis verticalis/viridisplendens,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gnhsun1 +29042,issf,gnhsun2,Green-headed Sunbird (Blue-headed),Cyanomitra verticalis cyanocephala/bohndorffi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gnhsun1 +29045,species,bansun3,Bannerman's Sunbird,Cyanomitra bannermani,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29046,species,btbsun2,Blue-throated Brown Sunbird,Cyanomitra cyanolaema,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29050,species,camsun2,Cameroon Sunbird,Cyanomitra oritis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29051,issf,camsun4,Cameroon Sunbird (Green-headed),Cyanomitra oritis bansoensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,camsun2 +29052,issf,camsun5,Cameroon Sunbird (Bioko),Cyanomitra oritis poensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,camsun2 +29053,issf,camsun3,Cameroon Sunbird (Blue-headed),Cyanomitra oritis oritis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,camsun2 +29054,species,buhsun1,Blue-headed Sunbird,Cyanomitra alinae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29060,species,eaosun1,Olive Sunbird,Cyanomitra olivacea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29072,species,mocsun2,Mouse-colored Sunbird,Cyanomitra veroxii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29076,species,butsun2,Buff-throated Sunbird,Chalcomitra adelberti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29079,species,carsun2,Carmelite Sunbird,Chalcomitra fuliginosa,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29082,species,gntsun1,Green-throated Sunbird,Chalcomitra rubescens,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29086,species,amesun2,Amethyst Sunbird,Chalcomitra amethystina,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29090,species,sccsun2,Scarlet-chested Sunbird,Chalcomitra senegalensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29096,species,hunsun2,Hunter's Sunbird,Chalcomitra hunteri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29099,species,socsun2,Socotra Sunbird,Chalcomitra balfouri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29100,species,pursun3,Purple-rumped Sunbird,Leptocoma zeylonica,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29103,species,crbsun2,Crimson-backed Sunbird,Leptocoma minima,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29104,species,vahsun1,Van Hasselt's Sunbird,Leptocoma brasiliana,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29111,species,putsun3,Purple-throated Sunbird,Leptocoma sperata,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29112,issf,putsun5,Purple-throated Sunbird (Purple-throated),Leptocoma sperata [sperata Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,putsun3 +29116,issf,putsun6,Purple-throated Sunbird (Orange-lined),Leptocoma sperata juliae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,putsun3 +29117,species,blksun1,Black Sunbird,Leptocoma aspasia,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29141,species,cotsun2,Copper-throated Sunbird,Leptocoma calcostetha,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29142,species,bocsun2,Bocage's Sunbird,Nectarinia bocagii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29143,species,pubsun3,Purple-breasted Sunbird,Nectarinia purpureiventris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29144,species,tacsun1,Tacazze Sunbird,Nectarinia tacazze,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29147,species,brosun1,Bronze Sunbird,Nectarinia kilimensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29151,species,malsun1,Malachite Sunbird,Nectarinia famosa,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29154,species,retsun2,Red-tufted Sunbird,Nectarinia johnstoni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29159,species,gowsun2,Golden-winged Sunbird,Drepanorhynchus reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29163,species,olbsun3,Olive-bellied Sunbird,Cinnyris chloropygius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29168,species,tinsun2,Tiny Sunbird,Cinnyris minullus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29169,species,miosun2,Western Miombo Sunbird,Cinnyris gertrudis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29170,species,miosun3,Eastern Miombo Sunbird,Cinnyris manoensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29173,slash,miosun1,Western/Eastern Miombo Sunbird,Cinnyris gertrudis/manoensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29174,species,sdcsun3,Southern Double-collared Sunbird,Cinnyris chalybeus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29178,species,neesun2,Neergaard's Sunbird,Cinnyris neergaardi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29179,species,stusun1,Stuhlmann's Sunbird,Cinnyris stuhlmanni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29184,species,prisun3,Prigogine's Sunbird,Cinnyris prigoginei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29185,species,mdcsun3,Montane Double-collared Sunbird,Cinnyris ludovicensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29186,issf,mdcsun1,Montane Double-collared Sunbird (Western),Cinnyris ludovicensis ludovicensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,mdcsun3 +29187,issf,mdcsun2,Montane Double-collared Sunbird (Eastern),Cinnyris ludovicensis whytei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,mdcsun3 +29188,species,ndcsun2,Northern Double-collared Sunbird,Cinnyris reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29189,issf,ndcsun1,Northern Double-collared Sunbird (Western),Cinnyris reichenowi preussi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,ndcsun2 +29190,issf,ndcsun3,Northern Double-collared Sunbird (Eastern),Cinnyris reichenowi reichenowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,ndcsun2 +29191,species,gdcsun2,Greater Double-collared Sunbird,Cinnyris afer,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29194,species,regsun2,Regal Sunbird,Cinnyris regius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29197,species,rocsun2,Rockefeller's Sunbird,Cinnyris rockefelleri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29198,species,edcsun3,Eastern Double-collared Sunbird,Cinnyris mediocris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29199,species,edcsun4,Usambara Double-collared Sunbird,Cinnyris usambaricus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29200,species,edcsun1,Forest Double-collared Sunbird,Cinnyris fuelleborni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29203,species,morsun2,Moreau's Sunbird,Cinnyris moreaui,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29204,species,lovsun3,Loveridge's Sunbird,Cinnyris loveridgei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29205,species,beasun2,Beautiful Sunbird,Cinnyris pulchellus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29206,issf,beasun1,Beautiful Sunbird (Beautiful),Cinnyris pulchellus pulchellus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,beasun2 +29207,issf,beasun3,Beautiful Sunbird (Gorgeous),Cinnyris pulchellus melanogastrus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,beasun2 +29208,species,marsun2,Mariqua Sunbird,Cinnyris mariquensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29212,species,shesun2,Shelley's Sunbird,Cinnyris shelleyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29213,issf,shesun3,Shelley's Sunbird (Shelley's),Cinnyris shelleyi shelleyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shesun2 +29214,issf,shesun1,Shelley's Sunbird (Hofmann's),Cinnyris shelleyi hofmanni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shesun2 +29215,species,consun2,Congo Sunbird,Cinnyris congensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29216,species,recsun2,Red-chested Sunbird,Cinnyris erythrocercus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29217,species,bkbsun1,Black-bellied Sunbird,Cinnyris nectarinioides,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29220,species,pubsun4,Purple-banded Sunbird,Cinnyris bifasciatus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29223,species,tsasun1,Tsavo Sunbird,Cinnyris tsavoensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29224,species,vibsun2,Violet-breasted Sunbird,Cinnyris chalcomelas,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29225,species,pemsun2,Pemba Sunbird,Cinnyris pembae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29226,species,ortsun3,Orange-tufted Sunbird,Cinnyris bouvieri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29227,species,palsun2,Palestine Sunbird,Cinnyris osea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29228,issf,palsun1,Palestine Sunbird (Decorse's),Cinnyris osea decorsei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,palsun2 +29229,issf,palsun3,Palestine Sunbird (Palestine),Cinnyris osea osea,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,palsun2 +29230,species,shisun3,Shining Sunbird,Cinnyris habessinicus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29231,issf,shisun2,Shining Sunbird (Shining),Cinnyris habessinicus [habessinicus Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shisun3 +29235,issf,shisun4,Shining Sunbird (Arabian),Cinnyris habessinicus hellmayri/kinneari,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,shisun3 +29238,species,splsun2,Splendid Sunbird,Cinnyris coccinigastrus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29239,species,johsun2,Johanna's Sunbird,Cinnyris johannae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29242,species,supsun2,Superb Sunbird,Cinnyris superbus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29246,species,ruwsun2,Rufous-winged Sunbird,Cinnyris rufipennis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29247,species,oussun2,Oustalet's Sunbird,Cinnyris oustaleti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29248,issf,oussun1,Oustalet's Sunbird (Angola),Cinnyris oustaleti oustaleti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,oussun2 +29249,issf,oussun3,Oustalet's Sunbird (Eastern),Cinnyris oustaleti rhodesiae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,oussun2 +29250,species,whbsun2,White-breasted Sunbird,Cinnyris talatala,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29251,species,varsun2,Variable Sunbird,Cinnyris venustus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29252,issf,varsun1,Variable Sunbird (Yellow-bellied),Cinnyris venustus [venustus Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,varsun2 +29256,issf,varsun4,Variable Sunbird (Orange-chested),Cinnyris venustus igneiventris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,varsun2 +29257,issf,varsun3,Variable Sunbird (White-bellied),Cinnyris venustus albiventris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,varsun2 +29258,species,dussun2,Dusky Sunbird,Cinnyris fuscus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29261,species,urssun2,Ursula's Sunbird,Cinnyris ursulae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29262,species,batsun2,Bates's Sunbird,Cinnyris batesi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29263,species,copsun2,Copper Sunbird,Cinnyris cupreus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29266,species,pursun4,Purple Sunbird,Cinnyris asiaticus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29270,species,olbsun4,Olive-backed Sunbird,Cinnyris jugularis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29271,issf,olbsun5,Olive-backed Sunbird (Olive-backed),Cinnyris jugularis [jugularis Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 +29283,issf,olbsun7,Olive-backed Sunbird (Cream-bellied),Cinnyris jugularis rhizophorae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 +29284,issf,olbsun2,Olive-backed Sunbird (Yellow-faced),Cinnyris jugularis [frenatus Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 +29288,issf,olbsun6,Olive-backed Sunbird (Orange-breasted),Cinnyris jugularis aurora,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 +29289,issf,olbsun1,Olive-backed Sunbird (Black-breasted),Cinnyris jugularis [clementiae Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 +29293,issf,olbsun9,Olive-backed Sunbird (Rand's),Cinnyris jugularis idenburgi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 +29294,issf,olbsun8,Olive-backed Sunbird (Black-bellied),Cinnyris jugularis teysmanni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,olbsun4 +29295,species,apbsun2,Apricot-breasted Sunbird,Cinnyris buettikoferi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29296,species,flbsun2,Flame-breasted Sunbird,Cinnyris solaris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29299,species,sousun2,Souimanga Sunbird,Cinnyris sovimanga,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29300,issf,sousun3,Souimanga Sunbird (Sooty-bellied),Cinnyris sovimanga aldabrensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 +29301,issf,sousun5,Souimanga Sunbird (Yellow-bellied),Cinnyris sovimanga sovimanga,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 +29302,issf,sousun4,Souimanga Sunbird (White-bellied),Cinnyris sovimanga apolis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 +29303,issf,sousun1,Souimanga Sunbird (Abbott's),Cinnyris sovimanga abbotti/buchenorum,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,sousun2 +29306,species,madsun1,Madagascar Sunbird,Cinnyris notatus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29307,issf,madsun2,Madagascar Sunbird (Grand Comoro),Cinnyris notatus moebii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,madsun1 +29308,issf,madsun3,Madagascar Sunbird (Moheli),Cinnyris notatus voeltzkowi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,madsun1 +29309,issf,madsun4,Madagascar Sunbird (Long-billed),Cinnyris notatus notatus,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,madsun1 +29310,species,seysun2,Seychelles Sunbird,Cinnyris dussumieri,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29311,species,humsun2,Humblot's Sunbird,Cinnyris humbloti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29314,species,anjsun2,Anjouan Sunbird,Cinnyris comorensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29315,species,maysun2,Mayotte Sunbird,Cinnyris coquerellii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29316,species,lobsun2,Loten's Sunbird,Cinnyris lotenius,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29319,spuh,cinnyr1,Cinnyris sp.,Cinnyris sp.,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29320,species,elesun1,Elegant Sunbird,Aethopyga duyvenbodei,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29321,species,fitsun1,Fire-tailed Sunbird,Aethopyga ignicauda,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29324,species,bltsun1,Black-throated Sunbird,Aethopyga saturata,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29335,species,gousun1,Mrs. Gould's Sunbird,Aethopyga gouldiae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29336,issf,gousun4,Mrs. Gould's Sunbird (Yellow-breasted),Aethopyga gouldiae gouldiae/isolata,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gousun1 +29339,issf,gousun3,Mrs. Gould's Sunbird (Scarlet-breasted),Aethopyga gouldiae dabryii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gousun1 +29340,issf,gousun2,Mrs. Gould's Sunbird (Purple-rumped),Aethopyga gouldiae annamensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,gousun1 +29341,species,grtsun1,Green-tailed Sunbird,Aethopyga nipalensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29342,issf,gntsun3,Green-tailed Sunbird (Green-tailed),Aethopyga nipalensis [nipalensis Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,grtsun1 +29351,issf,gntsun2,Green-tailed Sunbird (Doi Inthanon),Aethopyga nipalensis angkanensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,grtsun1 +29352,species,lovsun1,Lovely Sunbird,Aethopyga shelleyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29353,species,temsun1,Temminck's Sunbird,Aethopyga temminckii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29354,species,scasun1,Javan Sunbird,Aethopyga mystacalis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29355,species,wecsun1,Vigors's Sunbird,Aethopyga vigorsii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29356,species,eacsun1,Crimson Sunbird,Aethopyga siparaja,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29357,issf,crisun1,Crimson Sunbird (Goulpourah),Aethopyga siparaja [seheriae Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,eacsun1 +29365,issf,crisun2,Crimson Sunbird (Crimson),Aethopyga siparaja [siparaja Group],Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,eacsun1 +29371,issf,crisun3,Crimson Sunbird (Sulawesi),Aethopyga siparaja flavostriata/beccarii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,eacsun1 +29374,slash,y00916,Temminck's/Crimson Sunbird,Aethopyga temminckii/siparaja,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29375,species,magsun1,Magnificent Sunbird,Aethopyga magnifica,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29376,species,fotsun1,Fork-tailed Sunbird,Aethopyga christinae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29377,issf,fotsun2,Fork-tailed Sunbird (Fork-tailed),Aethopyga christinae latouchii/sokolovi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,fotsun1 +29380,issf,fotsun3,Fork-tailed Sunbird (Hainan),Aethopyga christinae christinae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),,fotsun1 +29381,species,hansun1,Handsome Sunbird,Aethopyga bella,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29388,species,whfsun1,White-flanked Sunbird,Aethopyga eximia,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29389,species,flasun1,Flaming Sunbird,Aethopyga flagrans,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29392,species,mansun1,Maroon-naped Sunbird,Aethopyga guimarasensis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29395,species,mewsun2,Metallic-winged Sunbird,Aethopyga pulcherrima,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29396,species,mousun1,Mountain Sunbird,Aethopyga jefferyi,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29397,species,bohsun1,Bohol Sunbird,Aethopyga decorosa,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29398,species,linsun1,Lina's Sunbird,Aethopyga linaraborae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29399,species,gyhsun2,Gray-hooded Sunbird,Aethopyga primigenia,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29402,species,moasun1,Apo Sunbird,Aethopyga boltoni,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29405,species,tbosun1,Tboli Sunbird,Aethopyga tibolii,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29406,spuh,aethop1,Aethopyga sp.,Aethopyga sp.,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29407,spuh,sunbir1,sunbird sp.,Nectariniidae sp. (sunbird sp.),Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29408,species,punsun1,Purple-naped Spiderhunter,Kurochkinegramma hypogrammicum,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29414,species,thbspi1,Thick-billed Spiderhunter,Arachnothera crassirostris,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29415,species,lobspi1,Long-billed Spiderhunter,Arachnothera robusta,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29418,species,ortspi1,Orange-tufted Spiderhunter,Arachnothera flammifera,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29421,species,palspi2,Pale Spiderhunter,Arachnothera dilutior,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29422,species,litspi1,Little Spiderhunter,Arachnothera longirostra,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29432,species,whispi1,Whitehead's Spiderhunter,Arachnothera juliae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29433,species,nafspi1,Naked-faced Spiderhunter,Arachnothera clarae,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29438,species,yeespi1,Yellow-eared Spiderhunter,Arachnothera chrysogenys,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29441,species,spespi2,Spectacled Spiderhunter,Arachnothera flavigaster,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29442,species,strspi1,Streaked Spiderhunter,Arachnothera magna,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29448,species,stbspi2,Streaky-breasted Spiderhunter,Arachnothera affinis,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29449,species,gybspi2,Gray-breasted Spiderhunter,Arachnothera modesta,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29454,species,borspi1,Bornean Spiderhunter,Arachnothera everetti,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29455,spuh,spider1,spiderhunter sp.,Arachnothera sp.,Passeriformes,Nectariniidae (Sunbirds and Spiderhunters),, +29456,species,asfblu1,Asian Fairy-bluebird,Irena puella,Passeriformes,Irenidae (Fairy-bluebirds),Fairy-bluebirds, +29457,issf,asifab1,Asian Fairy-bluebird (Asian),Irena puella [puella Group],Passeriformes,Irenidae (Fairy-bluebirds),,asfblu1 +29462,issf,asifab2,Asian Fairy-bluebird (Palawan),Irena puella tweeddalii,Passeriformes,Irenidae (Fairy-bluebirds),,asfblu1 +29463,species,phifab1,Philippine Fairy-bluebird,Irena cyanogastra,Passeriformes,Irenidae (Fairy-bluebirds),, +29468,species,philea1,Philippine Leafbird,Chloropsis flavipennis,Passeriformes,Chloropseidae (Leafbirds),Leafbirds, +29469,species,yetlea1,Yellow-throated Leafbird,Chloropsis palawanensis,Passeriformes,Chloropseidae (Leafbirds),, +29470,species,grglea1,Greater Green Leafbird,Chloropsis sonnerati,Passeriformes,Chloropseidae (Leafbirds),, +29473,species,leglea1,Lesser Green Leafbird,Chloropsis cyanopogon,Passeriformes,Chloropseidae (Leafbirds),, +29476,slash,y01054,Greater/Lesser Green Leafbird,Chloropsis sonnerati/cyanopogon,Passeriformes,Chloropseidae (Leafbirds),, +29477,species,blwlea1,Blue-winged Leafbird,Chloropsis cochinchinensis,Passeriformes,Chloropseidae (Leafbirds),, +29478,issf,buwlea1,Blue-winged Leafbird (Blue-winged),Chloropsis cochinchinensis [moluccensis Group],Passeriformes,Chloropseidae (Leafbirds),,blwlea1 +29487,issf,buwlea2,Blue-winged Leafbird (Javan),Chloropsis cochinchinensis cochinchinensis,Passeriformes,Chloropseidae (Leafbirds),,blwlea1 +29488,species,borlea1,Bornean Leafbird,Chloropsis kinabaluensis,Passeriformes,Chloropseidae (Leafbirds),, +29489,species,jerlea1,Jerdon's Leafbird,Chloropsis jerdoni,Passeriformes,Chloropseidae (Leafbirds),, +29490,species,goflea1,Golden-fronted Leafbird,Chloropsis aurifrons,Passeriformes,Chloropseidae (Leafbirds),, +29497,slash,y01012,Jerdon's/Golden-fronted Leafbird,Chloropsis jerdoni/aurifrons,Passeriformes,Chloropseidae (Leafbirds),, +29498,species,sumlea1,Sumatran Leafbird,Chloropsis media,Passeriformes,Chloropseidae (Leafbirds),, +29499,species,orblea1,Orange-bellied Leafbird,Chloropsis hardwickii,Passeriformes,Chloropseidae (Leafbirds),, +29500,issf,orblea2,Orange-bellied Leafbird (Orange-bellied),Chloropsis hardwickii hardwickii/malayana,Passeriformes,Chloropseidae (Leafbirds),,orblea1 +29503,issf,orblea3,Orange-bellied Leafbird (Grayish-crowned),Chloropsis hardwickii lazulina/melliana,Passeriformes,Chloropseidae (Leafbirds),,orblea1 +29506,species,blmlea1,Blue-masked Leafbird,Chloropsis venusta,Passeriformes,Chloropseidae (Leafbirds),, +29507,spuh,leafbi1,leafbird sp.,Chloropsis sp.,Passeriformes,Chloropseidae (Leafbirds),, +29508,species,oliwar,Olive Warbler,Peucedramus taeniatus,Passeriformes,Peucedramidae (Olive Warbler),Olive Warbler, +29514,species,przros1,Przevalski's Pinktail,Urocynchramus pylzowi,Passeriformes,Urocynchramidae (Przevalski's Pinktail),Przevalski's Pinktail, +29515,species,wbbwea1,White-billed Buffalo-Weaver,Bubalornis albirostris,Passeriformes,Ploceidae (Weavers and Allies),Weavers and Allies, +29516,species,rbbwea1,Red-billed Buffalo-Weaver,Bubalornis niger,Passeriformes,Ploceidae (Weavers and Allies),, +29519,species,whbwea1,White-headed Buffalo-Weaver,Dinemellia dinemelli,Passeriformes,Ploceidae (Weavers and Allies),, +29522,species,spfwea1,Speckle-fronted Weaver,Sporopipes frontalis,Passeriformes,Ploceidae (Weavers and Allies),, +29525,species,scawea1,Scaly Weaver,Sporopipes squamifrons,Passeriformes,Ploceidae (Weavers and Allies),, +29526,species,wbswea1,White-browed Sparrow-Weaver,Plocepasser mahali,Passeriformes,Ploceidae (Weavers and Allies),, +29527,issf,whbspw1,White-browed Sparrow-Weaver (Black-billed),Plocepasser mahali melanorhynchus,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 +29528,issf,whbspw2,White-browed Sparrow-Weaver (White-tailed),Plocepasser mahali ansorgei,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 +29529,issf,whbspw3,White-browed Sparrow-Weaver (Spot-chested),Plocepasser mahali pectoralis,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 +29530,issf,whbspw4,White-browed Sparrow-Weaver (White-breasted),Plocepasser mahali mahali,Passeriformes,Ploceidae (Weavers and Allies),,wbswea1 +29531,species,ccswea1,Chestnut-crowned Sparrow-Weaver,Plocepasser superciliosus,Passeriformes,Ploceidae (Weavers and Allies),, +29532,species,cbswea1,Chestnut-backed Sparrow-Weaver,Plocepasser rufoscapulatus,Passeriformes,Ploceidae (Weavers and Allies),, +29533,species,dsswea1,Donaldson-Smith's Sparrow-Weaver,Plocepasser donaldsoni,Passeriformes,Ploceidae (Weavers and Allies),, +29534,species,rutwea1,Rufous-tailed Weaver,Histurgops ruficauda,Passeriformes,Ploceidae (Weavers and Allies),, +29535,species,gyhsow1,Gray-headed Social-Weaver,Pseudonigrita arnaudi,Passeriformes,Ploceidae (Weavers and Allies),, +29538,species,bcswea1,Black-capped Social-Weaver,Pseudonigrita cabanisi,Passeriformes,Ploceidae (Weavers and Allies),, +29539,species,socwea1,Sociable Weaver,Philetairus socius,Passeriformes,Ploceidae (Weavers and Allies),, +29540,species,recmal2,Red-crowned Malimbe,Malimbus coronatus,Passeriformes,Ploceidae (Weavers and Allies),, +29541,species,bltmal1,Black-throated Malimbe,Malimbus cassini,Passeriformes,Ploceidae (Weavers and Allies),, +29542,species,balmal2,Ballman's Malimbe,Malimbus ballmanni,Passeriformes,Ploceidae (Weavers and Allies),, +29543,species,racmal1,Rachel's Malimbe,Malimbus racheliae,Passeriformes,Ploceidae (Weavers and Allies),, +29544,species,revmal1,Red-vented Malimbe,Malimbus scutatus,Passeriformes,Ploceidae (Weavers and Allies),, +29547,species,ibamal1,Ibadan Malimbe,Malimbus ibadanensis,Passeriformes,Ploceidae (Weavers and Allies),, +29548,species,rebmal1,Red-bellied Malimbe,Malimbus erythrogaster,Passeriformes,Ploceidae (Weavers and Allies),, +29551,species,gramal1,Blue-billed Malimbe,Malimbus nitens,Passeriformes,Ploceidae (Weavers and Allies),, +29552,species,cremal1,Crested Malimbe,Malimbus malimbicus,Passeriformes,Ploceidae (Weavers and Allies),, +29556,species,rehmal1,Red-headed Malimbe,Malimbus rubricollis,Passeriformes,Ploceidae (Weavers and Allies),, +29563,spuh,malimb1,malimbe sp.,Malimbus sp.,Passeriformes,Ploceidae (Weavers and Allies),, +29564,species,rehwea1,Red-headed Weaver,Anaplectes rubriceps,Passeriformes,Ploceidae (Weavers and Allies),, +29565,issf,rehwea2,Red-headed Weaver (Northern),Anaplectes rubriceps leuconotos,Passeriformes,Ploceidae (Weavers and Allies),,rehwea1 +29566,issf,rehwea3,Red-headed Weaver (Red),Anaplectes rubriceps jubaensis,Passeriformes,Ploceidae (Weavers and Allies),,rehwea1 +29567,issf,rehwea4,Red-headed Weaver (Southern),Anaplectes rubriceps rubriceps,Passeriformes,Ploceidae (Weavers and Allies),,rehwea1 +29568,species,yelwea2,Yellow-legged Weaver,Ploceus flavipes,Passeriformes,Ploceidae (Weavers and Allies),, +29569,species,berwea2,Bertram's Weaver,Ploceus bertrandi,Passeriformes,Ploceidae (Weavers and Allies),, +29570,species,bagwea1,Baglafecht Weaver,Ploceus baglafecht,Passeriformes,Ploceidae (Weavers and Allies),, +29571,issf,bagwea2,Baglafecht Weaver (Baglafecht),Ploceus baglafecht [baglafecht Group],Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 +29575,issf,bagwea3,Baglafecht Weaver (Emin's),Ploceus baglafecht emini,Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 +29576,issf,bagwea4,Baglafecht Weaver (Reichenow's),Ploceus baglafecht reichenowi,Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 +29577,issf,bagwea5,Baglafecht Weaver (Stuhlmann's),Ploceus baglafecht [stuhlmanni Group],Passeriformes,Ploceidae (Weavers and Allies),,bagwea1 +29581,species,bkcwea1,Black-chinned Weaver,Ploceus nigrimentus,Passeriformes,Ploceidae (Weavers and Allies),, +29582,species,banwea1,Bannerman's Weaver,Ploceus bannermani,Passeriformes,Ploceidae (Weavers and Allies),, +29583,slash,y01062,Baglafecht/Bannerman's Weaver,Ploceus baglafecht/bannermani,Passeriformes,Ploceidae (Weavers and Allies),, +29584,species,batwea1,Bates's Weaver,Ploceus batesi,Passeriformes,Ploceidae (Weavers and Allies),, +29585,species,litwea1,Little Weaver,Ploceus luteolus,Passeriformes,Ploceidae (Weavers and Allies),, +29586,species,slbwea1,Slender-billed Weaver,Ploceus pelzelni,Passeriformes,Ploceidae (Weavers and Allies),, +29589,species,loawea1,Loango Weaver,Ploceus subpersonatus,Passeriformes,Ploceidae (Weavers and Allies),, +29590,species,blnwea1,Black-necked Weaver,Ploceus nigricollis,Passeriformes,Ploceidae (Weavers and Allies),, +29591,issf,bknwea1,Black-necked Weaver (Olive-backed),Ploceus nigricollis brachypterus,Passeriformes,Ploceidae (Weavers and Allies),,blnwea1 +29592,issf,bknwea2,Black-necked Weaver (Black-backed),Ploceus nigricollis nigricollis/melanoxanthus,Passeriformes,Ploceidae (Weavers and Allies),,blnwea1 +29595,intergrade,bknwea3,Black-necked Weaver (Olive-backed x Black-backed),Ploceus nigricollis brachypterus x nigricollis,Passeriformes,Ploceidae (Weavers and Allies),,blnwea1 +29596,species,spewea1,Spectacled Weaver,Ploceus ocularis,Passeriformes,Ploceidae (Weavers and Allies),, +29597,issf,spewea3,Spectacled Weaver (Yellow-throated),Ploceus ocularis crocatus,Passeriformes,Ploceidae (Weavers and Allies),,spewea1 +29598,issf,spewea4,Spectacled Weaver (Black-throated),Ploceus ocularis ocularis/suahelicus,Passeriformes,Ploceidae (Weavers and Allies),,spewea1 +29601,slash,y00929,Black-necked/Spectacled Weaver,Ploceus nigricollis/ocularis,Passeriformes,Ploceidae (Weavers and Allies),, +29602,species,blbwea1,Black-billed Weaver,Ploceus melanogaster,Passeriformes,Ploceidae (Weavers and Allies),, +29603,issf,bkbwea1,Black-billed Weaver (Western),Ploceus melanogaster melanogaster,Passeriformes,Ploceidae (Weavers and Allies),,blbwea1 +29604,issf,bkbwea2,Black-billed Weaver (Eastern),Ploceus melanogaster stephanophorus,Passeriformes,Ploceidae (Weavers and Allies),,blbwea1 +29605,species,strwea1,Strange Weaver,Ploceus alienus,Passeriformes,Ploceidae (Weavers and Allies),, +29606,species,capwea1,Cape Weaver,Ploceus capensis,Passeriformes,Ploceidae (Weavers and Allies),, +29607,species,bocwea1,Bocage's Weaver,Ploceus temporalis,Passeriformes,Ploceidae (Weavers and Allies),, +29608,species,afgwea1,African Golden-Weaver,Ploceus subaureus,Passeriformes,Ploceidae (Weavers and Allies),, +29611,species,hogwea1,Holub's Golden-Weaver,Ploceus xanthops,Passeriformes,Ploceidae (Weavers and Allies),, +29612,species,orawea1,Orange Weaver,Ploceus aurantius,Passeriformes,Ploceidae (Weavers and Allies),, +29615,species,gopwea1,Golden Palm Weaver,Ploceus bojeri,Passeriformes,Ploceidae (Weavers and Allies),, +29616,species,tagwea1,Taveta Golden-Weaver,Ploceus castaneiceps,Passeriformes,Ploceidae (Weavers and Allies),, +29617,species,prgwea1,Principe Golden-Weaver,Ploceus princeps,Passeriformes,Ploceidae (Weavers and Allies),, +29618,species,sbtwea1,Southern Brown-throated Weaver,Ploceus xanthopterus,Passeriformes,Ploceidae (Weavers and Allies),, +29622,species,nbtwea1,Northern Brown-throated Weaver,Ploceus castanops,Passeriformes,Ploceidae (Weavers and Allies),, +29623,species,kilwea1,Kilombero Weaver,Ploceus burnieri,Passeriformes,Ploceidae (Weavers and Allies),, +29624,species,nomwea1,Northern Masked-Weaver,Ploceus taeniopterus,Passeriformes,Ploceidae (Weavers and Allies),, +29625,species,lesmaw1,Lesser Masked-Weaver,Ploceus intermedius,Passeriformes,Ploceidae (Weavers and Allies),, +29629,species,afmwea,Southern Masked-Weaver,Ploceus velatus,Passeriformes,Ploceidae (Weavers and Allies),, +29636,species,vimwea1,Vitelline Masked-Weaver,Ploceus vitellinus,Passeriformes,Ploceidae (Weavers and Allies),, +29639,species,tanmaw1,Tanganyika Masked-Weaver,Ploceus reichardi,Passeriformes,Ploceidae (Weavers and Allies),, +29640,species,kamwea1,Katanga Masked-Weaver,Ploceus katangae,Passeriformes,Ploceidae (Weavers and Allies),, +29641,issf,katmaw1,Katanga Masked-Weaver (Upemba),Ploceus katangae upembae,Passeriformes,Ploceidae (Weavers and Allies),,kamwea1 +29642,issf,katmaw2,Katanga Masked-Weaver (Katanga),Ploceus katangae katangae,Passeriformes,Ploceidae (Weavers and Allies),,kamwea1 +29643,species,lalmaw1,Lake Lufira Masked-Weaver,Ploceus ruweti,Passeriformes,Ploceidae (Weavers and Allies),, +29644,species,hemwea1,Heuglin's Masked-Weaver,Ploceus heuglini,Passeriformes,Ploceidae (Weavers and Allies),, +29645,species,ruewea1,Rüppell's Weaver,Ploceus galbula,Passeriformes,Ploceidae (Weavers and Allies),, +29646,species,spewea2,Speke's Weaver,Ploceus spekei,Passeriformes,Ploceidae (Weavers and Allies),, +29647,species,foxwea1,Fox's Weaver,Ploceus spekeoides,Passeriformes,Ploceidae (Weavers and Allies),, +29648,species,viewea1,Vieillot's Weaver,Ploceus nigerrimus,Passeriformes,Ploceidae (Weavers and Allies),, +29649,issf,viewea2,Vieillot's Weaver (Chestnut-and-black),Ploceus nigerrimus castaneofuscus,Passeriformes,Ploceidae (Weavers and Allies),,viewea1 +29650,issf,viewea3,Vieillot's Weaver (Black),Ploceus nigerrimus nigerrimus,Passeriformes,Ploceidae (Weavers and Allies),,viewea1 +29651,species,vilwea1,Village Weaver,Ploceus cucullatus,Passeriformes,Ploceidae (Weavers and Allies),, +29652,issf,vilwea2,Village Weaver (Mottled),Ploceus cucullatus collaris,Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 +29653,issf,vilwea3,Village Weaver (Black-headed),Ploceus cucullatus [cucullatus Group],Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 +29658,issf,vilwea4,Village Weaver (Layard's),Ploceus cucullatus nigriceps/graueri,Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 +29661,issf,vilwea5,Village Weaver (Spot-backed),Ploceus cucullatus spilonotus,Passeriformes,Ploceidae (Weavers and Allies),,vilwea1 +29662,species,giawea1,Giant Weaver,Ploceus grandis,Passeriformes,Ploceidae (Weavers and Allies),, +29663,species,weywea1,Weyns's Weaver,Ploceus weynsi,Passeriformes,Ploceidae (Weavers and Allies),, +29664,species,clawea1,Clarke's Weaver,Ploceus golandi,Passeriformes,Ploceidae (Weavers and Allies),, +29665,species,salwea1,Salvadori's Weaver,Ploceus dichrocephalus,Passeriformes,Ploceidae (Weavers and Allies),, +29666,species,blhwea1,Black-headed Weaver,Ploceus melanocephalus,Passeriformes,Ploceidae (Weavers and Allies),, +29671,species,gobwea1,Golden-backed Weaver,Ploceus jacksoni,Passeriformes,Ploceidae (Weavers and Allies),, +29672,species,chewea1,Chestnut Weaver,Ploceus rubiginosus,Passeriformes,Ploceidae (Weavers and Allies),, +29673,issf,chewea2,Chestnut Weaver (Benguela),Ploceus rubiginosus trothae,Passeriformes,Ploceidae (Weavers and Allies),,chewea1 +29674,issf,chewea3,Chestnut Weaver (Chestnut),Ploceus rubiginosus rubiginosus,Passeriformes,Ploceidae (Weavers and Allies),,chewea1 +29675,species,cinwea1,Cinnamon Weaver,Ploceus badius,Passeriformes,Ploceidae (Weavers and Allies),, +29676,species,gonwea1,Golden-naped Weaver,Ploceus aureonucha,Passeriformes,Ploceidae (Weavers and Allies),, +29677,species,yemwea1,Yellow-mantled Weaver,Ploceus tricolor,Passeriformes,Ploceidae (Weavers and Allies),, +29680,species,mabwea1,Maxwell's Black Weaver,Ploceus albinucha,Passeriformes,Ploceidae (Weavers and Allies),, +29681,issf,mabwea2,Maxwell's Black Weaver (White-naped),Ploceus albinucha albinucha,Passeriformes,Ploceidae (Weavers and Allies),,mabwea1 +29682,issf,mabwea3,Maxwell's Black Weaver (Maxwell's),Ploceus albinucha maxwelli/holomelas,Passeriformes,Ploceidae (Weavers and Allies),,mabwea1 +29685,species,forwea1,Forest Weaver,Ploceus bicolor,Passeriformes,Ploceidae (Weavers and Allies),, +29694,species,brcwea1,Brown-capped Weaver,Ploceus insignis,Passeriformes,Ploceidae (Weavers and Allies),, +29695,species,yecwea1,Yellow-capped Weaver,Ploceus dorsomaculatus,Passeriformes,Ploceidae (Weavers and Allies),, +29696,species,prewea1,Preuss's Weaver,Ploceus preussi,Passeriformes,Ploceidae (Weavers and Allies),, +29697,species,olhwea1,Olive-headed Weaver,Ploceus olivaceiceps,Passeriformes,Ploceidae (Weavers and Allies),, +29698,species,usawea1,Usambara Weaver,Ploceus nicolli,Passeriformes,Ploceidae (Weavers and Allies),, +29701,species,bawwea1,Bar-winged Weaver,Ploceus angolensis,Passeriformes,Ploceidae (Weavers and Allies),, +29702,species,satwea1,Sao Tome Weaver,Ploceus sanctithomae,Passeriformes,Ploceidae (Weavers and Allies),, +29703,species,nelwea1,Nelicourvi Weaver,Ploceus nelicourvi,Passeriformes,Ploceidae (Weavers and Allies),, +29704,species,sakwea1,Sakalava Weaver,Ploceus sakalava,Passeriformes,Ploceidae (Weavers and Allies),, +29707,species,strwea2,Streaked Weaver,Ploceus manyar,Passeriformes,Ploceidae (Weavers and Allies),, +29712,species,baywea1,Baya Weaver,Ploceus philippinus,Passeriformes,Ploceidae (Weavers and Allies),, +29718,species,asgwea2,Asian Golden Weaver,Ploceus hypoxanthus,Passeriformes,Ploceidae (Weavers and Allies),, +29721,species,yelwea1,Finn's Weaver,Ploceus megarhynchus,Passeriformes,Ploceidae (Weavers and Allies),, +29724,slash,y01163,Baya/Finn's Weaver,Ploceus philippinus/megarhynchus,Passeriformes,Ploceidae (Weavers and Allies),, +29725,species,benwea1,Black-breasted Weaver,Ploceus benghalensis,Passeriformes,Ploceidae (Weavers and Allies),, +29726,slash,y01120,Streaked/Black-breasted Weaver,Ploceus manyar/benghalensis,Passeriformes,Ploceidae (Weavers and Allies),, +29727,spuh,ploceu1,Ploceus sp.,Ploceus sp.,Passeriformes,Ploceidae (Weavers and Allies),, +29728,species,comwea1,Compact Weaver,Pachyphantes superciliosus,Passeriformes,Ploceidae (Weavers and Allies),, +29729,species,carque1,Cardinal Quelea,Quelea cardinalis,Passeriformes,Ploceidae (Weavers and Allies),, +29730,species,rehque1,Red-headed Quelea,Quelea erythrops,Passeriformes,Ploceidae (Weavers and Allies),, +29731,species,rebque1,Red-billed Quelea,Quelea quelea,Passeriformes,Ploceidae (Weavers and Allies),, +29735,spuh,quelea1,quelea sp.,Quelea sp.,Passeriformes,Ploceidae (Weavers and Allies),, +29736,species,botwea1,Bob-tailed Weaver,Brachycope anomala,Passeriformes,Ploceidae (Weavers and Allies),, +29737,species,redfod1,Red Fody,Foudia madagascariensis,Passeriformes,Ploceidae (Weavers and Allies),, +29738,species,rehfod3,Aldabra Fody,Foudia aldabrana,Passeriformes,Ploceidae (Weavers and Allies),, +29739,species,rehfod1,Red-headed Fody,Foudia eminentissima,Passeriformes,Ploceidae (Weavers and Allies),, +29740,issf,rehfod4,Red-headed Fody (Grand Comoro),Foudia eminentissima consobrina,Passeriformes,Ploceidae (Weavers and Allies),,rehfod1 +29741,issf,rehfod2,Red-headed Fody (Southern Comoros),Foudia eminentissima [eminentissima Group],Passeriformes,Ploceidae (Weavers and Allies),,rehfod1 +29745,species,forfod1,Forest Fody,Foudia omissa,Passeriformes,Ploceidae (Weavers and Allies),, +29746,slash,y00930,Red/Forest Fody,Foudia madagascariensis/omissa,Passeriformes,Ploceidae (Weavers and Allies),, +29747,species,reufod1,Reunion Fody,Foudia delloni,Passeriformes,Ploceidae (Weavers and Allies),, +29748,species,maufod1,Mauritius Fody,Foudia rubra,Passeriformes,Ploceidae (Weavers and Allies),, +29749,species,seyfod1,Seychelles Fody,Foudia sechellarum,Passeriformes,Ploceidae (Weavers and Allies),, +29750,species,rodfod1,Rodrigues Fody,Foudia flavicans,Passeriformes,Ploceidae (Weavers and Allies),, +29751,species,orabis1,Northern Red Bishop,Euplectes franciscanus,Passeriformes,Ploceidae (Weavers and Allies),, +29752,species,redbis,Southern Red Bishop,Euplectes orix,Passeriformes,Ploceidae (Weavers and Allies),, +29753,species,zanbis1,Zanzibar Red Bishop,Euplectes nigroventris,Passeriformes,Ploceidae (Weavers and Allies),, +29754,species,blwbis1,Black-winged Bishop,Euplectes hordeaceus,Passeriformes,Ploceidae (Weavers and Allies),, +29755,species,blabis1,Black Bishop,Euplectes gierowii,Passeriformes,Ploceidae (Weavers and Allies),, +29759,species,yecbis,Yellow-crowned Bishop,Euplectes afer,Passeriformes,Ploceidae (Weavers and Allies),, +29763,species,fifbis1,Fire-fronted Bishop,Euplectes diadematus,Passeriformes,Ploceidae (Weavers and Allies),, +29764,species,gobbis1,Golden-backed Bishop,Euplectes aureus,Passeriformes,Ploceidae (Weavers and Allies),, +29765,species,yelbis1,Yellow Bishop,Euplectes capensis,Passeriformes,Ploceidae (Weavers and Allies),, +29766,issf,yelbis2,Yellow Bishop (Montane),Euplectes capensis phoenicomerus,Passeriformes,Ploceidae (Weavers and Allies),,yelbis1 +29767,issf,yelbis3,Yellow Bishop (Ethiopian),Euplectes capensis xanthomelas,Passeriformes,Ploceidae (Weavers and Allies),,yelbis1 +29768,issf,yelbis4,Yellow Bishop (Yellow),Euplectes capensis [capensis Group],Passeriformes,Ploceidae (Weavers and Allies),,yelbis1 +29773,species,whwwid1,White-winged Widowbird,Euplectes albonotatus,Passeriformes,Ploceidae (Weavers and Allies),, +29777,species,yeswid2,Yellow-mantled Widowbird,Euplectes macroura,Passeriformes,Ploceidae (Weavers and Allies),, +29778,issf,yemwid1,Yellow-mantled Widowbird (Yellow-shouldered),Euplectes macroura macrocercus,Passeriformes,Ploceidae (Weavers and Allies),,yeswid2 +29779,issf,yemwid2,Yellow-mantled Widowbird (Yellow-mantled),Euplectes macroura macroura/conradsi,Passeriformes,Ploceidae (Weavers and Allies),,yeswid2 +29782,species,recwid1,Red-collared Widowbird,Euplectes ardens,Passeriformes,Ploceidae (Weavers and Allies),, +29783,issf,recwid2,Red-collared Widowbird (Red-cowled),Euplectes ardens laticauda/suahelicus,Passeriformes,Ploceidae (Weavers and Allies),,recwid1 +29786,issf,recwid3,Red-collared Widowbird (Red-collared),Euplectes ardens ardens,Passeriformes,Ploceidae (Weavers and Allies),,recwid1 +29787,species,fatwid1,Fan-tailed Widowbird,Euplectes axillaris,Passeriformes,Ploceidae (Weavers and Allies),, +29793,species,marwid1,Marsh Widowbird,Euplectes hartlaubi,Passeriformes,Ploceidae (Weavers and Allies),, +29796,species,buswid1,Buff-shouldered Widowbird,Euplectes psammacromius,Passeriformes,Ploceidae (Weavers and Allies),, +29797,species,lotwid1,Long-tailed Widowbird,Euplectes progne,Passeriformes,Ploceidae (Weavers and Allies),, +29801,species,jacwid1,Jackson's Widowbird,Euplectes jacksoni,Passeriformes,Ploceidae (Weavers and Allies),, +29802,spuh,euplec1,Euplectes sp.,Euplectes sp.,Passeriformes,Ploceidae (Weavers and Allies),, +29803,species,growea1,Grosbeak Weaver,Amblyospiza albifrons,Passeriformes,Ploceidae (Weavers and Allies),, +29814,species,pafneg1,Pale-fronted Nigrita,Nigrita luteifrons,Passeriformes,Estrildidae (Waxbills and Allies),Estrildids, +29817,species,gyhneg1,Gray-headed Nigrita,Nigrita canicapillus,Passeriformes,Estrildidae (Waxbills and Allies),, +29824,species,chbneg1,Chestnut-breasted Nigrita,Nigrita bicolor,Passeriformes,Estrildidae (Waxbills and Allies),, +29828,species,whbneg2,White-breasted Nigrita,Nigrita fusconotus,Passeriformes,Estrildidae (Waxbills and Allies),, +29831,spuh,nigrit1,nigrita sp.,Nigrita sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +29832,species,wooant1,Woodhouse's Antpecker,Parmoptila woodhousei,Passeriformes,Estrildidae (Waxbills and Allies),, +29835,species,refant1,Red-fronted Antpecker,Parmoptila rubrifrons,Passeriformes,Estrildidae (Waxbills and Allies),, +29836,species,jamant1,Jameson's Antpecker,Parmoptila jamesoni,Passeriformes,Estrildidae (Waxbills and Allies),, +29837,species,fepoli1,Shelley's Oliveback,Nesocharis shelleyi,Passeriformes,Estrildidae (Waxbills and Allies),, +29840,species,whcoli1,White-collared Oliveback,Nesocharis ansorgei,Passeriformes,Estrildidae (Waxbills and Allies),, +29841,species,gyholi1,Gray-headed Oliveback,Nesocharis capistrata,Passeriformes,Estrildidae (Waxbills and Allies),, +29842,species,swewax1,Angola Waxbill,Coccopygia bocagei,Passeriformes,Estrildidae (Waxbills and Allies),, +29843,species,swewax3,Swee Waxbill,Coccopygia melanotis,Passeriformes,Estrildidae (Waxbills and Allies),, +29844,species,yebwax2,Yellow-bellied Waxbill,Coccopygia quartinia,Passeriformes,Estrildidae (Waxbills and Allies),, +29848,species,grbtwi1,Green-backed Twinspot,Mandingoa nitidula,Passeriformes,Estrildidae (Waxbills and Allies),, +29849,issf,gnbtwi1,Green-backed Twinspot (Orange-breasted),Mandingoa nitidula schlegeli/virginiae,Passeriformes,Estrildidae (Waxbills and Allies),,grbtwi1 +29852,issf,gnbtwi2,Green-backed Twinspot (Green-breasted),Mandingoa nitidula nitidula/chubbi,Passeriformes,Estrildidae (Waxbills and Allies),,grbtwi1 +29855,species,shcwin1,Shelley's Crimsonwing,Cryptospiza shelleyi,Passeriformes,Estrildidae (Waxbills and Allies),, +29856,species,ducwin1,Dusky Crimsonwing,Cryptospiza jacksoni,Passeriformes,Estrildidae (Waxbills and Allies),, +29857,species,abcwin1,Abyssinian Crimsonwing,Cryptospiza salvadorii,Passeriformes,Estrildidae (Waxbills and Allies),, +29861,species,rfcwin1,Red-faced Crimsonwing,Cryptospiza reichenovii,Passeriformes,Estrildidae (Waxbills and Allies),, +29862,issf,refcrw1,Red-faced Crimsonwing (Western),Cryptospiza reichenovii reichenovii,Passeriformes,Estrildidae (Waxbills and Allies),,rfcwin1 +29863,issf,refcrw2,Red-faced Crimsonwing (Eastern),Cryptospiza reichenovii australis/ocularis,Passeriformes,Estrildidae (Waxbills and Allies),,rfcwin1 +29866,species,lavwax,Lavender Waxbill,Estrilda coerulescens,Passeriformes,Estrildidae (Waxbills and Allies),, +29867,species,bltwax1,Black-tailed Waxbill,Estrilda perreini,Passeriformes,Estrildidae (Waxbills and Allies),, +29870,species,cinwax1,Cinderella Waxbill,Estrilda thomensis,Passeriformes,Estrildidae (Waxbills and Allies),, +29871,species,fabwax1,Fawn-breasted Waxbill,Estrilda paludicola,Passeriformes,Estrildidae (Waxbills and Allies),, +29872,issf,fabwax3,Fawn-breasted Waxbill (Abyssinian),Estrilda paludicola ochrogaster,Passeriformes,Estrildidae (Waxbills and Allies),,fabwax1 +29873,issf,fabwax2,Fawn-breasted Waxbill (Fawn-breasted),Estrilda paludicola [paludicola Group],Passeriformes,Estrildidae (Waxbills and Allies),,fabwax1 +29879,species,anawax1,Anambra Waxbill,Estrilda poliopareia,Passeriformes,Estrildidae (Waxbills and Allies),, +29880,species,orcwax,Orange-cheeked Waxbill,Estrilda melpoda,Passeriformes,Estrildidae (Waxbills and Allies),, +29881,species,arawax1,Arabian Waxbill,Estrilda rufibarba,Passeriformes,Estrildidae (Waxbills and Allies),, +29882,species,crrwax1,Crimson-rumped Waxbill,Estrilda rhodopyga,Passeriformes,Estrildidae (Waxbills and Allies),, +29885,species,bkrwax,Black-rumped Waxbill,Estrilda troglodytes,Passeriformes,Estrildidae (Waxbills and Allies),, +29886,species,comwax,Common Waxbill,Estrilda astrild,Passeriformes,Estrildidae (Waxbills and Allies),, +29902,species,blfwax1,Black-lored Waxbill,Estrilda nigriloris,Passeriformes,Estrildidae (Waxbills and Allies),, +29903,species,blcwax2,Black-crowned Waxbill,Estrilda nonnula,Passeriformes,Estrildidae (Waxbills and Allies),, +29907,species,blhwax1,Black-headed Waxbill,Estrilda atricapilla,Passeriformes,Estrildidae (Waxbills and Allies),, +29911,species,kanwax1,Kandt's Waxbill,Estrilda kandti,Passeriformes,Estrildidae (Waxbills and Allies),, +29912,species,blcwax1,Black-faced Waxbill,Estrilda erythronotos,Passeriformes,Estrildidae (Waxbills and Allies),, +29915,species,rerwax1,Black-cheeked Waxbill,Estrilda charmosyna,Passeriformes,Estrildidae (Waxbills and Allies),, +29918,spuh,waxbil1,waxbill sp.,Estrilda sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +29919,species,grablu1,Grant's Bluebill,Spermophaga poliogenys,Passeriformes,Estrildidae (Waxbills and Allies),, +29920,species,wesblu1,Western Bluebill,Spermophaga haematina,Passeriformes,Estrildidae (Waxbills and Allies),, +29921,issf,wesblu2,Western Bluebill (Western),Spermophaga haematina haematina/togoensis,Passeriformes,Estrildidae (Waxbills and Allies),,wesblu1 +29924,issf,wesblu3,Western Bluebill (Red-rumped),Spermophaga haematina pustulata,Passeriformes,Estrildidae (Waxbills and Allies),,wesblu1 +29925,species,rehblu1,Red-headed Bluebill,Spermophaga ruficapilla,Passeriformes,Estrildidae (Waxbills and Allies),, +29928,species,blbsee1,Black-bellied Seedcracker,Pyrenestes ostrinus,Passeriformes,Estrildidae (Waxbills and Allies),, +29929,species,crisee1,Crimson Seedcracker,Pyrenestes sanguineus,Passeriformes,Estrildidae (Waxbills and Allies),, +29930,species,lessee1,Lesser Seedcracker,Pyrenestes minor,Passeriformes,Estrildidae (Waxbills and Allies),, +29931,species,bubcor1,Southern Cordonbleu,Uraeginthus angolensis,Passeriformes,Estrildidae (Waxbills and Allies),, +29934,species,reccor,Red-cheeked Cordonbleu,Uraeginthus bengalus,Passeriformes,Estrildidae (Waxbills and Allies),, +29939,species,blccor1,Blue-capped Cordonbleu,Uraeginthus cyanocephalus,Passeriformes,Estrildidae (Waxbills and Allies),, +29940,spuh,cordon1,cordonbleu sp.,Uraeginthus sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +29941,species,purgre2,Purple Grenadier,Granatina ianthinogaster,Passeriformes,Estrildidae (Waxbills and Allies),, +29942,species,viewax1,Violet-eared Waxbill,Granatina granatina,Passeriformes,Estrildidae (Waxbills and Allies),, +29943,species,dybtwi1,Dybowski's Twinspot,Euschistospiza dybowskii,Passeriformes,Estrildidae (Waxbills and Allies),, +29944,species,dustwi1,Dusky Twinspot,Euschistospiza cinereovinacea,Passeriformes,Estrildidae (Waxbills and Allies),, +29945,issf,dustwi2,Dusky Twinspot (Angolan),Euschistospiza cinereovinacea cinereovinacea,Passeriformes,Estrildidae (Waxbills and Allies),,dustwi1 +29946,issf,dustwi3,Dusky Twinspot (Grauer's),Euschistospiza cinereovinacea graueri,Passeriformes,Estrildidae (Waxbills and Allies),,dustwi1 +29947,species,pettwi1,Peters's Twinspot,Hypargos niveoguttatus,Passeriformes,Estrildidae (Waxbills and Allies),, +29950,species,pittwi1,Pink-throated Twinspot,Hypargos margaritatus,Passeriformes,Estrildidae (Waxbills and Allies),, +29951,species,brotwi1,Brown Twinspot,Clytospiza monteiri,Passeriformes,Estrildidae (Waxbills and Allies),, +29952,species,refpyt1,Red-faced Pytilia,Pytilia hypogrammica,Passeriformes,Estrildidae (Waxbills and Allies),, +29953,species,rewpyt1,Red-winged Pytilia,Pytilia phoenicoptera,Passeriformes,Estrildidae (Waxbills and Allies),, +29956,species,rebpyt1,Red-billed Pytilia,Pytilia lineata,Passeriformes,Estrildidae (Waxbills and Allies),, +29957,species,grwpyt1,Green-winged Pytilia,Pytilia melba,Passeriformes,Estrildidae (Waxbills and Allies),, +29967,spuh,pytili1,pytilia sp.,Pytilia sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +29968,species,orwpyt1,Orange-winged Pytilia,Pytilia afra,Passeriformes,Estrildidae (Waxbills and Allies),, +29969,species,rebfir2,Red-billed Firefinch,Lagonosticta senegala,Passeriformes,Estrildidae (Waxbills and Allies),, +29976,species,babfir1,Bar-breasted Firefinch,Lagonosticta rufopicta,Passeriformes,Estrildidae (Waxbills and Allies),, +29979,species,brnfir1,Brown Firefinch,Lagonosticta nitidula,Passeriformes,Estrildidae (Waxbills and Allies),, +29980,species,bkffir1,Black-faced Firefinch,Lagonosticta larvata,Passeriformes,Estrildidae (Waxbills and Allies),, +29981,issf,bkffir2,Black-faced Firefinch (Vinaceous),Lagonosticta larvata vinacea,Passeriformes,Estrildidae (Waxbills and Allies),,bkffir1 +29982,issf,bkffir3,Black-faced Firefinch (Gray),Lagonosticta larvata nigricollis,Passeriformes,Estrildidae (Waxbills and Allies),,bkffir1 +29983,issf,bkffir4,Black-faced Firefinch (Reddish),Lagonosticta larvata larvata,Passeriformes,Estrildidae (Waxbills and Allies),,bkffir1 +29984,species,blbfir1,Black-bellied Firefinch,Lagonosticta rara,Passeriformes,Estrildidae (Waxbills and Allies),, +29987,species,afffin,African Firefinch,Lagonosticta rubricata,Passeriformes,Estrildidae (Waxbills and Allies),, +29992,species,pabfir1,Pale-billed Firefinch,Lagonosticta landanae,Passeriformes,Estrildidae (Waxbills and Allies),, +29993,species,jamfir1,Jameson's Firefinch,Lagonosticta rhodopareia,Passeriformes,Estrildidae (Waxbills and Allies),, +29997,species,malfir1,Mali Firefinch,Lagonosticta virata,Passeriformes,Estrildidae (Waxbills and Allies),, +29998,species,rocfir1,Rock Firefinch,Lagonosticta sanguinodorsalis,Passeriformes,Estrildidae (Waxbills and Allies),, +29999,species,reifir1,Reichenow's Firefinch,Lagonosticta umbrinodorsalis,Passeriformes,Estrildidae (Waxbills and Allies),, +30000,spuh,firefi1,firefinch sp.,Lagonosticta sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +30001,species,cutthr1,Cut-throat,Amadina fasciata,Passeriformes,Estrildidae (Waxbills and Allies),, +30006,species,rehfin1,Red-headed Finch,Amadina erythrocephala,Passeriformes,Estrildidae (Waxbills and Allies),, +30009,species,zebwax2,Zebra Waxbill,Sporaeginthus subflavus,Passeriformes,Estrildidae (Waxbills and Allies),, +30012,species,grnava1,Green Avadavat,Sporaeginthus formosus,Passeriformes,Estrildidae (Waxbills and Allies),, +30013,species,redava,Red Avadavat,Amandava amandava,Passeriformes,Estrildidae (Waxbills and Allies),, +30014,issf,redava1,Red Avadavat (Red-bellied),Amandava amandava amandava/punicea,Passeriformes,Estrildidae (Waxbills and Allies),,redava +30017,issf,redava2,Red Avadavat (Yellow-bellied),Amandava amandava flavidiventris,Passeriformes,Estrildidae (Waxbills and Allies),,redava +30018,species,quailf1,Quailfinch,Ortygospiza atricollis,Passeriformes,Estrildidae (Waxbills and Allies),, +30019,issf,bkfqua1,Quailfinch (Black-faced),Ortygospiza atricollis [atricollis Group],Passeriformes,Estrildidae (Waxbills and Allies),,quailf1 +30023,issf,rebqua1,Quailfinch (Black-chinned),Ortygospiza atricollis [gabonensis Group],Passeriformes,Estrildidae (Waxbills and Allies),,quailf1 +30027,issf,afrqua2,Quailfinch (Spectacled),Ortygospiza atricollis [fuscocrissa Group],Passeriformes,Estrildidae (Waxbills and Allies),,quailf1 +30033,species,locust3,Locustfinch,Paludipasser locustella,Passeriformes,Estrildidae (Waxbills and Allies),, +30036,species,paifir1,Painted Firetail,Emblema pictum,Passeriformes,Estrildidae (Waxbills and Allies),, +30037,species,beafir1,Beautiful Firetail,Stagonopleura bella,Passeriformes,Estrildidae (Waxbills and Allies),, +30041,species,reefir1,Red-eared Firetail,Stagonopleura oculata,Passeriformes,Estrildidae (Waxbills and Allies),, +30042,species,diafir1,Diamond Firetail,Stagonopleura guttata,Passeriformes,Estrildidae (Waxbills and Allies),, +30043,species,moufir1,Mountain Firetail,Oreostruthus fuliginosus,Passeriformes,Estrildidae (Waxbills and Allies),, +30047,species,rebfir1,Red-browed Firetail,Neochmia temporalis,Passeriformes,Estrildidae (Waxbills and Allies),, +30050,species,crifin1,Crimson Finch,Neochmia phaeton,Passeriformes,Estrildidae (Waxbills and Allies),, +30051,issf,crifin2,Crimson Finch (White-bellied),Neochmia phaeton evangelinae,Passeriformes,Estrildidae (Waxbills and Allies),,crifin1 +30052,issf,crifin3,Crimson Finch (Black-bellied),Neochmia phaeton phaeton,Passeriformes,Estrildidae (Waxbills and Allies),,crifin1 +30053,species,stafin1,Star Finch,Neochmia ruficauda,Passeriformes,Estrildidae (Waxbills and Allies),, +30057,species,plhfin1,Plum-headed Finch,Neochmia modesta,Passeriformes,Estrildidae (Waxbills and Allies),, +30058,species,zebfin2,Zebra Finch,Taeniopygia guttata,Passeriformes,Estrildidae (Waxbills and Allies),, +30059,issf,zebfin1,Zebra Finch (Lesser Sundas),Taeniopygia guttata guttata,Passeriformes,Estrildidae (Waxbills and Allies),,zebfin2 +30060,issf,chefin1,Zebra Finch (Australian),Taeniopygia guttata castanotis,Passeriformes,Estrildidae (Waxbills and Allies),,zebfin2 +30061,species,dobfin1,Double-barred Finch,Taeniopygia bichenovii,Passeriformes,Estrildidae (Waxbills and Allies),, +30064,hybrid,x00906,Zebra x Double-barred Finch (hybrid),Taeniopygia guttata x bichenovii,Passeriformes,Estrildidae (Waxbills and Allies),, +30065,species,masfin1,Masked Finch,Poephila personata,Passeriformes,Estrildidae (Waxbills and Allies),, +30066,issf,masfin2,Masked Finch (Masked),Poephila personata personata,Passeriformes,Estrildidae (Waxbills and Allies),,masfin1 +30067,issf,masfin4,Masked Finch (White-eared),Poephila personata leucotis,Passeriformes,Estrildidae (Waxbills and Allies),,masfin1 +30068,species,lotfin1,Long-tailed Finch,Poephila acuticauda,Passeriformes,Estrildidae (Waxbills and Allies),, +30071,species,bltfin1,Black-throated Finch,Poephila cincta,Passeriformes,Estrildidae (Waxbills and Allies),, +30072,issf,bktfin1,Black-throated Finch (Black-rumped),Poephila cincta atropygialis,Passeriformes,Estrildidae (Waxbills and Allies),,bltfin1 +30073,issf,bktfin2,Black-throated Finch (White-rumped),Poephila cincta cincta,Passeriformes,Estrildidae (Waxbills and Allies),,bltfin1 +30074,species,tabpar1,Tawny-breasted Parrotfinch,Erythrura hyperythra,Passeriformes,Estrildidae (Waxbills and Allies),, +30081,species,pitpar1,Pin-tailed Parrotfinch,Erythrura prasina,Passeriformes,Estrildidae (Waxbills and Allies),, +30084,species,grfpar1,Green-faced Parrotfinch,Erythrura viridifacies,Passeriformes,Estrildidae (Waxbills and Allies),, +30085,species,tripar1,Tricolored Parrotfinch,Erythrura tricolor,Passeriformes,Estrildidae (Waxbills and Allies),, +30086,species,blfpar3,Blue-faced Parrotfinch,Erythrura trichroa,Passeriformes,Estrildidae (Waxbills and Allies),, +30098,form,timpar1,Mount Mutis Parrotfinch (undescribed form),Erythrura [undescribed form],Passeriformes,Estrildidae (Waxbills and Allies),, +30099,species,reepar2,Red-eared Parrotfinch,Erythrura coloria,Passeriformes,Estrildidae (Waxbills and Allies),, +30100,species,pappar1,Papuan Parrotfinch,Erythrura papuana,Passeriformes,Estrildidae (Waxbills and Allies),, +30101,slash,y01107,Blue-faced/Papuan Parrotfinch,Erythrura trichroa/papuana,Passeriformes,Estrildidae (Waxbills and Allies),, +30102,species,retpar3,Red-throated Parrotfinch,Erythrura psittacea,Passeriformes,Estrildidae (Waxbills and Allies),, +30103,species,fijpar1,Fiji Parrotfinch,Erythrura pealii,Passeriformes,Estrildidae (Waxbills and Allies),, +30104,species,rehpar1,Red-headed Parrotfinch,Erythrura cyaneovirens,Passeriformes,Estrildidae (Waxbills and Allies),, +30107,species,roypar1,Royal Parrotfinch,Erythrura regia,Passeriformes,Estrildidae (Waxbills and Allies),, +30111,species,pibpar1,Pink-billed Parrotfinch,Erythrura kleinschmidti,Passeriformes,Estrildidae (Waxbills and Allies),, +30112,species,goufin3,Gouldian Finch,Erythrura gouldiae,Passeriformes,Estrildidae (Waxbills and Allies),, +30113,spuh,parrot2,parrotfinch sp.,Erythrura sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +30114,species,gyhsil1,Gray-headed Silverbill,Odontospiza griseicapilla,Passeriformes,Estrildidae (Waxbills and Allies),, +30115,species,broman1,Bronze Mannikin,Spermestes cucullata,Passeriformes,Estrildidae (Waxbills and Allies),, +30118,species,bawman1,Black-and-white Mannikin,Spermestes bicolor,Passeriformes,Estrildidae (Waxbills and Allies),, +30119,issf,bawman2,Black-and-white Mannikin (Black-and-white),Spermestes bicolor bicolor/poensis,Passeriformes,Estrildidae (Waxbills and Allies),,bawman1 +30122,issf,bawman3,Black-and-white Mannikin (Red-backed),Spermestes bicolor nigriceps/woltersi,Passeriformes,Estrildidae (Waxbills and Allies),,bawman1 +30125,species,magman1,Magpie Mannikin,Spermestes fringilloides,Passeriformes,Estrildidae (Waxbills and Allies),, +30126,species,indsil,Indian Silverbill,Euodice malabarica,Passeriformes,Estrildidae (Waxbills and Allies),, +30127,species,afrsil1,African Silverbill,Euodice cantans,Passeriformes,Estrildidae (Waxbills and Allies),, +30130,species,madmun1,Madagascar Munia,Lonchura nana,Passeriformes,Estrildidae (Waxbills and Allies),, +30131,species,whrmun,White-rumped Munia,Lonchura striata,Passeriformes,Estrildidae (Waxbills and Allies),, +30139,species,javmun1,Javan Munia,Lonchura leucogastroides,Passeriformes,Estrildidae (Waxbills and Allies),, +30140,species,dusmun1,Dusky Munia,Lonchura fuscans,Passeriformes,Estrildidae (Waxbills and Allies),, +30141,species,blfmun1,Black-faced Munia,Lonchura molucca,Passeriformes,Estrildidae (Waxbills and Allies),, +30142,species,bltmun1,Black-throated Munia,Lonchura kelaarti,Passeriformes,Estrildidae (Waxbills and Allies),, +30145,species,nutman,Scaly-breasted Munia,Lonchura punctulata,Passeriformes,Estrildidae (Waxbills and Allies),, +30146,issf,scbmun1,Scaly-breasted Munia (Checkered),Lonchura punctulata punctulata,Passeriformes,Estrildidae (Waxbills and Allies),,nutman +30147,issf,scbmun2,Scaly-breasted Munia (Scaled),Lonchura punctulata [nisoria Group],Passeriformes,Estrildidae (Waxbills and Allies),,nutman +30159,species,whbmun1,White-bellied Munia,Lonchura leucogastra,Passeriformes,Estrildidae (Waxbills and Allies),, +30166,species,sthmun1,Streak-headed Munia,Lonchura tristissima,Passeriformes,Estrildidae (Waxbills and Allies),, +30167,issf,sthmun2,Streak-headed Munia (Streak-headed),Lonchura tristissima [tristissima Group],Passeriformes,Estrildidae (Waxbills and Allies),,sthmun1 +30172,issf,sthmun3,Streak-headed Munia (White-spotted),Lonchura tristissima leucosticta/moresbyensis,Passeriformes,Estrildidae (Waxbills and Allies),,sthmun1 +30175,species,trimun,Tricolored Munia,Lonchura malacca,Passeriformes,Estrildidae (Waxbills and Allies),, +30178,species,chemun,Chestnut Munia,Lonchura atricapilla,Passeriformes,Estrildidae (Waxbills and Allies),, +30179,issf,chemun1,Chestnut Munia (Chestnut),Lonchura atricapilla [atricapilla Group],Passeriformes,Estrildidae (Waxbills and Allies),,chemun +30188,issf,chemun2,Chestnut Munia (formosana),Lonchura atricapilla formosana,Passeriformes,Estrildidae (Waxbills and Allies),,chemun +30189,hybrid,x00932,Tricolored x Chestnut Munia (hybrid),Lonchura malacca x atricapilla,Passeriformes,Estrildidae (Waxbills and Allies),, +30190,slash,y01164,Tricolored/Chestnut Munia,Lonchura malacca/atricapilla,Passeriformes,Estrildidae (Waxbills and Allies),, +30191,species,whcmun1,White-capped Munia,Lonchura ferruginosa,Passeriformes,Estrildidae (Waxbills and Allies),, +30192,species,ficmun1,Five-colored Munia,Lonchura quinticolor,Passeriformes,Estrildidae (Waxbills and Allies),, +30193,species,whhmun1,White-headed Munia,Lonchura maja,Passeriformes,Estrildidae (Waxbills and Allies),, +30196,species,pahmun1,Pale-headed Munia,Lonchura pallida,Passeriformes,Estrildidae (Waxbills and Allies),, +30199,species,gramun1,Grand Munia,Lonchura grandis,Passeriformes,Estrildidae (Waxbills and Allies),, +30204,species,gybmun1,Gray-banded Munia,Lonchura vana,Passeriformes,Estrildidae (Waxbills and Allies),, +30205,species,gycmun1,Gray-crowned Munia,Lonchura nevermanni,Passeriformes,Estrildidae (Waxbills and Allies),, +30206,species,hoomun1,Hooded Munia,Lonchura spectabilis,Passeriformes,Estrildidae (Waxbills and Allies),, +30212,species,gyhmun1,Gray-headed Munia,Lonchura caniceps,Passeriformes,Estrildidae (Waxbills and Allies),, +30216,species,motmun1,Mottled Munia,Lonchura hunsteini,Passeriformes,Estrildidae (Waxbills and Allies),, +30217,species,neimun1,New Ireland Munia,Lonchura forbesi,Passeriformes,Estrildidae (Waxbills and Allies),, +30218,species,nehmun1,New Hanover Munia,Lonchura nigerrima,Passeriformes,Estrildidae (Waxbills and Allies),, +30219,species,yermun1,Yellow-rumped Munia,Lonchura flaviprymna,Passeriformes,Estrildidae (Waxbills and Allies),, +30220,species,chbmun1,Chestnut-breasted Munia,Lonchura castaneothorax,Passeriformes,Estrildidae (Waxbills and Allies),, +30226,hybrid,x00936,Yellow-rumped x Chestnut-breasted Munia (hybrid),Lonchura flaviprymna x castaneothorax,Passeriformes,Estrildidae (Waxbills and Allies),, +30227,species,blamun1,Black Munia,Lonchura stygia,Passeriformes,Estrildidae (Waxbills and Allies),, +30228,species,blbmun1,Black-breasted Munia,Lonchura teerinki,Passeriformes,Estrildidae (Waxbills and Allies),, +30231,species,snmmun1,Snow Mountain Munia,Lonchura montana,Passeriformes,Estrildidae (Waxbills and Allies),, +30232,species,alpmun1,Alpine Munia,Lonchura monticola,Passeriformes,Estrildidae (Waxbills and Allies),, +30233,species,bismun1,Bismarck Munia,Lonchura melaena,Passeriformes,Estrildidae (Waxbills and Allies),, +30236,species,javspa,Java Sparrow,Lonchura oryzivora,Passeriformes,Estrildidae (Waxbills and Allies),, +30237,species,timspa4,Timor Sparrow,Lonchura fuscata,Passeriformes,Estrildidae (Waxbills and Allies),, +30238,spuh,lonchu1,Lonchura sp.,Lonchura sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +30239,species,picmun1,Pictorella Munia,Heteromunia pectoralis,Passeriformes,Estrildidae (Waxbills and Allies),, +30240,spuh,estfin1,estrildid finch sp.,Estrildidae sp.,Passeriformes,Estrildidae (Waxbills and Allies),, +30241,species,pitwhy,Pin-tailed Whydah,Vidua macroura,Passeriformes,Viduidae (Indigobirds),Indigobirds, +30242,species,nopwhy1,Sahel Paradise-Whydah,Vidua orientalis,Passeriformes,Viduidae (Indigobirds),, +30245,species,ltpwhy1,Exclamatory Paradise-Whydah,Vidua interjecta,Passeriformes,Viduidae (Indigobirds),, +30246,species,topwhy1,Togo Paradise-Whydah,Vidua togoensis,Passeriformes,Viduidae (Indigobirds),, +30247,species,btpwhy1,Broad-tailed Paradise-Whydah,Vidua obtusa,Passeriformes,Viduidae (Indigobirds),, +30248,species,eapwhy1,Eastern Paradise-Whydah,Vidua paradisaea,Passeriformes,Viduidae (Indigobirds),, +30249,species,stbwhy1,Steel-blue Whydah,Vidua hypocherina,Passeriformes,Viduidae (Indigobirds),, +30250,species,sttwhy1,Straw-tailed Whydah,Vidua fischeri,Passeriformes,Viduidae (Indigobirds),, +30251,species,shtwhy1,Shaft-tailed Whydah,Vidua regia,Passeriformes,Viduidae (Indigobirds),, +30252,species,vilind,Village Indigobird,Vidua chalybeata,Passeriformes,Viduidae (Indigobirds),, +30259,species,pawind1,Wilson's Indigobird,Vidua wilsoni,Passeriformes,Viduidae (Indigobirds),, +30260,species,quaind1,Quailfinch Indigobird,Vidua nigeriae,Passeriformes,Viduidae (Indigobirds),, +30261,species,jopind1,Jos Plateau Indigobird,Vidua maryae,Passeriformes,Viduidae (Indigobirds),, +30262,species,jamind1,Jambandu Indigobird,Vidua raricola,Passeriformes,Viduidae (Indigobirds),, +30263,species,bakind1,Baka Indigobird,Vidua larvaticola,Passeriformes,Viduidae (Indigobirds),, +30264,species,camind1,Cameroon Indigobird,Vidua camerunensis,Passeriformes,Viduidae (Indigobirds),, +30265,species,varind1,Variable Indigobird,Vidua funerea,Passeriformes,Viduidae (Indigobirds),, +30268,species,purind1,Purple Indigobird,Vidua purpurascens,Passeriformes,Viduidae (Indigobirds),, +30269,species,greind1,Green Indigobird,Vidua codringtoni,Passeriformes,Viduidae (Indigobirds),, +30270,spuh,paradi4,paradise-whydah sp.,Vidua sp. (paradise-whydah sp.),Passeriformes,Viduidae (Indigobirds),, +30271,spuh,whydah1,whydah sp.,Vidua sp. (whydah sp.),Passeriformes,Viduidae (Indigobirds),, +30272,spuh,indigo1,indigobird sp.,Vidua sp. (indigobird sp.),Passeriformes,Viduidae (Indigobirds),, +30273,spuh,vidua1,Vidua sp.,Vidua sp.,Passeriformes,Viduidae (Indigobirds),, +30274,species,parwea1,Parasitic Weaver,Anomalospiza imberbis,Passeriformes,Viduidae (Indigobirds),, +30277,species,alpacc1,Alpine Accentor,Prunella collaris,Passeriformes,Prunellidae (Accentors),Accentors, +30287,species,himacc1,Altai Accentor,Prunella himalayana,Passeriformes,Prunellidae (Accentors),, +30288,species,robacc1,Robin Accentor,Prunella rubeculoides,Passeriformes,Prunellidae (Accentors),, +30291,species,rubacc1,Rufous-breasted Accentor,Prunella strophiata,Passeriformes,Prunellidae (Accentors),, +30294,species,sibacc,Siberian Accentor,Prunella montanella,Passeriformes,Prunellidae (Accentors),, +30297,species,radacc1,Radde's Accentor,Prunella ocularis,Passeriformes,Prunellidae (Accentors),, +30298,species,yemacc1,Yemen Accentor,Prunella fagani,Passeriformes,Prunellidae (Accentors),, +30299,species,broacc1,Brown Accentor,Prunella fulvescens,Passeriformes,Prunellidae (Accentors),, +30306,species,bltacc1,Black-throated Accentor,Prunella atrogularis,Passeriformes,Prunellidae (Accentors),, +30309,species,monacc1,Mongolian Accentor,Prunella koslowi,Passeriformes,Prunellidae (Accentors),, +30310,species,dunnoc1,Dunnock,Prunella modularis,Passeriformes,Prunellidae (Accentors),, +30319,species,japacc1,Japanese Accentor,Prunella rubida,Passeriformes,Prunellidae (Accentors),, +30322,species,mabacc1,Maroon-backed Accentor,Prunella immaculata,Passeriformes,Prunellidae (Accentors),, +30323,spuh,accent1,accentor sp.,Prunella sp.,Passeriformes,Prunellidae (Accentors),, +30324,species,cinwhe1,Cinnamon Ibon,Hypocryptadius cinnamomeus,Passeriformes,Passeridae (Old World Sparrows),Old World Sparrows, +30325,species,saxspa1,Saxaul Sparrow,Passer ammodendri,Passeriformes,Passeridae (Old World Sparrows),, +30329,species,houspa,House Sparrow,Passer domesticus,Passeriformes,Passeridae (Old World Sparrows),, +30342,species,itaspa1,Italian Sparrow,Passer italiae,Passeriformes,Passeridae (Old World Sparrows),, +30343,hybrid,x00873,House x Italian Sparrow (hybrid),Passer domesticus x italiae,Passeriformes,Passeridae (Old World Sparrows),, +30344,slash,y00692,House/Italian Sparrow,Passer domesticus/italiae,Passeriformes,Passeridae (Old World Sparrows),, +30345,species,spaspa1,Spanish Sparrow,Passer hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, +30348,hybrid,x00645,House x Spanish Sparrow (hybrid),Passer domesticus x hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, +30349,hybrid,x00974,Italian x Spanish Sparrow (hybrid),Passer italiae x hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, +30350,slash,y00829,House/Spanish Sparrow,Passer domesticus/hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, +30351,slash,y01017,Italian/Spanish Sparrow,Passer italiae/hispaniolensis,Passeriformes,Passeridae (Old World Sparrows),, +30352,species,sinspa1,Sind Sparrow,Passer pyrrhonotus,Passeriformes,Passeridae (Old World Sparrows),, +30353,species,somspa1,Somali Sparrow,Passer castanopterus,Passeriformes,Passeridae (Old World Sparrows),, +30356,hybrid,x00917,House x Somali Sparrow (hybrid),Passer domesticus x castanopterus,Passeriformes,Passeridae (Old World Sparrows),, +30357,species,russpa2,Russet Sparrow,Passer cinnamomeus,Passeriformes,Passeridae (Old World Sparrows),, +30361,species,plbspa1,Plain-backed Sparrow,Passer flaveolus,Passeriformes,Passeridae (Old World Sparrows),, +30362,species,desspa1,Dead Sea Sparrow,Passer moabiticus,Passeriformes,Passeridae (Old World Sparrows),, +30363,issf,desspa5,Dead Sea Sparrow (Dead Sea),Passer moabiticus moabiticus,Passeriformes,Passeridae (Old World Sparrows),,desspa1 +30364,issf,desspa6,Dead Sea Sparrow (Sistan Scrub),Passer moabiticus yatii,Passeriformes,Passeridae (Old World Sparrows),,desspa1 +30365,species,cavspa1,Cape Verde Sparrow,Passer iagoensis,Passeriformes,Passeridae (Old World Sparrows),, +30366,species,aakspa1,Abd al Kuri Sparrow,Passer hemileucus,Passeriformes,Passeridae (Old World Sparrows),, +30367,species,socspa1,Socotra Sparrow,Passer insularis,Passeriformes,Passeridae (Old World Sparrows),, +30368,species,grrspa1,Great Rufous Sparrow,Passer motitensis,Passeriformes,Passeridae (Old World Sparrows),, +30372,species,kerspa2,Kenya Rufous Sparrow,Passer rufocinctus,Passeriformes,Passeridae (Old World Sparrows),, +30373,species,shrspa1,Shelley's Rufous Sparrow,Passer shelleyi,Passeriformes,Passeridae (Old World Sparrows),, +30374,species,korspa1,Kordofan Rufous Sparrow,Passer cordofanicus,Passeriformes,Passeridae (Old World Sparrows),, +30375,species,capspa1,Cape Sparrow,Passer melanurus,Passeriformes,Passeridae (Old World Sparrows),, +30379,species,gyhspa1,Northern Gray-headed Sparrow,Passer griseus,Passeriformes,Passeridae (Old World Sparrows),, +30383,species,swaspa2,Swainson's Sparrow,Passer swainsonii,Passeriformes,Passeridae (Old World Sparrows),, +30384,species,pabspa1,Parrot-billed Sparrow,Passer gongonensis,Passeriformes,Passeridae (Old World Sparrows),, +30385,species,swaspa1,Swahili Sparrow,Passer suahelicus,Passeriformes,Passeridae (Old World Sparrows),, +30386,species,sghspa2,Southern Gray-headed Sparrow,Passer diffusus,Passeriformes,Passeridae (Old World Sparrows),, +30391,species,desspa3,Desert Sparrow,Passer simplex,Passeriformes,Passeridae (Old World Sparrows),, +30394,species,desspa4,Zarudny's Sparrow,Passer zarudnyi,Passeriformes,Passeridae (Old World Sparrows),, +30395,species,eutspa,Eurasian Tree Sparrow,Passer montanus,Passeriformes,Passeridae (Old World Sparrows),, +30405,hybrid,x00754,House x Eurasian Tree Sparrow (hybrid),Passer domesticus x montanus,Passeriformes,Passeridae (Old World Sparrows),, +30406,slash,y00764,House/Eurasian Tree Sparrow,Passer domesticus/montanus,Passeriformes,Passeridae (Old World Sparrows),, +30407,hybrid,x00874,Spanish x Eurasian Tree Sparrow (hybrid),Passer hispaniolensis x montanus,Passeriformes,Passeridae (Old World Sparrows),, +30408,species,sugspa1,Sudan Golden Sparrow,Passer luteus,Passeriformes,Passeridae (Old World Sparrows),, +30409,species,argspa2,Arabian Golden Sparrow,Passer euchlorus,Passeriformes,Passeridae (Old World Sparrows),, +30410,species,chespa1,Chestnut Sparrow,Passer eminibey,Passeriformes,Passeridae (Old World Sparrows),, +30411,spuh,passer2,Passer sp.,Passer sp.,Passeriformes,Passeridae (Old World Sparrows),, +30412,species,yespet1,Yellow-spotted Bush Sparrow,Gymnoris pyrgita,Passeriformes,Passeridae (Old World Sparrows),, +30415,species,chspet1,Yellow-throated Sparrow,Gymnoris xanthocollis,Passeriformes,Passeridae (Old World Sparrows),, +30418,species,yetpet1,Yellow-throated Bush Sparrow,Gymnoris superciliaris,Passeriformes,Passeridae (Old World Sparrows),, +30423,species,buspet1,Sahel Bush Sparrow,Gymnoris dentata,Passeriformes,Passeridae (Old World Sparrows),, +30424,species,rocpet1,Rock Sparrow,Petronia petronia,Passeriformes,Passeridae (Old World Sparrows),, +30432,species,palroc1,Pale Rockfinch,Carpospiza brachydactyla,Passeriformes,Passeridae (Old World Sparrows),, +30433,species,whwsno1,White-winged Snowfinch,Montifringilla nivalis,Passeriformes,Passeridae (Old World Sparrows),, +30441,species,tibsno2,Tibetan Snowfinch,Montifringilla henrici,Passeriformes,Passeridae (Old World Sparrows),, +30442,species,blwsno1,Black-winged Snowfinch,Montifringilla adamsi,Passeriformes,Passeridae (Old World Sparrows),, +30445,species,whrsno1,White-rumped Snowfinch,Montifringilla taczanowskii,Passeriformes,Passeridae (Old World Sparrows),, +30446,species,pedsno1,Pere David's Snowfinch,Montifringilla davidiana,Passeriformes,Passeridae (Old World Sparrows),, +30449,species,runsno1,Rufous-necked Snowfinch,Montifringilla ruficollis,Passeriformes,Passeridae (Old World Sparrows),, +30452,species,blasno1,Blanford's Snowfinch,Montifringilla blanfordi,Passeriformes,Passeridae (Old World Sparrows),, +30456,species,afgsno1,Afghan Snowfinch,Montifringilla theresae,Passeriformes,Passeridae (Old World Sparrows),, +30457,species,forwag1,Forest Wagtail,Dendronanthus indicus,Passeriformes,Motacillidae (Wagtails and Pipits),Wagtails and Pipits, +30458,species,capwag1,Cape Wagtail,Motacilla capensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30462,species,mouwag1,Mountain Wagtail,Motacilla clara,Passeriformes,Motacillidae (Wagtails and Pipits),, +30466,species,boclon2,Sao Tome Short-tail,Motacilla bocagii,Passeriformes,Motacillidae (Wagtails and Pipits),, +30467,species,madwag1,Madagascar Wagtail,Motacilla flaviventris,Passeriformes,Motacillidae (Wagtails and Pipits),, +30468,species,grywag,Gray Wagtail,Motacilla cinerea,Passeriformes,Motacillidae (Wagtails and Pipits),, +30472,species,eaywag1,Western Yellow Wagtail,Motacilla flava,Passeriformes,Motacillidae (Wagtails and Pipits),, +30473,form,weywag13,Western Yellow Wagtail (lutea/flavissima),Motacilla flava lutea/flavissima,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30474,issf,weywag14,Western Yellow Wagtail (flavissima),Motacilla flava flavissima,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30475,issf,weywag15,Western Yellow Wagtail (lutea),Motacilla flava lutea,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30476,issf,weywag2,Western Yellow Wagtail (thunbergi),Motacilla flava thunbergi,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30477,form,weywag3,Western Yellow Wagtail (flava/beema),Motacilla flava flava/beema,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30478,issf,weywag16,Western Yellow Wagtail (flava),Motacilla flava flava,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30479,issf,weywag17,Western Yellow Wagtail (beema),Motacilla flava beema,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30480,form,weywag4,Western Yellow Wagtail (iberiae/cinereocapilla/pygmaea),Motacilla flava [cinereocapilla Group],Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30481,issf,weywag18,Western Yellow Wagtail (iberiae),Motacilla flava iberiae,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30482,issf,weywag19,Western Yellow Wagtail (cinereocapilla),Motacilla flava cinereocapilla,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30483,issf,weywag20,Western Yellow Wagtail (pygmaea),Motacilla flava pygmaea,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30484,issf,weywag6,Western Yellow Wagtail (feldegg),Motacilla flava feldegg,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30485,issf,weywag7,Western Yellow Wagtail (leucocephala),Motacilla flava leucocephala,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30486,intergrade,weywag21,Western Yellow Wagtail (Channel Wagtail intergrade),Motacilla flava flava x flavissima,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30487,intergrade,weywag11,Western Yellow Wagtail (superciliaris-type intergrade),Motacilla flava (superciliaris intergrade),Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30488,intergrade,weywag10,Western Yellow Wagtail (dombrowskii-type intergrade),Motacilla flava (dombrowskii intergrade),Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30489,intergrade,weywag12,Western Yellow Wagtail (xanthophrys-type intergrade),Motacilla flava (xanthophrys intergrade),Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag1 +30490,species,eaywag,Eastern Yellow Wagtail,Motacilla tschutschensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30491,issf,eaywag2,Eastern Yellow Wagtail (Eastern),Motacilla tschutschensis tschutschensis/plexa,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag +30494,issf,weywag8,Eastern Yellow Wagtail (Green-headed),Motacilla tschutschensis taivana,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag +30495,issf,weywag9,Eastern Yellow Wagtail (Manchurian),Motacilla tschutschensis macronyx,Passeriformes,Motacillidae (Wagtails and Pipits),,eaywag +30496,slash,y00597,Western/Eastern Yellow Wagtail,Motacilla flava/tschutschensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30497,species,citwag,Citrine Wagtail,Motacilla citreola,Passeriformes,Motacillidae (Wagtails and Pipits),, +30498,issf,citwag1,Citrine Wagtail (Gray-backed),Motacilla citreola citreola/werae,Passeriformes,Motacillidae (Wagtails and Pipits),,citwag +30501,issf,citwag2,Citrine Wagtail (Black-backed),Motacilla citreola calcarata,Passeriformes,Motacillidae (Wagtails and Pipits),,citwag +30502,hybrid,x00934,Western Yellow x Citrine Wagtail (hybrid),Motacilla flava x citreola,Passeriformes,Motacillidae (Wagtails and Pipits),, +30503,species,whbwag1,White-browed Wagtail,Motacilla maderaspatensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30504,species,mekwag1,Mekong Wagtail,Motacilla samveasnae,Passeriformes,Motacillidae (Wagtails and Pipits),, +30505,species,japwag1,Japanese Wagtail,Motacilla grandis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30506,species,afpwag1,African Pied Wagtail,Motacilla aguimp,Passeriformes,Motacillidae (Wagtails and Pipits),, +30509,species,whiwag,White Wagtail,Motacilla alba,Passeriformes,Motacillidae (Wagtails and Pipits),, +30510,issf,whiwag1,White Wagtail (White-faced),Motacilla alba alba/dukhunensis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30513,issf,whiwag3,White Wagtail (British),Motacilla alba yarrellii,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30514,issf,whiwag2,White Wagtail (ocularis),Motacilla alba ocularis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30515,issf,whiwag4,White Wagtail (Moroccan),Motacilla alba subpersonata,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30516,issf,whiwag5,White Wagtail (Masked),Motacilla alba personata,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30517,issf,whiwag7,White Wagtail (Transbaikalian),Motacilla alba baicalensis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30518,issf,bkbwag,White Wagtail (Black-backed),Motacilla alba lugens,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30519,issf,whiwag8,White Wagtail (Chinese),Motacilla alba leucopsis,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30520,issf,whiwag6,White Wagtail (Hodgson's),Motacilla alba alboides,Passeriformes,Motacillidae (Wagtails and Pipits),,whiwag +30521,slash,y00917,White-browed/White Wagtail,Motacilla maderaspatensis/alba,Passeriformes,Motacillidae (Wagtails and Pipits),, +30522,spuh,wagtai1,wagtail sp.,Motacilla sp.,Passeriformes,Motacillidae (Wagtails and Pipits),, +30523,species,rtweye1,Madanga,Madanga ruficollis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30524,species,auspip1,Australasian Pipit,Anthus novaeseelandiae,Passeriformes,Motacillidae (Wagtails and Pipits),, +30525,issf,auspip2,Australasian Pipit (Australian),Anthus novaeseelandiae [australis Group],Passeriformes,Motacillidae (Wagtails and Pipits),,auspip1 +30531,issf,auspip3,Australasian Pipit (New Zealand),Anthus novaeseelandiae [novaeseelandiae Group],Passeriformes,Motacillidae (Wagtails and Pipits),,auspip1 +30536,species,ricpip1,Richard's Pipit,Anthus richardi,Passeriformes,Motacillidae (Wagtails and Pipits),, +30542,species,oripip1,Paddyfield Pipit,Anthus rufulus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30549,slash,y00918,Richard's/Paddyfield Pipit,Anthus richardi/rufulus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30550,species,afrpip1,African Pipit,Anthus cinnamomeus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30551,issf,afrpip2,African Pipit (Cameroon),Anthus cinnamomeus camaroonensis,Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 +30552,issf,afrpip3,African Pipit (Yemen),Anthus cinnamomeus eximius,Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 +30553,issf,afrpip4,African Pipit (African),Anthus cinnamomeus [cinnamomeus Group],Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 +30564,issf,jacpip1,African Pipit (Jackson's),Anthus cinnamomeus latistriatus,Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 +30565,issf,afrpip5,African Pipit (Etosha),Anthus cinnamomeus grotei,Passeriformes,Motacillidae (Wagtails and Pipits),,afrpip1 +30566,species,moupip1,Mountain Pipit,Anthus hoeschi,Passeriformes,Motacillidae (Wagtails and Pipits),, +30567,species,woopip1,Woodland Pipit,Anthus nyassae,Passeriformes,Motacillidae (Wagtails and Pipits),, +30572,species,lobpip1,Long-billed Pipit,Anthus similis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30573,issf,lobpip3,Long-billed Pipit (West African),Anthus similis bannermani,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30574,issf,lobpip4,Long-billed Pipit (Middle Eastern),Anthus similis captus,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30575,issf,lobpip5,Long-billed Pipit (Arabian),Anthus similis arabicus,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30576,issf,lobpip6,Long-billed Pipit (Socotra),Anthus similis sokotrae,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30577,issf,lobpip2,Long-billed Pipit (Nairobi),Anthus similis chyuluensis,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30578,issf,lobpip7,Long-billed Pipit (Nicholson's),Anthus similis [nicholsoni Group],Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30589,issf,lobpip8,Long-billed Pipit (Persian),Anthus similis jerdoni/decaptus,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30592,issf,lobpip9,Long-billed Pipit (Indian),Anthus similis similis/travancoriensis,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30595,issf,lobpip10,Long-billed Pipit (Burmese),Anthus similis yamethini,Passeriformes,Motacillidae (Wagtails and Pipits),,lobpip1 +30596,species,blypip1,Blyth's Pipit,Anthus godlewskii,Passeriformes,Motacillidae (Wagtails and Pipits),, +30597,slash,y01013,Richard's/Blyth's Pipit,Anthus richardi/godlewskii,Passeriformes,Motacillidae (Wagtails and Pipits),, +30598,species,tawpip1,Tawny Pipit,Anthus campestris,Passeriformes,Motacillidae (Wagtails and Pipits),, +30602,species,plbpip1,Plain-backed Pipit,Anthus leucophrys,Passeriformes,Motacillidae (Wagtails and Pipits),, +30610,species,bufpip1,Buffy Pipit,Anthus vaalensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30619,species,lolpip1,Long-legged Pipit,Anthus pallidiventris,Passeriformes,Motacillidae (Wagtails and Pipits),, +30622,species,nilpip1,Nilgiri Pipit,Anthus nilghiriensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30623,species,uplpip1,Upland Pipit,Anthus sylvanus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30624,species,berpip1,Berthelot's Pipit,Anthus berthelotii,Passeriformes,Motacillidae (Wagtails and Pipits),, +30627,species,malpip1,Malindi Pipit,Anthus melindae,Passeriformes,Motacillidae (Wagtails and Pipits),, +30630,species,strpip1,Striped Pipit,Anthus lineiventris,Passeriformes,Motacillidae (Wagtails and Pipits),, +30633,species,yetpip1,Yellow-tufted Pipit,Anthus crenatus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30634,species,alppip1,Alpine Pipit,Anthus gutturalis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30638,species,meapip1,Meadow Pipit,Anthus pratensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30641,species,rospip1,Rosy Pipit,Anthus roseatus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30642,species,trepip,Tree Pipit,Anthus trivialis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30645,slash,y00672,Meadow/Tree Pipit,Anthus pratensis/trivialis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30646,species,olbpip,Olive-backed Pipit,Anthus hodgsoni,Passeriformes,Motacillidae (Wagtails and Pipits),, +30649,slash,y00758,Tree/Olive-backed Pipit,Anthus trivialis/hodgsoni,Passeriformes,Motacillidae (Wagtails and Pipits),, +30650,species,pecpip,Pechora Pipit,Anthus gustavi,Passeriformes,Motacillidae (Wagtails and Pipits),, +30651,issf,pecpip1,Pechora Pipit (Pechora),Anthus gustavi gustavi/stejnegeri,Passeriformes,Motacillidae (Wagtails and Pipits),,pecpip +30654,issf,pecpip2,Pechora Pipit (Menzbier's),Anthus gustavi menzbieri,Passeriformes,Motacillidae (Wagtails and Pipits),,pecpip +30655,species,retpip,Red-throated Pipit,Anthus cervinus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30656,species,watpip1,Water Pipit,Anthus spinoletta,Passeriformes,Motacillidae (Wagtails and Pipits),, +30657,issf,watpip2,Water Pipit (Western),Anthus spinoletta spinoletta,Passeriformes,Motacillidae (Wagtails and Pipits),,watpip1 +30658,issf,watpip3,Water Pipit (Caucasian),Anthus spinoletta coutellii,Passeriformes,Motacillidae (Wagtails and Pipits),,watpip1 +30659,issf,watpip4,Water Pipit (Blakiston's),Anthus spinoletta blakistoni,Passeriformes,Motacillidae (Wagtails and Pipits),,watpip1 +30660,slash,y00671,Meadow/Water Pipit,Anthus pratensis/spinoletta,Passeriformes,Motacillidae (Wagtails and Pipits),, +30661,species,rocpip1,Rock Pipit,Anthus petrosus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30662,issf,rocpip3,Rock Pipit (Western),Anthus petrosus petrosus/kleinschmidti,Passeriformes,Motacillidae (Wagtails and Pipits),,rocpip1 +30665,issf,rocpip2,Rock Pipit (Eastern),Anthus petrosus littoralis,Passeriformes,Motacillidae (Wagtails and Pipits),,rocpip1 +30666,slash,y00759,Water/Rock Pipit,Anthus spinoletta/petrosus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30667,species,amepip,American Pipit,Anthus rubescens,Passeriformes,Motacillidae (Wagtails and Pipits),, +30668,issf,sibpip1,American Pipit (japonicus),Anthus rubescens japonicus,Passeriformes,Motacillidae (Wagtails and Pipits),,amepip +30669,issf,amepip2,American Pipit (rubescens Group),Anthus rubescens [rubescens Group],Passeriformes,Motacillidae (Wagtails and Pipits),,amepip +30673,slash,y00760,Water/American Pipit,Anthus spinoletta/rubescens,Passeriformes,Motacillidae (Wagtails and Pipits),, +30674,species,sprpip,Sprague's Pipit,Anthus spragueii,Passeriformes,Motacillidae (Wagtails and Pipits),, +30675,species,yelpip2,Yellowish Pipit,Anthus lutescens,Passeriformes,Motacillidae (Wagtails and Pipits),, +30678,species,yelpip3,Peruvian Pipit,Anthus peruvianus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30679,species,shbpip1,Short-billed Pipit,Anthus furcatus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30680,issf,shbpip3,Short-billed Pipit (Puna),Anthus furcatus brevirostris,Passeriformes,Motacillidae (Wagtails and Pipits),,shbpip1 +30681,issf,shbpip2,Short-billed Pipit (Fork-tailed),Anthus furcatus furcatus,Passeriformes,Motacillidae (Wagtails and Pipits),,shbpip1 +30682,species,chapip1,Pampas Pipit,Anthus chacoensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30683,species,corpip1,Correndera Pipit,Anthus correndera,Passeriformes,Motacillidae (Wagtails and Pipits),, +30684,issf,corpip2,Correndera Pipit (Correndera),Anthus correndera [correndera Group],Passeriformes,Motacillidae (Wagtails and Pipits),,corpip1 +30689,issf,corpip3,Correndera Pipit (Falklands),Anthus correndera grayi,Passeriformes,Motacillidae (Wagtails and Pipits),,corpip1 +30690,species,sogpip1,South Georgia Pipit,Anthus antarcticus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30691,species,ocbpip1,Ochre-breasted Pipit,Anthus nattereri,Passeriformes,Motacillidae (Wagtails and Pipits),, +30692,species,helpip1,Hellmayr's Pipit,Anthus hellmayri,Passeriformes,Motacillidae (Wagtails and Pipits),, +30696,species,parpip1,Paramo Pipit,Anthus bogotensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30697,issf,parpip2,Paramo Pipit (meridae),Anthus bogotensis meridae,Passeriformes,Motacillidae (Wagtails and Pipits),,parpip1 +30698,issf,parpip3,Paramo Pipit (bogotensis Group),Anthus bogotensis [bogotensis Group],Passeriformes,Motacillidae (Wagtails and Pipits),,parpip1 +30702,species,shtpip1,Short-tailed Pipit,Anthus brachyurus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30705,species,buspip1,Bush Pipit,Anthus caffer,Passeriformes,Motacillidae (Wagtails and Pipits),, +30711,species,sokpip1,Sokoke Pipit,Anthus sokokensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30712,spuh,pipit1,pipit sp.,Anthus sp.,Passeriformes,Motacillidae (Wagtails and Pipits),, +30713,species,golpip1,Golden Pipit,Tmetothylacus tenellus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30714,species,yebpip2,Yellow-breasted Pipit,Hemimacronyx chloris,Passeriformes,Motacillidae (Wagtails and Pipits),, +30715,species,shalon1,Sharpe's Longclaw,Hemimacronyx sharpei,Passeriformes,Motacillidae (Wagtails and Pipits),, +30716,species,ortlon1,Orange-throated Longclaw,Macronyx capensis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30720,species,yetlon1,Yellow-throated Longclaw,Macronyx croceus,Passeriformes,Motacillidae (Wagtails and Pipits),, +30721,species,fuelon2,Fülleborn's Longclaw,Macronyx fuelleborni,Passeriformes,Motacillidae (Wagtails and Pipits),, +30724,species,abylon1,Abyssinian Longclaw,Macronyx flavicollis,Passeriformes,Motacillidae (Wagtails and Pipits),, +30725,species,panlon1,Pangani Longclaw,Macronyx aurantiigula,Passeriformes,Motacillidae (Wagtails and Pipits),, +30726,species,rotlon1,Rosy-throated Longclaw,Macronyx ameliae,Passeriformes,Motacillidae (Wagtails and Pipits),, +30730,species,grilon1,Grimwood's Longclaw,Macronyx grimwoodi,Passeriformes,Motacillidae (Wagtails and Pipits),, +30731,spuh,longcl1,longclaw sp.,Macronyx sp.,Passeriformes,Motacillidae (Wagtails and Pipits),, +30732,species,comcha,Common Chaffinch,Fringilla coelebs,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)","Finches, Euphonias, and Allies", +30733,issf,comcha3,Common Chaffinch (Common),Fringilla coelebs [coelebs Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha +30743,issf,comcha5,Common Chaffinch (Azores/Madeira),Fringilla coelebs moreletti/maderensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha +30746,issf,comcha4,Common Chaffinch (Canary Is.),Fringilla coelebs canariensis/ombriosa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha +30749,issf,comcha6,Common Chaffinch (La Palma),Fringilla coelebs palmae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha +30750,issf,comcha1,Common Chaffinch (African),Fringilla coelebs africana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha +30751,issf,comcha2,Common Chaffinch (Tunisian),Fringilla coelebs spodiogenys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comcha +30752,species,blucha2,Tenerife Blue Chaffinch,Fringilla teydea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30753,species,blucha3,Gran Canaria Blue Chaffinch,Fringilla polatzeki,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30754,species,brambl,Brambling,Fringilla montifringilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30755,slash,y01056,Common Chaffinch/Brambling,Fringilla coelebs/montifringilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30756,species,blnchl1,Blue-naped Chlorophonia,Chlorophonia cyanea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30764,species,chbchl1,Chestnut-breasted Chlorophonia,Chlorophonia pyrrhophrys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30765,species,yecchl1,Yellow-collared Chlorophonia,Chlorophonia flavirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30766,species,blcchl1,Blue-crowned Chlorophonia,Chlorophonia occipitalis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30767,species,gobchl1,Golden-browed Chlorophonia,Chlorophonia callophrys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30768,species,jameup1,Jamaican Euphonia,Euphonia jamaica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30769,species,plueup1,Plumbeous Euphonia,Euphonia plumbea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30770,species,screup1,Scrub Euphonia,Euphonia affinis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30771,issf,screup2,Scrub Euphonia (Scrub),Euphonia affinis affinis/olmecorum,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,screup1 +30774,issf,screup3,Scrub Euphonia (Godman's),Euphonia affinis godmani,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,screup1 +30775,species,puteup1,Purple-throated Euphonia,Euphonia chlorotica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30781,species,yeceup1,Yellow-crowned Euphonia,Euphonia luteicapilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30782,species,trieup1,Trinidad Euphonia,Euphonia trinitatis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30783,species,vefeup1,Velvet-fronted Euphonia,Euphonia concinna,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30784,species,orceup1,Orange-crowned Euphonia,Euphonia saturata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30785,species,fineup1,Finsch's Euphonia,Euphonia finschi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30786,species,vioeup1,Violaceous Euphonia,Euphonia violacea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30790,species,thbeup1,Thick-billed Euphonia,Euphonia laniirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30791,issf,thbeup2,Thick-billed Euphonia (Black-tailed),Euphonia laniirostris melanura/crassirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,thbeup1 +30794,issf,thbeup3,Thick-billed Euphonia (Thick-billed),Euphonia laniirostris [laniirostris Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,thbeup1 +30798,species,yeteup1,Yellow-throated Euphonia,Euphonia hirundinacea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30801,species,gnteup1,Green-throated Euphonia,Euphonia chalybea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30802,species,anteup1,Antillean Euphonia,Euphonia musica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30803,issf,anteup2,Antillean Euphonia (Hispaniolan),Euphonia musica musica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,anteup1 +30804,issf,anteup3,Antillean Euphonia (Puerto Rican),Euphonia musica sclateri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,anteup1 +30805,issf,anteup4,Antillean Euphonia (Lesser),Euphonia musica flavifrons,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,anteup1 +30806,species,eleeup1,Elegant Euphonia,Euphonia elegantissima,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30810,species,goreup1,Golden-rumped Euphonia,Euphonia cyanocephala,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30814,species,fuveup1,Fulvous-vented Euphonia,Euphonia fulvicrissa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30818,species,gobeup1,Golden-bellied Euphonia,Euphonia chrysopasta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30821,species,brgeup1,Bronze-green Euphonia,Euphonia mesochrysa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30825,species,spceup1,Spot-crowned Euphonia,Euphonia imitans,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30826,species,olbeup1,Olive-backed Euphonia,Euphonia gouldi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30829,species,whveup1,White-vented Euphonia,Euphonia minuta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30832,species,taceup1,Tawny-capped Euphonia,Euphonia anneae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30835,species,orbeup1,Orange-bellied Euphonia,Euphonia xanthogaster,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30847,species,rubeup1,Rufous-bellied Euphonia,Euphonia rufiventris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30848,species,goseup1,Golden-sided Euphonia,Euphonia cayennensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30849,species,chbeup1,Chestnut-bellied Euphonia,Euphonia pectoralis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30850,spuh,euphon1,euphonia sp.,Euphonia sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30851,species,baygro1,Black-and-yellow Grosbeak,Mycerobas icterioides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30852,species,colgro1,Collared Grosbeak,Mycerobas affinis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30853,slash,y01064,Black-and-yellow/Collared Grosbeak,Mycerobas icterioides/affinis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30854,species,spwgro1,Spot-winged Grosbeak,Mycerobas melanozanthos,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30855,species,whwgro1,White-winged Grosbeak,Mycerobas carnipes,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30858,spuh,mycero1,Mycerobas sp.,Mycerobas sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30859,species,hoogro1,Hooded Grosbeak,Coccothraustes abeillei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30864,species,evegro,Evening Grosbeak,Coccothraustes vespertinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30868,form,evegro1,Evening Grosbeak (type 1),Coccothraustes vespertinus (type 1),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro +30869,form,evegro2,Evening Grosbeak (type 2),Coccothraustes vespertinus (type 2),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro +30870,form,evegro3,Evening Grosbeak (type 3),Coccothraustes vespertinus (type 3),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro +30871,form,evegro4,Evening Grosbeak (type 4),Coccothraustes vespertinus (type 4),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro +30872,form,evegro5,Evening Grosbeak (Mexican or type 5),Coccothraustes vespertinus (type 5),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,evegro +30873,species,hawfin,Hawfinch,Coccothraustes coccothraustes,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30879,species,yebgro1,Yellow-billed Grosbeak,Eophona migratoria,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30882,species,japgro1,Japanese Grosbeak,Eophona personata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30885,species,poouli,Poo-uli,Melamprosops phaeosoma,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30886,species,akikik,Akikiki,Oreomystis bairdi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30887,species,oahala,Oahu Alauahio,Paroreomyza maculata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30888,species,kakawa,Kakawahie,Paroreomyza flammea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30889,species,mauala,Maui Alauahio,Paroreomyza montana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30890,species,palila,Palila,Loxioides bailleui,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30891,species,layfin,Laysan Finch,Telespiza cantans,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30892,species,nihfin,Nihoa Finch,Telespiza ultima,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30893,species,kongro,Kona Grosbeak,Chloridops kona,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30894,species,lekfin,Lesser Koa-Finch,Rhodacanthis flaviceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30895,species,grkfin,Greater Koa-Finch,Rhodacanthis palmeri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30896,species,ulahaw,Ula-ai-hawane,Ciridops anna,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30897,species,crehon,Akohekohe,Palmeria dolei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30898,species,apapan2,Laysan Honeycreeper,Himatione fraithii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30899,species,apapan,Apapane,Himatione sanguinea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30900,species,iiwi,Iiwi,Drepanis coccinea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30901,hybrid,x00828,Apapane x Iiwi (hybrid),Himatione sanguinea x Drepanis coccinea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30902,species,hawmam1,Hawaii Mamo,Drepanis pacifica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30903,species,blkmam,Black Mamo,Drepanis funerea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30904,species,ou,Ou,Psittirostra psittacea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30905,species,lanhoo,Lanai Hookbill,Dysmorodrepanis munroi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30906,species,maupar,Maui Parrotbill,Pseudonestor xanthophrys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30907,species,nukupu2,Kauai Nukupuu,Hemignathus hanapepe,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30908,species,nukupu3,Oahu Nukupuu,Hemignathus lucidus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30909,species,nukupu1,Maui Nukupuu,Hemignathus affinis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30910,species,akiapo,Akiapolaau,Hemignathus wilsoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30911,species,lesaki,Lesser Akialoa,Akialoa obscura,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30912,species,greaki2,Oahu Akialoa,Akialoa ellisiana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30913,species,greaki4,Kauai Akialoa,Akialoa stejnegeri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30914,species,greaki3,Maui-nui Akialoa,Akialoa lanaiensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30915,species,aniani,Anianiau,Magumma parva,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30916,species,hawama,Hawaii Amakihi,Chlorodrepanis virens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30917,issf,hawama1,Hawaii Amakihi (Maui),Chlorodrepanis virens wilsoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hawama +30918,issf,hawama2,Hawaii Amakihi (Hawaii),Chlorodrepanis virens virens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hawama +30919,species,oahama,Oahu Amakihi,Chlorodrepanis flava,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30920,species,kauama,Kauai Amakihi,Chlorodrepanis stejnegeri,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30921,species,greama,Greater Amakihi,Viridonia sagittirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30922,species,hawcre,Hawaii Creeper,Loxops mana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30923,species,akekee,Akekee,Loxops caeruleirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30924,species,akepa1,Hawaii Akepa,Loxops coccineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30925,species,akepa2,Oahu Akepa,Loxops wolstenholmei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30926,species,akepa3,Maui Akepa,Loxops ochraceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30927,spuh,hawhon1,hawaiian honeycreeper sp.,Drepanidinae sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30928,species,comros,Common Rosefinch,Carpodacus erythrinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30934,species,scafin1,Scarlet Finch,Carpodacus sipahi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30935,species,bongro1,Bonin Grosbeak,Carpodacus ferreorostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30936,species,remros1,Red-mantled Rosefinch,Carpodacus rhodochlamys,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30939,species,blyros1,Blyth's Rosefinch,Carpodacus grandis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30940,species,bearos1,Himalayan Beautiful Rosefinch,Carpodacus pulcherrimus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30943,species,chbros1,Chinese Beautiful Rosefinch,Carpodacus davidianus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30944,species,pirros1,Pink-rumped Rosefinch,Carpodacus waltoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30947,species,darros1,Dark-rumped Rosefinch,Carpodacus edwardsii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30950,species,pibros2,Pink-browed Rosefinch,Carpodacus rodochroa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30951,species,spwros2,Spot-winged Rosefinch,Carpodacus rodopeplus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30952,slash,y01075,Dark-rumped/Spot-winged Rosefinch,Carpodacus edwardsii/rodopeplus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30953,species,spwros3,Sharpe's Rosefinch,Carpodacus verreauxii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30954,species,vinros2,Vinaceous Rosefinch,Carpodacus vinaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30955,species,vinros3,Taiwan Rosefinch,Carpodacus formosanus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30956,species,sinros1,Sinai Rosefinch,Carpodacus synoicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30957,species,palros3,Pale Rosefinch,Carpodacus stoliczkae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30961,species,tibros1,Tibetan Rosefinch,Carpodacus roborowskii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30962,species,tahmof1,Sillem's Rosefinch,Carpodacus sillemi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30963,species,strros1,Streaked Rosefinch,Carpodacus rubicilloides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30966,species,greros1,Great Rosefinch,Carpodacus rubicilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30967,issf,greros3,Great Rosefinch (Great),Carpodacus rubicilla rubicilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,greros1 +30968,issf,greros4,Great Rosefinch (Spotted),Carpodacus rubicilla [severtzovi Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,greros1 +30972,slash,y01016,Streaked/Great Rosefinch,Carpodacus rubicilloides/rubicilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30973,species,lotros1,Long-tailed Rosefinch,Carpodacus sibiricus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30979,species,refros1,Red-fronted Rosefinch,Carpodacus puniceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30985,species,crbfin3,Crimson-browed Finch,Carpodacus subhimachalus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30986,species,palros2,Pallas's Rosefinch,Carpodacus roseus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30989,species,thbros1,Three-banded Rosefinch,Carpodacus trifasciatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30990,species,whbros1,Himalayan White-browed Rosefinch,Carpodacus thura,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30993,slash,y01108,Pink-browed/Himalayan White-browed Rosefinch,Carpodacus rodochroa/thura,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30994,species,cwbros1,Chinese White-browed Rosefinch,Carpodacus dubius,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30998,spuh,carpod,rosefinch sp.,Carpodacus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +30999,species,pingro,Pine Grosbeak,Pinicola enucleator,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31000,issf,pingro2,Pine Grosbeak (Eurasian),Pinicola enucleator [enucleator Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pingro +31005,issf,pingro3,Pine Grosbeak (Pacific Northwest),Pinicola enucleator flammula,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pingro +31006,issf,pingro4,Pine Grosbeak (Queen Charlotte),Pinicola enucleator carlottae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pingro +31007,issf,pingro5,Pine Grosbeak (Rocky Mts.),Pinicola enucleator montana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pingro +31008,issf,pingro1,Pine Grosbeak (California),Pinicola enucleator californica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pingro +31009,issf,pingro6,Pine Grosbeak (Taiga),Pinicola enucleator leucura,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pingro +31010,species,brobul1,Brown Bullfinch,Pyrrhula nipalensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31011,issf,brnbul1,Brown Bullfinch (Brown),Pyrrhula nipalensis [nipalensis Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,brobul1 +31016,issf,brnbul2,Brown Bullfinch (Malay),Pyrrhula nipalensis waterstradti,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,brobul1 +31017,species,whcbul1,White-cheeked Bullfinch,Pyrrhula leucogenis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31020,species,orabul1,Orange Bullfinch,Pyrrhula aurantiaca,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31021,species,rehbul1,Red-headed Bullfinch,Pyrrhula erythrocephala,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31022,species,gyhbul2,Gray-headed Bullfinch,Pyrrhula erythaca,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31026,slash,y00761,Brown/Gray-headed Bullfinch,Pyrrhula nipalensis/erythaca,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31027,species,eurbul1,Azores Bullfinch,Pyrrhula murina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31028,species,eurbul,Eurasian Bullfinch,Pyrrhula pyrrhula,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31029,issf,eurbul2,Eurasian Bullfinch (Eurasian),Pyrrhula pyrrhula [pyrrhula Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurbul +31036,issf,eurbul3,Eurasian Bullfinch (Baikal),Pyrrhula pyrrhula [griseiventris Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurbul +31040,species,crwfin2,Crimson-winged Finch,Rhodopechys sanguineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31041,issf,crwfin1,Crimson-winged Finch (African),Rhodopechys sanguineus alienus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,crwfin2 +31042,issf,crwfin3,Crimson-winged Finch (Eurasian),Rhodopechys sanguineus sanguineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,crwfin2 +31043,species,trufin2,Trumpeter Finch,Bucanetes githagineus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31048,species,monfin2,Mongolian Finch,Bucanetes mongolicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31049,species,blaros1,Blanford's Rosefinch,Agraphospiza rubescens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31050,species,gonfin1,Gold-naped Finch,Pyrrhoplectes epauletta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31051,species,spefin1,Spectacled Finch,Callacanthis burtoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31052,species,dabros1,Dark-breasted Rosefinch,Procarduelis nipalensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31056,species,plmfin1,Plain Mountain-Finch,Leucosticte nemoricola,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31059,species,bhmfin1,Black-headed Mountain-Finch,Leucosticte brandti,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31065,species,asrfin1,Asian Rosy-Finch,Leucosticte arctoa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31071,species,gcrfin,Gray-crowned Rosy-Finch,Leucosticte tephrocotis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31072,issf,gycrof2,Gray-crowned Rosy-Finch (Pribilof Is.),Leucosticte tephrocotis umbrina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin +31073,issf,gycrof3,Gray-crowned Rosy-Finch (Aleutian and Kodiak Is.),Leucosticte tephrocotis griseonucha,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin +31074,issf,gycrof1,Gray-crowned Rosy-Finch (Hepburn's),Leucosticte tephrocotis littoralis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin +31075,issf,gycrof4,Gray-crowned Rosy-Finch (Gray-crowned),Leucosticte tephrocotis [tephrocotis Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin +31080,intergrade,gycrof5,Gray-crowned Rosy-Finch (Hepburn's x Gray-crowned),Leucosticte tephrocotis littoralis x tephrocotis Group,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,gcrfin +31081,species,bkrfin,Black Rosy-Finch,Leucosticte atrata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31082,species,bcrfin,Brown-capped Rosy-Finch,Leucosticte australis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31083,spuh,rosfin,rosy-finch sp.,Leucosticte sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31084,species,houfin,House Finch,Haemorhous mexicanus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31085,issf,houfin1,House Finch (Common),Haemorhous mexicanus [mexicanus Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,houfin +31097,issf,houfin2,House Finch (McGregor's),Haemorhous mexicanus mcgregori,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,houfin +31098,species,purfin,Purple Finch,Haemorhous purpureus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31099,issf,purfin1,Purple Finch (Eastern),Haemorhous purpureus purpureus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,purfin +31100,issf,purfin2,Purple Finch (Western),Haemorhous purpureus californicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,purfin +31101,slash,y00338,House/Purple Finch,Haemorhous mexicanus/purpureus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31102,species,casfin,Cassin's Finch,Haemorhous cassinii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31103,slash,y00762,Purple/Cassin's Finch,Haemorhous purpureus/cassinii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31104,spuh,haemor1,Haemorhous sp.,Haemorhous sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31105,species,desfin2,Desert Finch,Rhodospiza obsoleta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31106,species,gowgro2,Arabian Grosbeak,Rhynchostruthus percivali,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31107,species,gowgro3,Socotra Grosbeak,Rhynchostruthus socotranus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31108,species,somgro1,Somali Grosbeak,Rhynchostruthus louisae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31109,species,eurgre1,European Greenfinch,Chloris chloris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31116,species,origre,Oriental Greenfinch,Chloris sinica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31123,species,yebgre4,Yellow-breasted Greenfinch,Chloris spinoides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31126,species,viegre2,Vietnamese Greenfinch,Chloris monguilloti,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31127,species,bkhgre1,Black-headed Greenfinch,Chloris ambigua,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31130,species,orifin1,Oriole Finch,Linurgus olivaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31135,species,whrsee,White-rumped Seedeater,Crithagra leucopygia,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31138,species,yefcan,Yellow-fronted Canary,Crithagra mozambica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31149,species,afrcit1,African Citril,Crithagra citrinelloides,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31152,species,wescit1,Western Citril,Crithagra frontalis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31153,species,soucit1,Southern Citril,Crithagra hyposticta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31156,species,blfcan1,Black-faced Canary,Crithagra capistrata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31159,species,papcan1,Papyrus Canary,Crithagra koliensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31160,species,forcan1,Forest Canary,Crithagra scotops,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31164,species,olrser1,Olive-rumped Serin,Crithagra rothschildi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31165,species,bltcan1,Black-throated Canary,Crithagra atrogularis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31173,species,reisee2,Reichenow's Seedeater,Crithagra reichenowi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31174,species,yerser1,Yellow-rumped Serin,Crithagra xanthopygia,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31175,species,lebsee1,Lemon-breasted Seedeater,Crithagra citrinipectus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31176,species,whbcan1,White-bellied Canary,Crithagra dorsostriata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31180,species,yetser1,Yellow-throated Serin,Crithagra flavigula,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31181,species,salser1,Salvadori's Serin,Crithagra xantholaema,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31182,species,norgrc1,Northern Grosbeak-Canary,Crithagra donaldsoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31183,species,sougrc1,Southern Grosbeak-Canary,Crithagra buchanani,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31184,species,brican1,Brimstone Canary,Crithagra sulphurata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31188,species,yelcan1,Yellow Canary,Crithagra flaviventris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31193,species,whtcan1,White-throated Canary,Crithagra albogularis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31198,species,strsee1,Streaky Seedeater,Crithagra striolata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31201,species,yebsee2,Yellow-browed Seedeater,Crithagra whytii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31202,species,thbsee1,Thick-billed Seedeater,Crithagra burtoni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31207,species,tansee1,Tanzania Seedeater,Crithagra melanochroa,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31208,species,prisee1,Principe Seedeater,Crithagra rufobrunnea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31212,species,satgro1,Sao Tome Grosbeak,Crithagra concolor,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31213,species,procan1,Protea Canary,Crithagra leucoptera,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31214,species,blesee1,Black-eared Seedeater,Crithagra mennelli,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31215,species,sthsee3,West African Seedeater,Crithagra canicapilla,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31219,species,sthsee2,Streaky-headed Seedeater,Crithagra gularis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31225,species,reisee1,Reichard's Seedeater,Crithagra reichardi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31226,issf,reisee3,Reichard's Seedeater (Stripe-breasted),Crithagra reichardi striatipectus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,reisee1 +31227,issf,reisee4,Reichard's Seedeater (Reichard's),Crithagra reichardi reichardi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,reisee1 +31228,species,brrsee1,Brown-rumped Seedeater,Crithagra tristriata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31229,species,yemser1,Yemen Serin,Crithagra menachensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31230,species,ankser2,Ankober Serin,Crithagra ankoberensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31231,species,capsis2,Cape Siskin,Crithagra totta,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31232,species,drasis2,Drakensberg Siskin,Crithagra symonsi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31233,spuh,afrsee1,African seedeater sp.,Crithagra sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31234,species,twite1,Twite,Linaria flavirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31243,species,eurlin1,Eurasian Linnet,Linaria cannabina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31251,slash,y01057,Twite/Eurasian Linnet,Linaria flavirostris/cannabina,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31252,species,yemlin1,Yemen Linnet,Linaria yemenensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31253,species,warlin1,Warsangli Linnet,Linaria johannis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31254,species,comred,Common Redpoll,Acanthis flammea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31255,issf,comred3,Common Redpoll (flammea),Acanthis flammea flammea,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comred +31256,issf,comred4,Common Redpoll (rostrata/islandica),Acanthis flammea rostrata/islandica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,comred +31259,species,lesred1,Lesser Redpoll,Acanthis cabaret,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31260,slash,y00763,Common/Lesser Redpoll,Acanthis flammea/cabaret,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31261,species,hoared,Hoary Redpoll,Acanthis hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31262,issf,hoared2,Hoary Redpoll (exilipes),Acanthis hornemanni exilipes,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hoared +31263,issf,hoared1,Hoary Redpoll (hornemanni),Acanthis hornemanni hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,hoared +31264,hybrid,x00625,Common x Hoary Redpoll (hybrid),Acanthis flammea x hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31265,slash,redpol,Common/Hoary Redpoll,Acanthis flammea/hornemanni,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31266,spuh,redpol1,redpoll sp.,Acanthis sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31267,species,parcro2,Parrot Crossbill,Loxia pytyopsittacus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31268,species,scocro1,Scottish Crossbill,Loxia scotica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31269,species,redcro,Red Crossbill,Loxia curvirostra,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31270,issf,redcro11,Red Crossbill (Corsican),Loxia curvirostra corsicana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31271,issf,redcro12,Red Crossbill (Balearic),Loxia curvirostra balearica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31272,issf,redcro13,Red Crossbill (North African),Loxia curvirostra poliogyna,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31273,issf,redcro14,Red Crossbill (Cyprus),Loxia curvirostra guillemardi,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31274,issf,redcro15,Red Crossbill (Crimean),Loxia curvirostra mariae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31275,issf,redcro16,Red Crossbill (Altai),Loxia curvirostra altaiensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31276,issf,redcro17,Red Crossbill (Tien Shan),Loxia curvirostra tianschanica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31277,issf,redcro18,Red Crossbill (Himalayan),Loxia curvirostra himalayensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31278,issf,redcro19,Red Crossbill (Da Lat),Loxia curvirostra meridionalis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31279,issf,redcro20,Red Crossbill (Japanese),Loxia curvirostra japonica,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31280,issf,redcro21,Red Crossbill (Luzon),Loxia curvirostra luzoniensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31282,form,redcro22,Red Crossbill (Wandering or type A),Loxia curvirostra (type A),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31283,form,redcro23,Red Crossbill (Bohemian or type B),Loxia curvirostra (type B),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31284,form,redcro24,Red Crossbill (Glip or type C),Loxia curvirostra (type C),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31285,form,redcro25,Red Crossbill (Phantom or type D),Loxia curvirostra (type D),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31286,form,redcro26,Red Crossbill (Parakeet or type E),Loxia curvirostra (type E),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31287,form,redcro27,Red Crossbill (Scarce or type F),Loxia curvirostra (type F),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31288,form,redcro28,Red Crossbill (Parakeet or type X),Loxia curvirostra (type X),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31297,form,redcro1,Red Crossbill (Appalachian or type 1),Loxia curvirostra (type 1),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31298,form,redcro2,Red Crossbill (Ponderosa Pine or type 2),Loxia curvirostra (type 2),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31299,form,redcro3,Red Crossbill (Western Hemlock or type 3),Loxia curvirostra (type 3),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31300,form,redcro4,Red Crossbill (Douglas-fir or type 4),Loxia curvirostra (type 4),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31301,form,redcro5,Red Crossbill (Lodgepole Pine or type 5),Loxia curvirostra (type 5),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31302,form,redcro6,Red Crossbill (Sierra Madre or type 6),Loxia curvirostra (type 6),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31303,form,redcro7,Red Crossbill (Enigmatic or type 7),Loxia curvirostra (type 7),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31304,form,redcro8,Red Crossbill (Newfoundland or type 8),Loxia curvirostra (type 8),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31305,form,redcro10,Red Crossbill (Sitka Spruce or type 10),Loxia curvirostra (type 10),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31306,issf,redcro29,Red Crossbill (Central American or type 11),Loxia curvirostra mesamericana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,redcro +31307,slash,y00928,Parrot/Red Crossbill,Loxia pytyopsittacus/curvirostra,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31308,species,redcro9,Cassia Crossbill,Loxia sinesciuris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31309,slash,y01058,Red/Cassia Crossbill,Loxia curvirostra/sinesciuris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31310,species,hiscro,Hispaniolan Crossbill,Loxia megaplaga,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31311,species,whwcro,White-winged Crossbill,Loxia leucoptera,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31312,issf,whwcro1,White-winged Crossbill (bifasciata),Loxia leucoptera bifasciata,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,whwcro +31313,issf,whwcro2,White-winged Crossbill (leucoptera),Loxia leucoptera leucoptera,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,whwcro +31314,spuh,crossb,crossbill sp.,Loxia sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31315,species,mouser1,Mountain Serin,Chrysocorythus estherae,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31316,issf,mouser2,Mountain Serin (Mountain),Chrysocorythus estherae [estherae Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,mouser1 +31321,issf,mouser3,Mountain Serin (Mindanao),Chrysocorythus estherae mindanensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,mouser1 +31322,species,eurgol,European Goldfinch,Carduelis carduelis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31323,issf,eurgol1,European Goldfinch (European),Carduelis carduelis [carduelis Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurgol +31333,issf,eurgol2,European Goldfinch (Eastern),Carduelis carduelis [caniceps Group],Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,eurgol +31337,species,citfin1,Citril Finch,Carduelis citrinella,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31338,species,corfin1,Corsican Finch,Carduelis corsicana,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31339,species,eurser1,European Serin,Serinus serinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31340,slash,y01059,Citril Finch/European Serin,Carduelis citrinella/Serinus serinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31341,species,comcan,Island Canary,Serinus canaria,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31342,domestic,islcan1,Island Canary (Domestic type),Serinus canaria (Domestic type),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31343,species,fifser1,Fire-fronted Serin,Serinus pusillus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31344,species,syrser1,Syrian Serin,Serinus syriacus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31345,slash,y01060,European/Fire-fronted/Syrian Serin,Serinus serinus/pusillus/syriacus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31346,species,yeccan1,Yellow-crowned Canary,Serinus flavivertex,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31350,species,capcan1,Cape Canary,Serinus canicollis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31354,species,abysis1,Ethiopian Siskin,Serinus nigriceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31355,species,bkhcan2,Black-headed Canary,Serinus alario,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31356,issf,bkhcan1,Black-headed Canary (Black-headed),Serinus alario alario,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,bkhcan2 +31357,issf,damcan1,Black-headed Canary (Damara),Serinus alario leucolaemus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,bkhcan2 +31358,spuh,canary1,Serinus sp.,Serinus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31359,species,tibser1,Tibetan Serin,Spinus thibetanus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31360,species,eursis,Eurasian Siskin,Spinus spinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31361,species,pinsis,Pine Siskin,Spinus pinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31362,issf,pinsis1,Pine Siskin (Northern),Spinus pinus pinus/macropterus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pinsis +31365,issf,pinsis2,Pine Siskin (Chiapas),Spinus pinus perplexus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pinsis +31366,form,pinsis3,Pine Siskin (green morph),Spinus pinus (green morph),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",,pinsis +31367,hybrid,x00904,Red Crossbill x Pine Siskin (hybrid),Loxia curvirostra x Spinus pinus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31368,species,blcsis1,Black-capped Siskin,Spinus atriceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31369,hybrid,x00829,Pine x Black-capped Siskin (hybrid),Spinus pinus x atriceps,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31370,species,blhsis1,Black-headed Siskin,Spinus notatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31374,species,antsis1,Antillean Siskin,Spinus dominicensis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31375,species,lesgol,Lesser Goldfinch,Spinus psaltria,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31381,species,lawgol,Lawrence's Goldfinch,Spinus lawrencei,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31382,species,amegfi,American Goldfinch,Spinus tristis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31387,hybrid,x00905,Pine Siskin x American Goldfinch (hybrid),Spinus pinus x tristis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31388,hybrid,x00714,Lesser x American Goldfinch (hybrid),Spinus psaltria x tristis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31389,spuh,goldfi,Spinus sp. (goldfinch sp.),Spinus sp. (goldfinch sp.),Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31390,species,andsis1,Andean Siskin,Spinus spinescens,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31393,species,yefsis1,Yellow-faced Siskin,Spinus yarrellii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31394,species,yebsis1,Yellow-bellied Siskin,Spinus xanthogastrus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31397,species,redsis1,Red Siskin,Spinus cucullatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31398,species,thbsis1,Thick-billed Siskin,Spinus crassirostris,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31401,species,hoosis1,Hooded Siskin,Spinus magellanicus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31413,species,safsis1,Saffron Siskin,Spinus siemiradzkii,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31414,species,olisis1,Olivaceous Siskin,Spinus olivaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31415,slash,y00698,Hooded/Olivaceous Siskin,Spinus magellanicus/olivaceus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31416,species,blasis1,Black Siskin,Spinus atratus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31417,species,yersis1,Yellow-rumped Siskin,Spinus uropygialis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31418,hybrid,x00713,Hooded x Yellow-rumped Siskin (hybrid),Spinus magellanicus x uropygialis,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31419,species,blcsis2,Black-chinned Siskin,Spinus barbatus,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31420,spuh,spinus1,Spinus sp.,Spinus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31421,spuh,y00631,Acanthis/Spinus sp.,Acanthis/Spinus sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31422,spuh,finch1,finch sp.,Fringillidae sp.,Passeriformes,"Fringillidae (Finches, Euphonias, and Allies)",, +31423,species,laplon,Lapland Longspur,Calcarius lapponicus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),Longspurs and Snow Buntings, +31427,species,chclon,Chestnut-collared Longspur,Calcarius ornatus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31428,species,smilon,Smith's Longspur,Calcarius pictus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31429,species,mcclon,McCown's Longspur,Rhynchophanes mccownii,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31430,spuh,longsp1,longspur sp.,Calcarius/Rhynchophanes sp.,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31431,species,snobun,Snow Bunting,Plectrophenax nivalis,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31436,hybrid,x00919,Lapland Longspur x Snow Bunting (hybrid),Calcarius lapponicus x Plectrophenax nivalis,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31437,species,mckbun,McKay's Bunting,Plectrophenax hyperboreus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31438,hybrid,x00447,Snow x McKay's Bunting (hybrid),Plectrophenax nivalis x hyperboreus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31439,slash,y00695,Snow/McKay's Bunting,Plectrophenax nivalis/hyperboreus,Passeriformes,Calcariidae (Longspurs and Snow Buntings),, +31440,species,rottan2,Rosy Thrush-Tanager,Rhodinocichla rosea,Passeriformes,Rhodinocichlidae (Thrush-Tanager),Thrush-Tanager, +31446,species,brrbun1,Brown-rumped Bunting,Emberiza affinis,Passeriformes,Emberizidae (Old World Buntings),Old World Buntings, +31451,species,crebun1,Crested Bunting,Emberiza lathami,Passeriformes,Emberizidae (Old World Buntings),, +31452,species,blhbun1,Black-headed Bunting,Emberiza melanocephala,Passeriformes,Emberizidae (Old World Buntings),, +31453,species,rehbun1,Red-headed Bunting,Emberiza bruniceps,Passeriformes,Emberizidae (Old World Buntings),, +31454,hybrid,x00871,Black-headed x Red-headed Bunting (hybrid),Emberiza melanocephala x bruniceps,Passeriformes,Emberizidae (Old World Buntings),, +31455,slash,y00923,Black-headed/Red-headed Bunting,Emberiza melanocephala/bruniceps,Passeriformes,Emberizidae (Old World Buntings),, +31456,species,corbun1,Corn Bunting,Emberiza calandra,Passeriformes,Emberizidae (Old World Buntings),, +31457,species,chebun2,Chestnut-eared Bunting,Emberiza fucata,Passeriformes,Emberizidae (Old World Buntings),, +31461,species,tibbun1,Tibetan Bunting,Emberiza koslowi,Passeriformes,Emberizidae (Old World Buntings),, +31462,species,rubbun1,Rufous-backed Bunting,Emberiza jankowskii,Passeriformes,Emberizidae (Old World Buntings),, +31463,species,rocbun1,Rock Bunting,Emberiza cia,Passeriformes,Emberizidae (Old World Buntings),, +31468,species,godbun1,Godlewski's Bunting,Emberiza godlewskii,Passeriformes,Emberizidae (Old World Buntings),, +31469,issf,godbun2,Godlewski's Bunting (godlewskii Group),Emberiza godlewskii [godlewskii Group],Passeriformes,Emberizidae (Old World Buntings),,godbun1 +31473,issf,godbun3,Godlewski's Bunting (yunnanensis/khamensis),Emberiza godlewskii yunnanensis/khamensis,Passeriformes,Emberizidae (Old World Buntings),,godbun1 +31476,species,meabun1,Meadow Bunting,Emberiza cioides,Passeriformes,Emberizidae (Old World Buntings),, +31482,species,cirbun1,Cirl Bunting,Emberiza cirlus,Passeriformes,Emberizidae (Old World Buntings),, +31485,species,chbbun1,White-capped Bunting,Emberiza stewarti,Passeriformes,Emberizidae (Old World Buntings),, +31486,species,yellow2,Yellowhammer,Emberiza citrinella,Passeriformes,Emberizidae (Old World Buntings),, +31490,species,pinbun,Pine Bunting,Emberiza leucocephalos,Passeriformes,Emberizidae (Old World Buntings),, +31493,hybrid,x00823,Yellowhammer x Pine Bunting (hybrid),Emberiza citrinella x leucocephalos,Passeriformes,Emberizidae (Old World Buntings),, +31494,species,gyhbun1,Gray-necked Bunting,Emberiza buchanani,Passeriformes,Emberizidae (Old World Buntings),, +31498,species,cinbun1,Cinereous Bunting,Emberiza cineracea,Passeriformes,Emberizidae (Old World Buntings),, +31499,issf,cinbun2,Cinereous Bunting (Gray-bellied),Emberiza cineracea cineracea,Passeriformes,Emberizidae (Old World Buntings),,cinbun1 +31500,issf,cinbun3,Cinereous Bunting (Yellow-bellied),Emberiza cineracea semenowi,Passeriformes,Emberizidae (Old World Buntings),,cinbun1 +31501,species,ortbun1,Ortolan Bunting,Emberiza hortulana,Passeriformes,Emberizidae (Old World Buntings),, +31502,slash,y00922,Gray-necked/Ortolan Bunting,Emberiza buchanani/hortulana,Passeriformes,Emberizidae (Old World Buntings),, +31503,species,crebun2,Cretzschmar's Bunting,Emberiza caesia,Passeriformes,Emberizidae (Old World Buntings),, +31504,species,cabbun1,Cabanis's Bunting,Emberiza cabanisi,Passeriformes,Emberizidae (Old World Buntings),, +31505,issf,cabbun2,Cabanis's Bunting (Cabanis's),Emberiza cabanisi cabanisi,Passeriformes,Emberizidae (Old World Buntings),,cabbun1 +31506,issf,cabbun3,Cabanis's Bunting (Three-streaked),Emberiza cabanisi orientalis,Passeriformes,Emberizidae (Old World Buntings),,cabbun1 +31507,species,gobbun1,Golden-breasted Bunting,Emberiza flaviventris,Passeriformes,Emberizidae (Old World Buntings),, +31512,species,sombun1,Somali Bunting,Emberiza poliopleura,Passeriformes,Emberizidae (Old World Buntings),, +31513,species,capbun1,Cape Bunting,Emberiza capensis,Passeriformes,Emberizidae (Old World Buntings),, +31524,species,vinbun1,Vincent's Bunting,Emberiza vincenti,Passeriformes,Emberizidae (Old World Buntings),, +31525,species,lalbun1,Lark-like Bunting,Emberiza impetuani,Passeriformes,Emberizidae (Old World Buntings),, +31529,species,socbun1,Socotra Bunting,Emberiza socotrana,Passeriformes,Emberizidae (Old World Buntings),, +31530,species,cibbun1,Cinnamon-breasted Bunting,Emberiza tahapisi,Passeriformes,Emberizidae (Old World Buntings),, +31536,species,gosbun1,Gosling's Bunting,Emberiza goslingi,Passeriformes,Emberizidae (Old World Buntings),, +31537,hybrid,x00975,Cinnamon-breasted x Gosling's Bunting (hybrid),Emberiza tahapisi x goslingi,Passeriformes,Emberizidae (Old World Buntings),, +31538,species,houbun3,House Bunting,Emberiza sahari,Passeriformes,Emberizidae (Old World Buntings),, +31539,species,houbun2,Striolated Bunting,Emberiza striolata,Passeriformes,Emberizidae (Old World Buntings),, +31543,species,slabun1,Slaty Bunting,Emberiza siemsseni,Passeriformes,Emberizidae (Old World Buntings),, +31544,species,yetbun1,Yellow-throated Bunting,Emberiza elegans,Passeriformes,Emberizidae (Old World Buntings),, +31548,species,ocrbun1,Ochre-rumped Bunting,Emberiza yessoensis,Passeriformes,Emberizidae (Old World Buntings),, +31551,species,palbun,Pallas's Bunting,Emberiza pallasi,Passeriformes,Emberizidae (Old World Buntings),, +31555,species,reebun,Reed Bunting,Emberiza schoeniclus,Passeriformes,Emberizidae (Old World Buntings),, +31571,slash,y01015,Pallas's/Reed Bunting,Emberiza pallasi/schoeniclus,Passeriformes,Emberizidae (Old World Buntings),, +31572,species,yebbun,Yellow-breasted Bunting,Emberiza aureola,Passeriformes,Emberizidae (Old World Buntings),, +31575,species,litbun,Little Bunting,Emberiza pusilla,Passeriformes,Emberizidae (Old World Buntings),, +31576,species,rusbun,Rustic Bunting,Emberiza rustica,Passeriformes,Emberizidae (Old World Buntings),, +31579,species,yelbun1,Yellow Bunting,Emberiza sulphurata,Passeriformes,Emberizidae (Old World Buntings),, +31580,species,blfbun1,Black-faced Bunting,Emberiza spodocephala,Passeriformes,Emberizidae (Old World Buntings),, +31581,issf,bkfbun1,Black-faced Bunting (spodocephala/sordida),Emberiza spodocephala spodocephala/sordida,Passeriformes,Emberizidae (Old World Buntings),,blfbun1 +31584,issf,bkfbun2,Black-faced Bunting (personata),Emberiza spodocephala personata,Passeriformes,Emberizidae (Old World Buntings),,blfbun1 +31585,species,chebun1,Chestnut Bunting,Emberiza rutila,Passeriformes,Emberizidae (Old World Buntings),, +31586,species,yebbun1,Yellow-browed Bunting,Emberiza chrysophrys,Passeriformes,Emberizidae (Old World Buntings),, +31587,species,tribun1,Tristram's Bunting,Emberiza tristrami,Passeriformes,Emberizidae (Old World Buntings),, +31588,species,grybun,Gray Bunting,Emberiza variabilis,Passeriformes,Emberizidae (Old World Buntings),, +31589,spuh,emberi1,Emberiza sp.,Emberiza sp.,Passeriformes,Emberizidae (Old World Buntings),, +31590,species,tanfin1,Tanager Finch,Oreothraupis arremonops,Passeriformes,Passerellidae (New World Sparrows),New World Sparrows, +31591,species,ytbtan1,Yellow-throated Chlorospingus,Chlorospingus flavigularis,Passeriformes,Passerellidae (New World Sparrows),, +31592,issf,yetbut1,Yellow-throated Chlorospingus (Drab-breasted),Chlorospingus flavigularis hypophaeus,Passeriformes,Passerellidae (New World Sparrows),,ytbtan1 +31593,issf,yetbut2,Yellow-throated Chlorospingus (Yellow-throated),Chlorospingus flavigularis flavigularis/marginatus,Passeriformes,Passerellidae (New World Sparrows),,ytbtan1 +31596,species,shbbut1,Short-billed Chlorospingus,Chlorospingus parvirostris,Passeriformes,Passerellidae (New World Sparrows),, +31600,slash,y01126,Yellow-throated/Short-billed Chlorospingus,Chlorospingus flavigularis/parvirostris,Passeriformes,Passerellidae (New World Sparrows),, +31601,species,atbtan1,Ashy-throated Chlorospingus,Chlorospingus canigularis,Passeriformes,Passerellidae (New World Sparrows),, +31602,issf,astbut1,Ashy-throated Chlorospingus (Olive-crowned),Chlorospingus canigularis olivaceiceps,Passeriformes,Passerellidae (New World Sparrows),,atbtan1 +31603,issf,astbut2,Ashy-throated Chlorospingus (Ashy-throated),Chlorospingus canigularis [canigularis Group],Passeriformes,Passerellidae (New World Sparrows),,atbtan1 +31608,species,scbtan1,Sooty-capped Chlorospingus,Chlorospingus pileatus,Passeriformes,Passerellidae (New World Sparrows),, +31611,species,cobtan1,Common Chlorospingus,Chlorospingus flavopectus,Passeriformes,Passerellidae (New World Sparrows),, +31612,issf,combut1,Common Chlorospingus (Northeast Mexico),Chlorospingus flavopectus ophthalmicus,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31613,issf,combut3,Common Chlorospingus (Southwest Mexico),Chlorospingus flavopectus albifrons,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31614,issf,combut4,Common Chlorospingus (Middle America),Chlorospingus flavopectus [postocularis Group],Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31622,issf,combut2,Common Chlorospingus (Central Panama),Chlorospingus flavopectus punctulatus,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31623,issf,combut5,Common Chlorospingus (Venezuela),Chlorospingus flavopectus [venezuelanus Group],Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31628,issf,combut6,Common Chlorospingus (Northern Andes),Chlorospingus flavopectus [flavopectus Group],Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31638,issf,combut7,Common Chlorospingus (cinereocephalus),Chlorospingus flavopectus cinereocephalus,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31639,issf,combut8,Common Chlorospingus (Southern Peru),Chlorospingus flavopectus peruvianus,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31640,issf,combut9,Common Chlorospingus (Northern Bolivia),Chlorospingus flavopectus bolivianus,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31641,issf,combut10,Common Chlorospingus (Southern Bolivia),Chlorospingus flavopectus fulvigularis,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31642,issf,combut11,Common Chlorospingus (Argentina),Chlorospingus flavopectus argentinus,Passeriformes,Passerellidae (New World Sparrows),,cobtan1 +31643,species,tabtan1,Tacarcuna Chlorospingus,Chlorospingus tacarcunae,Passeriformes,Passerellidae (New World Sparrows),, +31644,species,pibtan1,Pirre Chlorospingus,Chlorospingus inornatus,Passeriformes,Passerellidae (New World Sparrows),, +31645,species,dubtan1,Dusky Chlorospingus,Chlorospingus semifuscus,Passeriformes,Passerellidae (New World Sparrows),, +31648,species,ygbtan1,Yellow-green Chlorospingus,Chlorospingus flavovirens,Passeriformes,Passerellidae (New World Sparrows),, +31649,spuh,chloro1,Chlorospingus sp.,Chlorospingus sp.,Passeriformes,Passerellidae (New World Sparrows),, +31650,species,tumspa1,Tumbes Sparrow,Rhynchospiza stolzmanni,Passeriformes,Passerellidae (New World Sparrows),, +31651,species,stcspa1,Stripe-capped Sparrow,Rhynchospiza strigiceps,Passeriformes,Passerellidae (New World Sparrows),, +31654,species,ruwspa,Rufous-winged Sparrow,Peucaea carpalis,Passeriformes,Passerellidae (New World Sparrows),, +31658,species,citspa1,Cinnamon-tailed Sparrow,Peucaea sumichrasti,Passeriformes,Passerellidae (New World Sparrows),, +31659,species,sthspa1,Stripe-headed Sparrow,Peucaea ruficauda,Passeriformes,Passerellidae (New World Sparrows),, +31665,species,blcspa1,Black-chested Sparrow,Peucaea humeralis,Passeriformes,Passerellidae (New World Sparrows),, +31666,species,brispa1,Bridled Sparrow,Peucaea mystacalis,Passeriformes,Passerellidae (New World Sparrows),, +31667,species,botspa,Botteri's Sparrow,Peucaea botterii,Passeriformes,Passerellidae (New World Sparrows),, +31668,issf,botspa1,Botteri's Sparrow (Botteri's),Peucaea botterii [botterii Group],Passeriformes,Passerellidae (New World Sparrows),,botspa +31674,issf,botspa2,Botteri's Sparrow (Peten),Peucaea botterii [petenica Group],Passeriformes,Passerellidae (New World Sparrows),,botspa +31679,species,casspa,Cassin's Sparrow,Peucaea cassinii,Passeriformes,Passerellidae (New World Sparrows),, +31680,slash,y00646,Botteri's/Cassin's Sparrow,Peucaea botterii/cassinii,Passeriformes,Passerellidae (New World Sparrows),, +31681,species,bacspa,Bachman's Sparrow,Peucaea aestivalis,Passeriformes,Passerellidae (New World Sparrows),, +31685,spuh,peucae1,Peucaea sp.,Peucaea sp.,Passeriformes,Passerellidae (New World Sparrows),, +31686,species,graspa,Grasshopper Sparrow,Ammodramus savannarum,Passeriformes,Passerellidae (New World Sparrows),, +31698,species,graspa1,Grassland Sparrow,Ammodramus humeralis,Passeriformes,Passerellidae (New World Sparrows),, +31703,species,yebspa1,Yellow-browed Sparrow,Ammodramus aurifrons,Passeriformes,Passerellidae (New World Sparrows),, +31708,slash,y01083,Grassland/Yellow-browed Sparrow,Ammodramus humeralis/aurifrons,Passeriformes,Passerellidae (New World Sparrows),, +31709,species,olispa,Olive Sparrow,Arremonops rufivirgatus,Passeriformes,Passerellidae (New World Sparrows),, +31710,issf,olispa1,Olive Sparrow (Olive),Arremonops rufivirgatus [rufivirgatus Group],Passeriformes,Passerellidae (New World Sparrows),,olispa +31716,issf,olispa2,Olive Sparrow (Pacific),Arremonops rufivirgatus [superciliosus Group],Passeriformes,Passerellidae (New World Sparrows),,olispa +31721,species,grbspa1,Green-backed Sparrow,Arremonops chloronotus,Passeriformes,Passerellidae (New World Sparrows),, +31724,slash,y00921,Olive/Green-backed Sparrow,Arremonops rufivirgatus/chloronotus,Passeriformes,Passerellidae (New World Sparrows),, +31725,species,blsspa1,Black-striped Sparrow,Arremonops conirostris,Passeriformes,Passerellidae (New World Sparrows),, +31732,species,tocspa1,Tocuyo Sparrow,Arremonops tocuyensis,Passeriformes,Passerellidae (New World Sparrows),, +31733,species,chispa,Chipping Sparrow,Spizella passerina,Passeriformes,Passerellidae (New World Sparrows),, +31739,species,clcspa,Clay-colored Sparrow,Spizella pallida,Passeriformes,Passerellidae (New World Sparrows),, +31740,hybrid,x00198,Chipping x Clay-colored Sparrow (hybrid),Spizella passerina x pallida,Passeriformes,Passerellidae (New World Sparrows),, +31741,species,bkcspa,Black-chinned Sparrow,Spizella atrogularis,Passeriformes,Passerellidae (New World Sparrows),, +31746,species,fiespa,Field Sparrow,Spizella pusilla,Passeriformes,Passerellidae (New World Sparrows),, +31749,hybrid,x00976,Chipping x Field Sparrow (hybrid),Spizella passerina x pusilla,Passeriformes,Passerellidae (New World Sparrows),, +31750,hybrid,x00200,Clay-colored x Field Sparrow (hybrid),Spizella pallida x pusilla,Passeriformes,Passerellidae (New World Sparrows),, +31751,species,brespa,Brewer's Sparrow,Spizella breweri,Passeriformes,Passerellidae (New World Sparrows),, +31752,issf,brespa1,Brewer's Sparrow (breweri),Spizella breweri breweri,Passeriformes,Passerellidae (New World Sparrows),,brespa +31753,issf,timspa3,Brewer's Sparrow (Timberline),Spizella breweri taverneri,Passeriformes,Passerellidae (New World Sparrows),,brespa +31754,hybrid,x00201,Black-chinned x Brewer's Sparrow (hybrid),Spizella atrogularis x breweri,Passeriformes,Passerellidae (New World Sparrows),, +31755,hybrid,x00199,Clay-colored x Brewer's Sparrow (hybrid),Spizella pallida x breweri,Passeriformes,Passerellidae (New World Sparrows),, +31756,species,worspa,Worthen's Sparrow,Spizella wortheni,Passeriformes,Passerellidae (New World Sparrows),, +31757,spuh,spizel1,Spizella sp.,Spizella sp.,Passeriformes,Passerellidae (New World Sparrows),, +31758,species,bktspa,Black-throated Sparrow,Amphispiza bilineata,Passeriformes,Passerellidae (New World Sparrows),, +31769,species,fisspa,Five-striped Sparrow,Amphispiza quinquestriata,Passeriformes,Passerellidae (New World Sparrows),, +31772,species,larspa,Lark Sparrow,Chondestes grammacus,Passeriformes,Passerellidae (New World Sparrows),, +31775,species,larbun,Lark Bunting,Calamospiza melanocorys,Passeriformes,Passerellidae (New World Sparrows),, +31776,species,sthbrf3,Costa Rican Brushfinch,Arremon costaricensis,Passeriformes,Passerellidae (New World Sparrows),, +31777,species,sthbrf4,Sierra Nevada Brushfinch,Arremon basilicus,Passeriformes,Passerellidae (New World Sparrows),, +31778,species,sthbrf5,Perija Brushfinch,Arremon perijanus,Passeriformes,Passerellidae (New World Sparrows),, +31779,species,sthbrf1,Black-headed Brushfinch,Arremon atricapillus,Passeriformes,Passerellidae (New World Sparrows),, +31782,species,sthbrf6,Caracas Brushfinch,Arremon phaeopleurus,Passeriformes,Passerellidae (New World Sparrows),, +31783,species,sthbrf7,Paria Brushfinch,Arremon phygas,Passeriformes,Passerellidae (New World Sparrows),, +31784,species,sthbrf8,Gray-browed Brushfinch,Arremon assimilis,Passeriformes,Passerellidae (New World Sparrows),, +31789,species,sthbrf2,White-browed Brushfinch,Arremon torquatus,Passeriformes,Passerellidae (New World Sparrows),, +31793,spuh,shbfin1,stripe-headed brushfinch sp.,Arremon sp. (torquatus complex),Passeriformes,Passerellidae (New World Sparrows),, +31794,species,orbspa1,Orange-billed Sparrow,Arremon aurantiirostris,Passeriformes,Passerellidae (New World Sparrows),, +31795,issf,orbspa2,Orange-billed Sparrow (aurantiirostris Group),Arremon aurantiirostris [aurantiirostris Group],Passeriformes,Passerellidae (New World Sparrows),,orbspa1 +31802,issf,orbspa3,Orange-billed Sparrow (erythrorhynchus),Arremon aurantiirostris erythrorhynchus,Passeriformes,Passerellidae (New World Sparrows),,orbspa1 +31803,issf,orbspa4,Orange-billed Sparrow (spectabilis),Arremon aurantiirostris spectabilis,Passeriformes,Passerellidae (New World Sparrows),,orbspa1 +31804,species,blcspa2,Black-capped Sparrow,Arremon abeillei,Passeriformes,Passerellidae (New World Sparrows),, +31805,issf,bkcspa1,Black-capped Sparrow (Black-capped),Arremon abeillei abeillei,Passeriformes,Passerellidae (New World Sparrows),,blcspa2 +31806,issf,bkcspa2,Black-capped Sparrow (Marañon),Arremon abeillei nigriceps,Passeriformes,Passerellidae (New World Sparrows),,blcspa2 +31807,species,gowspa1,Golden-winged Sparrow,Arremon schlegeli,Passeriformes,Passerellidae (New World Sparrows),, +31811,species,pecspa1,Pectoral Sparrow,Arremon taciturnus,Passeriformes,Passerellidae (New World Sparrows),, +31812,issf,pecspa2,Pectoral Sparrow (Yellow-mandibled),Arremon taciturnus axillaris,Passeriformes,Passerellidae (New World Sparrows),,pecspa1 +31813,issf,pecspa3,Pectoral Sparrow (Pectoral),Arremon taciturnus taciturnus/nigrirostris,Passeriformes,Passerellidae (New World Sparrows),,pecspa1 +31816,species,safspa1,Sao Francisco Sparrow,Arremon franciscanus,Passeriformes,Passerellidae (New World Sparrows),, +31817,species,hacspa1,Half-collared Sparrow,Arremon semitorquatus,Passeriformes,Passerellidae (New World Sparrows),, +31818,species,sabspa1,Saffron-billed Sparrow,Arremon flavirostris,Passeriformes,Passerellidae (New World Sparrows),, +31819,issf,sabspa4,Saffron-billed Sparrow (Stripe-crowned),Arremon flavirostris dorbignii,Passeriformes,Passerellidae (New World Sparrows),,sabspa1 +31820,issf,sabspa2,Saffron-billed Sparrow (Gray-backed),Arremon flavirostris polionotus,Passeriformes,Passerellidae (New World Sparrows),,sabspa1 +31821,issf,sabspa3,Saffron-billed Sparrow (Saffron-billed),Arremon flavirostris flavirostris,Passeriformes,Passerellidae (New World Sparrows),,sabspa1 +31822,species,gsbfin1,Green-striped Brushfinch,Arremon virenticeps,Passeriformes,Passerellidae (New World Sparrows),, +31825,species,ccbfin,Chestnut-capped Brushfinch,Arremon brunneinucha,Passeriformes,Passerellidae (New World Sparrows),, +31826,issf,chcbrf2,Chestnut-capped Brushfinch (Plain-breasted),Arremon brunneinucha apertus,Passeriformes,Passerellidae (New World Sparrows),,ccbfin +31827,issf,chcbrf1,Chestnut-capped Brushfinch (Chestnut-capped),Arremon brunneinucha [brunneinucha Group],Passeriformes,Passerellidae (New World Sparrows),,ccbfin +31837,species,soffin1,Sooty-faced Finch,Arremon crassirostris,Passeriformes,Passerellidae (New World Sparrows),, +31838,species,olifin1,Olive Finch,Arremon castaneiceps,Passeriformes,Passerellidae (New World Sparrows),, +31839,species,amtspa,American Tree Sparrow,Spizelloides arborea,Passeriformes,Passerellidae (New World Sparrows),, +31842,spuh,spizel,Spizella sp./American Tree Sparrow,Spizella/Spizelloides sp.,Passeriformes,Passerellidae (New World Sparrows),, +31843,species,foxspa,Fox Sparrow,Passerella iliaca,Passeriformes,Passerellidae (New World Sparrows),, +31844,issf,foxsp2,Fox Sparrow (Sooty),Passerella iliaca [unalaschcensis Group],Passeriformes,Passerellidae (New World Sparrows),,foxspa +31852,issf,foxsp4,Fox Sparrow (Thick-billed),Passerella iliaca [megarhyncha Group],Passeriformes,Passerellidae (New World Sparrows),,foxspa +31858,issf,foxsp3,Fox Sparrow (Slate-colored),Passerella iliaca [schistacea Group],Passeriformes,Passerellidae (New World Sparrows),,foxspa +31864,issf,foxsp1,Fox Sparrow (Red),Passerella iliaca iliaca/zaboria,Passeriformes,Passerellidae (New World Sparrows),,foxspa +31867,species,daejun,Dark-eyed Junco,Junco hyemalis,Passeriformes,Passerellidae (New World Sparrows),, +31868,form,daejun5,Dark-eyed Junco (Slate-colored/cismontanus),Junco hyemalis hyemalis/carolinensis/cismontanus,Passeriformes,Passerellidae (New World Sparrows),,daejun +31869,issf,slcjun,Dark-eyed Junco (Slate-colored),Junco hyemalis hyemalis/carolinensis,Passeriformes,Passerellidae (New World Sparrows),,daejun +31872,issf,daejun1,Dark-eyed Junco (cismontanus),Junco hyemalis cismontanus,Passeriformes,Passerellidae (New World Sparrows),,daejun +31873,issf,orejun,Dark-eyed Junco (Oregon),Junco hyemalis [oreganus Group],Passeriformes,Passerellidae (New World Sparrows),,daejun +31881,issf,pisjun,Dark-eyed Junco (Pink-sided),Junco hyemalis mearnsi,Passeriformes,Passerellidae (New World Sparrows),,daejun +31882,intergrade,daejun3,Dark-eyed Junco (Oregon x Pink-sided),Junco hyemalis oreganus x mearnsi,Passeriformes,Passerellidae (New World Sparrows),,daejun +31883,issf,whwjun,Dark-eyed Junco (White-winged),Junco hyemalis aikeni,Passeriformes,Passerellidae (New World Sparrows),,daejun +31884,intergrade,daejun7,Dark-eyed Junco (Pink-sided x White-winged),Junco hyemalis mearnsi x aikeni,Passeriformes,Passerellidae (New World Sparrows),,daejun +31885,issf,gyhjun,Dark-eyed Junco (Gray-headed),Junco hyemalis caniceps,Passeriformes,Passerellidae (New World Sparrows),,daejun +31886,intergrade,daejun8,Dark-eyed Junco (Oregon x Gray-headed),Junco hyemalis oreganus x caniceps,Passeriformes,Passerellidae (New World Sparrows),,daejun +31887,intergrade,daejun4,Dark-eyed Junco (Pink-sided x Gray-headed),Junco hyemalis mearnsi x caniceps,Passeriformes,Passerellidae (New World Sparrows),,daejun +31888,issf,rebjun1,Dark-eyed Junco (Red-backed),Junco hyemalis dorsalis,Passeriformes,Passerellidae (New World Sparrows),,daejun +31889,intergrade,daejun6,Dark-eyed Junco (Gray-headed x Red-backed),Junco hyemalis caniceps x dorsalis,Passeriformes,Passerellidae (New World Sparrows),,daejun +31890,species,daejun2,Guadalupe Junco,Junco insularis,Passeriformes,Passerellidae (New World Sparrows),, +31891,species,yeejun,Yellow-eyed Junco,Junco phaeonotus,Passeriformes,Passerellidae (New World Sparrows),, +31892,issf,yeejun1,Yellow-eyed Junco (Mexican),Junco phaeonotus phaeonotus/palliatus,Passeriformes,Passerellidae (New World Sparrows),,yeejun +31895,issf,yeejun3,Yellow-eyed Junco (Chiapas),Junco phaeonotus fulvescens,Passeriformes,Passerellidae (New World Sparrows),,yeejun +31896,issf,yeejun4,Yellow-eyed Junco (Guatemalan),Junco phaeonotus alticola,Passeriformes,Passerellidae (New World Sparrows),,yeejun +31897,hybrid,x00869,Dark-eyed x Yellow-eyed Junco (hybrid),Junco hyemalis x phaeonotus,Passeriformes,Passerellidae (New World Sparrows),, +31898,slash,y00333,Dark-eyed/Yellow-eyed Junco,Junco hyemalis/phaeonotus,Passeriformes,Passerellidae (New World Sparrows),, +31899,species,yeejun2,Baird's Junco,Junco bairdi,Passeriformes,Passerellidae (New World Sparrows),, +31900,species,voljun1,Volcano Junco,Junco vulcani,Passeriformes,Passerellidae (New World Sparrows),, +31901,species,rucspa1,Rufous-collared Sparrow,Zonotrichia capensis,Passeriformes,Passerellidae (New World Sparrows),, +31902,issf,rucspa6,Rufous-collared Sparrow (Rufous-collared),Zonotrichia capensis [capensis Group],Passeriformes,Passerellidae (New World Sparrows),,rucspa1 +31929,issf,rucspa5,Rufous-collared Sparrow (Patagonian),Zonotrichia capensis australis,Passeriformes,Passerellidae (New World Sparrows),,rucspa1 +31930,species,whcspa,White-crowned Sparrow,Zonotrichia leucophrys,Passeriformes,Passerellidae (New World Sparrows),, +31931,form,whcspa2,White-crowned Sparrow (Dark-lored),Zonotrichia leucophrys leucophrys/oriantha,Passeriformes,Passerellidae (New World Sparrows),,whcspa +31932,issf,ewcspa1,White-crowned Sparrow (leucophrys),Zonotrichia leucophrys leucophrys,Passeriformes,Passerellidae (New World Sparrows),,whcspa +31933,issf,mwcspa1,White-crowned Sparrow (oriantha),Zonotrichia leucophrys oriantha,Passeriformes,Passerellidae (New World Sparrows),,whcspa +31934,issf,gwcspa,White-crowned Sparrow (Gambel's),Zonotrichia leucophrys gambelii,Passeriformes,Passerellidae (New World Sparrows),,whcspa +31935,form,whcspa3,White-crowned Sparrow (Yellow-billed),Zonotrichia leucophrys nuttalli/pugetensis,Passeriformes,Passerellidae (New World Sparrows),,whcspa +31936,issf,nwcspa,White-crowned Sparrow (nuttalli),Zonotrichia leucophrys nuttalli,Passeriformes,Passerellidae (New World Sparrows),,whcspa +31937,issf,pswspa1,White-crowned Sparrow (pugetensis),Zonotrichia leucophrys pugetensis,Passeriformes,Passerellidae (New World Sparrows),,whcspa +31938,species,gocspa,Golden-crowned Sparrow,Zonotrichia atricapilla,Passeriformes,Passerellidae (New World Sparrows),, +31939,hybrid,x00053,White-crowned x Golden-crowned Sparrow (hybrid),Zonotrichia leucophrys x atricapilla,Passeriformes,Passerellidae (New World Sparrows),, +31940,species,harspa,Harris's Sparrow,Zonotrichia querula,Passeriformes,Passerellidae (New World Sparrows),, +31941,hybrid,x00752,American Tree x Harris's Sparrow (hybrid),Spizelloides arborea x Zonotrichia querula,Passeriformes,Passerellidae (New World Sparrows),, +31942,hybrid,x00900,White-crowned x Harris's Sparrow (hybrid),Zonotrichia leucophrys x querula,Passeriformes,Passerellidae (New World Sparrows),, +31943,species,whtspa,White-throated Sparrow,Zonotrichia albicollis,Passeriformes,Passerellidae (New World Sparrows),, +31944,hybrid,x00451,White-crowned x White-throated Sparrow (hybrid),Zonotrichia leucophrys x albicollis,Passeriformes,Passerellidae (New World Sparrows),, +31945,slash,y00332,White-crowned/White-throated Sparrow,Zonotrichia leucophrys/albicollis,Passeriformes,Passerellidae (New World Sparrows),, +31946,hybrid,x00720,Golden-crowned x White-throated Sparrow (hybrid),Zonotrichia atricapilla x albicollis,Passeriformes,Passerellidae (New World Sparrows),, +31947,spuh,zonotr1,Zonotrichia sp.,Zonotrichia sp.,Passeriformes,Passerellidae (New World Sparrows),, +31948,hybrid,x00039,Dark-eyed Junco x White-throated Sparrow (hybrid),Junco hyemalis x Zonotrichia albicollis,Passeriformes,Passerellidae (New World Sparrows),, +31949,species,sagspa1,Sagebrush Sparrow,Artemisiospiza nevadensis,Passeriformes,Passerellidae (New World Sparrows),, +31950,species,belspa2,Bell's Sparrow,Artemisiospiza belli,Passeriformes,Passerellidae (New World Sparrows),, +31951,issf,belspa1,Bell's Sparrow (belli),Artemisiospiza belli belli,Passeriformes,Passerellidae (New World Sparrows),,belspa2 +31952,issf,belspa3,Bell's Sparrow (canescens),Artemisiospiza belli canescens,Passeriformes,Passerellidae (New World Sparrows),,belspa2 +31953,issf,scsspa1,Bell's Sparrow (clementeae),Artemisiospiza belli clementeae,Passeriformes,Passerellidae (New World Sparrows),,belspa2 +31954,issf,sagspa2,Bell's Sparrow (cinerea),Artemisiospiza belli cinerea,Passeriformes,Passerellidae (New World Sparrows),,belspa2 +31955,slash,sagspa,Sagebrush/Bell's Sparrow (Sage Sparrow),Artemisiospiza nevadensis/belli,Passeriformes,Passerellidae (New World Sparrows),, +31956,species,strspa1,Striped Sparrow,Oriturus superciliosus,Passeriformes,Passerellidae (New World Sparrows),, +31959,species,vesspa,Vesper Sparrow,Pooecetes gramineus,Passeriformes,Passerellidae (New World Sparrows),, +31963,species,lecspa,LeConte's Sparrow,Ammospiza leconteii,Passeriformes,Passerellidae (New World Sparrows),, +31964,species,seaspa,Seaside Sparrow,Ammospiza maritima,Passeriformes,Passerellidae (New World Sparrows),, +31965,issf,seaspa1,Seaside Sparrow (Atlantic),Ammospiza maritima maritima/macgillivraii,Passeriformes,Passerellidae (New World Sparrows),,seaspa +31968,issf,dusspa1,Seaside Sparrow (Dusky),Ammospiza maritima nigrescens,Passeriformes,Passerellidae (New World Sparrows),,seaspa +31969,issf,seaspa2,Seaside Sparrow (Gulf of Mexico),Ammospiza maritima [sennetti Group],Passeriformes,Passerellidae (New World Sparrows),,seaspa +31973,issf,cssspa1,Seaside Sparrow (Cape Sable),Ammospiza maritima mirabilis,Passeriformes,Passerellidae (New World Sparrows),,seaspa +31974,species,nstspa,Nelson's Sparrow,Ammospiza nelsoni,Passeriformes,Passerellidae (New World Sparrows),, +31975,issf,nstspa1,Nelson's Sparrow (Interior),Ammospiza nelsoni nelsoni/altera,Passeriformes,Passerellidae (New World Sparrows),,nstspa +31978,issf,nstspa2,Nelson's Sparrow (Atlantic Coast),Ammospiza nelsoni subvirgata,Passeriformes,Passerellidae (New World Sparrows),,nstspa +31979,slash,y01165,LeConte's/Nelson's Sparrow,Ammospiza leconteii/nelsoni,Passeriformes,Passerellidae (New World Sparrows),, +31980,species,sstspa,Saltmarsh Sparrow,Ammospiza caudacuta,Passeriformes,Passerellidae (New World Sparrows),, +31983,hybrid,x00450,Nelson's x Saltmarsh Sparrow (hybrid),Ammospiza nelsoni x caudacuta,Passeriformes,Passerellidae (New World Sparrows),, +31984,slash,shtspa,Nelson's/Saltmarsh Sparrow (Sharp-tailed Sparrow),Ammospiza nelsoni/caudacuta,Passeriformes,Passerellidae (New World Sparrows),, +31985,spuh,ammosp1,Ammospiza sp.,Ammospiza sp.,Passeriformes,Passerellidae (New World Sparrows),, +31986,species,savspa,Savannah Sparrow,Passerculus sandwichensis,Passeriformes,Passerellidae (New World Sparrows),, +31987,issf,savspa4,Savannah Sparrow (Savannah),Passerculus sandwichensis [sandwichensis Group],Passeriformes,Passerellidae (New World Sparrows),,savspa +32001,issf,ipsspa,Savannah Sparrow (Ipswich),Passerculus sandwichensis princeps,Passeriformes,Passerellidae (New World Sparrows),,savspa +32002,issf,bldspa,Savannah Sparrow (Belding's),Passerculus sandwichensis [guttatus Group],Passeriformes,Passerellidae (New World Sparrows),,savspa +32007,issf,savspa3,Savannah Sparrow (San Benito),Passerculus sandwichensis sanctorum,Passeriformes,Passerellidae (New World Sparrows),,savspa +32008,issf,labspa,Savannah Sparrow (Large-billed),Passerculus sandwichensis rostratus/atratus,Passeriformes,Passerellidae (New World Sparrows),,savspa +32011,species,baispa,Baird's Sparrow,Centronyx bairdii,Passeriformes,Passerellidae (New World Sparrows),, +32012,species,henspa,Henslow's Sparrow,Centronyx henslowii,Passeriformes,Passerellidae (New World Sparrows),, +32015,slash,y01081,Grasshopper/Baird's Sparrow,Ammodramus savannarum/Centronyx bairdii,Passeriformes,Passerellidae (New World Sparrows),, +32016,slash,y01082,Grasshopper/Henslow's Sparrow,Ammodramus savannarum/Centronyx henslowii,Passeriformes,Passerellidae (New World Sparrows),, +32017,species,simspa1,Sierra Madre Sparrow,Xenospiza baileyi,Passeriformes,Passerellidae (New World Sparrows),, +32018,species,sonspa,Song Sparrow,Melospiza melodia,Passeriformes,Passerellidae (New World Sparrows),, +32019,issf,sonspa2,Song Sparrow (melodia/atlantica),Melospiza melodia melodia/atlantica,Passeriformes,Passerellidae (New World Sparrows),,sonspa +32022,issf,sonspa6,Song Sparrow (sanaka/maxima),Melospiza melodia sanaka/maxima,Passeriformes,Passerellidae (New World Sparrows),,sonspa +32025,issf,sonspa4,Song Sparrow (rufina Group),Melospiza melodia [rufina Group],Passeriformes,Passerellidae (New World Sparrows),,sonspa +32031,issf,sonspa7,Song Sparrow (montana/merrilli),Melospiza melodia montana/merrilli,Passeriformes,Passerellidae (New World Sparrows),,sonspa +32034,issf,sonspa5,Song Sparrow (heermanni Group),Melospiza melodia [heermanni Group],Passeriformes,Passerellidae (New World Sparrows),,sonspa +32040,issf,sonspa8,Song Sparrow (samuelis),Melospiza melodia samuelis,Passeriformes,Passerellidae (New World Sparrows),,sonspa +32041,issf,sonspa9,Song Sparrow (pusillula),Melospiza melodia pusillula,Passeriformes,Passerellidae (New World Sparrows),,sonspa +32042,issf,sonspa1,Song Sparrow (fallax Group),Melospiza melodia [fallax Group],Passeriformes,Passerellidae (New World Sparrows),,sonspa +32046,issf,sonspa3,Song Sparrow (mexicana Group),Melospiza melodia [mexicana Group],Passeriformes,Passerellidae (New World Sparrows),,sonspa +32051,species,linspa,Lincoln's Sparrow,Melospiza lincolnii,Passeriformes,Passerellidae (New World Sparrows),, +32055,species,swaspa,Swamp Sparrow,Melospiza georgiana,Passeriformes,Passerellidae (New World Sparrows),, +32059,hybrid,x00702,Song x Swamp Sparrow (hybrid),Melospiza melodia x georgiana,Passeriformes,Passerellidae (New World Sparrows),, +32060,slash,y00688,Lincoln's/Swamp Sparrow,Melospiza lincolnii/georgiana,Passeriformes,Passerellidae (New World Sparrows),, +32061,species,laffin1,Large-footed Finch,Pezopetes capitalis,Passeriformes,Passerellidae (New World Sparrows),, +32062,species,zapspa1,Zapata Sparrow,Torreornis inexpectata,Passeriformes,Passerellidae (New World Sparrows),, +32066,species,rcgspa1,Rusty-crowned Ground-Sparrow,Melozone kieneri,Passeriformes,Passerellidae (New World Sparrows),, +32070,species,cantow,Canyon Towhee,Melozone fusca,Passeriformes,Passerellidae (New World Sparrows),, +32081,species,whttow1,White-throated Towhee,Melozone albicollis,Passeriformes,Passerellidae (New World Sparrows),, +32084,species,abetow,Abert's Towhee,Melozone aberti,Passeriformes,Passerellidae (New World Sparrows),, +32088,hybrid,x00870,Canyon x Abert's Towhee (hybrid),Melozone fusca x aberti,Passeriformes,Passerellidae (New World Sparrows),, +32089,slash,y00331,Canyon/Abert's Towhee,Melozone fusca/aberti,Passeriformes,Passerellidae (New World Sparrows),, +32090,species,caltow,California Towhee,Melozone crissalis,Passeriformes,Passerellidae (New World Sparrows),, +32099,species,wegspa1,White-eared Ground-Sparrow,Melozone leucotis,Passeriformes,Passerellidae (New World Sparrows),, +32100,issf,whegrs1,White-eared Ground-Sparrow (Gray-crowned),Melozone leucotis occipitalis,Passeriformes,Passerellidae (New World Sparrows),,wegspa1 +32101,issf,whegrs2,White-eared Ground-Sparrow (White-eared),Melozone leucotis leucotis/nigrior,Passeriformes,Passerellidae (New World Sparrows),,wegspa1 +32104,species,pregrs1,White-faced Ground-Sparrow,Melozone biarcuata,Passeriformes,Passerellidae (New World Sparrows),, +32105,species,pregrs2,Cabanis's Ground-Sparrow,Melozone cabanisi,Passeriformes,Passerellidae (New World Sparrows),, +32106,species,russpa1,Rusty Sparrow,Aimophila rufescens,Passeriformes,Passerellidae (New World Sparrows),, +32114,species,rucspa,Rufous-crowned Sparrow,Aimophila ruficeps,Passeriformes,Passerellidae (New World Sparrows),, +32127,species,oaxspa1,Oaxaca Sparrow,Aimophila notosticta,Passeriformes,Passerellidae (New World Sparrows),, +32128,species,gnttow,Green-tailed Towhee,Pipilo chlorurus,Passeriformes,Passerellidae (New World Sparrows),, +32129,species,spotow,Spotted Towhee,Pipilo maculatus,Passeriformes,Passerellidae (New World Sparrows),, +32130,issf,spotow1,Spotted Towhee (oregonus Group),Pipilo maculatus [oregonus Group],Passeriformes,Passerellidae (New World Sparrows),,spotow +32138,issf,spotow5,Spotted Towhee (arcticus),Pipilo maculatus arcticus,Passeriformes,Passerellidae (New World Sparrows),,spotow +32139,issf,spotow2,Spotted Towhee (maculatus Group),Pipilo maculatus [maculatus Group],Passeriformes,Passerellidae (New World Sparrows),,spotow +32152,issf,spotow3,Spotted Towhee (Olive-backed),Pipilo maculatus macronyx,Passeriformes,Passerellidae (New World Sparrows),,spotow +32153,issf,spotow4,Spotted Towhee (Socorro),Pipilo maculatus socorroensis,Passeriformes,Passerellidae (New World Sparrows),,spotow +32154,hybrid,x00706,Green-tailed x Spotted Towhee (hybrid),Pipilo chlorurus x maculatus,Passeriformes,Passerellidae (New World Sparrows),, +32155,species,eastow,Eastern Towhee,Pipilo erythrophthalmus,Passeriformes,Passerellidae (New World Sparrows),, +32156,issf,eastow1,Eastern Towhee (Red-eyed),Pipilo erythrophthalmus erythrophthalmus/canaster,Passeriformes,Passerellidae (New World Sparrows),,eastow +32159,issf,eastow2,Eastern Towhee (White-eyed),Pipilo erythrophthalmus alleni/rileyi,Passeriformes,Passerellidae (New World Sparrows),,eastow +32162,hybrid,x00446,Spotted x Eastern Towhee (hybrid),Pipilo maculatus x erythrophthalmus,Passeriformes,Passerellidae (New World Sparrows),, +32163,slash,y00226,Spotted/Eastern Towhee (Rufous-sided Towhee),Pipilo maculatus/erythrophthalmus,Passeriformes,Passerellidae (New World Sparrows),, +32164,species,bertow1,Bermuda Towhee,Pipilo naufragus,Passeriformes,Passerellidae (New World Sparrows),, +32165,species,coltow1,Collared Towhee,Pipilo ocai,Passeriformes,Passerellidae (New World Sparrows),, +32171,hybrid,x00445,Spotted x Collared Towhee (hybrid),Pipilo maculatus x ocai,Passeriformes,Passerellidae (New World Sparrows),, +32172,spuh,towhee1,towhee sp.,Melozone/Pipilo sp.,Passeriformes,Passerellidae (New World Sparrows),, +32173,species,rcbfin1,Rufous-capped Brushfinch,Atlapetes pileatus,Passeriformes,Passerellidae (New World Sparrows),, +32176,species,wnbfin1,White-naped Brushfinch,Atlapetes albinucha,Passeriformes,Passerellidae (New World Sparrows),, +32177,issf,whnbrf1,White-naped Brushfinch (White-naped),Atlapetes albinucha albinucha,Passeriformes,Passerellidae (New World Sparrows),,wnbfin1 +32178,issf,whnbrf2,White-naped Brushfinch (Yellow-throated),Atlapetes albinucha [gutturalis Group],Passeriformes,Passerellidae (New World Sparrows),,wnbfin1 +32186,species,yetfin1,Yellow-thighed Brushfinch,Atlapetes tibialis,Passeriformes,Passerellidae (New World Sparrows),, +32187,species,yegfin1,Yellow-green Brushfinch,Atlapetes luteoviridis,Passeriformes,Passerellidae (New World Sparrows),, +32188,species,mobfin1,Moustached Brushfinch,Atlapetes albofrenatus,Passeriformes,Passerellidae (New World Sparrows),, +32189,issf,moubru1,Moustached Brushfinch (Moustached),Atlapetes albofrenatus albofrenatus,Passeriformes,Passerellidae (New World Sparrows),,mobfin1 +32190,issf,moubru2,Moustached Brushfinch (Merida),Atlapetes albofrenatus meridae,Passeriformes,Passerellidae (New World Sparrows),,mobfin1 +32191,species,tebfin1,Tepui Brushfinch,Atlapetes personatus,Passeriformes,Passerellidae (New World Sparrows),, +32198,species,smbfin1,Santa Marta Brushfinch,Atlapetes melanocephalus,Passeriformes,Passerellidae (New World Sparrows),, +32199,species,obbfin1,Ochre-breasted Brushfinch,Atlapetes semirufus,Passeriformes,Passerellidae (New World Sparrows),, +32206,species,yehbrf1,Yellow-headed Brushfinch,Atlapetes flaviceps,Passeriformes,Passerellidae (New World Sparrows),, +32207,species,dhbfin1,Dusky-headed Brushfinch,Atlapetes fuscoolivaceus,Passeriformes,Passerellidae (New World Sparrows),, +32208,species,wrbfin1,White-rimmed Brushfinch,Atlapetes leucopis,Passeriformes,Passerellidae (New World Sparrows),, +32209,species,whbfin1,White-headed Brushfinch,Atlapetes albiceps,Passeriformes,Passerellidae (New World Sparrows),, +32210,species,rebfin1,Rufous-eared Brushfinch,Atlapetes rufigenis,Passeriformes,Passerellidae (New World Sparrows),, +32211,species,trbfin1,Tricolored Brushfinch,Atlapetes tricolor,Passeriformes,Passerellidae (New World Sparrows),, +32212,issf,tribrf1,Tricolored Brushfinch (Choco),Atlapetes tricolor crassus,Passeriformes,Passerellidae (New World Sparrows),,trbfin1 +32213,issf,tribrf2,Tricolored Brushfinch (Tricolored),Atlapetes tricolor tricolor,Passeriformes,Passerellidae (New World Sparrows),,trbfin1 +32214,species,slbfin2,Slaty Brushfinch,Atlapetes schistaceus,Passeriformes,Passerellidae (New World Sparrows),, +32215,issf,slabru1,Slaty Brushfinch (Slaty),Atlapetes schistaceus [schistaceus Group],Passeriformes,Passerellidae (New World Sparrows),,slbfin2 +32220,issf,slabru2,Slaty Brushfinch (Taczanowski's),Atlapetes schistaceus taczanowskii,Passeriformes,Passerellidae (New World Sparrows),,slbfin2 +32221,species,pnbfin1,Pale-naped Brushfinch,Atlapetes pallidinucha,Passeriformes,Passerellidae (New World Sparrows),, +32224,species,antbrf1,Antioquia Brushfinch,Atlapetes blancae,Passeriformes,Passerellidae (New World Sparrows),, +32225,species,yebbrf1,Yellow-breasted Brushfinch,Atlapetes latinuchus,Passeriformes,Passerellidae (New World Sparrows),, +32226,issf,yebbru1,Yellow-breasted Brushfinch (nigrifrons),Atlapetes latinuchus nigrifrons,Passeriformes,Passerellidae (New World Sparrows),,yebbrf1 +32227,issf,yebbru2,Yellow-breasted Brushfinch (Yellow-breasted),Atlapetes latinuchus [latinuchus Group],Passeriformes,Passerellidae (New World Sparrows),,yebbrf1 +32236,species,wwbfin1,White-winged Brushfinch,Atlapetes leucopterus,Passeriformes,Passerellidae (New World Sparrows),, +32237,issf,whwbrf1,White-winged Brushfinch (White-winged),Atlapetes leucopterus leucopterus/dresseri,Passeriformes,Passerellidae (New World Sparrows),,wwbfin1 +32240,issf,whwbrf2,White-winged Brushfinch (Paynter's),Atlapetes leucopterus paynteri,Passeriformes,Passerellidae (New World Sparrows),,wwbfin1 +32241,species,phbfin1,Pale-headed Brushfinch,Atlapetes pallidiceps,Passeriformes,Passerellidae (New World Sparrows),, +32242,species,bcbfin1,Bay-crowned Brushfinch,Atlapetes seebohmi,Passeriformes,Passerellidae (New World Sparrows),, +32246,species,rbbfin1,Rusty-bellied Brushfinch,Atlapetes nationi,Passeriformes,Passerellidae (New World Sparrows),, +32249,species,apubrf1,Apurimac Brushfinch,Atlapetes forbesi,Passeriformes,Passerellidae (New World Sparrows),, +32250,species,bksbrf1,Black-spectacled Brushfinch,Atlapetes melanopsis,Passeriformes,Passerellidae (New World Sparrows),, +32251,species,vilbrf1,Vilcabamba Brushfinch,Atlapetes terborghi,Passeriformes,Passerellidae (New World Sparrows),, +32252,species,cuzbrf1,Cuzco Brushfinch,Atlapetes canigenis,Passeriformes,Passerellidae (New World Sparrows),, +32253,species,bkfbrf1,Black-faced Brushfinch,Atlapetes melanolaemus,Passeriformes,Passerellidae (New World Sparrows),, +32254,species,rnbfin1,Bolivian Brushfinch,Atlapetes rufinucha,Passeriformes,Passerellidae (New World Sparrows),, +32257,species,fhbfin1,Fulvous-headed Brushfinch,Atlapetes fulviceps,Passeriformes,Passerellidae (New World Sparrows),, +32258,species,ysbfin1,Yellow-striped Brushfinch,Atlapetes citrinellus,Passeriformes,Passerellidae (New World Sparrows),, +32259,spuh,brush-1,Atlapetes sp.,Atlapetes sp.,Passeriformes,Passerellidae (New World Sparrows),, +32260,spuh,sparro1,sparrow sp.,Passerellidae sp. (sparrow sp.),Passeriformes,Passerellidae (New World Sparrows),, +32261,species,wectan1,Western Chat-Tanager,Calyptophilus tertius,Passeriformes,Calyptophilidae (Chat-Tanagers),Chat-Tanagers and Hispaniolan Tanagers, +32262,species,eactan1,Eastern Chat-Tanager,Calyptophilus frugivorus,Passeriformes,Calyptophilidae (Chat-Tanagers),, +32266,species,bcptan1,Black-crowned Palm-Tanager,Phaenicophilus palmarum,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, +32267,species,gcptan1,Gray-crowned Palm-Tanager,Phaenicophilus poliocephalus,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, +32270,hybrid,x00901,Black-crowned x Gray-crowned Palm-Tanager (hybrid),Phaenicophilus palmarum x poliocephalus,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, +32271,slash,y01166,Black-crowned/Gray-crowned Palm-Tanager,Phaenicophilus palmarum/poliocephalus,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, +32272,species,whwwar1,White-winged Warbler,Xenoligea montana,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, +32273,species,grtwar1,Green-tailed Warbler,Microligea palustris,Passeriformes,Phaenicophilidae (Hispaniolan Tanagers),, +32276,species,purtan1,Puerto Rican Tanager,Nesospingus speculiferus,Passeriformes,Nesospingidae (Puerto Rican Tanager),Puerto Rican Tanager, +32277,species,wesspi,Western Spindalis,Spindalis zena,Passeriformes,Spindalidae (Spindalises),Spindalises, +32278,issf,wesspi2,Western Spindalis (Bahamas Black-backed),Spindalis zena zena,Passeriformes,Spindalidae (Spindalises),,wesspi +32279,issf,wesspi3,Western Spindalis (Bahamas Green-backed),Spindalis zena townsendi,Passeriformes,Spindalidae (Spindalises),,wesspi +32280,issf,wesspi4,Western Spindalis (Cuban),Spindalis zena pretrei,Passeriformes,Spindalidae (Spindalises),,wesspi +32281,issf,wesspi5,Western Spindalis (Grand Cayman I.),Spindalis zena salvini,Passeriformes,Spindalidae (Spindalises),,wesspi +32282,issf,wesspi6,Western Spindalis (Cozumel I.),Spindalis zena benedicti,Passeriformes,Spindalidae (Spindalises),,wesspi +32283,species,jamspi,Jamaican Spindalis,Spindalis nigricephala,Passeriformes,Spindalidae (Spindalises),, +32284,species,hisspi,Hispaniolan Spindalis,Spindalis dominicensis,Passeriformes,Spindalidae (Spindalises),, +32285,species,purspi,Puerto Rican Spindalis,Spindalis portoricensis,Passeriformes,Spindalidae (Spindalises),, +32286,species,wrenth1,Wrenthrush,Zeledonia coronata,Passeriformes,Zeledoniidae (Wrenthrush),Wrenthrush, +32287,species,yehwar1,Yellow-headed Warbler,Teretistris fernandinae,Passeriformes,Teretistridae (Cuban Warblers),Cuban Warblers, +32288,species,oriwar1,Oriente Warbler,Teretistris fornsi,Passeriformes,Teretistridae (Cuban Warblers),, +32291,hybrid,x00935,Yellow-headed x Oriente Warbler (hybrid),Teretistris fernandinae x fornsi,Passeriformes,Teretistridae (Cuban Warblers),, +32292,slash,y01167,Yellow-headed/Oriente Warbler,Teretistris fernandinae/fornsi,Passeriformes,Teretistridae (Cuban Warblers),, +32293,species,yebcha,Yellow-breasted Chat,Icteria virens,Passeriformes,Icteriidae (Yellow-breasted Chat),Yellow-breasted Chat, +32294,issf,yebcha1,Yellow-breasted Chat (virens),Icteria virens virens,Passeriformes,Icteriidae (Yellow-breasted Chat),,yebcha +32295,issf,yebcha2,Yellow-breasted Chat (auricollis),Icteria virens auricollis,Passeriformes,Icteriidae (Yellow-breasted Chat),,yebcha +32296,species,yehbla,Yellow-headed Blackbird,Xanthocephalus xanthocephalus,Passeriformes,Icteridae (Troupials and Allies),Blackbirds, +32297,species,boboli,Bobolink,Dolichonyx oryzivorus,Passeriformes,Icteridae (Troupials and Allies),, +32298,species,wesmea,Western Meadowlark,Sturnella neglecta,Passeriformes,Icteridae (Troupials and Allies),, +32301,species,easmea,Eastern Meadowlark,Sturnella magna,Passeriformes,Icteridae (Troupials and Allies),, +32302,issf,easmea3,Eastern Meadowlark (Cuban),Sturnella magna hippocrepis,Passeriformes,Icteridae (Troupials and Allies),,easmea +32303,issf,easmea2,Eastern Meadowlark (Eastern),Sturnella magna [magna Group],Passeriformes,Icteridae (Troupials and Allies),,easmea +32317,issf,lilmea2,Eastern Meadowlark (Lilian's),Sturnella magna [lilianae Group],Passeriformes,Icteridae (Troupials and Allies),,easmea +32321,hybrid,x00827,Western x Eastern Meadowlark (hybrid),Sturnella neglecta x magna,Passeriformes,Icteridae (Troupials and Allies),, +32322,slash,meadow,Western/Eastern Meadowlark,Sturnella neglecta/magna,Passeriformes,Icteridae (Troupials and Allies),, +32323,species,rebbla1,Red-breasted Meadowlark,Leistes militaris,Passeriformes,Icteridae (Troupials and Allies),, +32324,species,whbbla2,White-browed Meadowlark,Leistes superciliaris,Passeriformes,Icteridae (Troupials and Allies),, +32325,species,permea1,Peruvian Meadowlark,Leistes bellicosus,Passeriformes,Icteridae (Troupials and Allies),, +32328,species,pammea1,Pampas Meadowlark,Leistes defilippii,Passeriformes,Icteridae (Troupials and Allies),, +32329,species,lotmea1,Long-tailed Meadowlark,Leistes loyca,Passeriformes,Icteridae (Troupials and Allies),, +32333,species,yebcac1,Yellow-billed Cacique,Amblycercus holosericeus,Passeriformes,Icteridae (Troupials and Allies),, +32334,issf,yebcac2,Yellow-billed Cacique (Prevost's),Amblycercus holosericeus holosericeus/flavirostris,Passeriformes,Icteridae (Troupials and Allies),,yebcac1 +32337,issf,yebcac3,Yellow-billed Cacique (Chapman's),Amblycercus holosericeus australis,Passeriformes,Icteridae (Troupials and Allies),,yebcac1 +32338,species,yewcac1,Yellow-winged Cacique,Cassiculus melanicterus,Passeriformes,Icteridae (Troupials and Allies),, +32339,species,ruboro1,Russet-backed Oropendola,Psarocolius angustifrons,Passeriformes,Icteridae (Troupials and Allies),, +32340,issf,ruboro2,Russet-backed Oropendola (Russet-backed),Psarocolius angustifrons [angustifrons Group],Passeriformes,Icteridae (Troupials and Allies),,ruboro1 +32347,issf,ruboro3,Russet-backed Oropendola (Green-billed),Psarocolius angustifrons oleagineus,Passeriformes,Icteridae (Troupials and Allies),,ruboro1 +32348,species,dugoro1,Dusky-green Oropendola,Psarocolius atrovirens,Passeriformes,Icteridae (Troupials and Allies),, +32349,species,greoro1,Green Oropendola,Psarocolius viridis,Passeriformes,Icteridae (Troupials and Allies),, +32350,species,creoro1,Crested Oropendola,Psarocolius decumanus,Passeriformes,Icteridae (Troupials and Allies),, +32355,species,chhoro1,Chestnut-headed Oropendola,Psarocolius wagleri,Passeriformes,Icteridae (Troupials and Allies),, +32358,species,monoro1,Montezuma Oropendola,Psarocolius montezuma,Passeriformes,Icteridae (Troupials and Allies),, +32359,species,blaoro1,Black Oropendola,Psarocolius guatimozinus,Passeriformes,Icteridae (Troupials and Allies),, +32360,species,bauoro2,Baudo Oropendola,Psarocolius cassini,Passeriformes,Icteridae (Troupials and Allies),, +32361,species,olioro1,Olive Oropendola,Psarocolius bifasciatus,Passeriformes,Icteridae (Troupials and Allies),, +32362,issf,olioro2,Olive Oropendola (Amazonian),Psarocolius bifasciatus yuracares/neivae,Passeriformes,Icteridae (Troupials and Allies),,olioro1 +32365,issf,olioro3,Olive Oropendola (Para),Psarocolius bifasciatus bifasciatus,Passeriformes,Icteridae (Troupials and Allies),,olioro1 +32366,spuh,oropen1,oropendola sp.,Psarocolius sp.,Passeriformes,Icteridae (Troupials and Allies),, +32367,species,sobcac1,Solitary Black Cacique,Cacicus solitarius,Passeriformes,Icteridae (Troupials and Allies),, +32368,species,gowcac1,Golden-winged Cacique,Cacicus chrysopterus,Passeriformes,Icteridae (Troupials and Allies),, +32369,species,ecucac1,Ecuadorian Cacique,Cacicus sclateri,Passeriformes,Icteridae (Troupials and Allies),, +32370,species,selcac1,Selva Cacique,Cacicus koepckeae,Passeriformes,Icteridae (Troupials and Allies),, +32371,species,scrcac1,Scarlet-rumped Cacique,Cacicus uropygialis,Passeriformes,Icteridae (Troupials and Allies),, +32372,issf,scrcac2,Scarlet-rumped Cacique (Scarlet-rumped),Cacicus uropygialis microrhynchus,Passeriformes,Icteridae (Troupials and Allies),,scrcac1 +32373,issf,scrcac3,Scarlet-rumped Cacique (Pacific),Cacicus uropygialis pacificus,Passeriformes,Icteridae (Troupials and Allies),,scrcac1 +32374,issf,scrcac4,Scarlet-rumped Cacique (Subtropical),Cacicus uropygialis uropygialis,Passeriformes,Icteridae (Troupials and Allies),,scrcac1 +32375,species,yercac1,Yellow-rumped Cacique,Cacicus cela,Passeriformes,Icteridae (Troupials and Allies),, +32376,issf,yercac3,Yellow-rumped Cacique (Western),Cacicus cela flavicrissus/vitellinus,Passeriformes,Icteridae (Troupials and Allies),,yercac1 +32379,issf,yercac2,Yellow-rumped Cacique (Amazonian),Cacicus cela cela,Passeriformes,Icteridae (Troupials and Allies),,yercac1 +32380,species,moucac1,Mountain Cacique,Cacicus chrysonotus,Passeriformes,Icteridae (Troupials and Allies),, +32381,issf,moucac2,Mountain Cacique (Golden-shouldered),Cacicus chrysonotus leucoramphus/peruvianus,Passeriformes,Icteridae (Troupials and Allies),,moucac1 +32384,issf,moucac3,Mountain Cacique (Bolivian),Cacicus chrysonotus chrysonotus,Passeriformes,Icteridae (Troupials and Allies),,moucac1 +32385,species,batoro1,Band-tailed Cacique,Cacicus latirostris,Passeriformes,Icteridae (Troupials and Allies),, +32386,species,rercac1,Red-rumped Cacique,Cacicus haemorrhous,Passeriformes,Icteridae (Troupials and Allies),, +32389,species,casoro2,Casqued Cacique,Cacicus oseryi,Passeriformes,Icteridae (Troupials and Allies),, +32390,spuh,caciqu1,cacique sp.,Cacicus sp.,Passeriformes,Icteridae (Troupials and Allies),, +32391,species,graori1,Hispaniolan Oriole,Icterus dominicensis,Passeriformes,Icteridae (Troupials and Allies),, +32392,species,graori2,Cuban Oriole,Icterus melanopsis,Passeriformes,Icteridae (Troupials and Allies),, +32393,species,graori3,Bahama Oriole,Icterus northropi,Passeriformes,Icteridae (Troupials and Allies),, +32394,species,graori4,Puerto Rican Oriole,Icterus portoricensis,Passeriformes,Icteridae (Troupials and Allies),, +32395,species,stlori1,St. Lucia Oriole,Icterus laudabilis,Passeriformes,Icteridae (Troupials and Allies),, +32396,species,monori1,Montserrat Oriole,Icterus oberi,Passeriformes,Icteridae (Troupials and Allies),, +32397,species,marori1,Martinique Oriole,Icterus bonana,Passeriformes,Icteridae (Troupials and Allies),, +32398,species,bkvori,Black-vented Oriole,Icterus wagleri,Passeriformes,Icteridae (Troupials and Allies),, +32401,species,bawori1,Bar-winged Oriole,Icterus maculialatus,Passeriformes,Icteridae (Troupials and Allies),, +32402,species,bkcori,Black-cowled Oriole,Icterus prosthemelas,Passeriformes,Icteridae (Troupials and Allies),, +32405,species,orcori,Orchard Oriole,Icterus spurius,Passeriformes,Icteridae (Troupials and Allies),, +32406,issf,orcori2,Orchard Oriole (Orchard),Icterus spurius spurius,Passeriformes,Icteridae (Troupials and Allies),,orcori +32407,issf,orcori3,Orchard Oriole (Fuertes's),Icterus spurius fuertesi,Passeriformes,Icteridae (Troupials and Allies),,orcori +32408,species,hooori,Hooded Oriole,Icterus cucullatus,Passeriformes,Icteridae (Troupials and Allies),, +32409,issf,hooori2,Hooded Oriole (cucullatus/sennetti),Icterus cucullatus cucullatus/sennetti,Passeriformes,Icteridae (Troupials and Allies),,hooori +32412,issf,hooori1,Hooded Oriole (nelsoni Group),Icterus cucullatus [nelsoni Group],Passeriformes,Icteridae (Troupials and Allies),,hooori +32416,issf,hooori3,Hooded Oriole (igneus),Icterus cucullatus igneus,Passeriformes,Icteridae (Troupials and Allies),,hooori +32417,slash,y00488,Orchard/Hooded Oriole,Icterus spurius/cucullatus,Passeriformes,Icteridae (Troupials and Allies),, +32418,species,yebori1,Yellow-backed Oriole,Icterus chrysater,Passeriformes,Icteridae (Troupials and Allies),, +32423,species,orcori1,Orange-crowned Oriole,Icterus auricapillus,Passeriformes,Icteridae (Troupials and Allies),, +32424,species,wheori1,White-edged Oriole,Icterus graceannae,Passeriformes,Icteridae (Troupials and Allies),, +32425,species,yetori1,Yellow-tailed Oriole,Icterus mesomelas,Passeriformes,Icteridae (Troupials and Allies),, +32431,slash,y00927,White-edged/Yellow-tailed Oriole,Icterus graceannae/mesomelas,Passeriformes,Icteridae (Troupials and Allies),, +32432,species,epaori1,Epaulet Oriole,Icterus cayanensis,Passeriformes,Icteridae (Troupials and Allies),, +32433,issf,epaori2,Epaulet Oriole (Moriche),Icterus cayanensis chrysocephalus,Passeriformes,Icteridae (Troupials and Allies),,epaori1 +32434,issf,epaori3,Epaulet Oriole (Epaulet),Icterus cayanensis cayanensis,Passeriformes,Icteridae (Troupials and Allies),,epaori1 +32435,species,epaori4,Variable Oriole,Icterus pyrrhopterus,Passeriformes,Icteridae (Troupials and Allies),, +32436,issf,varori2,Variable Oriole (Yellow-shouldered),Icterus pyrrhopterus tibialis,Passeriformes,Icteridae (Troupials and Allies),,epaori4 +32437,issf,varori1,Variable Oriole (Chestnut-shouldered),Icterus pyrrhopterus [pyrrhopterus Group],Passeriformes,Icteridae (Troupials and Allies),,epaori4 +32441,species,ventro1,Venezuelan Troupial,Icterus icterus,Passeriformes,Icteridae (Troupials and Allies),, +32445,species,camtro1,Campo Troupial,Icterus jamacaii,Passeriformes,Icteridae (Troupials and Allies),, +32446,species,orbtro3,Orange-backed Troupial,Icterus croconotus,Passeriformes,Icteridae (Troupials and Allies),, +32449,spuh,troupi1,troupial sp.,Icterus icterus/croconotus/jamacaii,Passeriformes,Icteridae (Troupials and Allies),, +32450,species,stbori,Streak-backed Oriole,Icterus pustulatus,Passeriformes,Icteridae (Troupials and Allies),, +32451,issf,stbori1,Streak-backed Oriole (West Mexican),Icterus pustulatus [pustulatus Group],Passeriformes,Icteridae (Troupials and Allies),,stbori +32455,issf,stbori3,Streak-backed Oriole (Streak-backed),Icterus pustulatus [sclateri Group],Passeriformes,Icteridae (Troupials and Allies),,stbori +32460,issf,stbori2,Streak-backed Oriole (Tres Marias Is.),Icterus pustulatus graysonii,Passeriformes,Icteridae (Troupials and Allies),,stbori +32461,species,bulori,Bullock's Oriole,Icterus bullockii,Passeriformes,Icteridae (Troupials and Allies),, +32464,species,oraori1,Orange Oriole,Icterus auratus,Passeriformes,Icteridae (Troupials and Allies),, +32465,species,jamori1,Jamaican Oriole,Icterus leucopteryx,Passeriformes,Icteridae (Troupials and Allies),, +32469,species,yelori1,Yellow Oriole,Icterus nigrogularis,Passeriformes,Icteridae (Troupials and Allies),, +32474,species,spbori,Spot-breasted Oriole,Icterus pectoralis,Passeriformes,Icteridae (Troupials and Allies),, +32477,species,altori,Altamira Oriole,Icterus gularis,Passeriformes,Icteridae (Troupials and Allies),, +32484,species,audori,Audubon's Oriole,Icterus graduacauda,Passeriformes,Icteridae (Troupials and Allies),, +32485,issf,audori1,Audubon's Oriole (Audubon's),Icterus graduacauda graduacauda/audubonii,Passeriformes,Icteridae (Troupials and Allies),,audori +32488,issf,audori2,Audubon's Oriole (Dickey's),Icterus graduacauda dickeyae/nayaritensis,Passeriformes,Icteridae (Troupials and Allies),,audori +32491,hybrid,x00449,Altamira x Audubon's Oriole (hybrid),Icterus gularis x graduacauda,Passeriformes,Icteridae (Troupials and Allies),, +32492,species,balori,Baltimore Oriole,Icterus galbula,Passeriformes,Icteridae (Troupials and Allies),, +32493,hybrid,x00013,Bullock's x Baltimore Oriole (hybrid),Icterus bullockii x galbula,Passeriformes,Icteridae (Troupials and Allies),, +32494,slash,y00022,Bullock's/Baltimore Oriole,Icterus bullockii/galbula,Passeriformes,Icteridae (Troupials and Allies),, +32495,species,blbori1,Black-backed Oriole,Icterus abeillei,Passeriformes,Icteridae (Troupials and Allies),, +32496,hybrid,x00903,Bullock's x Black-backed Oriole (hybrid),Icterus bullockii x abeillei,Passeriformes,Icteridae (Troupials and Allies),, +32497,slash,y00630,Bullock's/Black-backed Oriole,Icterus bullockii/abeillei,Passeriformes,Icteridae (Troupials and Allies),, +32498,species,scoori,Scott's Oriole,Icterus parisorum,Passeriformes,Icteridae (Troupials and Allies),, +32499,spuh,oriole,new world oriole sp.,Icterus sp.,Passeriformes,Icteridae (Troupials and Allies),, +32500,species,jambla1,Jamaican Blackbird,Nesopsar nigerrimus,Passeriformes,Icteridae (Troupials and Allies),, +32501,species,rewbla,Red-winged Blackbird,Agelaius phoeniceus,Passeriformes,Icteridae (Troupials and Allies),, +32502,issf,rewbla1,Red-winged Blackbird (Red-winged),Agelaius phoeniceus [phoeniceus Group],Passeriformes,Icteridae (Troupials and Allies),,rewbla +32524,issf,rewbla2,Red-winged Blackbird (California Bicolored),Agelaius phoeniceus californicus/mailliardorum,Passeriformes,Icteridae (Troupials and Allies),,rewbla +32527,issf,rewbla3,Red-winged Blackbird (Mexican Bicolored),Agelaius phoeniceus gubernator,Passeriformes,Icteridae (Troupials and Allies),,rewbla +32528,species,resbla1,Red-shouldered Blackbird,Agelaius assimilis,Passeriformes,Icteridae (Troupials and Allies),, +32531,species,tribla,Tricolored Blackbird,Agelaius tricolor,Passeriformes,Icteridae (Troupials and Allies),, +32532,slash,y00651,Red-winged/Tricolored Blackbird,Agelaius phoeniceus/tricolor,Passeriformes,Icteridae (Troupials and Allies),, +32533,species,tasbla,Tawny-shouldered Blackbird,Agelaius humeralis,Passeriformes,Icteridae (Troupials and Allies),, +32536,slash,y00926,Red-shouldered/Tawny-shouldered Blackbird,Agelaius assimilis/humeralis,Passeriformes,Icteridae (Troupials and Allies),, +32537,species,yesbla1,Yellow-shouldered Blackbird,Agelaius xanthomus,Passeriformes,Icteridae (Troupials and Allies),, +32540,species,scrcow1,Screaming Cowbird,Molothrus rufoaxillaris,Passeriformes,Icteridae (Troupials and Allies),, +32541,species,shicow,Shiny Cowbird,Molothrus bonariensis,Passeriformes,Icteridae (Troupials and Allies),, +32549,slash,y00828,Screaming/Shiny Cowbird,Molothrus rufoaxillaris/bonariensis,Passeriformes,Icteridae (Troupials and Allies),, +32550,species,brocow,Bronzed Cowbird,Molothrus aeneus,Passeriformes,Icteridae (Troupials and Allies),, +32551,issf,brocow1,Bronzed Cowbird (Bronzed),Molothrus aeneus [aeneus Group],Passeriformes,Icteridae (Troupials and Allies),,brocow +32555,issf,brocow2,Bronzed Cowbird (Bronze-brown),Molothrus aeneus armenti,Passeriformes,Icteridae (Troupials and Allies),,brocow +32556,slash,y01117,Shiny/Bronzed Cowbird,Molothrus bonariensis/aeneus,Passeriformes,Icteridae (Troupials and Allies),, +32557,species,bnhcow,Brown-headed Cowbird,Molothrus ater,Passeriformes,Icteridae (Troupials and Allies),, +32562,slash,y00336,Shiny/Brown-headed Cowbird,Molothrus bonariensis/ater,Passeriformes,Icteridae (Troupials and Allies),, +32563,slash,y00337,Bronzed/Brown-headed Cowbird,Molothrus aeneus/ater,Passeriformes,Icteridae (Troupials and Allies),, +32564,species,giacow,Giant Cowbird,Molothrus oryzivorus,Passeriformes,Icteridae (Troupials and Allies),, +32567,species,melbla1,Melodious Blackbird,Dives dives,Passeriformes,Icteridae (Troupials and Allies),, +32568,species,scrbla1,Scrub Blackbird,Dives warczewiczi,Passeriformes,Icteridae (Troupials and Allies),, +32571,species,cubbla,Cuban Blackbird,Ptiloxena atroviolacea,Passeriformes,Icteridae (Troupials and Allies),, +32572,species,rusbla,Rusty Blackbird,Euphagus carolinus,Passeriformes,Icteridae (Troupials and Allies),, +32575,species,brebla,Brewer's Blackbird,Euphagus cyanocephalus,Passeriformes,Icteridae (Troupials and Allies),, +32576,slash,y00227,Rusty/Brewer's Blackbird,Euphagus carolinus/cyanocephalus,Passeriformes,Icteridae (Troupials and Allies),, +32577,species,comgra,Common Grackle,Quiscalus quiscula,Passeriformes,Icteridae (Troupials and Allies),, +32578,issf,comgra1,Common Grackle (Purple),Quiscalus quiscula quiscula/stonei,Passeriformes,Icteridae (Troupials and Allies),,comgra +32581,issf,comgra2,Common Grackle (Bronzed),Quiscalus quiscula versicolor,Passeriformes,Icteridae (Troupials and Allies),,comgra +32582,species,botgra,Boat-tailed Grackle,Quiscalus major,Passeriformes,Icteridae (Troupials and Allies),, +32583,issf,botgra1,Boat-tailed Grackle (major),Quiscalus major major,Passeriformes,Icteridae (Troupials and Allies),,botgra +32584,issf,botgra2,Boat-tailed Grackle (torreyi/alabamensis),Quiscalus major torreyi/alabamensis,Passeriformes,Icteridae (Troupials and Allies),,botgra +32587,issf,botgra3,Boat-tailed Grackle (westoni),Quiscalus major westoni,Passeriformes,Icteridae (Troupials and Allies),,botgra +32588,species,grtgra,Great-tailed Grackle,Quiscalus mexicanus,Passeriformes,Icteridae (Troupials and Allies),, +32589,issf,grtgra1,Great-tailed Grackle (Western),Quiscalus mexicanus [graysoni Group],Passeriformes,Icteridae (Troupials and Allies),,grtgra +32593,issf,grtgra2,Great-tailed Grackle (Great-tailed),Quiscalus mexicanus [mexicanus Group],Passeriformes,Icteridae (Troupials and Allies),,grtgra +32599,hybrid,x00753,Brewer's Blackbird x Great-tailed Grackle (hybrid),Euphagus cyanocephalus x Quiscalus mexicanus,Passeriformes,Icteridae (Troupials and Allies),, +32600,hybrid,x00977,Boat-tailed x Great-tailed Grackle (hybrid),Quiscalus major x mexicanus,Passeriformes,Icteridae (Troupials and Allies),, +32601,slash,y00629,Boat-tailed/Great-tailed Grackle,Quiscalus major/mexicanus,Passeriformes,Icteridae (Troupials and Allies),, +32602,species,slbgra1,Slender-billed Grackle,Quiscalus palustris,Passeriformes,Icteridae (Troupials and Allies),, +32603,species,nicgra1,Nicaraguan Grackle,Quiscalus nicaraguensis,Passeriformes,Icteridae (Troupials and Allies),, +32604,species,gragra1,Greater Antillean Grackle,Quiscalus niger,Passeriformes,Icteridae (Troupials and Allies),, +32612,species,cargra1,Carib Grackle,Quiscalus lugubris,Passeriformes,Icteridae (Troupials and Allies),, +32621,spuh,grackl,grackle sp.,Quiscalus sp.,Passeriformes,Icteridae (Troupials and Allies),, +32622,species,rebgra1,Red-bellied Grackle,Hypopyrrhus pyrohypogaster,Passeriformes,Icteridae (Troupials and Allies),, +32623,species,vefgra1,Velvet-fronted Grackle,Lampropsar tanagrinus,Passeriformes,Icteridae (Troupials and Allies),, +32629,species,oribla1,Oriole Blackbird,Gymnomystax mexicanus,Passeriformes,Icteridae (Troupials and Allies),, +32630,species,mougra1,Mountain Grackle,Macroagelaius subalaris,Passeriformes,Icteridae (Troupials and Allies),, +32631,species,gotgra1,Golden-tufted Grackle,Macroagelaius imthurni,Passeriformes,Icteridae (Troupials and Allies),, +32632,species,ausbla1,Austral Blackbird,Curaeus curaeus,Passeriformes,Icteridae (Troupials and Allies),, +32636,species,schbla1,Scarlet-headed Blackbird,Amblyramphus holosericeus,Passeriformes,Icteridae (Troupials and Allies),, +32637,species,forbla1,Forbes's Blackbird,Anumara forbesi,Passeriformes,Icteridae (Troupials and Allies),, +32638,species,chobla1,Chopi Blackbird,Gnorimopsar chopi,Passeriformes,Icteridae (Troupials and Allies),, +32641,species,bolbla1,Bolivian Blackbird,Oreopsar bolivianus,Passeriformes,Icteridae (Troupials and Allies),, +32642,species,bawcow4,Grayish Baywing,Agelaioides badius,Passeriformes,Icteridae (Troupials and Allies),, +32645,species,bawcow3,Pale Baywing,Agelaioides fringillarius,Passeriformes,Icteridae (Troupials and Allies),, +32646,slash,bawcow2,Grayish/Pale Baywing,Agelaioides badius/fringillarius,Passeriformes,Icteridae (Troupials and Allies),, +32647,species,paebla2,Pale-eyed Blackbird,Agelasticus xanthophthalmus,Passeriformes,Icteridae (Troupials and Allies),, +32648,species,unibla2,Unicolored Blackbird,Agelasticus cyanopus,Passeriformes,Icteridae (Troupials and Allies),, +32649,issf,unibla1,Unicolored Blackbird (Azara's),Agelasticus cyanopus atroolivaceus/unicolor,Passeriformes,Icteridae (Troupials and Allies),,unibla2 +32652,issf,unibla3,Unicolored Blackbird (Yellow-breasted),Agelasticus cyanopus cyanopus,Passeriformes,Icteridae (Troupials and Allies),,unibla2 +32653,species,yewbla2,Yellow-winged Blackbird,Agelasticus thilius,Passeriformes,Icteridae (Troupials and Allies),, +32657,species,chcbla2,Chestnut-capped Blackbird,Chrysomus ruficapillus,Passeriformes,Icteridae (Troupials and Allies),, +32660,species,yehbla2,Yellow-hooded Blackbird,Chrysomus icterocephalus,Passeriformes,Icteridae (Troupials and Allies),, +32663,species,sacbla2,Saffron-cowled Blackbird,Xanthopsar flavus,Passeriformes,Icteridae (Troupials and Allies),, +32664,species,yermar1,Yellow-rumped Marshbird,Pseudoleistes guirahuro,Passeriformes,Icteridae (Troupials and Allies),, +32665,species,baymar1,Brown-and-yellow Marshbird,Pseudoleistes virescens,Passeriformes,Icteridae (Troupials and Allies),, +32666,spuh,blackb,blackbird sp.,Icteridae sp.,Passeriformes,Icteridae (Troupials and Allies),, +32667,species,ovenbi1,Ovenbird,Seiurus aurocapilla,Passeriformes,Parulidae (New World Warblers),Wood-Warblers, +32671,species,woewar1,Worm-eating Warbler,Helmitheros vermivorum,Passeriformes,Parulidae (New World Warblers),, +32672,species,louwat,Louisiana Waterthrush,Parkesia motacilla,Passeriformes,Parulidae (New World Warblers),, +32673,species,norwat,Northern Waterthrush,Parkesia noveboracensis,Passeriformes,Parulidae (New World Warblers),, +32674,slash,y00598,Louisiana/Northern Waterthrush,Parkesia motacilla/noveboracensis,Passeriformes,Parulidae (New World Warblers),, +32675,species,bacwar,Bachman's Warbler,Vermivora bachmanii,Passeriformes,Parulidae (New World Warblers),, +32676,species,gowwar,Golden-winged Warbler,Vermivora chrysoptera,Passeriformes,Parulidae (New World Warblers),, +32677,species,buwwar,Blue-winged Warbler,Vermivora cyanoptera,Passeriformes,Parulidae (New World Warblers),, +32678,hybrid,x00669,Golden-winged x Blue-winged Warbler (hybrid),Vermivora chrysoptera x cyanoptera,Passeriformes,Parulidae (New World Warblers),, +32679,hybrid,brewar,Brewster's Warbler (hybrid),Vermivora chrysoptera x cyanoptera (F1 hybrid),Passeriformes,Parulidae (New World Warblers),, +32680,hybrid,lawwar,Lawrence's Warbler (hybrid),Vermivora chrysoptera x cyanoptera (F2 backcross),Passeriformes,Parulidae (New World Warblers),, +32681,slash,y00665,Golden-winged/Blue-winged Warbler,Vermivora chrysoptera/cyanoptera,Passeriformes,Parulidae (New World Warblers),, +32682,species,bawwar,Black-and-white Warbler,Mniotilta varia,Passeriformes,Parulidae (New World Warblers),, +32683,species,prowar,Prothonotary Warbler,Protonotaria citrea,Passeriformes,Parulidae (New World Warblers),, +32684,species,swawar,Swainson's Warbler,Limnothlypis swainsonii,Passeriformes,Parulidae (New World Warblers),, +32685,species,crcwar,Crescent-chested Warbler,Oreothlypis superciliosa,Passeriformes,Parulidae (New World Warblers),, +32691,species,fltwar1,Flame-throated Warbler,Oreothlypis gutturalis,Passeriformes,Parulidae (New World Warblers),, +32692,species,tenwar,Tennessee Warbler,Leiothlypis peregrina,Passeriformes,Parulidae (New World Warblers),, +32693,species,orcwar,Orange-crowned Warbler,Leiothlypis celata,Passeriformes,Parulidae (New World Warblers),, +32694,form,orcwar5,Orange-crowned Warbler (Gray-headed),Leiothlypis celata celata/orestera,Passeriformes,Parulidae (New World Warblers),,orcwar +32695,issf,orcwar1,Orange-crowned Warbler (celata),Leiothlypis celata celata,Passeriformes,Parulidae (New World Warblers),,orcwar +32696,issf,orcwar2,Orange-crowned Warbler (orestera),Leiothlypis celata orestera,Passeriformes,Parulidae (New World Warblers),,orcwar +32697,issf,orcwar3,Orange-crowned Warbler (lutescens),Leiothlypis celata lutescens,Passeriformes,Parulidae (New World Warblers),,orcwar +32698,issf,orcwar4,Orange-crowned Warbler (sordida),Leiothlypis celata sordida,Passeriformes,Parulidae (New World Warblers),,orcwar +32699,species,colwar,Colima Warbler,Leiothlypis crissalis,Passeriformes,Parulidae (New World Warblers),, +32700,species,lucwar,Lucy's Warbler,Leiothlypis luciae,Passeriformes,Parulidae (New World Warblers),, +32701,species,naswar,Nashville Warbler,Leiothlypis ruficapilla,Passeriformes,Parulidae (New World Warblers),, +32702,issf,naswar1,Nashville Warbler (ruficapilla),Leiothlypis ruficapilla ruficapilla,Passeriformes,Parulidae (New World Warblers),,naswar +32703,issf,naswar2,Nashville Warbler (ridgwayi),Leiothlypis ruficapilla ridgwayi,Passeriformes,Parulidae (New World Warblers),,naswar +32704,hybrid,x00819,Orange-crowned x Nashville Warbler (hybrid),Leiothlypis celata x ruficapilla,Passeriformes,Parulidae (New World Warblers),, +32705,species,virwar,Virginia's Warbler,Leiothlypis virginiae,Passeriformes,Parulidae (New World Warblers),, +32706,hybrid,x00638,Colima x Virginia's Warbler (hybrid),Leiothlypis crissalis x virginiae,Passeriformes,Parulidae (New World Warblers),, +32707,spuh,vermiv1,Leiothlypis sp.,Leiothlypis sp.,Passeriformes,Parulidae (New World Warblers),, +32708,species,semwar1,Semper's Warbler,Leucopeza semperi,Passeriformes,Parulidae (New World Warblers),, +32709,species,conwar,Connecticut Warbler,Oporornis agilis,Passeriformes,Parulidae (New World Warblers),, +32710,species,gycyel,Gray-crowned Yellowthroat,Geothlypis poliocephala,Passeriformes,Parulidae (New World Warblers),, +32717,species,masyel1,Masked Yellowthroat,Geothlypis aequinoctialis,Passeriformes,Parulidae (New World Warblers),, +32718,issf,masyel2,Masked Yellowthroat (Masked),Geothlypis aequinoctialis aequinoctialis,Passeriformes,Parulidae (New World Warblers),,masyel1 +32719,issf,masyel4,Masked Yellowthroat (Black-lored),Geothlypis aequinoctialis auricularis/peruviana,Passeriformes,Parulidae (New World Warblers),,masyel1 +32722,issf,masyel5,Masked Yellowthroat (Southern),Geothlypis aequinoctialis velata,Passeriformes,Parulidae (New World Warblers),,masyel1 +32723,species,macwar,MacGillivray's Warbler,Geothlypis tolmiei,Passeriformes,Parulidae (New World Warblers),, +32724,species,mouwar,Mourning Warbler,Geothlypis philadelphia,Passeriformes,Parulidae (New World Warblers),, +32725,hybrid,x00746,Connecticut x Mourning Warbler (hybrid),Oporornis agilis x Geothlypis philadelphia,Passeriformes,Parulidae (New World Warblers),, +32726,hybrid,x00699,MacGillivray's x Mourning Warbler (hybrid),Geothlypis tolmiei x philadelphia,Passeriformes,Parulidae (New World Warblers),, +32727,slash,oporor1,Connecticut/MacGillivray's/Mourning Warbler,Oporornis/Geothlypis sp. (Mourning-type),Passeriformes,Parulidae (New World Warblers),, +32728,slash,y00628,MacGillivray's/Mourning Warbler,Geothlypis tolmiei/philadelphia,Passeriformes,Parulidae (New World Warblers),, +32729,species,kenwar,Kentucky Warbler,Geothlypis formosa,Passeriformes,Parulidae (New World Warblers),, +32730,hybrid,x00747,Mourning x Kentucky Warbler (hybrid),Geothlypis philadelphia x formosa,Passeriformes,Parulidae (New World Warblers),, +32731,species,olcyel1,Olive-crowned Yellowthroat,Geothlypis semiflava,Passeriformes,Parulidae (New World Warblers),, +32732,issf,olcyel2,Olive-crowned Yellowthroat (Baird's),Geothlypis semiflava bairdi,Passeriformes,Parulidae (New World Warblers),,olcyel1 +32733,issf,masyel3,Olive-crowned Yellowthroat (Chiriqui),Geothlypis semiflava chiriquensis,Passeriformes,Parulidae (New World Warblers),,olcyel1 +32734,issf,olcyel3,Olive-crowned Yellowthroat (Olive-crowned),Geothlypis semiflava semiflava,Passeriformes,Parulidae (New World Warblers),,olcyel1 +32735,species,blpyel1,Black-polled Yellowthroat,Geothlypis speciosa,Passeriformes,Parulidae (New World Warblers),, +32736,species,belyel1,Belding's Yellowthroat,Geothlypis beldingi,Passeriformes,Parulidae (New World Warblers),, +32739,species,bahyel1,Bahama Yellowthroat,Geothlypis rostrata,Passeriformes,Parulidae (New World Warblers),, +32743,species,altyel1,Altamira Yellowthroat,Geothlypis flavovelata,Passeriformes,Parulidae (New World Warblers),, +32744,species,comyel,Common Yellowthroat,Geothlypis trichas,Passeriformes,Parulidae (New World Warblers),, +32745,issf,comyel1,Common Yellowthroat (arizela Group),Geothlypis trichas [arizela Group],Passeriformes,Parulidae (New World Warblers),,comyel +32749,issf,comyel2,Common Yellowthroat (melanops Group),Geothlypis trichas [melanops Group],Passeriformes,Parulidae (New World Warblers),,comyel +32755,issf,comyel3,Common Yellowthroat (trichas Group),Geothlypis trichas [trichas Group],Passeriformes,Parulidae (New World Warblers),,comyel +32759,issf,comyel5,Common Yellowthroat (insperata),Geothlypis trichas insperata,Passeriformes,Parulidae (New World Warblers),,comyel +32760,issf,comyel4,Common Yellowthroat (chapalensis),Geothlypis trichas chapalensis,Passeriformes,Parulidae (New World Warblers),,comyel +32761,hybrid,x00748,Gray-crowned x Common Yellowthroat (hybrid),Geothlypis poliocephala x trichas,Passeriformes,Parulidae (New World Warblers),, +32762,hybrid,x00749,Mourning Warbler x Common Yellowthroat (hybrid),Geothlypis philadelphia x trichas,Passeriformes,Parulidae (New World Warblers),, +32763,hybrid,x00700,MacGillivray's Warbler x Common Yellowthroat (hybrid),Geothlypis tolmiei x trichas,Passeriformes,Parulidae (New World Warblers),, +32764,species,hooyel1,Hooded Yellowthroat,Geothlypis nelsoni,Passeriformes,Parulidae (New World Warblers),, +32767,spuh,yellow7,yellowthroat sp.,Geothlypis sp. (yellowthroat sp.),Passeriformes,Parulidae (New World Warblers),, +32768,species,whiwar1,Whistling Warbler,Catharopeza bishopi,Passeriformes,Parulidae (New World Warblers),, +32769,species,pluwar1,Plumbeous Warbler,Setophaga plumbea,Passeriformes,Parulidae (New World Warblers),, +32770,species,elwwar1,Elfin-woods Warbler,Setophaga angelae,Passeriformes,Parulidae (New World Warblers),, +32771,species,arrwar1,Arrowhead Warbler,Setophaga pharetra,Passeriformes,Parulidae (New World Warblers),, +32772,species,hoowar,Hooded Warbler,Setophaga citrina,Passeriformes,Parulidae (New World Warblers),, +32773,species,amered,American Redstart,Setophaga ruticilla,Passeriformes,Parulidae (New World Warblers),, +32774,species,kirwar,Kirtland's Warbler,Setophaga kirtlandii,Passeriformes,Parulidae (New World Warblers),, +32775,species,camwar,Cape May Warbler,Setophaga tigrina,Passeriformes,Parulidae (New World Warblers),, +32776,species,cerwar,Cerulean Warbler,Setophaga cerulea,Passeriformes,Parulidae (New World Warblers),, +32777,species,norpar,Northern Parula,Setophaga americana,Passeriformes,Parulidae (New World Warblers),, +32778,hybrid,x00750,American Redstart x Northern Parula (hybrid),Setophaga ruticilla x americana,Passeriformes,Parulidae (New World Warblers),, +32779,hybrid,x00711,Cerulean Warbler x Northern Parula (hybrid),Setophaga cerulea x americana,Passeriformes,Parulidae (New World Warblers),, +32780,species,tropar,Tropical Parula,Setophaga pitiayumi,Passeriformes,Parulidae (New World Warblers),, +32781,issf,tropar1,Tropical Parula (Northeast Mexico),Setophaga pitiayumi nigrilora,Passeriformes,Parulidae (New World Warblers),,tropar +32782,issf,tropar2,Tropical Parula (West Mexico),Setophaga pitiayumi pulchra,Passeriformes,Parulidae (New World Warblers),,tropar +32783,issf,tropar3,Tropical Parula (Tres Marias Is.),Setophaga pitiayumi insularis,Passeriformes,Parulidae (New World Warblers),,tropar +32784,issf,tropar4,Tropical Parula (Socorro I.),Setophaga pitiayumi graysoni,Passeriformes,Parulidae (New World Warblers),,tropar +32785,issf,tropar5,Tropical Parula (Middle American),Setophaga pitiayumi inornata,Passeriformes,Parulidae (New World Warblers),,tropar +32786,issf,tropar7,Tropical Parula (Coiba I.),Setophaga pitiayumi cirrha,Passeriformes,Parulidae (New World Warblers),,tropar +32787,issf,tropar9,Tropical Parula (South American),Setophaga pitiayumi [pitiayumi Group],Passeriformes,Parulidae (New World Warblers),,tropar +32791,hybrid,x00203,Northern x Tropical Parula (hybrid),Setophaga americana x pitiayumi,Passeriformes,Parulidae (New World Warblers),, +32792,slash,y00827,Northern/Tropical Parula,Setophaga americana/pitiayumi,Passeriformes,Parulidae (New World Warblers),, +32793,species,magwar,Magnolia Warbler,Setophaga magnolia,Passeriformes,Parulidae (New World Warblers),, +32794,hybrid,x00820,Nashville x Magnolia Warbler (hybrid),Leiothlypis ruficapilla x Setophaga magnolia,Passeriformes,Parulidae (New World Warblers),, +32795,species,babwar,Bay-breasted Warbler,Setophaga castanea,Passeriformes,Parulidae (New World Warblers),, +32796,species,bkbwar,Blackburnian Warbler,Setophaga fusca,Passeriformes,Parulidae (New World Warblers),, +32797,hybrid,x00821,Bay-breasted x Blackburnian Warbler (hybrid),Setophaga castanea x fusca,Passeriformes,Parulidae (New World Warblers),, +32798,species,yelwar,Yellow Warbler,Setophaga petechia,Passeriformes,Parulidae (New World Warblers),, +32799,issf,yelwar1,Yellow Warbler (Northern),Setophaga petechia [aestiva Group],Passeriformes,Parulidae (New World Warblers),,yelwar +32806,issf,maywar1,Yellow Warbler (Mangrove),Setophaga petechia [erithachorides Group],Passeriformes,Parulidae (New World Warblers),,yelwar +32818,issf,yelwar3,Yellow Warbler (Galapagos),Setophaga petechia aureola,Passeriformes,Parulidae (New World Warblers),,yelwar +32819,issf,yelwar2,Yellow Warbler (Golden),Setophaga petechia [petechia Group],Passeriformes,Parulidae (New World Warblers),,yelwar +32836,intergrade,yelwar4,Yellow Warbler (Mangrove x Golden),Setophaga petechia [erithachorides Group x petechia Group],Passeriformes,Parulidae (New World Warblers),,yelwar +32837,hybrid,x00701,Common Yellowthroat x Yellow Warbler (hybrid),Geothlypis trichas x Setophaga petechia,Passeriformes,Parulidae (New World Warblers),, +32838,hybrid,x00822,Hooded x Yellow Warbler (hybrid),Setophaga citrina x petechia,Passeriformes,Parulidae (New World Warblers),, +32839,species,chswar,Chestnut-sided Warbler,Setophaga pensylvanica,Passeriformes,Parulidae (New World Warblers),, +32840,hybrid,x00772,Magnolia x Chestnut-sided Warbler (hybrid),Setophaga magnolia x pensylvanica,Passeriformes,Parulidae (New World Warblers),, +32841,species,bkpwar,Blackpoll Warbler,Setophaga striata,Passeriformes,Parulidae (New World Warblers),, +32842,hybrid,x00894,Bay-breasted x Blackpoll Warbler (hybrid),Setophaga castanea x striata,Passeriformes,Parulidae (New World Warblers),, +32843,slash,y00627,Bay-breasted/Blackpoll Warbler,Setophaga castanea/striata,Passeriformes,Parulidae (New World Warblers),, +32844,species,btbwar,Black-throated Blue Warbler,Setophaga caerulescens,Passeriformes,Parulidae (New World Warblers),, +32847,hybrid,x00978,Magnolia x Black-throated Blue Warbler (hybrid),Setophaga magnolia x caerulescens,Passeriformes,Parulidae (New World Warblers),, +32848,species,palwar,Palm Warbler,Setophaga palmarum,Passeriformes,Parulidae (New World Warblers),, +32849,issf,palwar3,Palm Warbler (Western),Setophaga palmarum palmarum,Passeriformes,Parulidae (New World Warblers),,palwar +32850,issf,palwar4,Palm Warbler (Yellow),Setophaga palmarum hypochrysea,Passeriformes,Parulidae (New World Warblers),,palwar +32851,hybrid,x00979,Magnolia x Palm Warbler (hybrid),Setophaga magnolia x palmarum,Passeriformes,Parulidae (New World Warblers),, +32852,species,olcwar1,Olive-capped Warbler,Setophaga pityophila,Passeriformes,Parulidae (New World Warblers),, +32853,species,pinwar,Pine Warbler,Setophaga pinus,Passeriformes,Parulidae (New World Warblers),, +32858,species,yerwar,Yellow-rumped Warbler,Setophaga coronata,Passeriformes,Parulidae (New World Warblers),, +32859,issf,myrwar,Yellow-rumped Warbler (Myrtle),Setophaga coronata coronata,Passeriformes,Parulidae (New World Warblers),,yerwar +32860,issf,audwar,Yellow-rumped Warbler (Audubon's),Setophaga coronata auduboni,Passeriformes,Parulidae (New World Warblers),,yerwar +32861,intergrade,yerwar3,Yellow-rumped Warbler (Myrtle x Audubon's),Setophaga coronata coronata x auduboni,Passeriformes,Parulidae (New World Warblers),,yerwar +32862,issf,yerwar1,Yellow-rumped Warbler (West Mexico),Setophaga coronata nigrifrons,Passeriformes,Parulidae (New World Warblers),,yerwar +32863,issf,yerwar2,Yellow-rumped Warbler (Goldman's),Setophaga coronata goldmani,Passeriformes,Parulidae (New World Warblers),,yerwar +32864,hybrid,x00980,Cape May x Yellow-rumped Warbler (hybrid),Setophaga tigrina x coronata,Passeriformes,Parulidae (New World Warblers),, +32865,hybrid,x00773,Magnolia x Yellow-rumped Warbler (hybrid),Setophaga magnolia x coronata,Passeriformes,Parulidae (New World Warblers),, +32866,hybrid,x00461,Palm x Yellow-rumped Warbler (hybrid),Setophaga palmarum x coronata,Passeriformes,Parulidae (New World Warblers),, +32867,species,yetwar,Yellow-throated Warbler,Setophaga dominica,Passeriformes,Parulidae (New World Warblers),, +32868,issf,yetwar1,Yellow-throated Warbler (albilora),Setophaga dominica albilora,Passeriformes,Parulidae (New World Warblers),,yetwar +32869,issf,yetwar2,Yellow-throated Warbler (dominica/stoddardi),Setophaga dominica dominica/stoddardi,Passeriformes,Parulidae (New World Warblers),,yetwar +32872,hybrid,sutwar,Sutton's Warbler (hybrid),Setophaga americana x dominica,Passeriformes,Parulidae (New World Warblers),, +32873,hybrid,x00937,Yellow-rumped x Yellow-throated Warbler (hybrid),Setophaga coronata x dominica,Passeriformes,Parulidae (New World Warblers),, +32874,species,yetwar3,Bahama Warbler,Setophaga flavescens,Passeriformes,Parulidae (New World Warblers),, +32875,species,vitwar1,Vitelline Warbler,Setophaga vitellina,Passeriformes,Parulidae (New World Warblers),, +32879,species,prawar,Prairie Warbler,Setophaga discolor,Passeriformes,Parulidae (New World Warblers),, +32882,hybrid,x00719,Blue-winged x Prairie Warbler (hybrid),Vermivora cyanoptera x Setophaga discolor,Passeriformes,Parulidae (New World Warblers),, +32883,hybrid,x00866,Yellow x Prairie Warbler (hybrid),Setophaga petechia x discolor,Passeriformes,Parulidae (New World Warblers),, +32884,species,adewar1,Adelaide's Warbler,Setophaga adelaidae,Passeriformes,Parulidae (New World Warblers),, +32885,species,barwar,Barbuda Warbler,Setophaga subita,Passeriformes,Parulidae (New World Warblers),, +32886,species,stlwar,St. Lucia Warbler,Setophaga delicata,Passeriformes,Parulidae (New World Warblers),, +32887,species,grawar,Grace's Warbler,Setophaga graciae,Passeriformes,Parulidae (New World Warblers),, +32892,species,btywar,Black-throated Gray Warbler,Setophaga nigrescens,Passeriformes,Parulidae (New World Warblers),, +32895,hybrid,x00895,Yellow-rumped x Black-throated Gray Warbler (hybrid),Setophaga coronata x nigrescens,Passeriformes,Parulidae (New World Warblers),, +32896,hybrid,x00639,Grace's x Black-throated Gray Warbler (hybrid),Setophaga graciae x nigrescens,Passeriformes,Parulidae (New World Warblers),, +32897,species,towwar,Townsend's Warbler,Setophaga townsendi,Passeriformes,Parulidae (New World Warblers),, +32898,hybrid,x00624,Yellow-rumped x Townsend's Warbler (hybrid),Setophaga coronata x townsendi,Passeriformes,Parulidae (New World Warblers),, +32899,hybrid,x00867,Black-throated Gray x Townsend's Warbler (hybrid),Setophaga nigrescens x townsendi,Passeriformes,Parulidae (New World Warblers),, +32900,slash,y01014,Black-throated Gray/Townsend's Warbler,Setophaga nigrescens/townsendi,Passeriformes,Parulidae (New World Warblers),, +32901,species,herwar,Hermit Warbler,Setophaga occidentalis,Passeriformes,Parulidae (New World Warblers),, +32902,hybrid,x00059,Townsend's x Hermit Warbler (hybrid),Setophaga townsendi x occidentalis,Passeriformes,Parulidae (New World Warblers),, +32903,slash,y00605,Black-throated Gray/Hermit Warbler,Setophaga nigrescens/occidentalis,Passeriformes,Parulidae (New World Warblers),, +32904,slash,y00645,Townsend's/Hermit Warbler,Setophaga townsendi/occidentalis,Passeriformes,Parulidae (New World Warblers),, +32905,species,gchwar,Golden-cheeked Warbler,Setophaga chrysoparia,Passeriformes,Parulidae (New World Warblers),, +32906,species,btnwar,Black-throated Green Warbler,Setophaga virens,Passeriformes,Parulidae (New World Warblers),, +32907,hybrid,x00664,Townsend's x Black-throated Green Warbler (hybrid),Setophaga townsendi x virens,Passeriformes,Parulidae (New World Warblers),, +32908,spuh,dendro3,Setophaga sp.,Setophaga sp.,Passeriformes,Parulidae (New World Warblers),, +32909,species,fatwar,Fan-tailed Warbler,Basileuterus lachrymosus,Passeriformes,Parulidae (New World Warblers),, +32910,species,rucwar,Rufous-capped Warbler,Basileuterus rufifrons,Passeriformes,Parulidae (New World Warblers),, +32911,issf,rucwar2,Rufous-capped Warbler (rufifrons Group),Basileuterus rufifrons [rufifrons Group],Passeriformes,Parulidae (New World Warblers),,rucwar +32916,issf,rucwar3,Rufous-capped Warbler (salvini),Basileuterus rufifrons salvini,Passeriformes,Parulidae (New World Warblers),,rucwar +32917,issf,rucwar4,Rufous-capped Warbler (Chestnut-capped),Basileuterus rufifrons [delattrii Group],Passeriformes,Parulidae (New World Warblers),,rucwar +32921,hybrid,x00751,Common Yellowthroat x Rufous-capped Warbler (hybrid),Geothlypis trichas x Basileuterus rufifrons,Passeriformes,Parulidae (New World Warblers),, +32922,species,blcwar1,Black-cheeked Warbler,Basileuterus melanogenys,Passeriformes,Parulidae (New World Warblers),, +32926,species,pirwar1,Pirre Warbler,Basileuterus ignotus,Passeriformes,Parulidae (New World Warblers),, +32927,species,gobwar1,Golden-browed Warbler,Basileuterus belli,Passeriformes,Parulidae (New World Warblers),, +32933,species,gcrwar,Golden-crowned Warbler,Basileuterus culicivorus,Passeriformes,Parulidae (New World Warblers),, +32934,issf,gocwar1,Golden-crowned Warbler (Stripe-crowned),Basileuterus culicivorus [culicivorus Group],Passeriformes,Parulidae (New World Warblers),,gcrwar +32939,issf,gocwar3,Golden-crowned Warbler (Cabanis's),Basileuterus culicivorus [cabanisi Group],Passeriformes,Parulidae (New World Warblers),,gcrwar +32944,issf,gocwar2,Golden-crowned Warbler (Golden-crowned),Basileuterus culicivorus [auricapilla Group],Passeriformes,Parulidae (New World Warblers),,gcrwar +32950,issf,whbwar1,Golden-crowned Warbler (White-bellied),Basileuterus culicivorus hypoleucus,Passeriformes,Parulidae (New World Warblers),,gcrwar +32951,species,thswar5,Costa Rican Warbler,Basileuterus melanotis,Passeriformes,Parulidae (New World Warblers),, +32952,species,thswar9,Tacarcuna Warbler,Basileuterus tacarcunae,Passeriformes,Parulidae (New World Warblers),, +32953,species,thswar1,Three-striped Warbler,Basileuterus tristriatus,Passeriformes,Parulidae (New World Warblers),, +32954,issf,thswar3,Three-striped Warbler (San Lucas),Basileuterus tristriatus sanlucasensis,Passeriformes,Parulidae (New World Warblers),,thswar1 +32955,issf,thswar6,Three-striped Warbler (daedalus),Basileuterus tristriatus daedalus,Passeriformes,Parulidae (New World Warblers),,thswar1 +32956,issf,thswar4,Three-striped Warbler (auricularis),Basileuterus tristriatus auricularis,Passeriformes,Parulidae (New World Warblers),,thswar1 +32957,issf,thswar7,Three-striped Warbler (Venezuelan),Basileuterus tristriatus meridanus/bessereri,Passeriformes,Parulidae (New World Warblers),,thswar1 +32960,issf,thswar8,Three-striped Warbler (Paria),Basileuterus tristriatus pariae,Passeriformes,Parulidae (New World Warblers),,thswar1 +32961,issf,thswar10,Three-striped Warbler (Three-striped),Basileuterus tristriatus tristriatus/baezae,Passeriformes,Parulidae (New World Warblers),,thswar1 +32964,issf,thswar2,Three-striped Warbler (Bolivian),Basileuterus tristriatus [punctipectus Group],Passeriformes,Parulidae (New World Warblers),,thswar1 +32968,species,thbwar2,Three-banded Warbler,Basileuterus trifasciatus,Passeriformes,Parulidae (New World Warblers),, +32971,species,gyhwar1,Gray-headed Warbler,Basileuterus griseiceps,Passeriformes,Parulidae (New World Warblers),, +32972,spuh,basile1,Basileuterus sp.,Basileuterus sp.,Passeriformes,Parulidae (New World Warblers),, +32973,species,samwar1,Santa Marta Warbler,Myiothlypis basilica,Passeriformes,Parulidae (New World Warblers),, +32974,species,citwar1,Citrine Warbler,Myiothlypis luteoviridis,Passeriformes,Parulidae (New World Warblers),, +32975,issf,citwar2,Citrine Warbler (Northern),Myiothlypis luteoviridis [luteoviridis Group],Passeriformes,Parulidae (New World Warblers),,citwar1 +32979,issf,citwar3,Citrine Warbler (Peruvian),Myiothlypis luteoviridis striaticeps,Passeriformes,Parulidae (New World Warblers),,citwar1 +32980,issf,citwar4,Citrine Warbler (Bolivian),Myiothlypis luteoviridis euophrys,Passeriformes,Parulidae (New World Warblers),,citwar1 +32981,species,whswar2,White-striped Warbler,Myiothlypis leucophrys,Passeriformes,Parulidae (New World Warblers),, +32982,species,flawar1,Flavescent Warbler,Myiothlypis flaveola,Passeriformes,Parulidae (New World Warblers),, +32985,species,whbwar2,White-browed Warbler,Myiothlypis leucoblephara,Passeriformes,Parulidae (New World Warblers),, +32986,species,palwar1,Pale-legged Warbler,Myiothlypis signata,Passeriformes,Parulidae (New World Warblers),, +32989,species,blcwar2,Black-crested Warbler,Myiothlypis nigrocristata,Passeriformes,Parulidae (New World Warblers),, +32990,species,burwar1,Buff-rumped Warbler,Myiothlypis fulvicauda,Passeriformes,Parulidae (New World Warblers),, +32997,species,rivwar1,Riverbank Warbler,Myiothlypis rivularis,Passeriformes,Parulidae (New World Warblers),, +32998,issf,rivwar2,Riverbank Warbler (mesoleuca),Myiothlypis rivularis mesoleuca,Passeriformes,Parulidae (New World Warblers),,rivwar1 +32999,issf,rivwar3,Riverbank Warbler (rivularis/boliviana),Myiothlypis rivularis rivularis/boliviana,Passeriformes,Parulidae (New World Warblers),,rivwar1 +33002,species,twbwar1,Two-banded Warbler,Myiothlypis bivittata,Passeriformes,Parulidae (New World Warblers),, +33003,issf,twbwar2,Two-banded Warbler (Roraiman),Myiothlypis bivittata roraimae,Passeriformes,Parulidae (New World Warblers),,twbwar1 +33004,issf,twbwar3,Two-banded Warbler (Two-banded),Myiothlypis bivittata bivittata/argentinae,Passeriformes,Parulidae (New World Warblers),,twbwar1 +33007,species,gobwar2,Golden-bellied Warbler,Myiothlypis chrysogaster,Passeriformes,Parulidae (New World Warblers),, +33008,issf,gobwar3,Golden-bellied Warbler (Golden-bellied),Myiothlypis chrysogaster chrysogaster,Passeriformes,Parulidae (New World Warblers),,gobwar2 +33009,issf,gobwar4,Golden-bellied Warbler (Choco),Myiothlypis chrysogaster chlorophrys,Passeriformes,Parulidae (New World Warblers),,gobwar2 +33010,species,gytwar1,Gray-throated Warbler,Myiothlypis cinereicollis,Passeriformes,Parulidae (New World Warblers),, +33014,species,whlwar1,White-lored Warbler,Myiothlypis conspicillata,Passeriformes,Parulidae (New World Warblers),, +33015,species,gagwar2,Gray-and-gold Warbler,Myiothlypis fraseri,Passeriformes,Parulidae (New World Warblers),, +33018,species,rucwar1,Russet-crowned Warbler,Myiothlypis coronata,Passeriformes,Parulidae (New World Warblers),, +33027,spuh,myioth1,Myiothlypis sp.,Myiothlypis sp.,Passeriformes,Parulidae (New World Warblers),, +33028,species,canwar,Canada Warbler,Cardellina canadensis,Passeriformes,Parulidae (New World Warblers),, +33029,species,wlswar,Wilson's Warbler,Cardellina pusilla,Passeriformes,Parulidae (New World Warblers),, +33030,issf,wilwar1,Wilson's Warbler (pileolata),Cardellina pusilla pileolata,Passeriformes,Parulidae (New World Warblers),,wlswar +33031,issf,wilwar2,Wilson's Warbler (pusilla),Cardellina pusilla pusilla,Passeriformes,Parulidae (New World Warblers),,wlswar +33032,issf,wilwar3,Wilson's Warbler (chryseola),Cardellina pusilla chryseola,Passeriformes,Parulidae (New World Warblers),,wlswar +33033,species,refwar,Red-faced Warbler,Cardellina rubrifrons,Passeriformes,Parulidae (New World Warblers),, +33034,species,redwar1,Red Warbler,Cardellina rubra,Passeriformes,Parulidae (New World Warblers),, +33035,issf,redwar2,Red Warbler (Gray-cheeked),Cardellina rubra melanauris,Passeriformes,Parulidae (New World Warblers),,redwar1 +33036,issf,redwar3,Red Warbler (White-cheeked),Cardellina rubra rubra/rowleyi,Passeriformes,Parulidae (New World Warblers),,redwar1 +33039,species,pihwar1,Pink-headed Warbler,Cardellina versicolor,Passeriformes,Parulidae (New World Warblers),, +33040,species,paired,Painted Redstart,Myioborus pictus,Passeriformes,Parulidae (New World Warblers),, +33043,species,sltred,Slate-throated Redstart,Myioborus miniatus,Passeriformes,Parulidae (New World Warblers),, +33056,hybrid,x00896,Painted x Slate-throated Redstart (hybrid),Myioborus pictus x miniatus,Passeriformes,Parulidae (New World Warblers),, +33057,species,brcred1,Brown-capped Redstart,Myioborus brunniceps,Passeriformes,Parulidae (New World Warblers),, +33058,species,tepred1,Tepui Redstart,Myioborus castaneocapilla,Passeriformes,Parulidae (New World Warblers),, +33062,species,parred1,Paria Redstart,Myioborus pariae,Passeriformes,Parulidae (New World Warblers),, +33063,species,sabred1,Saffron-breasted Redstart,Myioborus cardonai,Passeriformes,Parulidae (New World Warblers),, +33064,species,whfred1,White-faced Redstart,Myioborus albifacies,Passeriformes,Parulidae (New World Warblers),, +33065,species,colred1,Collared Redstart,Myioborus torquatus,Passeriformes,Parulidae (New World Warblers),, +33066,species,yecred1,Yellow-crowned Redstart,Myioborus flavivertex,Passeriformes,Parulidae (New World Warblers),, +33067,species,gofred1,Golden-fronted Redstart,Myioborus ornatus,Passeriformes,Parulidae (New World Warblers),, +33068,issf,gofred2,Golden-fronted Redstart (Golden-fronted),Myioborus ornatus chrysops,Passeriformes,Parulidae (New World Warblers),,gofred1 +33069,issf,gofred3,Golden-fronted Redstart (Yellow-fronted),Myioborus ornatus ornatus,Passeriformes,Parulidae (New World Warblers),,gofred1 +33070,species,spered1,Spectacled Redstart,Myioborus melanocephalus,Passeriformes,Parulidae (New World Warblers),, +33076,hybrid,x00868,Golden-fronted x Spectacled Redstart (hybrid),Myioborus ornatus x melanocephalus,Passeriformes,Parulidae (New World Warblers),, +33077,slash,y01168,Golden-fronted/Spectacled Redstart,Myioborus ornatus/melanocephalus,Passeriformes,Parulidae (New World Warblers),, +33078,species,whfred2,White-fronted Redstart,Myioborus albifrons,Passeriformes,Parulidae (New World Warblers),, +33079,spuh,myiobo1,Myioborus sp.,Myioborus sp.,Passeriformes,Parulidae (New World Warblers),, +33080,spuh,warble,warbler sp. (Parulidae sp.),Parulidae sp.,Passeriformes,Parulidae (New World Warblers),, +33081,species,duftan1,Dusky-faced Tanager,Mitrospingus cassinii,Passeriformes,Mitrospingidae (Mitrospingid Tanagers),Mitrospingid Tanagers, +33084,species,olbtan1,Olive-backed Tanager,Mitrospingus oleagineus,Passeriformes,Mitrospingidae (Mitrospingid Tanagers),, +33087,species,rbptan1,Red-billed Pied Tanager,Lamprospiza melanoleuca,Passeriformes,Mitrospingidae (Mitrospingid Tanagers),, +33088,species,olgtan1,Olive-green Tanager,Orthogonys chloricterus,Passeriformes,Mitrospingidae (Mitrospingid Tanagers),, +33089,species,rottan1,Rose-throated Tanager,Piranga roseogularis,Passeriformes,Cardinalidae (Cardinals and Allies),"Cardinals, Grosbeaks, and Allies", +33093,species,heptan,Hepatic Tanager,Piranga flava,Passeriformes,Cardinalidae (Cardinals and Allies),, +33094,issf,heptan1,Hepatic Tanager (Northern),Piranga flava [hepatica Group],Passeriformes,Cardinalidae (Cardinals and Allies),,heptan +33100,issf,heptan2,Hepatic Tanager (Highland),Piranga flava [lutea Group],Passeriformes,Cardinalidae (Cardinals and Allies),,heptan +33107,issf,heptan3,Hepatic Tanager (Lowland),Piranga flava [flava Group],Passeriformes,Cardinalidae (Cardinals and Allies),,heptan +33112,species,sumtan,Summer Tanager,Piranga rubra,Passeriformes,Cardinalidae (Cardinals and Allies),, +33115,slash,y00924,Hepatic/Summer Tanager,Piranga flava/rubra,Passeriformes,Cardinalidae (Cardinals and Allies),, +33116,species,scatan,Scarlet Tanager,Piranga olivacea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33117,slash,y00925,Summer/Scarlet Tanager,Piranga rubra/olivacea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33118,species,westan,Western Tanager,Piranga ludoviciana,Passeriformes,Cardinalidae (Cardinals and Allies),, +33119,hybrid,x00824,Summer x Western Tanager (hybrid),Piranga rubra x ludoviciana,Passeriformes,Cardinalidae (Cardinals and Allies),, +33120,hybrid,x00825,Scarlet x Western Tanager (hybrid),Piranga olivacea x ludoviciana,Passeriformes,Cardinalidae (Cardinals and Allies),, +33121,species,flctan,Flame-colored Tanager,Piranga bidentata,Passeriformes,Cardinalidae (Cardinals and Allies),, +33126,hybrid,x00826,Hepatic x Flame-colored Tanager (hybrid),Piranga flava x bidentata,Passeriformes,Cardinalidae (Cardinals and Allies),, +33127,hybrid,x00444,Western x Flame-colored Tanager (hybrid),Piranga ludoviciana x bidentata,Passeriformes,Cardinalidae (Cardinals and Allies),, +33128,species,whwtan1,White-winged Tanager,Piranga leucoptera,Passeriformes,Cardinalidae (Cardinals and Allies),, +33133,species,rehtan1,Red-headed Tanager,Piranga erythrocephala,Passeriformes,Cardinalidae (Cardinals and Allies),, +33136,species,rehtan2,Red-hooded Tanager,Piranga rubriceps,Passeriformes,Cardinalidae (Cardinals and Allies),, +33137,spuh,pirang1,tanager sp. (Piranga sp.),Piranga sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, +33138,species,rcatan1,Red-crowned Ant-Tanager,Habia rubica,Passeriformes,Cardinalidae (Cardinals and Allies),, +33139,issf,recant1,Red-crowned Ant-Tanager (Northern),Habia rubica [rubicoides Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rcatan1 +33147,issf,recant2,Red-crowned Ant-Tanager (Scarlet-throated),Habia rubica [rubra Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rcatan1 +33156,issf,recant3,Red-crowned Ant-Tanager (Red),Habia rubica rubica/bahiae,Passeriformes,Cardinalidae (Cardinals and Allies),,rcatan1 +33159,species,rtatan1,Red-throated Ant-Tanager,Habia fuscicauda,Passeriformes,Cardinalidae (Cardinals and Allies),, +33160,issf,retant1,Red-throated Ant-Tanager (Salvin's),Habia fuscicauda [salvini Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rtatan1 +33164,issf,retant2,Red-throated Ant-Tanager (Red-throated),Habia fuscicauda [fuscicauda Group],Passeriformes,Cardinalidae (Cardinals and Allies),,rtatan1 +33168,species,soatan1,Sooty Ant-Tanager,Habia gutturalis,Passeriformes,Cardinalidae (Cardinals and Allies),, +33169,species,bcatan1,Black-cheeked Ant-Tanager,Habia atrimaxillaris,Passeriformes,Cardinalidae (Cardinals and Allies),, +33170,species,cratan1,Crested Ant-Tanager,Habia cristata,Passeriformes,Cardinalidae (Cardinals and Allies),, +33171,spuh,ant-ta1,ant-tanager sp.,Habia sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, +33172,species,olitan1,Carmiol's Tanager,Chlorothraupis carmioli,Passeriformes,Cardinalidae (Cardinals and Allies),, +33173,issf,cartan1,Carmiol's Tanager (Carmiol's),Chlorothraupis carmioli [carmioli Group],Passeriformes,Cardinalidae (Cardinals and Allies),,olitan1 +33177,issf,cartan2,Carmiol's Tanager (Yellow-lored),Chlorothraupis carmioli frenata,Passeriformes,Cardinalidae (Cardinals and Allies),,olitan1 +33178,species,lestan,Lemon-spectacled Tanager,Chlorothraupis olivacea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33179,species,ocbtan1,Ochre-breasted Tanager,Chlorothraupis stolzmanni,Passeriformes,Cardinalidae (Cardinals and Allies),, +33182,spuh,chloro4,Chlorothraupis sp.,Chlorothraupis sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, +33183,species,blfgro1,Black-faced Grosbeak,Caryothraustes poliogaster,Passeriformes,Cardinalidae (Cardinals and Allies),, +33186,species,yeggro1,Yellow-green Grosbeak,Caryothraustes canadensis,Passeriformes,Cardinalidae (Cardinals and Allies),, +33191,species,rabgro1,Red-and-black Grosbeak,Periporphyrus erythromelas,Passeriformes,Cardinalidae (Cardinals and Allies),, +33192,species,crcgro,Crimson-collared Grosbeak,Rhodothraupis celaeno,Passeriformes,Cardinalidae (Cardinals and Allies),, +33193,species,vercar1,Vermilion Cardinal,Cardinalis phoeniceus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33194,species,norcar,Northern Cardinal,Cardinalis cardinalis,Passeriformes,Cardinalidae (Cardinals and Allies),, +33195,issf,norcar1,Northern Cardinal (Common),Cardinalis cardinalis [cardinalis Group],Passeriformes,Cardinalidae (Cardinals and Allies),,norcar +33213,issf,norcar2,Northern Cardinal (Long-crested),Cardinalis cardinalis carneus,Passeriformes,Cardinalidae (Cardinals and Allies),,norcar +33214,species,pyrrhu,Pyrrhuloxia,Cardinalis sinuatus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33218,hybrid,x00774,Northern Cardinal x Pyrrhuloxia (hybrid),Cardinalis cardinalis x sinuatus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33219,slash,y00647,Northern Cardinal/Pyrrhuloxia,Cardinalis cardinalis/sinuatus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33220,species,yelgro,Yellow Grosbeak,Pheucticus chrysopeplus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33221,issf,yelgro2,Yellow Grosbeak (Northern),Pheucticus chrysopeplus chrysopeplus/dilutus,Passeriformes,Cardinalidae (Cardinals and Allies),,yelgro +33224,issf,yelgro1,Yellow Grosbeak (Guatemalan),Pheucticus chrysopeplus aurantiacus,Passeriformes,Cardinalidae (Cardinals and Allies),,yelgro +33225,species,gobgro1,Golden Grosbeak,Pheucticus chrysogaster,Passeriformes,Cardinalidae (Cardinals and Allies),, +33228,species,bltgro1,Black-thighed Grosbeak,Pheucticus tibialis,Passeriformes,Cardinalidae (Cardinals and Allies),, +33229,species,blbgro2,Black-backed Grosbeak,Pheucticus aureoventris,Passeriformes,Cardinalidae (Cardinals and Allies),, +33230,issf,bkbgro2,Black-backed Grosbeak (Merida),Pheucticus aureoventris meridensis,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 +33231,issf,bkbgro3,Black-backed Grosbeak (Yellow-throated),Pheucticus aureoventris crissalis,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 +33232,issf,bkbgro4,Black-backed Grosbeak (Yellow-rumped),Pheucticus aureoventris uropygialis/terminalis,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 +33235,issf,bkbgro1,Black-backed Grosbeak (Black-rumped),Pheucticus aureoventris aureoventris,Passeriformes,Cardinalidae (Cardinals and Allies),,blbgro2 +33236,species,robgro,Rose-breasted Grosbeak,Pheucticus ludovicianus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33237,species,bkhgro,Black-headed Grosbeak,Pheucticus melanocephalus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33240,hybrid,x00448,Rose-breasted x Black-headed Grosbeak (hybrid),Pheucticus ludovicianus x melanocephalus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33241,slash,y00334,Rose-breasted/Black-headed Grosbeak,Pheucticus ludovicianus/melanocephalus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33242,spuh,pheuct1,Pheucticus sp.,Pheucticus sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, +33243,species,rebcha1,Red-breasted Chat,Granatellus venustus,Passeriformes,Cardinalidae (Cardinals and Allies),, +33244,issf,rebcha2,Red-breasted Chat (Red-breasted),Granatellus venustus venustus,Passeriformes,Cardinalidae (Cardinals and Allies),,rebcha1 +33245,issf,rebcha3,Red-breasted Chat (Tres Marias),Granatellus venustus francescae,Passeriformes,Cardinalidae (Cardinals and Allies),,rebcha1 +33246,species,grtcha1,Gray-throated Chat,Granatellus sallaei,Passeriformes,Cardinalidae (Cardinals and Allies),, +33249,species,robcha1,Rose-breasted Chat,Granatellus pelzelni,Passeriformes,Cardinalidae (Cardinals and Allies),, +33250,issf,robcha2,Rose-breasted Chat (Rose-breasted),Granatellus pelzelni pelzelni,Passeriformes,Cardinalidae (Cardinals and Allies),,robcha1 +33251,issf,robcha3,Rose-breasted Chat (Rose-bellied),Granatellus pelzelni paraensis,Passeriformes,Cardinalidae (Cardinals and Allies),,robcha1 +33252,species,blusee1,Blue Seedeater,Amaurospiza concolor,Passeriformes,Cardinalidae (Cardinals and Allies),, +33253,issf,blusee2,Blue Seedeater (Slate-blue),Amaurospiza concolor relicta,Passeriformes,Cardinalidae (Cardinals and Allies),,blusee1 +33254,issf,blusee3,Blue Seedeater (Blue),Amaurospiza concolor concolor,Passeriformes,Cardinalidae (Cardinals and Allies),,blusee1 +33255,issf,blusee4,Blue Seedeater (Equatorial),Amaurospiza concolor aequatorialis,Passeriformes,Cardinalidae (Cardinals and Allies),,blusee1 +33256,species,carsee1,Carrizal Seedeater,Amaurospiza carrizalensis,Passeriformes,Cardinalidae (Cardinals and Allies),, +33257,species,blbsee3,Blackish-blue Seedeater,Amaurospiza moesta,Passeriformes,Cardinalidae (Cardinals and Allies),, +33258,species,glbgro1,Glaucous-blue Grosbeak,Cyanoloxia glaucocaerulea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33259,species,bubgro1,Blue-black Grosbeak,Cyanoloxia cyanoides,Passeriformes,Cardinalidae (Cardinals and Allies),, +33263,species,bubgro2,Amazonian Grosbeak,Cyanoloxia rothschildii,Passeriformes,Cardinalidae (Cardinals and Allies),, +33264,slash,y01068,Blue-black/Amazonian Grosbeak,Cyanoloxia cyanoides/rothschildii,Passeriformes,Cardinalidae (Cardinals and Allies),, +33265,species,ultgro1,Ultramarine Grosbeak,Cyanoloxia brissonii,Passeriformes,Cardinalidae (Cardinals and Allies),, +33271,species,blubun,Blue Bunting,Cyanocompsa parellina,Passeriformes,Cardinalidae (Cardinals and Allies),, +33272,issf,blubun1,Blue Bunting (Middle America),Cyanocompsa parellina parellina/beneplacita,Passeriformes,Cardinalidae (Cardinals and Allies),,blubun +33275,issf,blubun2,Blue Bunting (West Mexico),Cyanocompsa parellina indigotica,Passeriformes,Cardinalidae (Cardinals and Allies),,blubun +33276,species,blugrb1,Blue Grosbeak,Passerina caerulea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33284,species,lazbun,Lazuli Bunting,Passerina amoena,Passeriformes,Cardinalidae (Cardinals and Allies),, +33285,species,indbun,Indigo Bunting,Passerina cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33286,hybrid,x00872,Blue Grosbeak x Indigo Bunting (hybrid),Passerina caerulea x cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33287,hybrid,ixlbun,Lazuli x Indigo Bunting (hybrid),Passerina amoena x cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33288,slash,y00335,Lazuli/Indigo Bunting,Passerina amoena/cyanea,Passeriformes,Cardinalidae (Cardinals and Allies),, +33289,species,robbun1,Rose-bellied Bunting,Passerina rositae,Passeriformes,Cardinalidae (Cardinals and Allies),, +33290,species,orbbun1,Orange-breasted Bunting,Passerina leclancherii,Passeriformes,Cardinalidae (Cardinals and Allies),, +33293,species,varbun,Varied Bunting,Passerina versicolor,Passeriformes,Cardinalidae (Cardinals and Allies),, +33298,species,paibun,Painted Bunting,Passerina ciris,Passeriformes,Cardinalidae (Cardinals and Allies),, +33301,hybrid,x00918,Indigo x Painted Bunting (hybrid),Passerina cyanea x ciris,Passeriformes,Cardinalidae (Cardinals and Allies),, +33302,hybrid,x00902,Varied x Painted Bunting (hybrid),Passerina versicolor x ciris,Passeriformes,Cardinalidae (Cardinals and Allies),, +33303,spuh,buntin,Passerina sp.,Passerina sp.,Passeriformes,Cardinalidae (Cardinals and Allies),, +33304,species,dickci,Dickcissel,Spiza americana,Passeriformes,Cardinalidae (Cardinals and Allies),, +33305,species,brotan1,Brown Tanager,Orchesticus abeillei,Passeriformes,Thraupidae (Tanagers and Allies),Tanagers and Allies, +33306,species,reccar,Red-crested Cardinal,Paroaria coronata,Passeriformes,Thraupidae (Tanagers and Allies),, +33307,species,reccar2,Red-cowled Cardinal,Paroaria dominicana,Passeriformes,Thraupidae (Tanagers and Allies),, +33308,species,reccar3,Masked Cardinal,Paroaria nigrogenis,Passeriformes,Thraupidae (Tanagers and Allies),, +33309,species,reccar4,Red-capped Cardinal,Paroaria gularis,Passeriformes,Thraupidae (Tanagers and Allies),, +33310,issf,reccar5,Red-capped Cardinal (Red-capped),Paroaria gularis gularis,Passeriformes,Thraupidae (Tanagers and Allies),,reccar4 +33311,issf,reccar6,Red-capped Cardinal (Bolivian),Paroaria gularis cervicalis,Passeriformes,Thraupidae (Tanagers and Allies),,reccar4 +33312,slash,reccar1,Masked/Red-capped Cardinal,Paroaria nigrogenis/gularis,Passeriformes,Thraupidae (Tanagers and Allies),, +33313,species,crfcar1,Crimson-fronted Cardinal,Paroaria baeri,Passeriformes,Thraupidae (Tanagers and Allies),, +33314,issf,crfcar2,Crimson-fronted Cardinal (Araguaia),Paroaria baeri baeri,Passeriformes,Thraupidae (Tanagers and Allies),,crfcar1 +33315,issf,crfcar3,Crimson-fronted Cardinal (Xingu),Paroaria baeri xinguensis,Passeriformes,Thraupidae (Tanagers and Allies),,crfcar1 +33316,hybrid,x00897,Red-capped x Crimson-fronted Cardinal (hybrid),Paroaria gularis x baeri,Passeriformes,Thraupidae (Tanagers and Allies),, +33317,slash,y01169,Red-capped/Crimson-fronted Cardinal,Paroaria gularis/baeri,Passeriformes,Thraupidae (Tanagers and Allies),, +33318,species,yebcar,Yellow-billed Cardinal,Paroaria capitata,Passeriformes,Thraupidae (Tanagers and Allies),, +33321,species,blftan1,Black-faced Tanager,Schistochlamys melanopis,Passeriformes,Thraupidae (Tanagers and Allies),, +33327,species,cintan1,Cinnamon Tanager,Schistochlamys ruficapillus,Passeriformes,Thraupidae (Tanagers and Allies),, +33328,species,magtan2,Magpie Tanager,Cissopis leverianus,Passeriformes,Thraupidae (Tanagers and Allies),, +33331,species,whbtan1,White-banded Tanager,Neothraupis fasciata,Passeriformes,Thraupidae (Tanagers and Allies),, +33332,species,bawtan1,Black-and-white Tanager,Conothraupis speculigera,Passeriformes,Thraupidae (Tanagers and Allies),, +33333,species,cobtan2,Cone-billed Tanager,Conothraupis mesoleuca,Passeriformes,Thraupidae (Tanagers and Allies),, +33334,species,scttan1,Scarlet-throated Tanager,Compsothraupis loricata,Passeriformes,Thraupidae (Tanagers and Allies),, +33335,species,whctan1,White-capped Tanager,Sericossypha albocristata,Passeriformes,Thraupidae (Tanagers and Allies),, +33336,species,hootan1,Hooded Tanager,Nemosia pileata,Passeriformes,Thraupidae (Tanagers and Allies),, +33343,species,chttan1,Cherry-throated Tanager,Nemosia rourei,Passeriformes,Thraupidae (Tanagers and Allies),, +33344,species,ructan4,Rufous-crested Tanager,Creurgops verticalis,Passeriformes,Thraupidae (Tanagers and Allies),, +33345,species,slatan2,Slaty Tanager,Creurgops dentatus,Passeriformes,Thraupidae (Tanagers and Allies),, +33346,species,blchem1,Black-capped Hemispingus,Kleinothraupis atropileus,Passeriformes,Thraupidae (Tanagers and Allies),, +33347,issf,bkchem1,Black-capped Hemispingus (Black-capped),Kleinothraupis atropileus atropileus,Passeriformes,Thraupidae (Tanagers and Allies),,blchem1 +33348,issf,bkchem2,Black-capped Hemispingus (White-browed),Kleinothraupis atropileus auricularis,Passeriformes,Thraupidae (Tanagers and Allies),,blchem1 +33349,species,orbhem1,Orange-browed Hemispingus,Kleinothraupis calophrys,Passeriformes,Thraupidae (Tanagers and Allies),, +33350,species,parhem1,Parodi's Hemispingus,Kleinothraupis parodii,Passeriformes,Thraupidae (Tanagers and Allies),, +33351,species,gychem1,Gray-capped Hemispingus,Kleinothraupis reyi,Passeriformes,Thraupidae (Tanagers and Allies),, +33352,species,olehem1,Oleaginous Hemispingus,Sphenopsis frontalis,Passeriformes,Thraupidae (Tanagers and Allies),, +33358,species,blehem1,Black-eared Hemispingus,Sphenopsis melanotis,Passeriformes,Thraupidae (Tanagers and Allies),, +33359,issf,bkehem2,Black-eared Hemispingus (Black-eared),Sphenopsis melanotis [melanotis Group],Passeriformes,Thraupidae (Tanagers and Allies),,blehem1 +33363,issf,bkehem3,Black-eared Hemispingus (Western),Sphenopsis melanotis ochracea,Passeriformes,Thraupidae (Tanagers and Allies),,blehem1 +33364,issf,bkehem1,Black-eared Hemispingus (Piura),Sphenopsis melanotis piurae/macrophrys,Passeriformes,Thraupidae (Tanagers and Allies),,blehem1 +33367,species,orhtan1,Orange-headed Tanager,Thlypopsis sordida,Passeriformes,Thraupidae (Tanagers and Allies),, +33371,species,bubtan1,Buff-bellied Tanager,Thlypopsis inornata,Passeriformes,Thraupidae (Tanagers and Allies),, +33372,species,fuhtan1,Fulvous-headed Tanager,Thlypopsis fulviceps,Passeriformes,Thraupidae (Tanagers and Allies),, +33377,species,chhtan1,Chestnut-headed Tanager,Thlypopsis pyrrhocoma,Passeriformes,Thraupidae (Tanagers and Allies),, +33378,species,raytan1,Rust-and-yellow Tanager,Thlypopsis ruficeps,Passeriformes,Thraupidae (Tanagers and Allies),, +33379,species,suphem1,Superciliaried Hemispingus,Thlypopsis superciliaris,Passeriformes,Thraupidae (Tanagers and Allies),, +33380,issf,suphem5,Superciliaried Hemispingus (Yellow-browed),Thlypopsis superciliaris chrysophrys,Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 +33381,issf,suphem2,Superciliaried Hemispingus (Superciliaried),Thlypopsis superciliaris [superciliaris Group],Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 +33385,issf,suphem4,Superciliaried Hemispingus (White-bellied),Thlypopsis superciliaris leucogastra/insignis,Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 +33388,issf,suphem3,Superciliaried Hemispingus (urubambae),Thlypopsis superciliaris urubambae,Passeriformes,Thraupidae (Tanagers and Allies),,suphem1 +33389,species,ructan3,Rufous-chested Tanager,Thlypopsis ornata,Passeriformes,Thraupidae (Tanagers and Allies),, +33393,species,brftan1,Brown-flanked Tanager,Thlypopsis pectoralis,Passeriformes,Thraupidae (Tanagers and Allies),, +33394,spuh,thlypo1,Thlypopsis sp.,Thlypopsis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33395,species,ptwfin1,Plain-tailed Warbling-Finch,Microspingus alticola,Passeriformes,Thraupidae (Tanagers and Allies),, +33396,species,rbwfin2,Rusty-browed Warbling-Finch,Microspingus erythrophrys,Passeriformes,Thraupidae (Tanagers and Allies),, +33399,species,rrwfin1,Buff-throated Warbling-Finch,Microspingus lateralis,Passeriformes,Thraupidae (Tanagers and Allies),, +33400,species,gytwaf1,Gray-throated Warbling-Finch,Microspingus cabanisi,Passeriformes,Thraupidae (Tanagers and Allies),, +33401,species,riwfin1,Ringed Warbling-Finch,Microspingus torquatus,Passeriformes,Thraupidae (Tanagers and Allies),, +33402,issf,rinwaf1,Ringed Warbling-Finch (Ringed),Microspingus torquatus torquatus,Passeriformes,Thraupidae (Tanagers and Allies),,riwfin1 +33403,issf,rinwaf2,Ringed Warbling-Finch (Black-breasted),Microspingus torquatus pectoralis,Passeriformes,Thraupidae (Tanagers and Allies),,riwfin1 +33404,species,bcwfin2,Black-capped Warbling-Finch,Microspingus melanoleucus,Passeriformes,Thraupidae (Tanagers and Allies),, +33405,species,ciwfin1,Cinereous Warbling-Finch,Microspingus cinereus,Passeriformes,Thraupidae (Tanagers and Allies),, +33406,species,thshem1,Three-striped Hemispingus,Microspingus trifasciatus,Passeriformes,Thraupidae (Tanagers and Allies),, +33407,species,pardus2,Pardusco,Nephelornis oneilli,Passeriformes,Thraupidae (Tanagers and Allies),, +33408,species,blgtan1,Black-goggled Tanager,Trichothraupis melanops,Passeriformes,Thraupidae (Tanagers and Allies),, +33409,species,grhtan1,Gray-headed Tanager,Eucometis penicillata,Passeriformes,Thraupidae (Tanagers and Allies),, +33410,issf,gyhtan1,Gray-headed Tanager (Gray-crested),Eucometis penicillata [spodocephalus Group],Passeriformes,Thraupidae (Tanagers and Allies),,grhtan1 +33415,issf,gyhtan2,Gray-headed Tanager (Gray-headed),Eucometis penicillata [penicillata Group],Passeriformes,Thraupidae (Tanagers and Allies),,grhtan1 +33419,form,saptan1,San Pedro Tanager (undescribed form),Thraupidae [undescribed form],Passeriformes,Thraupidae (Tanagers and Allies),, +33420,species,flctan1,Flame-crested Tanager,Tachyphonus cristatus,Passeriformes,Thraupidae (Tanagers and Allies),, +33421,issf,flctan2,Flame-crested Tanager (Flame-crested),Tachyphonus cristatus [cristatus Group],Passeriformes,Thraupidae (Tanagers and Allies),,flctan1 +33430,issf,flctan3,Flame-crested Tanager (Natterer's),Tachyphonus cristatus nattereri,Passeriformes,Thraupidae (Tanagers and Allies),,flctan1 +33431,species,yectan1,Yellow-crested Tanager,Tachyphonus rufiventer,Passeriformes,Thraupidae (Tanagers and Allies),, +33432,species,fuctan1,Fulvous-crested Tanager,Tachyphonus surinamus,Passeriformes,Thraupidae (Tanagers and Allies),, +33437,slash,y00919,Flame-crested/Fulvous-crested Tanager,Tachyphonus cristatus/surinamus,Passeriformes,Thraupidae (Tanagers and Allies),, +33438,species,whstan1,White-shouldered Tanager,Tachyphonus luctuosus,Passeriformes,Thraupidae (Tanagers and Allies),, +33444,species,tactan1,Tawny-crested Tanager,Tachyphonus delatrii,Passeriformes,Thraupidae (Tanagers and Allies),, +33445,species,ructan1,Ruby-crowned Tanager,Tachyphonus coronatus,Passeriformes,Thraupidae (Tanagers and Allies),, +33446,species,whltan1,White-lined Tanager,Tachyphonus rufus,Passeriformes,Thraupidae (Tanagers and Allies),, +33447,species,restan1,Red-shouldered Tanager,Tachyphonus phoenicius,Passeriformes,Thraupidae (Tanagers and Allies),, +33448,spuh,tachyp1,Tachyphonus sp.,Tachyphonus sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33449,species,fustan1,Fulvous Shrike-Tanager,Lanio fulvus,Passeriformes,Thraupidae (Tanagers and Allies),, +33452,species,wwstan1,White-winged Shrike-Tanager,Lanio versicolor,Passeriformes,Thraupidae (Tanagers and Allies),, +33455,species,btstan1,Black-throated Shrike-Tanager,Lanio aurantius,Passeriformes,Thraupidae (Tanagers and Allies),, +33456,species,wtstan1,White-throated Shrike-Tanager,Lanio leucothorax,Passeriformes,Thraupidae (Tanagers and Allies),, +33461,species,crctan1,Crimson-collared Tanager,Ramphocelus sanguinolentus,Passeriformes,Thraupidae (Tanagers and Allies),, +33464,species,flrtan1,Flame-rumped Tanager,Ramphocelus flammigerus,Passeriformes,Thraupidae (Tanagers and Allies),, +33465,issf,flrtan2,Flame-rumped Tanager (Flame-rumped),Ramphocelus flammigerus flammigerus,Passeriformes,Thraupidae (Tanagers and Allies),,flrtan1 +33466,issf,flrtan3,Flame-rumped Tanager (Lemon-rumped),Ramphocelus flammigerus icteronotus,Passeriformes,Thraupidae (Tanagers and Allies),,flrtan1 +33467,species,y00599,Scarlet-rumped Tanager,Ramphocelus passerinii,Passeriformes,Thraupidae (Tanagers and Allies),, +33468,issf,pastan1,Scarlet-rumped Tanager (Passerini's),Ramphocelus passerinii passerinii,Passeriformes,Thraupidae (Tanagers and Allies),,y00599 +33469,issf,chetan1,Scarlet-rumped Tanager (Cherrie's),Ramphocelus passerinii costaricensis,Passeriformes,Thraupidae (Tanagers and Allies),,y00599 +33470,species,bratan1,Brazilian Tanager,Ramphocelus bresilius,Passeriformes,Thraupidae (Tanagers and Allies),, +33473,species,bkbtan1,Black-bellied Tanager,Ramphocelus melanogaster,Passeriformes,Thraupidae (Tanagers and Allies),, +33476,species,sibtan2,Silver-beaked Tanager,Ramphocelus carbo,Passeriformes,Thraupidae (Tanagers and Allies),, +33485,species,mactan1,Masked Crimson Tanager,Ramphocelus nigrogularis,Passeriformes,Thraupidae (Tanagers and Allies),, +33486,species,crbtan1,Crimson-backed Tanager,Ramphocelus dimidiatus,Passeriformes,Thraupidae (Tanagers and Allies),, +33492,hybrid,x00898,Scarlet-rumped x Crimson-backed Tanager (hybrid),Ramphocelus passerinii x dimidiatus,Passeriformes,Thraupidae (Tanagers and Allies),, +33493,spuh,rampho2,Ramphocelus sp.,Ramphocelus sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33494,species,vertan1,Vermilion Tanager,Calochaetes coccineus,Passeriformes,Thraupidae (Tanagers and Allies),, +33495,species,blbtan2,Blue-backed Tanager,Cyanicterus cyanicterus,Passeriformes,Thraupidae (Tanagers and Allies),, +33496,species,bagtan1,Blue-and-gold Tanager,Bangsia arcaei,Passeriformes,Thraupidae (Tanagers and Allies),, +33499,species,bagtan2,Black-and-gold Tanager,Bangsia melanochlamys,Passeriformes,Thraupidae (Tanagers and Allies),, +33500,species,goctan1,Golden-chested Tanager,Bangsia rothschildi,Passeriformes,Thraupidae (Tanagers and Allies),, +33501,species,mobtan1,Moss-backed Tanager,Bangsia edwardsi,Passeriformes,Thraupidae (Tanagers and Allies),, +33502,species,gortan1,Gold-ringed Tanager,Bangsia aureocincta,Passeriformes,Thraupidae (Tanagers and Allies),, +33503,species,orttan1,Orange-throated Tanager,Wetmorethraupis sterrhopteron,Passeriformes,Thraupidae (Tanagers and Allies),, +33504,species,homtan1,Hooded Mountain-Tanager,Buthraupis montana,Passeriformes,Thraupidae (Tanagers and Allies),, +33510,species,mamtan1,Masked Mountain-Tanager,Buthraupis wetmorei,Passeriformes,Thraupidae (Tanagers and Allies),, +33511,species,bcmtan1,Black-chested Mountain-Tanager,Cnemathraupis eximia,Passeriformes,Thraupidae (Tanagers and Allies),, +33516,species,gbmtan1,Golden-backed Mountain-Tanager,Cnemathraupis aureodorsalis,Passeriformes,Thraupidae (Tanagers and Allies),, +33517,species,grgtan1,Grass-green Tanager,Chlorornis riefferii,Passeriformes,Thraupidae (Tanagers and Allies),, +33523,species,bkcmot1,Black-cheeked Mountain-Tanager,Anisognathus melanogenys,Passeriformes,Thraupidae (Tanagers and Allies),, +33524,species,lamtan1,Lacrimose Mountain-Tanager,Anisognathus lacrymosus,Passeriformes,Thraupidae (Tanagers and Allies),, +33525,issf,lacmot1,Lacrimose Mountain-Tanager (Perija),Anisognathus lacrymosus pallididorsalis,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 +33526,issf,lacmot2,Lacrimose Mountain-Tanager (melanops),Anisognathus lacrymosus melanops,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 +33527,issf,lacmot3,Lacrimose Mountain-Tanager (yariguierum),Anisognathus lacrymosus yariguierum,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 +33528,issf,lacmot4,Lacrimose Mountain-Tanager (intensus),Anisognathus lacrymosus intensus,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 +33529,issf,lacmot5,Lacrimose Mountain-Tanager (palpebrosus Group),Anisognathus lacrymosus [palpebrosus Group],Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 +33534,issf,lacmot6,Lacrimose Mountain-Tanager (lacrymosus),Anisognathus lacrymosus lacrymosus,Passeriformes,Thraupidae (Tanagers and Allies),,lamtan1 +33535,species,sbmtan1,Scarlet-bellied Mountain-Tanager,Anisognathus igniventris,Passeriformes,Thraupidae (Tanagers and Allies),, +33536,issf,scbmot1,Scarlet-bellied Mountain-Tanager (Scarlet-bellied),Anisognathus igniventris [lunulatus Group],Passeriformes,Thraupidae (Tanagers and Allies),,sbmtan1 +33540,issf,scbmot2,Scarlet-bellied Mountain-Tanager (Fire-bellied),Anisognathus igniventris igniventris,Passeriformes,Thraupidae (Tanagers and Allies),,sbmtan1 +33541,species,bwmtan1,Blue-winged Mountain-Tanager,Anisognathus somptuosus,Passeriformes,Thraupidae (Tanagers and Allies),, +33542,issf,buwmot1,Blue-winged Mountain-Tanager (Blue-winged),Anisognathus somptuosus [somptuosus Group],Passeriformes,Thraupidae (Tanagers and Allies),,bwmtan1 +33551,issf,buwmot2,Blue-winged Mountain-Tanager (Bolivian),Anisognathus somptuosus flavinucha,Passeriformes,Thraupidae (Tanagers and Allies),,bwmtan1 +33552,species,bcmtan2,Black-chinned Mountain-Tanager,Anisognathus notabilis,Passeriformes,Thraupidae (Tanagers and Allies),, +33553,species,bbmtan1,Buff-breasted Mountain-Tanager,Dubusia taeniata,Passeriformes,Thraupidae (Tanagers and Allies),, +33554,issf,bubmot4,Buff-breasted Mountain-Tanager (Carriker's),Dubusia taeniata carrikeri,Passeriformes,Thraupidae (Tanagers and Allies),,bbmtan1 +33555,issf,bubmot3,Buff-breasted Mountain-Tanager (Buff-breasted),Dubusia taeniata taeniata,Passeriformes,Thraupidae (Tanagers and Allies),,bbmtan1 +33556,issf,bubmot1,Buff-breasted Mountain-Tanager (Cerulean-streaked),Dubusia taeniata stictocephala,Passeriformes,Thraupidae (Tanagers and Allies),,bbmtan1 +33557,species,cbmtan1,Chestnut-bellied Mountain-Tanager,Dubusia castaneoventris,Passeriformes,Thraupidae (Tanagers and Allies),, +33558,species,rubsal1,Rufous-bellied Mountain-Tanager,Pseudosaltator rufiventris,Passeriformes,Thraupidae (Tanagers and Allies),, +33559,species,diatan1,Diademed Tanager,Stephanophorus diadematus,Passeriformes,Thraupidae (Tanagers and Allies),, +33560,species,pumtan2,Purplish-mantled Tanager,Iridosornis porphyrocephalus,Passeriformes,Thraupidae (Tanagers and Allies),, +33561,species,yettan1,Yellow-throated Tanager,Iridosornis analis,Passeriformes,Thraupidae (Tanagers and Allies),, +33562,species,goctan3,Golden-collared Tanager,Iridosornis jelskii,Passeriformes,Thraupidae (Tanagers and Allies),, +33565,species,goctan4,Golden-crowned Tanager,Iridosornis rufivertex,Passeriformes,Thraupidae (Tanagers and Allies),, +33570,species,yestan1,Yellow-scarfed Tanager,Iridosornis reinhardti,Passeriformes,Thraupidae (Tanagers and Allies),, +33571,species,fabtan1,Fawn-breasted Tanager,Pipraeidea melanonota,Passeriformes,Thraupidae (Tanagers and Allies),, +33574,species,baytan3,Blue-and-yellow Tanager,Pipraeidea bonariensis,Passeriformes,Thraupidae (Tanagers and Allies),, +33575,issf,baytan1,Blue-and-yellow Tanager (Green-mantled),Pipraeidea bonariensis darwinii,Passeriformes,Thraupidae (Tanagers and Allies),,baytan3 +33576,issf,baytan4,Blue-and-yellow Tanager (Blue-and-yellow),Pipraeidea bonariensis [bonariensis Group],Passeriformes,Thraupidae (Tanagers and Allies),,baytan3 +33580,species,glgtan1,Glistening-green Tanager,Chlorochrysa phoenicotis,Passeriformes,Thraupidae (Tanagers and Allies),, +33581,species,oretan1,Orange-eared Tanager,Chlorochrysa calliparaea,Passeriformes,Thraupidae (Tanagers and Allies),, +33582,issf,oretan2,Orange-eared Tanager (Orange-eared),Chlorochrysa calliparaea calliparaea/bourcieri,Passeriformes,Thraupidae (Tanagers and Allies),,oretan1 +33585,issf,oretan3,Orange-eared Tanager (Blue-throated),Chlorochrysa calliparaea fulgentissima,Passeriformes,Thraupidae (Tanagers and Allies),,oretan1 +33586,species,multan1,Multicolored Tanager,Chlorochrysa nitidissima,Passeriformes,Thraupidae (Tanagers and Allies),, +33587,species,bugtan,Blue-gray Tanager,Thraupis episcopus,Passeriformes,Thraupidae (Tanagers and Allies),, +33588,issf,bugtan1,Blue-gray Tanager (Blue-gray),Thraupis episcopus [cana Group],Passeriformes,Thraupidae (Tanagers and Allies),,bugtan +33595,issf,bugtan2,Blue-gray Tanager (White-edged),Thraupis episcopus [episcopus Group],Passeriformes,Thraupidae (Tanagers and Allies),,bugtan +33603,species,saytan1,Sayaca Tanager,Thraupis sayaca,Passeriformes,Thraupidae (Tanagers and Allies),, +33607,species,glatan1,Glaucous Tanager,Thraupis glaucocolpa,Passeriformes,Thraupidae (Tanagers and Allies),, +33608,species,azstan1,Azure-shouldered Tanager,Thraupis cyanoptera,Passeriformes,Thraupidae (Tanagers and Allies),, +33609,species,goctan2,Golden-chevroned Tanager,Thraupis ornata,Passeriformes,Thraupidae (Tanagers and Allies),, +33610,species,yewtan1,Yellow-winged Tanager,Thraupis abbas,Passeriformes,Thraupidae (Tanagers and Allies),, +33611,species,paltan1,Palm Tanager,Thraupis palmarum,Passeriformes,Thraupidae (Tanagers and Allies),, +33616,species,blctan2,Blue-capped Tanager,Thraupis cyanocephala,Passeriformes,Thraupidae (Tanagers and Allies),, +33625,spuh,thraup1,Thraupis sp.,Thraupis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33626,species,dottan1,Dotted Tanager,Ixothraupis varia,Passeriformes,Thraupidae (Tanagers and Allies),, +33627,species,ruttan1,Rufous-throated Tanager,Ixothraupis rufigula,Passeriformes,Thraupidae (Tanagers and Allies),, +33628,species,spetan1,Speckled Tanager,Ixothraupis guttata,Passeriformes,Thraupidae (Tanagers and Allies),, +33635,species,yebtan2,Yellow-bellied Tanager,Ixothraupis xanthogastra,Passeriformes,Thraupidae (Tanagers and Allies),, +33638,species,spotan1,Spotted Tanager,Ixothraupis punctata,Passeriformes,Thraupidae (Tanagers and Allies),, +33644,spuh,ixothr1,Ixothraupis sp. (speckled tanager sp.),Ixothraupis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33645,species,gontan1,Golden-naped Tanager,Chalcothraupis ruficervix,Passeriformes,Thraupidae (Tanagers and Allies),, +33646,issf,gontan2,Golden-naped Tanager (Golden-naped),Chalcothraupis ruficervix [ruficervix Group],Passeriformes,Thraupidae (Tanagers and Allies),,gontan1 +33650,issf,gontan3,Golden-naped Tanager (Rusty-naped),Chalcothraupis ruficervix [fulvicervix Group],Passeriformes,Thraupidae (Tanagers and Allies),,gontan1 +33654,species,azrtan1,Azure-rumped Tanager,Poecilostreptus cabanisi,Passeriformes,Thraupidae (Tanagers and Allies),, +33655,species,gagtan1,Gray-and-gold Tanager,Poecilostreptus palmeri,Passeriformes,Thraupidae (Tanagers and Allies),, +33656,species,blhtan1,Black-headed Tanager,Stilpnia cyanoptera,Passeriformes,Thraupidae (Tanagers and Allies),, +33657,issf,bkhtan1,Black-headed Tanager (Black-headed),Stilpnia cyanoptera cyanoptera,Passeriformes,Thraupidae (Tanagers and Allies),,blhtan1 +33658,issf,bkhtan2,Black-headed Tanager (Black-hooded),Stilpnia cyanoptera whitelyi,Passeriformes,Thraupidae (Tanagers and Allies),,blhtan1 +33659,species,siltan1,Silvery Tanager,Stilpnia viridicollis,Passeriformes,Thraupidae (Tanagers and Allies),, +33662,species,blctan1,Black-capped Tanager,Stilpnia heinei,Passeriformes,Thraupidae (Tanagers and Allies),, +33663,species,gnttan1,Green-throated Tanager,Stilpnia argyrofenges,Passeriformes,Thraupidae (Tanagers and Allies),, +33666,species,sirtan1,Sira Tanager,Stilpnia phillipsi,Passeriformes,Thraupidae (Tanagers and Allies),, +33667,species,blbtan1,Black-backed Tanager,Stilpnia peruviana,Passeriformes,Thraupidae (Tanagers and Allies),, +33668,species,chbtan1,Chestnut-backed Tanager,Stilpnia preciosa,Passeriformes,Thraupidae (Tanagers and Allies),, +33669,species,grctan1,Green-capped Tanager,Stilpnia meyerdeschauenseei,Passeriformes,Thraupidae (Tanagers and Allies),, +33670,species,bubtan2,Burnished-buff Tanager,Stilpnia cayana,Passeriformes,Thraupidae (Tanagers and Allies),, +33671,issf,bubtan4,Burnished-buff Tanager (Rufous-crowned),Stilpnia cayana cayana/fulvescens,Passeriformes,Thraupidae (Tanagers and Allies),,bubtan2 +33674,issf,bubtan3,Burnished-buff Tanager (Stripe-bellied),Stilpnia cayana [flava Group],Passeriformes,Thraupidae (Tanagers and Allies),,bubtan2 +33680,species,leatan1,Lesser Antillean Tanager,Stilpnia cucullata,Passeriformes,Thraupidae (Tanagers and Allies),, +33681,issf,leatan2,Lesser Antillean Tanager (St. Vincent),Stilpnia cucullata versicolor,Passeriformes,Thraupidae (Tanagers and Allies),,leatan1 +33682,issf,leatan3,Lesser Antillean Tanager (Grenada),Stilpnia cucullata cucullata,Passeriformes,Thraupidae (Tanagers and Allies),,leatan1 +33683,species,scrtan1,Scrub Tanager,Stilpnia vitriolina,Passeriformes,Thraupidae (Tanagers and Allies),, +33684,species,mastan1,Masked Tanager,Stilpnia nigrocincta,Passeriformes,Thraupidae (Tanagers and Allies),, +33685,species,gohtan1,Golden-hooded Tanager,Stilpnia larvata,Passeriformes,Thraupidae (Tanagers and Allies),, +33690,species,blntan1,Blue-necked Tanager,Stilpnia cyanicollis,Passeriformes,Thraupidae (Tanagers and Allies),, +33698,species,babtan1,Blue-and-black Tanager,Tangara vassorii,Passeriformes,Thraupidae (Tanagers and Allies),, +33699,issf,babtan2,Blue-and-black Tanager (Blue-and-black),Tangara vassorii vassorii/branickii,Passeriformes,Thraupidae (Tanagers and Allies),,babtan1 +33702,issf,babtan3,Blue-and-black Tanager (Spot-bellied),Tangara vassorii atrocoerulea,Passeriformes,Thraupidae (Tanagers and Allies),,babtan1 +33703,species,bestan1,Beryl-spangled Tanager,Tangara nigroviridis,Passeriformes,Thraupidae (Tanagers and Allies),, +33708,species,spctan1,Spangle-cheeked Tanager,Tangara dowii,Passeriformes,Thraupidae (Tanagers and Allies),, +33709,species,grntan1,Green-naped Tanager,Tangara fucosa,Passeriformes,Thraupidae (Tanagers and Allies),, +33710,species,megtan1,Metallic-green Tanager,Tangara labradorides,Passeriformes,Thraupidae (Tanagers and Allies),, +33713,species,blbtan3,Blue-browed Tanager,Tangara cyanotis,Passeriformes,Thraupidae (Tanagers and Allies),, +33716,species,plctan1,Plain-colored Tanager,Tangara inornata,Passeriformes,Thraupidae (Tanagers and Allies),, +33720,species,turtan1,Turquoise Tanager,Tangara mexicana,Passeriformes,Thraupidae (Tanagers and Allies),, +33721,issf,turtan2,Turquoise Tanager (Turquoise),Tangara mexicana [mexicana Group],Passeriformes,Thraupidae (Tanagers and Allies),,turtan1 +33726,issf,turtan3,Turquoise Tanager (White-bellied),Tangara mexicana brasiliensis,Passeriformes,Thraupidae (Tanagers and Allies),,turtan1 +33727,species,partan1,Paradise Tanager,Tangara chilensis,Passeriformes,Thraupidae (Tanagers and Allies),, +33732,species,oprtan1,Opal-rumped Tanager,Tangara velia,Passeriformes,Thraupidae (Tanagers and Allies),, +33733,issf,oprtan2,Opal-rumped Tanager (Opal-rumped),Tangara velia [velia Group],Passeriformes,Thraupidae (Tanagers and Allies),,oprtan1 +33737,issf,oprtan3,Opal-rumped Tanager (Silver-breasted),Tangara velia cyanomelas,Passeriformes,Thraupidae (Tanagers and Allies),,oprtan1 +33738,species,opctan1,Opal-crowned Tanager,Tangara callophrys,Passeriformes,Thraupidae (Tanagers and Allies),, +33739,species,grhtan2,Green-headed Tanager,Tangara seledon,Passeriformes,Thraupidae (Tanagers and Allies),, +33740,species,sectan1,Seven-colored Tanager,Tangara fastuosa,Passeriformes,Thraupidae (Tanagers and Allies),, +33741,species,rentan1,Red-necked Tanager,Tangara cyanocephala,Passeriformes,Thraupidae (Tanagers and Allies),, +33745,species,brbtan1,Brassy-breasted Tanager,Tangara desmaresti,Passeriformes,Thraupidae (Tanagers and Allies),, +33746,species,gietan1,Gilt-edged Tanager,Tangara cyanoventris,Passeriformes,Thraupidae (Tanagers and Allies),, +33747,species,ruwtan1,Rufous-winged Tanager,Tangara lavinia,Passeriformes,Thraupidae (Tanagers and Allies),, +33751,species,bahtan1,Bay-headed Tanager,Tangara gyrola,Passeriformes,Thraupidae (Tanagers and Allies),, +33752,issf,bahtan2,Bay-headed Tanager (Bay-and-blue),Tangara gyrola [albertinae Group],Passeriformes,Thraupidae (Tanagers and Allies),,bahtan1 +33759,issf,bahtan3,Bay-headed Tanager (Bay-and-green),Tangara gyrola viridissima/toddi,Passeriformes,Thraupidae (Tanagers and Allies),,bahtan1 +33762,issf,bahtan4,Bay-headed Tanager (Bay-headed),Tangara gyrola gyrola,Passeriformes,Thraupidae (Tanagers and Allies),,bahtan1 +33763,species,ructan2,Rufous-cheeked Tanager,Tangara rufigenis,Passeriformes,Thraupidae (Tanagers and Allies),, +33764,species,goetan1,Golden-eared Tanager,Tangara chrysotis,Passeriformes,Thraupidae (Tanagers and Allies),, +33765,species,sactan1,Saffron-crowned Tanager,Tangara xanthocephala,Passeriformes,Thraupidae (Tanagers and Allies),, +33769,species,flftan1,Flame-faced Tanager,Tangara parzudakii,Passeriformes,Thraupidae (Tanagers and Allies),, +33770,issf,flftan2,Flame-faced Tanager (Flame-faced),Tangara parzudakii parzudakii/urubambae,Passeriformes,Thraupidae (Tanagers and Allies),,flftan1 +33773,issf,flftan3,Flame-faced Tanager (Yellow-faced),Tangara parzudakii lunigera,Passeriformes,Thraupidae (Tanagers and Allies),,flftan1 +33774,species,gagtan2,Green-and-gold Tanager,Tangara schrankii,Passeriformes,Thraupidae (Tanagers and Allies),, +33778,species,blwtan1,Blue-whiskered Tanager,Tangara johannae,Passeriformes,Thraupidae (Tanagers and Allies),, +33779,species,goltan1,Golden Tanager,Tangara arthus,Passeriformes,Thraupidae (Tanagers and Allies),, +33780,issf,goltan2,Golden Tanager (arthus),Tangara arthus arthus,Passeriformes,Thraupidae (Tanagers and Allies),,goltan1 +33781,issf,goltan4,Golden Tanager (aurulenta Group),Tangara arthus [aurulenta Group],Passeriformes,Thraupidae (Tanagers and Allies),,goltan1 +33787,issf,goltan5,Golden Tanager (pulchra Group),Tangara arthus [pulchra Group],Passeriformes,Thraupidae (Tanagers and Allies),,goltan1 +33791,species,emetan1,Emerald Tanager,Tangara florida,Passeriformes,Thraupidae (Tanagers and Allies),, +33794,species,sittan1,Silver-throated Tanager,Tangara icterocephala,Passeriformes,Thraupidae (Tanagers and Allies),, +33798,spuh,tangar2,Tangara/Stilpnia sp.,Tangara/Stilpnia sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33799,spuh,tangar1,small tanager sp. (former Tangara sp.),Thraupidae sp. (former Tangara sp.),Passeriformes,Thraupidae (Tanagers and Allies),, +33800,species,swatan1,Swallow Tanager,Tersina viridis,Passeriformes,Thraupidae (Tanagers and Allies),, +33804,species,whbdac1,White-bellied Dacnis,Dacnis albiventris,Passeriformes,Thraupidae (Tanagers and Allies),, +33805,species,blfdac1,Black-faced Dacnis,Dacnis lineata,Passeriformes,Thraupidae (Tanagers and Allies),, +33806,issf,bkfdac1,Black-faced Dacnis (Yellow-tufted),Dacnis lineata egregia/aequatorialis,Passeriformes,Thraupidae (Tanagers and Allies),,blfdac1 +33809,issf,bkfdac2,Black-faced Dacnis (Black-faced),Dacnis lineata lineata,Passeriformes,Thraupidae (Tanagers and Allies),,blfdac1 +33810,species,yebdac1,Yellow-bellied Dacnis,Dacnis flaviventer,Passeriformes,Thraupidae (Tanagers and Allies),, +33811,species,turdac1,Turquoise Dacnis,Dacnis hartlaubi,Passeriformes,Thraupidae (Tanagers and Allies),, +33812,species,blldac1,Black-legged Dacnis,Dacnis nigripes,Passeriformes,Thraupidae (Tanagers and Allies),, +33813,species,sctdac1,Scarlet-thighed Dacnis,Dacnis venusta,Passeriformes,Thraupidae (Tanagers and Allies),, +33816,species,bludac1,Blue Dacnis,Dacnis cayana,Passeriformes,Thraupidae (Tanagers and Allies),, +33825,species,virdac1,Viridian Dacnis,Dacnis viguieri,Passeriformes,Thraupidae (Tanagers and Allies),, +33826,species,scbdac1,Scarlet-breasted Dacnis,Dacnis berlepschi,Passeriformes,Thraupidae (Tanagers and Allies),, +33827,spuh,dacnis1,Dacnis sp.,Dacnis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33828,species,shbhon2,Short-billed Honeycreeper,Cyanerpes nitidus,Passeriformes,Thraupidae (Tanagers and Allies),, +33829,species,shihon1,Shining Honeycreeper,Cyanerpes lucidus,Passeriformes,Thraupidae (Tanagers and Allies),, +33832,species,purhon1,Purple Honeycreeper,Cyanerpes caeruleus,Passeriformes,Thraupidae (Tanagers and Allies),, +33838,species,relhon1,Red-legged Honeycreeper,Cyanerpes cyaneus,Passeriformes,Thraupidae (Tanagers and Allies),, +33850,slash,y00654,Shining/Red-legged Honeycreeper,Cyanerpes lucidus/cyaneus,Passeriformes,Thraupidae (Tanagers and Allies),, +33851,species,grehon1,Green Honeycreeper,Chlorophanes spiza,Passeriformes,Thraupidae (Tanagers and Allies),, +33859,species,gochon2,Golden-collared Honeycreeper,Iridophanes pulcherrimus,Passeriformes,Thraupidae (Tanagers and Allies),, +33862,species,surtan1,Sulphur-rumped Tanager,Heterospingus rubrifrons,Passeriformes,Thraupidae (Tanagers and Allies),, +33863,species,scbtan2,Scarlet-browed Tanager,Heterospingus xanthopygius,Passeriformes,Thraupidae (Tanagers and Allies),, +33866,species,guitan1,Guira Tanager,Hemithraupis guira,Passeriformes,Thraupidae (Tanagers and Allies),, +33875,species,ruhtan1,Rufous-headed Tanager,Hemithraupis ruficapilla,Passeriformes,Thraupidae (Tanagers and Allies),, +33878,slash,y01055,Guira/Rufous-headed Tanager,Hemithraupis guira/ruficapilla,Passeriformes,Thraupidae (Tanagers and Allies),, +33879,species,yebtan1,Yellow-backed Tanager,Hemithraupis flavicollis,Passeriformes,Thraupidae (Tanagers and Allies),, +33891,slash,y01170,Rufous-headed/Yellow-backed Tanager,Hemithraupis ruficapilla/flavicollis,Passeriformes,Thraupidae (Tanagers and Allies),, +33892,species,baytan2,Black-and-yellow Tanager,Chrysothlypis chrysomelas,Passeriformes,Thraupidae (Tanagers and Allies),, +33896,species,sawtan1,Scarlet-and-white Tanager,Chrysothlypis salmoni,Passeriformes,Thraupidae (Tanagers and Allies),, +33897,spuh,tanage,tanager sp. (Thraupidae sp.),Thraupidae sp. (tanager sp.),Passeriformes,Thraupidae (Tanagers and Allies),, +33898,species,biccon1,Bicolored Conebill,Conirostrum bicolor,Passeriformes,Thraupidae (Tanagers and Allies),, +33901,species,pebcon1,Pearly-breasted Conebill,Conirostrum margaritae,Passeriformes,Thraupidae (Tanagers and Allies),, +33902,species,chvcon1,Chestnut-vented Conebill,Conirostrum speciosum,Passeriformes,Thraupidae (Tanagers and Allies),, +33906,species,whecon1,White-eared Conebill,Conirostrum leucogenys,Passeriformes,Thraupidae (Tanagers and Allies),, +33910,species,giacon1,Giant Conebill,Conirostrum binghami,Passeriformes,Thraupidae (Tanagers and Allies),, +33911,species,whbcon1,White-browed Conebill,Conirostrum ferrugineiventre,Passeriformes,Thraupidae (Tanagers and Allies),, +33912,species,blbcon1,Blue-backed Conebill,Conirostrum sitticolor,Passeriformes,Thraupidae (Tanagers and Allies),, +33916,species,capcon1,Capped Conebill,Conirostrum albifrons,Passeriformes,Thraupidae (Tanagers and Allies),, +33917,issf,capcon3,Capped Conebill (White-capped),Conirostrum albifrons [albifrons Group],Passeriformes,Thraupidae (Tanagers and Allies),,capcon1 +33921,issf,capcon2,Capped Conebill (Blue-capped),Conirostrum albifrons [atrocyaneum Group],Passeriformes,Thraupidae (Tanagers and Allies),,capcon1 +33925,species,tamcon1,Tamarugo Conebill,Conirostrum tamarugense,Passeriformes,Thraupidae (Tanagers and Allies),, +33926,species,rubcon1,Rufous-browed Conebill,Conirostrum rufum,Passeriformes,Thraupidae (Tanagers and Allies),, +33927,species,cincon1,Cinereous Conebill,Conirostrum cinereum,Passeriformes,Thraupidae (Tanagers and Allies),, +33928,issf,cincon2,Cinereous Conebill (Ochraceous),Conirostrum cinereum fraseri,Passeriformes,Thraupidae (Tanagers and Allies),,cincon1 +33929,issf,cincon3,Cinereous Conebill (Cinereous),Conirostrum cinereum cinereum/littorale,Passeriformes,Thraupidae (Tanagers and Allies),,cincon1 +33932,spuh,conebi1,conebill sp.,Conirostrum sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33933,species,chbflo1,Chestnut-bellied Flowerpiercer,Diglossa gloriosissima,Passeriformes,Thraupidae (Tanagers and Allies),, +33934,species,gloflo1,Glossy Flowerpiercer,Diglossa lafresnayii,Passeriformes,Thraupidae (Tanagers and Allies),, +33935,species,mouflo1,Moustached Flowerpiercer,Diglossa mystacalis,Passeriformes,Thraupidae (Tanagers and Allies),, +33936,issf,mouflo2,Moustached Flowerpiercer (unicincta),Diglossa mystacalis unicincta,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 +33937,issf,mouflo3,Moustached Flowerpiercer (pectoralis),Diglossa mystacalis pectoralis,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 +33938,issf,mouflo4,Moustached Flowerpiercer (albilinea),Diglossa mystacalis albilinea,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 +33939,issf,mouflo5,Moustached Flowerpiercer (mystacalis),Diglossa mystacalis mystacalis,Passeriformes,Thraupidae (Tanagers and Allies),,mouflo1 +33940,species,merflo1,Merida Flowerpiercer,Diglossa gloriosa,Passeriformes,Thraupidae (Tanagers and Allies),, +33941,species,blkflo1,Black Flowerpiercer,Diglossa humeralis,Passeriformes,Thraupidae (Tanagers and Allies),, +33945,species,bktflo1,Black-throated Flowerpiercer,Diglossa brunneiventris,Passeriformes,Thraupidae (Tanagers and Allies),, +33946,species,gybflo1,Gray-bellied Flowerpiercer,Diglossa carbonaria,Passeriformes,Thraupidae (Tanagers and Allies),, +33947,hybrid,x00981,Black-throated x Gray-bellied Flowerpiercer (hybrid),Diglossa brunneiventris x carbonaria,Passeriformes,Thraupidae (Tanagers and Allies),, +33948,species,venflo1,Venezuelan Flowerpiercer,Diglossa venezuelensis,Passeriformes,Thraupidae (Tanagers and Allies),, +33949,species,whsflo1,White-sided Flowerpiercer,Diglossa albilatera,Passeriformes,Thraupidae (Tanagers and Allies),, +33954,species,scaflo1,Scaled Flowerpiercer,Diglossa duidae,Passeriformes,Thraupidae (Tanagers and Allies),, +33958,species,greflo1,Greater Flowerpiercer,Diglossa major,Passeriformes,Thraupidae (Tanagers and Allies),, +33963,species,indflo1,Indigo Flowerpiercer,Diglossa indigotica,Passeriformes,Thraupidae (Tanagers and Allies),, +33964,species,cibflo1,Cinnamon-bellied Flowerpiercer,Diglossa baritula,Passeriformes,Thraupidae (Tanagers and Allies),, +33968,species,slaflo1,Slaty Flowerpiercer,Diglossa plumbea,Passeriformes,Thraupidae (Tanagers and Allies),, +33971,species,rusflo1,Rusty Flowerpiercer,Diglossa sittoides,Passeriformes,Thraupidae (Tanagers and Allies),, +33978,species,debflo1,Deep-blue Flowerpiercer,Diglossa glauca,Passeriformes,Thraupidae (Tanagers and Allies),, +33981,species,bluflo1,Bluish Flowerpiercer,Diglossa caerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, +33988,species,masflo1,Masked Flowerpiercer,Diglossa cyanea,Passeriformes,Thraupidae (Tanagers and Allies),, +33994,spuh,flower1,flowerpiercer sp.,Diglossa sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +33995,species,plushc1,Plushcap,Catamblyrhynchus diadema,Passeriformes,Thraupidae (Tanagers and Allies),, +33999,species,bbbtan1,Black-backed Bush Tanager,Urothraupis stolzmanni,Passeriformes,Thraupidae (Tanagers and Allies),, +34000,species,bhsfin1,Black-hooded Sierra-Finch,Phrygilus atriceps,Passeriformes,Thraupidae (Tanagers and Allies),, +34001,species,pesfin1,Peruvian Sierra-Finch,Phrygilus punensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34004,species,gyhsif1,Gray-hooded Sierra-Finch,Phrygilus gayi,Passeriformes,Thraupidae (Tanagers and Allies),, +34005,issf,gyhsif2,Gray-hooded Sierra-Finch (minor),Phrygilus gayi minor,Passeriformes,Thraupidae (Tanagers and Allies),,gyhsif1 +34006,issf,gyhsif3,Gray-hooded Sierra-Finch (gayi/caniceps),Phrygilus gayi gayi/caniceps,Passeriformes,Thraupidae (Tanagers and Allies),,gyhsif1 +34009,species,pasfin1,Patagonian Sierra-Finch,Phrygilus patagonicus,Passeriformes,Thraupidae (Tanagers and Allies),, +34010,species,codfin1,Common Diuca-Finch,Diuca diuca,Passeriformes,Thraupidae (Tanagers and Allies),, +34015,species,cawfin1,White-bridled Finch,Melanodera melanodera,Passeriformes,Thraupidae (Tanagers and Allies),, +34016,issf,whbfin2,White-bridled Finch (Fuegian),Melanodera melanodera princetoniana,Passeriformes,Thraupidae (Tanagers and Allies),,cawfin1 +34017,issf,whbfin3,White-bridled Finch (Falkland),Melanodera melanodera melanodera,Passeriformes,Thraupidae (Tanagers and Allies),,cawfin1 +34018,species,yebfin1,Yellow-bridled Finch,Melanodera xanthogramma,Passeriformes,Thraupidae (Tanagers and Allies),, +34019,issf,yebfin2,Yellow-bridled Finch (White-tailed),Melanodera xanthogramma barrosi,Passeriformes,Thraupidae (Tanagers and Allies),,yebfin1 +34020,issf,yebfin3,Yellow-bridled Finch (Yellow-tailed),Melanodera xanthogramma xanthogramma,Passeriformes,Thraupidae (Tanagers and Allies),,yebfin1 +34021,species,tildac1,Tit-like Dacnis,Xenodacnis parina,Passeriformes,Thraupidae (Tanagers and Allies),, +34022,issf,tildac3,Tit-like Dacnis (petersi/bella),Xenodacnis parina petersi/bella,Passeriformes,Thraupidae (Tanagers and Allies),,tildac1 +34025,issf,tildac2,Tit-like Dacnis (parina),Xenodacnis parina parina,Passeriformes,Thraupidae (Tanagers and Allies),,tildac1 +34026,species,rbsfin1,Red-backed Sierra-Finch,Idiopsar dorsalis,Passeriformes,Thraupidae (Tanagers and Allies),, +34027,species,wtsfin1,White-throated Sierra-Finch,Idiopsar erythronotus,Passeriformes,Thraupidae (Tanagers and Allies),, +34028,species,shtfin1,Short-tailed Finch,Idiopsar brachyurus,Passeriformes,Thraupidae (Tanagers and Allies),, +34029,species,wwdfin1,White-winged Diuca-Finch,Idiopsar speculifer,Passeriformes,Thraupidae (Tanagers and Allies),, +34032,species,plsfin1,Plumbeous Sierra-Finch,Geospizopsis unicolor,Passeriformes,Thraupidae (Tanagers and Allies),, +34039,species,absfin1,Ash-breasted Sierra-Finch,Geospizopsis plebejus,Passeriformes,Thraupidae (Tanagers and Allies),, +34042,species,unifin1,Uniform Finch,Haplospiza unicolor,Passeriformes,Thraupidae (Tanagers and Allies),, +34043,species,slafin1,Slaty Finch,Spodiornis rusticus,Passeriformes,Thraupidae (Tanagers and Allies),, +34048,species,pebfin1,Peg-billed Finch,Acanthidops bairdi,Passeriformes,Thraupidae (Tanagers and Allies),, +34049,species,blcfin1,Black-crested Finch,Lophospingus pusillus,Passeriformes,Thraupidae (Tanagers and Allies),, +34050,species,gycfin1,Gray-crested Finch,Lophospingus griseocristatus,Passeriformes,Thraupidae (Tanagers and Allies),, +34051,slash,y00920,Black-crested/Gray-crested Finch,Lophospingus pusillus/griseocristatus,Passeriformes,Thraupidae (Tanagers and Allies),, +34052,species,goifin1,Gough Island Finch,Rowettia goughensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34053,species,nigfin1,Inaccessible Island Finch,Nesospiza acunhae,Passeriformes,Thraupidae (Tanagers and Allies),, +34054,issf,nigfin2,Inaccessible Island Finch (Lowland),Nesospiza acunhae acunhae,Passeriformes,Thraupidae (Tanagers and Allies),,nigfin1 +34055,issf,inifin1,Inaccessible Island Finch (Upland),Nesospiza acunhae fraseri,Passeriformes,Thraupidae (Tanagers and Allies),,nigfin1 +34056,issf,wilfin2,Inaccessible Island Finch (Dunn's),Nesospiza acunhae dunnei,Passeriformes,Thraupidae (Tanagers and Allies),,nigfin1 +34057,species,nigfin3,Nightingale Island Finch,Nesospiza questi,Passeriformes,Thraupidae (Tanagers and Allies),, +34058,species,wilfin3,Wilkins's Finch,Nesospiza wilkinsi,Passeriformes,Thraupidae (Tanagers and Allies),, +34059,slash,y01102,Nightingale Island/Wilkins's Finch,Nesospiza questi/wilkinsi,Passeriformes,Thraupidae (Tanagers and Allies),, +34060,species,cinfin1,Cinereous Finch,Piezorina cinerea,Passeriformes,Thraupidae (Tanagers and Allies),, +34061,species,slbfin3,Slender-billed Finch,Xenospingus concolor,Passeriformes,Thraupidae (Tanagers and Allies),, +34062,species,grifin1,Great Inca-Finch,Incaspiza pulchra,Passeriformes,Thraupidae (Tanagers and Allies),, +34063,species,rbifin1,Rufous-backed Inca-Finch,Incaspiza personata,Passeriformes,Thraupidae (Tanagers and Allies),, +34064,species,gywinf1,Gray-winged Inca-Finch,Incaspiza ortizi,Passeriformes,Thraupidae (Tanagers and Allies),, +34065,species,bbifin1,Buff-bridled Inca-Finch,Incaspiza laeta,Passeriformes,Thraupidae (Tanagers and Allies),, +34066,species,liifin1,Little Inca-Finch,Incaspiza watkinsi,Passeriformes,Thraupidae (Tanagers and Allies),, +34067,spuh,inca-f1,inca-finch sp.,Incaspiza sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34068,species,mosfin1,Mourning Sierra-Finch,Rhopospina fruticeti,Passeriformes,Thraupidae (Tanagers and Allies),, +34069,issf,mousif1,Mourning Sierra-Finch (Mourning),Rhopospina fruticeti fruticeti/peruviana,Passeriformes,Thraupidae (Tanagers and Allies),,mosfin1 +34072,issf,mousif2,Mourning Sierra-Finch (Blackish),Rhopospina fruticeti coracina,Passeriformes,Thraupidae (Tanagers and Allies),,mosfin1 +34073,species,blufin1,Blue Finch,Porphyrospiza caerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, +34074,species,casfin1,Carbonated Sierra-Finch,Porphyrospiza carbonaria,Passeriformes,Thraupidae (Tanagers and Allies),, +34075,species,btsfin1,Band-tailed Sierra-Finch,Porphyrospiza alaudina,Passeriformes,Thraupidae (Tanagers and Allies),, +34082,spuh,sierra1,sierra-finch sp.,Phrygilus/Idiopsar/Geospizopsis/Rhopospina/Porphyrospiza sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34083,species,blhhem1,Black-headed Hemispingus,Pseudospingus verticalis,Passeriformes,Thraupidae (Tanagers and Allies),, +34084,species,drahem1,Drab Hemispingus,Pseudospingus xanthophthalmus,Passeriformes,Thraupidae (Tanagers and Allies),, +34085,species,gyhbut1,Gray-hooded Bush Tanager,Cnemoscopus rubrirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34086,issf,gyhbut2,Gray-hooded Bush Tanager (rubrirostris),Cnemoscopus rubrirostris rubrirostris,Passeriformes,Thraupidae (Tanagers and Allies),,gyhbut1 +34087,issf,gyhbut3,Gray-hooded Bush Tanager (chrysogaster),Cnemoscopus rubrirostris chrysogaster,Passeriformes,Thraupidae (Tanagers and Allies),,gyhbut1 +34088,species,whrtan1,White-rumped Tanager,Cypsnagra hirundinacea,Passeriformes,Thraupidae (Tanagers and Allies),, +34091,species,ltrfin1,Long-tailed Reed Finch,Donacospiza albifrons,Passeriformes,Thraupidae (Tanagers and Allies),, +34092,species,cbmfin1,Chestnut-breasted Mountain-Finch,Poospizopsis caesar,Passeriformes,Thraupidae (Tanagers and Allies),, +34093,species,rswfin1,Rufous-sided Warbling-Finch,Poospizopsis hypochondria,Passeriformes,Thraupidae (Tanagers and Allies),, +34096,species,bcwfin1,Bay-chested Warbling-Finch,Castanozoster thoracicus,Passeriformes,Thraupidae (Tanagers and Allies),, +34097,species,slbhem1,Slaty-backed Hemispingus,Poospiza goeringi,Passeriformes,Thraupidae (Tanagers and Allies),, +34098,species,rubhem1,Rufous-browed Hemispingus,Poospiza rufosuperciliaris,Passeriformes,Thraupidae (Tanagers and Allies),, +34099,species,bowfin1,Bolivian Warbling-Finch,Poospiza boliviana,Passeriformes,Thraupidae (Tanagers and Allies),, +34100,species,ciwfin2,Cinnamon Warbling-Finch,Poospiza ornata,Passeriformes,Thraupidae (Tanagers and Allies),, +34101,species,barwaf2,Black-and-chestnut Warbling-Finch,Poospiza whitii,Passeriformes,Thraupidae (Tanagers and Allies),, +34102,species,barwaf1,Black-and-rufous Warbling-Finch,Poospiza nigrorufa,Passeriformes,Thraupidae (Tanagers and Allies),, +34103,slash,barfin1,Black-and-chestnut/Black-and-rufous Warbling-Finch,Poospiza whitii/nigrorufa,Passeriformes,Thraupidae (Tanagers and Allies),, +34104,species,rbwfin1,Rufous-breasted Warbling-Finch,Poospiza rubecula,Passeriformes,Thraupidae (Tanagers and Allies),, +34105,species,cowfin1,Collared Warbling-Finch,Poospiza hispaniolensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34106,species,comfin1,Cochabamba Mountain-Finch,Poospiza garleppi,Passeriformes,Thraupidae (Tanagers and Allies),, +34107,species,tumfin1,Tucuman Mountain-Finch,Poospiza baeri,Passeriformes,Thraupidae (Tanagers and Allies),, +34108,spuh,warbli1,warbling-finch sp.,Microspingus/Poospizopsis/Castanozoster/Poospiza sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34109,species,styfin1,Stripe-tailed Yellow-Finch,Sicalis citrina,Passeriformes,Thraupidae (Tanagers and Allies),, +34113,species,puyfin1,Puna Yellow-Finch,Sicalis lutea,Passeriformes,Thraupidae (Tanagers and Allies),, +34114,species,bryfin1,Bright-rumped Yellow-Finch,Sicalis uropygialis,Passeriformes,Thraupidae (Tanagers and Allies),, +34118,species,chyfin1,Citron-headed Yellow-Finch,Sicalis luteocephala,Passeriformes,Thraupidae (Tanagers and Allies),, +34119,species,gryfin2,Greater Yellow-Finch,Sicalis auriventris,Passeriformes,Thraupidae (Tanagers and Allies),, +34120,species,gryfin3,Greenish Yellow-Finch,Sicalis olivascens,Passeriformes,Thraupidae (Tanagers and Allies),, +34124,species,monyef1,Monte Yellow-Finch,Sicalis mendozae,Passeriformes,Thraupidae (Tanagers and Allies),, +34125,species,payfin1,Patagonian Yellow-Finch,Sicalis lebruni,Passeriformes,Thraupidae (Tanagers and Allies),, +34126,species,ofyfin1,Orange-fronted Yellow-Finch,Sicalis columbiana,Passeriformes,Thraupidae (Tanagers and Allies),, +34130,species,saffin,Saffron Finch,Sicalis flaveola,Passeriformes,Thraupidae (Tanagers and Allies),, +34131,issf,saffin1,Saffron Finch (Saffron),Sicalis flaveola [flaveola Group],Passeriformes,Thraupidae (Tanagers and Allies),,saffin +34135,issf,saffin2,Saffron Finch (Pelzeln's),Sicalis flaveola pelzelni,Passeriformes,Thraupidae (Tanagers and Allies),,saffin +34136,species,gryfin1,Grassland Yellow-Finch,Sicalis luteola,Passeriformes,Thraupidae (Tanagers and Allies),, +34137,issf,grayef1,Grassland Yellow-Finch (Northern),Sicalis luteola [chrysops Group],Passeriformes,Thraupidae (Tanagers and Allies),,gryfin1 +34141,issf,grayef2,Grassland Yellow-Finch (Montane),Sicalis luteola bogotensis,Passeriformes,Thraupidae (Tanagers and Allies),,gryfin1 +34142,issf,grayef3,Grassland Yellow-Finch (Grassland),Sicalis luteola [luteola Group],Passeriformes,Thraupidae (Tanagers and Allies),,gryfin1 +34146,species,rayfin1,Raimondi's Yellow-Finch,Sicalis raimondii,Passeriformes,Thraupidae (Tanagers and Allies),, +34147,species,sutfin1,Sulphur-throated Finch,Sicalis taczanowskii,Passeriformes,Thraupidae (Tanagers and Allies),, +34148,spuh,yellow4,yellow-finch sp.,Sicalis sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34149,species,wtgfin1,Wedge-tailed Grass-Finch,Emberizoides herbicola,Passeriformes,Thraupidae (Tanagers and Allies),, +34156,species,dugfin1,Duida Grass-Finch,Emberizoides duidae,Passeriformes,Thraupidae (Tanagers and Allies),, +34157,species,lesgrf1,Lesser Grass-Finch,Emberizoides ypiranganus,Passeriformes,Thraupidae (Tanagers and Allies),, +34158,species,grpfin1,Great Pampa-Finch,Embernagra platensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34159,issf,grepaf1,Great Pampa-Finch (Western),Embernagra platensis olivascens,Passeriformes,Thraupidae (Tanagers and Allies),,grpfin1 +34160,issf,grepaf2,Great Pampa-Finch (Eastern),Embernagra platensis platensis,Passeriformes,Thraupidae (Tanagers and Allies),,grpfin1 +34161,species,ptpfin1,Pale-throated Pampa-Finch,Embernagra longicauda,Passeriformes,Thraupidae (Tanagers and Allies),, +34162,species,blbgra1,Blue-black Grassquit,Volatinia jacarina,Passeriformes,Thraupidae (Tanagers and Allies),, +34166,species,lessee2,Lesson's Seedeater,Sporophila bouvronides,Passeriformes,Thraupidae (Tanagers and Allies),, +34169,species,linsee1,Lined Seedeater,Sporophila lineola,Passeriformes,Thraupidae (Tanagers and Allies),, +34170,slash,y00699,Lesson's/Lined Seedeater,Sporophila bouvronides/lineola,Passeriformes,Thraupidae (Tanagers and Allies),, +34171,species,whbsee1,White-bellied Seedeater,Sporophila leucoptera,Passeriformes,Thraupidae (Tanagers and Allies),, +34172,issf,whbsee3,White-bellied Seedeater (Bicolored),Sporophila leucoptera bicolor,Passeriformes,Thraupidae (Tanagers and Allies),,whbsee1 +34173,issf,whbsee4,White-bellied Seedeater (Gray-backed),Sporophila leucoptera [leucoptera Group],Passeriformes,Thraupidae (Tanagers and Allies),,whbsee1 +34177,species,pabsee1,Parrot-billed Seedeater,Sporophila peruviana,Passeriformes,Thraupidae (Tanagers and Allies),, +34180,species,chtsee1,Chestnut-throated Seedeater,Sporophila telasco,Passeriformes,Thraupidae (Tanagers and Allies),, +34181,species,drasee1,Drab Seedeater,Sporophila simplex,Passeriformes,Thraupidae (Tanagers and Allies),, +34182,species,chbsee1,Chestnut-bellied Seedeater,Sporophila castaneiventris,Passeriformes,Thraupidae (Tanagers and Allies),, +34183,species,rubsee1,Ruddy-breasted Seedeater,Sporophila minuta,Passeriformes,Thraupidae (Tanagers and Allies),, +34187,species,batsee2,Black-and-tawny Seedeater,Sporophila nigrorufa,Passeriformes,Thraupidae (Tanagers and Allies),, +34188,species,capsee1,Copper Seedeater,Sporophila bouvreuil,Passeriformes,Thraupidae (Tanagers and Allies),, +34189,species,pebsee1,Pearly-bellied Seedeater,Sporophila pileata,Passeriformes,Thraupidae (Tanagers and Allies),, +34190,species,tabsee1,Tawny-bellied Seedeater,Sporophila hypoxantha,Passeriformes,Thraupidae (Tanagers and Allies),, +34191,species,datsee1,Dark-throated Seedeater,Sporophila ruficollis,Passeriformes,Thraupidae (Tanagers and Allies),, +34192,form,ibesee1,Ibera Seedeater (undescribed form),Sporophila [undescribed form],Passeriformes,Thraupidae (Tanagers and Allies),, +34193,species,marsee1,Marsh Seedeater,Sporophila palustris,Passeriformes,Thraupidae (Tanagers and Allies),, +34194,species,rursee1,Rufous-rumped Seedeater,Sporophila hypochroma,Passeriformes,Thraupidae (Tanagers and Allies),, +34195,species,chesee1,Chestnut Seedeater,Sporophila cinnamomea,Passeriformes,Thraupidae (Tanagers and Allies),, +34196,species,blbsee2,Black-bellied Seedeater,Sporophila melanogaster,Passeriformes,Thraupidae (Tanagers and Allies),, +34197,species,tbsfin1,Thick-billed Seed-Finch,Sporophila funerea,Passeriformes,Thraupidae (Tanagers and Allies),, +34198,species,cbsfin,Chestnut-bellied Seed-Finch,Sporophila angolensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34201,species,nisfin1,Nicaraguan Seed-Finch,Sporophila nuttingi,Passeriformes,Thraupidae (Tanagers and Allies),, +34202,species,gbsfin1,Great-billed Seed-Finch,Sporophila maximiliani,Passeriformes,Thraupidae (Tanagers and Allies),, +34205,species,lbsfin1,Large-billed Seed-Finch,Sporophila crassirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34208,species,bbsfin1,Black-billed Seed-Finch,Sporophila atrirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34211,species,varsee3,Variable Seedeater,Sporophila corvina,Passeriformes,Thraupidae (Tanagers and Allies),, +34212,issf,varsee2,Variable Seedeater (Black),Sporophila corvina corvina,Passeriformes,Thraupidae (Tanagers and Allies),,varsee3 +34213,issf,varsee4,Variable Seedeater (Variable),Sporophila corvina [ophthalmica Group],Passeriformes,Thraupidae (Tanagers and Allies),,varsee3 +34217,species,grysee1,Gray Seedeater,Sporophila intermedia,Passeriformes,Thraupidae (Tanagers and Allies),, +34221,species,wibsee1,Wing-barred Seedeater,Sporophila americana,Passeriformes,Thraupidae (Tanagers and Allies),, +34224,species,caqsee1,Caqueta Seedeater,Sporophila murallae,Passeriformes,Thraupidae (Tanagers and Allies),, +34225,species,whcsee1,Morelet's Seedeater,Sporophila morelleti,Passeriformes,Thraupidae (Tanagers and Allies),, +34228,species,whcsee2,Cinnamon-rumped Seedeater,Sporophila torqueola,Passeriformes,Thraupidae (Tanagers and Allies),, +34231,slash,whcsee,Morelet's/Cinnamon-rumped Seedeater,Sporophila morelleti/torqueola,Passeriformes,Thraupidae (Tanagers and Allies),, +34232,species,whnsee1,White-naped Seedeater,Sporophila fringilloides,Passeriformes,Thraupidae (Tanagers and Allies),, +34233,species,bawsee1,Black-and-white Seedeater,Sporophila luctuosa,Passeriformes,Thraupidae (Tanagers and Allies),, +34234,species,yebsee1,Yellow-bellied Seedeater,Sporophila nigricollis,Passeriformes,Thraupidae (Tanagers and Allies),, +34238,species,dubsee1,Dubois's Seedeater,Sporophila ardesiaca,Passeriformes,Thraupidae (Tanagers and Allies),, +34239,slash,y01171,Yellow-bellied/Dubois's Seedeater,Sporophila nigricollis/ardesiaca,Passeriformes,Thraupidae (Tanagers and Allies),, +34240,species,docsee1,Double-collared Seedeater,Sporophila caerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, +34244,species,slcsee1,Slate-colored Seedeater,Sporophila schistacea,Passeriformes,Thraupidae (Tanagers and Allies),, +34249,species,temsee1,Temminck's Seedeater,Sporophila falcirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34250,species,bufsee1,Buffy-fronted Seedeater,Sporophila frontalis,Passeriformes,Thraupidae (Tanagers and Allies),, +34251,species,plusee1,Plumbeous Seedeater,Sporophila plumbea,Passeriformes,Thraupidae (Tanagers and Allies),, +34255,species,trosee1,Tropeiro Seedeater,Sporophila beltoni,Passeriformes,Thraupidae (Tanagers and Allies),, +34256,species,rucsee1,Rusty-collared Seedeater,Sporophila collaris,Passeriformes,Thraupidae (Tanagers and Allies),, +34260,species,whtsee1,White-throated Seedeater,Sporophila albogularis,Passeriformes,Thraupidae (Tanagers and Allies),, +34261,spuh,sporop1,Sporophila sp.,Sporophila sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34262,species,batsee1,Band-tailed Seedeater,Catamenia analis,Passeriformes,Thraupidae (Tanagers and Allies),, +34270,species,plcsee1,Plain-colored Seedeater,Catamenia inornata,Passeriformes,Thraupidae (Tanagers and Allies),, +34274,species,parsee1,Paramo Seedeater,Catamenia homochroa,Passeriformes,Thraupidae (Tanagers and Allies),, +34278,spuh,catame1,Catamenia sp.,Catamenia sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34279,species,cocfin2,Coal-crested Finch,Charitospiza eucosma,Passeriformes,Thraupidae (Tanagers and Allies),, +34280,species,blmfin1,Black-masked Finch,Coryphaspiza melanotis,Passeriformes,Thraupidae (Tanagers and Allies),, +34283,species,pilfin1,Pileated Finch,Coryphospingus pileatus,Passeriformes,Thraupidae (Tanagers and Allies),, +34287,species,recfin1,Red-crested Finch,Coryphospingus cucullatus,Passeriformes,Thraupidae (Tanagers and Allies),, +34291,species,crbfin1,Crimson-breasted Finch,Rhodospingus cruentus,Passeriformes,Thraupidae (Tanagers and Allies),, +34292,species,yelcar1,Yellow Cardinal,Gubernatrix cristata,Passeriformes,Thraupidae (Tanagers and Allies),, +34293,hybrid,x00899,Common Diuca-Finch x Yellow Cardinal (hybrid),Diuca diuca x Gubernatrix cristata,Passeriformes,Thraupidae (Tanagers and Allies),, +34294,species,banana,Bananaquit,Coereba flaveola,Passeriformes,Thraupidae (Tanagers and Allies),, +34295,issf,banana4,Bananaquit (Bahamas),Coereba flaveola bahamensis,Passeriformes,Thraupidae (Tanagers and Allies),,banana +34296,issf,banana3,Bananaquit (Cozumel I.),Coereba flaveola caboti,Passeriformes,Thraupidae (Tanagers and Allies),,banana +34297,issf,banana6,Bananaquit (Greater Antillean),Coereba flaveola [flaveola Group],Passeriformes,Thraupidae (Tanagers and Allies),,banana +34304,issf,banana11,Bananaquit (Puerto Rico),Coereba flaveola portoricensis,Passeriformes,Thraupidae (Tanagers and Allies),,banana +34305,issf,banana9,Bananaquit (Lesser Antillean),Coereba flaveola [bartholemica Group],Passeriformes,Thraupidae (Tanagers and Allies),,banana +34312,issf,banana12,Bananaquit (St. Vincent),Coereba flaveola atrata,Passeriformes,Thraupidae (Tanagers and Allies),,banana +34313,issf,banana7,Bananaquit (Grenada),Coereba flaveola aterrima,Passeriformes,Thraupidae (Tanagers and Allies),,banana +34314,issf,banana10,Bananaquit (Los Roques),Coereba flaveola lowii,Passeriformes,Thraupidae (Tanagers and Allies),,banana +34315,issf,banana8,Bananaquit (laurae/melanornis),Coereba flaveola laurae/melanornis,Passeriformes,Thraupidae (Tanagers and Allies),,banana +34318,issf,banana5,Bananaquit (Continental),Coereba flaveola [luteola Group],Passeriformes,Thraupidae (Tanagers and Allies),,banana +34340,species,yefgra1,Yellow-faced Grassquit,Tiaris olivaceus,Passeriformes,Thraupidae (Tanagers and Allies),, +34346,species,orange1,Orangequit,Euneornis campestris,Passeriformes,Thraupidae (Tanagers and Allies),, +34347,species,purbul1,Puerto Rican Bullfinch,Melopyrrha portoricensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34350,species,cubbul1,Cuban Bullfinch,Melopyrrha nigra,Passeriformes,Thraupidae (Tanagers and Allies),, +34351,issf,cubbul2,Cuban Bullfinch (Cuban),Melopyrrha nigra nigra,Passeriformes,Thraupidae (Tanagers and Allies),,cubbul1 +34352,issf,cubbul3,Cuban Bullfinch (Grand Cayman),Melopyrrha nigra taylori,Passeriformes,Thraupidae (Tanagers and Allies),,cubbul1 +34353,species,grabul1,Greater Antillean Bullfinch,Melopyrrha violacea,Passeriformes,Thraupidae (Tanagers and Allies),, +34359,species,yesgra1,Yellow-shouldered Grassquit,Loxipasser anoxanthus,Passeriformes,Thraupidae (Tanagers and Allies),, +34360,species,cubgra,Cuban Grassquit,Phonipara canora,Passeriformes,Thraupidae (Tanagers and Allies),, +34361,species,leabul1,Lesser Antillean Bullfinch,Loxigilla noctis,Passeriformes,Thraupidae (Tanagers and Allies),, +34370,species,barbul1,Barbados Bullfinch,Loxigilla barbadensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34371,species,slbfin1,St. Lucia Black Finch,Melanospiza richardsoni,Passeriformes,Thraupidae (Tanagers and Allies),, +34372,species,bkfgra,Black-faced Grassquit,Melanospiza bicolor,Passeriformes,Thraupidae (Tanagers and Allies),, +34381,species,ducgra2,Dull-colored Grassquit,Asemospiza obscura,Passeriformes,Thraupidae (Tanagers and Allies),, +34386,species,soogra2,Sooty Grassquit,Asemospiza fuliginosa,Passeriformes,Thraupidae (Tanagers and Allies),, +34387,species,cocfin1,Cocos Finch,Pinaroloxias inornata,Passeriformes,Thraupidae (Tanagers and Allies),, +34388,species,warfin1,Green Warbler-Finch,Certhidea olivacea,Passeriformes,Thraupidae (Tanagers and Allies),, +34389,species,grywaf1,Gray Warbler-Finch,Certhidea fusca,Passeriformes,Thraupidae (Tanagers and Allies),, +34397,species,vegfin2,Vegetarian Finch,Platyspiza crassirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34398,species,woofin1,Woodpecker Finch,Camarhynchus pallidus,Passeriformes,Thraupidae (Tanagers and Allies),, +34399,issf,woofin2,Woodpecker Finch (pallidus/productus),Camarhynchus pallidus pallidus/productus,Passeriformes,Thraupidae (Tanagers and Allies),,woofin1 +34402,issf,woofin3,Woodpecker Finch (striatipecta),Camarhynchus pallidus striatipecta,Passeriformes,Thraupidae (Tanagers and Allies),,woofin1 +34403,species,latfin1,Large Tree-Finch,Camarhynchus psittacula,Passeriformes,Thraupidae (Tanagers and Allies),, +34407,species,metfin1,Medium Tree-Finch,Camarhynchus pauper,Passeriformes,Thraupidae (Tanagers and Allies),, +34408,species,smtfin1,Small Tree-Finch,Camarhynchus parvulus,Passeriformes,Thraupidae (Tanagers and Allies),, +34411,species,manfin1,Mangrove Finch,Camarhynchus heliobates,Passeriformes,Thraupidae (Tanagers and Allies),, +34412,species,smgfin1,Small Ground-Finch,Geospiza fuliginosa,Passeriformes,Thraupidae (Tanagers and Allies),, +34413,species,lagfin1,Large Ground-Finch,Geospiza magnirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34414,species,shbgrf1,Vampire Ground-Finch,Geospiza septentrionalis,Passeriformes,Thraupidae (Tanagers and Allies),, +34415,species,shbgrf2,Genovesa Ground-Finch,Geospiza acutirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34416,species,shbgrf3,Sharp-beaked Ground-Finch,Geospiza difficilis,Passeriformes,Thraupidae (Tanagers and Allies),, +34417,species,cocfin3,Common Cactus-Finch,Geospiza scandens,Passeriformes,Thraupidae (Tanagers and Allies),, +34422,species,megfin1,Medium Ground-Finch,Geospiza fortis,Passeriformes,Thraupidae (Tanagers and Allies),, +34423,species,larcaf2,Española Ground-Finch,Geospiza conirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34424,species,gencaf1,Genovesa Cactus-Finch,Geospiza propinqua,Passeriformes,Thraupidae (Tanagers and Allies),, +34427,spuh,geospi1,Geospiza sp.,Geospiza sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34428,spuh,galfin1,galapagos finch sp.,Geospiza/Camarhynchus/Platyspiza/Certhidea sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34429,species,yesgro2,Yellow-shouldered Grosbeak,Parkerthraustes humeralis,Passeriformes,Thraupidae (Tanagers and Allies),, +34430,species,mccfin1,Many-colored Chaco Finch,Saltatricula multicolor,Passeriformes,Thraupidae (Tanagers and Allies),, +34431,species,bltsal1,Black-throated Saltator,Saltatricula atricollis,Passeriformes,Thraupidae (Tanagers and Allies),, +34432,species,butsal1,Buff-throated Saltator,Saltator maximus,Passeriformes,Thraupidae (Tanagers and Allies),, +34438,species,blwsal1,Black-winged Saltator,Saltator atripennis,Passeriformes,Thraupidae (Tanagers and Allies),, +34441,species,blhsal1,Black-headed Saltator,Saltator atriceps,Passeriformes,Thraupidae (Tanagers and Allies),, +34448,species,orisal1,Orinocan Saltator,Saltator orenocensis,Passeriformes,Thraupidae (Tanagers and Allies),, +34451,species,grasal1,Grayish Saltator,Saltator coerulescens,Passeriformes,Thraupidae (Tanagers and Allies),, +34452,issf,grasal2,Grayish Saltator (Middle American),Saltator coerulescens [grandis Group],Passeriformes,Thraupidae (Tanagers and Allies),,grasal1 +34459,issf,grasal4,Grayish Saltator (Caribbean),Saltator coerulescens [olivascens Group],Passeriformes,Thraupidae (Tanagers and Allies),,grasal1 +34463,issf,grasal3,Grayish Saltator (Amazonian),Saltator coerulescens [coerulescens Group],Passeriformes,Thraupidae (Tanagers and Allies),,grasal1 +34468,species,strsal1,Streaked Saltator,Saltator striatipectus,Passeriformes,Thraupidae (Tanagers and Allies),, +34479,species,leasal1,Lesser Antillean Saltator,Saltator albicollis,Passeriformes,Thraupidae (Tanagers and Allies),, +34482,species,grwsal1,Green-winged Saltator,Saltator similis,Passeriformes,Thraupidae (Tanagers and Allies),, +34485,species,blcsal1,Black-cowled Saltator,Saltator nigriceps,Passeriformes,Thraupidae (Tanagers and Allies),, +34486,species,thbsal1,Thick-billed Saltator,Saltator maxillosus,Passeriformes,Thraupidae (Tanagers and Allies),, +34487,species,gobsal1,Golden-billed Saltator,Saltator aurantiirostris,Passeriformes,Thraupidae (Tanagers and Allies),, +34494,species,massal1,Masked Saltator,Saltator cinctus,Passeriformes,Thraupidae (Tanagers and Allies),, +34495,species,slcgro1,Slate-colored Grosbeak,Saltator grossus,Passeriformes,Thraupidae (Tanagers and Allies),, +34498,species,bltgro2,Black-throated Grosbeak,Saltator fuliginosus,Passeriformes,Thraupidae (Tanagers and Allies),, +34499,spuh,saltat1,saltator sp.,Saltator sp.,Passeriformes,Thraupidae (Tanagers and Allies),, +34500,spuh,passer1,passerine sp.,Passeriformes sp.,Passeriformes,,Others, +34501,spuh,bird1,bird sp.,Aves sp.,,,, \ No newline at end of file diff --git a/form_Families.py b/form_Families.py index 6e38396..f827f16 100644 --- a/form_Families.py +++ b/form_Families.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file 'Families.ui' +# Form implementation generated from reading ui file 'form_Families.ui' # -# Created by: PyQt5 UI code generator 5.10 +# Created by: PyQt5 UI code generator 5.11.2 # # WARNING! All changes made in this file will be lost! @@ -109,6 +109,7 @@ def setupUi(self, frmFamilies): self.lblFamilies.setObjectName("lblFamilies") self.verticalLayout_2.addWidget(self.lblFamilies) self.lstFamilies = QtWidgets.QListWidget(self.frame) + self.lstFamilies.setContextMenuPolicy(QtCore.Qt.ActionsContextMenu) self.lstFamilies.setObjectName("lstFamilies") self.verticalLayout_2.addWidget(self.lstFamilies) self.horizontalLayout.addWidget(self.frame) @@ -130,6 +131,7 @@ def setupUi(self, frmFamilies): self.lblSpecies.setObjectName("lblSpecies") self.verticalLayout_3.addWidget(self.lblSpecies) self.lstSpecies = QtWidgets.QListWidget(self.frame_2) + self.lstSpecies.setContextMenuPolicy(QtCore.Qt.ActionsContextMenu) self.lstSpecies.setObjectName("lstSpecies") self.verticalLayout_3.addWidget(self.lstSpecies) self.horizontalLayout.addWidget(self.frame_2) @@ -145,6 +147,8 @@ def setupUi(self, frmFamilies): self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.gvPieChart = QtWidgets.QGraphicsView(self.tab_2) self.gvPieChart.setFrameShape(QtWidgets.QFrame.NoFrame) + self.gvPieChart.setSizeAdjustPolicy(QtWidgets.QAbstractScrollArea.AdjustToContents) + self.gvPieChart.setViewportUpdateMode(QtWidgets.QGraphicsView.FullViewportUpdate) self.gvPieChart.setObjectName("gvPieChart") self.horizontalLayout_2.addWidget(self.gvPieChart) self.tblPieChartLegend = QtWidgets.QTableWidget(self.tab_2) @@ -153,6 +157,7 @@ def setupUi(self, frmFamilies): sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.tblPieChartLegend.sizePolicy().hasHeightForWidth()) self.tblPieChartLegend.setSizePolicy(sizePolicy) + self.tblPieChartLegend.setContextMenuPolicy(QtCore.Qt.ActionsContextMenu) self.tblPieChartLegend.setFrameShape(QtWidgets.QFrame.NoFrame) self.tblPieChartLegend.setFrameShadow(QtWidgets.QFrame.Plain) self.tblPieChartLegend.setLineWidth(0) @@ -169,6 +174,12 @@ def setupUi(self, frmFamilies): self.tabFamilies.addTab(self.tab_2, "") self.verticalLayout_4.addWidget(self.tabFamilies) self.scrollArea.setWidget(self.scrollAreaWidgetContents) + self.actionSetFamilyFilterToPieChartLegendFamily = QtWidgets.QAction(frmFamilies) + self.actionSetFamilyFilterToPieChartLegendFamily.setObjectName("actionSetFamilyFilterToPieChartLegendFamily") + self.actionSetFilterToFamily = QtWidgets.QAction(frmFamilies) + self.actionSetFilterToFamily.setObjectName("actionSetFilterToFamily") + self.actionSetFilterToSpecies = QtWidgets.QAction(frmFamilies) + self.actionSetFilterToSpecies.setObjectName("actionSetFilterToSpecies") self.retranslateUi(frmFamilies) self.tabFamilies.setCurrentIndex(1) @@ -187,5 +198,18 @@ def retranslateUi(self, frmFamilies): self.tabFamilies.setTabText(self.tabFamilies.indexOf(self.tab), _translate("frmFamilies", "Families")) self.tblPieChartLegend.setSortingEnabled(True) self.tabFamilies.setTabText(self.tabFamilies.indexOf(self.tab_2), _translate("frmFamilies", "Pie Chart")) + self.actionSetFamilyFilterToPieChartLegendFamily.setText(_translate("frmFamilies", "Set filter to family")) + self.actionSetFilterToFamily.setText(_translate("frmFamilies", "Set filter to family")) + self.actionSetFilterToSpecies.setText(_translate("frmFamilies", "Set filter to species")) import icons_rc + +if __name__ == "__main__": + import sys + app = QtWidgets.QApplication(sys.argv) + frmFamilies = QtWidgets.QWidget() + ui = Ui_frmFamilies() + ui.setupUi(frmFamilies) + frmFamilies.show() + sys.exit(app.exec_()) + diff --git a/form_Families.ui b/form_Families.ui index d063777..ca7b7df 100644 --- a/form_Families.ui +++ b/form_Families.ui @@ -138,7 +138,7 @@ - 0 + 1 @@ -208,6 +208,9 @@ + + Qt::ActionsContextMenu + 2 @@ -261,6 +264,9 @@ + + Qt::ActionsContextMenu + 2 @@ -290,6 +296,12 @@ QFrame::NoFrame + + QAbstractScrollArea::AdjustToContents + + + QGraphicsView::FullViewportUpdate + @@ -300,6 +312,9 @@ 0 + + Qt::ActionsContextMenu + QFrame::NoFrame @@ -339,6 +354,21 @@ + + + Set filter to family + + + + + Set filter to family + + + + + Set filter to species + + diff --git a/form_Individual.py b/form_Individual.py index 0777fdf..d19048e 100644 --- a/form_Individual.py +++ b/form_Individual.py @@ -1,13 +1,15 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file 'Individual.ui' +# Form implementation generated from reading ui file 'form_Individual.ui' # -# Created by: PyQt5 UI code generator 5.10 +# Created by: PyQt5 UI code generator 5.13.0 # # WARNING! All changes made in this file will be lost! + from PyQt5 import QtCore, QtGui, QtWidgets + class Ui_frmIndividual(object): def setupUi(self, frmIndividual): frmIndividual.setObjectName("frmIndividual") @@ -113,6 +115,9 @@ def setupUi(self, frmIndividual): self.lblOrderName.setWordWrap(True) self.lblOrderName.setObjectName("lblOrderName") self.verticalLayout_3.addWidget(self.lblOrderName) + self.lblSpeciesCode = QtWidgets.QLabel(self.frameNames) + self.lblSpeciesCode.setObjectName("lblSpeciesCode") + self.verticalLayout_3.addWidget(self.lblSpeciesCode) self.lblFirstSeen = QtWidgets.QLabel(self.frameNames) self.lblFirstSeen.setWordWrap(True) self.lblFirstSeen.setObjectName("lblFirstSeen") @@ -143,14 +148,6 @@ def setupUi(self, frmIndividual): self.verticalLayout_10.setContentsMargins(0, 0, 0, 0) self.verticalLayout_10.setSpacing(5) self.verticalLayout_10.setObjectName("verticalLayout_10") - self.buttonMacaulay = QtWidgets.QPushButton(self.frameButtons) - sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.buttonMacaulay.sizePolicy().hasHeightForWidth()) - self.buttonMacaulay.setSizePolicy(sizePolicy) - self.buttonMacaulay.setObjectName("buttonMacaulay") - self.verticalLayout_10.addWidget(self.buttonMacaulay) self.buttonWikipedia = QtWidgets.QPushButton(self.frameButtons) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) @@ -354,9 +351,9 @@ def retranslateUi(self, frmIndividual): self.lblCommonName.setText(_translate("frmIndividual", "Common Name")) self.lblScientificName.setText(_translate("frmIndividual", "Scientific Name")) self.lblOrderName.setText(_translate("frmIndividual", "Order Name")) + self.lblSpeciesCode.setText(_translate("frmIndividual", "TextLabel")) self.lblFirstSeen.setText(_translate("frmIndividual", "First Seen:")) self.lblMostRecentlySeen.setText(_translate("frmIndividual", "Most Recently Seen:")) - self.buttonMacaulay.setText(_translate("frmIndividual", "Macaulay")) self.buttonWikipedia.setText(_translate("frmIndividual", "Wikipedia")) self.buttonAllAboutBirds.setText(_translate("frmIndividual", "All About Birds")) self.buttonAudubon.setText(_translate("frmIndividual", "Audubon")) @@ -372,5 +369,4 @@ def retranslateUi(self, frmIndividual): self.lblMonthDates.setText(_translate("frmIndividual", "Dates")) self.lblMonthLocationsForDate.setText(_translate("frmIndividual", "Locations for the selected date")) self.tabIndividual.setTabText(self.tabIndividual.indexOf(self.tab_3), _translate("frmIndividual", "By Month")) - import icons_rc diff --git a/form_Individual.ui b/form_Individual.ui index d3c0973..25d3e5f 100644 --- a/form_Individual.ui +++ b/form_Individual.ui @@ -218,6 +218,13 @@ + + + + TextLabel + + + @@ -286,19 +293,6 @@ 0 - - - - - 0 - 0 - - - - Macaulay - - - diff --git a/form_LocationTotals.py b/form_LocationTotals.py index 0074fe0..3ea6d2c 100644 --- a/form_LocationTotals.py +++ b/form_LocationTotals.py @@ -1,17 +1,19 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file 'LocationTotals.ui' +# Form implementation generated from reading ui file 'form_LocationTotals.ui' # -# Created by: PyQt5 UI code generator 5.10 +# Created by: PyQt5 UI code generator 5.13.0 # # WARNING! All changes made in this file will be lost! + from PyQt5 import QtCore, QtGui, QtWidgets + class Ui_frmLocationTotals(object): def setupUi(self, frmLocationTotals): frmLocationTotals.setObjectName("frmLocationTotals") - frmLocationTotals.resize(600, 580) + frmLocationTotals.resize(665, 580) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) @@ -20,14 +22,15 @@ def setupUi(self, frmLocationTotals): icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/icon_locationtotals.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) frmLocationTotals.setWindowIcon(icon) + self.verticalLayout_7 = QtWidgets.QVBoxLayout(frmLocationTotals) + self.verticalLayout_7.setObjectName("verticalLayout_7") self.scrollArea = QtWidgets.QScrollArea(frmLocationTotals) - self.scrollArea.setGeometry(QtCore.QRect(10, 10, 601, 571)) self.scrollArea.setFrameShape(QtWidgets.QFrame.NoFrame) self.scrollArea.setFrameShadow(QtWidgets.QFrame.Plain) self.scrollArea.setWidgetResizable(True) self.scrollArea.setObjectName("scrollArea") self.scrollAreaWidgetContents = QtWidgets.QWidget() - self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 601, 571)) + self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 647, 562)) self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents") self.verticalLayout = QtWidgets.QVBoxLayout(self.scrollAreaWidgetContents) self.verticalLayout.setContentsMargins(5, 5, 5, 5) @@ -74,6 +77,29 @@ def setupUi(self, frmLocationTotals): self.verticalLayout.addWidget(self.lblDetails) self.tabLocationTotals = QtWidgets.QTabWidget(self.scrollAreaWidgetContents) self.tabLocationTotals.setObjectName("tabLocationTotals") + self.tabRegionTotals = QtWidgets.QWidget() + self.tabRegionTotals.setObjectName("tabRegionTotals") + self.verticalLayout_6 = QtWidgets.QVBoxLayout(self.tabRegionTotals) + self.verticalLayout_6.setObjectName("verticalLayout_6") + self.tblRegionTotals = QtWidgets.QTableWidget(self.tabRegionTotals) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.tblRegionTotals.sizePolicy().hasHeightForWidth()) + self.tblRegionTotals.setSizePolicy(sizePolicy) + self.tblRegionTotals.setContextMenuPolicy(QtCore.Qt.ActionsContextMenu) + self.tblRegionTotals.setFrameShape(QtWidgets.QFrame.StyledPanel) + self.tblRegionTotals.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) + self.tblRegionTotals.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) + self.tblRegionTotals.setObjectName("tblRegionTotals") + self.tblRegionTotals.setColumnCount(0) + self.tblRegionTotals.setRowCount(0) + self.tblRegionTotals.horizontalHeader().setVisible(False) + self.tblRegionTotals.horizontalHeader().setHighlightSections(False) + self.tblRegionTotals.verticalHeader().setVisible(False) + self.tblRegionTotals.verticalHeader().setHighlightSections(False) + self.verticalLayout_6.addWidget(self.tblRegionTotals) + self.tabLocationTotals.addTab(self.tabRegionTotals, "") self.tab = QtWidgets.QWidget() self.tab.setObjectName("tab") self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.tab) @@ -171,6 +197,7 @@ def setupUi(self, frmLocationTotals): self.tabLocationTotals.addTab(self.tab_2, "") self.verticalLayout.addWidget(self.tabLocationTotals) self.scrollArea.setWidget(self.scrollAreaWidgetContents) + self.verticalLayout_7.addWidget(self.scrollArea) self.actionSetLocationFilter = QtWidgets.QAction(frmLocationTotals) self.actionSetLocationFilter.setObjectName("actionSetLocationFilter") self.actionSetCountryFilter = QtWidgets.QAction(frmLocationTotals) @@ -190,6 +217,8 @@ def retranslateUi(self, frmLocationTotals): self.lblLocation.setText(_translate("frmLocationTotals", "Location")) self.lblDateRange.setText(_translate("frmLocationTotals", "Date Range")) self.lblDetails.setText(_translate("frmLocationTotals", "Details Label")) + self.tblRegionTotals.setSortingEnabled(True) + self.tabLocationTotals.setTabText(self.tabLocationTotals.indexOf(self.tabRegionTotals), _translate("frmLocationTotals", "Region Totals")) self.tblCountryTotals.setSortingEnabled(True) self.tabLocationTotals.setTabText(self.tabLocationTotals.indexOf(self.tab), _translate("frmLocationTotals", "Country Totals")) self.tblStateTotals.setSortingEnabled(True) @@ -202,5 +231,4 @@ def retranslateUi(self, frmLocationTotals): self.actionSetCountryFilter.setText(_translate("frmLocationTotals", "Set Filter to Country")) self.actionSetStateFilter.setText(_translate("frmLocationTotals", "Set Filter to State")) self.actionSetCountyFilter.setText(_translate("frmLocationTotals", "Set Filter to County")) - import icons_rc diff --git a/form_LocationTotals.ui b/form_LocationTotals.ui index 4cdcc0a..a1ddb37 100644 --- a/form_LocationTotals.ui +++ b/form_LocationTotals.ui @@ -6,7 +6,7 @@ 0 0 - 600 + 665 580 @@ -23,304 +23,344 @@ :/icon_locationtotals.png:/icon_locationtotals.png - - - - 10 - 10 - 601 - 571 - - - - QFrame::NoFrame - - - QFrame::Plain - - - true - - - - - 0 - 0 - 601 - 571 - - - - - 4 - - - 5 - - - 5 + + + + + QFrame::NoFrame - - 5 + + QFrame::Plain - - 5 + + true - - - - - 0 - 0 - - - - - 14 - 75 - true - - - - Location - - - - - - - - 0 - 0 - - - - - 12 - 50 - false - - - - Date Range + + + + 0 + 0 + 647 + 562 + + + + + 4 - - - - - - - 0 - 0 - + + 5 - - - 12 - 50 - false - + + 5 - - Details Label + + 5 - - - - - - 0 + + 5 - - - Country Totals - - - - - - - 0 - 0 - - - - Qt::ActionsContextMenu - - - QFrame::StyledPanel - - - Qt::ScrollBarAlwaysOff - - - QAbstractItemView::NoEditTriggers - - - true - - - false - - - false - - - false - - - false - - - - - - - - State Totals - - - - - - - 0 - 0 - - - - Qt::ActionsContextMenu - - - Qt::ScrollBarAlwaysOff - - - QAbstractItemView::NoEditTriggers - - - true - - - false - - - true - - - false - - - false - - - false - - - false - - - - - - - - County Totals - - - - - - - 0 - 0 - - - - Qt::ActionsContextMenu - - - Qt::ScrollBarAlwaysOff - - - QAbstractItemView::NoEditTriggers - - - true - - - false - - - true - - - false - - - false - - - false - - - false - - - - - - - - Location Totals - - - - - - - 0 - 0 - - - - Qt::ActionsContextMenu - - - Qt::ScrollBarAlwaysOff - - - QAbstractItemView::NoEditTriggers - - - true - - - false - - - true - - - false - - - false - - - false - - - false - - - - - - - - - - + + + + + 0 + 0 + + + + + 14 + 75 + true + + + + Location + + + + + + + + 0 + 0 + + + + + 12 + 50 + false + + + + Date Range + + + + + + + + 0 + 0 + + + + + 12 + 50 + false + + + + Details Label + + + + + + + 0 + + + + Region Totals + + + + + + + 0 + 0 + + + + Qt::ActionsContextMenu + + + QFrame::StyledPanel + + + Qt::ScrollBarAlwaysOff + + + QAbstractItemView::NoEditTriggers + + + true + + + false + + + false + + + false + + + false + + + + + + + + Country Totals + + + + + + + 0 + 0 + + + + Qt::ActionsContextMenu + + + QFrame::StyledPanel + + + Qt::ScrollBarAlwaysOff + + + QAbstractItemView::NoEditTriggers + + + true + + + false + + + false + + + false + + + false + + + + + + + + State Totals + + + + + + + 0 + 0 + + + + Qt::ActionsContextMenu + + + Qt::ScrollBarAlwaysOff + + + QAbstractItemView::NoEditTriggers + + + true + + + false + + + true + + + false + + + false + + + false + + + false + + + + + + + + County Totals + + + + + + + 0 + 0 + + + + Qt::ActionsContextMenu + + + Qt::ScrollBarAlwaysOff + + + QAbstractItemView::NoEditTriggers + + + true + + + false + + + true + + + false + + + false + + + false + + + false + + + + + + + + Location Totals + + + + + + + 0 + 0 + + + + Qt::ActionsContextMenu + + + Qt::ScrollBarAlwaysOff + + + QAbstractItemView::NoEditTriggers + + + true + + + false + + + true + + + false + + + false + + + false + + + false + + + + + + + + + + + + Set Filter to Location diff --git a/form_MDIMain.py b/form_MDIMain.py index cfc47ce..df4dc00 100644 --- a/form_MDIMain.py +++ b/form_MDIMain.py @@ -1,17 +1,19 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file 'MDIMain.ui' +# Form implementation generated from reading ui file 'form_MDIMain.ui' # -# Created by: PyQt5 UI code generator 5.10 +# Created by: PyQt5 UI code generator 5.13.0 # # WARNING! All changes made in this file will be lost! + from PyQt5 import QtCore, QtGui, QtWidgets + class Ui_MainWindow(object): def setupUi(self, MainWindow): MainWindow.setObjectName("MainWindow") - MainWindow.resize(1173, 1000) + MainWindow.resize(1262, 1000) self.centralwidget = QtWidgets.QWidget(MainWindow) self.centralwidget.setObjectName("centralwidget") self.mdiArea = QtWidgets.QMdiArea(self.centralwidget) @@ -29,7 +31,7 @@ def setupUi(self, MainWindow): self.mdiArea.setObjectName("mdiArea") MainWindow.setCentralWidget(self.centralwidget) self.menuBar = QtWidgets.QMenuBar(MainWindow) - self.menuBar.setGeometry(QtCore.QRect(0, 0, 1173, 19)) + self.menuBar.setGeometry(QtCore.QRect(0, 0, 1262, 22)) self.menuBar.setObjectName("menuBar") self.menuFile = QtWidgets.QMenu(self.menuBar) self.menuFile.setObjectName("menuFile") @@ -45,6 +47,10 @@ def setupUi(self, MainWindow): self.menuAbout.setObjectName("menuAbout") self.menuFilter = QtWidgets.QMenu(self.menuBar) self.menuFilter.setObjectName("menuFilter") + self.menuPhotos = QtWidgets.QMenu(self.menuBar) + self.menuPhotos.setObjectName("menuPhotos") + self.menuChoropleths = QtWidgets.QMenu(self.menuBar) + self.menuChoropleths.setObjectName("menuChoropleths") MainWindow.setMenuBar(self.menuBar) self.toolBar = QtWidgets.QToolBar(MainWindow) self.toolBar.setToolButtonStyle(QtCore.Qt.ToolButtonTextUnderIcon) @@ -54,9 +60,11 @@ def setupUi(self, MainWindow): self.statusBar.setObjectName("statusBar") MainWindow.setStatusBar(self.statusBar) self.dckFilter = QtWidgets.QDockWidget(MainWindow) - self.dckFilter.setMinimumSize(QtCore.QSize(86, 108)) - self.dckFilter.setBaseSize(QtCore.QSize(0, 0)) - self.dckFilter.setLayoutDirection(QtCore.Qt.LeftToRight) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.dckFilter.sizePolicy().hasHeightForWidth()) + self.dckFilter.setSizePolicy(sizePolicy) self.dckFilter.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) self.dckFilter.setAllowedAreas(QtCore.Qt.LeftDockWidgetArea|QtCore.Qt.RightDockWidgetArea) self.dckFilter.setObjectName("dckFilter") @@ -66,22 +74,55 @@ def setupUi(self, MainWindow): self.verticalLayout_3.setObjectName("verticalLayout_3") self.scrFilter = QtWidgets.QScrollArea(self.dockWidgetContents) self.scrFilter.setMinimumSize(QtCore.QSize(0, 0)) + self.scrFilter.setLayoutDirection(QtCore.Qt.LeftToRight) self.scrFilter.setFrameShape(QtWidgets.QFrame.NoFrame) + self.scrFilter.setFrameShadow(QtWidgets.QFrame.Plain) + self.scrFilter.setLineWidth(0) self.scrFilter.setSizeAdjustPolicy(QtWidgets.QAbstractScrollArea.AdjustToContents) self.scrFilter.setWidgetResizable(True) self.scrFilter.setObjectName("scrFilter") self.scrollAreaWidgetContents = QtWidgets.QWidget() - self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 183, 865)) + self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 179, 859)) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.scrollAreaWidgetContents.sizePolicy().hasHeightForWidth()) + self.scrollAreaWidgetContents.setSizePolicy(sizePolicy) self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents") self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.scrollAreaWidgetContents) + self.verticalLayout_2.setContentsMargins(3, 3, 3, -1) + self.verticalLayout_2.setSpacing(3) self.verticalLayout_2.setObjectName("verticalLayout_2") self.frmFilter = QtWidgets.QFrame(self.scrollAreaWidgetContents) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.frmFilter.sizePolicy().hasHeightForWidth()) + self.frmFilter.setSizePolicy(sizePolicy) self.frmFilter.setFrameShape(QtWidgets.QFrame.NoFrame) self.frmFilter.setFrameShadow(QtWidgets.QFrame.Raised) self.frmFilter.setObjectName("frmFilter") self.verticalLayout = QtWidgets.QVBoxLayout(self.frmFilter) self.verticalLayout.setContentsMargins(0, 0, 0, 0) self.verticalLayout.setObjectName("verticalLayout") + self.lblCountries_2 = QtWidgets.QLabel(self.frmFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblCountries_2.setFont(font) + self.lblCountries_2.setObjectName("lblCountries_2") + self.verticalLayout.addWidget(self.lblCountries_2) + self.cboRegions = QtWidgets.QComboBox(self.frmFilter) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboRegions.sizePolicy().hasHeightForWidth()) + self.cboRegions.setSizePolicy(sizePolicy) + font = QtGui.QFont() + font.setPointSize(9) + self.cboRegions.setFont(font) + self.cboRegions.setObjectName("cboRegions") + self.verticalLayout.addWidget(self.cboRegions) self.lblCountries = QtWidgets.QLabel(self.frmFilter) font = QtGui.QFont() font.setBold(True) @@ -190,6 +231,16 @@ def setupUi(self, MainWindow): self.cboSpecies.setSizePolicy(sizePolicy) self.cboSpecies.setObjectName("cboSpecies") self.verticalLayout.addWidget(self.cboSpecies) + self.lblCommonNameSearch = QtWidgets.QLabel(self.frmFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblCommonNameSearch.setFont(font) + self.lblCommonNameSearch.setObjectName("lblCommonNameSearch") + self.verticalLayout.addWidget(self.lblCommonNameSearch) + self.txtCommonNameSearch = QtWidgets.QLineEdit(self.frmFilter) + self.txtCommonNameSearch.setObjectName("txtCommonNameSearch") + self.verticalLayout.addWidget(self.txtCommonNameSearch) self.lblEndSeasonalRange_2 = QtWidgets.QLabel(self.frmFilter) font = QtGui.QFont() font.setBold(True) @@ -262,6 +313,11 @@ def setupUi(self, MainWindow): self.lblStartSeasonalRange.setObjectName("lblStartSeasonalRange") self.verticalLayout.addWidget(self.lblStartSeasonalRange) self.frmStartSeasonalRange = QtWidgets.QFrame(self.frmFilter) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.frmStartSeasonalRange.sizePolicy().hasHeightForWidth()) + self.frmStartSeasonalRange.setSizePolicy(sizePolicy) self.frmStartSeasonalRange.setFrameShape(QtWidgets.QFrame.NoFrame) self.frmStartSeasonalRange.setFrameShadow(QtWidgets.QFrame.Plain) self.frmStartSeasonalRange.setLineWidth(0) @@ -271,19 +327,9 @@ def setupUi(self, MainWindow): self.horizontalLayout.setSpacing(0) self.horizontalLayout.setObjectName("horizontalLayout") self.cboStartSeasonalRangeMonth = QtWidgets.QComboBox(self.frmStartSeasonalRange) - sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.cboStartSeasonalRangeMonth.sizePolicy().hasHeightForWidth()) - self.cboStartSeasonalRangeMonth.setSizePolicy(sizePolicy) self.cboStartSeasonalRangeMonth.setObjectName("cboStartSeasonalRangeMonth") self.horizontalLayout.addWidget(self.cboStartSeasonalRangeMonth) self.cboStartSeasonalRangeDate = QtWidgets.QComboBox(self.frmStartSeasonalRange) - sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.cboStartSeasonalRangeDate.sizePolicy().hasHeightForWidth()) - self.cboStartSeasonalRangeDate.setSizePolicy(sizePolicy) self.cboStartSeasonalRangeDate.setObjectName("cboStartSeasonalRangeDate") self.horizontalLayout.addWidget(self.cboStartSeasonalRangeDate) self.verticalLayout.addWidget(self.frmStartSeasonalRange) @@ -295,6 +341,11 @@ def setupUi(self, MainWindow): self.lblEndSeasonalRange.setObjectName("lblEndSeasonalRange") self.verticalLayout.addWidget(self.lblEndSeasonalRange) self.frmEndSeasonalRange = QtWidgets.QFrame(self.frmFilter) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.frmEndSeasonalRange.sizePolicy().hasHeightForWidth()) + self.frmEndSeasonalRange.setSizePolicy(sizePolicy) self.frmEndSeasonalRange.setFrameShape(QtWidgets.QFrame.NoFrame) self.frmEndSeasonalRange.setFrameShadow(QtWidgets.QFrame.Plain) self.frmEndSeasonalRange.setLineWidth(0) @@ -304,27 +355,253 @@ def setupUi(self, MainWindow): self.horizontalLayout_2.setSpacing(0) self.horizontalLayout_2.setObjectName("horizontalLayout_2") self.cboEndSeasonalRangeMonth = QtWidgets.QComboBox(self.frmEndSeasonalRange) - sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.cboEndSeasonalRangeMonth.sizePolicy().hasHeightForWidth()) - self.cboEndSeasonalRangeMonth.setSizePolicy(sizePolicy) self.cboEndSeasonalRangeMonth.setObjectName("cboEndSeasonalRangeMonth") self.horizontalLayout_2.addWidget(self.cboEndSeasonalRangeMonth) self.cboEndSeasonalRangeDate = QtWidgets.QComboBox(self.frmEndSeasonalRange) - sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) - sizePolicy.setHorizontalStretch(0) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.cboEndSeasonalRangeDate.sizePolicy().hasHeightForWidth()) - self.cboEndSeasonalRangeDate.setSizePolicy(sizePolicy) self.cboEndSeasonalRangeDate.setObjectName("cboEndSeasonalRangeDate") self.horizontalLayout_2.addWidget(self.cboEndSeasonalRangeDate) self.verticalLayout.addWidget(self.frmEndSeasonalRange) - self.verticalLayout_2.addWidget(self.frmFilter) + self.verticalLayout_2.addWidget(self.frmFilter, 0, QtCore.Qt.AlignTop) self.scrFilter.setWidget(self.scrollAreaWidgetContents) self.verticalLayout_3.addWidget(self.scrFilter) self.dckFilter.setWidget(self.dockWidgetContents) MainWindow.addDockWidget(QtCore.Qt.DockWidgetArea(1), self.dckFilter) + self.dckPhotoFilter = QtWidgets.QDockWidget(MainWindow) + self.dckPhotoFilter.setFeatures(QtWidgets.QDockWidget.AllDockWidgetFeatures) + self.dckPhotoFilter.setAllowedAreas(QtCore.Qt.LeftDockWidgetArea|QtCore.Qt.RightDockWidgetArea) + self.dckPhotoFilter.setObjectName("dckPhotoFilter") + self.dockPhotoWidgetContents = QtWidgets.QWidget() + self.dockPhotoWidgetContents.setObjectName("dockPhotoWidgetContents") + self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.dockPhotoWidgetContents) + self.verticalLayout_4.setContentsMargins(3, 3, 3, 3) + self.verticalLayout_4.setSpacing(3) + self.verticalLayout_4.setObjectName("verticalLayout_4") + self.scrPhotoFilter = QtWidgets.QScrollArea(self.dockPhotoWidgetContents) + self.scrPhotoFilter.setMinimumSize(QtCore.QSize(0, 0)) + self.scrPhotoFilter.setFrameShape(QtWidgets.QFrame.NoFrame) + self.scrPhotoFilter.setFrameShadow(QtWidgets.QFrame.Plain) + self.scrPhotoFilter.setLineWidth(0) + self.scrPhotoFilter.setSizeAdjustPolicy(QtWidgets.QAbstractScrollArea.AdjustToContentsOnFirstShow) + self.scrPhotoFilter.setWidgetResizable(True) + self.scrPhotoFilter.setObjectName("scrPhotoFilter") + self.scrollAreaPhotoWidgetContents = QtWidgets.QWidget() + self.scrollAreaPhotoWidgetContents.setGeometry(QtCore.QRect(0, 0, 190, 440)) + self.scrollAreaPhotoWidgetContents.setObjectName("scrollAreaPhotoWidgetContents") + self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.scrollAreaPhotoWidgetContents) + self.verticalLayout_5.setObjectName("verticalLayout_5") + self.frmPhotoFilter = QtWidgets.QFrame(self.scrollAreaPhotoWidgetContents) + self.frmPhotoFilter.setFrameShape(QtWidgets.QFrame.NoFrame) + self.frmPhotoFilter.setFrameShadow(QtWidgets.QFrame.Raised) + self.frmPhotoFilter.setObjectName("frmPhotoFilter") + self.verticalLayout_6 = QtWidgets.QVBoxLayout(self.frmPhotoFilter) + self.verticalLayout_6.setContentsMargins(0, 0, 0, 0) + self.verticalLayout_6.setObjectName("verticalLayout_6") + self.lblSighting = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblSighting.setFont(font) + self.lblSighting.setObjectName("lblSighting") + self.verticalLayout_6.addWidget(self.lblSighting) + self.frmRatingRange = QtWidgets.QFrame(self.frmPhotoFilter) + self.frmRatingRange.setFrameShape(QtWidgets.QFrame.NoFrame) + self.frmRatingRange.setFrameShadow(QtWidgets.QFrame.Plain) + self.frmRatingRange.setLineWidth(0) + self.frmRatingRange.setObjectName("frmRatingRange") + self.horizontalLayout_5 = QtWidgets.QHBoxLayout(self.frmRatingRange) + self.horizontalLayout_5.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_5.setSpacing(0) + self.horizontalLayout_5.setObjectName("horizontalLayout_5") + self.cboStartRatingRange = QtWidgets.QComboBox(self.frmRatingRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboStartRatingRange.sizePolicy().hasHeightForWidth()) + self.cboStartRatingRange.setSizePolicy(sizePolicy) + self.cboStartRatingRange.setObjectName("cboStartRatingRange") + self.horizontalLayout_5.addWidget(self.cboStartRatingRange) + self.cboEndRatingRange = QtWidgets.QComboBox(self.frmRatingRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboEndRatingRange.sizePolicy().hasHeightForWidth()) + self.cboEndRatingRange.setSizePolicy(sizePolicy) + self.cboEndRatingRange.setObjectName("cboEndRatingRange") + self.horizontalLayout_5.addWidget(self.cboEndRatingRange) + self.verticalLayout_6.addWidget(self.frmRatingRange) + self.lblSpeciesHasPhoto = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblSpeciesHasPhoto.setFont(font) + self.lblSpeciesHasPhoto.setObjectName("lblSpeciesHasPhoto") + self.verticalLayout_6.addWidget(self.lblSpeciesHasPhoto) + self.cboSpeciesHasPhoto = QtWidgets.QComboBox(self.frmPhotoFilter) + font = QtGui.QFont() + font.setPointSize(9) + self.cboSpeciesHasPhoto.setFont(font) + self.cboSpeciesHasPhoto.setObjectName("cboSpeciesHasPhoto") + self.verticalLayout_6.addWidget(self.cboSpeciesHasPhoto) + self.lblCamera = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblCamera.setFont(font) + self.lblCamera.setObjectName("lblCamera") + self.verticalLayout_6.addWidget(self.lblCamera) + self.cboCamera = QtWidgets.QComboBox(self.frmPhotoFilter) + font = QtGui.QFont() + font.setPointSize(9) + self.cboCamera.setFont(font) + self.cboCamera.setObjectName("cboCamera") + self.verticalLayout_6.addWidget(self.cboCamera) + self.lblLens = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblLens.setFont(font) + self.lblLens.setObjectName("lblLens") + self.verticalLayout_6.addWidget(self.lblLens) + self.cboLens = QtWidgets.QComboBox(self.frmPhotoFilter) + self.cboLens.setObjectName("cboLens") + self.verticalLayout_6.addWidget(self.cboLens) + self.lblShutterSpeedRange = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblShutterSpeedRange.setFont(font) + self.lblShutterSpeedRange.setObjectName("lblShutterSpeedRange") + self.verticalLayout_6.addWidget(self.lblShutterSpeedRange) + self.frmShutterSpeedRange = QtWidgets.QFrame(self.frmPhotoFilter) + self.frmShutterSpeedRange.setFrameShape(QtWidgets.QFrame.NoFrame) + self.frmShutterSpeedRange.setFrameShadow(QtWidgets.QFrame.Plain) + self.frmShutterSpeedRange.setLineWidth(0) + self.frmShutterSpeedRange.setObjectName("frmShutterSpeedRange") + self.horizontalLayout_3 = QtWidgets.QHBoxLayout(self.frmShutterSpeedRange) + self.horizontalLayout_3.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_3.setSpacing(0) + self.horizontalLayout_3.setObjectName("horizontalLayout_3") + self.cboStartShutterSpeedRange = QtWidgets.QComboBox(self.frmShutterSpeedRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboStartShutterSpeedRange.sizePolicy().hasHeightForWidth()) + self.cboStartShutterSpeedRange.setSizePolicy(sizePolicy) + self.cboStartShutterSpeedRange.setObjectName("cboStartShutterSpeedRange") + self.horizontalLayout_3.addWidget(self.cboStartShutterSpeedRange) + self.cboEndShutterSpeedRange = QtWidgets.QComboBox(self.frmShutterSpeedRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboEndShutterSpeedRange.sizePolicy().hasHeightForWidth()) + self.cboEndShutterSpeedRange.setSizePolicy(sizePolicy) + self.cboEndShutterSpeedRange.setObjectName("cboEndShutterSpeedRange") + self.horizontalLayout_3.addWidget(self.cboEndShutterSpeedRange) + self.verticalLayout_6.addWidget(self.frmShutterSpeedRange) + self.lblApertureRange = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblApertureRange.setFont(font) + self.lblApertureRange.setObjectName("lblApertureRange") + self.verticalLayout_6.addWidget(self.lblApertureRange) + self.frmApertureRange = QtWidgets.QFrame(self.frmPhotoFilter) + self.frmApertureRange.setFrameShape(QtWidgets.QFrame.NoFrame) + self.frmApertureRange.setFrameShadow(QtWidgets.QFrame.Plain) + self.frmApertureRange.setLineWidth(0) + self.frmApertureRange.setObjectName("frmApertureRange") + self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.frmApertureRange) + self.horizontalLayout_4.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_4.setSpacing(0) + self.horizontalLayout_4.setObjectName("horizontalLayout_4") + self.cboStartApertureRange = QtWidgets.QComboBox(self.frmApertureRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboStartApertureRange.sizePolicy().hasHeightForWidth()) + self.cboStartApertureRange.setSizePolicy(sizePolicy) + self.cboStartApertureRange.setObjectName("cboStartApertureRange") + self.horizontalLayout_4.addWidget(self.cboStartApertureRange) + self.cboEndApertureRange = QtWidgets.QComboBox(self.frmApertureRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboEndApertureRange.sizePolicy().hasHeightForWidth()) + self.cboEndApertureRange.setSizePolicy(sizePolicy) + self.cboEndApertureRange.setObjectName("cboEndApertureRange") + self.horizontalLayout_4.addWidget(self.cboEndApertureRange) + self.verticalLayout_6.addWidget(self.frmApertureRange) + self.lblFocalLengthRange = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblFocalLengthRange.setFont(font) + self.lblFocalLengthRange.setObjectName("lblFocalLengthRange") + self.verticalLayout_6.addWidget(self.lblFocalLengthRange) + self.frmFocalLengthRange = QtWidgets.QFrame(self.frmPhotoFilter) + self.frmFocalLengthRange.setFrameShape(QtWidgets.QFrame.NoFrame) + self.frmFocalLengthRange.setFrameShadow(QtWidgets.QFrame.Plain) + self.frmFocalLengthRange.setLineWidth(0) + self.frmFocalLengthRange.setObjectName("frmFocalLengthRange") + self.horizontalLayout_7 = QtWidgets.QHBoxLayout(self.frmFocalLengthRange) + self.horizontalLayout_7.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_7.setSpacing(0) + self.horizontalLayout_7.setObjectName("horizontalLayout_7") + self.cboStartFocalLengthRange = QtWidgets.QComboBox(self.frmFocalLengthRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboStartFocalLengthRange.sizePolicy().hasHeightForWidth()) + self.cboStartFocalLengthRange.setSizePolicy(sizePolicy) + self.cboStartFocalLengthRange.setObjectName("cboStartFocalLengthRange") + self.horizontalLayout_7.addWidget(self.cboStartFocalLengthRange) + self.cboEndFocalLengthRange = QtWidgets.QComboBox(self.frmFocalLengthRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboEndFocalLengthRange.sizePolicy().hasHeightForWidth()) + self.cboEndFocalLengthRange.setSizePolicy(sizePolicy) + self.cboEndFocalLengthRange.setObjectName("cboEndFocalLengthRange") + self.horizontalLayout_7.addWidget(self.cboEndFocalLengthRange) + self.verticalLayout_6.addWidget(self.frmFocalLengthRange) + self.lblISORange = QtWidgets.QLabel(self.frmPhotoFilter) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.lblISORange.setFont(font) + self.lblISORange.setObjectName("lblISORange") + self.verticalLayout_6.addWidget(self.lblISORange) + self.frmIsoRange = QtWidgets.QFrame(self.frmPhotoFilter) + self.frmIsoRange.setFrameShape(QtWidgets.QFrame.NoFrame) + self.frmIsoRange.setFrameShadow(QtWidgets.QFrame.Plain) + self.frmIsoRange.setLineWidth(0) + self.frmIsoRange.setObjectName("frmIsoRange") + self.horizontalLayout_6 = QtWidgets.QHBoxLayout(self.frmIsoRange) + self.horizontalLayout_6.setContentsMargins(0, 0, 0, 0) + self.horizontalLayout_6.setSpacing(0) + self.horizontalLayout_6.setObjectName("horizontalLayout_6") + self.cboStartIsoRange = QtWidgets.QComboBox(self.frmIsoRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboStartIsoRange.sizePolicy().hasHeightForWidth()) + self.cboStartIsoRange.setSizePolicy(sizePolicy) + self.cboStartIsoRange.setObjectName("cboStartIsoRange") + self.horizontalLayout_6.addWidget(self.cboStartIsoRange) + self.cboEndIsoRange = QtWidgets.QComboBox(self.frmIsoRange) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.cboEndIsoRange.sizePolicy().hasHeightForWidth()) + self.cboEndIsoRange.setSizePolicy(sizePolicy) + self.cboEndIsoRange.setObjectName("cboEndIsoRange") + self.horizontalLayout_6.addWidget(self.cboEndIsoRange) + self.verticalLayout_6.addWidget(self.frmIsoRange) + self.verticalLayout_5.addWidget(self.frmPhotoFilter) + self.scrPhotoFilter.setWidget(self.scrollAreaPhotoWidgetContents) + self.verticalLayout_4.addWidget(self.scrPhotoFilter, 0, QtCore.Qt.AlignTop) + self.dckPhotoFilter.setWidget(self.dockPhotoWidgetContents) + MainWindow.addDockWidget(QtCore.Qt.DockWidgetArea(2), self.dckPhotoFilter) self.actionOpen = QtWidgets.QAction(MainWindow) icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap(":/icon_open.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) @@ -400,19 +677,61 @@ def setupUi(self, MainWindow): self.actionPrint.setObjectName("actionPrint") self.actionAboutLapwing = QtWidgets.QAction(MainWindow) self.actionAboutLapwing.setObjectName("actionAboutLapwing") - self.actionShowFilter = QtWidgets.QAction(MainWindow) - self.actionShowFilter.setObjectName("actionShowFilter") - self.actionHideFilter = QtWidgets.QAction(MainWindow) - self.actionHideFilter.setObjectName("actionHideFilter") - self.actionClearFilter = QtWidgets.QAction(MainWindow) + self.actionShowStandardFilter = QtWidgets.QAction(MainWindow) + self.actionShowStandardFilter.setObjectName("actionShowStandardFilter") + self.actionHideStandardFilter = QtWidgets.QAction(MainWindow) + self.actionHideStandardFilter.setObjectName("actionHideStandardFilter") + self.actionClearAllFilters = QtWidgets.QAction(MainWindow) icon13 = QtGui.QIcon() icon13.addPixmap(QtGui.QPixmap(":/icon_filter.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.actionClearFilter.setIcon(icon13) - self.actionClearFilter.setObjectName("actionClearFilter") + self.actionClearAllFilters.setIcon(icon13) + self.actionClearAllFilters.setObjectName("actionClearAllFilters") + self.actionSetPhotoFolder = QtWidgets.QAction(MainWindow) + self.actionSetPhotoFolder.setObjectName("actionSetPhotoFolder") + self.actionPhotos = QtWidgets.QAction(MainWindow) + icon14 = QtGui.QIcon() + icon14.addPixmap(QtGui.QPixmap(":/icon_camera.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.actionPhotos.setIcon(icon14) + self.actionPhotos.setObjectName("actionPhotos") + self.actionEditPhotosByFilter = QtWidgets.QAction(MainWindow) + self.actionEditPhotosByFilter.setObjectName("actionEditPhotosByFilter") + self.actionOpenPhotoSettings = QtWidgets.QAction(MainWindow) + self.actionOpenPhotoSettings.setObjectName("actionOpenPhotoSettings") + self.actionAddPhotos = QtWidgets.QAction(MainWindow) + self.actionAddPhotos.setObjectName("actionAddPhotos") + self.actionSavePhotoSettings = QtWidgets.QAction(MainWindow) + self.actionSavePhotoSettings.setObjectName("actionSavePhotoSettings") + self.actionPreferences = QtWidgets.QAction(MainWindow) + self.actionPreferences.setObjectName("actionPreferences") + self.actionUpdateEXIFDataForAllPhotos = QtWidgets.QAction(MainWindow) + self.actionUpdateEXIFDataForAllPhotos.setObjectName("actionUpdateEXIFDataForAllPhotos") + self.actionShowPhotoFilter = QtWidgets.QAction(MainWindow) + self.actionShowPhotoFilter.setObjectName("actionShowPhotoFilter") + self.actionHidePhotoFilter = QtWidgets.QAction(MainWindow) + self.actionHidePhotoFilter.setObjectName("actionHidePhotoFilter") + self.actionClearPhotoFilter = QtWidgets.QAction(MainWindow) + self.actionClearPhotoFilter.setObjectName("actionClearPhotoFilter") + self.actionClearStandardFilter = QtWidgets.QAction(MainWindow) + self.actionClearStandardFilter.setObjectName("actionClearStandardFilter") + self.actionClose = QtWidgets.QAction(MainWindow) + self.actionClose.setObjectName("actionClose") + self.actionClosePhotoSettings = QtWidgets.QAction(MainWindow) + self.actionClosePhotoSettings.setObjectName("actionClosePhotoSettings") + self.actionUS_States = QtWidgets.QAction(MainWindow) + self.actionUS_States.setObjectName("actionUS_States") + self.actionWorld_Countries = QtWidgets.QAction(MainWindow) + self.actionWorld_Countries.setObjectName("actionWorld_Countries") + self.actionWorld_Subregion_1 = QtWidgets.QAction(MainWindow) + self.actionWorld_Subregion_1.setObjectName("actionWorld_Subregion_1") + self.actionUS_Counties = QtWidgets.QAction(MainWindow) + self.actionUS_Counties.setObjectName("actionUS_Counties") self.menuFile.addAction(self.actionOpen) + self.menuFile.addAction(self.actionClose) self.menuFile.addAction(self.actionPrint) self.menuFile.addAction(self.actionCreatePDF) + self.menuFile.addAction(self.actionPreferences) self.menuFile.addAction(self.actionExit) + self.menuFile.addSeparator() self.menuReports.addAction(self.actionDateTotals) self.menuReports.addAction(self.actionLocationTotals) self.menuReports.addAction(self.actionCompareLists) @@ -425,23 +744,40 @@ def setupUi(self, MainWindow): self.menuLists.addAction(self.actionLocations) self.menuLists.addAction(self.actionChecklists) self.menuLists.addAction(self.actionFamilies) + self.menuLists.addAction(self.actionPhotos) self.menuAbout.addAction(self.actionAboutLapwing) - self.menuFilter.addAction(self.actionShowFilter) - self.menuFilter.addAction(self.actionHideFilter) - self.menuFilter.addAction(self.actionClearFilter) + self.menuFilter.addAction(self.actionShowStandardFilter) + self.menuFilter.addAction(self.actionShowPhotoFilter) + self.menuFilter.addAction(self.actionHideStandardFilter) + self.menuFilter.addAction(self.actionHidePhotoFilter) self.menuFilter.addSeparator() + self.menuFilter.addAction(self.actionClearAllFilters) + self.menuFilter.addAction(self.actionClearStandardFilter) + self.menuFilter.addAction(self.actionClearPhotoFilter) + self.menuPhotos.addAction(self.actionOpenPhotoSettings) + self.menuPhotos.addAction(self.actionClosePhotoSettings) + self.menuPhotos.addAction(self.actionSavePhotoSettings) + self.menuPhotos.addSeparator() + self.menuPhotos.addAction(self.actionAddPhotos) + self.menuPhotos.addAction(self.actionEditPhotosByFilter) + self.menuPhotos.addAction(self.actionUpdateEXIFDataForAllPhotos) + self.menuChoropleths.addAction(self.actionUS_States) + self.menuChoropleths.addAction(self.actionUS_Counties) + self.menuChoropleths.addAction(self.actionWorld_Countries) self.menuBar.addAction(self.menuFile.menuAction()) self.menuBar.addAction(self.menuFilter.menuAction()) self.menuBar.addAction(self.menuLists.menuAction()) self.menuBar.addAction(self.menuMap.menuAction()) self.menuBar.addAction(self.menuReports.menuAction()) + self.menuBar.addAction(self.menuPhotos.menuAction()) + self.menuBar.addAction(self.menuChoropleths.menuAction()) self.menuBar.addAction(self.menuWindows.menuAction()) self.menuBar.addAction(self.menuAbout.menuAction()) self.toolBar.addAction(self.actionOpen) self.toolBar.addAction(self.actionPrint) self.toolBar.addAction(self.actionCreatePDF) self.toolBar.addSeparator() - self.toolBar.addAction(self.actionClearFilter) + self.toolBar.addAction(self.actionClearAllFilters) self.toolBar.addSeparator() self.toolBar.addAction(self.actionSpecies) self.toolBar.addAction(self.actionLocations) @@ -452,8 +788,10 @@ def setupUi(self, MainWindow): self.toolBar.addAction(self.actionLocationTotals) self.toolBar.addAction(self.actionCompareLists) self.toolBar.addAction(self.actionBigReport) + self.toolBar.addAction(self.actionPhotos) self.toolBar.addSeparator() self.toolBar.addAction(self.actionFind) + self.toolBar.addSeparator() self.retranslateUi(MainWindow) QtCore.QMetaObject.connectSlotsByName(MainWindow) @@ -468,23 +806,70 @@ def retranslateUi(self, MainWindow): self.menuLists.setTitle(_translate("MainWindow", "Lists")) self.menuAbout.setTitle(_translate("MainWindow", "About")) self.menuFilter.setTitle(_translate("MainWindow", "Filter")) + self.menuPhotos.setTitle(_translate("MainWindow", "Photos")) + self.menuChoropleths.setTitle(_translate("MainWindow", "Choropleths")) self.toolBar.setWindowTitle(_translate("MainWindow", "toolBar")) - self.dckFilter.setWindowTitle(_translate("MainWindow", "Filter")) - self.lblCountries.setText(_translate("MainWindow", "Countries")) - self.lblStates.setText(_translate("MainWindow", "States")) - self.lblCounties.setText(_translate("MainWindow", "Counties")) - self.lblLocations.setText(_translate("MainWindow", "Locations")) - self.lblOrders.setText(_translate("MainWindow", "Orders")) - self.lblFamilies.setText(_translate("MainWindow", "Families")) + self.dckFilter.setWindowTitle(_translate("MainWindow", "Standard Filter")) + self.lblCountries_2.setText(_translate("MainWindow", "Region")) + self.cboRegions.setToolTip(_translate("MainWindow", "Select a country to limit your search to one country\'s sightings.")) + self.lblCountries.setText(_translate("MainWindow", "Country")) + self.cboCountries.setToolTip(_translate("MainWindow", "Select a country to limit your search to one country\'s sightings.")) + self.lblStates.setText(_translate("MainWindow", "State")) + self.cboStates.setToolTip(_translate("MainWindow", "Select a state to limit your search to one state\'s sightings.")) + self.lblCounties.setText(_translate("MainWindow", "County")) + self.cboCounties.setToolTip(_translate("MainWindow", "Select a countyto limit your search to one county\'s sightings.")) + self.lblLocations.setText(_translate("MainWindow", "Location")) + self.cboLocations.setToolTip(_translate("MainWindow", "Select a location to limit your search to one location\'s sightings.")) + self.lblOrders.setText(_translate("MainWindow", "Order")) + self.cboOrders.setToolTip(_translate("MainWindow", "Select an order to limit your search to sightings of one order.")) + self.lblFamilies.setText(_translate("MainWindow", "Familiy")) + self.cboFamilies.setToolTip(_translate("MainWindow", "Select a family to limit your search to sightings of one family.")) self.lblSpecies.setText(_translate("MainWindow", "Species")) + self.cboSpecies.setToolTip(_translate("MainWindow", "Select a species to limit your search to sightings of one species.")) + self.lblCommonNameSearch.setText(_translate("MainWindow", "Name Search")) + self.txtCommonNameSearch.setToolTip(_translate("MainWindow", "Enter text that must appear in the common name. Prepend your text with s: to search the scientific name instead.")) self.lblEndSeasonalRange_2.setText(_translate("MainWindow", "Date Options")) + self.cboDateOptions.setToolTip(_translate("MainWindow", "Select a date option to limit your search.")) self.lblStartDate.setText(_translate("MainWindow", "Start Date")) + self.calStartDate.setToolTip(_translate("MainWindow", "Select a start date.")) self.calStartDate.setDisplayFormat(_translate("MainWindow", "yyyy-MM-dd")) self.lblEndDate.setText(_translate("MainWindow", "End Date")) + self.calEndDate.setToolTip(_translate("MainWindow", "Select an end date.")) self.calEndDate.setDisplayFormat(_translate("MainWindow", "yyyy-MM-dd")) self.lblEndSeasonalRange_3.setText(_translate("MainWindow", "Seasonal Range Options")) + self.cboSeasonalRangeOptions.setToolTip(_translate("MainWindow", "Select a seasonal range, such as a time of year.")) self.lblStartSeasonalRange.setText(_translate("MainWindow", "Start Seasonal Range")) + self.cboStartSeasonalRangeMonth.setToolTip(_translate("MainWindow", "Select the starting seasonal range\'s month.")) + self.cboStartSeasonalRangeDate.setToolTip(_translate("MainWindow", "Select the starting seasonal range\'s date.")) self.lblEndSeasonalRange.setText(_translate("MainWindow", "End Seasonal Range")) + self.cboEndSeasonalRangeMonth.setToolTip(_translate("MainWindow", "Select the ending seasonal range\'s month.")) + self.cboEndSeasonalRangeDate.setToolTip(_translate("MainWindow", "Select the ending seasonal range\'s date.")) + self.dckPhotoFilter.setWindowTitle(_translate("MainWindow", "Photo Filter")) + self.lblSighting.setText(_translate("MainWindow", "Rating Range")) + self.cboStartRatingRange.setToolTip(_translate("MainWindow", "Specify the lowest f-stop aperture for a range of apertures.")) + self.cboEndRatingRange.setToolTip(_translate("MainWindow", "Specify the highest f-stop aperture for a range of apertures.")) + self.lblSpeciesHasPhoto.setText(_translate("MainWindow", "Species")) + self.cboSpeciesHasPhoto.setToolTip(_translate("MainWindow", "Specify whether a species must\n" +"have a photo attached for the other\n" +"filters\' circumstances.\n" +"(You don\'t need to set this\n" +"if you set other camera filters.)")) + self.lblCamera.setText(_translate("MainWindow", "Camera")) + self.cboCamera.setToolTip(_translate("MainWindow", "Specify a camera model.")) + self.lblLens.setText(_translate("MainWindow", "Lens")) + self.cboLens.setToolTip(_translate("MainWindow", "Specify a lens model.")) + self.lblShutterSpeedRange.setText(_translate("MainWindow", "Shutter Speed Range")) + self.cboStartShutterSpeedRange.setToolTip(_translate("MainWindow", "Specify the shortest shutter speed for a range of shutter speeds.")) + self.cboEndShutterSpeedRange.setToolTip(_translate("MainWindow", "Specify the longest shutter speed for a range of shutter speeds.")) + self.lblApertureRange.setText(_translate("MainWindow", "Aperture Range")) + self.cboStartApertureRange.setToolTip(_translate("MainWindow", "Specify the lowest f-stop aperture for a range of apertures.")) + self.cboEndApertureRange.setToolTip(_translate("MainWindow", "Specify the highest f-stop aperture for a range of apertures.")) + self.lblFocalLengthRange.setText(_translate("MainWindow", "Focal Length Range")) + self.cboStartFocalLengthRange.setToolTip(_translate("MainWindow", "Specify the shortest focal length for a range of focal lengths.")) + self.cboEndFocalLengthRange.setToolTip(_translate("MainWindow", "Specify the longest focal length for a range of focal lengths.")) + self.lblISORange.setText(_translate("MainWindow", "ISO Range")) + self.cboStartIsoRange.setToolTip(_translate("MainWindow", "Specify the lowest ISO number for a range of ISO numbers.")) + self.cboEndIsoRange.setToolTip(_translate("MainWindow", "Specify the highest ISO number for a range of ISO numbers.")) self.actionOpen.setText(_translate("MainWindow", "Open")) self.actionExit.setText(_translate("MainWindow", "Exit")) self.actionDateTotals.setText(_translate("MainWindow", "Date Totals")) @@ -504,8 +889,26 @@ def retranslateUi(self, MainWindow): self.actionCreatePDF.setText(_translate("MainWindow", "Create PDF")) self.actionPrint.setText(_translate("MainWindow", "Print")) self.actionAboutLapwing.setText(_translate("MainWindow", "About Lapwing")) - self.actionShowFilter.setText(_translate("MainWindow", "Show Filter")) - self.actionHideFilter.setText(_translate("MainWindow", "Hide Filter")) - self.actionClearFilter.setText(_translate("MainWindow", "Clear Filter")) - + self.actionShowStandardFilter.setText(_translate("MainWindow", "Show standard filter")) + self.actionHideStandardFilter.setText(_translate("MainWindow", "Hide standard filter")) + self.actionHideStandardFilter.setToolTip(_translate("MainWindow", "Hide standard filter")) + self.actionClearAllFilters.setText(_translate("MainWindow", "Clear all filters")) + self.actionSetPhotoFolder.setText(_translate("MainWindow", "Set Photo Folder")) + self.actionPhotos.setText(_translate("MainWindow", "Photos")) + self.actionEditPhotosByFilter.setText(_translate("MainWindow", "Edit photos by filter...")) + self.actionOpenPhotoSettings.setText(_translate("MainWindow", "Open photo settings file...")) + self.actionAddPhotos.setText(_translate("MainWindow", "Add photos...")) + self.actionSavePhotoSettings.setText(_translate("MainWindow", "Save photo settings file...")) + self.actionPreferences.setText(_translate("MainWindow", "Preferences...")) + self.actionUpdateEXIFDataForAllPhotos.setText(_translate("MainWindow", "Update EXIF data for all photos")) + self.actionShowPhotoFilter.setText(_translate("MainWindow", "Show photo filter")) + self.actionHidePhotoFilter.setText(_translate("MainWindow", "Hide photo filter")) + self.actionClearPhotoFilter.setText(_translate("MainWindow", "Clear photo filter")) + self.actionClearStandardFilter.setText(_translate("MainWindow", "Clear standard filters")) + self.actionClose.setText(_translate("MainWindow", "Close")) + self.actionClosePhotoSettings.setText(_translate("MainWindow", "Close photo settings file")) + self.actionUS_States.setText(_translate("MainWindow", "US States")) + self.actionWorld_Countries.setText(_translate("MainWindow", "World Countries")) + self.actionWorld_Subregion_1.setText(_translate("MainWindow", "World Subregion 1")) + self.actionUS_Counties.setText(_translate("MainWindow", "US Counties")) import icons_rc diff --git a/form_MDIMain.ui b/form_MDIMain.ui index 6eb9d2f..cd1f2ca 100644 --- a/form_MDIMain.ui +++ b/form_MDIMain.ui @@ -6,7 +6,7 @@ 0 0 - 1173 + 1262 1000 @@ -51,8 +51,8 @@ 0 0 - 1173 - 19 + 1262 + 22 @@ -60,9 +60,12 @@ File + + + @@ -95,6 +98,7 @@ + @@ -106,16 +110,42 @@ Filter - - - + + + + + + + + + + + + Photos + + + + + + + + + + + Choropleths + + + + + + @@ -136,7 +166,7 @@ - + @@ -147,25 +177,18 @@ + + - - - 86 - 108 - - - - - 0 - 0 - - - - Qt::LeftToRight + + + 0 + 0 + QDockWidget::AllDockWidgetFeatures @@ -174,7 +197,7 @@ Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea - Filter + Standard Filter 1 @@ -189,9 +212,18 @@ 0 + + Qt::LeftToRight + QFrame::NoFrame + + QFrame::Plain + + + 0 + QAbstractScrollArea::AdjustToContents @@ -203,13 +235,37 @@ 0 0 - 183 - 865 + 179 + 859 + + + 0 + 0 + + - + + 3 + + + 3 + + + 3 + + + 3 + + + + + 0 + 0 + + QFrame::NoFrame @@ -229,6 +285,37 @@ 0 + + + + + 75 + true + + + + Region + + + + + + + + 0 + 0 + + + + + 9 + + + + Select a country to limit your search to one country's sightings. + + + @@ -238,7 +325,7 @@ - Countries + Country @@ -255,6 +342,9 @@ 9 + + Select a country to limit your search to one country's sightings. + @@ -266,7 +356,7 @@ - States + State @@ -278,6 +368,9 @@ 0 + + Select a state to limit your search to one state's sightings. + @@ -289,7 +382,7 @@ - Counties + County @@ -301,6 +394,9 @@ 0 + + Select a countyto limit your search to one county's sightings. + @@ -312,7 +408,7 @@ - Locations + Location @@ -324,6 +420,9 @@ 0 + + Select a location to limit your search to one location's sightings. + @@ -335,7 +434,7 @@ - Orders + Order @@ -347,6 +446,9 @@ 0 + + Select an order to limit your search to sightings of one order. + @@ -358,7 +460,7 @@ - Families + Familiy @@ -370,6 +472,9 @@ 0 + + Select a family to limit your search to sightings of one family. + @@ -393,6 +498,29 @@ 0 + + Select a species to limit your search to sightings of one species. + + + + + + + + 75 + true + + + + Name Search + + + + + + + Enter text that must appear in the common name. Prepend your text with s: to search the scientific name instead. + @@ -416,6 +544,9 @@ 0 + + Select a date option to limit your search. + @@ -439,6 +570,9 @@ 0 + + Select a start date. + 0 @@ -478,6 +612,9 @@ 0 + + Select an end date. + 0 @@ -517,6 +654,9 @@ 0 + + Select a seasonal range, such as a time of year. + @@ -534,6 +674,12 @@ + + + 0 + 0 + + QFrame::NoFrame @@ -561,21 +707,15 @@ - - - 0 - 0 - + + Select the starting seasonal range's month. - - - 0 - 0 - + + Select the starting seasonal range's date. @@ -597,6 +737,12 @@ + + + 0 + 0 + + QFrame::NoFrame @@ -624,21 +770,15 @@ - - - 0 - 0 - + + Select the ending seasonal range's month. - - - 0 - 0 - + + Select the ending seasonal range's date. @@ -655,168 +795,778 @@ - - - - :/icon_open.png:/icon_open.png - - - Open - - - - - Exit - - - - - - :/icon_datetotals.png:/icon_datetotals.png - - - Date Totals - - - - - - :/icon_locationtotals.png:/icon_locationtotals.png - - - Location Totals - - - - - Tile Windows - - - - - Close All Windows - - - - - - :/icon_compare.png:/icon_compare.png - - - Compare Lists - - - - - Cascade Windows - - - - - - :/icon_bird.png:/icon_bird.png - - - Species - - - - - - :/icon_location.png:/icon_location.png - - - Locations - - - - - - :/icon_checklists.png:/icon_checklists.png - - - Checklists - - - - - - :/icon_tripreport.png:/icon_tripreport.png - - - Big Report - - - Big Report - - - - - - :/icon_find.png:/icon_find.png - - - Find - - - - - - :/icon_families.png:/icon_families.png - - - Families - - - - - - :/icon_map.png:/icon_map.png - - - Map - - - - - - :/icon_pdf.png:/icon_pdf.png - - - Create PDF - - - - - - :/icon_print.png:/icon_print.png - - - Print - - - - - About Lapwing - - - - - Show Filter + + + QDockWidget::AllDockWidgetFeatures - - - - Hide Filter + + Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea - - - - - :/icon_filter.png:/icon_filter.png + + Photo Filter + + 2 + + + + + 3 + + + 3 + + + 3 + + + 3 + + + 3 + + + + + + 0 + 0 + + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + QAbstractScrollArea::AdjustToContentsOnFirstShow + + + true + + + + + 0 + 0 + 190 + 440 + + + + + + + QFrame::NoFrame + + + QFrame::Raised + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 75 + true + + + + Rating Range + + + + + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + Specify the lowest f-stop aperture for a range of apertures. + + + + + + + + 0 + 0 + + + + Specify the highest f-stop aperture for a range of apertures. + + + + + + + + + + + 75 + true + + + + Species + + + + + + + + 9 + + + + Specify whether a species must +have a photo attached for the other +filters' circumstances. +(You don't need to set this +if you set other camera filters.) + + + + + + + + 75 + true + + + + Camera + + + + + + + + 9 + + + + Specify a camera model. + + + + + + + + 75 + true + + + + Lens + + + + + + + Specify a lens model. + + + + + + + + 75 + true + + + + Shutter Speed Range + + + + + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + Specify the shortest shutter speed for a range of shutter speeds. + + + + + + + + 0 + 0 + + + + Specify the longest shutter speed for a range of shutter speeds. + + + + + + + + + + + 75 + true + + + + Aperture Range + + + + + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + Specify the lowest f-stop aperture for a range of apertures. + + + + + + + + 0 + 0 + + + + Specify the highest f-stop aperture for a range of apertures. + + + + + + + + + + + 75 + true + + + + Focal Length Range + + + + + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + Specify the shortest focal length for a range of focal lengths. + + + + + + + + 0 + 0 + + + + Specify the longest focal length for a range of focal lengths. + + + + + + + + + + + 75 + true + + + + ISO Range + + + + + + + QFrame::NoFrame + + + QFrame::Plain + + + 0 + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + Specify the lowest ISO number for a range of ISO numbers. + + + + + + + + 0 + 0 + + + + Specify the highest ISO number for a range of ISO numbers. + + + + + + + + + + + + + + + + + + + + :/icon_open.png:/icon_open.png + + + Open + + + + + Exit + + + + + + :/icon_datetotals.png:/icon_datetotals.png + + + Date Totals + + + + + + :/icon_locationtotals.png:/icon_locationtotals.png + + + Location Totals + + + + + Tile Windows + + + + + Close All Windows + + + + + + :/icon_compare.png:/icon_compare.png + + + Compare Lists + + + + + Cascade Windows + + + + + + :/icon_bird.png:/icon_bird.png + + + Species + + + + + + :/icon_location.png:/icon_location.png + + + Locations + + + + + + :/icon_checklists.png:/icon_checklists.png + + + Checklists + + + + + + :/icon_tripreport.png:/icon_tripreport.png + + + Big Report + + + Big Report + + + + + + :/icon_find.png:/icon_find.png + + + Find + + + + + + :/icon_families.png:/icon_families.png + + + Families + + + + + + :/icon_map.png:/icon_map.png + + + Map + + + + + + :/icon_pdf.png:/icon_pdf.png + + + Create PDF + + + + + + :/icon_print.png:/icon_print.png + + + Print + + + + + About Lapwing + + + + + Show standard filter + + + + + Hide standard filter + + + Hide standard filter + + + + + + :/icon_filter.png:/icon_filter.png + + + Clear all filters + + + + + Set Photo Folder + + + + + + :/icon_camera.png:/icon_camera.png + + + Photos + + + + + Edit photos by filter... + + + + + Open photo settings file... + + + + + Add photos... + + + + + Save photo settings file... + + + + + Preferences... + + + + + Update EXIF data for all photos + + + + + Show photo filter + + + + + Hide photo filter + + + + + Clear photo filter + + + + + Clear standard filters + + + + + Close + + + + + Close photo settings file + + + + + US States + + + + + World Countries + + + + + World Subregion 1 + + + - Clear Filter + US Counties diff --git a/icon_camera.png b/icon_camera.png new file mode 100644 index 0000000..9dc05b0 Binary files /dev/null and b/icon_camera.png differ diff --git a/icons.qrc b/icons.qrc index 8d8704e..ac300a0 100644 --- a/icons.qrc +++ b/icons.qrc @@ -1,20 +1,23 @@ - - icon_bird.png - icon_find.png - icon_location.png - icon_open.png - icon_checklists.png - icon_datetotals.png - icon_tripreport.png - icon_locationtotals.png - icon_families.png - icon_compare.png - icon_map.png - icon_lapwing_small.png - icon_individual.png - icon_pdf.png - icon_print.png - icon_filter.png - + + icon_star.png + icon_lapwing.png + icon_lapwing_small.png + icon_bird.png + icon_camera.png + icon_checklists.png + icon_compare.png + icon_datetotals.png + icon_families.png + icon_filter.png + icon_find.png + icon_individual.png + icon_location.png + icon_locationtotals.png + icon_map.png + icon_open.png + icon_pdf.png + icon_print.png + icon_tripreport.png + diff --git a/icons_rc.py b/icons_rc.py index 6f18eea..c01326a 100644 --- a/icons_rc.py +++ b/icons_rc.py @@ -2,2420 +2,191 @@ # Resource object code # -# Created by: The Resource Compiler for PyQt5 (Qt v5.10.0) +# Created by: The Resource Compiler for PyQt5 (Qt v5.13.0) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ -\x00\x00\x05\x10\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\ -\x00\x00\x04\xd7\x49\x44\x41\x54\x78\xda\xed\x9a\x69\xc8\x15\x55\ -\x18\xc7\x9f\x77\xb3\x0d\x97\x70\xad\x14\xd3\xca\xa5\x32\x95\x02\ -\xb3\x5c\x82\x40\xcd\x68\x33\xdb\x4c\xc2\xfa\x10\x56\x7e\x30\xb5\ -\x50\x49\x85\x16\xc8\x05\x44\x5b\x4c\x14\x35\x22\x68\xa1\xfa\x50\ -\x94\x42\x62\x46\xf5\x45\x0b\x0c\x23\x10\xb7\xc8\x4a\xa2\x1d\x45\ -\x33\x5f\x6f\xff\x3f\xcf\x73\x98\xe3\x78\xef\x7d\xe7\xde\x77\x66\ -\xde\x3b\xd7\x79\xe0\xc7\x7d\xef\xdc\x3b\x33\xe7\x37\xe7\xdc\x73\ -\x9e\x73\xce\xdb\x20\x67\x59\x34\x74\x74\x01\x72\xe1\x5c\x38\x17\ -\xce\x85\x73\xe1\x5c\x38\x17\x3e\x7b\xa2\x9e\x84\xbb\x82\xb9\x60\ -\x10\xb8\x10\xbc\x0f\xd6\xd6\xab\xf0\x5d\x60\x39\xb8\x2c\x74\xfc\ -\x3b\xb0\x17\xdc\x99\x75\x61\x96\xbb\x00\xfa\x81\x17\xc1\x34\x3b\ -\xfe\x9f\xbd\xb6\x82\x73\xed\xef\xf7\xc0\xd4\xac\x0b\x33\x66\x82\ -\x67\x41\x4f\x70\xd2\x5c\x4e\x81\x16\xfb\xfc\x57\xf0\x0c\x58\x17\ -\x7e\x52\x59\x8b\x11\x60\x05\xb8\xd9\xde\x9f\xb4\xd7\x66\x7b\x3d\ -\x02\x36\x82\xa5\xe0\xa7\xf0\xc9\x59\x12\x3e\x07\xcc\x07\x4f\x83\ -\xf3\x25\x68\xbe\xae\x46\x7f\x06\x1b\xc0\x26\xb0\xaf\xd4\x45\xb2\ -\x22\x3c\x51\xb4\xc6\x86\xdb\x7b\xd7\x84\x9b\xc0\x2f\x60\x35\x58\ -\x0f\x7e\x6b\xeb\x42\xb5\x2e\x7c\x09\x78\x1e\xcc\x28\x22\xca\x78\ -\xc5\x3e\x3f\x1c\xf5\x82\xb5\x26\x7c\x1e\xe8\x0c\x7a\x80\x09\xa2\ -\x9d\x4e\x77\x13\x6d\x14\xed\x99\x29\xfb\x3b\x98\x02\x3e\xaf\xf4\ -\x06\x69\x0b\x53\xa6\x37\xb8\x18\xf4\x31\x2e\xb0\x63\x23\xc1\x00\ -\xfb\x4e\x57\xaf\x6c\x94\x6d\xb6\x57\xca\x72\x5c\xbd\x1f\x7c\x53\ -\x4d\x01\xa2\x08\x33\x6b\xb9\x56\x74\xcc\xe3\xf8\xf6\x3d\xd8\x11\ -\xf1\xfa\xec\x5c\x6e\x14\xed\x51\xaf\x17\xcd\x82\x7a\x4a\xd0\xa3\ -\x96\x0b\x27\xd8\x60\xf7\xe5\xdf\x7f\xda\x83\xf9\xa1\xda\x27\x5e\ -\x4e\x98\xcd\xeb\x39\x30\x5d\xb4\x06\xfc\x60\x53\x7a\x02\xec\x2e\ -\x72\x1e\x0b\x76\x13\xb8\x1b\xdc\x02\x2e\x0d\x7d\x5e\x30\x81\x82\ -\xe1\xca\x41\x1a\x43\x65\x72\x63\x2b\xbf\xf7\x97\x54\xd9\x8c\xa3\ -\x08\x53\xf6\x13\x30\xde\xde\x9f\x32\xc4\x0a\x45\xfe\x06\x8f\x82\ -\x8f\xec\x3a\xac\xbd\xdb\x44\x9b\xdb\x50\xef\x5a\xee\x5c\x27\x14\ -\xf5\x81\xbb\x87\xe1\xc6\xd9\xc9\xe0\xd3\xf6\xc8\x96\xbb\xe1\x42\ -\xf0\x02\x38\x0e\x3a\x49\xd0\x61\xb8\x73\xdc\xef\x8a\x71\xd0\x3e\ -\xef\xe7\x5d\xaf\xd5\x24\x9b\xe4\xcc\x1a\x8b\x12\x85\xd0\x7d\xde\ -\x05\xf7\xb6\x57\xb6\x5c\x01\x76\x81\xab\xed\xc6\xe1\x66\xe6\x0a\ -\xe3\x9a\x5a\x93\x77\xdc\xf5\xa6\x8d\x11\xee\xd1\x96\x6c\xab\xbd\ -\xff\x11\x8c\x05\x87\x92\x12\x66\xea\xb6\x43\x4e\x6f\x82\xe1\xef\ -\x15\x8a\xfc\x5d\x4d\x4d\x96\x92\x2d\x48\xd0\x42\x58\x9e\x5d\x71\ -\xc8\x16\x2b\x18\x87\x84\x6d\xe0\x1a\xbb\x69\xa7\x12\x42\x49\x85\ -\xbb\x17\x6b\x97\x4d\x79\x0e\x58\x19\xe7\x0d\x7c\x09\x0e\xf6\x5b\ -\x4d\xd6\x85\x3f\x34\x14\x24\x59\x69\x77\x7d\xe6\xc8\xcc\x8f\x39\ -\x42\x2c\x8e\xfb\x26\xbe\xc0\xad\xa2\x53\x2e\x26\xde\xec\xac\x6e\ -\x10\xfd\xed\xf8\x35\x9c\x94\xb4\xdf\x2f\xf0\xf5\x1f\xd0\x57\x74\ -\xe6\x93\x98\x70\xb1\xcf\x96\x81\xd9\xf6\xbe\x49\x92\x95\x75\x9d\ -\x1e\x6b\xf7\x3e\xf0\x4e\x02\xf7\x8a\x24\xf0\x10\x78\x5d\xb4\xa9\ -\x35\x57\x70\x5e\xa5\xb2\xbc\x3e\xfb\x0c\x4e\x06\x16\x25\x21\x5b\ -\x49\xc1\x5f\x05\x8f\x49\xf0\xfb\x8a\xa3\x69\x17\x93\x5d\x25\x41\ -\x8b\xea\x50\x61\x4e\xbe\x99\xac\x0f\x91\x60\xec\x6d\xaf\xb4\x9f\ -\x49\xb5\xa4\x21\x5b\x89\x30\x63\x1c\xd8\x2e\x5a\x1b\x14\x76\xd9\ -\x57\x35\xd2\xe1\x4c\x6a\x0d\x78\x3c\x69\xd9\x4a\x85\x19\x5c\x5e\ -\x59\x1a\x93\xb4\x1b\xf2\xbe\x10\x7d\x98\xa9\x44\x35\x05\x75\x79\ -\xb6\x78\xe2\xe5\xb2\xac\x70\xf6\xe4\xb2\x37\x97\x49\x4d\x02\x5b\ -\x6a\x59\x98\xc1\x75\x5e\xae\x23\x5d\xe4\x1d\x73\x13\x86\x62\xd1\ -\x28\x41\xce\xcd\xf8\x57\xb4\x5f\x78\x53\x74\xfa\x99\x5a\xb4\xa7\ -\xd3\xe1\x7a\x13\x53\x3f\xae\xea\x73\xa6\xd4\xd2\xc6\xf7\xf9\x30\ -\xbe\x16\x9d\x46\x72\x45\xa3\x60\x0f\x2d\xf1\x8e\x2a\x2e\x61\x17\ -\x14\xed\x6b\xd2\xdc\xea\x18\x08\x8e\x49\x30\x8f\x65\x4d\x72\x6a\ -\x37\x58\x74\x51\x80\x13\x13\xf6\x03\x1c\xdf\x0f\xd9\x79\x99\x12\ -\x8e\x12\xa3\xc1\x57\xe0\x01\xf0\x96\x1d\xfb\x16\x74\x91\x33\x57\ -\x44\x32\x2f\xdc\x60\xb2\x5c\x8f\xba\x43\x82\xe5\x9d\x03\xe0\x65\ -\xd1\x5d\x84\xba\x12\x5e\x22\xda\x31\xb1\x49\xbb\xc9\xc1\x18\xf0\ -\x81\x68\xed\xc6\x3e\x41\xe8\x48\x61\xce\xb8\x36\x83\xab\x44\x57\ -\x2e\x5c\x50\x96\xab\x9f\x0b\xd3\x94\x4d\x5a\xb8\x97\x68\x07\x35\ -\x0b\x7c\xe8\x1d\xe7\x50\xb6\xdd\x1e\x46\x9b\x5b\x23\x59\x11\xbe\ -\x1d\xbc\x04\xde\x10\xdd\x3d\xf0\x83\x39\xf3\x09\xf0\x54\xda\xb2\ -\x71\x08\x73\x81\x7e\x9c\x09\x70\x5c\xbe\x5c\x74\xc1\x9d\x43\xcd\ -\x51\xd0\x4d\x82\xe1\x89\x31\x4c\x74\xa9\x95\x9b\x62\x91\xf7\x83\ -\x6a\x45\x98\xe7\x8e\x02\x57\x8a\xa6\x9a\xdc\x36\xf9\x03\xbc\x2d\ -\xfa\xbf\x15\xaf\x81\x79\xe0\x4b\xfb\x3e\xf7\x88\xd8\xc4\x77\x4a\ -\x4c\x4b\xae\x69\x0b\xbb\x78\x50\xb4\x56\x37\x89\x8e\xad\x6e\xdf\ -\xf6\x0a\xd1\x15\x13\xd6\x28\xf7\x6e\xd9\x41\x5d\x07\x3e\x16\x5d\ -\x4e\xca\xa4\x30\x73\x64\x36\xe3\x3d\xde\x31\xe6\xcc\xcc\xbe\xee\ -\x11\xcd\xb9\x99\x46\xb2\x96\x1f\x16\x1d\x9e\x38\x0d\xe4\xba\xd9\ -\x02\x29\x9d\x7b\xd7\xac\xb0\x2f\xd9\xea\xbd\xe7\x56\x0d\x9b\xfa\ -\x7e\xd0\x5f\x74\xd9\x86\x09\xc6\x67\xa2\xff\x6c\xc2\xf9\x2f\xf7\ -\x8a\x9e\xcc\xaa\x70\xa9\x60\xed\x73\x48\x62\xb3\x0f\x6f\x6f\x76\ -\x33\xe9\xba\x10\xe6\x2a\x06\x6b\xfc\x11\xd1\x7f\x2c\xd9\x9c\xb6\ -\x58\xda\xc2\x2e\xd8\x7c\x8f\x77\xb4\x64\x9a\xc2\x35\x17\xb9\x70\ -\xbd\x47\x2e\x5c\xef\x91\x0b\xd7\x7b\xfc\x0f\xcf\x88\xf6\x3d\x9f\ -\xd0\x2e\xe3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x38\x2d\ +\x00\x00\x0a\xf6\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ -\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ -\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xe2\x02\x13\x17\x36\x16\xcb\x95\x2a\xe9\x00\x00\x00\x19\x74\x45\ -\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\ -\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\ -\x00\x20\x00\x49\x44\x41\x54\x78\xda\xec\xbd\x79\x9c\xdd\x55\x7d\ -\xff\xff\x7c\x9f\x73\x3e\x9f\xcf\xbd\x77\x96\x24\x33\x59\xd8\x49\ -\x08\x20\x8b\x40\x94\x4d\xa9\x6c\x2e\x88\x5b\xc5\xba\x56\x41\x50\ -\x6a\xb5\x3f\x51\xa0\xfd\xda\x5f\xb5\xb5\x6a\x17\xbf\xb5\xad\x56\ -\x71\xa3\x4a\x55\x14\xd7\xd6\x56\x11\x11\x41\x59\x45\xd9\x77\x42\ -\x08\x48\x86\x2d\x40\x92\xc9\x32\x33\x77\xee\xfd\x7c\x3e\xe7\x9c\ -\xf7\xf7\x8f\x73\x27\x89\x6c\x61\x49\x30\x4b\xcf\xe3\x31\x99\x3b\ -\xf3\x98\x7b\xf3\x39\xe7\xfd\x3e\xef\xfd\xfd\x7a\x0b\x5b\xd9\xea\ -\x5f\x35\xc3\xc9\x0a\x19\x00\xf6\x06\xd9\x47\xaf\xaf\xe6\xd9\xa6\ -\xec\x68\xf6\x77\x3b\x46\x98\xad\x22\x43\xc0\x20\xd0\x00\xb2\xde\ -\xdb\x6a\xa0\x0b\x8c\x01\x2b\x81\x65\xc0\x83\xbd\xaf\x25\xc0\x42\ -\xe0\x0e\x60\x7c\x6c\xee\xa8\xdf\x9a\xce\x4b\xb6\xf4\x0d\x0c\x7e\ -\xa8\xb9\x9d\xfb\x93\xc6\x11\x75\x2e\x87\x8b\xc8\xa1\xaa\x3a\x5f\ -\x97\xea\x90\x0c\x0a\xf4\x0b\xe1\xab\x1d\x8a\xf7\x34\x20\x42\x14\ -\xc0\x80\x3e\xf3\x6d\xaf\x04\x7e\x0b\x5c\x0d\x5c\x01\x5c\x3e\x36\ -\x77\xf4\xe1\xff\x65\x80\xe7\x9a\xe8\x67\x0f\x1c\xea\x8e\xc8\x4e\ -\xe8\xfe\x4d\xfb\xad\x7e\x25\x33\x9b\x5f\xea\x47\x25\x91\x55\x9a\ -\xc2\xf8\x1f\x8f\xd3\xfa\xf7\x01\x8a\x02\xaa\x1f\x97\xf0\xda\x02\ -\x54\x51\x01\x91\x8d\xbe\xe5\x15\xc0\xf7\x81\x6f\x8d\xcd\x1d\xbd\ -\x7a\x4b\x3b\x4b\xb3\x59\x13\x7a\x64\x78\xfd\xd7\x47\x0e\x2c\x99\ -\x79\xd6\xc0\x6f\x87\xba\xcc\x90\xab\x10\xde\x4f\xc5\xcc\x38\x12\ -\xd0\xa6\xac\xe3\x65\xaf\xd8\x03\x33\x10\x25\x3e\x12\xc1\x0a\x4a\ -\x22\xfe\x26\x5a\x33\x81\xf7\x03\x57\x0d\x8e\x0c\x77\x07\x47\x86\ -\xcf\x1a\x1c\x19\x3e\xf2\xf1\xf6\xf0\xbf\x0c\xf0\xf4\x09\x3f\x73\ -\x70\x64\xf8\x33\x83\x23\xc3\xa3\xc0\xa5\x44\x39\x59\x1a\x52\xc4\ -\x25\x01\x7d\x38\x62\xf7\xb6\xc4\x25\x01\xc9\xd7\xa3\x6e\x05\xd9\ -\x71\x39\x61\x51\x20\xde\x11\xb0\x7b\xb9\x24\xea\x44\x90\x4d\x2f\ -\xf0\x0a\xe0\x64\xe0\xd2\xc1\x91\xe1\xd1\xc1\x91\xe1\xcf\xf4\x18\ -\x64\xb3\x65\x84\xcd\x55\x02\x2c\x18\x1c\x19\x3e\x1f\x58\x0e\x9c\ -\x0e\x0c\x01\x60\x23\x5a\x2a\xee\x45\x19\xfe\xfc\x0a\xbf\xc8\xa3\ -\xb1\x67\xc2\xa1\xa0\xbd\x1d\xad\x56\x58\x1a\xd1\x3e\xa0\x95\x88\ -\xaf\xaa\xcf\xb5\xc2\x1b\xea\x3d\xfb\xf2\xde\x5e\x16\xfc\x2f\x03\ -\x6c\xe0\xc6\x0f\x8e\x0c\xbf\x76\x70\x64\xf8\x3a\xe0\x46\xe0\x55\ -\x4f\xf8\xc4\x43\x82\x3b\x32\x23\x7b\x59\x8e\x54\x4a\x58\xb4\xce\ -\x30\x8f\x80\x7a\xb0\x2f\xcb\x91\x08\x58\xd6\x4a\x80\xdf\xe3\x7a\ -\x15\x70\xe3\xe0\xc8\xf0\x75\x83\x23\xc3\xaf\xdd\x9c\x24\x82\xd9\ -\x1c\x08\x0f\x1c\x32\x38\x32\xbc\x18\xf8\x09\x70\xe0\x13\xbe\x21\ -\x26\x22\x4a\x26\xc4\x36\x98\xf9\x16\xfa\x84\x78\x9b\x07\x15\x8c\ -\x07\xa3\x20\x73\x84\x70\x75\x0d\x15\xc4\x87\xe3\xe6\x74\xe1\x0e\ -\x04\x7e\xd2\xdb\xeb\x21\x9b\x03\x23\x98\xdf\x33\xe1\x77\x18\x1c\ -\x19\xbe\xb0\xe7\x56\xed\xb1\x61\x9f\x45\x11\xed\xbd\x1c\x04\xd9\ -\xd1\x62\xe6\x08\x32\xc7\x80\x68\xda\x4d\x4c\x76\x00\xd3\x0d\x0c\ -\x09\xba\x4a\x93\x7a\xd8\xbc\xd6\x1e\xc0\xd5\xbd\xbd\xef\xf0\xfb\ -\x64\x04\xf3\xfb\x20\xfe\xd8\xdc\x51\x06\x47\x86\x3f\xd7\x0b\xb4\ -\xbc\xe2\x29\x3f\xac\x28\x22\x10\x15\x74\xba\x21\x8e\x2b\x66\x27\ -\x8b\xff\x71\x89\x46\x03\xe3\x8a\x31\x60\x76\x12\x24\x07\x9d\x30\ -\xc8\xa8\xe2\x14\x9c\x2a\xa2\x89\x19\x36\x23\x96\x78\x05\xf0\xe0\ -\xe0\xc8\xf0\xe7\x7a\x67\xb2\xf5\x32\xc0\x7a\x9b\xdb\x6f\x70\x64\ -\x78\x39\xf0\xc1\xa7\x1d\xb4\xd0\x75\xd1\x0b\x69\x09\xe1\x76\x8f\ -\xdd\xcd\x52\x9f\x57\xa1\x93\x8a\xf6\x0b\x52\x81\x69\x0a\x61\x91\ -\x47\x0b\x88\x4b\x63\x2f\xf8\xb3\x59\x47\x3d\x3e\xd8\x3b\x93\xfd\ -\x9e\x6b\x69\x60\x9e\x0b\xc2\xaf\x77\xeb\x3f\x0f\xdc\x02\x3c\xa3\ -\x1d\xaa\xac\x63\x02\xcd\xc0\xbe\x38\x23\xff\x9b\x16\xa2\x8a\xde\ -\xdf\x8b\xef\x09\x48\x50\xa4\x01\x0c\x08\xf1\x91\x00\x86\x64\x10\ -\x6e\xde\x6b\x18\xb8\x65\x70\x64\xf8\xf3\x53\xd2\xe0\xb9\x60\x84\ -\x4d\xce\x00\x63\x73\x47\x01\x66\x0f\x8e\x0c\x2f\x05\x4e\x59\x77\ -\x87\x9f\xfe\x12\x9d\x32\xf3\x7b\x04\x75\x10\xce\xad\x88\xe3\x4a\ -\xf7\x9f\x27\xd1\xbc\xf7\xfb\x0a\xcc\x6e\x0e\x55\x25\x44\x10\x23\ -\xa8\xd9\x1c\x4d\x81\xdf\xdd\x5e\xef\xfb\x29\xbd\xb3\x9a\xdd\x3b\ -\xbb\x2d\x5e\x02\xbc\x05\x78\x04\xd8\xfe\xd9\x7e\x96\xf6\x02\x7e\ -\xa2\x3d\x69\x60\xc0\x1c\x9d\xd1\xf8\x70\x1f\x78\x45\x0c\x88\xa4\ -\xaf\x78\x87\x27\x4e\x2a\xb4\x15\xed\x24\xdb\x61\x0b\x0a\x7c\x6f\ -\x0f\x3c\xd2\x3b\xbb\x2d\x8f\x01\xd6\xf3\xeb\x3f\x43\x8a\x93\x6f\ -\x9c\x2b\x12\x41\x1f\x89\xe9\x36\x1b\x50\x03\xc6\x42\xf6\x9e\x06\ -\xba\x4c\x08\xe7\x57\x48\x96\xe2\x7d\x76\xbe\x4d\xfa\xbf\x29\xe8\ -\x1a\x5d\x2b\x39\xb6\xb0\xf5\xfd\xde\x19\x6e\x32\x75\x60\x36\x05\ -\xf1\x7b\x3a\xec\xaa\x5e\x24\x6c\xe3\x2d\x05\x19\x14\x44\x41\x42\ -\x8f\xa0\x4d\x21\x9c\x57\x42\x5f\xa0\xf3\x2f\x1d\x42\x54\x62\x09\ -\xb2\x9d\x41\x76\x34\x60\x15\x59\x12\xa0\x7c\x02\x83\x72\xf3\x5f\ -\xa7\x0f\x8e\x0c\x5f\xb5\xa9\xbc\x04\xd9\xc8\xb7\x5e\x80\x1c\xb8\ -\x01\xd8\x67\xa3\x3f\x6c\xad\x10\x7a\x6a\x20\x5f\xcf\xb2\x0f\xd0\ -\xf9\xc4\x24\xa6\x05\xd9\x11\x19\xe6\x90\x0c\xed\x2a\xe1\x11\xc1\ -\x3c\x50\x63\xaf\xf3\x98\xe3\x0b\xfc\x76\x06\xed\xbd\x49\x94\x2d\ -\x2d\x17\xba\x10\x78\x61\x2f\xca\xa1\x1b\xcb\x3e\xd8\xd8\x12\x60\ -\x1a\x70\xff\xa6\x20\x3e\x24\xa3\x4f\x82\x12\x6e\xac\x53\x0e\xa0\ -\x47\x43\xc9\xc1\x0c\x09\xaa\x50\xfd\x57\x95\x76\x35\xc3\xe0\x7f\ -\x5d\x62\x5f\x94\x51\x5e\x58\xa1\x99\x20\xb1\xf7\xf7\x6c\x91\x6b\ -\x9f\xde\xd9\x4e\xdb\xac\x54\xc0\x7a\xee\x4a\x3f\x70\x37\x30\x6b\ -\x93\x1d\x81\x82\x4e\x33\x29\xf4\xdb\xd3\xeb\xba\x52\x89\xf7\x44\ -\x8a\xd3\x9a\x30\xa1\xf8\x8b\x2b\xc2\x9d\x01\x3a\x4a\xfe\xd6\x06\ -\x1a\xc0\x8f\xf5\x52\xc3\x66\x3d\xe2\x6f\x99\x5c\x30\xab\x77\xc6\ -\xfd\x1b\xcb\x4d\xdc\x18\x12\x40\x80\xe9\xc0\xc8\x33\xf5\xef\x9f\ -\xce\xd3\x4a\xa9\x64\x27\x37\xf1\xd7\xd4\x48\x21\xc8\x4c\x83\x2e\ -\x8f\x88\x87\xe2\xb4\x16\xf6\xd8\x1c\x7f\x4b\x40\x9b\x06\x26\x23\ -\x61\x42\xb1\x6f\xca\xa9\x7e\x52\xa2\x9d\x75\xd5\x40\xaa\xca\x16\ -\xba\x86\x7b\x67\x3d\x7d\x63\xb0\xb1\x79\xb6\xb7\xbf\xa7\xf3\x17\ -\x6f\x72\xe2\x93\x0c\x3f\xb5\xe9\xbb\x99\x6e\xa0\x54\xd4\x81\x3e\ -\x18\xc0\x25\x15\xa1\x40\xbc\x2f\xc2\x58\x44\x66\x08\xfe\x97\x25\ -\xee\x3d\x4d\xea\x5f\xd6\x48\xc1\x56\x50\x04\xb7\x96\x09\x16\x03\ -\xf9\xb3\x95\x02\xe6\xd9\x10\xbf\x67\x88\xdc\xb0\x49\xc5\xfe\xa3\ -\x64\x8d\x68\x8f\x09\xe6\x18\xfc\xa5\x35\x52\x2b\xb2\x83\x4d\xba\ -\x7d\xba\x20\xdb\x5b\xcc\xc1\x8e\xfa\xfc\x0a\x6a\x70\x47\x17\xc8\ -\x6c\x8b\x7a\x85\xe5\x11\x53\x4f\x7d\xd6\x16\xcf\x09\xb3\x80\x1b\ -\x9e\xad\x77\xf0\x8c\x19\x60\x3d\x57\x6f\x9f\xe7\x6a\xc7\xd1\x08\ -\x51\x04\x15\x41\xe6\x1b\x74\x75\x84\x49\x60\x2c\x12\xc6\x15\x13\ -\xa1\x71\xb4\x23\x7c\x6c\x02\xbd\xd5\x53\xff\x4f\x99\x18\xe5\x62\ -\x8f\x79\x69\x93\xf2\xbb\x15\x62\x14\x89\xba\xb5\x88\x82\x7d\xa6\ -\x5c\xc4\xdf\x87\x04\xf8\x0c\x70\xe8\xef\x67\xdf\xc9\x1d\xcc\xdf\ -\x50\x50\xff\x47\x07\x7b\x50\x96\x4a\xc0\x2c\x98\xfd\x1d\xcd\x33\ -\x06\x30\x3b\x18\xdc\xeb\x1a\x50\x83\xb4\xa0\x38\xa5\x45\xf5\x9f\ -\x5d\x4c\xec\x15\x86\x69\x64\x2b\x59\x87\x4e\x05\x8b\x36\x39\x03\ -\xac\x17\xe1\x7b\xcb\x46\x0f\xf2\x3c\x93\x95\x01\xfd\x92\xf8\x61\ -\x71\x44\x9d\x10\x6b\x60\x9e\x81\xbd\x1d\xf5\x4f\x6a\x18\x30\x98\ -\x3d\x2d\x20\xc4\x07\x22\xf1\xf2\x3a\x49\x10\x65\x6b\x5a\xa7\x4f\ -\x85\x8d\x9f\xae\x3a\x30\xcf\xe0\xe6\xcf\x66\x23\x86\x77\x9f\x95\ -\xef\x51\x41\x7e\x72\x23\x05\x77\x0c\x29\xe4\x2b\xc0\x6c\x43\x5c\ -\x14\xa0\x10\xba\x7f\xd3\x46\xa6\x5b\x74\x3c\x82\x83\xf8\xad\x2e\ -\x56\x52\xe5\xd0\x56\xb6\xbe\xdf\xa3\xcd\xa6\x61\x80\xf5\x8c\xbe\ -\x9b\x36\x9b\x2d\x1b\x52\x64\xd0\x81\x3b\xae\xa0\xfe\xf7\x0e\xd2\ -\x12\xe8\x28\xf6\x88\x0c\x71\x60\xe6\x5a\xe2\x6d\x81\xb8\x38\x50\ -\xbc\x26\xa7\xbe\xa4\xc6\xdd\x16\xb7\x12\x67\xe0\x31\xeb\xa6\xa7\ -\x6b\x14\x3e\x65\x06\x58\x2f\x9f\xbf\xfd\x66\xb3\xdd\x1e\x15\x65\ -\x40\xf0\xdf\xeb\x60\x77\x36\xe8\x42\x8f\x09\xe0\xe6\x1b\xaa\xef\ -\x77\x30\x73\x0d\xfe\x66\x8f\x7b\x75\x8e\x0c\x25\xfd\xef\x3f\xdd\ -\x81\x42\xb6\xc4\xe4\xd0\x86\xd6\xf6\x53\xf5\x04\x1b\x95\x01\x7a\ -\x51\xa7\xfd\x58\x97\xcf\xff\xfd\xd3\x5d\xd7\xa3\x5f\x4c\x06\x61\ -\xb8\xb4\x82\x25\x21\xd5\x05\x00\x8d\x3f\x6f\x62\xa6\x0b\xac\x51\ -\xe2\xc3\x91\x70\x4b\x40\xfa\x0d\xfe\x96\x80\x59\x18\xd9\x4a\xd7\ -\x29\x83\x23\xc3\xfb\x3d\x55\x29\x60\x9e\x0a\xf1\x7b\x1c\x75\x31\ -\x9b\xc9\x9d\x51\x92\x2b\x18\x11\x02\x42\x34\x82\x99\x65\xb0\xc7\ -\x14\x74\xfe\xa3\x0b\x2b\x53\xbc\xcf\xed\x67\xf1\x17\xd7\xb8\x23\ -\x0b\xe2\xcd\x4a\xfe\xa5\x19\x74\x87\x2c\x7e\xd2\x20\x5f\x56\x68\ -\x27\x67\x40\x03\x68\xdc\x6a\xc4\x81\x02\x17\x3f\x55\x55\xb0\x41\ -\x06\x58\xaf\x80\x73\xe6\xe6\xec\x3c\x6b\xa5\xb8\xe3\x72\xdc\x21\ -\x19\x9d\x0f\x4c\x40\x4f\x0a\x14\xa7\x36\x08\xb7\xd7\xc4\x3b\x6b\ -\xcc\x2e\x82\x59\x60\x08\x9d\x88\x5f\x12\xa0\x9c\xaa\x24\xd6\xdf\ -\x77\xdf\xc0\xc6\x16\x90\x33\xa7\x0a\x4d\x9f\x15\x03\xf4\x44\xff\ -\x0e\x3c\x83\x02\xce\xe7\x7c\xd7\x01\xa4\x06\xfb\xb2\x0c\x7f\x45\ -\x8d\xbf\x20\x85\xfc\x44\x95\x70\x5d\x89\xfb\xc3\x8c\xf2\x1f\x26\ -\xb1\x47\xe5\x44\xa0\xbb\xa8\x4b\xf8\x71\x05\xcb\x63\x6a\x2d\xdb\ -\xfa\x34\xc2\x07\x07\x47\x86\x77\xd8\x90\x14\x30\x1b\xba\xfd\xc0\ -\x37\xb6\x88\xed\xf6\xf2\x00\x6e\x81\x23\x3f\xbe\x60\xf2\xcf\x27\ -\xd0\x65\x29\xff\x5b\xfc\x9f\x06\xe1\xea\x12\x7b\x48\x86\x7d\x55\ -\x46\xfe\xa3\x7e\x7c\x37\x52\x7f\xb3\x0b\x37\x7a\x6c\x05\x5b\xa9\ -\x5b\xf0\x8d\x0d\x49\x01\xd9\x40\xd0\xe7\x10\x52\xd3\xc6\xe6\x7d\ -\xfb\x1d\xc4\x9f\x57\xd8\xa3\xb3\x74\x93\x9b\xc2\xc4\x21\xab\x28\ -\x4e\x6d\x92\xfd\x61\x0e\xb9\xe0\x1f\x56\xe2\x18\xd8\x3d\x33\xca\ -\x4f\x4f\x40\x05\xf2\x83\x2e\x76\x9a\xa5\xf8\x9f\x41\xe2\x8c\x54\ -\x62\x36\xa5\x44\xb7\x22\x7e\x38\x14\xb8\xe6\x89\x18\xc1\x6c\xe0\ -\xf6\x9f\xb3\x45\x58\x3d\x1e\x64\x67\x43\x5c\x11\x53\x76\xb0\xab\ -\x34\xbf\xd0\x4f\xf9\xc5\x0e\xfe\xa2\x1a\xb1\x60\xb6\x13\xc2\x2f\ -\x2a\x3a\xa7\x4f\x90\xbf\xab\x0f\x99\x93\x5c\xc2\x78\x5f\x20\x7c\ -\xa5\x8b\x66\xeb\x88\xbf\x95\xad\x73\x9e\x4c\x0a\xd8\x27\x91\x00\ -\xaf\xdd\x5c\xdc\xbe\xa7\x24\x05\xa6\xf7\xc2\xbb\x8d\x5e\xff\xe0\ -\x0e\x06\x3b\xdb\x50\xff\x6d\x9b\xac\x69\xe0\x40\x87\x79\x41\x41\ -\x5c\x14\x89\x4b\x02\xee\xc8\x0c\x33\x29\xc4\xdb\x03\xe1\xe6\x9a\ -\xec\xf0\x02\x99\x65\x7a\x38\x02\xc2\xd6\x63\x13\x32\x5c\x9c\xd6\ -\xba\xbe\xfc\x6c\x67\xf1\xd3\xb5\x01\x3e\xbe\x45\x39\x3e\x0e\xea\ -\x4b\x6a\x98\xec\x85\x83\x3d\xd8\xd7\xe5\xe4\xaf\x2b\xa8\xfe\xb6\ -\x8d\x5c\x54\x43\xae\x14\xa7\x36\x89\xa3\x0a\x56\x90\x77\x14\xe8\ -\xee\x16\xf5\x42\xf5\x81\x36\xe2\x41\xbc\x6c\x8d\xe6\xc0\xc7\x9f\ -\xb2\x0d\xd0\xd3\xfd\x0b\x48\x2d\xda\x5b\x8e\xef\x13\x15\x4a\xa5\ -\xfe\x49\x45\xf6\xd6\x22\xd9\x02\x02\x4e\xa0\x3c\x61\x1c\x7f\x79\ -\x4d\x7e\x66\x3f\xbc\xa6\xa0\xfe\x45\x44\x86\x32\xe2\x2d\x1d\xec\ -\xce\x96\xea\xa4\x31\x40\xc8\x5f\x57\xe0\xbe\xd4\x87\x86\xad\x32\ -\x48\xf4\x02\x7a\xa1\xe2\x27\x95\x00\xbd\x3f\xf8\xe4\x16\x19\xfe\ -\xe8\x17\xe2\x43\x11\x56\xf4\xfc\x7b\x85\x50\x41\xfe\x77\xad\xb4\ -\xd9\x8f\x76\xb1\x37\x78\xdc\xcb\x32\xaa\x6f\xd7\xc8\x8e\x19\x9d\ -\x4f\xb5\x71\xc7\x35\xb0\xce\x50\x5f\x54\xa1\x57\x79\xf0\x5b\xa5\ -\x4b\xf0\xc9\xc7\xb3\x05\xe4\x71\x6e\xff\x4c\x12\x32\xc7\x16\x45\ -\x7c\xd1\x54\x24\x5a\xff\xa0\xc4\xec\x63\x31\xf3\x1d\x32\x00\x04\ -\xb0\x06\xf8\x46\x97\xfa\x13\x1d\x74\x96\x81\xef\x0d\xa2\xb3\x9b\ -\x74\xde\x32\x8a\x3b\xd2\x92\xd7\x86\xea\x3f\x3a\x88\x15\x42\x88\ -\xf4\xdf\x3e\x4c\xc8\x02\xe2\x12\xb2\x88\x18\xd9\x5a\xdc\x82\x59\ -\xc0\x8a\xf5\x19\xc1\x3c\xce\xed\xff\xc8\x16\xb7\xad\xa9\xac\xa0\ -\x40\xf6\xb6\x82\x70\xab\x47\x3a\x11\x5d\xae\x88\x4d\xed\xe4\xe6\ -\xe4\x06\xe6\xa4\x06\x61\x79\xa4\xfb\x96\x35\xc8\xca\x0e\xcd\xaf\ -\x0d\x50\x9f\x5b\x53\x5d\x5f\xd3\xfc\xfb\x7e\x08\x11\x41\xe8\xbc\ -\x71\x4d\x22\x7e\xad\x6b\x55\xc9\x56\xb2\x3e\xb2\x41\x15\x00\x9c\ -\xb8\xc5\x6d\x6b\x0a\x0a\xa6\x27\xf6\xb3\x23\x32\xca\xb3\xba\xc8\ -\x0c\x41\xd7\x44\xf0\x10\x4b\x30\x9f\x68\xa2\xfb\x59\xb2\xd5\x42\ -\x7c\xed\x18\xc6\x40\x71\x6a\x8b\x70\xa7\x27\x5c\x53\xe3\x5e\x98\ -\x23\x06\xc2\xa2\x40\xfb\xed\x6b\x52\xc6\xd0\x6e\x55\xea\xe0\xc4\ -\x27\xf5\x02\x7a\xf0\x66\x43\x5b\xdc\xb6\x04\xd4\xa4\x04\x91\x5a\ -\x81\x5d\x2d\x3a\x64\xe8\x7c\x62\x12\x76\xb6\x84\x2e\x78\x03\x31\ -\x40\xf1\xb5\x7e\xc2\x2c\xc5\xb7\x23\x9d\x3f\x58\x41\xf1\x4a\x8b\ -\xf9\xa3\x8c\xee\x64\xc0\x7d\xa0\x45\xde\x70\xf4\x37\x0a\xf4\x6a\ -\x4f\x79\xea\x38\x66\x00\x88\x8a\x41\x71\xf5\x14\xc8\xc4\x16\xbb\ -\x86\xd6\x87\xb0\x7b\x3c\x09\x70\xc2\xd6\xc1\xe8\x42\xf1\xde\x26\ -\x66\xbe\xa1\xfd\xc6\x31\xcc\x1c\x81\x5a\xd1\xb6\xa2\x4d\xa1\x79\ -\xc9\x34\xe2\xac\x54\x61\x3c\xf9\x8a\x55\x34\xff\xb1\x1f\xe9\xb7\ -\x74\xce\xea\xd2\xfc\xd4\x20\xb1\x1b\xc9\xf6\xc9\xa8\x7f\x5c\xd1\ -\xfd\xbb\x49\xc8\x40\x3c\x3d\x9c\x81\x2d\x5b\x22\xa8\xea\x09\x4f\ -\x66\x04\x76\x49\x58\x77\x5b\xf6\x26\xa3\x82\x4f\x9b\xab\xbf\xdb\ -\x85\xfb\x22\xf9\x47\x5b\x09\x0d\xd8\x28\xb1\x0d\xf1\xde\x88\xfe\ -\x4d\x87\xea\xb6\x0a\x9d\x65\x69\xfe\x60\x10\xff\xa5\x12\xb9\x43\ -\x71\x73\x1d\xd5\x79\x93\xa8\x53\x6a\x1f\x91\x5d\x0d\xfd\xbf\x98\ -\x86\x75\x42\x8c\x24\x29\xb3\x65\x12\x1f\x94\x72\x7c\xb7\x95\x8d\ -\xc7\x30\xc0\xe0\xc8\xf0\xa1\xc0\x55\x5b\x85\x00\xd0\xc4\x04\x22\ -\x82\x71\x10\xcf\xab\x08\x2b\x02\x61\xb5\x52\x9c\xd2\x22\xac\x51\ -\x30\x8a\x5b\xa8\x74\x4e\x6e\x43\x47\xf1\x44\xfa\x7e\x30\x8d\xee\ -\x67\x27\x31\x03\x42\x3e\x6e\xa8\xaf\xaa\xa8\x35\x10\xa2\x22\x3b\ -\x1b\xfa\x2e\x99\x9e\x02\x48\xb2\x9e\xeb\xb9\x65\xf2\xc2\x8b\xa6\ -\x60\x6d\xcd\xd6\x27\xfe\x13\x51\xc4\x4a\x2a\x14\x8d\x8a\xbc\x2a\ -\xc3\xbd\xb5\x81\xae\x56\xfc\x15\x15\xba\x3c\x40\x80\xb8\x93\xa3\ -\xf8\xf7\x01\xa4\x4f\x28\x8c\xa5\xfb\xe6\x35\xe4\x6f\x2e\x88\xed\ -\x88\x7b\x43\x13\x3b\xd7\xe1\xe6\x58\x1a\x87\xe4\xb0\x34\xd2\x39\ -\x71\x2c\xc1\xd1\xc4\x2d\x16\x6f\xe0\x31\xb4\x5e\x5f\x02\x2c\xef\ -\xc5\x00\xb6\xbe\xd5\x23\x98\x34\x20\x2e\x8e\x94\xff\xdc\x26\x7b\ -\x63\x01\xb3\x9a\xc8\x00\xb8\x1f\x56\xf8\xb3\x3a\xa8\x44\xca\xd2\ -\x63\x5f\x5f\xa0\xb7\x09\x8d\x3f\x6c\x60\x3b\x4a\xe7\xcc\x09\x42\ -\x2b\x12\x27\x41\x77\x15\x1a\xff\xdc\x8f\x7b\x49\x86\xb6\x15\xd9\ -\x32\x6b\x0b\x57\x8c\xcd\x1d\x9d\xb5\x56\x02\x0c\x8e\x0c\x6f\xb7\ -\xd5\x12\x1f\x45\x45\x92\x9b\x58\x82\xdd\xc5\xd0\x3a\x6b\x10\xee\ -\x8b\x94\x67\x97\xe0\x14\x32\x41\xaa\x88\x01\xb2\x5c\x88\xe7\x95\ -\xc4\x95\x91\xce\x67\x27\x91\x41\xc1\xed\xe0\x90\x8e\x60\xac\x20\ -\x1d\xa1\xf3\xae\x71\x26\xdf\x31\x86\x8e\xa6\x52\x73\x9e\x48\x18\ -\xe8\xd4\x3f\x9b\x1d\x87\xcc\xec\xd1\x3c\x49\x80\x5e\x53\xc1\xf7\ -\xd9\x06\x56\xa2\x89\x22\x4e\xb0\xa2\x4c\xec\xb4\x92\xc6\xb0\x25\ -\x37\x06\xbb\x4a\xc9\x33\x8b\xef\x44\xaa\x61\x4b\x28\x23\xb1\xdf\ -\xc0\x5e\x8e\x30\x5d\xe8\xfc\xac\x84\x32\x62\xfa\x23\x3a\xa9\x44\ -\x15\xf2\x3f\x69\x92\xbd\xa9\x81\xd9\xcb\x21\x79\x0f\x8f\x88\x88\ -\x68\xaa\x4b\x34\x3d\x3b\xc1\x6f\x7e\x86\xe3\x5b\xc7\xe6\x8e\xfe\ -\x60\xca\x06\x38\x9c\x6d\x65\x69\xaf\xfe\x2f\x80\x56\xd0\x77\xe9\ -\x34\xe2\x3c\xa1\x9c\x08\xf8\x96\x50\xe7\xc0\x76\x06\x33\xd7\xe1\ -\x5e\x94\x23\x3b\x98\x24\x21\xf2\x04\x51\x6b\x5f\x92\x13\x27\x0c\ -\x51\x0c\x32\x4b\xa8\xce\x9e\xa4\x7d\xec\x4a\x26\x0e\x59\x4e\xe7\ -\xff\x6f\x13\x97\x2a\x0c\x38\xa2\x73\x04\x63\xa9\xad\xa5\xb6\x6e\ -\x73\x3c\x89\xc3\xd7\x37\x02\x0f\xdd\x56\xe8\x3f\x85\x1c\xae\xa5\ -\x12\x2b\x45\x67\x5b\xcc\x1b\x73\xc2\x2e\xc2\xe4\x58\x4d\xa7\x2f\ -\xd0\xf5\x01\x0e\xb0\x70\x44\x46\xf6\xa6\x26\xda\x56\xaa\x1f\x74\ -\x31\x25\xc4\xdb\x03\x8a\x4d\xe5\x43\xa3\x82\x54\x4a\xe6\x14\xbb\ -\x2c\x12\xcf\x69\xd3\x7e\xc9\x0a\xc6\x5f\x38\x4a\xf5\xb5\x2e\x71\ -\x44\xc0\xe6\x60\xdc\x63\x23\x2e\xbf\x7f\xad\x70\x28\x80\x0c\x8e\ -\x0c\x3b\x12\x8c\xdb\x10\xdb\xd8\x12\x51\xe2\x92\x48\xf8\x79\x89\ -\x3b\x38\xa3\xfa\x4c\x87\xf8\xab\x1a\xf7\x7c\x87\xe4\x0e\x77\x74\ -\x41\x9c\x84\xfa\xd7\x35\xee\x00\x47\x75\x61\x45\xcc\x05\xff\x88\ -\xa6\xbc\x41\x08\xd8\x9e\xb8\x37\x3d\xf4\x11\x11\x41\x73\x43\x5d\ -\x41\x88\x82\x7d\x61\x8e\x7b\x7d\x81\x31\x15\xee\xe0\x0c\x73\xb0\ -\x83\x09\x85\x92\x75\x68\x67\xf4\xa4\xd2\x73\xeb\x56\xae\x0c\x21\ -\xcc\x71\xc0\xc0\xb6\x48\x7c\x00\x7c\xba\x9c\xf5\x03\x8a\x2e\x50\ -\x74\x86\xc0\x91\x19\xe5\x65\x35\x22\x8a\xee\x6d\xc9\x8f\x68\x10\ -\x97\x44\x28\xa1\xd8\x37\x4f\x31\x81\xed\x02\xfe\xda\x90\x88\xe5\ -\x94\xe8\x13\xe1\x5a\x43\x19\x4c\x1a\x62\xa5\xb8\x39\x06\xac\xa1\ -\xbe\x2b\xe2\xff\xb6\x8d\x50\x53\x59\xc5\xce\x73\xd8\xc3\x32\xcc\ -\x81\x0e\x77\xa0\x83\xb9\x06\xbc\xa0\x41\x7b\x10\x36\xcf\x19\x07\ -\x0c\x89\xc8\x80\x0c\x8e\x0c\x1f\x06\x5c\xb9\x2d\xd2\xdf\xd4\x0a\ -\x8f\x44\xaa\xff\xe8\x12\xc6\x14\x7f\x65\x8d\x34\x40\x86\x0d\xf5\ -\xf5\xb1\x07\x28\x25\x14\x7b\x15\xd8\xe5\x0a\x03\x96\xf0\x50\x05\ -\x87\x1a\x64\x50\xd0\x35\x50\xfd\xaa\x46\x9d\xa2\x16\x9a\x31\x35\ -\x23\x84\x10\x30\xbb\x58\x62\xa1\x84\xfb\xeb\x1e\x82\x79\x00\x27\ -\x68\x57\x93\x47\x12\x7a\xf3\x2d\xf6\x74\x64\x1f\x69\x91\x1d\x93\ -\x83\xd7\xe7\xba\x3c\xfd\x0f\x1c\xcf\x21\xc0\xc3\x66\xb7\x2c\x88\ -\x05\x5d\x1d\x29\xfe\xb4\x49\xf1\xb6\x02\x99\x01\xed\xf7\x4c\x60\ -\xe6\x19\xf4\x91\x88\x94\x4a\x75\x67\x89\xcd\x0c\x4e\x95\x58\x2a\ -\xe6\x7e\x8f\x7f\x28\x82\x33\x29\x30\x14\xc0\x1d\x96\x53\x5e\xe6\ -\x53\xde\x60\x48\xf0\xa3\x1e\xf5\x8a\xcc\x06\xbd\x37\xa2\xce\x40\ -\x04\x93\x27\xc9\x23\x4e\x10\xaf\x98\xbb\x23\xfe\xa4\x71\xca\x1d\ -\x0d\xee\xd8\x82\xe2\x13\x83\x10\x02\x04\x45\x36\x71\x0b\xb3\xaa\ -\xee\x63\x80\x79\xdb\x2c\x03\xd4\x10\xee\x89\xc8\x02\x87\xde\xed\ -\x09\x17\x56\x18\x2b\x0c\x7e\x7b\x10\x3b\xcf\x20\x05\xc4\x10\x89\ -\x2e\xe0\xfb\x3d\xdd\xba\xa4\xc6\xe3\x1f\x04\xed\x0a\x61\x22\xe0\ -\x16\x64\xb4\x4e\x69\x61\x16\x05\xec\xfe\x60\xf7\x53\x44\x22\xd2\ -\x0e\x98\x49\xb0\x13\x16\xb7\x6b\x23\x15\xab\xce\x34\x84\x5a\x30\ -\x7b\xe6\xe0\x05\xc9\x2c\x99\xb3\x34\x73\x07\x0f\x43\xf5\xcd\x80\ -\xae\x70\x10\x0b\xf0\xac\x1d\x90\xb1\x09\x0d\xe2\x79\x06\xd8\x71\ -\x5b\xa5\x7f\x2c\x84\x30\xae\x84\x2b\x6b\x64\x9a\x21\x3b\xbe\x20\ -\x2e\x8f\xc4\x42\xb0\xfb\x58\x74\x55\xc4\x1e\xe0\x30\x03\x06\x99\ -\x65\x61\x32\x89\x6d\x5f\x45\xbc\x55\x54\x0c\xe5\x4d\x15\x13\x67\ -\xb4\xa9\x27\x02\x7e\x79\xa4\xba\x21\x10\x9d\xc1\xbd\xb2\x89\xe4\ -\x06\x5d\x23\xc8\xd2\x80\x44\xc1\xed\x67\x71\xcf\x77\xd4\x8b\x6a\ -\xc2\x0c\xe0\x20\x4b\x75\x98\x65\x72\x3a\x68\x03\xf0\x35\x13\x0b\ -\x96\x52\xff\xf7\x04\xf4\x99\x4d\x39\xe9\x6c\x6a\xed\xb8\x4d\x33\ -\x80\x46\x43\x7d\x4b\x82\x93\x8f\x37\x7a\xe8\x28\x0c\x19\x62\x50\ -\x8a\xd3\x9b\xf4\xff\x78\x90\xc6\xfb\x1a\xb8\xe7\x1b\x4c\x54\x08\ -\xbd\x81\x13\x85\xa2\x28\x51\x02\x6a\x22\x98\x48\xec\x04\xe2\x72\ -\x01\x67\x89\x4b\x15\x7f\x63\xc0\x38\x83\x6d\x3a\x24\x58\xf2\xed\ -\x1c\x5c\x15\xc8\x8e\x29\x90\x3e\x21\x3b\xb1\x49\x78\x18\xea\x6b\ -\x6a\xe2\x50\x86\x0c\x0a\x79\xc3\x90\x23\x94\x7f\x39\x86\x2e\x07\ -\x54\x36\x35\x9c\xdd\x8e\x06\x98\xbd\x4d\x12\x1f\x20\xcb\xa8\xff\ -\xbb\xc6\x1e\x98\x21\x13\x8a\x14\x06\xb5\x42\xcc\x4d\x6a\x26\x99\ -\x65\xd0\xd1\x88\xb6\x04\x7b\xb0\xc3\x1d\xec\x70\x2f\xcb\xa0\xee\ -\x19\x72\x59\x0f\x9a\xdc\x02\x46\x52\xab\xb1\x8f\x68\xa6\x84\xa5\ -\x9e\xb0\xa3\x50\x4f\xd4\xd4\x3e\xa0\xc3\x10\xda\x4a\xf9\xcd\x2e\ -\xda\x56\xc2\xd5\x81\xc6\x67\xfb\x31\xdb\x67\x64\x6f\x2e\xc8\x5f\ -\x9e\x93\xef\x96\x92\x4f\x26\x40\x75\x76\x07\x71\xc9\x3d\xd4\xb0\ -\x71\x8d\x43\x55\x9d\x62\xac\xd9\xb6\x38\xad\xf5\xd7\xa4\x59\xba\ -\xdb\x56\x0c\xc0\x00\x3e\x27\xdc\xa6\xd4\xdf\x69\x63\x16\x06\xcc\ -\x01\x0e\xdd\xcd\x22\x4d\x83\xcd\x40\xf2\xd4\x6c\x92\xed\x62\x71\ -\x07\x65\xd8\x1d\x4c\x22\xc8\xf2\x88\xe4\x60\x07\x04\x5d\x9d\xd0\ -\xc9\x00\x8c\x55\x4c\x06\x34\x53\xc6\x50\x1b\x9a\x88\x37\xd7\x10\ -\x1e\x0e\x89\x61\x54\x31\xf3\x1c\x54\x8a\xff\x69\x2a\x60\x65\x45\ -\xa0\x3e\xb7\x44\x4a\x60\x37\x8b\xec\x63\xa9\xbe\xdd\xc5\x1e\x9d\ -\x21\xb3\x24\x15\xa5\x6e\x44\x50\xdf\x29\x48\x7d\x90\xda\x6c\x8b\ -\xc4\x4f\x06\x00\xd0\xb0\x48\xbf\xa5\x38\x2e\x27\x3b\xda\x11\xaf\ -\xab\x99\x3c\x69\x02\x8c\x21\x2e\xf2\x90\x83\xd9\xcf\x21\xf3\x2c\ -\x4c\x28\x66\x67\x8b\x78\xa5\xf1\xea\x9c\xfe\xcf\x0d\xe0\xa6\x19\ -\xfa\xff\xa1\x45\xb6\xbd\x21\x1b\x10\xac\x42\xd6\x07\xd3\xbe\x3e\ -\x80\xe9\x03\xbb\xab\xe0\x8e\x2b\x68\x7e\xb5\x1f\x7b\x40\x41\xf6\ -\xce\x3e\xcc\xae\x19\x71\x61\x20\x2e\xf6\xe8\x48\x80\x8b\x2a\xec\ -\xa5\x35\x8d\x37\x36\xa8\xac\xd2\xbd\xad\x82\x59\x06\x83\x50\x7f\ -\xb3\x8b\xb8\x8d\xdf\xb9\x9c\x14\x59\x4a\x03\xd9\xe2\xb4\xd6\x27\ -\x78\x92\x16\xb1\xad\x92\xf0\xf4\x22\x6e\xde\x23\xd3\x13\xae\x70\ -\x5c\x9a\x30\x87\xfb\xbe\x3c\x40\x9c\x8c\xe8\x1a\x45\x15\xe2\xbd\ -\x01\xd9\xcb\x11\x57\x2b\xe1\xa1\x80\x5a\x41\xe6\x59\x3a\x1f\x6b\ -\x63\x5f\xe4\xa8\xbe\x56\x42\x43\x30\x3b\x19\x8a\xe3\x0a\xcc\x6e\ -\x8e\x38\x1a\xb1\xbb\x59\xf4\x81\x88\xde\xe3\x71\xfb\xa4\xbc\x41\ -\xbc\xab\xa6\xf1\xf1\x26\xb2\xb3\x10\x2e\xa9\x90\x0c\x34\x28\xda\ -\x89\x84\x3a\x12\xef\xf3\x69\xd4\xdd\x23\x01\x9a\x10\xae\xab\xc9\ -\x4f\x6a\x40\xd1\x0b\x10\xc9\xc6\x21\xbf\x61\x0a\x34\x5b\xc4\xb0\ -\x6e\x84\xfa\x36\x12\xfd\xe9\x1d\x3a\x20\x79\x24\xfc\xaa\xc4\x1e\ -\x99\xe1\xde\xd3\x40\x3d\x54\xff\xd8\xc6\xdc\x56\x63\x0e\x4c\x37\ -\x5f\xb6\xb7\xc4\x87\x22\xe5\xe7\x3b\xd0\x34\x29\x48\x74\x79\x8d\ -\xd9\xd7\x21\x83\x86\x68\xc0\x0c\x0a\x0c\x1a\xe4\x85\x19\x66\x81\ -\xc3\xbd\xa9\xc0\x1e\x9a\x51\x9c\xd4\x40\x17\x07\xea\xb3\x3a\xc8\ -\x74\xc5\x1e\x62\x29\xbf\xd2\xc1\xed\x63\x21\x03\xad\x93\x8a\x08\ -\xda\x1b\x7e\xd9\x94\x64\x64\xae\x8a\xa9\x9a\x19\x12\x10\xa6\xd9\ -\x78\x77\xff\x77\x79\x48\x33\x19\x1c\x19\xde\xba\x2a\xdf\x37\x74\ -\x04\x3e\xa5\x82\xc9\xa0\xf3\xe1\x2e\x66\xb6\x92\xbd\x3e\x47\x0a\ -\xc1\x64\x60\x56\xc4\xd4\x4e\x3e\xa9\xd4\xff\x59\xe2\x5e\x93\x13\ -\xae\xac\x09\x23\x81\x78\x67\x40\x27\x52\xc8\xd6\xee\xeb\x70\x07\ -\x39\xe8\x80\x9d\x21\x54\xff\x55\x26\x3c\x02\x03\xd2\x10\xb2\x97\ -\x66\xc8\x7c\x8b\x99\x67\xe9\x7c\xa4\x8d\xee\x61\xd1\x5a\xc9\xde\ -\xd1\xa0\xfe\x56\x49\x1c\x09\xc4\x91\x54\x99\xf4\x3b\xd5\x45\xd2\ -\x7b\xdd\x4a\xc4\x2f\x3e\xde\xa2\x78\x67\x73\x23\xe1\xdc\x3f\x9a\ -\x01\x50\x19\x1c\x19\x2e\x49\x80\xcf\x6c\x4b\x4c\xc0\x98\xe2\x7f\ -\x13\xd1\x51\xc5\xec\x0e\xe6\xf9\x0e\x93\x29\x52\x01\x83\x92\xaa\ -\x7d\xa6\x0b\xf1\xb6\x90\xe6\x0f\x4f\x33\xd0\x56\x64\x57\x0b\x63\ -\x4a\xf5\x8d\x2e\xe1\xc2\x0a\x7f\xa3\x4f\x79\x7f\x03\xb4\x52\xf5\ -\x31\x7d\x06\xbb\xc0\x22\x2d\xc1\x1e\x96\x41\x13\xfc\x04\xb8\x57\ -\xe6\x74\xff\xa6\x4d\xf6\xd6\x02\x5d\x16\xe9\x7e\xa4\xbd\x8e\xe0\ -\xeb\x33\x00\xbd\xcf\x9a\x54\xdc\xab\x72\x5a\x5f\x1e\xd8\x48\xd9\ -\xc3\xf5\x18\x20\x25\x9e\x2a\x43\xaa\x95\x65\x5b\x93\x00\xb2\x83\ -\x41\x06\x0d\xf6\xe5\x39\x32\xc7\x12\x7f\x1b\x50\x23\xc4\x42\xd2\ -\xf0\xa9\x5c\xd0\x87\x22\xf1\xa1\x88\x8e\x82\x2e\x8d\xf8\xcb\x6b\ -\xc2\xb5\x9e\xce\x29\xe3\x84\xfb\x42\xb2\xe0\x01\xd3\xea\x21\xcf\ -\x7a\x4d\x8d\xa9\xab\x22\xd2\x2f\xb8\x03\x1c\x12\xc1\x1c\x94\x61\ -\x86\x0c\xfa\x70\xc4\xcc\xb7\xf8\xf3\x4a\xc2\x62\xbf\x2e\xfb\x37\ -\x35\xf4\xda\xae\x47\x1c\xa3\xc8\x60\x8f\xa1\x36\x05\x84\x4d\xfa\ -\x7f\xbb\x06\x18\xdb\xa6\xdc\x3f\xd7\x83\x96\xbd\xb2\x46\xd7\x80\ -\x2e\x07\xb3\x47\x86\x3b\x28\x4f\x58\x41\x15\xd4\xbf\xf6\xc4\xe5\ -\x11\xa6\x1b\xcc\x4c\x83\x34\xd3\xac\x22\x77\x74\x8e\x3d\xc0\x92\ -\xbd\xbd\xc0\x4c\x37\xd4\xe7\x56\xa9\x00\x35\x13\x64\x50\xe8\xfb\ -\xe9\x74\xdc\x6b\x72\x54\xc1\x5f\x58\x61\xe6\x5b\xc2\x2d\x9e\x78\ -\x41\x95\x7e\x77\x4d\x8d\x56\x8a\x39\x20\x43\x47\x75\xbd\x80\x44\ -\xef\x7b\x58\xf7\xb3\x0c\xa4\xd6\x34\x7d\x38\xa6\x06\x86\x4d\xa3\ -\xa4\xc7\x0c\xb0\x72\x5b\x8b\x00\xa9\x57\xcc\xde\x8e\x70\x43\x8d\ -\x3d\xc0\xa2\x8f\x90\x6e\x7a\x66\x60\x50\xb0\x87\x67\xc8\x6c\x93\ -\x12\x3b\xbb\x19\xcc\xbe\x16\xd9\xd9\x20\x3b\x0a\xe4\x82\x9d\x67\ -\x09\xb7\x79\xb4\x4c\xe3\xe8\xb4\x4c\xc4\x6b\xff\xc9\x18\x9d\xf7\ -\x4d\x40\x91\xaa\x8d\xea\x4b\x2a\xb2\x37\x15\xc4\x5e\x60\x27\x7b\ -\x4d\x8e\xdd\xcf\xe1\x8e\xcc\xd0\x15\x09\xbf\x48\x9c\x20\x96\xc7\ -\x8a\xf8\xf1\x64\x03\xc8\xa0\x41\x57\xeb\x46\x89\x08\xca\x63\x7f\ -\xb1\xd2\x01\xcb\xb6\x35\xff\x5f\xac\x50\x5f\x59\x91\xbd\xca\x40\ -\xb7\x46\x71\x48\xcc\x61\x15\xe0\x22\x61\xa4\xc6\x1c\x90\x11\x6f\ -\xf0\x54\x67\xd5\xc8\x5e\x10\xaf\xaf\xc8\xf6\xb3\x98\xbd\x0d\xe6\ -\xd0\x0c\x44\x89\xbd\xf1\x44\x74\x15\x5a\xe0\x97\x24\x22\x39\x9b\ -\x54\x42\x76\x74\x4e\x58\x15\xa9\xaf\xa9\x61\x79\xc4\xff\xb4\x82\ -\x01\x43\x75\x76\x45\xb8\x21\x90\xb5\x7a\xe6\x7d\x54\x64\xa6\x20\ -\x99\xa0\x92\xc6\xdd\x9a\x19\x82\x8c\x2b\xf9\x0c\xc1\xc5\x29\x0d\ -\xa0\x49\x8b\x3f\xc3\xc2\x11\x7d\xec\x9b\x96\x19\xd2\x00\xe7\x6d\ -\x6b\x19\xa0\xad\x84\x2b\x94\xf8\x20\xe8\x43\x91\xb0\xb8\x44\xc5\ -\xa3\xdd\x1a\x5d\xe1\x29\xdf\xbb\x1a\x7f\x5e\x87\x70\x59\x1b\x16\ -\xd7\x69\x3a\x49\x09\xf5\x6f\x3c\xf1\x06\x8f\x3d\x34\xc3\xcd\x94\ -\xb5\xa1\x05\xa9\x7b\xd1\x35\x03\x31\x42\x76\x64\x06\x73\x4c\x42\ -\x26\xdf\xce\x60\x8f\x2d\xf0\x77\x04\xa4\x01\xb6\x2f\x52\xf4\x43\ -\x6e\x95\xac\x8c\xb8\x96\xd0\x7c\x73\x03\xf5\x8a\x7d\x5d\x8e\x07\ -\xaa\x65\xc9\x55\x8d\x37\x79\x4c\xc1\xba\xf9\xc7\x1b\x35\x17\xa2\ -\x0f\x6e\x73\x0c\xa0\x53\x38\xf1\x46\xb0\x47\xe5\x74\xff\xaa\x8b\ -\x7b\x21\x64\x2f\x13\x64\x55\x8d\x5c\x57\xc1\xd9\x1d\xdc\x23\x01\ -\x2e\x2b\xc9\x4a\x25\xfc\x77\x17\xae\xae\xe9\x7e\x71\x12\x9d\x54\ -\xba\x7f\xdd\x46\x97\x44\xdc\xb1\xf9\x5a\xd9\xea\x6b\xd6\x8d\xa7\ -\x9d\x63\x52\x8a\x79\x52\x91\xbe\x34\xe4\xda\x5f\x12\x91\x28\x64\ -\x7b\x3b\xe4\x5a\x4f\xd6\x06\xd7\x56\x5a\xfb\x38\xdc\x76\x86\x70\ -\x65\x4d\x76\x64\x8e\xbf\x35\x42\x9f\x40\x65\x12\xc1\x27\x53\xb1\ -\xc9\xa6\xa8\x21\x14\x23\x0f\x1a\x60\xc9\x36\x65\x04\xd2\x8b\xab\ -\x07\x25\x8e\x18\x5a\x9f\xef\x87\xd5\xc0\x1d\x9e\x78\x79\xcd\xe4\ -\x29\x6d\xca\x5f\x7b\xea\x7b\x02\x66\x8d\x92\x0d\x08\x8d\x21\xc1\ -\x04\x4d\xaa\xe3\x7b\x25\x76\x27\x03\x5e\x71\x47\x66\x49\x9f\x67\ -\xbd\xb1\xb6\x21\x49\x81\xec\xc5\x8e\xec\x7d\x0d\x62\x0d\xd5\x57\ -\x3b\xe8\xfd\x11\x1a\x60\xf7\x77\xf8\x7f\x9d\x24\x5b\xa3\x34\xb6\ -\x17\x72\x05\xbd\xc5\x93\x3b\xc1\x0d\x08\x66\x51\xc0\x2c\xf2\x48\ -\x0d\x48\xaa\x48\xd2\x8e\xc2\xfd\x71\x53\x15\x91\x2e\x71\xa4\x81\ -\x84\xdb\x90\x0d\xa8\x88\x17\xa8\xa1\xfe\xf6\x24\xba\xd2\xc2\xd2\ -\x1a\xee\xa9\xf1\x63\x8a\x79\x4b\x0b\xb3\x5b\x13\x5d\x59\x83\xd6\ -\xe8\x15\x15\x76\x55\xc4\x1c\xe4\x90\x52\xf0\xcb\x02\xb2\x52\xa1\ -\x4f\x89\x4b\x23\xd9\xb1\x19\x76\x1f\x4b\x7d\xb5\x27\xdb\xc7\xa2\ -\x13\x4a\xf6\x67\x4d\xea\x8b\x6b\xe2\x3d\x81\x70\x93\xc7\x78\xc5\ -\x1d\x6b\x89\xdf\xef\xd0\x78\x49\x8e\x2e\xf2\xc4\x47\x22\x32\xc7\ -\x20\xa3\x11\x59\xe4\x93\xa1\x39\xaa\xa9\x10\xe5\x7a\x4f\x0d\x34\ -\x5f\x9e\x11\x27\x74\xed\x50\x8c\x8d\x7e\x16\xaa\x0b\x65\x70\x64\ -\x78\xc6\xb6\xe4\x09\x68\x9d\x6e\x72\xf5\xa3\x2e\xf5\xf7\x03\x66\ -\xc2\x93\xbf\xc4\x91\xbd\x2e\xa7\x6e\x38\x64\xa8\x0f\x99\x5e\xa0\ -\x95\xe0\x7f\xbe\x9a\x7c\xc7\x92\x46\xa5\x54\x17\xd7\x54\x3b\x1a\ -\xf4\xfe\x88\x69\x2b\x0c\x0a\x51\xa0\x3e\xbf\xc2\x9d\xdc\x40\x06\ -\x04\xb9\xca\xa3\x95\x52\x5e\xe3\x89\xa3\x31\x41\xd7\xce\x32\xb8\ -\x5d\x0c\x4c\x13\xec\xca\x88\xcb\x84\x6c\x3f\x47\xf7\x87\x25\xb6\ -\x4f\x70\x95\x92\x1b\x30\xbb\x5a\xc2\xd2\x48\x98\x54\xcc\x50\xca\ -\x37\xd4\x83\x42\x78\x77\x33\xb5\xb6\xef\xef\x92\x2a\x60\xa3\x56\ -\x0f\x0f\xb9\x9e\xc3\xb1\x92\x6d\xa4\x32\x58\x9c\xa0\x28\xe1\x16\ -\x8f\xac\x09\x98\x05\x96\xe2\xfd\x4d\xd4\x81\x69\x3a\xb4\x6d\xd0\ -\xc9\x80\x76\x2c\xf6\x05\x36\x65\x06\x57\x47\xea\xbb\x3c\x04\x87\ -\xd9\xdb\x92\x1d\x98\xa1\x4d\xa8\xbe\x53\x92\xfd\x71\x83\xea\x2b\ -\x5d\xec\x1e\x06\xab\x42\x58\x1e\x31\x43\x42\x7c\xb8\x37\xab\xe8\ -\xe5\x19\x7a\xb5\xa7\x38\x22\xc3\x5f\x53\xe3\x5e\x5d\x50\x7f\xbf\ -\x8b\x5f\xa3\xf0\xfa\x82\xac\x09\x7d\xe3\x4a\xb0\xd0\xbe\x27\x90\ -\xbf\xab\x81\xbf\xd6\x63\xff\xbc\x85\xbf\xcb\x23\x39\x94\xdf\x49\ -\x65\xeb\xf8\xb5\x57\xf7\xd9\x4f\x3d\x53\x56\xd6\x6b\xea\xf1\xa9\ -\xd6\xb0\x6b\x80\x83\xb7\x15\x09\x40\x80\xce\x7b\xc6\x71\x3b\x09\ -\x6e\x2f\x47\x76\x52\x83\xe8\xe9\x19\x5b\x69\x36\x9d\x59\x19\x91\ -\x2c\x45\xe0\xc2\x0d\x35\xe1\x4a\x8f\xd9\xc7\x22\x87\xe7\x09\x68\ -\x2a\x2a\x56\x41\xef\x0a\xd8\x96\x50\x7e\xbc\x4d\x7d\x67\x80\xd9\ -\x86\xb0\x32\xd2\x38\xb5\x85\xac\x8a\xb8\xfb\x02\xd9\xee\x8e\xf8\ -\xaf\x93\x64\xef\x6d\xd2\xfe\xfc\x24\xa1\x10\xaa\x71\x25\x04\x68\ -\xce\x14\x86\x3f\xda\x47\xf5\xa6\x82\x70\x51\x89\xef\x37\xc8\xfe\ -\x0e\x3f\x1a\x71\xf7\x06\xe2\xa8\xd2\xbd\xd6\x53\xfc\x73\x3f\xda\ -\x06\x34\xe2\x04\xc2\xb3\x47\xb2\xbc\x76\x6c\xee\xe8\x21\x53\x79\ -\xa6\xab\xb7\x15\x15\x80\x01\x9d\x50\xe2\x92\x90\x4a\xb2\x4f\x6c\ -\xa0\x93\xba\x6e\xac\xec\xd4\x14\x92\x61\x83\xb4\x40\x9a\x82\x3b\ -\x22\x27\x7b\x6f\x03\x77\x78\x8e\x19\x96\x54\xbe\xad\x92\x66\x10\ -\x3d\x12\x91\xd9\x82\xd9\xd9\xe0\xfe\xa2\x45\x6c\x19\xb2\xf7\x37\ -\xa9\xce\xec\x10\xbf\xd8\x21\x5e\x50\x91\x05\x65\xf0\x84\x06\xd9\ -\x6f\x2a\x9a\xbb\x5b\x32\x27\x34\x5a\xd0\x28\x80\x1a\x26\x2f\x2c\ -\x89\x8b\x02\xdd\x47\x94\x78\x70\x46\xf7\xc2\x88\xce\xc8\x89\xf7\ -\x44\xea\x0f\xb7\x31\x17\x56\x70\x43\xc0\xd6\x20\x46\x08\x1b\x47\ -\xfc\x5f\x0d\x6b\x7b\x5b\xb9\x82\x2d\x08\x16\xf6\xd9\x86\xc3\xb4\ -\xd3\x43\x10\xe9\xef\x95\x73\xf5\xdc\x2c\x5d\x6f\xb0\xb0\x06\x25\ -\x4e\x35\x74\x5a\x52\x72\xa6\x91\x10\x42\x30\x3d\x09\x5c\x83\x3d\ -\x3c\x5b\x3b\xb3\xa8\xba\x51\x89\x2b\x05\x7d\x30\x92\xcf\x31\xe4\ -\xf3\x0d\x33\x4e\x6d\xd1\xfd\xe0\x04\x31\x2a\xf1\x05\x19\xcd\x23\ -\x0d\xf9\x1d\x01\x39\xc0\x51\xff\x77\x89\x8f\xd0\xf9\x69\x8d\x19\ -\x9d\xa0\x73\xb3\x47\xcf\xa9\x28\x3e\x34\x48\xf9\xa9\x92\x66\xe9\ -\xe9\xfb\xa3\x82\xee\x8f\x6a\xb2\x5f\x7b\xe2\x3c\x9b\xfa\x09\xec\ -\x46\x69\x1f\xb9\x62\x2a\x24\x02\x70\xf9\xb6\x12\x06\x26\x00\xe3\ -\x4a\xf6\xee\x06\x34\x13\xb1\xc4\x3d\xb6\xd8\x62\x0a\x39\x7c\x6d\ -\x82\xa6\x4f\xd2\xc4\x52\xc7\x5a\xdc\x40\x75\xc9\x9d\xd4\x35\x8a\ -\x0c\x1b\x74\x4c\x29\x4e\xca\x91\xab\x6a\xf2\x23\x1c\xcd\xc3\x73\ -\xda\x7f\x32\x4e\xf3\x8f\x0b\xb2\xb7\x14\x14\x7b\xd9\xd4\x4f\x70\ -\x6c\x4e\x9c\x2e\xf8\x9b\x03\x45\x80\xe9\xfd\x86\xe2\x8e\xc8\xe0\ -\x1f\x64\xb8\x45\x9e\xfa\x13\xab\x69\xfd\x55\x8e\xdd\x3f\xc7\xcd\ -\xb6\x34\x77\xb6\xf0\xd5\x0e\x59\x00\x89\x6c\xac\x72\xf1\xcb\x7f\ -\x27\x3c\xbc\x55\x03\x44\xac\x4f\xd8\x52\xa9\xce\xe9\x22\x40\xfe\ -\xe2\x0c\xb3\xb3\x41\x06\x7a\xd8\x3f\x66\xdd\x91\xe8\x53\x88\xa9\ -\x0b\x8a\x04\xb0\x5d\xed\xe1\x09\x74\x30\xbb\x58\x8a\x55\xa0\x17\ -\x97\x14\xd3\x84\xc6\x5b\x1b\x84\xc3\x1c\x3c\x18\x29\x5b\x82\x6c\ -\x6f\x88\xfb\x39\xcc\xcf\x2a\xe4\xa6\x40\xe3\x97\x35\xf9\x03\x81\ -\xb2\x1d\x29\x0f\x74\x84\xfd\x1d\x93\x67\x76\x61\x40\x68\x7d\xbc\ -\x1f\x33\x94\xaa\x89\xf4\x23\x13\x54\x06\xe4\x7b\xd3\xf0\x15\x48\ -\xf6\xac\xfc\xc2\xb5\x00\x11\x6b\x4b\xc1\x8a\xd3\x5a\xbb\x92\xe6\ -\x03\x6c\xdd\x1a\x20\x4b\x85\x9c\x76\x8e\xc1\xed\xeb\xd6\xde\x7e\ -\x9d\xaa\x93\xda\x80\x70\x95\x47\xbd\x96\x5e\x31\x47\x38\xb7\xc2\ -\x55\x4a\xfc\x72\x97\x7c\x77\x43\xb1\x4f\x6a\x02\x0d\x56\x28\xcf\ -\x29\x59\xf5\xe5\x2e\xe5\x3d\x81\xf6\x8f\x6b\xba\xdf\x2a\x89\xe3\ -\x42\xb1\xa0\x85\x79\x20\x92\x2d\xae\x60\x6f\x8b\xee\x64\x61\x2f\ -\x8b\xbc\xc8\x51\x2f\x0c\xb4\xff\xab\xc4\xce\x31\xc8\x44\x44\x1f\ -\x0a\x54\x57\x79\xa8\x0c\x72\x78\xf6\x6c\x43\x83\x5f\x2f\x3f\xdb\ -\x39\xff\xd1\x12\x60\xeb\x01\x89\x7a\xb4\xd8\x97\x54\x0a\x2d\x22\ -\x84\x7b\x02\xfe\x9c\x2e\xf6\x90\x0c\xf7\x62\x87\x4c\x93\xf5\x8e\ -\x52\x1e\xfd\xb6\xc7\x67\x02\x55\x54\x05\xe9\x25\x67\xc4\x40\x9c\ -\x04\x33\x24\x54\x47\xad\xa2\x79\x90\xc3\x4c\x28\x74\xc0\xdf\x15\ -\x88\xb3\x85\x7a\x0d\xb8\x37\xe6\x4c\x7e\xa9\x83\x19\x10\xe4\x5e\ -\x25\xc3\x90\x9f\xd9\x47\x73\x17\x21\x04\x25\x2c\x89\x48\x06\x76\ -\x61\xc0\xbd\xa9\xc1\x9a\xaf\x4d\x52\x7e\xb3\xa4\x71\x54\x46\xf1\ -\xa5\x01\xc2\x17\x3a\x74\xfe\xbd\x4b\xdf\x4f\xa7\x53\xed\x21\xbd\ -\x41\xda\xb2\xee\x59\x9f\x7a\x7c\xe0\xb1\x20\x51\xbd\x5f\x94\x5b\ -\xa3\xd1\x87\xf6\xda\xb6\x2d\xf8\x0b\x6a\xdc\xf1\x0d\xf2\x97\xe6\ -\xc9\xa8\x43\x92\xf5\xf7\xa8\x36\x9c\x27\x23\xfe\x94\xf8\x5f\x9b\ -\xca\xcf\x04\xbd\xcb\xd3\x3d\xb3\x8b\xf9\xd3\x26\xf1\x80\x8c\xfa\ -\x91\xc8\xe4\xcf\x2b\x82\x2a\xb1\x84\x70\xbf\xc7\x1a\xe8\x7b\x71\ -\x46\x5e\x08\xf9\x76\x82\x27\x30\x71\xea\x38\x4b\x5f\xbd\x86\xd5\ -\x67\x75\xe1\x45\x19\x32\xcd\x20\xd7\x07\xe2\x9b\xc6\x69\xed\x9f\ -\x31\xed\xe2\xe9\x30\x2c\xf8\x1b\x6a\xaa\x5f\x55\xf4\x7d\xac\x49\ -\xfd\xae\x35\x58\xd7\x43\x2b\xab\xf4\x51\xcf\xb7\x41\x0e\x28\xa7\ -\x88\xbf\xbe\x17\x30\xb5\xce\x01\x4e\xde\xaa\xe8\x1f\x21\x4a\xcf\ -\xc4\x8f\x06\xfb\x82\xd4\xd8\x11\xc7\x14\x1d\xa6\x07\x24\xdc\x03\ -\x85\x7e\x0a\xd7\x27\xa5\x63\x53\x62\xd5\x2a\x84\x8b\x4a\xf4\xd2\ -\x8a\xfc\x5d\x4d\xe4\x75\x19\x9d\x77\x4d\x10\x1e\x0e\xd8\x2a\x62\ -\xe7\x5b\xc2\x43\x81\x18\xa0\xef\x97\xd3\xa9\xfe\xbd\x4b\xe7\xa7\ -\x15\x8d\x17\x39\x8a\x1f\x0e\xd2\xe8\x13\x62\x4b\xf0\xcb\x22\xfe\ -\x67\x15\xed\x37\xad\xc1\xb4\x84\xe6\xb7\x07\xe1\x1b\x1d\xe4\x2e\ -\x4f\xfd\x9f\x5d\xdc\x3f\xf5\x61\xe7\x5a\xf4\xb8\x82\xee\xf7\x2a\ -\xc2\x8a\x88\xfd\xe0\x04\xd9\x17\xfa\x53\x13\xa9\xac\xd3\x08\xba\ -\xe1\xa1\xc8\xe7\x3c\xca\x2b\xfe\x9d\xf5\xad\xad\x4e\x03\x18\x7a\ -\xf9\x5a\x21\xdc\xe8\xf1\xbf\xaa\x53\x0c\x7e\x48\x10\x7a\x4d\x17\ -\x3c\xcd\xbe\x7c\x4d\x10\x33\xf1\x56\x4f\xf1\x8e\x06\xcd\x77\x36\ -\xc8\xae\xab\x29\x3f\xd0\x26\x7f\x5b\x03\x1c\x84\xd5\x10\x07\x04\ -\x77\x72\x0b\xb3\x8f\xa5\xbc\x35\xe0\x3e\xdd\x47\x76\x42\x41\xfe\ -\xd3\x69\xf8\x8e\x52\xad\x8e\xd4\x3f\xad\x60\x85\x92\xfd\x61\x4e\ -\xeb\xc6\x19\xe4\x5f\xe9\x67\xf2\xf4\x09\xba\xcb\x23\x2c\x70\x88\ -\x03\xff\xfe\x09\xca\x77\x8c\x21\x03\x06\xf5\x91\x50\x43\xfc\x51\ -\x09\xe7\x96\x18\x9b\x02\x5b\xeb\x4b\xbb\x0d\xac\x6f\x3d\xa9\xa4\ -\x1b\x1c\x19\x1e\xdd\xaa\xc2\xc2\xbd\x9a\x67\xed\x0a\x71\x19\xf8\ -\x5f\x55\xb8\x43\x2d\x66\x28\x05\x7b\x9e\xb6\x2d\x15\x01\x49\xb7\ -\x4e\x7c\xba\x41\xc6\x40\xfd\xf9\x49\xba\x77\x0b\xf5\x45\x35\xb6\ -\xeb\x69\xbd\xbd\xc0\x5f\xeb\xa9\x05\x5a\xd7\x0f\x51\xfd\xb8\x24\ -\xdc\xe6\xf1\x17\x57\xf4\x7d\x65\x80\xf0\xcb\x1a\x7f\x6e\x49\xfe\ -\xee\x26\xfe\x8a\x8a\xb8\x34\x12\x47\x02\xb2\x9d\xc1\x1d\xe4\xb0\ -\xb3\x0d\xfa\xd5\x2e\xf9\x4b\x33\xe2\xdd\x81\x38\xa6\xb8\x63\x72\ -\xda\x9f\x99\x44\x15\x9a\xdb\x1b\xc2\xb8\x52\x9c\x3b\x0d\x3f\xc7\ -\xa4\x01\xda\x92\xa0\x6c\xf5\x89\xbb\x3c\x56\x8e\xcd\x1d\x1d\x7e\ -\x32\x09\x00\x70\xf6\x56\x17\xf8\x51\x20\x13\xda\xc7\xad\x46\x9c\ -\x60\xf6\x75\x84\xfb\xc3\x33\x6b\x87\x99\xea\xd2\x8a\x49\x7b\xf8\ -\x5c\xe8\xde\xa7\x74\x27\x1d\xf5\x42\x65\xf0\xd6\x21\xb2\xc3\x1b\ -\xc8\x51\x39\xc5\x4f\xa6\x91\xff\xdf\x7e\xd6\x3c\x6f\x25\xe5\x19\ -\x93\xd8\xdd\x2c\x8d\x53\x5a\xb4\x8f\x5d\x43\x79\x46\x07\xb3\xbb\ -\xa5\xfb\x77\x6d\xca\xb3\xba\xd4\x3f\xaf\x70\xbb\x19\xa4\x4f\xb0\ -\xb3\x4d\x1a\x80\xfd\xbe\x26\xf5\xed\x01\x77\x52\x03\x3b\x98\x3a\ -\x85\xf2\x3d\x1c\xcd\x93\x9b\xc4\xdf\x46\x74\x99\x52\xff\xb4\x42\ -\x1e\x8e\xa9\x6c\x50\x79\x32\xe2\x3f\x2e\x6d\xb7\x8e\x81\x11\x1b\ -\xb8\xb1\x5a\x2a\x93\xef\x6c\x23\xb3\x1d\xf9\x9f\x35\x31\xbb\x80\ -\x4c\x53\xc4\xa5\x68\xde\xd3\xa2\xbf\x2a\x32\xa6\x84\x8e\xa2\xfd\ -\x96\xb8\x48\xf0\x3f\x57\xc2\x3d\x4a\x71\x82\xa5\x73\xf2\x4a\x5a\ -\xc7\xe7\xe8\x9d\x35\xfe\x26\x8f\x8f\xa0\xb3\x1c\xc5\x3b\x12\x14\ -\x3d\x51\xa8\xcf\x98\x44\x2a\x68\x7c\xb4\x8f\xb0\x24\x50\x9e\xdb\ -\xa5\xf1\xa1\x16\xf9\x6b\x7a\x03\xae\xcb\xd4\xbb\x18\x51\x64\x12\ -\xf4\x92\x1a\xb9\xae\x46\x2a\xf0\xa3\x91\xea\xb2\x9a\x62\x6f\x47\ -\x6c\x09\xe5\x6f\x6a\xec\x5f\x34\x71\x27\x34\xd0\xc1\x29\xee\x7c\ -\x42\x75\xb6\xe1\x81\x11\x63\x73\x47\x57\x00\x3f\xdb\x6a\x6c\x00\ -\x11\x30\x42\xf1\xc1\x9c\xb8\xb8\x44\x27\x15\x1d\x17\x28\x21\xdc\ -\x92\x10\xa5\xd5\xeb\x06\x55\xc1\x94\xbf\xaf\x41\x88\x03\x82\x6c\ -\x67\x91\x18\x89\xb7\x74\x09\x37\x8d\x13\xae\x5b\x43\xf9\xee\x15\ -\x14\xc7\x64\x54\x9d\x08\x7f\xd9\x47\x3d\xd3\x90\xbd\xb1\x81\x9b\ -\x8c\x34\x1e\x89\xc8\x7f\x97\x08\x68\x92\xb5\x00\x00\x17\x89\x49\ -\x44\x41\x54\x98\x3b\x3c\x5a\x2b\x61\x7b\x4b\xfb\x5b\x15\x93\xdf\ -\xec\x92\x7d\xa8\x95\x86\x59\xf4\x1b\x7c\x14\xea\x0c\x6a\x0b\xde\ -\x1a\xea\x01\x21\x1c\x57\x10\xfe\x79\x00\xbf\x8b\x83\xa3\x1a\xd8\ -\xbd\x72\x74\x4c\x71\xc3\x86\x6c\xdf\x8c\xfa\xd3\x1d\xe2\x65\x01\ -\x71\xe6\x77\xa2\x84\x8f\x2a\x24\xfd\xd9\xd8\xdc\xd1\x15\x8f\x1e\ -\x18\x61\x1f\xc7\x06\x00\xb8\x1d\x78\xdf\x56\xc1\x01\x56\x08\xbf\ -\xaa\xd1\xab\x3c\xe1\xaa\x1a\x06\x52\xcf\x9e\xdd\x53\x30\x3b\xdb\ -\xb5\x43\xa3\xa7\x8c\xc1\x27\xb6\xfe\x75\x6d\x35\x91\x06\x12\x7c\ -\xcc\x4c\x4b\xb8\xb2\xc6\x5f\x54\x62\x66\x0a\x8d\xb7\x34\xa8\x2f\ -\xab\xf0\xd7\xd6\xf8\x9f\x55\x34\xfe\xb6\x0f\x5d\x12\x68\xbc\xa5\ -\x49\xf5\xaf\x93\xe8\xa8\xe2\x1f\x89\x34\xbf\x3b\x8d\xfa\xe7\x35\ -\xba\x26\x52\xbc\xbb\x45\xf1\x81\x06\x74\xd7\x1f\x4d\x23\xeb\x45\ -\x24\x7b\xf9\xff\x0a\xf4\x90\x0c\x3b\x6c\xb1\x99\x10\xae\x28\x09\ -\x0b\x7d\x6a\xed\xed\x42\x7d\x7e\x89\xad\x04\x7b\x54\x96\x06\x62\ -\x4f\x79\x35\xeb\xb6\xf5\x96\xe2\xb4\xd6\xc3\xe5\x67\x3b\x4f\xc9\ -\xdd\x65\x70\x64\xf8\x3a\xe0\xc0\x2d\x9e\x01\x0c\xe8\xad\x1e\x7f\ -\xfa\x04\xf2\xfa\x9c\x50\x18\xb2\xe3\x1a\x48\x15\x60\xd8\x20\x45\ -\x4a\xfc\x3c\xd9\x5c\xa0\xdf\x89\xaf\x18\xd2\x04\x92\xc9\x48\xe7\ -\xa4\x71\xc2\x75\x1e\xd9\xd5\xd0\x3a\x6b\x80\xfa\x53\x1d\xfc\x95\ -\x35\x2a\x90\x9d\xd8\xa0\xfe\x61\x89\x08\x98\x1a\xec\x1a\xc5\x1c\ -\xe8\x52\x60\xa8\x29\x84\x87\x23\x66\x27\x4b\xdf\xe5\xd3\x90\xc8\ -\x3a\x94\xb0\x27\x40\x14\x15\x3f\xf5\x0c\x09\x01\xdd\x75\x03\xfe\ -\x97\x35\xe5\x07\x27\xb0\x2d\xc1\x57\x09\x43\xa0\xf1\xf1\x3e\xea\ -\xe3\x1b\x3d\x8c\xa1\xb5\x9f\x75\xfd\xd8\xdc\xd1\x83\x9e\xe0\x78\ -\x9e\x70\x7d\x7c\x6b\x51\x03\xf5\xd7\x3a\x98\x00\xe1\x5b\x65\x42\ -\xf7\xba\xcf\xa7\x56\xae\x35\xa9\x39\x53\x6c\x0f\x84\x41\x59\xdb\ -\x81\x33\x25\x3e\x35\xf6\xec\x08\x15\x34\x0a\xf5\x05\x35\xfe\xba\ -\x9a\xf6\x2b\xd7\xa4\xe2\xcd\x96\x50\x9c\xd4\xa4\xfb\x91\x36\xf5\ -\x2f\x2a\xb4\xab\x88\x42\xfd\xad\x2e\x2c\x8b\xb8\x7d\x1d\x3a\xd3\ -\xe0\x2d\x94\xd7\xd4\xc4\x08\x71\x69\x80\xa8\xe4\xef\x2e\xd6\xfa\ -\xf0\x92\xcb\x93\x4e\x30\x57\x97\xa4\xbb\x8a\x12\x62\x24\xe4\x82\ -\x3b\x26\xa3\xef\xb6\x19\x34\x7f\x39\x9d\xd6\x3b\x1a\xd8\x3a\xed\ -\x49\xe4\x31\x2e\xe1\xc7\x9f\x4a\x68\xfb\xf1\xa4\xc0\x62\x60\x8f\ -\x2d\x31\xfc\xbb\x76\xda\x97\x2a\x7a\xa5\xa7\x3a\x61\x8c\xb8\xa3\ -\x41\xde\x50\x50\x9c\xd6\x42\x1e\xf0\x44\x11\xcc\x0e\xa9\xfa\x56\ -\x8c\x24\x75\x60\x58\x1b\x17\x50\xd1\x74\xea\x22\x68\x47\x90\x3e\ -\x8b\x8e\xd6\x94\x67\xb6\x09\x57\x54\xc4\xbb\x7b\x05\xfb\x91\x34\ -\x66\xc3\x93\xa6\x94\x0d\x1a\xa8\x15\xbb\xaf\xa3\xba\xae\xee\xcd\ -\x32\x4a\x04\x4e\x2a\x47\xb1\x73\x84\xfe\x9b\x87\xd0\xa7\xd3\xfd\ -\xbb\x9e\x28\x32\x9a\x08\x6d\x62\xaf\x24\x7d\x42\x61\x65\x84\x99\ -\x86\xee\x0c\xb3\x3e\x61\xef\x1a\x9b\x3b\xba\xe7\x93\x08\xc8\x27\ -\x24\x3e\xc0\xf1\x5b\xac\xf7\x67\x04\xa2\x12\x1f\x51\x3a\xff\xd0\ -\x46\x87\x84\xec\xad\x45\x42\xe7\x28\x0c\x66\x57\x4b\x7c\x30\xa2\ -\x75\xaf\x4c\x6c\xaa\x6b\x58\x53\xd0\x48\xa4\xe7\x56\x2d\x09\xd0\ -\x10\xea\x1f\x56\xe8\xa8\xd2\xfd\x64\x87\x78\x95\x27\x2e\x8e\x6b\ -\x27\x95\xd1\x83\x7e\x23\x4a\x6a\x24\xad\x14\x9b\x0b\xe1\xe6\x1a\ -\x69\xf4\x06\x4f\x15\x36\xb9\xa3\xbd\xfa\x83\xfc\x5d\xcd\xd4\x6c\ -\x2a\x4f\x23\x10\x21\xeb\xf8\x20\x20\x04\x04\x2f\x69\x1e\x52\x98\ -\x26\x84\xf9\x96\x30\xf0\x98\x68\xd0\xf1\x4f\x36\x42\x7e\x83\xe1\ -\xaf\xc1\x91\xe1\x0b\x81\x57\x6c\x51\x02\xa0\xa7\xff\x74\x79\xa4\ -\x3c\xb3\x8b\x4e\x2a\xce\x29\xd5\xd5\x9e\xc6\x67\xa7\x63\xf6\x31\ -\xf8\x9f\x77\x41\x95\xec\xc8\x3c\x4d\x07\x33\xa4\x40\xcc\x70\x02\ -\x81\x24\x2a\x71\xa5\xa2\x93\x20\x03\x8e\xb0\x30\xa4\x5a\xbe\x73\ -\x27\x93\x3b\x67\x7a\x07\x3d\x55\x63\xe0\x80\x86\x20\xd3\x05\xf3\ -\x90\xa6\xac\x63\x57\x89\x99\x26\xad\xe2\x1d\xd2\x02\xfa\x22\xba\ -\x2c\x32\x70\xc5\x74\xec\xf6\x26\x0d\xbb\x32\x4f\x5d\x00\xac\xff\ -\x83\xac\xdf\xea\x1b\xd6\xd9\x8f\x71\x1d\xe2\xe8\x45\x63\x73\x47\ -\x8f\x79\xb2\xcf\x74\x1b\x20\x3e\xc0\x49\x6c\x41\xcd\x23\xd2\x6b\ -\x80\x32\x4e\xf1\xb7\x7b\xcc\xee\x96\xea\x07\x35\xd9\xdf\xf5\xc3\ -\xc2\x09\xe2\x03\x91\xb0\xa8\xa6\xfc\x6a\x97\x81\xf3\x07\x60\x59\ -\x44\x66\x99\x54\xde\xf5\x9b\x7a\xed\x54\x71\xfa\x05\x1d\xce\x40\ -\x1d\xe5\x19\x1d\x30\x35\xf1\xdc\x2e\xb9\xe9\xf5\x6a\xc6\x5e\xa3\ -\x69\x5f\x92\x16\x71\x8d\x12\xa2\xc2\x52\x85\x19\x82\xae\x4a\xb3\ -\x04\xf2\xbd\x2d\x61\x71\xc0\xab\xc7\xee\x68\x09\x4b\x14\x33\xcf\ -\xc2\x3c\x47\xa8\x52\xd3\xa7\x3c\x3d\x01\xf0\xf8\x3f\xd8\xc7\x76\ -\x98\x03\x27\x0d\x8e\x0c\xf3\x64\xd3\xc3\x9f\x94\xf7\x7a\x71\x81\ -\xa5\xc0\x19\x5b\x90\xfa\x4f\xbb\xaa\xc1\x1d\xe2\x40\x23\x76\xae\ -\x12\xae\xe8\x60\x8f\x71\xe0\x23\x66\x37\x8b\x9d\xef\x60\x5c\x91\ -\x19\xbd\xe3\xaa\xc1\xbe\xd8\x61\xf7\x70\xd4\x57\xd4\x94\xff\xd4\ -\x21\xfe\x36\x10\x1f\x89\x84\x45\x81\xfa\x82\x0a\x5c\xaa\x27\x30\ -\xad\xa4\xcb\x63\xa5\xd8\x5d\x2c\x71\x55\x32\xf6\x24\x24\xa3\xd1\ -\xcc\x32\x34\x3f\xd3\x8f\x7b\x9e\x25\x2e\x0c\xa9\x88\xb7\x10\xa4\ -\xdf\x20\xc3\x82\xdd\xcf\xa6\xf0\xa4\x61\x53\x4e\x29\x3f\x63\x6c\ -\xee\xe8\xd2\x27\x23\xfe\x06\x19\x60\x4a\x0a\x8c\xcd\x1d\x3d\x15\ -\x58\xc1\x96\x32\x1c\xa5\x57\xb7\xe7\x6f\xf0\xb8\x07\x22\xad\xd7\ -\x64\x14\x07\x5b\xec\x1c\x88\xf7\x79\xea\x6f\x97\xc8\x1c\x03\x79\ -\xf2\xe9\x69\x0a\xf5\x7f\x96\xd4\xdf\x2c\x19\x7f\xe9\x6a\xea\x0b\ -\x6a\xc2\x8d\x9e\x78\x7d\x45\xf5\xf5\x2e\xf1\x5e\x9f\x3a\x75\x03\ -\x98\x1d\x53\xdc\x3d\x7f\x43\x13\xb3\xb3\x23\x8c\x44\x98\x66\x08\ -\x2b\x15\xbb\xbd\xc5\x0c\x0a\x71\x24\xe0\xbf\x9f\x10\x43\x34\x13\ -\xf2\x3f\xc8\x10\x2f\x84\x25\x1e\x42\x02\xa3\xd8\x84\x33\x87\xb4\ -\x17\xed\x3b\xf5\xc9\x74\xff\x53\xb6\x01\xd6\x53\x05\xfb\x01\xb7\ -\x6c\x09\x32\x40\x34\x41\xb8\xb5\xdf\x36\xc6\xc0\xbf\xf5\x61\x07\ -\x85\xce\x8f\xaa\x54\x8a\x7d\x17\x34\x4e\x6b\x26\x2c\xbf\xef\x74\ -\xc9\x5e\x9d\x53\x9f\x5b\x61\xf6\x34\xf8\x5f\xd6\xd8\x03\x1d\x54\ -\x90\xef\x67\xf1\xd6\x10\x57\x0b\x93\xef\x9a\x80\x2a\x60\x06\x14\ -\x53\x42\xb1\x4b\x46\x0c\x11\x3b\x64\x08\xbf\x0d\xe0\x49\x33\x09\ -\x55\xb1\x3b\x1a\xdc\x11\x19\xe5\x77\xba\x34\x4f\x6b\x51\x5f\x91\ -\xe0\x65\x74\x81\xa3\xfa\x65\x05\x16\x8a\x7f\xe9\x4f\x33\x8b\x7a\ -\xf1\xfb\x4d\xd0\xfb\xbf\x3f\x70\xeb\x86\x6e\xff\x53\x92\x00\xeb\ -\xa9\x82\x5b\x81\x2f\x6c\x29\x09\x20\x7f\x49\x8d\x3b\xd8\x51\x5d\ -\x54\x53\x5f\xeb\x09\x39\x90\x59\xdc\x4b\x73\xea\xdf\xd4\x70\x43\ -\x8d\x7b\x75\x6a\xee\xcc\xfe\xb8\xa0\x3e\xaf\x42\xb6\x33\xe8\x8a\ -\x88\x99\x25\xf8\xef\x95\xd4\xff\xd6\xa1\xfc\x87\xce\xba\x5c\x7b\ -\x5b\xc9\x8f\xc9\x89\xa3\x20\x13\x16\x7f\x7b\xa4\xf8\xeb\x01\xcc\ -\x9c\x0c\xac\xc1\x6c\x27\xd8\x7d\x1d\xe1\xd6\x80\x9d\x6f\xd1\x96\ -\x90\x9f\xd8\xc0\xec\x6a\x50\xd3\x83\x99\xc9\x7a\x65\xe5\x4f\xeb\ -\x0a\x3e\xad\xf5\x85\xb1\xb9\xa3\x4f\x89\xf8\x4f\x99\x01\xd6\x53\ -\x05\x1f\x00\x1e\xda\xec\xa9\x0f\x54\x3f\xec\xa6\x8a\x9f\xb6\x52\ -\xb5\x41\x8e\x6a\x60\xf6\x6c\xa0\x13\x82\xa8\xe2\x76\xb5\x08\x10\ -\xef\x0f\xd4\xe7\x95\x14\x1f\x68\x92\x1d\x9b\x53\xbc\xbf\x89\x7d\ -\x9e\x23\x9b\x67\x53\xb1\xc7\xd2\x80\xf4\xf5\x9a\x45\xfa\x20\xdc\ -\xee\xb1\x73\x0c\xd9\xab\x72\xb2\xc3\x72\xaa\x7f\x9a\xa4\xf8\x70\ -\x0b\xb3\x8b\xc1\x6d\x67\xd1\xa5\x81\xe2\x84\x06\x52\x41\xf8\x45\ -\x85\xde\xea\xb1\xb1\x07\x22\xe1\xd3\xa4\x92\x70\xbd\x5f\xe7\xd2\ -\x6d\x5c\x35\xf0\xd0\xd8\xdc\xd1\x0f\x3c\x15\xd1\xff\xb4\x19\x60\ -\x6c\xee\xe8\x94\x2a\x58\xb0\x59\x92\xbd\x17\xd3\x5f\x1b\x20\x69\ -\x0a\x71\x51\x20\x5c\xe3\x93\xb1\x97\x5b\xec\xfe\x0e\x77\x68\x86\ -\x99\xef\xd2\x9c\xe1\x01\xc1\x64\x42\xd6\x12\xb2\xe9\x06\xff\xd1\ -\x36\x7a\xa3\x67\xec\x88\xd5\xb4\xcf\xe9\xa6\x94\x9c\x0a\xac\x51\ -\x88\x06\x77\x42\x83\x50\x2b\xdd\xc5\x15\x61\x71\x9d\x9a\x8c\x57\ -\xd4\x74\xff\x71\x1c\x77\x58\x46\x5c\x16\x88\xbf\x0d\x94\x5f\xeb\ -\xa0\x19\x98\x61\x43\xfd\xb3\x0a\x0a\x41\xae\xa8\x90\x32\xa9\x27\ -\x5d\x0a\x74\x05\xa9\x15\xb3\x71\x25\xc0\x82\x0d\x59\xfd\xcf\x98\ -\x01\xd6\x63\x84\x65\xc0\x5b\x37\x47\xf3\xdf\x78\xc5\x38\xa1\xfa\ -\xb3\x71\xb8\x31\x60\xd6\x44\x6c\x2e\x48\x01\x93\xc7\xaf\x46\x86\ -\x15\x7f\x79\x0d\x19\x84\x9b\x02\x3a\xa9\x84\xbb\x3c\x7a\x6b\xc0\ -\xb5\x20\x9f\x6f\xf1\xdf\xec\x62\xfb\x84\xea\xfe\x88\x97\x14\xc1\ -\xd3\x08\xf9\x89\x4d\xca\x2f\x76\x89\xf7\x47\xd8\x51\xa8\x17\x57\ -\x30\x16\x29\xf6\xcb\x69\xfc\x49\x0b\xbf\x3c\xe0\x0e\xcf\xc1\x80\ -\xd9\xcb\x51\xdd\x13\xf0\x23\xc9\x0d\x95\x1a\x9a\x07\x59\x5c\x4b\ -\x90\x19\x06\xff\x9b\x1e\x40\x94\x23\x15\x15\x6c\x9c\xf5\xd6\x1e\ -\x6d\x9e\x6e\xaa\xe4\x69\x11\x7f\xea\xfb\x0f\x80\x7f\xdb\xac\x7c\ -\x3f\x03\x9a\x41\xf9\x91\x09\xa4\xdf\x60\x0f\x71\x98\xfb\x95\xfc\ -\x94\x26\xfe\xac\x2e\xf9\x1b\x33\x74\x75\x00\x02\xe1\x97\x15\xb2\ -\xbd\xc0\xca\x88\x99\x66\x70\x47\x66\x94\x1f\x6e\x13\xee\x0b\xd4\ -\x97\xd6\xc4\x6e\xaf\xe2\xc7\x09\x14\x50\xbc\xab\x49\xb8\x35\x45\ -\xf5\x62\x0e\xba\x2c\xe2\x8e\x2a\xf0\xcb\x3d\x6a\xa1\xfc\x7a\x87\ -\xfa\xe7\x25\xe1\x0a\x8f\xa8\x50\x9e\x5f\x92\x1d\x9c\xe1\x7f\x1b\ -\xc9\x5e\x94\xe1\x6f\xaa\x31\x77\x04\x32\x07\xce\x28\xe2\x15\xff\ -\x9b\x0a\x55\x21\x6e\x1c\x3f\xf0\xdf\x7a\x34\x79\x5a\xb7\xff\x19\ -\x49\x80\xf5\x98\xe1\xcf\xd9\x5c\x7a\x0a\x7b\x75\xfd\xe5\xe7\x3a\ -\x84\xab\x6a\xf2\xa3\x33\xe2\xd7\xbb\x98\x19\x42\xf5\x9a\xd5\x70\ -\x5f\xc0\x9f\xd1\x41\x1e\xa8\xc8\xe6\x43\xe3\xf4\x06\x7a\x95\xa7\ -\xfb\xa1\x36\xb1\xad\x84\x71\x45\xbd\x50\xfd\xc6\xe3\x57\x2a\x2a\ -\x60\x8a\xd4\x18\xea\x5e\x99\x53\xfe\xa8\x8b\x3e\xac\x68\xa5\x64\ -\x47\x66\xc4\x52\xf1\xf7\x78\xcc\x5e\x19\x61\xa1\xc7\x3f\xe8\x61\ -\xba\x60\x5e\xe2\x88\xa2\x64\x7b\x3b\x74\x55\xc4\xcc\x11\xea\x4b\ -\x2b\x8c\x13\x4c\x4c\x51\xe0\x7c\x8e\xc5\x34\x95\xee\xff\x99\x80\ -\x7e\xbb\x31\x8c\xc0\xab\x7b\xb4\x78\x16\x16\xd3\x33\x58\x53\xba\ -\x66\x70\x64\xf8\x76\x7e\x0f\x63\x67\x34\xe8\xda\xe4\x8a\x34\x84\ -\xfa\xcb\x1d\xea\xb3\xbb\xd8\x12\x4c\x50\xb2\xb9\x36\x11\xf0\xd5\ -\x39\xf5\xcf\x4b\xec\x61\x19\xf5\x2a\x05\x07\xd9\x41\x39\xd5\xe7\ -\x26\xd1\xfd\x1d\xfe\xbc\x12\x7c\xaf\x39\x84\x14\xb6\x55\x03\x36\ -\x0a\xfa\xc2\x8c\xb8\xd4\xe0\x5e\xdd\xa4\xfe\xe6\x38\x6e\x7a\x44\ -\xc7\x22\xb1\x0b\x76\xd8\x50\xec\x95\x41\x80\xb0\x3a\x90\xfd\x65\ -\x8b\x6c\x02\xba\x1f\x99\x20\x06\x85\xf9\x06\x59\xae\x18\x23\x50\ -\x2a\x7d\x51\xa9\xca\x14\xb7\xaf\x0b\xa1\x5c\x11\x29\xfe\xbe\x3f\ -\x61\x01\xfb\xf8\xa4\x99\xc0\x27\x59\x0b\xc7\xe6\x8e\xee\xfb\x74\ -\xf5\xfe\x46\x61\x80\xf5\xe2\x03\x05\x70\x3f\xa9\xdc\xe8\x39\x15\ -\xfb\x1a\x15\x5d\xae\x54\x67\x76\xf0\xdf\xe8\xd2\x38\x36\x47\x6f\ -\xa8\xc9\x5f\x9d\x53\xff\x57\x49\xdf\xf9\xd3\x53\x27\xf0\x3d\x01\ -\xc9\x25\x35\x6e\x9c\xd5\x4d\x33\x03\xef\x0e\x54\x0f\x28\x4c\x37\ -\x09\x97\xf7\x79\x96\xf0\x60\x40\xc7\x14\x72\xc8\x9a\x42\xd8\x35\ -\xc3\xcc\x6b\x10\x1e\x54\xe2\xf5\x1d\xf2\x9d\x15\x9d\x26\xf8\xa5\ -\x11\x37\xd3\xc0\x9d\x81\xc6\x9f\xb6\xd0\x69\x42\xf7\xeb\x93\xe4\ -\x11\xa4\x00\x99\x67\x29\xaf\xa9\xc9\xe6\x39\xec\x6c\x41\xef\x08\ -\x64\x13\x11\x77\x58\x46\x79\x7d\xc4\xcf\x82\xee\x3d\x01\x1d\x14\ -\xfa\xaf\x9a\x81\xb4\x64\x6d\xe3\xca\xd3\x58\xcb\x81\x9d\x49\x75\ -\xfe\x3c\xe7\x12\x60\x3d\x26\x10\x60\x1a\x70\x37\x30\xfc\x5c\x88\ -\xfb\xa9\xb4\x68\x5c\x16\xe9\xfe\xd5\x04\xf1\x4a\xcf\xc0\xdb\x0a\ -\x74\xd0\x60\xda\x91\x70\x57\xc0\x1c\xec\x30\xfd\x06\x37\x0d\xc2\ -\x15\x35\xfe\xd2\x1a\xd9\xd5\x60\x9e\xef\x28\xbf\x53\x42\x2e\x44\ -\x2b\xc8\x7c\x4b\xb8\xbf\x57\xa4\xb1\x34\xe0\x8e\x2f\xd0\x85\x01\ -\x33\x12\xa8\x57\x09\xda\xc8\x31\xcf\xcf\x89\xd7\x4d\xe2\xb2\x00\ -\xa2\x78\xc0\x3d\xcf\x21\xb7\x04\xcc\x76\x06\x73\x80\xc3\xbe\xbd\ -\xc0\x2e\x0c\x70\x9b\x27\xce\x10\xba\xe7\x74\x31\xd3\x04\x57\x08\ -\xba\x2c\x92\x99\x14\x26\x16\x07\x55\x10\x38\xd0\xd2\xbd\xc1\xd3\ -\xf8\x5c\x3f\xd9\x6b\x8b\x75\xb3\x03\x9f\xda\x1a\x05\x76\x07\xd6\ -\x8c\xcd\x1d\x7d\x56\x56\xa4\xd9\x38\x77\x91\xd5\xc0\xdc\xde\x83\ -\x6d\x84\x64\xce\x7a\x5f\x41\x91\xd8\x7b\x1d\x15\x7a\x3d\xf2\xf1\ -\x92\x40\xf7\x7d\x13\x38\x03\xad\x77\x16\xc4\x85\x9e\xfa\x0b\x93\ -\x70\x7c\x41\x68\x91\x74\xf3\x9a\x88\xcf\x81\x3f\x6d\x12\x76\x34\ -\x74\x6f\x0f\x4c\x5e\xe7\xd1\xe7\x5b\xc2\x7c\x43\xb7\x03\x7e\xbf\ -\x1c\x3f\x2c\xc4\x87\x63\x52\x25\xdf\x2e\x53\xfb\xd8\xca\x04\xe0\ -\x28\xb6\x46\x7f\x3b\x01\x36\x10\xe7\x08\x6a\x85\xc6\xae\x05\x8d\ -\x93\xfa\xd0\x17\x64\xc4\x9d\x2c\xe1\xda\x48\xfc\x5c\xc5\xc4\xa7\ -\xbb\x84\xe7\x39\xfc\x45\x35\xad\x83\x32\xf2\x35\x0a\xcb\x22\x03\ -\xff\xda\x8f\xec\x64\x52\x84\xfa\xf0\x0c\x53\x28\xb2\x30\xd0\xd8\ -\xcd\x12\xcf\xea\x60\x5b\x60\x23\x69\xaf\x1b\x8e\x0f\x8f\xf6\xce\ -\x7a\xf5\xc6\x08\x26\x6f\x34\x2f\xb4\xa7\x0e\xa6\x03\x8b\x9f\xad\ -\x3a\x98\x3a\x84\x29\x24\x14\xed\xa5\x3a\xc5\x40\x9c\x80\xfa\x47\ -\x35\xdd\x8f\xb5\x31\x33\x14\xa9\xa1\x75\x7c\x41\xe3\xb5\x39\xe5\ -\xaf\x3d\xe5\x4f\x4a\xc2\xc3\x91\xbe\x4f\xf6\xa3\x97\x55\x98\xc3\ -\x73\xba\xdf\xee\x12\xee\x0e\x48\x13\xf4\x41\x25\xf4\xa7\x74\xaf\ -\x79\x59\x0b\x33\x4f\xf0\x17\x74\x09\x37\x7b\x4c\x43\x88\x53\x51\ -\xba\xda\x60\x76\x37\x09\xd1\xbb\x91\x5c\x4c\x04\xa4\x2b\x88\x35\ -\xe8\x90\xe0\xfe\xb8\x40\x57\x2a\xe1\xbc\x0a\xb7\xbd\x25\x0e\x0b\ -\xc5\xa9\x05\xf5\x9b\xd6\xa4\xf9\x3f\xc7\xe4\xd4\x77\xd6\x09\x15\ -\x34\x17\xb2\x43\x1c\xe5\xcf\x2a\xcc\x3c\x8b\x7b\x69\x46\x75\x41\ -\x45\xbd\x42\xc9\x3f\xd6\x22\x7f\x4b\x41\xe8\xd5\x17\xe8\x13\x93\ -\x65\x39\xb0\x27\xb0\xfa\xd9\x88\xfd\x4d\xc9\x00\x53\xe5\x11\x37\ -\x6c\x2c\xc3\x50\x43\xaf\x09\xb3\x29\x70\x49\xc9\xe4\x7b\x27\x90\ -\x1d\x2c\xd9\x6b\x0a\xa4\x13\x60\x85\x62\xc6\x22\xc5\xc9\x0d\x74\ -\xd8\x24\x70\xc6\x87\x23\xba\x24\x60\x03\x74\x3e\x35\x49\x7d\x7f\ -\x4c\x85\x9c\x06\xb4\x80\xe2\x83\x2d\x98\x2e\x94\x5f\xaf\xd1\xb1\ -\x80\x0c\x80\x3c\xac\x84\x52\xa1\xea\x89\xc6\x5d\xd3\xe0\xe8\x78\ -\x6f\x8d\x3e\xec\x31\x16\xdc\x80\x21\x4c\x28\x21\x0a\x78\xc8\xdf\ -\xdf\xa4\xfe\x66\x09\x56\x91\x69\x92\x26\x8b\x0f\x08\xc5\x8e\x0e\ -\xbd\xb4\x46\x06\x85\xec\x95\x8e\xb0\x5a\x31\x1e\xc2\x9d\x9e\xb0\ -\x46\x71\x7b\xa4\x0c\xa2\xd9\xc5\xd2\xbd\xa2\x46\xe7\x19\x5a\x9f\ -\xe9\x47\x0e\x70\x3d\x40\xc8\xc7\x25\xcb\x42\xe0\x85\xa4\x27\xd4\ -\x8d\xc5\x00\x1b\x6d\x14\x41\x2f\x5f\xa0\x3d\xa3\x64\xdf\xa7\xe5\ -\x22\xae\x9f\x19\x9b\x2a\xb0\x98\xe2\xd0\x02\xc2\xe2\x54\x80\xd9\ -\xfd\x68\x1b\xbb\xbf\x45\xdb\x91\xf2\xcc\x36\x71\x61\xa0\xf1\xfe\ -\x26\x8d\xcf\xf5\xa3\x99\x50\x7f\xa3\x43\xbc\xc5\xc3\x6d\x1e\x79\ -\x20\x62\x66\x1b\xe2\x58\x4a\xbb\x46\x52\xa1\x04\x03\x86\xce\x67\ -\x26\xa9\x2f\xaa\x71\x2f\x32\x98\xed\x41\x97\x44\xe2\x44\x44\x2a\ -\xc8\xde\xde\xc2\xec\x9c\x23\xbb\x64\xc4\x7b\x03\x54\x82\x99\xe9\ -\x12\xe2\xd7\x5e\x0e\x99\x6b\x31\x3b\xf4\x50\xc2\xe7\x59\xe8\x07\ -\x32\xc1\xec\x9f\x11\xd7\x28\xd9\x89\x4d\xfc\x9d\x1e\xf6\xb4\xb8\ -\xd7\x15\xd4\x95\x50\x47\xa8\x05\xcc\xc9\x0d\x62\x5b\x53\xcb\xd7\ -\x01\x19\xea\x04\xb3\xc0\x41\x9d\xc0\xa5\x9f\xa4\x3a\xe3\xea\xde\ -\x99\x96\x63\x73\x47\x37\x1a\xf1\x37\x4d\x2a\xe2\x77\x5d\xc4\xcf\ -\x00\xa7\x3f\x25\x8b\x9e\xf5\xca\x98\xeb\xe4\xae\xc5\x91\x48\xb8\ -\xd9\xd3\xf9\xab\x36\xc5\x7b\x1a\x64\x4d\xc8\x3f\xdc\xa2\xbe\xca\ -\xa3\xcb\x22\xd5\xa7\x3b\xe4\x2f\xb0\x98\x4a\x31\x6f\x6e\x90\xef\ -\x6b\xa9\xce\xec\x12\xef\x0b\xc4\x1a\xca\x73\x2b\xa4\x5f\x52\xfc\ -\xbd\x4e\x5d\x33\xf6\x98\x3c\x85\x77\x67\x58\xdc\x3c\xa5\xfa\x62\ -\x17\xed\x28\x12\x04\x76\x77\xc4\x11\xa0\x16\x64\x07\x87\x8e\x05\ -\x98\x0c\x10\x62\x1a\x22\x65\x84\xe0\x23\xe6\xc0\x9c\x70\x75\x85\ -\x14\x26\xcd\x15\xdc\xdb\x61\x0f\x73\x84\x85\x35\x2c\x8d\xc8\x5d\ -\x01\xe7\x0c\xf2\xb2\x9c\xfa\xf6\x40\xf6\x67\x4d\xc2\x8f\x26\x09\ -\x17\xd7\xc8\x4c\x21\x3e\x10\x70\x3b\x5b\xe2\xa8\x12\xee\xf5\x09\ -\x83\xb0\x25\x34\xfe\x63\xa0\x77\x16\xf2\xe8\x20\xcf\x9f\x3f\x1b\ -\x57\xef\x39\x67\x80\x47\x31\xc3\x5b\x80\xef\x6f\x90\x07\x62\x2a\ -\xaf\xb2\x80\x19\x10\xba\xa7\x8c\xd3\xbd\xa0\xc6\xed\x6c\xd2\xcd\ -\x7a\x49\x46\x5c\x14\x90\x3d\x2c\x32\xcf\xe0\x0e\x70\x10\xa0\x38\ -\xd0\xa1\x97\xd7\xa9\xd2\xe7\x9a\x9a\xc6\x1b\x0a\xcc\x89\x05\xab\ -\x8e\x5a\x93\x66\xfc\x20\xf0\x60\x44\x6d\xc2\xf0\x25\x42\xfe\xe1\ -\x41\xc2\xaf\x6a\xec\x76\x11\xff\x3f\x65\xc2\xdd\x11\x90\xf9\x39\ -\xf9\xdb\x5a\x94\x5f\xaa\xa1\xaa\x61\xc0\xa0\x8f\x84\x34\xe9\x6b\ -\x17\xd0\xe5\x9a\xe0\x5f\x1b\x82\x9b\x66\x31\x43\x02\x1d\x45\xa7\ -\x1b\xaa\xc5\x15\xb4\x23\xf6\x60\x87\x2c\x03\xee\x57\xcc\x82\x8c\ -\x58\x08\x66\x7e\x86\xec\xec\x89\x57\xa7\xe1\x12\x76\x9e\x25\xfc\ -\xa2\x42\x2a\xc1\xbc\xc2\x11\xae\xab\x91\x21\xa1\x71\xd6\x20\x34\ -\x7e\x87\x01\xde\x3a\x15\xe1\xdb\xb4\xa9\xb3\x4d\xcf\x04\xb3\x81\ -\x9b\x80\xed\x1f\x97\xf8\x9a\xaa\x6f\x45\x14\xbd\xb4\x86\x2b\x2a\ -\xaa\x9f\x55\x14\xa7\xb4\x70\x87\x3a\xc2\xbd\x01\xbd\x33\xe0\xef\ -\x49\x23\x56\x74\x5c\xf1\xb7\x7a\xf2\x63\x72\xcc\x6d\x9e\xfe\xef\ -\x0c\x52\x5f\x95\x3a\x35\xfd\xe7\x27\x29\x03\xc8\xee\x96\x7a\x54\ -\xf1\x97\xd4\xc9\x80\x9c\x6b\x88\x25\x60\x84\xec\xdd\x2d\xc2\x6f\ -\x3c\x26\xd6\xb0\x28\x41\xb1\xc9\x4e\x8e\x30\x6e\xa0\x99\xa1\xf7\ -\x7a\xec\x2c\x81\x95\x8a\x79\x45\x86\x2e\x8f\xf8\x5b\x2a\xec\x01\ -\x86\xec\xf5\x05\xf5\x97\x3a\x98\x35\x60\x2b\x45\x06\x0c\xa1\x84\ -\x5a\x62\x82\x77\xdd\xc5\x60\x73\x83\xde\xa6\x68\x13\xcc\x71\x0d\ -\xc2\x75\x1e\xf7\x12\x41\xd7\x44\x1a\xef\x6b\x31\x79\xe2\x1a\x9a\ -\x7f\xdf\x4f\xf5\xff\x4d\x20\x73\xc0\x2f\x55\xb2\xa3\x1d\xe6\xc0\ -\x8c\xec\x4f\x1b\xa8\xca\x43\xc0\x82\x67\x12\xdb\xdf\x1c\x25\xc0\ -\xfa\xd9\xc4\xcf\x03\xa7\xa0\xa8\x51\x15\x95\x54\x5b\xa7\x4e\x08\ -\x17\xd7\x74\xff\x69\x12\xfd\xad\xa7\x38\x2c\xa3\xfe\x55\x8d\xf4\ -\x90\x39\x65\x77\x4b\xe3\xf4\x26\xee\x88\x8c\x78\x79\x45\xf3\x25\ -\x19\x76\xba\xa0\x4b\x02\x61\xb9\x52\x5f\xeb\x29\x97\xc7\x34\xb7\ -\xf1\xa1\x88\x5f\x1c\x52\x49\xd8\x6c\x43\x5c\x12\x88\x63\x10\x1b\ -\xc0\x50\x2a\xda\xb4\x4d\x41\x6f\xf0\x78\x15\xec\x4b\x7a\xb5\xf9\ -\x77\x05\xe2\x2a\x87\x79\xf9\x0c\xcc\x3e\x4d\xaa\x4f\x2d\x21\x7f\ -\x67\x1f\xf5\x05\x11\xb3\xbb\x25\x9b\x05\x72\x73\x45\x35\x52\x12\ -\x1a\x42\xd6\x07\x6e\x02\x28\x2d\x75\x21\xe8\xde\x0e\xe9\x07\x5d\ -\xee\x89\xf7\x7b\x98\x8c\x98\xe9\x42\xf1\x86\x82\xd8\x51\xcc\x8e\ -\x06\x99\x63\xa8\xce\xee\x62\x17\x38\xc2\x65\x35\xf6\x79\x16\x7b\ -\xaf\x12\xef\x56\xaa\xa3\x9c\xba\x17\x18\x19\x38\xbd\xf9\x85\x15\ -\xbb\xac\xfc\xc0\xe0\x92\x61\x10\x36\x89\xd8\x7f\xce\x25\xc0\xa3\ -\xec\x82\xfd\x80\x8b\xa5\x92\x99\x18\x45\xef\xf5\x54\xdf\x2c\xa9\ -\x7f\x58\x62\x32\x68\xbe\xaf\x49\xfe\x22\x47\xcc\x85\x70\x61\x49\ -\xfe\xbe\x16\xe1\x1e\x9f\xba\x60\x7e\x55\x53\x1c\xec\x30\x2b\x22\ -\xb6\x29\xe4\x27\x37\x90\x3d\x1d\xfe\x9a\x9a\xb0\x93\xa1\xba\x35\ -\xd0\xfe\x70\x3b\x4d\x05\x57\x30\x93\x3d\xdd\x3f\x0e\xee\x8f\x32\ -\x28\x0c\x7a\x77\x4a\xcc\x68\x1b\xea\xa2\x20\x7b\xdb\x20\xf5\xd9\ -\xe3\xd0\x0f\x76\xaf\x02\x5d\x5e\xa0\x5a\xc0\x03\x0f\x61\x8f\x29\ -\x08\x57\x78\x1a\x9f\x9a\x4e\xf5\xd5\x71\xc2\xf5\x5d\xec\x1f\x14\ -\xc4\xdb\x03\xe2\x02\xd9\xca\x5e\xcf\xe0\xbe\x16\x3f\x24\x70\x45\ -\xc9\xb4\xeb\x67\xd2\x7e\xfb\x6a\xcc\x1b\x72\xea\x3b\x42\x9a\x0e\ -\xf6\x70\xa4\xf9\x90\x92\x9d\xd4\xa0\xfb\xb1\x36\xf6\x15\x19\xd5\ -\xcf\x2b\x14\xc8\x66\x3a\xd4\x19\x3a\x45\x58\xa1\x8f\x84\x97\xd2\ -\xe5\xd6\x1d\x17\x0e\xf1\xe0\x3e\xcf\x0d\x7a\xef\x73\x36\x2f\x70\ -\xaa\x27\xad\x38\xad\xb5\x6c\x6c\xee\xe8\xbf\x34\x3e\xd4\x37\xe4\ -\xcf\xea\x1e\x5a\x7d\x6e\x92\xd6\xfb\x9b\x98\xb6\xd2\x78\x7d\x41\ -\xb8\xac\xa2\xfb\xd5\x2e\xd5\x79\x25\x72\x7f\xa4\xfe\x71\x05\x0f\ -\x04\xec\x7c\x47\xfe\xd7\x7d\xc8\xcc\x74\x93\xb2\x77\x36\x09\xd7\ -\xd4\x8c\x1f\x37\x86\x6c\x67\x98\x38\xb3\x4b\x7d\x4b\x20\x7b\x5d\ -\x83\x70\x93\x27\x3b\x3a\xc3\xe4\x10\x96\xc4\xd4\x20\x5a\x18\x4c\ -\x9f\x60\x3a\x8a\xbf\x2f\x92\x0d\x18\x74\xcf\x3e\xb4\x14\xec\xe1\ -\xad\x84\x01\x3c\x37\x43\x27\xc0\x1d\xd7\x47\xb8\x7c\x25\xfa\x10\ -\xd8\x97\xb4\xa8\xbe\xd0\xc6\xbd\xbe\x89\x2e\xf1\x68\xd7\x52\x9c\ -\x3e\x88\xbf\xaa\x06\x4d\x83\x1d\xec\xf6\x86\xf8\xeb\x92\x46\xbf\ -\x81\x8b\x2a\x58\xae\xc8\x90\x85\x1d\x1d\x14\x0e\x77\x44\x93\x6c\ -\x24\x10\xce\xaf\xb0\xef\x6a\xe1\xaf\xaa\x70\x27\x37\x89\x51\x31\ -\x43\x16\x33\x24\x67\x54\xb7\xd5\x2f\x6d\x7d\x7e\x70\x59\xfd\xd3\ -\x92\xf1\x2f\x76\x9e\xb3\x88\xfa\x73\x3e\x30\xb2\xfc\x6c\x87\x83\ -\xbf\xfc\x72\xee\x79\xf9\x6d\x17\xd4\x57\x54\x5f\x65\x99\xee\xef\ -\x7f\x59\xcd\xcf\x76\xb2\xc4\x5b\x3c\x66\xd8\x90\xbd\x34\x27\xdb\ -\xc9\x60\x8f\xcc\x21\x2a\xfa\x40\x24\xdc\xe4\x99\xfc\x5e\x45\xfd\ -\xb3\x8a\xfa\xc2\x1a\x5a\x60\xff\xa8\x81\x1a\xa1\xba\xca\x63\x4f\ -\x6c\x52\x7d\xad\x8b\xd9\x3b\x47\x4b\xd0\x87\x3c\xd9\x61\x39\xf5\ -\x15\x1e\x19\xb4\xb0\x3c\x10\x1f\x0c\x64\xc7\xe4\xc8\x0c\xc1\xdf\ -\x02\x3a\x64\xc8\x5e\xd9\xa4\xfe\xc2\x04\x8d\x93\x1b\xf0\xdd\x2e\ -\xb2\x13\xf8\xcb\xc6\x31\xbb\x46\xec\x82\x0c\x7f\x7e\x07\xf7\x86\ -\x26\xfe\xec\x49\xc8\xc0\x1d\x5e\x10\x16\xa6\xd6\xae\xb8\xdc\x63\ -\xf7\x30\xc4\x25\x1e\x6d\x2b\xce\x81\xed\x9a\x84\x1f\xb8\x4b\x46\ -\x75\x73\xc4\xbd\xaa\x49\xfd\x83\x92\xee\x95\x1d\xe2\x02\x4b\xbd\ -\x26\x12\xfa\x05\x7d\x5e\x46\x6c\xc9\x45\xf5\x32\x7f\x44\x79\x55\ -\xfd\x9f\x4d\xa0\xf3\xd3\xe7\x1e\xa2\x69\xb3\x98\x17\x38\xeb\xda\ -\xe9\x87\xf8\x9f\x94\xe7\x64\x6f\x6c\xec\x51\x7d\xad\x8b\xec\x6f\ -\x91\x83\x33\xba\xef\x1e\x27\x7b\x67\x03\xc9\xa1\xfe\x4a\x07\x7b\ -\x5a\x8b\xea\xcb\x1d\xfc\x72\x45\x67\x08\x7d\x7f\xd5\xa2\x73\xea\ -\x38\xad\x2f\x0f\x50\x2e\x51\x74\x25\x84\xab\x23\xc5\x87\x0b\x3a\ -\xef\x5e\x83\x69\xc7\x34\xfd\xb3\x9b\x5c\xcd\xd6\xfb\x1a\x4c\x9e\ -\xd1\x49\xb3\x33\x83\x03\x0b\x66\xcf\x06\x66\xa7\x9c\x78\x65\x97\ -\xc6\x58\x20\x44\x4f\x3d\x18\xd3\x48\xed\x68\xd0\x07\x81\x32\xd5\ -\x1a\xa0\x1e\x99\xe1\x60\x20\xa7\xf9\x4f\x4d\xca\x7f\x19\x43\x97\ -\x47\x18\x09\xd8\x39\x96\xdc\x43\xf6\xe2\x26\xe5\x75\x25\x71\x3f\ -\x8b\x7d\x77\x1f\xf6\xa8\x9c\xc9\xd7\x8f\xd3\xfa\x46\x0b\x86\x0d\ -\xe1\x4a\x4f\x58\xe4\xef\xca\x5e\xd3\x3c\x7e\xe2\x80\xa5\xd7\x34\ -\x7e\x34\x8b\xee\x71\xbf\x3f\x38\x86\xcd\x82\x01\x86\xcf\xe8\x63\ -\xf4\x83\x6d\xfa\x0e\x76\xaf\x8d\x95\x7e\xdc\x3f\xa8\x07\xda\xe7\ -\x59\xe2\x7d\x11\x5d\x11\xd3\x58\xbd\x00\x76\x8e\x10\xfb\x04\x06\ -\x2d\xd9\x7b\x1a\xf8\xff\xea\xc0\x48\xc0\x1d\x9d\x53\x5e\x16\xc9\ -\xfe\xa8\x45\xb8\xd3\x13\xef\xf4\xb8\x03\xc1\x0e\x0b\xe5\x17\x3a\ -\x98\x08\xee\xcd\x05\xfe\x7f\x2a\xcc\x09\x0d\xb4\xed\x08\x4b\x0c\ -\x7a\x6f\x0d\x0d\x8b\xd9\xb3\x45\xb8\x68\x15\xc5\xf3\x0d\xf1\xe6\ -\x2e\x6b\xe1\x02\x5a\x06\x97\x59\xa4\x23\xc4\x3a\x12\x49\x05\x20\ -\x78\x41\xe6\x98\xc4\x38\x23\x1e\x99\x65\x70\x07\xe5\xc4\xef\x56\ -\x34\x4f\x6a\x52\xdd\x5d\x23\xc7\x66\x74\x3f\x3c\x41\xe3\x33\xd3\ -\x30\xbb\x1b\xba\xff\xb7\x43\xf6\x87\xee\x7a\x19\x92\x8f\x77\xdf\ -\xbb\xea\xbc\x81\xbb\xe7\x30\xbe\xfb\x23\x9b\x43\x29\xc5\xe6\xb7\ -\x72\x58\x40\x21\x9f\x34\x2d\x5e\x25\x83\x82\xde\x1b\x31\x39\x30\ -\x28\x09\x20\x69\x8d\x12\x11\x64\x48\x28\xfe\xa2\x49\x58\x1e\xa8\ -\x17\x5a\xcc\xb0\x10\xee\xa8\x70\x07\x38\xaa\xb3\x27\x69\x9c\xd6\ -\xa4\xfc\x6c\x07\xfb\xc2\x0c\xb3\xaf\xc3\xcc\x80\xf2\xbb\x25\x3a\ -\xee\x70\xaf\x6e\xa1\x93\x86\xe2\x2f\xa6\xd3\xfd\xd0\x2a\xfe\x5f\ -\x7b\xe7\xd3\x1b\x65\x15\x85\xf1\xe7\xdc\x7b\xdf\x7f\x33\x9d\x99\ -\xce\x30\x2d\xc5\x09\x60\x2d\x22\x5a\x1b\x63\x58\x54\x1b\x28\x2c\ -\x1a\x82\x3b\x76\xb0\xa0\x0b\x6d\xf4\x03\x68\x34\xd1\xf8\x05\x88\ -\x06\x37\xb8\x30\x6e\x4c\xaa\xb1\xa6\x1b\x25\x04\x63\x42\x48\x80\ -\x15\x41\x23\x1b\xe4\x4f\x24\x6c\x68\x53\x9a\xd2\x45\x67\x78\x3b\ -\xef\x7b\xdf\x7b\x1f\x17\xaf\xac\xdd\x32\xc4\xf3\x11\x4e\x72\xcf\ -\xe2\xdc\xe7\xfc\x7e\x7c\xe4\x61\x0e\x11\x76\xb9\x07\x3d\x13\x02\ -\x5b\x84\xbb\x55\x40\x69\x81\x14\x02\x51\xae\xc4\xc2\x28\x5f\xa6\ -\xb8\x02\x01\x72\x22\xfc\xb0\x8a\xe2\x87\x0c\xaa\xa5\xa0\x0f\x27\ -\x28\x6e\x78\x70\xdd\x82\x55\x83\x70\x61\x08\xe8\x59\x98\xb7\xcd\ -\xaf\xf6\x62\xef\xb3\xfc\xdc\x93\x9b\xf8\xbf\xfe\xbb\x86\x67\xca\ -\x9d\xe8\x24\xf7\xb7\x3b\xdb\xed\xb3\x63\x97\x1a\x8f\x3b\xdf\x0d\ -\x71\xf8\xfd\x98\x15\x01\x5b\x27\x42\xd6\x9b\x8a\xb5\x51\xcd\xa8\ -\xa5\xa8\xab\x42\xb5\xdf\x50\xed\xd3\x14\x53\x52\xff\x92\x4f\x2a\ -\x44\x20\xac\xfe\xb6\x83\xc1\x07\x75\xca\xbe\x88\xe1\xc7\x43\xc4\ -\x0e\x43\x73\xb4\x42\x84\x21\xd5\x78\x93\xf1\xb9\xdd\x94\x5d\x75\ -\x22\x19\xa2\x7a\xa9\x4e\x33\xd7\x22\xe2\x2a\xc5\x84\x94\x5a\x44\ -\x19\x0d\x19\x9d\xaa\x51\x20\x8c\xdf\x88\x18\x4c\x47\xd4\xb3\x41\ -\x79\xe2\x9b\x94\xdf\x0b\xe1\x41\xc3\xa0\x02\x9a\x30\x60\xed\xc2\ -\x4e\x9a\xb9\x61\xd6\xd6\xc6\x1f\x27\x4b\x9d\xb3\x78\x8a\xdf\x7d\ -\xf3\xd9\x94\xb4\x3f\xd3\xce\xe0\x17\x2e\xd5\xb0\x3a\xd7\x05\x00\ -\x34\x0f\x98\x23\x18\xc6\xbc\xbd\x51\x9c\xd6\x0e\x91\x59\x88\xa1\ -\x67\x02\x64\x3f\x67\xf0\x1e\x90\xd7\x0d\xb2\x2f\xd3\x72\x44\x27\ -\x02\xbb\x45\xb0\xa1\xa1\x76\x96\x0c\x58\xff\xd0\x21\xf9\xb6\x8e\ -\xec\xeb\x0c\x62\x34\xd4\xcb\x06\xfe\x01\x10\x1c\x53\xe8\x7f\x91\ -\x42\x36\x0a\x98\xe3\x11\x98\x03\xc5\xe5\xbc\x3c\xe4\x74\x84\x68\ -\x80\x29\x10\xbd\xa5\x01\x0d\x14\x7f\x5b\xb8\xf5\x32\x2a\x2e\x0d\ -\x05\xbf\xea\xa0\x9a\x0a\xf4\x84\xe9\x9a\x4c\xef\x31\xdf\xcb\xe7\ -\xc9\x62\xba\xb0\x79\x65\x10\x1e\xdb\x40\x4a\xa3\x5b\xb1\x4c\x57\ -\x3e\x4a\xe6\xb3\x8b\xd9\x49\x37\xa2\xdb\xd9\x1f\x16\xc9\x3b\x21\ -\xf4\x8b\x1a\xfd\xa5\x0c\xac\x29\xa4\x7f\x16\x28\xcc\xbf\x90\x40\ -\x05\xe8\xd9\x18\xc1\x9c\x81\x3d\x4f\xc8\x44\x84\x62\x39\x05\xe0\ -\xa1\xa7\x34\x78\xd7\x42\x65\x84\xb7\x84\x57\x84\x39\x1e\xa1\xb8\ -\x60\x21\x22\x10\x03\x98\xaa\x82\xdb\x2e\xa0\x95\x00\xbb\x05\x8c\ -\x08\x15\x0b\xdc\x9d\x02\x4c\xf5\x86\x6b\xf0\x27\xd5\xd6\x8b\xfe\ -\x5e\x3e\x70\xde\x85\x81\xb7\x86\x57\x80\xb1\xfa\x99\xca\x2c\x96\ -\xb3\xc3\xdc\xc6\xb4\x1f\x53\x13\xfd\xfb\xbe\x65\x53\x20\x8f\x05\ -\x5c\x71\xa5\x99\x73\x42\x21\x78\xb7\x8a\xfc\xab\x14\xc9\x37\x6d\ -\xe4\x3f\xe6\x70\xbf\xf4\x4a\xd6\x7f\x17\x10\xe3\xe0\xbd\x07\x43\ -\x82\x23\x0a\x0a\x51\x19\xd9\x5e\x2b\xd7\xcf\xa6\x23\xf0\xeb\x7e\ -\x53\xf6\xca\xfd\xe8\xd3\xe4\x7a\xff\xbd\xee\xb5\xf0\x40\xe5\x6a\ -\xef\xce\x93\xb5\x41\xee\xdf\xf3\xa8\x8d\x37\xf5\x49\x5d\xc3\x2b\ -\xfa\xd5\xec\x96\x7b\xcd\xa7\x1c\xf7\x0f\xd9\xf1\x60\x27\x3e\x53\ -\x1d\xcd\x96\x6d\xcb\xff\xee\xea\x08\x74\x2c\x8d\x20\x40\x44\xe8\ -\x98\xd6\x58\xf6\xdd\x23\xbb\xc5\xcc\x6d\x52\xcb\xba\x8c\xc4\x2b\ -\xdc\x28\x56\x94\x96\x07\xd2\xc7\x5f\x32\x82\xdb\xcd\xcb\xed\xee\ -\xda\xd4\x6a\xf1\x3c\x35\xeb\x1f\x6d\xf2\x0b\xa1\xbd\xd1\x6f\x68\ -\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x09\x75\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x09\x17\x49\x44\x41\x54\x78\x9c\xed\ -\x9d\x5b\x6c\x1c\x57\x19\xc7\xff\xdf\x99\xb5\xdd\x90\x6c\xba\xe7\ -\x9c\x89\x22\x1e\x2a\xd1\x07\xe0\xa9\x8a\x0a\xa5\x0a\x42\xe0\x8d\ -\x9d\x04\x37\x6a\x22\x5a\x41\x85\x2a\x54\x89\x6b\x24\x54\x89\x54\ -\x15\x55\x44\x54\x2e\x55\x10\x14\xa1\x52\x29\x0a\x94\x02\x2a\x77\ -\x41\x45\x45\x2b\xe8\x05\x92\xb4\x6a\xd5\x2a\x69\x41\x84\xa6\xa4\ -\xf4\x92\xa6\x31\x4d\x9a\x38\x9e\x9d\x8b\x9d\x9b\x83\xe7\x3b\x3c\ -\xc4\x15\x96\xdb\x78\x8f\xed\xdd\x99\x5d\x9f\xf3\x7b\xb2\x3d\x9f\ -\xe7\xfc\xb5\xdf\x4f\xb3\x67\xce\xec\xce\x10\x66\x50\xab\xd5\xae\ -\xa0\x20\xf8\x82\x01\xd6\x81\xf9\x32\x21\xc4\xb2\x99\x35\x9e\xae\ -\xe2\x3c\x33\x1f\x11\x44\x8f\x73\x10\xdc\x93\x8e\x8e\x3e\x3f\x7d\ -\x23\x4d\xfb\xb9\x57\x29\x75\x37\x88\x36\x03\x10\xc5\x66\xf4\x14\ -\x84\x81\x31\xf7\x56\xab\xd5\x2d\xc3\xc3\xc3\xe7\x80\xff\x0b\xd0\ -\x2b\xa5\x7c\x8c\x84\x58\x53\x62\x38\x4f\x51\x18\xf3\x64\xb5\x5a\ -\x1d\x1a\x1e\x1e\x3e\x17\x00\x80\x52\x6a\x07\x09\xf1\xa9\xb2\x73\ -\x79\x0a\x82\xe8\x3d\xe7\x27\x26\xc2\xb3\x67\xcf\x3e\x4c\xb5\x5a\ -\xed\x0a\x11\x04\xff\x84\x3f\xec\xbb\x86\x61\x21\xae\x0c\x96\x2c\ -\x5d\xba\x8d\x80\xd5\x65\xa7\xf1\x14\x0e\x11\x33\x0b\x03\xac\x2b\ -\x3b\x89\xa7\x1c\xd8\x98\x01\x01\xe6\xcb\xca\x0e\xe2\x29\x07\x41\ -\x74\x79\xa5\xd9\x79\x7e\xdc\x68\xd0\x6c\xdb\x3d\x9d\x8d\xd2\xda\ -\x5c\x74\x23\x51\x9f\x9f\xf8\x39\x8e\x17\xc0\x71\xbc\x00\x8e\xe3\ -\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\xc7\ -\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\ -\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\ -\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\ -\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\ -\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x80\ -\x12\x08\xc3\xf0\xbd\x52\xeb\x07\x6a\x52\x8e\xd7\xa4\x3c\xa3\xb4\ -\x7e\xf4\xd2\x30\xbc\xb2\x8c\x2c\x5e\x80\x82\x09\xc3\xf0\x83\x6c\ -\xcc\x3e\x02\xae\x17\x42\x2c\x13\x42\x2c\x01\x30\x44\x79\xfe\x8c\ -\x52\xea\xea\xa2\xf3\x78\x01\x0a\x44\x6b\x7d\x15\x1b\xb3\x1b\x80\ -\x9a\xb9\x4d\x08\xb1\x04\x44\x77\x17\x9d\xc9\x0b\x50\x10\x4a\xa9\ -\xab\x0d\xb0\x1b\x40\x6d\x96\xb2\xd5\x2b\x57\xae\x5c\x5a\x54\x26\ -\xc0\x0b\x50\x08\x4a\xa9\xd5\x4c\xb4\x0b\xc0\xa5\x65\x67\x99\x89\ -\x17\xa0\xcd\x48\x29\x3f\xcc\x44\x7f\x11\xc0\x72\x8b\xf2\xbd\x23\ -\x23\x23\xa7\xdb\x1e\x6a\x1a\x5e\x80\x36\x22\xa5\xfc\x88\x01\xac\ -\x9a\xcf\xcc\x67\x09\xd8\x52\x44\xae\xe9\x78\x01\xda\x44\x2d\x0c\ -\x3f\x6a\x80\xc7\x84\x10\xd5\x66\xb5\xcc\x7c\x36\x10\x62\x63\xa3\ -\xd1\xf8\x5b\x11\xd9\xa6\x53\x29\x7a\x40\x17\xa8\x85\xe1\xc7\x90\ -\xe7\x8f\x08\x21\x9a\x4e\xe8\x98\xf9\x4c\x20\xc4\xb5\x8d\x46\xe3\ -\x89\x22\xb2\xcd\xc4\x1f\x01\x5a\x8c\xd6\xba\x3e\x87\xe6\x9f\x46\ -\x10\x6c\x28\xab\xf9\x80\x17\xa0\xa5\x68\xad\x07\x72\xe6\x87\xe7\ -\xd2\xfc\x34\x8a\x9e\x2c\x22\xdb\xc5\xf0\x02\xb4\x08\xa5\xd4\xda\ -\x9c\xf9\xcf\x42\x88\x77\x35\xab\x65\xe6\x53\x04\x0c\xa5\x51\xf4\ -\x54\x11\xd9\x66\xc3\x0b\xd0\x02\x94\x52\xeb\xd9\x98\x3f\x4d\x2d\ -\xeb\xce\x0a\x33\x8f\x13\x30\x94\x24\xc9\xd3\x45\x64\x6b\x86\x17\ -\x60\x81\x48\x29\x87\xd8\x98\x87\x84\x10\x97\x34\xab\x65\x60\x8c\ -\x80\x8f\x27\x49\xf2\x4c\x11\xd9\x6c\xf0\x02\x2c\x00\x19\x86\x1b\ -\x88\xe8\x41\x9b\xe6\x03\xc8\x84\x31\xeb\x93\x24\xd9\xdb\xf6\x60\ -\x73\xc0\x0b\x30\x4f\x6a\x61\x78\x2d\x19\xf3\x47\x10\xf5\x59\x94\ -\x67\x30\x66\x7d\x1c\xc7\xcf\xb6\x3d\xd8\x1c\xf1\x02\xcc\x03\xad\ -\xf5\x26\x61\xcc\x03\x00\x7a\x2d\xca\x53\x02\xd6\xc5\x71\xfc\x5c\ -\xbb\x73\xcd\x07\x2f\xc0\x1c\xd1\x5a\x7f\xc2\x00\x7f\x80\x5d\xf3\ -\x13\x41\xb4\xb6\x8c\x15\x3e\x5b\xfc\x4a\xe0\x1c\x50\x4a\x5d\x6f\ -\x80\xdf\x01\xe8\xb1\x28\x8f\x73\xa2\xb5\x71\x14\xed\x6f\x77\xae\ -\x85\xe0\x8f\x00\x96\x28\xa5\x3e\x09\xa2\xdf\xc3\xae\xf9\x8d\x5c\ -\x88\xc1\xac\xc3\x9b\x0f\xf8\x23\x80\x15\x52\xca\x1b\x40\xf4\x1b\ -\xd8\xbd\x5e\x11\xe7\xf9\x60\xd6\x68\x1c\x68\x77\xae\x56\xe0\x05\ -\x68\x82\x0c\xc3\x4f\x93\x31\xbf\x06\x10\x34\x2d\x36\x66\x94\x99\ -\x07\xd3\x34\x7d\xa1\xfd\xc9\x5a\x83\x17\x60\x16\x6a\x5a\xdf\x48\ -\xc6\xfc\x12\x16\xcd\x37\xcc\x27\x01\x0c\xa4\x69\x7a\xb0\xfd\xc9\ -\x5a\x47\x27\xcc\x01\x3a\xf2\xb1\x74\x35\xad\x3f\x23\x00\xab\xe6\ -\x33\xf3\x08\x11\xad\x49\x92\xa4\xab\x9a\x0f\x94\x24\x80\xd6\xfa\ -\xfd\x52\xca\x87\xa6\x3e\x13\x7f\x4e\x4a\xb9\x5b\x6b\xfd\xa1\x32\ -\xb2\xbc\x13\x4a\xa9\x9b\x04\xf0\x0b\xd8\x35\xff\x84\x20\x5a\x13\ -\xc7\xf1\x8b\x05\x44\x6b\x39\x85\x0b\x10\x86\xe1\xfb\x0c\xb0\x97\ -\x84\xd8\x34\x75\xf1\xa4\x97\x84\x18\xcc\x99\x9f\x92\x52\x5e\x53\ -\x74\x9e\x99\x28\xa5\x3e\x0b\xa2\xfb\x60\xf1\xda\x30\xf3\xf1\x40\ -\x88\x7a\x1c\xc7\xff\x2e\x20\x5a\x5b\x28\x5c\x80\xdc\x98\xef\x02\ -\x90\x6f\x0b\x22\xc4\x25\x24\xc4\x83\x35\xad\x37\x16\x9d\xe9\x2d\ -\x94\x52\x9f\x07\xd1\xcf\x60\xd7\xfc\x37\x2b\x41\x50\x6f\x34\x1a\ -\x2f\x17\x10\xad\x6d\x14\x2e\x00\x01\x03\xb3\x6c\xee\x15\xc0\x03\ -\x4a\xa9\xeb\x0a\x0b\x34\x85\x0c\xc3\x2f\x82\xe8\x27\xb0\x98\x93\ -\x30\x70\xac\x12\x04\xf5\x28\x8a\x5e\x29\x20\x5a\x5b\x29\x63\x0e\ -\x70\xf1\x67\xd9\x5e\xa0\x07\x44\xf7\x4b\x29\x6f\x28\x24\x0d\x00\ -\xa9\xf5\x66\x32\xe6\xc7\xb0\x6b\xfe\xd1\x1e\x21\xea\x51\x14\xbd\ -\x5a\x40\xb4\xb6\x53\x86\x00\xbb\x2c\x6a\x2a\x24\xc4\x6f\x6b\x5a\ -\xdf\xd8\xee\x30\x35\xad\xbf\x4c\xc0\x8f\x60\x77\x36\xf2\x06\x0b\ -\x51\x1f\x1d\x1d\x3d\xd4\xee\x5c\x45\x51\xfc\x1c\x20\x08\xb6\x02\ -\x88\x2c\x4a\x03\x01\xfc\x4a\x29\x75\x53\xbb\xb2\x28\xa5\x6e\x16\ -\xc0\x4e\xd8\x35\x7f\x38\x9f\x9c\xec\x1f\x1b\x1d\x7d\xad\x5d\x79\ -\xca\xa0\x70\x01\xb2\x93\x27\x0f\x73\x9e\x0f\xc2\x98\x51\x8b\x72\ -\x01\xa2\xfb\x94\x52\x9f\x6b\x75\x0e\xa5\xd4\x57\x40\xb4\xc3\xb2\ -\xfc\x48\x3e\x39\x59\xcf\xb2\xec\xf5\x56\xe7\x28\x9b\x52\xd6\x01\ -\xd2\x34\x3d\x60\x8c\x59\xc3\xcc\x23\x16\xe5\x02\x44\x3f\x95\x5a\ -\x6f\x6e\xd5\xf8\x4a\xa9\x5b\xe6\xf0\x4d\xdc\xd7\x39\xcf\xeb\x59\ -\x96\x1d\x69\xd5\xf8\x9d\x44\x69\x2b\x81\x49\x92\x1c\x0c\x84\xa8\ -\x33\xf3\x71\x8b\x72\x22\xe0\x1e\xa5\xd4\xcd\x0b\x1d\x57\x6a\x7d\ -\x2b\x88\xee\xb2\x2a\x36\xe6\xb0\x61\xae\xa7\x69\x3a\xbc\xd0\x71\ -\x3b\x95\x52\x97\x82\x1b\x8d\xc6\x4b\x95\x20\xe8\x67\xe0\xa8\xd5\ -\x3f\x10\xed\x50\x4a\xdd\x32\xdf\xf1\xa4\xd6\xb7\x11\xf0\x7d\xab\ -\x62\x63\x5e\x33\xc6\xd4\x93\x24\xf9\xcf\x7c\xc7\xeb\x06\x4a\xbf\ -\x16\x10\x45\xd1\xab\x26\x08\xfa\x01\xd8\xbd\xd0\x44\x77\x49\xad\ -\x6f\x9b\xeb\x38\x52\xeb\xad\x04\xdc\x69\x53\x6b\x98\x0f\x01\xe8\ -\x4f\x92\xe4\x8d\xb9\x8e\xd3\x6d\x94\x2e\x00\x70\x61\x62\x98\x4f\ -\x4e\xf6\x03\xb0\x9a\x64\x11\x70\xa7\x52\x6a\x9b\xed\xfe\x95\x52\ -\xdb\x08\xf8\x8e\x4d\x2d\x33\xbf\x22\x84\xe8\x8f\xe3\xf8\x98\xed\ -\xfe\xbb\x99\x8e\x10\x00\x00\xb2\x2c\x3b\x62\x98\xfb\x61\x8c\xdd\ -\x69\x16\xd1\x76\xa9\xf5\xb7\x9a\x95\x29\xa5\x6e\x07\xd1\x76\x9b\ -\x5d\x32\xf3\xcb\x53\xcb\xbb\x6f\x5a\x65\x58\x04\x74\x8c\x00\x00\ -\x30\x75\xc8\xed\x67\x66\xab\x25\x56\x02\xbe\x2e\xb5\xfe\xf6\xc5\ -\xb6\x4b\xad\xbf\x09\xa2\x3b\x6c\xf6\xc5\xcc\x2f\xf5\x54\x2a\xf5\ -\x28\x8a\x6c\x26\xa5\x8b\x86\x8e\x12\x00\x00\xe2\x38\x3e\x56\x09\ -\x82\x3a\x03\x56\x57\xd8\x08\xf8\x9a\x52\xea\x7b\x33\xff\x2e\xb5\ -\xbe\x83\x80\x6f\xd8\xec\x83\x81\x17\x7b\x7b\x7a\xea\xa3\xa3\xa3\ -\x27\xe6\x9a\xb7\xdb\xe9\x38\x01\x00\x20\x8a\xa2\xe3\x7d\x95\x4a\ -\x1d\x80\xdd\x07\x2c\x88\xbe\x2a\xb5\xfe\xc1\x5b\xbf\x4a\xad\xb7\ -\x13\x70\xbb\xe5\x70\x07\xfb\x2a\x95\x35\x27\x4f\x9e\xb4\x59\x93\ -\x58\x74\x90\xd2\x7a\xd6\x8b\x33\x71\xa3\x51\xda\x27\x76\x96\x2d\ -\x5b\x16\xf6\xf6\xf6\xee\x06\xd1\x2a\x9b\x7a\xc3\xbc\x93\x88\xc6\ -\x41\xb4\xd5\x72\x88\x7f\x9d\xef\xe9\x19\x38\x75\xe2\x84\xcd\xaa\ -\x64\x57\xd2\xac\xbf\x1d\x2d\x00\x00\x2c\x5f\xbe\x5c\x05\x41\xb0\ -\x8b\x84\xf8\x40\x8b\x77\x7d\xe0\xfc\xc4\xc4\xe0\xa9\x53\xa7\x6c\ -\xae\x4b\x74\x2d\xcd\xfa\xdb\x91\x6f\x01\xd3\x19\x1b\x1b\x8b\x99\ -\x79\x90\x99\x5b\xf7\xed\x1a\x63\x9e\xff\xef\xf9\xf3\x03\x8b\xbd\ -\xf9\x36\x74\xbc\x00\x00\x90\x65\x59\x4a\xc0\x3a\x06\xf6\x2d\x78\ -\x67\xc6\xec\x9f\x9c\x9c\x1c\x18\x1f\x1f\x6f\xb4\x20\x5a\xd7\xd3\ -\x15\x02\x00\x40\x92\x24\x59\x00\xac\x07\x30\xef\x1b\x2b\x18\xe6\ -\x7f\xe4\x79\x3e\x38\x36\x36\x16\xb7\x30\x5a\x57\xd3\x35\x02\x00\ -\x40\xa3\xd1\x18\xef\xa9\x54\x86\x60\xcc\x9c\xef\xab\x63\x98\xff\ -\xce\xcc\x6b\xb3\x2c\x4b\xda\x91\xad\x5b\xe9\x2a\x01\x00\x60\x64\ -\x64\xe4\x74\x5f\x5f\xdf\x06\xc3\xbc\xc7\xf6\x7f\x18\x78\x8e\x99\ -\xd7\xf9\xe6\xbf\x9d\xae\x13\x00\x00\x8e\x1f\x3f\x7e\x66\xe9\xd2\ -\xa5\x1b\x19\xf8\x6b\xb3\x5a\x06\x9e\x25\xe6\xf5\x59\x96\xa5\x45\ -\x64\xeb\x36\xba\x52\x00\x00\x38\x7a\xf4\xe8\xd9\x54\xca\x4d\x30\ -\xe6\x91\x8b\xd5\x30\xb0\x6f\xea\xb6\x2c\x59\x91\xd9\xba\x89\xae\ -\x15\x00\x00\x70\xe8\xd0\x44\x1c\xc7\xd7\x01\xb8\x7f\xe6\x26\xc3\ -\xbc\x27\x00\xd6\xc7\x71\x3c\x56\x42\xb2\xae\xa1\xe3\x17\x82\x6c\ -\xa9\x85\x61\x3f\x19\x33\x08\xa0\x02\xa2\xa7\x93\x28\x7a\x14\xcd\ -\x3f\x82\xbe\xe8\xe9\xfa\x95\x40\xcf\xc2\xe8\xfa\x95\x40\x4f\x7b\ -\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\ -\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\ -\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\ -\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\ -\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\ -\xc7\xf1\x02\x38\x8e\x17\xc0\x71\x48\x69\x3d\x01\xbb\x47\xa1\x7b\ -\x16\x1b\xc6\x4c\x08\x66\x3e\x52\x76\x0e\x4f\x39\x30\xd1\x61\x21\ -\x88\x1e\x2f\x3b\x88\xa7\x1c\x08\xd8\x43\xb5\x15\x2b\x56\x09\xe6\ -\xfd\xe8\xd0\x67\xf8\x7a\xda\x86\xe1\x3c\x5f\x15\x9c\x3b\x73\x66\ -\x64\xc9\x92\x25\xef\x06\xd1\x55\x65\x27\xf2\x14\x87\x61\xfe\x61\ -\x9a\xa6\x3f\x17\x00\x50\xad\x56\xb7\xcc\xe7\xd6\x6b\x9e\xee\xc4\ -\x30\x3f\x91\x68\x7d\x2b\x30\x75\x1a\x38\x3c\x3c\x7c\xae\x5a\xad\ -\x0e\xe1\xc2\xd3\x33\x9d\xbf\xad\xca\x22\xc6\x18\xe6\x9d\x89\xd6\ -\xd7\xe0\xd0\xa1\x09\xe0\x1d\xde\xf7\x6b\x2b\x56\xac\x12\x79\xfe\ -\x25\x36\x66\x40\x10\x5d\x0e\xa2\xbe\xe2\x73\x7a\x5a\x86\x31\x13\ -\x4c\x74\x98\x80\x3d\x26\xcf\xef\x4d\xd3\xf4\x85\xe9\x9b\xff\x07\ -\x24\x5f\x0a\xa3\xc9\xca\xf5\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\ -\xae\x42\x60\x82\ -\x00\x00\x0a\xbb\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x0a\x5d\x49\x44\x41\x54\x78\x9c\xed\ -\x9d\x7b\x8c\x15\x57\x19\xc0\x7f\x7b\x97\xb6\x58\x16\x76\x29\x0a\ -\x25\x85\x72\xb5\x55\x04\xc1\x1a\x4a\x6b\x1f\x68\x1f\xf6\xb9\x12\ -\xa2\xa5\xbe\x6a\x1a\x7c\xd4\xa8\x89\xc6\x46\x4d\xd4\xaa\xcd\xc6\ -\x28\x29\x68\x1f\xd4\xf8\x22\x22\x35\xad\xf5\xd5\xa2\xb5\xfe\x51\ -\x5b\xc5\x29\x7d\x98\x6e\x5f\x1b\x91\x96\x5a\x41\x40\x4b\x2d\x22\ -\x2c\xdd\x2d\x65\x61\x97\xf5\x8f\x6f\x6e\xe6\xcc\xdc\xb9\x77\xe6\ -\xee\xde\xb9\x67\x1e\xdf\x2f\x99\xdc\x33\x33\x67\xe6\x7c\x77\xe6\ -\x9b\xf3\xfc\xce\x77\x40\x51\x14\x45\x51\x14\x45\x51\x14\x45\x29\ -\x10\x6d\xb6\x05\xa8\xc3\x34\x60\x1e\x30\xc1\xb6\x20\x19\xe2\x08\ -\xf0\x0c\xb0\xdf\xb6\x20\xe3\xe1\x04\xe0\x76\x60\x18\x18\xd5\xad\ -\xe1\xed\x08\xb0\x1e\xe8\x6a\xf4\xc1\xa7\x81\x49\xc0\x66\xec\x3f\ -\xc4\x3c\x6c\x4f\x03\xc7\x47\x3d\xf0\xf6\xa8\x08\x2d\xa6\x07\x58\ -\x6e\x5b\x88\x9c\x70\x22\x92\x1b\x3c\x58\x2f\x52\xda\xea\x00\x3b\ -\x80\x39\x6e\x78\x14\xf8\x11\xf0\x82\x35\x69\xb2\xc7\xc9\xc0\x27\ -\x8c\xfd\xe7\x81\x37\x59\x92\xa5\x61\x4a\xf8\xb3\xb0\x47\xec\x8a\ -\x93\x59\x1e\xc7\x7b\x86\x87\xa3\x22\x97\x12\x17\x27\x3e\x41\x59\ -\x5e\xb5\x22\x45\xf6\x79\xc5\x08\x47\xbe\xdf\x34\x29\x80\x62\x01\ -\x55\x80\x82\xa3\x0a\x50\x70\xd2\xdc\xcb\xd6\x05\x7c\xc4\x52\xda\ -\x83\xc0\x5d\x96\xd2\x2e\x2c\x13\xf0\xb7\x02\x76\x93\x6c\x47\x49\ -\xbd\x6d\x47\xb2\x7f\x35\x51\x1c\xbc\xff\x31\x1c\x15\x59\x8b\x80\ -\x82\x33\x96\x22\xe0\x4a\xe0\x1a\xa4\x83\x61\x3c\x0a\xb4\x04\xf8\ -\x77\x8c\x78\x1f\x07\x36\x1a\xfb\x25\xa0\x13\xb8\x0c\xe9\x39\x3c\ -\x16\xd8\x04\xac\x08\x5c\x37\x09\x58\x04\x7c\x0d\xaf\x33\x64\x00\ -\x78\x6b\x8d\x74\x66\x01\x0f\xc5\x90\x27\x57\x34\xa2\x00\x25\xe0\ -\x36\xe0\xea\x16\xa7\xbd\x07\xc9\x92\x67\x21\xf5\x82\x57\x81\x3e\ -\xa4\xaf\xbb\x1f\xf8\xbe\x7b\x6c\x07\xf2\xd2\x5f\x8f\x64\x7d\x3b\ -\x81\x2d\xc0\xef\x80\xc7\x80\xb9\xc0\x51\xbc\xec\x7d\x41\x20\x9d\ -\xc8\x7e\xf3\xa2\x73\x2d\xcd\x2d\x67\xcb\x81\xfb\xd7\xaa\x03\x2c\ -\x75\xcf\xff\xc2\x38\x57\xa9\xa0\x1d\x0f\x8c\x00\xf7\xb9\xfb\xe7\ -\x1b\x71\x0e\x01\x57\xb9\xc7\x97\xba\xc7\xfa\x6b\xa4\x55\xd8\x3a\ -\x40\x23\x39\xc0\x17\x03\xfb\x7b\xf1\xf7\x3a\x35\x4a\xa4\x70\x75\ -\x38\xc3\xfd\x3d\x88\x0c\x78\x84\x71\x1c\xb0\x1a\xb8\x13\xf8\x03\ -\xa2\x10\x4a\x80\xb8\x0a\x30\x13\x38\xc9\xd8\x7f\x14\x78\x27\xf2\ -\xf5\xb5\x8a\xa7\x90\x2c\xbe\x1f\x58\xe7\x1e\x3b\x0d\x79\xd1\xb5\ -\x38\x09\xe8\x40\x9a\x75\xbb\x80\x19\xee\xf1\x61\xe0\xec\x40\xdc\ -\xf5\xc0\x9b\x9b\x25\x6c\x56\x88\xab\x00\xc1\x87\xfc\x3c\xad\x7d\ -\xf9\x20\x5f\xf3\x6a\x63\x7f\x1a\x32\x5a\x18\x45\xe5\x3f\x0e\x05\ -\x8e\x6f\x0d\xec\x17\x32\x87\x48\x73\x47\x50\x90\x8f\x02\xa7\x23\ -\xb5\xfe\x13\x81\xf3\x80\x29\x11\xd7\x1c\x02\x5e\x76\xc3\xd3\x8d\ -\xe3\x13\xc8\xb8\xd9\x54\xb3\xc8\x92\x02\x5c\x0a\x7c\xa0\xc1\x6b\ -\xee\x45\x6a\xfe\xf3\x91\xec\xff\x40\xb3\x85\xca\x3a\x59\x52\x80\ -\x38\xec\x02\x56\x21\xc5\xd3\x2e\xe0\x0e\xf7\xf8\xf5\xd6\x24\x4a\ -\x39\x79\x53\x80\xed\xc0\x97\x8d\xfd\xa9\x88\x42\x34\x9a\x73\x14\ -\x86\x2c\x28\xc0\x2a\xe4\xa5\xce\xad\x13\xe7\xed\xc0\xc3\x81\x63\ -\x9d\xee\x35\xc7\x18\xc7\x3a\x42\xe2\x15\x9a\x2c\x28\xc0\xfc\x18\ -\x71\xba\x80\x73\x63\xc4\x6b\x8f\x19\xaf\x30\xa4\x59\x01\xfa\x81\ -\xfb\x2d\xa5\xbd\xd7\x52\xba\x2d\x27\xcd\x0a\xb0\x1b\x7b\xf6\x00\ -\x85\x41\x87\x83\x0b\x4e\x9a\x73\x00\xdb\x4c\x46\xc6\x3f\x2e\x46\ -\x46\x1f\xe7\x00\x7f\x06\x6e\x44\x06\x5a\x72\x81\x2a\x40\x38\x25\ -\xe0\x4f\xc8\xa0\xd3\x10\xd0\x0d\xcc\x06\x7a\x91\x96\x44\x8f\x35\ -\xc9\x9a\x8c\x16\x01\xe1\x9c\x89\x37\xe2\xf8\x2c\x52\x21\xdd\x0c\ -\xdc\x80\x34\x49\x67\xd4\xb8\x2e\x73\xa8\x02\x84\xb3\xd8\x08\x6f\ -\x33\xc2\x37\x21\xc6\x27\xdd\xad\x15\x27\x39\x54\x01\xc2\x29\x1b\ -\xe1\x97\x8c\xf0\x00\x62\x98\xa2\x39\x40\xce\x99\x6a\x84\x5f\x0e\ -\x9c\x7b\x10\xcf\xb2\x28\xf3\x68\x25\x30\x1c\x73\xda\x7c\xd0\xee\ -\xe1\x9f\x48\x0b\x21\x17\xa8\x02\x84\x63\x1a\x8f\x1c\x1b\x38\x37\ -\x00\xfc\xa3\x85\xb2\x24\x8a\x2a\x40\x38\xa6\xdd\x40\xd0\xe8\x64\ -\x3b\x39\xb2\x1e\xd2\x3a\x40\x38\x66\xc5\x6f\x7a\xe0\xdc\x6b\x5b\ -\x29\x48\xd2\xa8\x02\x84\xf3\x2f\x23\x3c\x3b\x70\x6e\x31\x39\x42\ -\x15\x20\x1c\xb3\x8c\x3f\x25\x70\xee\x6d\xad\x14\x24\x69\x54\x01\ -\xc2\xf9\x3b\x5e\x7f\xff\x54\xbc\x62\xa0\x93\x6a\x85\xc8\x34\xaa\ -\x00\xe1\x0c\xe2\x9f\x1d\x54\x99\x4f\x78\x1e\xd5\xfd\x02\x99\x46\ -\x15\xa0\x36\x7d\x46\xb8\x52\xee\x5f\x00\xfc\xcf\x82\x2c\x89\xa1\ -\x0a\x50\x9b\x27\x8c\x70\x65\x16\xd1\x85\xc0\x7f\x2d\xc8\x92\x18\ -\xaa\x00\xb5\xe9\x35\xc2\x4b\x90\xc9\x28\x0b\xf1\x37\x11\x33\x8f\ -\x2a\x40\x6d\x1e\x43\x26\x95\x80\xf8\x2f\xfe\x2a\xe2\x58\xf3\x45\ -\x6b\x12\x25\x80\x2a\x40\x6d\x06\x10\x1b\x80\x0a\x9f\x76\x7f\x77\ -\x5a\x90\x25\x31\x54\x01\xea\x63\x7a\x0c\x69\x47\x6c\x01\xe2\x78\ -\x35\xc9\x0c\xaa\x00\xf5\x09\x3a\x5a\x7e\x1c\xaf\x58\xc8\x05\xaa\ -\x00\xf5\x71\xf0\x1b\x80\x3e\x69\x49\x8e\xc4\x50\x05\xa8\xcf\x5e\ -\xe0\xaf\xc6\xfe\x45\xb6\x04\x49\x0a\x55\x80\x68\x76\x19\xe1\x85\ -\xc0\x59\xb6\x04\x49\x02\x55\x80\xfa\x4c\x47\xdc\xd1\x99\x7c\xce\ -\x86\x20\x49\xa1\x0a\x50\x9f\x6b\xf0\xcf\x2e\x06\x78\x1f\xf0\x06\ -\x0b\xb2\x24\x82\x2a\x40\x6d\x26\xe0\xb5\xfd\x0f\xe0\x55\x06\xdb\ -\x91\x4e\xa1\x5c\xa0\x0a\x50\x9b\x2b\x11\xe7\x94\x00\x6b\x81\x0d\ -\xc6\xb9\x15\xc4\x9b\xb6\x9e\x7a\x54\x01\x6a\xf3\x05\x23\xbc\x0e\ -\xb8\x0e\xcf\x27\x61\x3b\x70\x4b\xcb\x25\x4a\x00\x55\x80\x70\x2e\ -\xc4\x1b\x02\xde\x04\x3c\x87\x18\x89\xdc\x6a\xc4\xb9\x18\xf8\x60\ -\x8b\xe5\x6a\x3a\xaa\x00\xe1\x7c\xc5\x08\xff\xc0\x08\xf7\xe0\x6f\ -\x16\xde\x4a\xb5\xd1\x68\xa6\x50\x05\xa8\xe6\x0c\xbc\x0e\x9f\xff\ -\x00\x77\x1b\xe7\x06\x91\x96\x41\xa5\x42\xf8\x3a\xc4\xc3\x68\xda\ -\x96\xdf\x8b\x8d\x2a\x40\x35\xa6\x4b\xb9\x1f\x52\xed\x8b\xf8\x01\ -\xfc\xe5\x7f\x37\x7e\xcf\x64\xb9\xa4\x8c\xdf\x9b\xf6\x6d\x09\xa4\ -\x11\xf4\xe0\xfd\xc7\x04\xd2\x88\x62\x91\x91\xfe\x41\xe4\x0b\x0f\ -\xe3\x18\xc4\x5f\x72\x25\xee\x08\xb0\xac\x15\x02\xc6\xc0\x41\x57\ -\x0c\x19\x33\x3d\x46\x78\x3d\xb5\xcd\xbf\x8e\x00\x57\xe0\xd5\x07\ -\x4a\xc0\xcf\x81\x73\x12\x93\xcc\x32\x65\xf2\x9f\x03\x2c\x36\xd2\ -\x3e\x42\xf5\x7a\x06\x61\xbc\x05\xd8\x67\x5c\xd7\x8f\x38\x97\xb0\ -\x89\x83\xe6\x00\x63\xe2\x1b\x46\xf8\x0e\xe2\x2d\x1a\xb1\x05\xf1\ -\x61\x5c\x99\x4b\xd8\x89\x28\xee\x25\x4d\x95\x2c\x05\x94\xc9\x77\ -\x0e\x70\x16\xfe\xaf\xff\xd4\x06\xaf\x5f\x84\x2c\x6d\x63\x7e\x79\ -\xd7\x63\x67\x75\x76\x87\x06\x72\x80\xb8\x94\xc9\xb7\x02\x3c\x60\ -\xa4\xbb\x2e\x22\x6e\x2d\x4e\x41\xfc\x09\x99\xff\xa1\x97\xc6\xa6\ -\x92\x95\x90\x0a\xe6\x78\x9a\x95\x0e\x0d\x28\x80\x4e\x0f\x97\x75\ -\x86\x2a\xed\xfe\x21\xfc\x45\x41\x23\x6c\x43\x7c\x16\xaf\x47\x2a\ -\x88\x20\x7d\x0a\x4f\x20\x0b\x5b\x6c\x40\x3e\xa4\x32\x32\xc6\x30\ -\x13\xe9\x44\x9a\x86\x14\x1d\x1d\xf8\x73\x8c\x21\xa4\x4e\xb1\x1b\ -\x99\xab\xf8\x24\xb2\xf4\x8d\x39\x61\xa5\x65\x94\xc9\x6f\x0e\xf0\ -\x88\x91\xe6\x4d\xe3\xbc\xd7\x24\xc4\x17\xf1\x5f\xf0\xff\x97\x66\ -\x6e\x8f\x52\xdf\x71\xb6\x83\xe6\x00\xb1\x59\x8a\xd7\x74\x3b\x00\ -\x7c\xab\x81\x6b\xdb\x90\x11\xc1\xb3\xdd\xed\x4c\x60\x1e\xf1\xca\ -\xfd\x03\x48\x51\xb3\x13\x69\x6a\xee\x47\xe6\x1c\xbe\x82\xd4\x41\ -\xda\x90\xa2\x60\x32\x32\x21\xe5\x8d\x48\xee\x72\x91\x9b\xd6\xfd\ -\x88\x12\xb4\xcc\x51\x45\x99\xfc\xe5\x00\x25\xc4\xee\xbf\x92\xde\ -\x97\x62\x5c\xb3\x00\xb1\x08\xba\x07\x99\x23\x18\xf6\x85\xbe\x84\ -\xc8\xbe\x06\xb1\x27\xb8\x0a\xc9\xb6\x83\xf1\x5e\x40\xc6\x1c\x4e\ -\x68\x40\xe6\x0e\xe0\xb3\x88\xd2\x5c\x5e\x23\x8e\x43\x03\x39\x40\ -\x5c\xca\xe4\x4f\x01\x56\x18\x69\xed\x04\x26\x86\xc4\xe9\x40\xca\ -\xf3\x9f\x20\x2f\x2c\xec\x25\xfe\x06\x31\x10\xb9\x1c\xf9\x5a\xc3\ -\x28\x21\x8b\x56\x6c\x09\xb9\xc7\x41\xe4\x79\x2e\x69\x40\xf6\x32\ -\x32\x51\x35\x0c\x07\x55\x80\x48\x5e\x83\xf4\xe2\x55\xd2\xfa\xb0\ -\x71\xae\x13\x51\x8e\xdf\x23\x59\xac\xd9\xdd\xdb\x07\x7c\x17\x79\ -\x99\x41\xcf\x21\x71\x68\x43\xba\x8c\x37\x52\xad\x08\xa3\x48\x45\ -\x72\x25\x52\x9c\xd4\x6b\x09\x4c\x74\xff\x43\x18\x0e\xaa\x00\x91\ -\x5c\x67\xa4\xd3\x8b\x94\xb7\x4b\x91\x15\x49\xcd\x97\xbe\x19\x19\ -\xf8\x59\x86\x2c\x4a\xd1\x4c\xe6\x01\xdf\xa1\xf6\x2a\xe9\x7b\x80\ -\x5f\x23\x86\x29\x97\x20\x6b\x1a\x96\x81\x77\x20\x1d\x55\xb5\x14\ -\xc4\x41\x15\xa0\x2e\x33\x90\x0a\x57\x25\x9d\xfb\x90\xe9\x5e\xa3\ -\x48\x65\xec\x97\xc8\x3a\x05\x33\x13\x4a\x3f\x48\x09\x69\x8a\xde\ -\x82\xe7\x99\x24\x6a\xbb\xa1\xce\xfd\x1c\x1a\x50\x80\x22\xb6\x02\ -\x56\xe2\x77\xf4\x38\x17\xf9\xd2\xee\x41\xd6\x13\x6a\xda\x57\x13\ -\x93\xa3\xc8\x4b\x73\x90\xf5\x99\x67\x21\x4d\xc9\xd3\x91\x56\xc6\ -\x1c\x3c\xcf\xa5\xbb\x11\x57\xb5\x2d\x37\x47\x2b\x93\x8f\x1c\x60\ -\x11\x52\x96\x57\xd2\x58\x91\x40\x1a\xb6\x71\x68\x20\x07\x28\xca\ -\x60\xd0\x6c\xa4\xcc\xfc\x1e\xde\x7f\xde\x08\xfc\xd4\x9a\x44\x29\ -\x21\xef\x0a\x70\x2e\xb2\xc2\xc7\x20\xf0\x31\xbc\x69\x5d\xc3\xe4\ -\x6c\x86\xcf\x58\xc9\x6b\x1d\xe0\x64\xe0\x66\xa4\x49\xf7\x1e\xa4\ -\xc9\xb4\xca\x38\xbf\x06\xf8\x9b\x05\xb9\x52\x47\xde\x72\x80\x12\ -\x52\x91\x7a\x06\xf9\xea\xbb\xdd\xdf\x9b\x91\x41\x17\x90\x1a\x7f\ -\x8f\x0d\xe1\xb2\x4c\x99\xf4\x57\x02\x67\xe3\x55\x80\xcc\x11\xbd\ -\xee\xc0\x7d\xd3\x62\xbb\x97\x14\x0e\x05\xec\x07\xb8\x14\x99\xcb\ -\x3f\x8a\x7f\x46\x4f\x17\xfe\x2e\xdc\x5f\x35\x45\xd2\x74\xe3\x50\ -\x30\x05\xf8\x0c\x5e\xd3\x2e\x38\xa0\x73\xa7\x71\xbf\x3d\xd4\xb6\ -\xf2\xcd\x13\x0e\x05\x52\x80\xaf\x1b\xf1\x57\x07\xce\x5d\x1d\xb8\ -\xdf\x15\x14\x03\x87\x82\x28\xc0\xe7\x8d\xb8\x1b\xf0\xf7\x8d\xcf\ -\x47\x2a\x7f\x95\xf3\x6b\x9b\x2d\x6c\x8a\x71\x28\x80\x02\x5c\x86\ -\x97\xed\x3f\x87\xbf\x6b\xb7\x0b\xd8\x6a\xdc\xa7\x8f\xda\x23\x67\ -\x79\xc4\x21\xe7\x3d\x81\x53\x10\xbb\xbb\x12\xf2\x07\x3f\x84\x38\ -\x75\x04\x59\xdf\xe7\x2e\x3c\x93\xa9\x7d\xc0\x72\xc4\xbf\x9f\x12\ -\x42\x16\x15\xe0\x5a\x3c\xc3\x8b\x1b\x81\xa7\xdc\x70\x3b\xf0\x33\ -\xe0\x5d\xee\xfe\x61\xa4\xdc\xdf\x86\x32\x6e\xca\xa4\xa7\x08\xa8\ -\x98\x5e\xef\xc3\xcb\xfa\x27\x22\xf5\x00\x33\xeb\x5b\x9e\x80\x8c\ -\x59\xc0\x21\xe7\x45\x40\xe5\xeb\xbf\x1d\xc9\xfa\xe7\x21\x96\xbd\ -\xef\x75\x8f\x1f\x42\xdc\xbb\xdc\x5d\x7d\xa9\x12\x24\x8b\x0a\xf0\ -\x6d\x44\xb3\x27\x22\x96\xb5\x7d\xc8\x30\x2f\x88\x41\xc5\x39\xc0\ -\x6f\xed\x88\x96\x3d\xb2\xa8\x00\x2b\x91\x4a\xde\x28\xf0\x6e\xf7\ -\xd8\xd3\xc8\xe8\xde\x42\x37\xac\xc4\x24\xab\xa3\x81\xdb\x81\x4f\ -\xb9\x9b\x32\x0e\xb2\x98\x03\x28\x4d\x44\x15\x20\xdf\x8c\x46\x45\ -\x48\x93\x02\x0c\xe3\xef\xb0\x59\x80\x18\x76\x28\xf1\x29\x23\x4e\ -\x2b\x2a\x0c\x46\x5d\x90\xb6\x3a\xc0\x26\x64\x68\x17\xc4\x7c\x3b\ -\x57\xcb\xb3\x58\xe0\xa1\xa8\x08\x69\xca\x01\x00\xbe\x49\xce\x56\ -\xe4\xb0\xc8\x08\xf2\x3c\xeb\x92\x36\x05\x78\x18\xf1\xc3\x77\xd8\ -\xb6\x20\x19\x67\x08\x99\xdc\xd2\x1b\x11\x2f\x75\x45\x00\xc8\x40\ -\xcf\x26\xe0\x93\xc0\x69\xc0\x71\x76\xc5\xc9\x14\x87\x90\x8e\xb1\ -\xb5\x48\x53\xb9\x69\x94\x49\x7e\x2c\x40\xb1\x40\xda\x8a\x00\xa5\ -\xc5\xa8\x02\x14\x1c\x55\x80\x82\x93\xc6\x4a\x60\x5e\x99\x02\xbc\ -\xdf\xd8\xdf\x8a\xb4\x7a\x32\x41\x19\xad\x04\x8e\x97\x53\xf1\x3f\ -\xc3\x1f\xdb\x15\x47\xd0\x22\xa0\xe0\xc4\x55\x80\x91\xc0\xfe\xd4\ -\xd0\x58\x4a\x3d\x82\xcf\xac\xd5\x8e\x28\x42\x89\x5b\x07\x78\x11\ -\x31\xbf\xaa\xd8\xe0\x2d\x03\xee\x45\x5c\xa5\x29\xd1\xb4\x51\xed\ -\xd5\xeb\x59\x1b\x82\x8c\x87\x35\xc4\xf3\x5f\xa3\x5b\xf4\x36\x88\ -\x0c\x76\x65\x8a\xc9\x88\xb9\x95\xed\x87\x97\xf5\x6d\x04\x99\xcb\ -\x90\x49\x3a\x10\x7f\xba\xfb\xb1\xff\x20\xb3\xb6\x1d\x45\x7c\x08\ -\x9f\xdf\xe8\x43\x4f\x92\xb1\xba\x25\x2f\x21\x9e\xae\xb5\x1f\x21\ -\x1e\xa3\x88\x6b\xba\x81\xa8\x88\x8a\xa2\x28\x8a\xa2\x28\x8a\xa2\ -\x28\x8a\x92\x20\xff\x07\xdd\x01\xb7\x24\xc0\x40\xb7\x6f\x00\x00\ -\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x23\xfb\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ -\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ -\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xe2\x02\x0c\x00\x2b\x16\x25\xea\xb4\xc9\x00\x00\x20\x00\x49\x44\ -\x41\x54\x78\xda\xed\x7d\x79\x90\x9d\x65\x9d\xee\xf3\x9c\x73\xfa\ -\xf4\x92\x74\x3a\xe9\xec\x5b\x87\x24\x40\x02\x09\x48\x64\x13\x51\ -\x59\x95\xcd\x01\x41\xd4\x71\x46\xc5\x2b\xe8\x0c\x38\x5a\xcc\x8c\ -\x63\x39\x35\x55\xde\xa5\xee\x9d\xa9\xba\xd7\x9a\x9a\x3b\x5a\xea\ -\x8c\x0a\x28\x20\xcb\xa0\xac\x57\x50\x64\xcd\x40\x24\x84\xc5\x40\ -\x48\x42\x42\x16\x48\x48\x77\x96\xde\x92\xde\x4e\x9f\x73\x7e\xf7\ -\x8f\xf7\x79\xd3\x5f\xbe\xfe\xbe\xd3\xdf\x49\xba\x3b\xdd\xc9\x79\ -\xab\x4e\x25\x95\x9c\xf3\x2d\xef\xfb\xbc\xbf\xe5\xf9\x2d\x2f\x50\ -\x19\x95\x51\x19\x95\x51\x19\x95\x51\x19\xc7\xe3\x48\x8f\xe2\xbd\ -\x32\x00\xa6\x03\xa8\x05\xd0\x0d\x00\x24\x2b\x2b\x70\x1c\x01\x60\ -\x01\x80\xcb\x48\x9e\x41\x32\x47\xb2\xdd\xcc\x0a\x95\x25\x38\x3e\ -\x00\x30\x03\xc0\x27\x49\x7e\x09\xc0\xe5\x00\xa6\x00\xd8\x0c\x60\ -\x4f\x65\x09\x8e\x7d\x00\x4c\x05\xf0\x69\x92\x37\x00\x38\x17\x40\ -\x23\x80\x26\x00\x59\x92\x2d\x00\x9a\x2b\xcb\x70\xf4\x46\x66\x84\ -\xc1\x35\x53\x3b\xff\xcb\x00\xce\x01\x90\x0a\x48\x84\x3f\x05\x90\ -\x22\xd9\x6d\x66\x1b\x47\xe9\x7d\x6b\x00\xd4\x91\xac\x05\x50\x0d\ -\x20\x0b\xa0\x4a\xcf\xea\x9f\xcd\xf4\xc9\x03\xe8\x07\x90\x33\xb3\ -\x5e\x00\xbd\x00\xba\x00\xe4\x2a\x00\x48\x3e\xd9\xa7\x91\xfc\x33\ -\xed\x7c\x46\xa8\x85\x6b\x01\x64\x48\x7e\xcf\xcc\xb6\x03\x28\x0c\ -\x33\x00\xab\x48\x66\xb4\xc8\x0d\x66\x36\x1f\xc0\x7c\x01\x73\x1a\ -\x80\xc9\x00\x26\xea\x59\xab\xf4\x8c\x45\x2d\x7c\x0f\x80\xfd\x00\ -\xda\x48\xee\x35\xb3\x66\x92\xef\x01\x78\x4f\x40\xe8\x37\x33\x0f\ -\x92\x62\x05\x00\x83\x47\x5e\x13\x95\x8a\x58\x7c\xe8\xdf\xe6\x09\ -\x04\xed\x24\xef\x34\xb3\xf5\xc3\xf8\x5e\x4d\x00\x4e\xd4\x9f\xf3\ -\x00\xcc\x24\x39\xdd\xcc\xfc\xc2\x4f\x02\x30\x41\x5e\x49\x36\xf0\ -\x9c\x7e\xf7\xe7\x04\x82\x2e\x00\x9d\x00\x5a\x01\xec\x95\xdd\xf2\ -\x3e\x80\x1d\x00\xde\x05\xb0\x49\x6a\xac\x58\x01\xc0\xa1\xa3\x2f\ -\x95\x4a\xbd\x6e\x66\xbf\xd4\x04\x9f\x21\xb1\x1b\x1e\xb3\x00\xdc\ -\x0c\x20\x4f\xf2\x76\x33\xdb\x7a\x10\x21\x24\xcc\x2c\xe9\xfd\xaa\ -\x00\x4c\x26\x39\x03\xc0\x42\x33\xfb\x20\x80\xb3\x00\x7c\x40\x20\ -\x40\x19\xae\x67\x95\x80\xd1\x10\xf3\xbb\x02\x80\xcd\x24\x5f\x37\ -\xb3\x97\x48\xbe\x01\x60\x3b\x80\xbd\x66\xd6\x39\xcc\x92\x6c\xfc\ -\x1a\x81\x66\x96\x23\xb9\x0e\x40\x9f\x44\xef\xf4\x98\x7b\xd6\x00\ -\x38\x49\x0b\xf8\x2a\xc9\xbe\xb8\x1d\x15\x5e\x40\x92\x59\x92\x93\ -\x01\x9c\x0a\xe0\x33\x24\x6f\x01\x70\x03\xc9\x8b\x48\x9e\x24\xa3\ -\x73\xb8\x09\x87\x94\xa4\xc8\x62\x92\x1f\x03\x70\xa9\x80\x56\x0f\ -\xa0\x8b\x64\x97\x9e\xb3\x78\xdc\x02\x20\xb0\x50\x79\x92\xcd\x12\ -\xa5\xd3\x01\xcc\x8e\xb9\x6f\xbd\xec\x82\x89\x00\xb6\x93\x6c\x97\ -\x38\x8e\x1c\x37\xdf\x7c\x33\xd6\xac\x59\x33\x05\xc0\xb9\x24\xaf\ -\xd7\xe7\x12\x2d\x44\xa3\xa4\x4d\xd5\x08\x2c\x7e\x10\x04\x59\x81\ -\x77\x8a\x00\xbe\x40\xa0\x9b\x23\xdb\xa0\x3d\x9d\x4e\xe7\xcd\x0c\ -\x73\xe6\xcc\x41\x7d\x7d\x3d\xf6\xef\xdf\x7f\x7c\xb9\x19\x1e\x08\ -\x24\xa7\x93\xbc\x95\xe4\x7a\x92\x56\xe2\xd3\x29\xbe\x60\x4a\xdc\ -\xe2\x91\xac\x21\x79\x32\x80\x2f\x00\xb8\x97\x64\xc7\x10\xd7\x1c\ -\xed\xcf\xfb\x24\x7f\x0c\xe0\x6a\x92\xf3\x05\x44\x24\x91\x68\xc7\ -\x1c\x0f\x10\x78\xc1\x1c\x80\x0e\x92\x4d\xb2\x07\x62\xf5\xaf\x99\ -\xbd\x2b\x9d\xba\x27\x42\x8c\x66\x24\x76\xbf\x45\xf2\x16\x92\x67\ -\xc7\xd8\x16\x91\x5a\x29\xe4\xea\x15\x03\xff\xc6\x04\xbf\x43\x42\ -\x89\x52\x0f\xe0\x4c\x92\xe7\x03\x98\x43\xf2\x1d\x92\x7b\xc2\xf3\ -\x52\xa6\x8d\x33\xee\x8c\xc0\x30\x10\x66\x02\xb8\x0e\xc0\x05\x31\ -\x13\x4c\x00\xfb\xcd\xec\x31\x00\x0f\xc9\xba\xce\x87\xbe\x77\x32\ -\xc9\xcf\x00\xb8\x0a\xc0\x29\xd2\xc3\x49\xc7\x7e\x00\x5b\xcc\x6c\ -\x0b\xc9\xf7\x01\xb4\x00\x68\xd5\x02\x7c\x90\xe4\x55\x72\x0f\xc3\ -\xa3\x07\xc0\x93\x7a\x96\x93\x01\x2c\x4d\x38\x6f\x04\x30\x17\xc0\ -\xd5\x00\x4e\x00\xf0\x6b\x00\x0f\x07\x88\x2f\x96\x52\x71\xc7\x0c\ -\x00\xcc\x0c\x24\xa7\xc8\x50\xfa\x14\x80\x85\x31\x93\x75\x00\xc0\ -\x33\x00\x6e\x03\xf0\x07\x79\x11\x28\x16\x8b\x20\x39\x41\x52\xe3\ -\x93\x00\x3e\x03\x60\x71\x82\xc9\xcb\xc9\x5d\x6b\xd6\x9f\xdb\x01\ -\x6c\x01\xb0\xdd\xcc\x9a\x01\xec\x20\xd9\x0a\x60\x29\xc9\xa5\x31\ -\xd7\xe8\x06\xb0\xd6\xcc\xee\x07\xb0\x8f\xe4\x12\x81\x60\x9e\x6c\ -\x99\xd9\x02\x4d\xd5\x10\x64\xd8\x85\x00\xa6\x90\xac\x07\xf0\x38\ -\xc9\x0d\xc5\x62\xf1\xf8\x89\x83\x90\xbc\x86\xe4\x73\x24\x7b\x63\ -\x74\x66\x3f\xc9\x47\x49\x7e\x2a\x6a\x32\x49\x5e\x46\xf2\x7e\x92\ -\xbb\x87\xd0\xbd\x45\x5d\xab\x8b\xe4\x4b\x24\xff\x11\xc0\x27\x64\ -\x7f\xd4\x93\xac\x93\xba\xc8\x04\xae\x7d\x83\x44\x74\x31\x74\xad\ -\x02\xc9\x2d\x00\xfe\x5e\x0b\x9d\x25\x59\xa7\x45\x5c\xa0\x77\xfa\ -\x17\x92\x6f\x90\xec\x8e\xf8\x7d\xd4\x3b\xb6\x90\xfc\xbf\x24\x97\ -\x8f\x15\x1b\x60\xa4\x17\x3e\x25\x36\xf0\xdf\x49\xb6\x96\x98\x98\ -\xe7\x65\xc5\xd7\x84\x7e\x9f\xd1\x02\xfd\x96\x64\x7b\x82\x09\xde\ -\x48\xf2\x07\x24\xaf\x53\xd4\x71\x9e\xc8\x9e\xb8\xdd\x79\x32\xc9\ -\x1f\xeb\xb7\x16\x01\x80\x17\xa5\x6a\x52\x83\x5f\x8d\xf5\x24\x4f\ -\x20\x79\x2e\xc9\xbf\x24\xf9\x60\x82\x67\x34\x92\x7b\x48\xde\x2d\ -\x50\xa7\xc3\x20\x18\x6d\x40\x64\x46\x58\xfc\xd7\x6b\x57\x5f\x1a\ -\xa3\xaf\x8b\x00\xde\x02\xf0\x33\x00\x4f\x9b\x59\xaf\x37\x8c\x48\ -\x36\xea\x77\x5f\x06\x70\x76\x89\x85\x0c\x5f\x6f\xbf\x99\x6d\x01\ -\xf0\xfa\x10\xe0\x9c\x0c\xe0\x32\x00\x1f\x8d\x98\x07\x93\x01\xfa\ -\x0a\x80\xb7\x23\x0c\x51\x33\xb3\xfd\x24\xf7\x9b\xd9\x36\x49\x8a\ -\xad\x00\xde\x04\xf0\x11\x00\x2b\x82\x24\x52\x68\x4c\x03\x70\xa5\ -\xd4\x1e\x49\x3e\x2d\xbe\x84\xba\xee\x31\xe3\x05\x64\x49\x9e\x09\ -\xe0\x2f\x01\x9c\x1e\x61\x3d\x17\xa4\x97\x1f\x00\x70\xbb\x99\xb5\ -\x05\x16\xa7\x0a\xc0\x15\x62\x08\xcf\x49\xb8\xf8\x07\xfd\x73\x91\ -\x43\x69\x89\x65\xca\x80\x2b\x86\x00\xb0\x0c\xc0\x8d\x00\xce\x8f\ -\xb1\x1f\x5e\x04\xf0\x1f\x00\xd6\x27\x90\x74\x3d\x00\x76\x02\x58\ -\x0b\x17\x2b\x98\x28\xaa\xb9\xb6\x04\xf1\x35\x57\x7c\xc5\x96\x54\ -\x2a\xb5\xcb\x8e\x92\x3b\x30\x92\x44\xd0\xa9\x00\xfe\x0b\x80\x8b\ -\xf5\xc2\x51\xd6\xf5\x43\x00\x7e\x20\xa3\x2c\xf8\xdb\xab\xf4\xdb\ -\x8f\x96\xb1\xf8\x94\x7e\x9f\x21\x56\xf0\x23\x00\xce\x04\xd0\x28\ -\x52\xa9\xd5\x1b\x8e\x24\x17\xc0\xc5\x20\xae\x88\x91\x4c\xbd\x00\ -\xee\x12\x00\xfa\x86\x72\x73\xb5\x76\x79\x00\x07\x14\x30\xda\x24\ -\x09\x32\x49\x04\x51\xd4\xa8\x15\x61\x94\x01\xb0\x2b\x93\xc9\xb4\ -\x14\x8b\x45\x3b\x56\x00\x50\x45\xf2\x0a\x00\x37\xe8\x25\xa3\xac\ -\xeb\x67\x01\xfc\xc2\xcc\xd6\x04\x74\x5f\x16\xc0\x72\x92\xdf\x14\ -\x70\xea\x0f\x83\x9d\xab\xd1\xa2\xce\x11\x10\xe6\x02\x58\x48\x72\ -\x8e\x6c\x8c\x2e\x92\x97\x02\xf8\x92\x2c\xfa\xf0\x1c\xf4\x03\x78\ -\x09\xc0\xbd\x66\xb6\xc1\xfb\xeb\x65\x8c\x7e\x79\x1d\xef\xc3\x05\ -\xa0\xce\x2f\xf1\xdd\x1a\xb8\x38\x45\xae\x58\x2c\xee\x0c\x82\x74\ -\x5c\xdb\x00\x24\xcf\xd0\x0e\x9c\x15\xf3\x95\xcd\x00\xee\x31\xb3\ -\x17\x82\xee\xa2\x16\xea\x2b\x00\x3e\x56\x42\x87\xe6\xb5\x68\x4c\ -\x08\x88\x65\x32\xe4\x2e\x05\xf0\x12\xc9\x17\x00\x9c\x27\x70\x44\ -\xb9\x6f\xbb\xcc\xec\x3e\x00\xeb\x02\xcf\x55\xee\xfb\x57\x49\xd7\ -\x4f\x92\xea\x49\x95\xf8\xfa\x0c\x71\x05\x1d\x92\x3a\xef\x1d\x0b\ -\x46\xe0\xa5\x12\xdf\xb5\x11\xff\xb7\x4f\xfa\xf5\x25\x91\x33\x7e\ -\x34\x92\xfc\x88\xc8\xa2\xe9\x11\xbf\x2b\x88\x2b\x68\xd6\xc2\xcd\ -\x94\xc8\x27\xe2\x43\xce\xc1\x77\x6c\x92\x44\x59\x0e\x97\xa5\x54\ -\x17\xa3\x96\xd6\x8a\xf8\x69\x39\xdc\x39\x35\xb3\xe5\xca\x80\xba\ -\x3c\x21\x50\x97\x90\xbc\xc6\xcc\xde\x06\xb0\x7b\x28\xb5\x33\x96\ -\x01\x90\xd6\xae\xff\xb0\x08\x9f\x28\x15\xf3\x1a\x80\x07\xe1\xe2\ -\xe9\x41\x7a\xf7\x02\x00\x9f\x15\xc9\x12\x35\x5a\x05\x9c\x55\x5a\ -\xa8\x26\xe9\xd7\xd9\xfa\x73\x6e\x09\x42\xc6\x8f\x29\xfa\xc4\x89\ -\xee\x75\x00\x1e\x4e\xa5\x52\xdb\x0e\x53\x1f\xa7\x01\x9c\x2e\x29\ -\xf6\xd9\x18\x20\xc7\x49\xaa\xd3\x48\x7e\x56\xf6\xd0\x0b\x21\xfb\ -\x62\xdc\x00\xa0\x41\x86\xd5\x89\x31\xc8\xdf\x07\x60\xa5\x99\x3d\ -\x2b\x4b\x1b\xd9\x6c\x16\xfd\xfd\xfd\xf3\xc4\xf0\x7d\xa2\xc4\xb5\ -\x5b\x01\xfc\xde\xcc\xee\xd1\x75\xa0\x85\x3f\x83\xe4\xb9\x70\x59\ -\x47\x27\xca\x68\x6c\x90\x3d\x51\xce\x38\x00\xe0\x59\x33\xbb\xef\ -\x30\xb3\x95\xab\x00\x9c\xa2\x9d\x7f\x63\x8c\xe1\xeb\x3d\x8c\xa8\ -\x67\xab\x83\x0b\x1e\x6d\x03\xf0\xb6\x99\xed\x19\x0d\xc7\x60\x58\ -\x8d\x40\x92\xf3\x48\x7e\x43\x6e\x5f\x78\x02\x3a\x01\x3c\x67\x66\ -\xbf\x92\x0d\xe0\x1c\xf7\x62\x71\x1a\x5c\x7e\xe0\x95\x43\xec\x98\ -\x6e\x00\xdb\x48\xbe\x09\xa0\x5d\xff\xb6\x9f\xe4\x2e\x89\xed\x67\ -\x25\x21\x5a\x34\xc1\x93\x31\x10\x63\x60\x02\x51\xdc\x0a\xe0\x69\ -\x5d\x27\xe5\x8d\xb1\x6c\x36\x8b\x74\x3a\x8d\x42\xa1\x30\xd4\x0e\ -\x5e\x4e\xf2\x2f\x00\xfc\x59\x84\xf1\xea\x9f\xa3\x57\xdc\x42\x8d\ -\x3e\xa9\x88\x0d\x49\x00\x7b\x49\xee\xd4\xf7\xc7\x0d\x00\x52\x24\ -\x57\x00\xb8\x45\x06\x50\x78\xec\x04\x70\x0f\x80\x27\x02\x2f\x96\ -\x96\x3f\x7e\xab\x8c\xb5\xa1\x24\x52\x57\xc0\xd7\xf6\xa3\x4f\xb6\ -\xc4\x1e\xb9\x5f\xcd\x24\x77\x88\x63\xe8\xc1\x40\xda\xd7\x50\xef\ -\xda\x0f\xc0\x94\x43\xd8\x2e\xc0\xa2\x50\x28\x0c\xb5\xf8\x04\xb0\ -\x82\xe4\x17\xe5\x5a\xce\x8a\xf9\x4e\x97\x44\xfb\x6d\xfa\xbb\x37\ -\x12\xc3\x20\x68\x94\xbd\xb3\xee\x08\xec\x90\xd1\x67\x7d\x01\xcc\ -\x25\xf9\xb7\xe2\xc5\xa3\x28\xd0\x95\x21\x97\x88\x9a\xac\x6f\x94\ -\x88\x11\x84\x79\xfe\x8d\x24\xaf\x2d\x43\xaf\x5e\xa6\xfb\x76\x95\ -\x11\xcb\xdf\x06\xe0\xaf\x01\x2c\x4d\xa7\xd3\x43\x81\x26\x03\x17\ -\x4c\xfa\x9e\x28\xde\xb8\x6b\xf6\x91\x7c\x4a\x09\xb2\x90\x9d\xf0\ -\xa3\x12\x79\x0c\xeb\xa5\x4a\xea\x46\x7a\xe1\x52\xc3\x24\xfa\x49\ -\xf2\xf4\x18\x5a\x15\xa2\x49\x9f\x43\xa0\x06\x40\x49\x1d\x67\x93\ -\xbc\x0e\xc9\xc3\xab\xf3\xa4\xf7\x23\xbf\x9f\x4a\xa5\x0e\x21\x68\ -\x24\x7a\xe7\xc4\x78\x23\x71\x63\x01\xc9\xef\x92\xfc\xaf\xc5\x62\ -\xf1\xb2\x38\x0e\x40\xf7\x5a\x40\xf2\x56\x00\x37\xc5\x48\x3d\xaf\ -\xf3\x57\x02\xf8\x21\x80\x7b\xf5\x6f\x6b\x01\xfc\x3f\xcd\x4b\x94\ -\x78\x99\x05\xe0\x0a\x92\xe7\x8c\x0b\x15\xa0\xa0\xcf\x55\xd2\xe5\ -\xf5\x11\xfa\x76\x95\xc4\xff\x5b\xf2\xe3\x41\xb2\x01\xc0\x9f\x00\ -\xf8\xf3\x04\xd6\x7b\x10\xb0\x5b\xe1\xf8\xf9\x41\x29\x63\x81\x38\ -\x42\x0a\xc0\xc5\x24\x6f\x84\xe3\xe5\xab\xcb\x7c\xa5\x6a\x79\x15\ -\xb3\x04\x9e\x2d\x11\xae\xd9\x07\xa4\xf3\xaf\x2b\xb1\xf8\xbd\xb2\ -\x4b\x7e\x08\xe0\xf7\x41\x9d\x4e\xb2\x5b\xf3\x74\x5a\x84\xcd\x50\ -\x23\xf5\xb0\x45\xee\xf2\xd8\x96\x00\x7a\x91\x45\x88\x4f\xc0\x7c\ -\x07\xc0\x5b\x66\xd6\x13\x10\x9d\x0b\x45\xd0\x64\x63\x7c\xfe\x28\ -\x13\x98\x66\xb6\x1c\x2e\x37\x60\x90\x78\x54\xee\x40\x46\x46\xe8\ -\x17\xa4\x93\x27\xc6\x2c\x4c\x9b\xf4\x7c\x3e\xe6\x9d\x1a\xe5\x95\ -\x7c\x9d\xe4\xd5\x24\x67\x65\xb3\x07\x1f\xf5\x54\x00\x9f\x03\x70\ -\xbd\xdc\xd0\xa8\xd1\x07\x60\x35\x80\x5f\x00\xf8\x8d\x88\x1e\x7a\ -\x89\x62\x66\x3b\xcc\xec\x11\x6d\x8a\xa8\x77\x9d\x2a\x55\x31\x77\ -\x18\xd7\x69\x44\x24\x40\x46\xee\xcf\xd5\x70\xd9\x32\xa9\x90\xf5\ -\xdb\x0c\xe0\x11\x00\x2f\xfb\x5d\xa4\xd4\xed\xab\x01\x7c\x1c\x83\ -\xb3\x70\x4c\xc6\x4f\x3e\x40\xf4\x04\xb5\x4d\x03\xc9\x9d\x24\x5f\ -\x91\x31\x15\xa6\x6a\x9b\x48\xfe\x2f\x49\xa4\x38\x1d\xba\x51\x62\ -\x79\x87\x76\x5f\x43\x04\xa0\xfd\xfc\x4c\x87\x4b\x2f\xcf\x17\x0a\ -\x85\xf5\x22\xac\x6e\x05\xf0\xc5\x12\x8b\xdf\xaf\xc5\xbf\x0d\xc0\ -\x9d\x66\x96\x0b\x3e\x67\xe0\x79\xbb\x14\x97\x68\x8a\x31\x08\xf3\ -\x00\x5a\x49\xbe\xad\x6b\x8e\x3d\x1e\x80\x64\x56\x62\x76\x76\xc4\ -\xee\xef\x07\xf0\xba\x99\x6d\xc2\xa1\x25\x55\x53\x00\x7c\x48\x80\ -\x89\x92\x26\x77\xc0\x55\x13\x7f\x3a\x42\x7c\x4f\xd1\x0e\x9c\xe9\ -\xad\x64\x33\x43\x2a\x95\x82\x6a\x01\xbe\x29\x2a\x79\x52\xcc\x23\ -\x77\x00\xf8\x2d\x80\xbb\xe1\xca\xbe\x3e\xa6\x34\xb3\xf3\x63\x54\ -\x51\x46\xcf\xf2\x79\x65\xfc\xd6\xe9\xd9\xa7\x85\x40\xeb\x9f\xdd\ -\x47\x12\x7f\x02\xe0\x31\xcf\x29\x44\x91\x3a\x24\x7b\xcd\xec\x09\ -\x79\x42\x33\x71\x68\xe0\x2b\x0b\x60\x89\x48\xb5\x87\xc6\x32\x11\ -\xe4\x8b\x3e\x22\x01\x60\x66\xaf\xc9\x3d\xeb\x0f\x19\x39\x0b\x63\ -\x26\xbc\xdd\xcc\x1e\x27\xb9\x50\xd7\x5d\x12\x21\xa9\x16\x00\x38\ -\x8b\xe4\x4e\x33\xdb\x97\x4a\xa5\xaa\xcc\xec\x2c\xf9\xe0\xd7\xc5\ -\x88\x7d\xc8\x5d\x7c\x04\x2e\x3f\xef\x0d\x33\xeb\x17\xa9\xd4\x21\ -\x95\x70\xbe\xb8\xf9\xa8\x71\x0a\x5c\x2a\x9a\x4f\x07\x4f\x45\x48\ -\x8c\x9c\x74\xf6\xcf\x01\xfc\xce\xcc\x3a\xfd\xc2\x47\x91\x3a\x0a\ -\x01\xbf\x02\x97\xbb\x70\x01\x06\x47\x3e\x1b\x75\xdf\xe9\xde\x2d\ -\x1d\xab\x00\x38\x45\x08\x0e\x03\x20\x47\x72\x83\x99\xbd\x17\xb0\ -\x76\xa7\xea\xfb\x8d\x31\x5c\xfc\x5b\x24\xb7\x8b\x98\x79\x41\xe2\ -\x31\xbc\xa0\x4d\x70\x79\x76\x6b\x01\xec\x2b\x16\x8b\x9e\x84\xb9\ -\x06\xf1\x11\xc4\x2e\x2d\xce\xcf\x00\xac\xd6\xe2\x43\x2a\xea\x51\ -\x00\xdb\xc4\x25\xc4\x19\xb2\x55\x43\x18\xab\xfd\xa2\xb9\xef\x12\ -\xd5\xdd\x91\x90\xca\xcd\x69\x83\xbc\xab\x39\x49\x45\x78\x04\x4b\ -\x01\xec\x12\x19\x36\xe6\x00\x50\x0d\x97\xf5\x1a\x45\x7d\x76\x8a\ -\x00\xea\x0b\xe8\xbe\x79\x70\x01\x99\x89\x11\xba\x7f\xaf\x99\xad\ -\x94\x85\xdc\x22\xcb\xf9\x9a\x88\xef\x4e\x91\x5e\x3e\x0f\x2e\xd9\ -\xf2\x6b\x70\xe1\xe3\x52\x59\xc2\x2b\x01\x7c\x1f\xc0\x2a\x33\xeb\ -\x0f\x18\x63\xa6\x9d\xfa\x07\x49\x88\x66\xb8\x5c\x84\xf9\x65\xcc\ -\x41\x5e\x3b\xf9\x36\x00\x0f\x98\x59\x47\x84\x6d\x12\x3b\x94\x55\ -\xf4\x9a\x80\x1d\xf6\x28\xea\x65\x0c\xae\x57\xa6\xd3\x98\x02\x40\ -\xda\xcc\xa6\xcb\xa5\x8b\xda\x11\xdb\x25\x5a\x83\xa2\x72\xb6\xc4\ -\x7a\x5d\x04\x00\xf6\x89\x2e\xee\x05\xd0\xa7\x9a\xbb\x2d\xda\x19\ -\xe1\x67\x9d\x0f\xe0\x1a\x92\x1f\x87\x8b\xba\xc5\xed\xce\x22\x80\ -\xa7\x00\xdc\x0e\xe0\x29\x33\xcb\xf9\x6c\xe3\x83\x24\x7c\x5d\x1d\ -\xba\xbb\xbb\x0b\x92\x28\xad\x24\xfb\xe1\x32\x90\x97\x95\x50\x27\ -\x41\xb5\xb2\x5a\x3e\xfe\x23\x66\xd6\x26\x7b\xc4\xbb\xa4\x49\xa4\ -\xc0\x56\x00\x6b\xa4\x82\xc2\x00\x98\xa0\xe7\x98\xa1\xb9\x18\x53\ -\x00\x98\x28\x5d\x9e\x89\xe1\xd6\x37\xc1\x05\x59\x82\x00\x98\x29\ -\x5d\x5a\x1b\x03\x80\x3f\x4a\x15\x00\x2e\x34\xfa\xac\xc8\x9c\xf9\ -\x21\xb1\x5c\x27\x09\x60\x25\x16\xbf\x1b\xc0\x1b\x00\x7e\x04\xe0\ -\x99\xaa\xaa\xaa\xbe\x5c\x2e\x77\xc8\xe2\x03\x40\x77\xf7\x21\x92\ -\x75\x87\xc0\x52\x2b\x5b\x63\x28\x00\xb4\x8a\xe4\x7a\xdc\xcc\x76\ -\x7b\x77\x34\xb0\xbb\x93\xcc\xe3\x6e\xb8\xd4\xb3\x8e\x88\xff\xab\ -\xd3\x86\x99\x36\xd6\x78\x00\x5f\x20\x79\x42\x0c\x00\xda\x25\x01\ -\xba\x43\x6e\xe7\x74\x2d\x28\x23\xc4\x68\xb3\x3e\x85\x80\x0a\x79\ -\x4c\x6e\x5b\x21\xe2\xfe\x75\x88\x4f\x19\xeb\xd5\xae\xfa\x67\x00\ -\xcf\x98\x59\x7b\x2e\x97\x4b\x24\x96\xcd\xac\xa8\x6b\x27\xc9\x48\ -\x6a\x40\xf9\x99\x4b\x51\xa3\x05\x03\x51\xce\xf0\x26\x9d\x23\xdb\ -\x69\x4c\x01\x80\xda\x1d\x71\xc5\x9e\x5d\x66\xb6\x2b\x40\xfe\xc0\ -\xcc\xea\x84\xe4\xaa\x88\xdd\xdf\xa6\xdd\x57\x0c\x7c\xbf\xdf\xcc\ -\x56\x49\xc4\xee\x2e\xe3\xd9\xba\x01\x3c\x0f\xe0\x67\x66\x76\xbf\ -\x99\xb5\xc7\xb9\x62\x11\x63\x1e\xc9\xcf\x03\xb8\x08\xc9\xf2\x11\ -\x27\xeb\xbb\x97\x93\x3c\xb8\x48\xd5\xd5\xe5\x92\x8f\x68\x97\x2a\ -\x88\xaa\x1e\xad\x89\x31\x9a\x8f\x1e\x00\xc4\xff\xd7\x28\x7d\x3b\ -\x15\x63\x75\x07\xb3\x5b\x88\x81\xae\x1c\x51\xcc\xdf\x4e\x44\xa7\ -\x43\x15\xa5\xfb\x76\x60\xe8\xf6\x2c\x05\x01\xe9\x19\x00\xdf\x37\ -\xb3\xbb\x42\x3b\x7b\x28\x40\xcf\x55\x1a\xfb\xdf\xc2\x55\x19\x27\ -\x1d\x1f\x84\xcb\x60\xbe\xdc\xe7\xfa\xf7\xf5\xf5\x95\x33\x95\xd5\ -\x9a\x97\x9e\x18\x00\x78\x69\x5b\x3f\xdc\x00\xc8\x1c\xa1\x04\xa8\ -\x95\x45\x1e\x09\x00\x92\xbb\x65\xd0\x79\x77\x71\x1a\xa2\x73\xfd\ -\x8a\xf2\x00\x5a\x02\xb3\x92\x22\x99\x29\x16\x8b\x67\xc1\x05\x99\ -\xe6\x0f\xe1\x86\x15\x05\xb8\x27\xe5\x87\xaf\x46\x79\xf5\xf9\x73\ -\x48\x7e\x0e\xc0\x57\x31\x38\x91\x35\x58\x54\x1a\x95\x5b\x90\x92\ -\x6b\xfb\x79\x01\xf0\x37\x81\x39\xb2\x12\x1b\x28\x5d\x2c\x16\x67\ -\x89\x48\xbb\x18\xc0\x25\x31\x3b\x3d\xa5\x79\x9e\x11\x03\x90\xa3\ -\x06\x00\x2f\x9a\xd2\x31\x3a\xb8\x35\xa0\xbb\xab\xf4\x12\x93\x62\ -\x16\xaf\x35\x20\xe6\xab\x00\x9c\x60\x66\x67\xc2\x65\x18\x5d\x22\ -\x7f\x98\x43\xb8\x62\x1b\xe0\x32\x8d\x9f\x0e\x4c\x74\x52\xb1\xff\ -\x29\xb8\xc0\x54\x1c\x3b\xd9\x25\x1d\xed\x77\x6b\x75\x84\xb1\x76\ -\x21\x5c\x1b\x99\x77\x64\xb7\x58\x89\x79\x9f\x6d\x66\x27\xc3\xa5\ -\xae\x5f\x08\x57\xff\x30\xb5\x84\xa4\xae\xd7\x5c\xbf\x33\x96\x00\ -\xe0\x27\x23\x15\x43\x70\xf4\x86\xee\x35\x11\xd1\xa1\x59\xd3\x04\ -\x77\x93\xac\x35\xb3\xd3\xc4\xb5\x5f\x4f\x72\x56\xc2\xe7\x29\x00\ -\xd8\x69\x66\x6b\xf5\x3c\x49\x77\xff\x74\x92\x9f\x14\x85\x7c\x52\ -\x09\xe9\xf2\xa6\xb8\x84\xa9\x70\x19\xcf\x51\xde\xcf\x04\xd9\x03\ -\x5b\x45\x08\x85\x17\x2b\x45\x32\x63\x66\x27\xc1\x45\x42\x3f\xaf\ -\x3a\xc1\xa1\x54\x71\xaa\x0c\xa3\x74\x54\xdd\xc0\x8c\x44\x3b\x63\ -\x76\xa4\x85\x5e\xc2\xb7\x66\x8b\x62\x45\xab\xe0\xf2\xfa\x6e\x20\ -\xf9\x21\xb9\x8a\xe5\x94\x7f\x67\x01\x9c\x47\xf2\xaf\x01\xfc\x13\ -\x5c\x89\xd8\x50\xbb\x7f\xaa\x32\x79\x6e\x86\x8b\x66\x86\x41\xe9\ -\x45\xf8\x3a\x00\xbf\x04\x70\x9f\xa4\xdd\xdf\x09\xa0\x51\x3b\xb6\ -\x49\xaa\xe4\x1d\x33\x0b\xa6\x75\xa5\x74\x8f\x2f\x92\xbc\x50\xae\ -\x5d\x63\x42\x3b\xcc\x6f\xb6\xea\xb1\x06\x00\x96\x78\x81\x41\x00\ -\x90\xb1\x13\xa5\xc7\xab\x48\x7e\x40\x7e\xf7\xc9\x12\xf7\xe5\x1a\ -\xa8\x69\xb9\xa4\x57\xc3\x95\x97\x3f\x45\xb2\xab\x04\x00\xe6\x2a\ -\xbb\xe8\x0b\x70\xc9\xa4\x51\xef\x66\x12\xe5\x3f\x87\x8b\x21\xec\ -\x31\xb3\x22\xc9\xfb\xa5\xca\xae\x45\x74\x96\x71\x93\xa4\xd7\x6e\ -\x33\xfb\x9d\x9e\xeb\x43\xca\x7c\xbe\x44\x40\x48\x97\x39\xcf\x55\ -\x88\x4f\x34\x1d\x93\x00\x38\x24\xa6\xaf\x40\x78\x3a\xe6\xfb\x55\ -\x70\x89\x11\x7e\xa7\xc4\xe9\x7a\xaf\x2a\xf2\x9a\x8c\x70\x50\x26\ -\xad\xc5\xfc\x82\x24\xc0\x33\x25\xc4\xfe\xe5\x70\xd9\xbb\x67\x94\ -\xb8\xd7\x66\xed\xfa\xbb\xfc\xe2\x4b\x5c\xad\x52\x14\x74\x21\x5c\ -\xe4\x31\x1d\xa3\x0a\xf6\x90\x7c\xcf\xcc\x3e\x49\xf2\x4f\x45\x81\ -\x67\x0e\xd3\xfb\xca\x90\x4c\x0f\x77\xa6\xf0\x70\xc4\x02\x4a\xf5\ -\x01\x0c\x4f\x68\xa1\x84\x61\x94\x64\x47\x74\x03\xb8\x53\x04\xd3\ -\x85\x52\x19\xe1\x1d\x58\x0d\x97\x61\xbc\x13\x03\x4d\x21\x0e\x59\ -\x1c\xe5\xe6\xdd\x2c\x31\x1c\xb7\xf8\x6f\x4b\xec\xff\x00\x40\x9b\ -\x2f\xde\x0c\x44\xf7\x5e\x03\xf0\x2f\x6a\x5e\x71\x4e\x0c\x4b\x7a\ -\x2d\x5c\x13\xab\x19\x12\xf7\x55\x47\x30\xcf\x45\x0f\xc0\xb1\x04\ -\x80\x70\x9f\x9d\xf0\x82\x32\xc4\xae\xf5\x93\xcc\x1f\xc6\x7d\x5a\ -\xe5\xd6\x3d\x03\xe0\x49\x33\xdb\xa3\x88\x61\x83\xe8\x60\x44\xec\ -\xc0\x6b\xd4\x86\xf6\xff\x60\x20\x8d\xbc\x51\x0d\xa8\x6e\x90\x8d\ -\x11\xa7\xf3\x37\xc2\x65\xf2\xdc\x6b\x66\xad\x31\x1e\x45\x27\x80\ -\x17\xcc\xec\x51\x92\xd3\x25\xe6\x19\xda\x18\x53\x91\xac\x4d\xdd\ -\x7e\x01\x6e\x97\xd4\xc3\x29\xa1\xdf\x18\xd4\xb6\x76\xac\x01\x20\ -\x2f\x23\xc7\x62\xc4\x3a\x43\x96\x74\x5f\x99\x2f\xd1\x2e\x6a\x78\ -\x15\x5c\xc8\x76\x15\x5c\xc8\xb6\x00\xe0\x3f\xb5\x83\x17\x21\xba\ -\xb7\x4f\x13\x5c\x93\xea\x75\x66\xf6\xa4\x44\xe8\xc7\x01\x7c\x45\ -\xa2\x98\x31\x3a\xdf\x8b\xfd\x07\xe0\x42\xc4\xa5\xdc\xc9\x7d\x7a\ -\xae\x99\x70\x85\x2d\x33\x13\x48\xc2\xb0\x44\x6b\x86\x0b\x53\xaf\ -\x36\xb3\x6e\x92\xd7\xc8\x15\x0d\x03\x20\xec\x55\x1d\x75\x00\x78\ -\x54\xee\x8f\x71\xb9\xc2\xba\xae\xa0\x17\x4e\xfa\x12\x2d\xda\xf1\ -\xbf\x82\x0b\x10\xed\x32\xb3\x60\x60\x69\x97\x99\xfd\x5a\xbb\xef\ -\xe6\x08\xbd\x9a\xd6\x2e\xff\x36\x5c\xfd\xc1\x24\xb8\x66\x13\xcb\ -\x4a\x2c\xca\x56\xdd\xef\x36\xb9\x94\x16\x08\x1b\xc7\x3d\xe7\x1f\ -\xe1\x6a\x1d\x7c\xcd\x61\xd2\x39\xed\x96\xb1\x7a\x0f\x80\xff\xd4\ -\xbb\x9d\x85\xe8\xde\x86\xa6\x79\xeb\x19\x6b\x12\x20\x07\x17\xed\ -\x8b\x9a\x9d\x6a\x1c\x1a\x49\xeb\x17\x4b\x56\x8a\xc9\xea\xd1\x0e\ -\x7c\x19\x2e\x90\xf3\x9a\x99\x05\xa3\x83\x41\x1d\x5c\x00\xb0\xde\ -\xcc\x1e\x54\xcf\xc0\x8f\x44\x70\x0c\x19\xb8\xec\xdd\xaf\xcb\x68\ -\x8c\xf3\xb9\xfd\xce\xbf\x1f\xc0\x1d\x6a\x53\x57\x4e\x6d\x5e\x8b\ -\xde\x2b\x9f\x70\x4e\x57\xc1\x85\xa8\x57\x9a\xd9\xcb\x70\x0d\xa9\ -\x7d\x49\x5b\x5c\x27\x15\xdf\xaf\x78\x4c\x49\x80\x3e\x3d\x58\x94\ -\x04\xa8\x15\xf5\x9b\x15\x50\x7c\xfa\x55\x5c\x6a\x93\xaf\xfa\xb9\ -\x57\x7a\xde\x57\xf6\x58\x88\x30\x08\xab\xa0\x57\xcd\xec\x0e\x35\ -\x6f\x3a\x37\x66\x77\x9f\x33\x84\x38\xde\x24\x91\xff\x4b\x33\xdb\ -\x5c\xc6\xe2\x93\xe4\x09\xb2\xf8\x9b\x12\xcc\xe7\x7e\xb8\xd0\xf1\ -\xbd\xf2\x50\x76\x05\xde\xcf\x07\xd6\xa2\x1a\x64\x16\xa5\x0e\xf7\ -\x8c\x35\x00\x84\xe9\xde\x43\x0c\x31\x33\xf3\x25\xdc\x39\x7d\x67\ -\x5f\xc0\x20\x0b\x5f\xab\x43\x22\xf1\x3e\x33\x3b\xa4\x41\x64\x26\ -\x93\x41\x3e\x1f\x6b\x3b\xb6\x91\x7c\x4e\x46\xd8\x94\x18\xcb\x9e\ -\x31\x06\x1f\xe4\x25\x3c\x24\x51\xbc\xa1\x8c\xc5\xf7\xbc\xc3\x4d\ -\xb2\xf6\xe7\x0f\xe1\xc9\x98\xa8\xee\xef\xfb\x5d\x1f\x21\x31\xe7\ -\x21\x3a\xee\xef\x83\x5c\xfb\x86\x1b\x00\xa9\x23\x04\xc0\x01\xa1\ -\x38\x0a\x00\x75\x70\xc1\x8b\x9a\xc0\x76\xe9\xd4\x4b\x58\xc4\x02\ -\xd5\xc0\xe5\xfd\xb7\x84\x25\x4a\x89\xc5\xf7\xa3\x19\xae\x09\xe3\ -\x03\x70\x5c\xfc\x50\xee\x92\x3f\x17\x60\x1b\x5c\x82\xe8\x9d\x00\ -\xd6\x89\xe4\x49\x2a\xf6\x4f\x25\xf9\x55\xb8\xf8\x81\xcf\x70\x62\ -\x82\xfb\x66\x48\xe6\x1a\x1b\x07\xc5\x7c\x7c\xdf\xa0\xc9\x25\x00\ -\x60\x63\x06\x00\x66\x56\x34\xb3\xce\x50\xc2\x67\x70\xd4\x93\x9c\ -\x1d\xd2\xcb\x39\xed\x82\x28\x24\x4f\xd6\x44\x4e\x00\xc0\xda\xda\ -\x64\xd5\x5c\x5a\xb0\x82\x99\xad\x83\xeb\xe9\xf3\x04\x92\x25\x4f\ -\xee\x85\x2b\xcf\xba\xdd\xcc\xde\xf4\x06\x5f\x92\xc5\x27\x79\xba\ -\x28\xe4\xaf\x22\x79\xee\x20\xe1\x92\x61\xbe\x02\x60\x49\x5b\x5b\ -\x5b\x58\x5a\x4c\x45\x7c\x46\xf2\xbe\x91\xd8\xfd\xc3\x21\x01\x3a\ -\xe1\x62\xf8\x51\x00\x98\x02\xe0\x44\x35\x67\x0c\x8e\xdd\x70\x41\ -\x92\xbe\x88\xeb\x35\x8a\x11\xac\xee\xe9\xe9\x49\x0a\xc4\xe0\xdf\ -\x77\xa9\xed\x4c\x92\x1f\xb7\x01\x78\x39\x78\x3e\x41\x82\x1d\x9c\ -\x16\x48\x6f\x91\x47\x11\x97\xa4\x51\x8c\xe1\x47\x26\xc2\x75\x4f\ -\x59\x8c\x43\x63\x22\x53\x44\x81\x37\xc4\xd8\x46\x1b\xc6\x22\x00\ -\xbc\xd5\xbe\x13\xd1\x2d\x4d\xa6\x88\x96\xad\x8f\xb0\x98\xdf\x8e\ -\xd8\xa5\x84\x0b\xce\x9c\x87\xe8\xb4\xec\xa1\xc6\x24\x35\x6d\xbc\ -\x02\xc9\x32\x79\xa6\xc2\x15\x60\x7e\xdc\x8b\xdd\x21\x5a\xb5\xa5\ -\xe0\x1a\x4b\xde\x02\x17\xc9\x9b\x5e\xc2\xbd\xdb\x29\x83\xad\x37\ -\xe2\x1d\x1b\x00\x9c\x65\x66\xf3\x02\x36\x43\x13\x5c\x4e\x40\x63\ -\x09\x00\xec\x1d\x09\x00\x1c\x71\x69\x98\x32\x60\xae\x93\xf8\x8a\ -\x22\x57\x7e\x87\x40\x43\x08\x59\xce\xb3\xe1\x38\xf8\x49\x11\xcf\ -\x63\xea\x1c\xda\x56\xc6\x63\x4c\x54\xa0\xe5\x46\xb8\x34\xf2\x24\ -\x94\x6b\x9d\xdc\xc2\x59\xea\x19\xdc\xee\x5d\xd4\x74\x3a\x1d\xa5\ -\x0a\x4e\x26\x79\x3d\x80\x6f\x20\x3e\x6e\x9f\xc3\x40\x8f\xa1\xdd\ -\xda\xf1\x71\xdf\xdd\x2d\xef\xa3\x5f\xa0\xbf\x16\x2e\x1c\x1d\x36\ -\xcc\x5b\xcc\xec\x5e\xb8\xe2\x91\x9e\xb1\x26\x01\xfc\x4b\xbf\x85\ -\x88\x6a\x5d\x19\x36\x0b\x43\xa2\x6d\x87\x5e\xa6\x33\x02\x2c\x93\ -\xe1\x52\xa3\x67\x96\x01\xce\x1a\x92\x1f\x06\xf0\x2d\xb8\x66\xd4\ -\xe5\x8e\x8b\x00\xfc\x4f\xe5\x01\x9e\x50\x5b\x5b\x1b\xd5\x10\x62\ -\xba\xfe\xff\xdb\x88\xcf\x12\xce\xc1\xe5\x0c\xfc\xc4\xcc\xbe\x6b\ -\x66\x3f\x32\xb3\x57\x62\xbe\x7b\x36\xc9\x33\x75\x7a\x19\xc4\x66\ -\x2e\x41\x74\xb8\xb7\x4d\x35\x03\xad\x23\x21\x01\x8e\x18\x00\x4a\ -\xdc\x8c\xeb\x66\xe1\xfb\xfe\x2d\x54\xeb\x34\x3f\xde\x87\xab\x84\ -\x89\x1a\x93\xcd\xec\x3c\x33\x9b\x93\xe0\xf9\x6a\x25\xc2\xbf\x03\ -\xd7\x4e\x36\x6c\x53\x04\xff\x5e\x4a\xbc\x2f\x02\xf0\x35\x92\xdf\ -\xee\xed\xed\xbd\x38\xec\xce\x92\xfc\x2b\xb8\xb2\xb3\x09\x25\x54\ -\xe1\x8b\x70\x85\x27\x0f\x02\xe8\x24\xf9\x47\x15\xb0\x22\x66\x5e\ -\x4e\x80\x4b\x3d\x5b\x01\x57\xcd\x1c\x65\xf5\x1e\x18\x49\xf1\x3f\ -\x2c\x2a\x40\x3b\xb7\x5e\x0d\x22\x9a\x62\x74\xf7\x26\x19\x7e\xfd\ -\xd2\x01\xbe\xfe\x7e\x1e\x06\x47\xf3\x52\xaa\xef\x7f\x0f\xf1\x0d\ -\x14\xbc\x97\xe1\xc5\xfe\xe5\x18\x9c\x68\xc2\x80\xa8\x7d\x0a\x2e\ -\x32\xd8\x10\xb3\x88\x3e\x70\xb3\x50\xb6\x44\x4e\x46\x62\x3d\xc9\ -\x2b\x45\x35\x9f\x84\xf8\xcc\xa7\x83\x65\xe0\xe2\x30\x40\xd2\x24\ -\x2d\xce\xd6\x7d\xc3\xbf\xed\x54\xb6\xf2\x87\xd5\x1e\x2f\x9c\x5d\ -\x9d\xd7\xbc\x3d\x06\x17\x2b\xe8\x1f\xab\x00\x30\xb8\x2a\x9e\x73\ -\xe0\x78\xf6\x70\x7c\x7e\x2a\x5c\x46\xcd\xab\x01\xa3\x28\x2f\xdb\ -\x61\x11\x06\xa7\x61\x11\xc0\x09\x24\xb7\x92\x5c\xa9\xef\x0e\xa2\ -\x99\xa5\x37\xbf\x09\x97\x00\x12\x67\x30\xb6\xc2\x25\x68\x7e\x57\ -\x24\xd3\x2c\x81\xae\xa6\x84\x5d\xb0\x14\xae\xf3\x58\x0e\x2e\x51\ -\xf4\x1f\x64\xcc\x66\x62\xac\xfd\x35\x00\x7e\x0a\xe0\x61\x33\xdb\ -\x1b\x74\x4f\x05\xca\x46\x5d\x33\x7c\xcf\x02\xc9\x49\x6a\x9b\x73\ -\x62\x84\xf8\xef\x85\x2b\x63\xbb\x47\x12\xb3\x38\x66\x01\xa0\x5a\ -\xbe\x15\x70\xa5\xcc\x61\xa4\x57\x69\xf7\xad\x09\xb0\x5f\xfd\x24\ -\xbb\x04\x80\xf3\x63\xa4\x4a\x2f\xdc\x21\x0d\xdb\x42\x6d\xdb\xa8\ -\x64\x8e\x6f\xc1\xe5\x04\x64\x4a\x18\x59\x0f\x03\xf8\x1e\x80\x4d\ -\x66\xb6\x83\xa4\x4f\xd4\x6c\x42\x7c\xf9\x78\x5a\x52\x69\xb9\x8e\ -\xa6\x59\x88\xe8\x34\xb6\xbc\x0c\xbe\x1f\x02\x78\xc8\x37\xbb\x0e\ -\xf4\x00\x30\x9f\x11\x4d\xf2\x13\x88\xee\x02\x32\x47\xde\x44\x94\ -\xee\xef\x14\x43\x79\x1f\x46\xf0\xf4\xb1\xe1\xea\x12\x66\x00\xe6\ -\xab\x7e\x7e\x5a\xc4\x8e\xec\x06\xf0\x7e\xb0\xf5\x19\xc9\xa2\x44\ -\xe3\x92\x18\x02\x64\x8a\xc0\xb3\x1a\x03\x25\x53\x35\x5a\xfc\x9b\ -\xe0\x32\x71\xea\x62\xe8\xdd\x3d\x9a\xbc\x3b\xe0\x4e\xfc\xf0\x00\ -\xda\xad\xf3\x8a\x7b\x02\x16\x7a\x26\x66\x5e\x1a\x10\x5d\x93\xe8\ -\x77\xfe\xeb\x70\x25\x64\x8f\xf8\x9d\x4f\xb7\xea\xc1\xef\xf5\xe9\ -\x3d\x2f\xc3\xe0\x66\x12\x19\x81\x20\x1d\x63\x53\xac\x86\x4b\x43\ -\x7b\x1b\x23\x38\x86\xb3\x4d\x5c\xb5\xac\xe5\xd3\x22\x26\x6d\xa2\ -\x40\xb0\x0e\x03\x01\x0d\x93\x18\x9c\x00\x57\x58\x11\x76\xdd\x6a\ -\xb5\x00\x6f\x93\x7c\x57\xf3\x7b\x36\x80\xbf\x92\xce\xaf\x8b\xd1\ -\xf9\xad\x62\xf8\xee\x00\xb0\xc6\x97\x81\xfb\x9d\x99\x4a\xa5\xf6\ -\x02\xd8\x6a\x66\x07\x14\x4a\x9e\x11\xb3\xc8\xa5\x7a\x0b\x6e\x87\ -\x0b\x1b\xdf\x6f\x66\x3b\x82\xd7\x8f\x70\x93\x0d\x2e\x18\xd5\x84\ -\xe4\x39\x7d\x3b\x75\xed\xdf\x23\xba\x5e\x70\x4c\x02\xa0\x53\x06\ -\xd4\x95\x11\x13\x5a\xab\x5d\xf3\x5a\x80\x13\x28\xca\x5a\xee\x87\ -\x6b\x8e\xd0\x18\xa3\x93\x67\x9b\xd9\x4e\xf5\xca\xf9\x3a\x5c\x9d\ -\x40\x4d\x09\x9d\xff\x04\x80\x7f\x85\xeb\x4c\xd2\x17\xa0\x8b\xfd\ -\x9f\x86\x81\xba\xc5\x4d\xf2\x4e\x16\xa1\xbc\xce\xa2\xcf\x03\xf8\ -\x0f\x33\x7b\x35\x8a\x9a\x8e\x30\x30\xe7\x2b\x6a\x38\x33\xe1\xf5\ -\x57\xc3\xc5\x27\xde\xc4\x08\x8f\xe1\x04\x40\x9f\xda\xb1\x5f\x80\ -\xe8\x5a\x01\xc2\x25\x49\xbe\x13\x40\x75\x41\x87\x2d\x34\x4a\xd7\ -\xd6\x47\x3c\xdf\x2c\x92\xd3\x64\x4d\x5f\x80\xf8\xdc\xf8\xdd\x00\ -\x1e\x07\xf0\x63\xb8\xec\x9a\x7c\x70\xf1\x63\x18\xbb\x77\xd5\x54\ -\xb2\x43\xf7\xaa\x4f\xb8\x4b\xfb\xe4\x82\xce\xd1\xf7\xf7\x23\xbe\ -\xc1\x73\x0a\xee\xc4\xf2\x53\x11\x9d\x7d\x1c\x56\x5f\x1b\x01\xdc\ -\x6d\x66\xcf\x61\x04\x1a\x42\x8c\x24\x00\x7c\x7b\xb6\x59\xe2\xba\ -\xc3\xd1\xb1\xac\x24\xc1\x0e\xa9\x82\xe0\x64\xee\x53\x52\xc7\x49\ -\x11\x62\x37\x0d\x17\x70\x59\x24\x17\x8e\x31\x8b\xff\x5b\xb9\x62\ -\x2b\x15\xd8\x61\x82\xe0\x4e\x41\x47\xc8\x6d\x97\x0a\x5b\x88\x64\ -\x0d\x9e\xa7\xc2\xf5\x29\x3a\xc3\x9f\x43\xa0\x53\x4a\xb2\xea\x52\ -\x96\x0f\xb8\xaf\x05\xb8\x82\x97\x15\x70\x55\x40\x71\xae\x34\xe4\ -\xea\x3d\x6c\x66\xbf\xc0\xa1\xcd\xb4\xc7\x0d\x00\xfa\x45\x5e\x9c\ -\x8b\xc1\xa5\x5c\x19\xed\x74\xdf\x03\xc0\x67\x06\x15\x15\x26\x9e\ -\x2c\x3d\x19\x65\x10\x66\x30\xd0\x47\x37\x4a\xec\x3f\x29\x83\x6c\ -\x95\xce\xdf\x01\x92\xc7\x12\x4c\xc0\x5d\x22\x7a\x3a\x89\x98\xf6\ -\x45\x2e\x53\x65\xc9\x2f\xd7\xe2\x2e\x96\x14\x31\x00\xdd\xa9\x54\ -\x2a\x2f\x95\xb3\x5f\x6c\xe5\x47\x87\x90\x2a\x6b\xe0\x32\x91\x57\ -\x61\x94\xce\x1d\x1e\xee\x13\x43\xfa\x65\x69\x9f\xab\xc9\xa8\x8e\ -\x60\xc0\xb2\xfa\xce\x56\x0c\xb4\x8e\xc9\xcb\x45\xcc\xc8\x60\x4a\ -\xc2\xe5\x1b\x06\x1a\x3c\xff\x04\x2e\xaf\xae\x37\xbc\xeb\x93\xf4\ -\x03\x90\xf7\x72\x1d\x5c\x4e\x5e\x6d\x99\xef\x5c\x27\xd0\x9c\x08\ -\x17\xd1\x5b\x40\xf2\x64\x9d\x45\xb8\x48\x0d\xb4\x17\x8a\x72\x5e\ -\x5e\xe2\x3a\xdb\x64\xb8\x3e\x86\x61\x2e\x00\x1d\xf5\x41\xf2\x26\ -\x9d\xdb\x97\x8b\xe8\x83\x9b\x23\xf9\x88\x0e\x94\x0a\xff\xee\x83\ -\x24\x7f\x53\xa2\xdf\x70\xf0\xd3\xae\xb3\x04\x2f\x2a\x67\xb1\x23\ -\xee\x39\x4d\x67\x1a\x6f\x8f\xb9\x4f\x41\xf7\xea\x3d\x8c\x33\x84\ -\xf7\x91\x5c\x43\xf2\x0f\xea\x6d\x58\xea\x28\xb9\x1f\x0b\x88\x87\ -\xfd\x2e\x63\x41\x02\xf8\x87\xdf\x2d\x5d\xba\x2c\xc2\x5d\x4b\xeb\ -\xdf\x3a\xa4\xe7\x82\x29\x62\x1d\x3a\x74\x69\xb9\x7e\x5f\x2a\x65\ -\xad\x19\x2e\x8d\xeb\x61\xaf\x6f\x79\x18\xb3\x26\x00\x7d\x4d\xbb\ -\x37\x13\x41\xf3\x6e\x87\x4b\x41\x3f\x20\xf1\x9e\x42\xe9\xea\xa5\ -\xb0\xf7\x33\x4d\x12\x62\x52\x0c\x95\x5c\x54\xfc\xe0\xa7\x70\x6d\ -\x62\x46\xf5\x44\xd1\x61\x07\x80\x1a\x24\x75\x2a\xd2\xb5\x5c\x04\ -\x48\x2a\x62\x62\x26\x07\xec\x01\x0b\xa8\x90\x1d\xa2\x89\xe7\xa0\ -\x74\x8d\xa0\xe7\xeb\x3b\xf5\x39\x9c\x50\xe9\x0c\x15\x72\x5e\x1b\ -\x61\xfd\x1b\x5c\xba\xdb\xdd\x02\xd9\x1b\x02\x6d\x1f\x06\xaa\x9c\ -\x99\x70\x8e\xe3\xca\xc1\xf2\x32\x5e\x6f\x93\xfd\xd2\x37\xda\x07\ -\x47\x0e\x3b\x00\xbc\xfe\x25\xd9\x87\x81\x0c\x9a\xc9\x11\xf7\x9d\ -\x2a\xe3\x6b\x2b\x5c\x24\xb1\x18\xd8\x11\x6b\xe5\x9f\x2f\x43\x7c\ -\x85\xf0\x04\x19\x5e\x27\xc3\x85\x4c\xbb\x52\xa9\x54\x57\xf8\xb4\ -\x8f\x12\x13\xda\x00\xe0\x22\x92\x9f\x8e\x71\xcf\xfa\xe0\x32\x86\ -\xfe\x07\x5c\x0b\xb8\x37\x01\x3c\x4f\x72\x9f\x16\x3e\x13\x72\xe1\ -\x92\x4a\x05\x04\xbc\x83\x37\xcd\xec\x1f\x65\xc4\xe6\x7c\x77\xb1\ -\xd1\x54\x03\x23\xa2\x02\x26\x4c\x98\x80\x5c\x2e\xd7\x21\xda\xd5\ -\x5b\xc7\x8c\xb0\xec\xe7\xa8\xc5\xcc\xaa\xea\xea\xea\xfd\x81\x38\ -\x7c\x41\x3e\x7a\xb3\x2c\xf3\x86\x12\xb7\x9b\x13\x08\xa8\x14\x00\ -\x6c\x0d\x1c\xf5\x66\x25\x44\xff\x7c\x9d\xed\x13\xd5\x62\x2e\x0f\ -\x97\xe3\xf0\x00\x5c\x42\xcb\x41\xa9\xa3\xf3\x04\x7e\xaf\x6a\xa3\ -\x8d\x02\x7a\xbd\x3e\x49\xe7\xd3\xe0\xca\xca\xfe\x49\xea\xa5\xc7\ -\x6f\x1e\x75\x46\x49\x2b\x96\x30\xe2\x20\x18\x11\x00\xf4\xf7\x1f\ -\x8c\x5c\x76\x8b\x0a\x9d\x17\x23\xce\x6b\xbc\x24\x28\x14\x0a\xef\ -\xe2\xd0\x54\xe9\x03\x00\x5a\x48\x76\xe8\xb7\xd3\x62\x9e\x37\x25\ -\x91\x3c\x17\x2e\x8a\xb8\x14\x2e\x8e\xd0\x2b\xe3\x2d\xea\x11\xb3\ -\xea\x41\xf0\x19\xb8\x92\xf4\xf0\xe8\x12\xd5\x7b\x17\x06\xa7\x6f\ -\xfb\x72\xb8\xdd\x00\xda\x55\x8f\x30\x4f\x7a\x3e\x29\x9b\xf8\x38\ -\x80\xdb\x49\x0e\xa2\x7a\x55\x26\xbf\x42\x9e\xc0\x81\x71\x29\x01\ -\x42\x93\xf5\x9e\xce\xe9\x8d\x6b\xba\x58\x2f\x02\x68\x2f\xc9\x4d\ -\x21\x5d\xbe\x1f\xc0\x3a\xd9\x04\x33\x31\x10\x20\x8a\x22\x52\x7c\ -\x5f\xbf\x33\x05\x86\x09\x02\x58\x95\xdc\xd1\x14\x06\x7a\x16\x9c\ -\xaa\x83\x2a\x3e\x1c\xc1\x2c\x16\xe0\xe2\xf0\xb7\x99\x59\xb8\x57\ -\x7f\x35\x80\x06\x92\x53\x49\x36\xe9\x38\xf9\x25\x92\x70\x49\x00\ -\xd0\x0e\xe0\x25\x33\xfb\x57\xb8\x78\x45\x70\x81\x33\x24\x17\xc3\ -\x15\xae\x5e\x2e\x69\xb3\x73\x34\xd8\xc0\xd1\x70\x0b\xcf\x26\xf9\ -\x6f\x3a\x3e\x3d\xca\x0d\xca\xeb\x98\x94\xef\xc4\x5c\x22\x4b\xf2\ -\x2a\x9d\x22\xde\x97\xc0\xfd\xca\xcb\x6d\xdb\x43\xf2\x79\x00\xff\ -\x1b\xae\xb7\xff\x89\x7a\x9e\xeb\x49\xae\x8d\xf9\xed\x2e\x00\xff\ -\x0d\x83\x3b\x86\x4c\xd4\xce\xfc\xb2\xde\x65\x8d\x4e\x44\xef\xd3\ -\xfd\x8a\x49\xdc\x56\x6d\x84\x6c\x58\xcf\x93\x5c\x2c\x57\xb0\x55\ -\xd7\x5a\x4f\xf2\xe6\x91\x5e\x9b\xcc\x28\x61\xe0\x15\xed\xb4\x05\ -\x70\xa1\xd1\x28\x49\xb4\x18\xc0\xe7\x48\xe6\xcd\xec\xdf\x71\x68\ -\xce\x60\x0e\xae\xa4\xaa\xdd\xcc\x5e\x55\x67\x8f\x25\x43\x48\xb6\ -\xb4\x76\xec\x99\xea\xc9\x7f\x89\xbc\x8e\x66\x01\x61\x51\x09\x66\ -\xb0\x1e\xae\xc7\x40\x46\xcc\xe4\x0c\xb1\x7e\x93\x31\xd0\xad\x6b\ -\x1a\x92\xd7\xfb\xbf\x68\x66\x0f\x93\x7c\x42\x5c\x7f\x3e\x68\x34\ -\x2b\xca\x79\x23\x5c\xb6\xb1\xcf\x90\x5a\x04\xe0\x26\x92\x59\x33\ -\xfb\x29\x5c\xd7\xb5\x61\x3f\x47\x30\x3d\x0a\xbb\x1f\xe2\xe6\x3b\ -\xf4\xe2\x33\x25\xa2\xa3\x38\xff\x46\xb8\xc8\x59\x0f\xc9\x3d\x57\ -\x5e\x79\x65\xc7\xa6\x4d\x9b\xfc\x75\x72\xd9\x6c\x76\x47\xa1\x50\ -\x78\x5f\xc9\x24\xde\x13\x18\xaa\x95\x6b\x95\xc0\x37\x03\x2e\x0f\ -\xef\x14\xe9\xec\xea\x12\x56\xbb\xf7\x40\xce\x97\x9a\x38\x5b\x80\ -\x6b\xd2\xf3\x27\x31\xf8\x8a\xe2\x10\x9e\xd5\x51\xb4\x8f\x28\x10\ -\x56\x08\x89\xfd\x15\x70\xc5\x22\xd7\xe0\xd0\xf6\x74\xbe\xab\xea\ -\x2c\x49\x8f\x66\x33\xeb\x1a\x6f\x36\xc0\x41\x11\x57\x5d\x5d\xdd\ -\x93\xcf\xe7\xb7\x8b\xac\x39\x25\x86\x18\xf1\x20\x38\x05\x40\x6e\ -\xd3\xa6\x4d\x9b\x83\x3a\x50\x5e\x42\x1b\xc9\x75\x50\x1d\x9f\x26\ -\x69\xe2\x10\xef\xe2\xdd\x34\xef\x93\xa7\x87\x58\xfc\x19\x02\xe9\ -\x0c\x3d\x67\x55\x40\xaa\x24\x71\xf7\xfa\x44\xea\x3c\x00\x75\x28\ -\xc7\xe0\x92\xb5\xac\x0e\x8a\xf8\x3b\xb8\xb4\xb6\x19\x31\x06\xee\ -\x74\x49\xc7\xbd\x7a\xe7\xc2\xb8\x02\x80\x07\x81\xea\xfb\x7a\x65\ -\x14\xf6\xc1\xe5\xc9\x4d\x8e\x79\xe9\xa9\xe2\xd1\xe7\xc0\x25\x47\ -\xb4\x84\x76\x56\x8f\xa2\x78\x1b\x45\xd0\xec\x96\x34\x98\x39\x1c\ -\x8f\xab\x05\x3f\x9c\x5e\x3e\x79\x19\x79\x77\x92\xfc\x39\x5c\x92\ -\xe8\x66\x01\x22\x28\xbb\x27\xa9\x35\xdd\xad\x70\xc7\xe6\x4c\x29\ -\xc5\xad\x09\x1c\x73\xc4\x9b\xbc\x32\xee\x00\x10\x1a\x07\x64\x68\ -\x55\x21\x3a\x2b\xd8\x8f\x46\x00\x8b\x75\x46\x50\x4a\x2a\xe4\x40\ -\x08\x08\xad\x70\xd9\xc6\xdb\xc4\x19\xb4\x60\xa0\x5c\x7d\xe2\x28\ -\xbd\x5f\xb7\x9e\xe1\x55\xb1\x7a\xbf\x86\x4b\xe5\x5a\x83\x88\x6c\ -\x1e\xd5\x15\xfa\xa6\x94\x17\x21\xd9\xd9\x80\x29\x81\x7b\x96\xd4\ -\xdf\xbb\x02\x15\xc2\xe4\xd1\x78\x00\x00\x52\xa9\x94\x3f\x48\x22\ -\x25\x26\x2f\xae\xb2\xb6\x4e\x06\xdb\x3c\x4d\x5e\xa7\x12\x50\x83\ -\xe5\xc2\x05\x55\x11\x6d\xd6\xee\xd8\x88\x81\x66\x0d\xde\x80\xf4\ -\xee\x5f\x0a\x47\x56\x0b\xd1\x2f\x29\xd6\x2d\x97\x6e\x97\x16\xfa\ -\x31\xb8\xbe\x06\x8f\xc1\x25\x8a\xee\x09\xed\xf8\x34\xdc\xc1\x16\ -\xcb\xe0\x6a\x0a\xff\x5c\x34\x79\x75\x99\x6b\x35\x15\xae\xde\x72\ -\x27\xc9\xdd\x3a\x73\x68\x7c\x49\x00\x6f\x14\xa6\x52\xa9\x7d\x70\ -\xe9\xce\xbd\x02\x41\x5c\x96\x6e\x35\x5c\x3c\x61\x11\x5c\x62\x48\ -\x5e\xfa\xb0\x27\x24\x0d\xfc\x51\x70\x3b\x14\x6a\xfe\x23\x5c\xa7\ -\x91\xcd\x92\x0c\x07\xa4\x3f\xb3\x28\xbf\xe1\xa2\xef\x5f\xb0\x1d\ -\x2e\x99\xe5\x05\xf9\xf1\x0f\x02\x78\xc2\xcc\x5e\xd4\xbf\xb7\x45\ -\x88\x7b\x68\xd1\x3e\x05\x97\xcc\x7a\x31\xe2\x5b\xec\x27\xf1\xda\ -\x66\x4b\x25\x74\x49\xbd\x1c\x51\xbd\x00\x8f\x86\x04\x08\xb9\x33\ -\xf3\x75\xde\xcf\xd5\x18\x5c\x57\x10\x65\x5c\x3d\x07\x97\xf7\xf7\ -\x32\x80\x0d\xc1\x5c\xfc\x98\x31\x9d\xe4\x22\x4d\xfa\x5c\x4d\xe0\ -\x34\x59\xf2\xb5\x02\x44\xd0\x30\xf4\x95\xbd\xbe\x2b\x57\xb7\xd4\ -\xca\x5e\x01\x76\x87\x8e\x6e\x79\x07\xa5\xe3\xf6\x55\x7a\xb7\x65\ -\x70\x19\xcc\x57\xc2\x65\x11\x95\x1a\x1d\x92\x62\x07\xc4\x39\x94\ -\x2a\x3d\xbf\xdb\xcc\xbe\x83\x23\xac\x19\x38\x2a\x00\x88\x00\xc4\ -\x34\xb8\xd2\x2b\xdf\xac\x79\xd2\x10\xbb\xb1\x55\x13\xf5\x98\x00\ -\xd1\xa2\x26\x4b\x5d\xd1\x97\x67\x2a\xb0\xc0\x29\x2d\x78\x8d\x99\ -\x35\xc0\xc5\x19\x6a\xb5\x60\x29\x49\x89\x7e\xf9\xdd\x1d\x5a\xfc\ -\x3e\xfd\x7b\x11\x03\xfd\xfa\xa2\xac\xf1\x34\xc9\x89\xba\xe6\x62\ -\x31\x7a\x57\x09\x7c\xa5\x2a\x96\x0b\x32\x64\x57\x02\xf8\x37\xa9\ -\x90\xaf\xc0\x1d\x4e\x19\x75\x36\xe1\x1e\x00\xf7\x98\xd9\x3f\xc3\ -\x85\xd4\x0b\xe3\x46\x05\x04\xc7\xe4\xc9\x93\xd1\xdb\xdb\xeb\x63\ -\x06\xef\xc9\x2e\xa8\x11\xf2\xe3\x7a\x10\x53\xb6\xc1\x2c\x51\xc8\ -\xa7\xc9\x3f\x4f\xeb\x3a\x7d\xa1\xbc\x00\x5f\x17\x58\xd0\x27\x1f\ -\xd8\xd9\xbe\x43\x79\xb3\xee\xbd\x43\x9f\x9d\xd2\xef\x6d\x52\x35\ -\xde\x8e\xf0\x20\xb0\x00\xb8\xd2\xfa\xf8\xc3\xb3\x2e\x21\xf9\x59\ -\xc5\x19\x3e\x2a\x1b\x26\x3b\x04\xa0\x37\xca\x65\xbc\x1b\xae\x0c\ -\x6c\xa7\x9e\x2b\x8b\x81\xfc\x4a\x3f\x3a\xe1\x5a\xd7\xde\x0f\xd7\ -\xde\xe6\x88\x54\xc0\x51\x05\x40\x6f\x6f\x6f\x30\xda\xe5\x9b\x25\ -\xfa\x00\x8e\xdf\x9d\x71\x2a\x21\x2b\x1f\xf9\x14\x00\x27\xa9\xab\ -\xf8\x0c\x45\x17\x27\x49\xcf\x7b\xdb\x60\x28\xfd\xee\x81\xd1\x1f\ -\x58\xe8\xa1\xac\xab\x2a\x00\xd3\xc4\x32\x9e\x0a\x57\xe3\x77\xb9\ -\x74\xfd\x55\x02\x67\xc3\x10\x52\x76\x3f\x5c\xfa\xfa\xfd\x32\x22\ -\x5f\xc5\x40\xfd\x64\x8b\x40\xe0\x83\x4d\x13\xc4\x64\x3e\x6a\x66\ -\x3f\x94\x04\x3c\xe2\x7a\xc1\x31\xa1\x02\x22\xc6\x4c\xb5\x60\xf9\ -\x92\x8c\xbf\xba\x32\x9e\xb5\x43\xbb\xe8\x65\xd1\xc6\x6f\x68\xa7\ -\xe7\x01\x14\x94\x2f\x50\xc4\xa1\x5d\x3c\xac\x04\x79\x74\xb0\xc7\ -\xb1\x82\x52\x69\xa9\x8f\x79\x70\x2d\xe8\xce\x86\x3b\x49\xf4\xd4\ -\x32\xa8\x4e\x95\xa9\x47\x00\x00\x03\x7c\x49\x44\x41\x54\xe1\x7e\ -\x79\x11\x6b\x24\xc6\x57\x22\x90\x56\x1e\xb4\x91\x94\x2d\xfd\xdf\ -\x75\x8f\x57\xcc\xec\x6f\x10\x3a\x5a\xe7\x58\x04\x00\xb5\x93\x97\ -\x89\x22\x0d\x76\xe1\x4a\xf2\xcc\x07\x42\x9f\x16\xb8\x6a\xe3\xf7\ -\xcc\x6c\x97\x76\x56\x2b\x06\x42\xae\xbd\x01\x57\x31\x8d\x81\xce\ -\xdc\xf5\x22\xab\xa6\x0a\x94\x73\xf5\x1c\x73\xf5\x6f\x9e\x8a\x9e\ -\x84\x64\xa1\x60\x2f\x59\x9e\x37\xb3\x87\x48\x3e\x0d\x60\x4b\xf0\ -\x5c\xa5\x88\x89\xa8\x96\x97\x34\x17\xc0\x01\x79\x1c\xc3\x96\x31\ -\x3c\x56\x01\x10\x9c\x80\x15\x70\x45\xa0\xe7\xc1\x25\x87\x34\xe1\ -\xf0\xfa\xe6\xb7\x69\xe1\xf7\x62\xa0\x1b\x48\x97\x74\x7c\x7f\x60\ -\x71\x7c\xb6\x4f\xb5\x8c\x43\x9f\xec\xd1\x88\x81\xfc\xbe\x72\x33\ -\x87\x4d\xf7\x5b\x0f\xd7\xd7\xf0\x19\xb8\x44\x90\x66\x94\x4e\x5a\ -\x09\x7a\x4b\x9e\xa1\x1c\xd6\x7e\xc1\xe3\x01\x00\x54\x30\x69\x19\ -\x5c\xea\xf6\x9f\x48\xbf\x06\x2d\xf7\x72\x16\x22\xea\xef\xe5\xcc\ -\x51\xb9\x69\x5f\x3d\x92\x32\xab\x01\xfc\xda\xcc\x7e\x25\xe0\x25\ -\xe9\x42\x39\xec\xd1\xbf\x71\x05\x80\x60\x83\x48\xe9\xdf\x7a\x33\ -\x9b\xad\xba\x83\xab\x44\xa5\x4e\x1d\xc3\xaf\xb0\x59\xae\xea\x6f\ -\xcc\x6c\x3d\xc9\xb6\x91\x88\xe8\x1d\xd3\x12\x40\xd4\xf1\x21\xa7\ -\x71\xaa\xaa\x77\xa9\x3c\x80\xa5\x32\xc0\x96\x22\x3a\xbd\x6b\x34\ -\x47\x9f\x5c\xba\xf5\x70\x39\x85\x1b\x00\xbc\x6d\x66\x1b\x30\x02\ -\x9d\xbe\x8f\x1b\x00\x44\x54\xfb\x78\x7d\xe8\xcf\x2e\x3e\x07\x2e\ -\x66\x7f\xba\x5c\xa6\x89\x32\xd0\x26\x20\x79\xfa\x76\xb9\xa3\x5f\ -\x5c\x42\x97\xfe\x6c\x13\x3b\xf8\xaa\x99\xad\x26\xf9\xa6\xfe\x2f\ -\xef\x0b\x55\x47\x53\xb4\x1f\x53\x00\x48\x30\x79\x13\xc5\xc0\x4d\ -\x04\x30\xcb\xcc\x4e\xd7\x69\x5c\x4b\x44\xc4\xcc\x1d\x66\xce\xe3\ -\x00\x5c\x29\xd7\x26\xb8\x8e\xe5\x6b\xd5\x7d\x64\x1f\x80\x6e\xb1\ -\x92\x7d\xe3\x62\x3e\x71\x6c\x8e\x59\x24\x67\xca\x6a\x6f\x94\x9d\ -\xd0\x00\x97\x71\x73\x3e\x02\x2d\x69\x43\x06\x5b\x9b\x18\x40\xcf\ -\x16\xf6\x98\x59\xb7\x2c\xf8\x76\x45\x1d\xf7\x62\xa0\x75\x6b\xab\ -\x9a\x42\x35\x23\xbe\x0b\xfa\x98\x1e\x99\x63\x14\x00\x9e\x45\x63\ -\x80\xc8\xc9\x98\xd9\x02\x15\x9c\xcc\x8e\x20\x97\x72\x70\x11\xc4\ -\x47\x31\x90\xfa\xdd\x23\x31\xde\xa1\x05\xdf\xab\x85\xce\x79\x5f\ -\x9c\x64\xd1\xc6\x8a\x3c\xaf\x00\x60\xc0\xc5\x0b\x2d\x4a\x5e\x22\ -\x79\x2b\x06\xce\x33\x0e\x2f\x5a\x0e\x2e\xbb\xe8\x17\x22\x75\x7c\ -\xc0\x27\xaf\x4f\xbf\x6f\x37\x73\x2c\x8d\x63\x15\x00\x71\xf6\x83\ -\x5f\xd4\x28\x26\xad\x08\xa0\xc3\x77\xfb\x3a\x5e\x46\x0a\xc7\xd7\ -\x28\x95\xd4\x49\x94\xd7\x27\xa8\x02\x80\xca\xa8\x00\xa0\x32\x2a\ -\x00\xa8\x8c\x0a\x00\x2a\xa3\x02\x80\xca\xa8\x00\xa0\x32\x2a\x00\ -\xa8\x8c\x0a\x00\x2a\xa3\x02\x80\x31\x3c\x86\x3a\x3a\xc6\x2a\x00\ -\x38\xbe\x07\x8f\xb7\x17\x1e\x77\xb1\x80\x09\x13\x26\xa0\xab\xab\ -\x2b\x83\x81\x63\xd6\x2d\xe1\xc2\xf6\x98\x59\x0d\xc9\x52\x05\x27\ -\x55\x70\x74\x70\xaa\x4c\x40\x04\x6b\x0b\xac\x82\xf8\x91\x1d\x35\ -\xea\xf0\x75\x29\x5c\xac\xbf\x3b\xe1\x7b\xf4\xc3\xa5\x7a\x9f\x03\ -\x97\x42\x36\x29\xf4\xbb\x3e\xb8\x70\xf0\xf3\x28\x7d\x58\x44\x78\ -\x54\xc1\xe5\x11\xac\x05\xf0\x07\x33\xdb\x59\x91\x00\x23\x0c\x00\ -\xb8\xf4\xaf\x2f\xc2\xa5\x68\xf7\x26\x5c\x2c\x9f\xf2\x5d\x1d\x90\ -\x1e\xc1\x91\x05\xf0\x01\xb8\xdc\xc2\x72\xe7\x70\x0f\xdc\xe1\x54\ -\xef\xc0\x95\x75\x55\x00\x30\xc2\x52\xab\x1a\x2e\xfd\xab\x1a\x87\ -\x57\x23\x50\xea\xba\x87\x73\xbd\x49\x70\xb9\x87\xe9\xf1\x36\x99\ -\xe3\xd1\x08\x34\x89\xeb\xb1\x94\x73\xd7\x27\x49\x54\xa8\x00\x60\ -\x74\x46\x7a\x8c\x3d\x7b\x7a\x0c\x3e\xd3\x31\xab\x02\xc2\xfe\x7a\ -\x61\x0c\x2c\x7e\x71\xbc\xf2\x08\xe3\x11\x00\xbe\x39\xd4\xfb\xda\ -\x71\x9d\x47\xd9\x9b\xc9\xc2\x65\x12\xb7\x60\x9c\xa4\x82\x8f\x77\ -\x00\xe4\xe0\x2a\x6e\x1e\x84\xab\xdc\xed\x3d\xca\x00\xc8\xe8\x0c\ -\x60\xdf\x23\x68\xdc\x59\xd4\xe3\xee\x99\x55\x32\x5d\x23\x09\x60\ -\x47\x71\xee\x0c\x00\xd5\x32\x26\x87\x81\x56\x32\x95\x51\x19\x95\ -\x51\x19\xe3\x60\xfc\x7f\x66\xf7\xc1\xe3\xfd\x1b\x32\x09\x00\x00\ -\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x0c\x83\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x0c\x35\x49\x44\x41\x54\x78\x9c\xed\ -\xdd\x59\xcc\x5c\x65\x1d\xc7\xf1\xef\xdb\xb7\xb4\x8d\x50\x90\x56\ -\x20\x86\xd5\x0b\x11\x01\x6f\x00\x29\x70\x81\xe0\x02\x98\x98\xc8\ -\x52\xd6\xc4\x04\x04\x15\x84\x78\x25\x08\xc8\xe2\x76\xc1\x26\xca\ -\x12\xf5\x06\x5c\xd8\x24\x2a\xab\x02\xde\xb0\x09\x15\x49\x40\xa0\ -\x10\xc3\x22\x20\x11\xa4\x24\x6c\x25\x40\xa1\x2d\xe3\xc5\x83\xa2\ -\x40\xe1\x9d\xe5\xfc\xce\x99\x79\xbe\x9f\x64\x2e\x9a\xbc\x33\xf3\ -\xfc\x9f\xe7\xff\xfc\x7b\x66\xe6\xfc\xcf\x01\x49\x92\x24\x49\x92\ -\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\ -\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x51\x53\x23\x7a\x9d\xb9\ -\xc0\xee\xc0\x2e\xc0\x16\xc0\x07\x46\xf4\xba\x92\xde\xf2\x0a\xf0\ -\x38\xb0\x04\xb8\x09\x78\x6d\xd8\x17\x1c\xb6\x00\xcc\x07\xbe\x09\ -\x1c\x03\x2c\x18\x76\x30\x92\x66\xec\x39\xe0\x7c\xe0\x2c\xe0\xa5\ -\x41\x5f\x64\x98\x02\xb0\x13\x70\x39\xb0\xd9\x10\xaf\x21\x69\x38\ -\x4f\x00\x07\x02\x77\x0c\xf2\xe4\x41\x0b\xc0\x9e\xc0\xd5\x94\x43\ -\x7f\x49\xed\x7a\x0d\xf8\x22\xf0\xc7\x7e\x9f\x38\x48\x01\xd8\x06\ -\xf8\x0b\xb0\xf6\x00\xcf\x95\xd4\x8c\x97\x81\x45\xc0\x03\xfd\x3c\ -\xa9\xdf\x02\x30\x0b\xb8\x13\xd8\xbe\xcf\xe7\x49\x6a\xde\x5d\xc0\ -\x8e\xc0\x1b\x33\x7d\xc2\xac\x3e\xdf\x60\x31\x6e\x7e\xa9\xab\xb6\ -\xa7\xec\xd1\x19\xeb\xb7\x00\x1c\xd9\xe7\xdf\x4b\xca\xea\x6b\x8f\ -\xf6\xf3\x11\x60\x3e\xf0\x3c\x30\xdd\xd7\x70\x24\x25\xad\x06\xd6\ -\x67\x86\x3f\x0d\xf6\x73\x04\xf0\x09\xdc\xfc\x52\xd7\x4d\x53\xf6\ -\xea\x8c\xf4\x53\x00\x36\xea\x7f\x2c\x92\x5a\x30\xe3\xbd\xda\x4f\ -\x01\x18\xd5\x69\xc3\x92\x3a\xa2\x9f\x02\xf0\x74\x63\xa3\x90\x34\ -\x4a\xcb\x66\xfa\x87\xfd\x7e\x09\xf8\x02\xfd\xff\x72\x20\x29\xa7\ -\xb1\x2f\x01\x5f\x02\x6e\x19\x64\x44\x92\x62\x6e\xa5\x8f\xe6\xa0\ -\x7e\xff\x37\xff\x69\x9f\x7f\x2f\x29\xeb\x67\xfd\xfc\xb1\xa7\x02\ -\x4b\x93\xa3\xef\x53\x81\x07\x6d\x06\xba\x13\x2f\xfa\x21\x75\xcd\ -\xb6\xf4\xd9\x0c\x34\xc8\x17\x7a\x0f\x00\x87\x00\xbd\x01\x9e\x2b\ -\xa9\x19\x3f\xa1\xcf\xcd\x0f\x83\x9f\xd9\xf7\x20\xa5\xfd\x70\x8f\ -\x01\x9f\x2f\x69\x74\x7e\x0b\x1c\x3a\xc8\x13\x87\x39\xb5\xf7\xcf\ -\xc0\x26\xc0\x76\x43\xbc\x86\xa4\xe1\x5c\x0e\x1c\x34\xe8\x93\x87\ -\x3d\xbb\x6f\x0e\x70\x03\xe5\x82\xa0\x29\x4f\x51\x8a\x8f\xd4\x35\ -\xbb\x00\x1f\x0e\xbe\xdf\x8d\xc0\x5e\xc0\xca\xe0\x7b\xbe\xc3\x02\ -\xca\x47\x82\x5e\xe8\xf1\x0c\xe5\xca\xc3\x52\x97\x7c\x84\x92\x9b\ -\xa9\x7d\xf0\x20\xe5\x84\x9f\x4e\xf8\x28\xe5\x2a\xa5\xa9\xe0\xef\ -\x07\xd6\x8d\x44\x26\xbd\xbf\xf5\x28\x5f\xc0\xa5\xf2\xff\x59\xca\ -\x9e\xeb\x94\xdd\x80\xd7\xc9\x4d\xc2\xf5\xc0\xec\x44\x60\xd2\x7b\ -\x98\x4d\xf9\x18\x9c\xca\xfb\xd7\x81\x4f\x45\x22\x1b\xc0\x61\xe4\ -\x26\xa2\x07\x9c\x9b\x09\x4b\x5a\xa3\xf3\xc8\xe6\xfc\x61\x99\xb0\ -\x06\x77\x3a\xd9\x09\x39\x3a\x13\x96\xf4\x0e\xc7\x90\xcd\xf5\xd3\ -\x32\x61\x0d\x67\x16\x70\x25\xb9\x49\x59\x4d\xf9\x26\x54\x4a\xda\ -\x8b\x92\x7b\xa9\x3c\xbf\x82\x31\xea\xc4\x5d\x1b\xb8\x9b\xdc\xe4\ -\xbc\x48\x39\x45\x59\x4a\xd8\x16\x58\x4e\x2e\xbf\xef\x62\x0c\xef\ -\xc3\xb1\x31\xf0\x24\xb9\x49\x7a\x0c\xd8\x30\x12\x99\x6a\xb6\x21\ -\xe5\x06\x9d\xa9\xbc\x7e\x92\xb2\x97\xc6\xd2\x76\x94\x53\x86\x53\ -\x93\xb5\x04\x98\x17\x89\x4c\x35\x9a\x47\xc9\xb1\x54\x3e\xbf\xcc\ -\x04\x9c\x69\xbb\x0f\xa5\x3d\x31\x35\x69\x97\xe0\xf5\x0b\x35\x7a\ -\x53\xc0\xa5\xe4\xf2\xf8\x0d\x60\xef\x48\x64\x01\xc7\x91\x9b\xb8\ -\x1e\x70\x4a\x26\x2c\x55\xe4\x54\xb2\x39\x7c\x6c\x26\xac\x8c\x29\ -\xe0\x02\xb2\x13\x38\x70\x83\x84\xf4\x36\x07\x93\xcd\xdd\x0b\x98\ -\xc0\xa3\xd8\x39\xc0\xcd\xe4\x26\x71\x05\xb0\x53\x22\x30\x4d\xb4\ -\x9d\x29\xb9\x94\xca\xdb\x9b\x28\x7b\x65\x22\x2d\x04\x1e\x22\x37\ -\x99\xcb\x80\xcd\x23\x91\x69\x12\x6d\x41\xc9\xa1\x54\xbe\x3e\x44\ -\x69\xae\x9b\x68\x5b\x92\x6d\x1c\x5a\x8a\x8d\x43\xea\xdf\xba\x94\ -\xdc\x49\xe5\xe9\x73\x94\xbd\x51\x85\xdd\x29\x3d\xcc\xa9\xc9\xbd\ -\x0e\x1b\x87\x34\x73\xb3\x29\x39\x93\xca\xcf\x95\x64\xaf\xa9\xd1\ -\x09\x47\x90\x9b\xe0\x1e\x70\x4e\x26\x2c\x4d\x80\x73\xc9\xe6\xe6\ -\xe1\x99\xb0\xba\xe7\x4c\xb2\x13\xfd\xf5\x4c\x58\x1a\x63\x47\x93\ -\xcd\xc9\x33\x32\x61\x75\xd3\x34\x70\x15\xb9\xc9\x5e\x05\xec\x19\ -\x89\x4c\xe3\x68\x4f\x4a\x8e\xa4\xf2\xf1\x4a\xc6\xa8\xc1\xa7\x29\ -\xeb\x00\x7f\x25\x37\xe9\x2f\x02\x5b\x47\x22\xd3\x38\xd9\x86\x92\ -\x1b\xa9\x3c\xbc\x9b\x31\x6c\xf0\x69\xca\x26\x94\x8b\x7d\xa6\x26\ -\xff\x51\x60\x83\x48\x64\x1a\x07\x1b\x50\x9a\xc9\x52\xf9\x37\xd6\ -\x0d\x3e\x4d\xd9\x1e\x78\x85\xdc\x22\xdc\x06\xcc\x8d\x44\xa6\x2e\ -\x9b\x07\xdc\x4e\x2e\xef\x5e\xc6\x5b\xeb\xad\xd1\xbe\xe4\x16\xa2\ -\x07\x5c\xc4\x04\x9e\x72\xa9\x19\x9b\x02\x2e\x26\x9b\x73\xfb\x44\ -\x22\x1b\x63\xc7\x93\x5d\x90\x93\x32\x61\xa9\x83\x4e\x26\x9b\x6b\ -\xdf\xca\x84\x35\xde\xa6\x80\x9f\x93\x5d\x98\x03\x22\x91\xa9\x4b\ -\x0e\x24\x9b\x63\x17\xe2\xd1\xe6\x8c\xcd\x01\x6e\x21\xb7\x38\xaf\ -\x02\x8b\x22\x91\xa9\x0b\x16\x51\xd6\x3c\x95\x5f\x37\x33\xc1\x0d\ -\x3e\x4d\x59\x08\x3c\x42\x6e\x91\x9e\x06\x36\x8b\x44\xa6\x36\x6d\ -\x4e\xb6\xc1\xe7\x61\x4a\x2e\x6b\x00\x5b\x01\xcf\x93\x5b\xac\xfb\ -\x80\xf9\x91\xc8\xd4\x86\x75\x29\x6b\x9c\xca\xa7\xe7\x81\x8f\x45\ -\x22\x9b\x60\x9f\x21\xdb\x38\xf4\x7b\x86\xbb\x6b\xb2\xba\x69\x1a\ -\xf8\x03\xb9\x3c\x5a\x09\x7c\x3a\x12\x59\x05\xbe\x42\x6e\xe1\x7a\ -\xc0\x8f\x32\x61\x29\xe8\xc7\x64\x73\xe8\x88\x4c\x58\xf5\xf8\x21\ -\xd9\x05\x3c\x32\x13\x96\x02\x8e\x22\x9b\x3b\x67\x65\xc2\xaa\xcb\ -\x34\x70\x0d\xb9\x45\x5c\x05\x7c\x2e\x12\x99\x9a\xb4\x07\xd9\x06\ -\x9f\xab\xf1\x23\x64\x63\xd6\x01\xee\x21\xb7\x98\x2f\x00\x1f\x8f\ -\x44\xa6\x26\x6c\x4d\xb6\xc1\xe7\xaf\x94\x1c\x55\x83\x36\x05\xfe\ -\x45\x6e\x51\xff\x0e\x7c\x28\x12\x99\x46\x69\x03\x4a\xd3\x57\x2a\ -\x4f\x9e\xa2\x34\xb5\x29\xe0\x93\x64\x1b\x87\xfe\x84\x8d\x43\xe3\ -\x64\x2e\xa5\xd9\x2b\x95\x1f\xaf\x00\x3b\x44\x22\xd3\x7f\x2d\x26\ -\xb7\xc0\x3d\xe0\x57\x78\x2a\xe7\x38\x98\xa2\x34\x79\x25\x73\x63\ -\xbf\x48\x64\x7a\x87\x13\xc9\x2e\xf4\x89\x99\xb0\x34\x84\x6f\x93\ -\xcd\x89\x13\x32\x61\xe9\xdd\x4c\x01\xbf\x24\xbb\xe0\xfb\x47\x22\ -\xd3\x20\x0e\x20\x9b\x0b\xbf\xc0\xa3\xc2\xd6\xcd\x05\x6e\x25\xb7\ -\xe8\xaf\x52\xbe\x83\x50\xb7\xec\x48\xb6\xc1\xe7\x56\xfc\x5e\xa8\ -\x33\x3e\x44\xf9\xb6\x3e\xb5\xf8\xff\xc2\xc6\xa1\x2e\xd9\x8c\xd2\ -\xcc\x95\x5a\xff\x47\xf0\x97\xa1\xce\xd9\x8a\xf2\xbb\x7d\x2a\x09\ -\xee\xc5\xc6\xa1\x2e\x98\x4f\x59\x8b\xd4\xba\x3f\x4f\xc9\x35\x75\ -\xd0\x67\xc9\x9e\xf5\x75\x2d\x9e\xf5\xd5\xa6\x69\x4a\xf3\x56\x6a\ -\xbd\x57\x51\x9a\xd3\xd4\x61\x5f\x23\x97\x10\x3d\x4a\x8f\x82\xda\ -\x71\x36\xd9\xb5\xfe\x6a\x26\x2c\x0d\xcb\xc4\x98\x7c\x16\x7a\xad\ -\xd1\x34\xe5\xf0\x3c\x95\x1c\x2b\xf1\xd0\x30\x29\xfd\x51\xef\x1a\ -\xfc\xa8\x37\x76\xd2\x5f\x0e\xbd\x80\x5f\x0e\x25\xa4\xbf\xec\xbd\ -\x07\x1b\x7c\xc6\x96\x3f\x0f\x4d\x96\x36\x7e\xee\xdd\x34\x12\x99\ -\x1a\xe3\x09\x22\x93\xc1\x13\xbe\x34\xb0\xfd\xc9\x25\x4e\x0f\x4f\ -\x11\x1d\xb5\x36\x4e\xf9\x5e\x1c\x89\x4c\x31\xe9\x26\x91\xe3\x33\ -\x61\x55\xe1\x04\xb2\x6b\x67\xd3\xd7\x04\xb2\x4d\x74\x3c\xd9\xf6\ -\xad\x91\xf1\x42\x11\xe3\xc5\x0b\xbf\x68\xe4\xbc\x54\xd4\x78\xf0\ -\xd2\x6f\x6a\x8c\x17\x8b\xec\x36\x2f\xfe\xaa\xc6\x79\xb9\xe8\x6e\ -\xf2\xf2\xef\x8a\x49\xdf\x30\xe2\xcc\x4c\x58\x63\xed\x2c\xb2\x6b\ -\xe2\x0d\x60\x2a\xe7\x2d\xa3\xba\xc3\x5b\xc0\x29\xce\x9b\x46\x76\ -\x83\x37\x81\x55\x6b\xe6\xe3\x6d\xa3\xdb\xe4\x6d\xe0\xd5\xba\xcd\ -\xc9\x36\x0e\x3d\x0c\x2c\x8c\x44\xd6\x6d\x0b\x29\x4d\x54\xa9\x79\ -\x7f\x1a\xaf\xe7\xa8\x35\x58\x04\xac\x20\x97\x8c\x37\x03\x73\x12\ -\x81\x75\xd4\x5c\xe0\x16\x72\xf3\xfd\x2a\x65\x8d\xa5\x35\x3a\x90\ -\x5c\x42\xf6\x80\x0b\xa9\xf3\xd4\xd3\x29\x4a\xd3\x54\x72\xae\x0f\ -\x48\x04\xa6\xf1\x77\x32\xd9\xc4\xfc\x56\x26\xac\x4e\x39\x9e\xec\ -\x1c\x9f\x94\x09\x4b\x93\x60\x0a\xb8\x98\x6c\x82\xee\x1b\x89\xac\ -\x1b\xf6\x25\x3b\xb7\x17\x51\xe7\x51\x96\x86\x30\x0f\xb8\x9d\x5c\ -\x92\xbe\x02\x6c\x1f\x89\xac\x5d\x3b\x90\x6d\xf0\xb9\x0d\x1b\x7c\ -\x34\xa0\x0d\x81\xc7\xc8\x25\xeb\x93\xc0\xc6\x91\xc8\xda\xb1\x09\ -\xa5\x39\x2a\x35\x9f\x8f\x52\x9a\xbf\xa4\x81\x6d\x43\xb6\x71\xe8\ -\x6e\x60\xed\x48\x64\x59\xeb\x50\x9a\xa2\x52\xf3\xf8\x22\xa5\xe9\ -\x4b\x1a\xda\x9e\x64\x1b\x87\xae\x04\x66\x45\x22\xcb\x98\x06\xae\ -\x22\x37\x7f\xab\x28\xcd\x5e\xd2\xc8\x7c\x9d\x5c\x02\xf7\x80\xd3\ -\x33\x61\x45\x9c\x41\x76\xee\x8e\xca\x84\xa5\xda\x9c\x4b\x36\x91\ -\x0f\xcf\x84\xd5\xa8\x23\xc8\xce\xd9\x39\x99\xb0\x54\xa3\xd9\xc0\ -\x75\xe4\x92\x79\x25\xb0\x5b\x22\xb0\x86\xec\x4e\xb6\xc1\xe7\x0f\ -\xd8\xe0\xa3\x86\xad\x0b\x2c\x25\x97\xd4\xcf\x01\x5b\x46\x22\x1b\ -\xad\x2d\x29\x63\x4f\xcd\xd3\x52\xca\xda\x48\x8d\xdb\x02\x58\x46\ -\x2e\xb9\x1f\x02\x16\x24\x02\x1b\x91\x85\x94\x66\xa7\xd4\xfc\x2c\ -\xa3\x34\x73\x49\x31\x3b\x93\x6d\x1c\xba\x89\xf1\x68\x1c\x9a\x43\ -\x69\x72\x4a\xcd\xcb\x0a\x60\xa7\x44\x60\xd2\xdb\x1d\x4c\x2e\xd1\ -\x7b\xc0\x05\x74\xfb\x94\xd6\x29\xca\x18\x93\x73\x72\x50\x24\x32\ -\x69\x0d\x4e\x25\x9b\xf0\xc7\x66\xc2\x1a\xc8\x71\x64\xe7\xe2\x94\ -\x4c\x58\xd2\x9a\x4d\x01\x97\x92\x4b\xfa\x37\x80\xbd\x23\x91\xf5\ -\x67\x1f\xca\xd8\x52\xf3\x70\x09\xdd\x3e\x1a\x52\x45\xe6\x01\x4b\ -\xc8\x25\xff\xcb\xc0\x76\x91\xc8\x66\x66\x3b\xca\x98\x52\xf1\x2f\ -\xa1\xcc\xb9\xd4\x19\x1b\x01\x8f\x93\xdb\x04\x5d\x69\x1c\xda\x98\ -\x32\x96\x54\xdc\x8f\x51\x9a\xb4\xa4\xce\xd9\x16\x58\x4e\x6e\x33\ -\xdc\x45\xbb\x8d\x43\x6b\x53\x9a\x97\x52\xf1\x2e\xa7\x34\x67\x49\ -\x9d\xb5\x17\xb0\x9a\xdc\xa6\xb8\x82\x76\x1a\x87\x66\x51\x9a\x96\ -\x52\x71\xae\xa6\xcc\xad\xd4\x79\xc7\x90\xdb\x18\x3d\xe0\xb4\x4c\ -\x58\xff\xe7\xf4\x21\xc6\x3b\xc8\xe3\xe8\x4c\x58\xd2\x68\x9c\x4f\ -\x76\x83\x1c\x96\x09\x0b\x80\x2f\x37\x18\xc7\xbb\x3d\xce\xcb\x84\ -\x25\x8d\xce\x6c\xe0\x06\x72\x9b\xe4\x75\x32\x97\xbc\x5e\xf4\xe6\ -\x7b\xa5\xe2\xba\x9e\x32\x97\xd2\xd8\x59\x0f\x78\x80\xdc\x66\xf9\ -\x1b\xb0\x56\x83\xf1\xac\xf5\xe6\x7b\xa4\xe2\xb9\x9f\x32\x87\xd2\ -\xd8\xfa\x08\xf0\x0c\xb9\x4d\x73\x68\x83\xb1\x1c\x1a\x8c\xe3\x19\ -\x4a\xd3\x95\x34\xf6\x76\x21\xd7\x38\xb4\xa4\xc1\x38\x52\x27\x3b\ -\xad\xa0\x34\x5b\x49\x13\xe3\x10\x72\xff\x7b\xae\xdf\xc0\xf8\xd7\ -\x0f\x8e\xff\xe0\x06\xc6\x2f\xb5\xee\xbb\x64\x36\xd0\xae\x0d\x8c\ -\x7d\xd7\xd0\xd8\xbf\xd3\xc0\xd8\xa5\x4e\x98\x02\x2e\xa3\xf9\x4d\ -\xb4\x5f\x03\x63\xdf\x2f\x30\xee\x4b\xb1\xc1\x27\x6a\x92\x2e\x3d\ -\x3d\x0e\x7a\x94\xdf\xd0\xef\x68\xf8\x7d\x9a\xd8\x44\x4d\x6f\xcc\ -\x3b\x78\xeb\xfc\x02\x85\x58\x00\xf2\x5e\xa5\xb4\xf3\x3e\xd1\xf6\ -\x40\x3a\xe4\x1f\x94\x39\x59\xd1\xf6\x40\x6a\x63\x01\x68\xc7\x32\ -\xe0\x0b\xc0\x4b\x6d\x0f\xa4\x03\x5e\xa2\xcc\xc5\xb2\xb6\x07\x52\ -\x23\x0b\x40\x7b\x96\xe2\xe5\xac\x00\x0e\xa4\x9c\xf0\xa3\x16\x58\ -\x00\xda\x75\x5d\xdb\x03\xe8\x80\xeb\xdb\x1e\x40\xcd\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ -\xc5\x2c\x00\x93\x69\xba\xed\x01\x68\x3c\xcc\x6e\x7b\x00\x6a\xc4\ -\xaf\x81\x29\xe0\x37\xc0\xea\x96\xc7\xa2\x0e\xf3\x08\x60\x72\x5d\ -\x06\x2c\x05\x0e\xc2\x23\x02\xa9\xb3\x7a\x81\xc7\xdf\x80\x83\x19\ -\xae\x10\x2c\x6e\x68\x6c\x52\xd5\x12\x05\x60\x14\x85\xc0\x02\x30\ -\x81\xfc\x08\x50\x97\xad\x80\x4b\x81\xfb\x19\xfe\x88\x40\x13\xc0\ -\x02\x50\x27\x0b\x81\x00\x0b\x40\xed\x2c\x04\x95\xb3\x00\xb4\x6f\ -\x45\xdb\x03\xc0\x42\x50\x2d\x0b\x40\xfb\x1e\x6f\x7b\x00\xff\xc3\ -\x42\x50\x19\x0b\x40\xfb\xee\x68\x7b\x00\xef\xc2\x42\x20\x85\x7c\ -\x9e\xec\x4f\x81\x83\xfe\x7c\xf8\xbb\x86\x5e\x5b\x2d\x9a\x6a\x7b\ -\x00\x62\x1a\xb8\x0f\xd8\xba\xed\x81\xb4\xc4\x1c\x6c\x91\x1f\x01\ -\xda\xb7\x1a\xf8\x46\xdb\x83\x90\xd4\xae\x1f\xd0\xfe\xa1\x7e\x1b\ -\x0f\x49\x94\x43\xe1\xb3\x69\x7f\x43\x5a\x00\xa4\x16\x7d\x09\x78\ -\x8e\xf6\x37\xa6\x05\x40\x6a\xc9\xfa\xc0\xf7\x80\xe5\xb4\xbf\x41\ -\x2d\x00\x52\x4b\x16\x30\xf9\x85\x40\xd2\xfb\x98\xe4\x42\x20\x69\ -\x86\x26\xb1\x10\x48\xea\xd3\x24\x15\x02\x49\x03\x9a\x84\x42\x20\ -\x69\x48\x0b\x80\xef\x33\x9e\x85\x40\xd2\x88\x8c\x63\x21\x90\x34\ -\x62\xe3\x54\x08\x24\x35\x64\x1c\x0a\x81\xa4\x86\x75\xb9\x10\x48\ -\x0a\xe9\x62\x21\x90\x14\xd6\x95\x42\xb0\xaa\xe9\x40\x25\xad\x59\ -\xdb\x85\xe0\x9f\xcd\x87\x28\xe9\xfd\xb4\x55\x08\x7e\x9f\x08\x4e\ -\xd2\xcc\xa4\x0b\xc1\x51\x99\xb0\x24\xf5\x23\x51\x08\x96\x03\x1f\ -\x4c\x05\x24\xa9\x7f\x0b\x29\xd7\x2a\x6c\xa2\x10\x9c\x10\x8c\x43\ -\xd2\x10\x46\x5d\x08\x6e\x03\xd6\x8a\x46\x20\x69\x68\xa3\x28\x04\ -\x4b\x81\x0d\xd2\x03\x97\x34\x3a\x83\x16\x82\x6b\x29\xd7\x3b\x94\ -\x34\x01\xfe\x53\x08\x9e\xe5\xbd\x37\xfe\xbd\xc0\x62\xbc\x0b\x50\ -\xe7\xb8\x20\x1a\x85\x79\xc0\xee\xc0\xce\xc0\x16\x6f\xfe\xfb\x05\ -\xca\x3d\x05\x6f\xa4\xdc\xfa\xac\xd7\xd6\xe0\x24\x49\x92\x24\x49\ -\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\ -\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\xa9\x33\xfe\x0d\xdc\x35\ -\x4a\x35\xde\x17\xd7\xc6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ -\x60\x82\ -\x00\x00\x06\xe3\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x06\xaa\x49\x44\x41\x54\x78\x9c\xed\x9d\x4d\x8b\x1c\x55\ -\x14\x86\x9f\xae\x9e\xcc\x98\x19\x25\xc1\x0f\x30\x41\x31\x5b\x09\ -\x2e\x44\x82\x08\x51\x04\x71\x9b\x2c\x5c\xe8\x42\x41\xdc\xa8\xc4\ -\x9f\xe0\xc2\x9d\x3f\xc0\x85\x0b\xdd\x4a\x36\xae\x05\x05\x89\x20\ -\x08\xee\x55\x04\x3f\xc0\x4d\xe2\x42\x49\x30\x99\x9e\xcc\x74\x4f\ -\xb7\x8b\xd3\xa7\xeb\xa3\x6f\x55\xf5\x24\x3d\xd3\x75\xef\xbc\x0f\ -\x24\x53\xe9\xa9\x99\x5c\xea\xbe\xf7\x9c\x73\xcf\x5b\xd5\x0d\x42\ -\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x22\x59\ -\x7a\x0b\xbe\x76\xd4\x4c\x56\x3d\x80\xe3\x48\x46\x37\x26\xdf\xe9\ -\xda\x78\x92\x24\x74\x81\xd7\x81\x3e\xab\x5d\x85\x7b\xc0\x78\x7a\ -\xdc\x5b\xf1\x58\x92\xa6\x47\x7e\x81\x2f\x00\x17\x81\x33\xc0\x26\ -\x36\x01\xab\x58\x81\x63\xe0\x5f\xe0\x77\xe0\x2b\xe0\x16\x12\xc1\ -\xa1\xe1\x13\xfc\x3a\x70\x09\xbb\xf8\x43\x56\x7f\xb1\xfb\x58\x24\ -\xba\x01\x7c\x8a\x89\x21\x23\x8f\x0a\x62\x49\xf4\x80\xe7\x81\x2b\ -\xc0\x5d\x6c\xe2\xbb\x92\x77\xc7\xc0\x49\x2c\x02\x7c\x0c\xfc\x8d\ -\x22\xc1\xd2\xc9\x80\x97\xb1\x8b\x3d\x21\x2f\xbc\xba\xf0\xa7\x0f\ -\xec\x00\xa7\x81\x0f\x80\x87\xe8\x96\x40\x93\x20\x03\xce\x02\xa3\ -\xe9\x71\xd7\x70\x11\x9c\x03\xde\x05\x4e\x4c\x5f\x97\x08\x96\x44\ -\x06\x6c\xd1\xed\xb0\xda\x07\xee\x00\xcf\x02\x6f\xa1\x28\xb0\x54\ -\x32\xba\x3d\xf9\x8e\x8b\xe0\x15\xe0\x32\x96\xb2\xba\x18\xb1\xa2\ -\x23\xa6\x8b\x98\x01\xdb\xc0\x6b\xc0\x8b\x48\x04\x4b\x21\xc6\x0b\ -\xb8\x07\xbc\x0d\x9c\x47\x22\xb8\x6f\x62\xbb\x78\x3d\xf2\x06\xd5\ -\x7b\xc0\x13\xac\xae\x61\x95\x04\xb1\x09\x00\x6c\xb2\x87\xd8\xb6\ -\xf0\x0a\x70\x0a\x15\x86\xf7\x4c\x8c\x02\x00\x1b\xf7\x5d\xe0\x49\ -\xe0\x7d\x60\x63\xfa\xba\x44\x70\x40\x62\x15\x00\xe4\x3b\x83\x67\ -\xb0\x9a\xc0\xa3\x80\x44\x70\x00\xd6\x56\x3d\x80\xfb\xc4\x45\xf0\ -\x12\x66\x20\x7d\x49\xdc\xa2\x5e\x26\x0b\x6d\xef\x63\x17\x00\xe4\ -\xdb\xc3\xcb\x98\x08\xae\xad\x76\x38\x9d\xc2\x23\x62\xad\x89\x96\ -\x82\x00\x9c\x5d\xe0\x4d\xe0\x3f\xe0\x67\x64\x1c\xed\x93\x3b\xbb\ -\xb5\xd7\xa2\x07\x7c\x76\x84\x83\x3a\x4c\xdc\xcc\x9a\x00\x83\x15\ -\x8f\xa5\x0b\x0c\x80\xeb\xc0\xb7\xc0\x2f\xd4\x88\x20\x25\x01\x40\ -\xae\xf6\xfe\xaa\x07\xd2\x01\x7a\x58\x84\x9f\x00\x5f\x00\x5f\x13\ -\xb8\xa7\x22\xa5\x14\x00\xf9\x0e\x60\xb4\xd2\x51\x74\x87\x5d\x6c\ -\x8e\xdf\x00\xfe\xc0\x6e\xac\x29\xd5\x05\xa9\x09\xc0\xd1\x56\xd0\ -\xe8\x63\x8b\x61\x03\x78\x15\xf8\x07\xdb\x35\xcd\x16\x48\xaa\x02\ -\x10\x39\x7d\xac\x69\xf6\x1c\xe6\x9f\xdc\x04\xbe\x07\xbe\x81\xc5\ -\x05\x30\xe1\x78\x57\xd4\xa9\xb0\x81\x75\x4f\xdf\x01\x9e\x02\x3e\ -\x5f\x54\x00\x1b\xd8\xdd\x38\xb1\x8a\x20\xd6\x71\x3b\xcb\x1a\xff\ -\x3e\x56\x17\xec\x62\xcd\xb3\x3f\xdb\x04\x30\xc1\x42\xc8\xaf\xc0\ -\x5f\xd4\x57\xd7\x8b\xe6\xdc\xba\xf3\x0e\xfa\x7a\xd7\xff\xdf\x7b\ -\xfd\xfe\x61\x8e\x67\x0c\x3c\x86\xad\xfc\x21\x26\x86\x17\x9a\x04\ -\xe0\x93\xbf\x0d\x7c\x82\x15\x0f\x22\x6e\x4e\x02\x1f\x61\x42\x18\ -\x02\x8f\xb7\x45\x80\x3e\x70\x1b\x2b\x22\x8e\xb2\xc7\x1e\x7b\xc8\ -\xee\x2a\x7b\xd8\x0e\xc0\x23\xc6\xa4\x4d\x00\x3d\xac\xa3\x34\x46\ -\x0f\x65\xc4\x8c\x77\x01\xd7\xb1\xfb\x28\xf6\x99\x2e\xee\xa6\x55\ -\xed\xad\xd5\x6d\x34\xf9\xa9\xf0\x00\x79\x77\xb0\x07\x6c\xb7\x85\ -\x75\x8f\x00\x7e\x2c\xe2\xe6\x41\xf2\x42\xbe\x55\x00\x33\x95\x14\ -\x7e\x40\xc4\x89\xcf\xdd\x16\x26\x80\xf1\xf4\xeb\x9d\xb6\x08\xe0\ -\x29\xa0\xf8\x4b\x44\xbc\x6c\x72\x80\x14\xe0\x85\x83\xac\xd5\x74\ -\xd8\xa2\xfc\x30\x50\x6b\x0d\x30\x22\x8f\x00\xda\x9a\xc5\x4b\x31\ -\x05\xf8\xce\x6f\x9f\x16\x01\x64\x7e\xd2\x21\x0e\x4c\x1c\x2d\x9b\ -\xe4\x76\x70\xab\x00\xc0\x22\x80\x52\x40\xfc\x78\xf4\xde\x22\x7f\ -\x90\x66\x44\x4b\x11\xe8\xfd\x63\xa5\x80\xf8\x29\x0a\xc0\x0b\xc0\ -\xc6\x08\xe0\x27\x15\x6b\x00\x11\x2f\x2e\x80\x4d\x6c\xe2\x5d\x00\ -\xad\x11\x60\x88\xf9\x00\x22\x7e\x8a\xef\x05\xe1\xf5\xdd\xa0\x4d\ -\x00\x83\xe9\x89\xa0\x14\x10\x2b\xbe\x03\xe8\x53\x4e\x01\x3b\xc0\ -\xb0\x6d\x17\xb0\x8d\x6e\xb0\x4c\x85\x35\xf2\x14\xe0\x36\xff\xa8\ -\xa9\x06\x70\x01\x68\xe5\xa7\x41\xb5\x0b\x38\x00\xc6\x8b\xa4\x00\ -\x3f\x16\x71\xe3\x3e\x40\xc9\xe3\x69\xdb\x05\xc8\x07\x88\x1f\x9f\ -\xbb\x4d\x72\x01\xcc\x3c\x9e\x45\x6a\x80\xe2\x2f\x11\xf1\xe2\x6d\ -\x60\x77\x02\x07\x50\x2f\x00\x19\x41\xe9\xe1\x29\x00\x6c\x6e\x5b\ -\x23\x80\x8c\xa0\x34\xa8\xa6\x00\x98\xf6\x00\xa0\x5e\x00\x32\x82\ -\xd2\x63\x8b\x5c\x0c\xb3\xb9\x6d\x8b\x00\x4a\x01\xf1\x53\x6c\x03\ -\x17\x8d\xa0\xd6\x1a\x40\x46\x50\x1a\x54\x8d\xa0\x59\x1b\x18\xc2\ -\x02\x90\x11\x94\x16\x45\x01\x94\x8c\x20\x68\x8e\x00\x32\x82\xd2\ -\x21\xc3\x52\x40\x71\x71\xef\xf8\x37\x42\xc8\x08\x4a\x83\xaa\x11\ -\xe4\x35\xc0\x0e\xb6\xc0\x1b\x77\x01\x32\x82\xd2\xc1\x8d\x20\x6f\ -\x02\x6d\x33\x5d\xdc\x75\x35\x80\x8c\xa0\xb4\x28\x1a\x41\xa5\xa7\ -\xbd\xda\x52\x80\x1f\x8b\xb8\xa9\x1a\x41\xb3\xb9\x6d\xda\x05\xc8\ -\x07\x88\x9f\x6a\x17\xd0\xdf\x5e\x7f\xb6\xbb\x6b\xab\x01\x8a\xbf\ -\x44\xc4\x8b\x1b\x41\x25\x27\x10\xc8\x42\x02\xf0\x26\x90\xba\x80\ -\xe9\x50\x34\x82\xa0\x30\xb7\x75\x11\xa0\xe8\x03\xa8\x10\x8c\x97\ -\x90\x11\x54\x32\xf9\x42\x02\x90\x11\x94\x1e\x41\x23\x08\xea\x23\ -\x80\x8c\xa0\x34\x08\x19\x41\x33\x1f\x00\xc2\x02\x90\x11\x94\x0e\ -\x21\x23\xa8\x31\x05\xc8\x08\x4a\x8b\x3a\x23\xa8\x31\x05\xc8\x08\ -\x4a\x8b\x90\x11\xd4\x9a\x02\x64\x04\xc5\x4f\x9d\x11\x74\x97\xa9\ -\x11\x04\x61\x01\xc8\x08\x4a\x8b\xaa\x11\x74\x87\xc2\xe2\x0e\xd5\ -\x00\x32\x82\xd2\xa2\xd6\x08\x82\xfa\x14\xa0\x36\x70\x3a\xd4\x1a\ -\x41\x30\x2f\x00\x57\x89\x9c\xc0\xf8\x69\x35\x82\x40\x11\xe0\x38\ -\x50\x35\x82\x7c\x71\x67\xb3\xbf\x0a\xc8\x08\x4a\x8f\xe0\x13\x41\ -\x4e\x28\x02\xc8\x08\x4a\x83\xba\x27\x82\x4a\x73\x5b\x15\x40\xe9\ -\x9e\x71\x91\x04\x55\x23\xa8\x34\xb7\xa1\x08\x30\x42\x1f\x0e\x91\ -\x02\x75\x4f\x04\x35\xa6\x80\x6a\x0d\xa0\x14\x10\x2f\x21\x23\x68\ -\xce\xe4\xcb\x2a\x3f\x20\x23\x28\x1d\x42\x46\xd0\x42\x11\x40\x46\ -\x50\x3a\x54\x8d\xa0\xd6\x1a\x40\x46\x50\x1a\xd4\x19\x41\x03\x2a\ -\x1e\x4f\x68\x17\x20\x23\x28\x1d\x6a\x9f\x08\xa2\xa6\x06\x90\x11\ -\x94\x16\x8d\x46\x10\x84\x53\x80\xda\xc0\xe9\xd0\x68\x04\x41\x38\ -\x05\xc8\x08\x8a\x9f\x85\x8c\x20\x08\x6f\x03\x15\x01\xd2\xa1\xf6\ -\x89\x20\xaa\x07\x53\x8a\x8d\x02\x11\x3f\x55\x23\x68\xae\xc5\x9f\ -\x55\x8e\x8b\xfb\x44\x15\x82\xf1\xb2\x90\x11\x04\x65\x01\xcc\xdd\ -\x32\x2c\xa2\xa7\xf6\x89\x20\xa7\x9a\x02\xd4\x06\x4e\x83\xc6\xb7\ -\x86\x2b\x52\x8d\x00\x32\x82\xd2\xa0\xce\x08\x9a\x9b\xdb\xac\xf0\ -\x82\x8c\xa0\x74\xa8\x33\x82\xe6\x6c\xfe\x6a\x0a\x18\x02\xbb\x87\ -\x3a\x34\x71\x54\xf4\x69\x78\x22\xc8\xc9\x28\x1b\x07\xb7\xc9\x9d\ -\x40\xa5\x80\xb8\x99\x90\x0b\x20\xc3\xde\x1a\x6e\xce\xe3\x59\xc3\ -\x42\xbe\x17\x0b\x27\x81\xd3\xc0\x2d\xd4\x08\x8a\x15\x7f\xab\xff\ -\xb3\xc0\x29\x6c\xd2\xd7\x81\x9b\xe4\x02\x98\x2d\xee\x35\xe0\x3a\ -\xf0\x34\x16\xfa\x1f\x06\x3e\x9c\x9e\x5c\xfc\x90\x61\x11\x1f\x8f\ -\x02\x1b\xc0\x1e\xb6\xc0\x6f\x50\x2e\x08\x01\x13\xc0\x77\xc0\x79\ -\x4c\x39\x7b\x58\x04\x78\xe4\x48\x87\x2a\x0e\x83\x11\x56\xd3\x9d\ -\xc0\x16\xf7\x0f\xa1\x93\xd6\x80\x1f\x81\x73\xc0\x25\x4c\x19\x43\ -\x74\x3f\x40\x0a\x14\x3f\x28\xf2\x2a\xf0\x1b\xf9\x56\x7f\x86\x7f\ -\x92\xf4\x04\xb8\x00\x5c\x04\xce\x50\x6e\x20\x88\xb8\xf0\x30\x7f\ -\x1b\x4b\xef\xd7\x80\x9f\xc8\xe7\xb9\x44\x68\x82\xd7\xc9\x3d\x64\ -\x11\x27\xbe\xed\x1b\x16\xfe\xdd\x3a\x9f\xc5\x2d\xa1\x48\x83\x1e\ -\xcd\x9f\x0a\x13\x9c\x70\x89\x20\x0d\x14\xc1\x85\x10\x42\x08\x21\ -\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x8e\x3b\xff\x03\x69\x93\ -\xf2\x2c\x16\x87\x31\x05\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ -\x60\x82\ -\x00\x00\x0c\x69\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x0c\x0b\x49\x44\x41\x54\x78\x9c\xed\ -\x9d\x7d\x8c\x1c\x65\x1d\xc7\xbf\xbf\xdf\xec\x96\x5a\x76\xf1\xee\ -\xea\xf5\x76\x76\xaf\x3d\x21\xa5\xc5\x03\x79\x6b\x29\x2a\x6a\x22\ -\x41\x01\x15\x82\x45\x53\xde\x0a\x22\xf1\x25\x82\x22\x31\x44\x31\ -\xc6\x18\x14\x13\xa3\x18\x14\xfd\x43\x44\x2d\x29\xef\x2f\x6a\x34\ -\x6a\x55\xb4\x88\xa8\x31\x08\x94\xc2\x1d\x96\x96\x83\xde\xed\xcd\ -\xec\xde\x89\xb4\x9d\xb1\x07\x77\x3b\xcf\xcf\x3f\xba\x35\x0d\x69\ -\x67\x66\xf7\x66\x9f\x99\x6d\x9e\xcf\x9f\x37\xbf\x67\xe7\x3b\x37\ -\xbf\x79\xbe\xf3\x3c\xf3\xbc\x00\x06\x83\xc1\x60\x30\x18\x0c\x06\ -\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\ -\x60\x30\x18\x0c\x86\xc3\x0a\x4a\x5b\x40\x52\x94\xcb\xe5\x15\x44\ -\x74\x92\x88\xac\x04\xb0\x12\xc0\x12\xa5\x54\x81\x88\x8a\x00\x20\ -\x22\x1e\x33\xfb\x00\xea\x00\x9e\x27\xa2\x6d\x22\xf2\xb4\xe3\x38\ -\xcf\xa7\xa9\x3b\x6d\xba\x36\x01\x6c\xdb\x5e\x04\xe0\x02\x22\xfa\ -\x80\x88\xbc\x87\x88\xec\x76\x7e\x47\x29\xe5\x30\xf3\x66\x11\xf9\ -\xb5\x65\x59\xbf\xa8\x56\xab\x33\x09\x4b\xcd\x34\x5d\x97\x00\xa5\ -\x52\x69\x35\x11\x5d\x4d\x44\x17\x02\x28\x26\xfc\xf3\x7b\x94\x52\ -\x0f\x11\xd1\xf7\x5d\xd7\x7d\x32\xe1\xdf\xce\x24\x5d\x93\x00\xb6\ -\x6d\xbf\x8b\x88\xbe\x0c\xe0\x7d\x9a\x4e\xb9\x49\x44\xbe\xee\xba\ -\xee\x5f\x35\x9d\x2f\x15\x32\x9f\x00\x95\x4a\x65\x50\x44\x6e\x01\ -\x70\x61\x1a\xe7\x17\x91\xfb\x73\xb9\xdc\x75\x13\x13\x13\x4e\x1a\ -\xe7\xef\x34\x56\xda\x02\xc2\xb0\x6d\xfb\x1a\x00\x3f\x07\x70\x72\ -\x5a\x1a\x88\xe8\x78\x11\xf9\x44\xb1\x58\xdc\xed\x79\xde\xe3\x69\ -\xe9\xe8\x14\x99\xac\x01\x86\x86\x86\x7a\xe6\xe6\xe6\x7e\x02\xe0\ -\x43\x69\x6b\x79\x1d\x0f\x2d\x5c\xb8\xf0\xaa\xb1\xb1\xb1\xdd\x69\ -\x0b\x49\x8a\xcc\x25\x40\xa5\x52\x39\x56\x44\x36\x01\x38\x26\x6d\ -\x2d\x07\x43\x44\x5e\xb0\x2c\xeb\x9c\x6a\xb5\xba\x23\x6d\x2d\x49\ -\x90\xa9\x04\x28\x95\x4a\xab\x99\xf9\x37\x00\xfa\xe7\xf1\x33\x7b\ -\x95\x52\xdb\x88\x68\x3b\x80\x97\x01\xf8\xcd\xbf\x17\x00\x2c\x16\ -\x91\x15\xcc\xbc\x02\xc0\xa2\x79\x9c\x63\x4a\x44\xce\x3d\x1c\x5a\ -\x0a\x99\x49\x80\xc1\xc1\xc1\x35\x4a\xa9\x87\xd1\x46\xd3\x4e\x29\ -\xf5\x14\x11\xdd\x27\x22\x7f\xaa\xd5\x6a\x4f\x02\x08\x22\x8a\x58\ -\x83\x83\x83\xab\x82\x20\x38\x53\x44\xd6\x31\x73\x3b\xef\x18\x9e\ -\x52\xea\xcc\x5a\xad\xf6\xcf\x36\xca\x66\x86\x4c\x24\x40\xb9\x5c\ -\x5e\x09\xe0\x31\x00\x6f\x8a\x5b\x46\x44\xe6\x44\x64\x63\x2e\x97\ -\xbb\xa5\x5a\xad\x3e\x33\x9f\xf3\x57\x2a\x95\x13\x95\x52\xd7\x11\ -\xd1\x65\x00\x72\x2d\x14\x9d\x26\xa2\x33\x26\x27\x27\xb7\xcf\xe7\ -\xfc\x69\x92\x7a\x02\x94\x4a\xa5\x7e\x66\x7e\x1c\xc0\x50\xdc\x32\ -\x22\x72\x3f\x80\xeb\x5d\xd7\x1d\x4f\x52\xcb\xc0\xc0\xc0\x9b\x2d\ -\xcb\xba\x19\xc0\xda\x16\x8a\xbd\x08\xe0\x34\xc7\x71\x5e\x4e\x52\ -\x8b\x2e\x38\xe5\xf3\x13\x33\x6f\x44\xcc\x9b\x2f\x22\xae\x88\x9c\ -\xe3\xba\xee\xba\xa4\x6f\x3e\x00\xd4\xeb\xf5\x97\x1c\xc7\xb9\x90\ -\x88\x3e\x08\x60\x2a\x66\xb1\xa3\x45\x64\x03\x32\xf0\x30\xb5\x43\ -\xaa\xfd\x00\xb6\x6d\x7f\x91\x88\x3e\x19\x27\x56\x44\x36\x2b\xa5\ -\xce\xaa\xd5\x6a\x5b\x3b\xad\xcb\xf3\xbc\xed\xbd\xbd\xbd\x77\x29\ -\xa5\xd6\x20\x46\x72\x12\xd1\x8a\x62\xb1\xe8\x79\x9e\xf7\xf7\x4e\ -\x6b\x4b\x9a\xd4\xb2\xb6\x5c\x2e\xaf\x50\x4a\x3d\xc3\xcc\x0b\xa2\ -\x62\x95\x52\xf7\xf5\xf5\xf5\x5d\x3e\x3a\x3a\x3a\xab\x43\xdb\x7e\ -\x96\x2f\x5f\x7e\xc4\xde\xbd\x7b\xef\x42\x8c\x5e\x48\xa5\xd4\xab\ -\xf9\x7c\xfe\x84\x89\x89\x89\x17\x34\x48\x4b\x8c\xd4\x12\xa0\x54\ -\x2a\xfd\x81\x99\xcf\x8a\x11\x7a\xb7\xe3\x38\xeb\x01\xa8\x4e\x6b\ -\x3a\x04\x6c\xdb\xf6\xbd\x44\xf4\x91\x18\xb1\x9b\x1c\xc7\x39\xb7\ -\xe3\x8a\x12\x24\x95\x77\x00\xdb\xb6\x2f\x88\x79\xf3\x7f\x67\xdb\ -\xf6\x47\x91\xde\xcd\x07\x00\xd5\xdb\xdb\x7b\x99\x88\x6c\x8e\x11\ -\x7b\x4e\xb9\x5c\x3e\xaf\xe3\x8a\x12\x24\x95\x1a\xa0\x5c\x2e\x3f\ -\x01\xe0\xd4\x88\xb0\x9d\xb9\x5c\xee\x94\xf1\xf1\xf1\x57\x74\x68\ -\x8a\xa2\x54\x2a\xf5\x03\xd8\xc2\xcc\xe5\x88\xd0\xc7\x1d\xc7\x59\ -\xa3\x43\x53\x12\x68\xaf\x01\x4a\xa5\xd2\xb9\x88\xbe\xf9\x0a\xc0\ -\xc5\x59\xb9\xf9\x00\x50\xab\xd5\xa6\x2d\xcb\xba\x14\x80\x44\x84\ -\x9e\x66\xdb\xb6\xae\x4f\xd6\xf3\x46\x7b\x02\x30\xf3\xb5\x51\x31\ -\x22\x72\x9b\xe3\x38\x99\x7b\xa3\x9e\x9c\x9c\x7c\x44\x44\xee\x88\ -\x11\x1a\x79\x8d\x59\x41\xab\x05\x2c\x5d\xba\xb4\x1c\x04\xc1\x38\ -\x42\x9a\x9f\x22\xb2\x3b\x9f\xcf\x1f\x9d\xa5\xa7\xff\x40\x06\x06\ -\x06\x96\x58\x96\x35\x06\xe0\xc8\x90\xb0\x46\xa3\xd1\x18\x9c\x9a\ -\x9a\xaa\xeb\xd2\xd5\x2e\x5a\x6b\x80\x20\x08\x2e\x41\x44\xdf\x03\ -\x11\xfd\x20\xab\x37\x1f\x00\xea\xf5\xfa\x94\x88\xfc\x30\x22\x2c\ -\x97\xcf\xe7\x2f\xd1\x22\x68\x9e\xe8\xb6\x80\xf3\xc3\x0e\x8a\xc8\ -\x5c\x10\x04\xdf\xd5\x25\xa6\x5d\x2c\xcb\xfa\x0e\x22\x3e\x38\x29\ -\xa5\x42\xaf\x35\x2b\x68\x4b\x00\xdb\xb6\x17\x29\xa5\x4e\x0f\x8b\ -\x11\x91\xdf\xd6\xeb\xf5\xb8\x5d\xb0\xa9\x51\xad\x56\x27\x01\xfc\ -\x31\x2c\x46\x44\xde\x3e\x34\x34\xb4\x50\x93\xa4\xb6\xd1\x59\x03\ -\x9c\x11\xd5\xeb\xc7\xcc\x77\xeb\x12\x93\x00\xa1\x5a\x99\xf9\x88\ -\x46\xa3\xf1\x0e\x5d\x62\xda\x45\x67\x02\x44\x35\xfd\x44\x44\x42\ -\x9f\xaa\x2c\xc1\xcc\x0f\x47\xc5\x88\x48\xd4\x35\xa7\x8e\xb6\x04\ -\x68\xce\xd8\x09\x63\xd4\x75\xdd\x7f\x6b\x11\x93\x00\xd5\x6a\x75\ -\x52\x29\x15\x35\x2c\x2c\xea\x9a\x53\x47\x67\x0d\x10\xfa\xcf\x50\ -\x4a\x3d\xab\x4b\x48\x52\x30\x73\x94\x66\x93\x00\xff\x3f\x51\x44\ -\x17\x2a\x11\x75\xe3\x1c\xbd\x6d\x61\x07\x45\x24\xaa\xdb\x38\x75\ -\x74\xd6\x00\x85\x88\xe3\x99\x7f\xfb\x3f\x08\xa1\x9a\xf7\x4f\x4c\ -\xcd\x32\xda\x12\x40\x29\x15\xfa\xcf\x20\x22\x4f\x97\x96\xa4\x10\ -\x91\x50\xcd\x51\xd7\x9c\x05\x74\x5a\x40\x68\x0f\xa0\x52\x2a\x6a\ -\x24\x6f\xe6\x20\xa2\x46\xc4\xf1\x56\x06\x98\xa6\x82\xce\x1a\xc0\ -\x0f\x3b\xce\xcc\x51\x16\x91\x39\x44\x24\xf4\x09\x8f\xaa\x21\xb2\ -\x80\xce\x77\x80\xd0\x04\x10\x91\x1e\x5d\x42\x92\x82\x88\x7a\xc3\ -\x8e\x33\xb3\x49\x80\x03\x08\x1d\x36\x4d\x44\xcb\x75\x09\x49\x90\ -\x28\xcd\x99\x1f\x2a\xae\x2d\x01\xa2\x9a\x79\x4a\xa9\xb7\xe8\xd2\ -\x92\x20\xc7\x85\x1d\x54\x4a\x65\xbe\x69\xab\xb3\x06\x08\x6d\x33\ -\x03\x38\x75\xf9\xf2\xe5\x47\x68\x51\x92\x00\xfd\xfd\xfd\x05\x11\ -\x39\x29\x2c\x86\x88\xa2\xae\x39\x75\x74\xd6\x00\xa1\xbd\x66\xcc\ -\xbc\x70\x66\x66\x26\xf3\x1f\x4f\xf6\x63\x59\xd6\x3b\x89\x28\x1f\ -\x16\xc3\xcc\x23\xba\xf4\xb4\x8b\xb6\x04\x98\x9b\x9b\xfb\x73\x54\ -\x8c\x52\x2a\x95\x55\x40\xda\x81\x99\xa3\xb4\x4a\xa3\xd1\x88\xbc\ -\xe6\xb4\xd1\x96\x00\xd3\xd3\xd3\x35\x00\xff\x0a\x8b\x11\x91\x8b\ -\x56\xad\x5a\x15\xfa\x54\x65\x81\xa1\xa1\xa1\x85\x22\x12\x35\x4f\ -\x60\xa4\x1b\xc6\x36\xe8\x1e\x11\xb4\x29\xec\x20\x33\x2f\x76\x5d\ -\x37\xf3\x43\xa9\x1a\x8d\xc6\x15\x44\xf4\xc6\xb0\x98\xe6\x22\x17\ -\x99\x47\x6b\x02\x88\xc8\x9d\x51\x31\x4a\xa9\x1b\x90\xfe\xa4\xd5\ -\x30\x72\x22\xf2\x85\xa8\x20\x22\xba\x4b\x87\x98\xf9\xa2\xf5\x1f\ -\xed\xba\xee\x13\x00\x42\x5f\x8c\x98\x79\x65\xa5\x52\xf9\xb8\x26\ -\x49\x2d\x63\xdb\xf6\xd5\x00\x8e\x0e\x8b\x51\x4a\x6d\x75\x1c\x67\ -\x8b\x26\x49\xf3\x42\xfb\x93\x26\x22\xb7\x45\xc5\x04\x41\xf0\x8d\ -\xe6\x4c\x9c\x4c\xb1\x6c\xd9\x32\x9b\x88\x6e\x8c\x8a\x63\xe6\xc8\ -\x6b\xcc\x0a\x69\x54\xb5\xb7\x23\xe2\x33\x2a\x33\xf7\x11\xd1\x06\ -\x64\x6b\xce\x3d\xcf\xce\xce\x6e\x04\x70\x54\x44\x5c\x2d\x9f\xcf\ -\xff\x58\x87\xa0\x24\xd0\xbe\x3e\x80\xef\xfb\x73\x85\x42\x21\x47\ -\x44\xa1\x93\x43\x89\xe8\xd8\x42\xa1\xf0\x9a\xef\xfb\x8f\xe9\xd2\ -\x16\x86\x6d\xdb\x5f\x65\xe6\x2b\x63\x84\xde\x58\xad\x56\x1f\xed\ -\xb8\xa0\x84\x48\xeb\x65\xeb\x7b\x00\x76\x46\x05\x11\xd1\x4d\xa5\ -\x52\x69\xbd\x06\x3d\xa1\xd8\xb6\x7d\x15\x11\x7d\x25\x46\xe8\x58\ -\x3e\x9f\xbf\xb5\xe3\x82\x12\x24\x95\x15\x42\x9a\xb5\xc0\x8b\x44\ -\x74\x51\x44\x28\x11\xd1\x79\x85\x42\xe1\x05\xdf\xf7\xe7\xb5\x10\ -\x54\xbb\x94\xcb\xe5\x2b\x88\xe8\x47\x88\xf1\xb0\x10\xd1\xfa\x89\ -\x89\x89\xe7\x34\xc8\x4a\x8c\xd4\x96\x88\xf1\x7d\x7f\x5b\xb1\x58\ -\x3c\x19\x11\x1f\x54\x00\x30\x11\xad\x2d\x16\x8b\xff\xf5\x3c\xef\ -\x6f\x3a\xb4\xed\xc7\xb6\xed\x1b\x88\xe8\x56\xc4\xb8\xf9\x22\xf2\ -\xa0\xe3\x38\x37\x69\x90\x95\x28\xa9\xbe\x64\x0d\x0e\x0e\xf6\x35\ -\x1a\x8d\x2d\xcc\xbc\x34\x66\x91\x9f\xe5\xf3\xf9\xab\x76\xee\xdc\ -\xb9\x4b\x83\xae\x0d\xcc\x1c\x77\xb1\x87\x97\xf2\xf9\xfc\x29\x9d\ -\xd6\xd5\x09\x52\xed\x70\xa9\x56\xab\xff\x61\xe6\x75\x22\x32\x17\ -\xb3\xc8\xda\xd9\xd9\xd9\x51\xdb\xb6\x3b\xd6\x5b\x58\xa9\x54\x2e\ -\x57\x4a\x3d\x17\xf7\xe6\x2b\xa5\x66\x99\x79\x5d\x37\xde\x7c\x20\ -\x23\xcd\xac\x52\xa9\xb4\x9e\x99\xef\x40\x0b\x7a\x44\xe4\x1f\x44\ -\x74\x93\xe3\x38\xbf\x4a\x40\x02\xd9\xb6\x7d\x7e\x73\x3f\x82\xd5\ -\x2d\x94\x13\x11\xb9\xd4\x75\xdd\x7b\x12\xd0\x90\x0a\x99\x48\x00\ -\x00\x28\x97\xcb\x9f\x07\xf0\xed\x56\xcb\x29\xa5\xb6\x33\xf3\x9d\ -\x00\xee\x73\x1c\xa7\xa5\xef\xef\xb6\x6d\x1f\x47\x44\xeb\x94\x52\ -\x97\x31\x73\xcb\x23\x92\x44\xe4\x73\xae\xeb\x66\x7e\x36\x73\x18\ -\x99\x49\x00\x00\x28\x97\xcb\xd7\x03\xf8\x26\xda\xd4\xa5\x94\x9a\ -\x64\xe6\x47\x01\x3c\x07\xe0\x79\x00\x2f\xef\x1f\x6e\xde\x1c\xc0\ -\xb9\x18\xc0\xca\xe6\xe8\xa3\x77\xc7\x58\xef\xe7\x50\x08\x80\xeb\ -\x1d\xc7\xb9\xb9\xcd\xf2\x99\x21\x53\x09\x00\xec\x6b\x76\x61\x5f\ -\x6f\x61\x56\x87\x54\x0b\x80\x8f\x39\x8e\xb3\x21\x6d\x21\x49\x90\ -\xb9\xaf\x6e\x8e\xe3\xdc\x41\x44\xef\x15\x11\x37\x6d\x2d\x87\x80\ -\x44\xa4\x1b\x07\xb0\x1e\x94\xcc\xd5\x00\xfb\x69\xae\xc5\xb3\x11\ -\xfa\x36\x89\x6a\x85\x40\x29\xf5\xb6\x6e\x5f\x2a\x1e\xc8\x70\x02\ -\xec\xa7\xd9\x42\xf8\x16\x80\x81\xb4\xb5\xbc\x8e\x67\x17\x2d\x5a\ -\xb4\x7a\xc7\x8e\x1d\xaf\xa5\x2d\x64\x3e\x64\x7a\xd3\x28\x00\xf0\ -\x7d\x7f\x6b\x5f\x5f\xdf\xed\x41\x10\x58\x44\x74\x12\x80\xc8\xb5\ -\x85\x35\xb1\x64\x76\x76\x16\xbe\xef\xc7\x59\x41\x34\xb3\x64\xbe\ -\x06\x38\x90\x72\xb9\xbc\x58\x44\xae\x6d\xae\x30\xbe\xa4\x43\xa7\ -\x99\xc6\xbe\x25\xe0\xe2\x6c\x29\x13\x88\xc8\xe9\xcd\x81\x2e\x5d\ -\x49\x57\x25\xc0\x01\xe4\x2a\x95\xca\xd9\x41\x10\xac\x07\x70\x36\ -\x33\xcf\x6b\x5a\x99\x52\xea\x15\x66\xde\xa4\x94\xda\x58\xab\xd5\ -\x7e\x5f\x2a\x95\x2e\x60\xe6\x07\x63\x16\x7f\xb6\xa7\xa7\x67\x95\ -\xee\x95\xcc\x93\xa2\x5b\x13\xe0\x40\xd8\xb6\xed\x53\x88\xe8\x3d\ -\x00\x4e\xdc\xbf\x79\xf4\xa1\x06\x6d\x8a\xc8\x6e\x00\xdb\x9a\x93\ -\x36\x9e\x16\x91\xcd\xae\xeb\x6e\xc1\xeb\x16\xa4\x2e\x95\x4a\xf7\ -\x32\xf3\xba\x38\x02\x44\xe4\x6b\xae\xeb\xc6\xf9\x5c\x9c\x39\x0e\ -\x87\x04\x38\x28\xc3\xc3\xc3\x0b\x76\xed\xda\x55\x0c\x82\xe0\x28\ -\x00\xb0\x2c\x6b\x4f\x4f\x4f\x8f\x17\xf7\x49\x6d\x6e\x65\x33\x82\ -\x78\x3b\x98\x05\x22\xb2\xa6\x1b\x77\x11\x3b\x6c\x13\x20\x09\x2a\ -\x95\xca\x87\x45\xe4\x81\x38\xb1\x22\xf2\x4c\x6f\x6f\xef\xea\x6e\ -\xb3\x82\xcc\xb7\x02\xd2\xc4\xf3\xbc\xd1\x42\xa1\x30\x4c\x44\xc7\ -\x47\xc5\x12\xd1\xc0\xcc\xcc\x8c\xf8\xbe\xff\x88\x06\x69\x89\x61\ -\x6a\x80\x08\x9a\x56\x30\x8a\x78\x5b\xda\x35\x00\xac\x71\x1c\xe7\ -\xa9\x0e\xcb\x4a\x8c\xcc\x75\x05\x67\x8d\x5a\xad\x36\x4d\x44\x9f\ -\x8e\x19\x9e\x53\x4a\x6d\x18\x1e\x1e\xce\x4a\x5f\x45\x24\xc6\x02\ -\x62\xd0\xb4\x82\xe3\x5b\xb0\x02\xd5\x2d\x56\x60\x2c\x20\x26\xcd\ -\x6f\x13\x23\x88\x6f\x05\xa7\x75\xc3\xec\x20\x63\x01\x31\x69\xce\ -\xf4\xbd\x3a\x66\x78\xd7\x58\x81\xb1\x80\x16\xf0\x3c\x6f\xa4\x50\ -\x28\x9c\x40\x44\xc3\x51\xb1\x44\x54\x7a\xf5\xd5\x57\x03\xcf\xf3\ -\x32\xbd\x46\x80\xb1\x80\x16\x19\x18\x18\x58\x42\x44\xa3\xcc\xbc\ -\x38\x46\x78\xe6\xad\xc0\x58\x40\x8b\xd4\xeb\xf5\x29\x66\x6e\xc9\ -\x0a\xb2\xbc\xe8\x85\xb1\x80\x36\xf0\x3c\x6f\xb4\x58\x2c\x9e\x00\ -\x20\x96\x15\xf8\xbe\x9f\x59\x2b\x30\x16\xd0\x26\x4b\x96\x2c\x19\ -\x60\xe6\x91\xb8\x56\x40\x44\xab\x27\x27\x27\x9f\xee\xb8\xb0\x16\ -\x31\x16\xd0\x26\x53\x53\x53\xf5\x56\xac\x20\x08\x82\x4c\x5a\x81\ -\xb1\x80\x79\xd0\xb4\x82\xb7\x02\x88\x5c\xe4\xb2\x69\x05\x8d\xac\ -\x59\x81\xb1\x80\x79\xd2\xed\x56\x60\x2c\x60\x9e\x34\xad\xe0\x9a\ -\x98\xe1\xb9\x20\x08\x7e\x9a\x25\x2b\x30\x16\x90\x00\x9e\xe7\x8d\ -\x14\x8b\xc5\x13\x11\xcf\x0a\x6c\xdf\xf7\xe7\x3c\xcf\xcb\xc4\x2a\ -\x22\xc6\x02\x12\xa2\xbf\xbf\xbf\x64\x59\xd6\x08\x33\xf7\x45\xc5\ -\x8a\xc8\x1c\x33\xaf\x9e\x9c\x9c\xdc\xaa\x43\x5b\x18\xc6\x02\x12\ -\x62\x7a\x7a\xba\x46\x44\xb1\xac\x80\x88\xf2\x22\x92\x09\x2b\x30\ -\x16\x90\x20\xbe\xef\x8f\x14\x8b\xc5\x93\x10\xbd\xea\x09\x00\xd8\ -\xbe\xef\xcf\xa6\x6d\x05\xc6\x02\x12\xa6\x55\x2b\xb0\x2c\x6b\x55\ -\xb5\x5a\x4d\x65\xfd\x23\xc0\x58\x40\xe2\x34\xad\xe0\x33\x71\x62\ -\x89\x28\x9f\xf6\xb7\x02\x63\x01\x1d\xc0\xf7\xfd\x67\x63\x2e\x80\ -\x05\xec\xb3\x82\xd7\x3c\xcf\xfb\x4b\xa7\x75\x1d\x0c\x63\x01\x1d\ -\x62\xd9\xb2\x65\xf6\xec\xec\xec\x08\x33\x87\x6e\x2c\x05\xec\xb3\ -\x02\xa5\xd4\x29\xf5\x7a\x5d\xfb\x06\x13\xa6\x06\xe8\x10\xbb\x77\ -\xef\xf6\x8b\xc5\x62\x95\x88\xd6\x46\xc5\x12\x91\xc5\xcc\x03\x9e\ -\xe7\xdd\xaf\x43\xdb\x81\x98\x77\x80\x0e\xe2\xba\xee\xdd\x4a\xa9\ -\x5f\xc6\x89\x55\x4a\xbd\x1f\x29\x3c\x90\x26\x01\x3a\x8b\x2c\x58\ -\xb0\xe0\x53\x4a\xa9\x57\xa2\x02\x99\xf9\x0d\xc7\x1c\x73\x8c\xf6\ -\xcd\x33\x4d\x02\x74\x98\xf1\xf1\x71\x17\xc0\x67\x63\x84\x7a\x63\ -\x63\x63\xda\x37\x9a\x34\x09\xa0\x81\x5a\xad\x76\x57\x94\x15\x28\ -\xa5\x1e\xc0\xeb\x66\x28\xeb\xc0\x24\x80\x1e\x24\x97\xcb\x5d\xa9\ -\x94\x3a\xd4\x67\xe0\x71\xa5\xd4\x97\xb4\x2a\x6a\x62\x5a\x01\x9a\ -\xd8\xb3\x67\xcf\xcc\x91\x47\x1e\xb9\x91\x88\x1a\x44\x34\x04\xa0\ -\x07\xc0\x1e\x11\xb9\x27\x9f\xcf\x5f\xec\x38\x4e\x2d\x6d\x8d\x06\ -\xbd\xe4\x60\xfa\x61\x0c\x06\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\ -\x60\x30\x18\x0c\x06\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\x60\x30\ -\x74\x80\xff\x01\xde\x72\x7a\x59\x43\xce\xf8\xef\x00\x00\x00\x00\ -\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x0a\x98\x49\x44\x41\x54\x78\x9c\xed\ +\xdd\x5d\x8c\x5c\x65\x1d\x80\xf1\x67\x97\x7e\x6c\x6b\xd1\x44\xaa\ +\xad\x14\x8c\x02\x11\x41\x82\x24\x0a\x25\x28\x76\x45\x41\x11\x15\ +\x02\xeb\x47\x52\x14\x2e\x50\x41\x8c\x44\xd1\x70\xc1\x85\x1a\x83\ +\x62\xaa\x89\x26\x4a\x44\x0d\x10\x44\x89\x16\x0d\x31\x36\x22\x1f\ +\x42\x14\x4b\x48\x4c\xf0\x93\x8f\x54\x6c\x20\xa5\x69\xa1\x85\x2d\ +\x74\xa1\xa5\x85\xf5\xe2\xdd\xa5\x74\xd9\x9d\x79\x67\xe6\xcc\xbc\ +\x73\xe6\xff\xfc\x92\x73\xd1\x76\xf6\xcc\x7f\xd3\x3d\xcf\xce\x99\ +\x79\xe7\xcc\x10\xf5\xb5\x0d\x38\xa8\xf4\x10\x12\xb0\x15\x58\x5e\ +\x7a\x88\x76\x0c\x97\x1e\x40\x52\x39\x06\x40\x0a\xcc\x00\x48\x81\ +\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\ +\x90\x02\x33\x00\x52\x60\xf3\x4a\x0f\xd0\x03\xdf\x03\x6e\x2e\x3d\ +\x84\x6a\x69\x0c\xb8\xa4\xf4\x10\x9a\xdd\x36\x60\x32\x63\x3b\xab\ +\xd4\x80\xaa\xbd\x31\xf2\x7e\xc6\xb6\x94\x1a\xb0\x53\x9e\x02\x48\ +\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\ +\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\ +\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\ +\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\ +\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\ +\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\ +\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\ +\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\ +\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\ +\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\ +\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\ +\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\ +\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\ +\x03\x20\x05\x36\xaf\x8d\xaf\x59\x00\x1c\x09\xac\x00\x96\x54\x3b\ +\x4e\xcb\x73\xe4\x38\x89\xf6\xbe\x4f\xe9\xc4\xcc\xdb\x8d\x00\x63\ +\xdd\x1c\xa4\x89\x9d\xc0\x26\xe0\x21\x60\x4f\x2b\x5f\x38\x94\x79\ +\xbb\xe9\x6f\x70\x35\xf0\x5e\x60\x61\x2b\x77\x22\xa9\x27\x76\x01\ +\x7f\x02\x7e\x01\xfc\x06\xd8\xdd\xe9\x0e\x0f\x00\x2e\x02\x36\x03\ +\x93\x6e\x6e\x6e\xb5\xd9\x36\x01\x9f\xa5\xc9\x69\x7e\xa3\x47\x00\ +\x47\x00\x37\x00\x2b\x1b\xed\x40\x52\x5f\x5b\x0f\x9c\x0b\x6c\x9c\ +\xed\x1f\xe7\x0a\xc0\xa9\xc0\x4d\xc0\xab\xbb\x34\x94\xa4\xde\x19\ +\x07\xce\x21\x9d\x1e\xec\x67\xb6\x00\x9c\x09\xac\x05\xe6\x77\x79\ +\x28\x49\xbd\xf3\x3c\x70\x36\xb0\xee\xe5\x7f\x39\x33\x00\x27\x03\ +\xb7\xe1\x93\x7c\xd2\x20\xda\x05\x9c\x02\xdc\x33\xfd\x17\x2f\x0f\ +\xc0\x72\xe0\xef\xc0\xb2\x1e\x0f\x25\xa9\x77\x36\x03\xc7\x01\x4f\ +\xc0\xfe\xcf\x10\x5e\x85\x07\xbf\x34\xe8\x0e\x06\x7e\x30\xfd\x87\ +\xe9\x47\x00\xa7\x00\x77\x14\x19\x47\x52\x09\x27\x03\x77\x4f\x07\ +\xe0\x2e\x60\x55\x8b\x3b\x78\x06\x78\x8e\xf4\x9a\x63\x49\xf3\x80\ +\xc5\xec\x5b\x19\xf8\x02\x69\xae\x5d\xc5\x26\xd2\x20\x1a\x01\x16\ +\x91\xd6\xc6\x4c\x92\x56\xdc\x4d\x90\x7e\xde\x4a\x1a\x22\xfd\xfc\ +\xb7\xba\x2a\xf7\x76\xd2\xab\x7d\x1c\x4d\xfe\xe2\x82\xa7\x81\x2f\ +\x93\x1e\x46\x48\xea\x1f\x2b\x80\xaf\x92\x96\x05\xe7\x1e\xcf\x87\ +\x03\x5c\x9e\x79\xe3\x3d\xc0\x09\xbd\xfa\x6e\x24\xb5\xe5\x24\xd2\ +\xa3\x92\x9c\x63\xfa\x2b\x90\x5e\xf6\xcb\xb9\xf1\xf5\x3d\xfc\x26\ +\x24\xb5\xef\x57\xe4\x1d\xd3\xeb\x86\x49\xa7\x00\x39\x6e\xad\x7e\ +\x4e\x49\x5d\x90\x7b\xac\x1e\x3d\x0c\x2c\xcd\xbc\xf1\x63\x6d\x0e\ +\x23\xa9\xb7\x36\x65\xde\x6e\xe9\x30\xf9\xef\xab\x6f\xe9\x7d\xc6\ +\x92\x8a\x79\x3e\xf3\x76\x8b\xbc\x22\x90\x34\x78\xb2\x5f\x9a\x37\ +\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\ +\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\xf3\x13\x73\xa4\ +\xee\x7a\x3d\xf0\x51\xd2\x3b\x69\x0f\x21\x1d\x73\x4f\x00\xff\x24\ +\x5d\xa0\xf3\xdf\xe5\x46\x4b\x72\xdf\x3b\xfc\xee\x52\x03\x4a\x35\ +\xb4\x02\xb8\x96\xb4\x2c\xb7\xd1\x71\x75\x37\xf0\xae\x8a\xef\x7b\ +\xb4\xc9\x7d\x4e\x6f\x7b\xc9\xbc\xa1\x01\x90\xf2\x9d\x01\x3c\x45\ +\x6b\x9f\xe4\x73\x05\xd5\x9d\x92\x8f\x66\xde\xa7\x01\x90\x2a\x76\ +\x0e\xe9\xc0\x6a\xe5\xe0\x9f\xde\x7e\x4a\xfe\xe7\x75\x36\x32\x9a\ +\x79\x7f\x06\x40\xaa\xd0\xb1\xa4\x6b\x51\xb6\x73\xf0\x4f\x6f\x97\ +\x54\x30\xc7\x68\xe6\x7d\x19\x00\xa9\x22\x43\xc0\xbd\x74\x76\xf0\ +\x4f\x02\xcf\x02\x87\x76\x38\xcb\x68\xe6\x7d\xed\xf5\x65\x40\xa9\ +\x1a\xa7\x51\xcd\x35\x33\x17\x01\x97\x56\xb0\x9f\x2c\x06\x40\xaa\ +\xc6\x79\x15\xee\x6b\x35\xe9\xf2\xe3\x5d\x67\x00\xa4\x6a\x8c\x56\ +\xb8\xaf\xa5\xc0\x31\x15\xee\x6f\x4e\x06\x40\xea\xdc\xab\x80\x37\ +\x54\xbc\xcf\xb7\x54\xbc\xbf\x59\x19\x00\xa9\x73\xad\x7e\x2a\x4f\ +\x8e\x03\xbb\xb0\xcf\x57\x30\x00\x52\xe7\x26\xba\xb0\xcf\x67\xba\ +\xb0\xcf\x57\x30\x00\x52\xe7\x76\x02\x5b\x2a\xde\xe7\x86\x8a\xf7\ +\x37\x2b\x03\x20\x55\xe3\xae\x0a\xf7\xb5\x1d\xf8\x57\x85\xfb\x9b\ +\x93\x01\x90\xaa\x51\xe5\x47\xe7\xdd\x48\x8f\x3e\x75\xd8\x00\x48\ +\xd5\xb8\x05\xf8\x5b\x05\xfb\xd9\x05\xac\xa9\x60\x3f\x59\x0c\x80\ +\x54\x8d\x49\xe0\x02\x60\x77\x87\xfb\xb9\x1c\x78\xb4\xf3\x71\xf2\ +\xf9\x5e\x00\xa9\x3a\x9f\x20\xff\xe3\xb9\x67\x6e\xd7\xe2\xbb\x01\ +\xa5\xda\xfb\x08\x30\x4e\x6b\x07\xff\x95\x54\xb7\xfc\x77\x34\xf3\ +\x3e\x0d\x80\xd4\x25\x2b\x80\xeb\x48\x1f\xaa\xdb\xe8\xb8\xfa\x2b\ +\xd5\x1f\x5b\xa3\x4d\xee\xf3\xa5\x00\x78\x4d\x40\xa9\x3b\x1e\x03\ +\xce\x07\x2e\x23\x3d\x22\x58\x09\xbc\x91\x74\x4d\xc0\xc7\x81\x7f\ +\x90\xae\x09\xd8\x93\x97\xfb\x1a\xf1\x11\x80\x34\x58\x46\xf1\x7a\ +\x00\x92\x9a\x31\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\ +\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\ +\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\ +\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\ +\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\ +\x00\xa4\xc0\x0c\x80\x14\x58\x9d\x3f\x19\xe8\xc7\xc0\x92\xd2\x43\ +\x48\xc0\x0e\xe0\xe2\xd2\x43\xb4\xa3\xce\x01\x18\x03\x0e\x2a\x3d\ +\x84\x04\x6c\xa5\xa6\x01\xf0\x14\x40\x0a\xcc\x00\x48\x81\x19\x00\ +\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\ +\x33\x00\x52\x60\x75\x5e\x08\x94\x6b\x2b\x70\x73\xe9\x21\x54\x4b\ +\x03\xbf\xd8\x2c\x42\x00\x2e\xc4\x00\xa8\x3d\xb7\x03\x6b\x4b\x0f\ +\xd1\x4d\x9e\x02\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\ +\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\ +\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\ +\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\ +\x19\x00\x29\x30\x03\x20\x05\x16\xe1\x9a\x80\x55\x38\x00\xf8\x34\ +\x70\x3e\xf0\xd6\xa9\x3f\xab\xff\xec\x05\x1e\x04\xae\x01\x6e\x00\ +\x5e\x2c\x3b\x4e\xff\x33\x00\xcd\x8d\x00\xbf\x05\x4e\x2f\x3d\x88\ +\xb2\x2c\x03\x56\x01\x67\x03\x1f\x07\x9e\x2f\x3b\x4e\x7f\xf3\x14\ +\xa0\xb9\x2b\xf1\xe0\xaf\xa3\x33\x81\x6f\x96\x1e\xa2\xdf\x19\x80\ +\xc6\x5e\x0b\x7c\xbe\xf4\x10\x6a\xdb\x17\x81\x03\x4b\x0f\xd1\xcf\ +\x0c\x40\x63\x27\x00\xf3\x4b\x0f\xa1\xb6\x8d\x00\xef\x2c\x3d\x44\ +\x3f\x33\x00\x8d\x8d\x94\x1e\x40\x1d\x5b\x5c\x7a\x80\x7e\x66\x00\ +\x1a\x7b\xb0\xf4\x00\xea\xd8\xfd\xa5\x07\xe8\x67\x06\xa0\xb1\x87\ +\x80\x7b\x4a\x0f\xa1\xb6\xdd\x09\x6c\x2c\x3d\x44\x3f\x33\x00\x8d\ +\x4d\x02\x17\x00\xe3\xa5\x07\x51\xcb\x9e\x04\x3e\x57\x7a\x88\x7e\ +\x67\x00\x9a\xbb\x1f\x38\x09\xf8\x4b\xe9\x41\x94\xed\x4e\xe0\x44\ +\x60\x43\xe9\x41\xfa\x9d\x0b\x81\xf2\x3c\x00\xbc\x07\x38\x0c\x38\ +\x0a\x5f\x19\xe8\x57\x7b\x48\xc1\xf6\x61\x7f\x26\x03\xd0\x9a\xff\ +\x4d\x6d\xd2\x40\xf0\x14\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\ +\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\ +\x52\x60\xad\x2c\x04\x1a\xea\xda\x14\xf5\xb0\x00\x78\x1f\x5e\x13\ +\xb0\x4a\xe3\xa4\x65\xbb\x0f\x97\x1e\x64\xc0\xe4\xfe\x62\x9f\x9c\ +\x07\x3c\x43\xde\x55\x53\x96\xb4\x3f\x4f\xed\x9d\x4a\xba\xd0\xe4\ +\x21\xa5\x07\x19\x50\xd7\x01\x17\x03\xcf\x16\x9e\x63\x50\xe4\x5e\ +\x05\xe9\xe9\x61\xe0\xd1\xcc\x1b\xbf\xad\xcd\x61\xea\x6e\x15\xb0\ +\x0e\x0f\xfe\x6e\x3a\x1f\xb8\x09\x4f\x49\xab\x72\x4c\xe6\xed\x1e\ +\x19\x06\xee\xcb\xbc\xf1\xa7\x88\xf7\xd0\x77\x18\xb8\x1a\xdf\xfc\ +\xd3\x0b\xa7\x03\x63\xa5\x87\x18\x00\xf3\x80\x73\x33\x6f\x7b\xdf\ +\x30\x70\x4b\xe6\x8d\x8f\x05\xbe\x4f\xac\x83\xe1\xed\xc0\x91\xa5\ +\x87\x08\xe4\x93\xa5\x07\xa8\xb9\x05\xc0\x0f\x49\xcf\x53\xe5\xf8\ +\xc3\x3c\xe0\x77\xe4\x3f\x0f\xf0\x05\xe0\x43\xc0\x5a\xd2\xe5\xb2\ +\x26\x48\x17\xcd\x28\x61\x41\x0f\xee\xe3\xcd\x3d\xb8\x0f\xed\x73\ +\x78\xe9\x01\xda\x34\x42\xb9\x47\x2f\x43\xa4\xe7\xe7\x8e\x02\x3e\ +\x06\xbc\x29\xf3\xeb\xc6\x81\x75\xd3\x4f\x02\xfe\x0c\xf8\x52\xe6\ +\x17\x1e\x06\x5c\xd6\xda\x8c\xb5\xe5\x95\x80\x7a\xeb\xc9\xd2\x03\ +\xb4\xe9\x35\xa4\x5f\x8a\x75\x72\x35\xf0\xdc\xf4\x93\x2e\xdf\x01\ +\x9e\x2e\x38\x4c\xbf\xba\x97\x14\x48\xf5\xc6\x6d\xa5\x07\x08\xe2\ +\x29\x60\x0d\xec\x7b\xd6\x75\x2b\x71\x7e\xab\xb7\x62\x02\xb8\xa2\ +\xf4\x10\x41\x6c\x06\xae\x2a\x3d\xc4\x0c\x83\xba\xf6\xe5\x52\x60\ +\x3b\xec\xff\xb2\xcb\xd5\xa4\xcf\xc0\x1b\x34\xcb\x3a\xfc\xfa\x35\ +\xc0\x8f\xaa\x18\x44\x73\xda\x0c\x9c\x41\xff\x9d\x72\x1d\x5c\x7a\ +\x80\x2e\xb8\x91\xb4\xee\x02\xd8\x7f\x25\xe0\x24\x70\x1e\x70\x28\ +\x70\x7c\x6f\x67\xea\xaa\x4e\x5f\xbf\x7f\x91\xf4\xe4\xe7\xaf\x49\ +\xaf\x57\x7b\x4d\xc0\xea\x6c\x07\xee\x20\xfd\xf2\xd9\x51\x78\x96\ +\xd9\xac\x28\x3d\x40\xc5\xd6\x93\xae\x72\xfd\xd2\x13\xf7\x33\x97\ +\x02\xef\x04\x3e\x48\x5a\xf8\x72\x62\xef\xe6\xea\xaa\x5d\x15\xed\ +\xe7\xcf\x53\x9b\xe2\xd8\x5d\x7a\x80\x0a\xad\x07\x3e\xcc\x8c\xd5\ +\x96\xb3\xad\xbc\x7a\x12\x78\x3f\xe9\xa1\xc2\x20\x70\x9d\xb9\xda\ +\xf5\xdf\xd2\x03\x54\xe4\xe7\xa4\xe5\xec\x4f\xcd\xfc\x87\xb9\x96\ +\x5e\x4e\x00\xab\x49\xa7\x04\xdb\xbb\x37\x57\x4f\x54\xf5\x08\x40\ +\xf1\x4c\x94\x1e\xa0\x43\x4f\xb0\xef\x38\x9e\xf5\x7d\x16\x8d\xd6\ +\x5e\x4f\x02\xd7\x93\x16\x67\x7c\x03\x78\xbc\xea\xe9\x24\x75\xc5\ +\x16\xe0\x6b\xc0\x11\xc0\x2f\x69\xb0\x58\x2f\xe7\xed\xc0\x3b\x80\ +\xaf\x03\xdf\x02\x4e\x01\x3e\x00\x1c\x47\x7a\x82\xe4\x40\xca\xbd\ +\x54\xf2\x3a\x7c\xf3\x88\xfa\xc3\x8b\xa4\xdf\xb6\x25\x4c\x92\xd6\ +\xaa\x6c\x22\xbd\xaf\xe7\x8f\xa4\xb7\x58\xef\x29\x34\x4f\xcf\x6c\ +\x23\x7d\xf3\xcd\xb6\xb3\x4a\x0d\xa8\xda\x1b\x23\xef\x67\x6c\x4b\ +\xa9\x01\x3b\xe5\x6f\x50\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\ +\x80\x14\x98\x9f\x0e\x9c\x67\x3e\x70\x21\x69\x29\xb0\x17\x05\xed\ +\x5f\x7b\x49\xd7\xa9\xb8\x06\xf8\xc9\xd4\x9f\xd5\x80\x01\x68\x6e\ +\x31\x69\x69\xf4\x68\xe1\x39\xd4\xdc\x42\xe0\x1d\x53\xdb\x99\x53\ +\x9b\x0b\xc1\x1a\xf0\x14\xa0\xb9\xef\xe2\xc1\x5f\x47\xa7\x01\xdf\ +\x2e\x3d\x44\xbf\x33\x00\x8d\x2d\x05\x3e\x53\x7a\x08\xb5\xed\x22\ +\xd2\xd5\x7a\x34\x07\x03\xd0\xd8\xf1\x78\x9a\x54\x67\xd3\xa7\x04\ +\x9a\x83\x01\x68\x6c\x61\xe9\x01\xd4\xb1\x91\xd2\x03\xf4\x33\x03\ +\xd0\xd8\x7f\x4a\x0f\xa0\x8e\xf9\x7f\xd8\x80\x01\x68\x6c\x03\x5e\ +\x04\xa4\xce\x6e\x05\x1e\x29\x3d\x44\x3f\x33\x00\xcd\x5d\x40\x7a\ +\xe3\x91\xea\x65\x2b\x69\xed\x86\x1a\x30\x00\xcd\x6d\x20\x5d\x1e\ +\x2d\xf7\x13\x94\x54\xde\xef\x81\x95\xc0\xc6\xd2\x83\xf4\x3b\x9f\ +\xe1\xce\xf3\x30\xe9\xb3\xeb\x96\x93\x3e\x2a\xcc\x8b\x82\xf6\xa7\ +\x3d\xc0\x03\x78\xf1\x9a\x6c\x06\xa0\x35\x5b\xa8\xf1\x7b\xbf\xa5\ +\x99\x3c\x05\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\ +\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\ +\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\ +\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\ +\x00\x52\x60\x11\x2e\x09\x36\x0a\x8c\x97\x1e\x42\xb5\x34\x5a\x7a\ +\x80\x6e\x1b\x2a\x3d\x40\x07\xb6\x01\x07\x95\x1e\x42\x22\x5d\x82\ +\x7c\x79\xe9\x21\xda\xe1\x29\x80\x14\x98\x01\x90\x02\x33\x00\x52\ +\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\ +\x00\xa4\xc0\xea\xbc\x12\xf0\x85\xa9\x4d\x2a\xad\xb6\x3f\x87\xff\ +\x07\x0b\x8c\x7a\x26\x4f\x47\x61\x78\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ \x00\x00\x0a\x9b\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -2588,6 +359,89 @@ \x07\xa1\xe4\xe3\x94\xca\xa1\x28\x8a\xa2\x28\x8a\xa2\x28\x8a\xa2\ \x28\x8a\xd2\xf4\xfc\x1f\x85\x5f\x1a\x03\xef\xde\x00\xbf\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x05\x10\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\ +\x00\x00\x04\xd7\x49\x44\x41\x54\x78\xda\xed\x9a\x69\xc8\x15\x55\ +\x18\xc7\x9f\x77\xb3\x0d\x97\x70\xad\x14\xd3\xca\xa5\x32\x95\x02\ +\xb3\x5c\x82\x40\xcd\x68\x33\xdb\x4c\xc2\xfa\x10\x56\x7e\x30\xb5\ +\x50\x49\x85\x16\xc8\x05\x44\x5b\x4c\x14\x35\x22\x68\xa1\xfa\x50\ +\x94\x42\x62\x46\xf5\x45\x0b\x0c\x23\x10\xb7\xc8\x4a\xa2\x1d\x45\ +\x33\x5f\x6f\xff\x3f\xcf\x73\x98\xe3\x78\xef\x7d\xe7\xde\x77\x66\ +\xde\x3b\xd7\x79\xe0\xc7\x7d\xef\xdc\x3b\x33\xe7\x37\xe7\xdc\x73\ +\x9e\x73\xce\xdb\x20\x67\x59\x34\x74\x74\x01\x72\xe1\x5c\x38\x17\ +\xce\x85\x73\xe1\x5c\x38\x17\x3e\x7b\xa2\x9e\x84\xbb\x82\xb9\x60\ +\x10\xb8\x10\xbc\x0f\xd6\xd6\xab\xf0\x5d\x60\x39\xb8\x2c\x74\xfc\ +\x3b\xb0\x17\xdc\x99\x75\x61\x96\xbb\x00\xfa\x81\x17\xc1\x34\x3b\ +\xfe\x9f\xbd\xb6\x82\x73\xed\xef\xf7\xc0\xd4\xac\x0b\x33\x66\x82\ +\x67\x41\x4f\x70\xd2\x5c\x4e\x81\x16\xfb\xfc\x57\xf0\x0c\x58\x17\ +\x7e\x52\x59\x8b\x11\x60\x05\xb8\xd9\xde\x9f\xb4\xd7\x66\x7b\x3d\ +\x02\x36\x82\xa5\xe0\xa7\xf0\xc9\x59\x12\x3e\x07\xcc\x07\x4f\x83\ +\xf3\x25\x68\xbe\xae\x46\x7f\x06\x1b\xc0\x26\xb0\xaf\xd4\x45\xb2\ +\x22\x3c\x51\xb4\xc6\x86\xdb\x7b\xd7\x84\x9b\xc0\x2f\x60\x35\x58\ +\x0f\x7e\x6b\xeb\x42\xb5\x2e\x7c\x09\x78\x1e\xcc\x28\x22\xca\x78\ +\xc5\x3e\x3f\x1c\xf5\x82\xb5\x26\x7c\x1e\xe8\x0c\x7a\x80\x09\xa2\ +\x9d\x4e\x77\x13\x6d\x14\xed\x99\x29\xfb\x3b\x98\x02\x3e\xaf\xf4\ +\x06\x69\x0b\x53\xa6\x37\xb8\x18\xf4\x31\x2e\xb0\x63\x23\xc1\x00\ +\xfb\x4e\x57\xaf\x6c\x94\x6d\xb6\x57\xca\x72\x5c\xbd\x1f\x7c\x53\ +\x4d\x01\xa2\x08\x33\x6b\xb9\x56\x74\xcc\xe3\xf8\xf6\x3d\xd8\x11\ +\xf1\xfa\xec\x5c\x6e\x14\xed\x51\xaf\x17\xcd\x82\x7a\x4a\xd0\xa3\ +\x96\x0b\x27\xd8\x60\xf7\xe5\xdf\x7f\xda\x83\xf9\xa1\xda\x27\x5e\ +\x4e\x98\xcd\xeb\x39\x30\x5d\xb4\x06\xfc\x60\x53\x7a\x02\xec\x2e\ +\x72\x1e\x0b\x76\x13\xb8\x1b\xdc\x02\x2e\x0d\x7d\x5e\x30\x81\x82\ +\xe1\xca\x41\x1a\x43\x65\x72\x63\x2b\xbf\xf7\x97\x54\xd9\x8c\xa3\ +\x08\x53\xf6\x13\x30\xde\xde\x9f\x32\xc4\x0a\x45\xfe\x06\x8f\x82\ +\x8f\xec\x3a\xac\xbd\xdb\x44\x9b\xdb\x50\xef\x5a\xee\x5c\x27\x14\ +\xf5\x81\xbb\x87\xe1\xc6\xd9\xc9\xe0\xd3\xf6\xc8\x96\xbb\xe1\x42\ +\xf0\x02\x38\x0e\x3a\x49\xd0\x61\xb8\x73\xdc\xef\x8a\x71\xd0\x3e\ +\xef\xe7\x5d\xaf\xd5\x24\x9b\xe4\xcc\x1a\x8b\x12\x85\xd0\x7d\xde\ +\x05\xf7\xb6\x57\xb6\x5c\x01\x76\x81\xab\xed\xc6\xe1\x66\xe6\x0a\ +\xe3\x9a\x5a\x93\x77\xdc\xf5\xa6\x8d\x11\xee\xd1\x96\x6c\xab\xbd\ +\xff\x11\x8c\x05\x87\x92\x12\x66\xea\xb6\x43\x4e\x6f\x82\xe1\xef\ +\x15\x8a\xfc\x5d\x4d\x4d\x96\x92\x2d\x48\xd0\x42\x58\x9e\x5d\x71\ +\xc8\x16\x2b\x18\x87\x84\x6d\xe0\x1a\xbb\x69\xa7\x12\x42\x49\x85\ +\xbb\x17\x6b\x97\x4d\x79\x0e\x58\x19\xe7\x0d\x7c\x09\x0e\xf6\x5b\ +\x4d\xd6\x85\x3f\x34\x14\x24\x59\x69\x77\x7d\xe6\xc8\xcc\x8f\x39\ +\x42\x2c\x8e\xfb\x26\xbe\xc0\xad\xa2\x53\x2e\x26\xde\xec\xac\x6e\ +\x10\xfd\xed\xf8\x35\x9c\x94\xb4\xdf\x2f\xf0\xf5\x1f\xd0\x57\x74\ +\xe6\x93\x98\x70\xb1\xcf\x96\x81\xd9\xf6\xbe\x49\x92\x95\x75\x9d\ +\x1e\x6b\xf7\x3e\xf0\x4e\x02\xf7\x8a\x24\xf0\x10\x78\x5d\xb4\xa9\ +\x35\x57\x70\x5e\xa5\xb2\xbc\x3e\xfb\x0c\x4e\x06\x16\x25\x21\x5b\ +\x49\xc1\x5f\x05\x8f\x49\xf0\xfb\x8a\xa3\x69\x17\x93\x5d\x25\x41\ +\x8b\xea\x50\x61\x4e\xbe\x99\xac\x0f\x91\x60\xec\x6d\xaf\xb4\x9f\ +\x49\xb5\xa4\x21\x5b\x89\x30\x63\x1c\xd8\x2e\x5a\x1b\x14\x76\xd9\ +\x57\x35\xd2\xe1\x4c\x6a\x0d\x78\x3c\x69\xd9\x4a\x85\x19\x5c\x5e\ +\x59\x1a\x93\xb4\x1b\xf2\xbe\x10\x7d\x98\xa9\x44\x35\x05\x75\x79\ +\xb6\x78\xe2\xe5\xb2\xac\x70\xf6\xe4\xb2\x37\x97\x49\x4d\x02\x5b\ +\x6a\x59\x98\xc1\x75\x5e\xae\x23\x5d\xe4\x1d\x73\x13\x86\x62\xd1\ +\x28\x41\xce\xcd\xf8\x57\xb4\x5f\x78\x53\x74\xfa\x99\x5a\xb4\xa7\ +\xd3\xe1\x7a\x13\x53\x3f\xae\xea\x73\xa6\xd4\xd2\xc6\xf7\xf9\x30\ +\xbe\x16\x9d\x46\x72\x45\xa3\x60\x0f\x2d\xf1\x8e\x2a\x2e\x61\x17\ +\x14\xed\x6b\xd2\xdc\xea\x18\x08\x8e\x49\x30\x8f\x65\x4d\x72\x6a\ +\x37\x58\x74\x51\x80\x13\x13\xf6\x03\x1c\xdf\x0f\xd9\x79\x99\x12\ +\x8e\x12\xa3\xc1\x57\xe0\x01\xf0\x96\x1d\xfb\x16\x74\x91\x33\x57\ +\x44\x32\x2f\xdc\x60\xb2\x5c\x8f\xba\x43\x82\xe5\x9d\x03\xe0\x65\ +\xd1\x5d\x84\xba\x12\x5e\x22\xda\x31\xb1\x49\xbb\xc9\xc1\x18\xf0\ +\x81\x68\xed\xc6\x3e\x41\xe8\x48\x61\xce\xb8\x36\x83\xab\x44\x57\ +\x2e\x5c\x50\x96\xab\x9f\x0b\xd3\x94\x4d\x5a\xb8\x97\x68\x07\x35\ +\x0b\x7c\xe8\x1d\xe7\x50\xb6\xdd\x1e\x46\x9b\x5b\x23\x59\x11\xbe\ +\x1d\xbc\x04\xde\x10\xdd\x3d\xf0\x83\x39\xf3\x09\xf0\x54\xda\xb2\ +\x71\x08\x73\x81\x7e\x9c\x09\x70\x5c\xbe\x5c\x74\xc1\x9d\x43\xcd\ +\x51\xd0\x4d\x82\xe1\x89\x31\x4c\x74\xa9\x95\x9b\x62\x91\xf7\x83\ +\x6a\x45\x98\xe7\x8e\x02\x57\x8a\xa6\x9a\xdc\x36\xf9\x03\xbc\x2d\ +\xfa\xbf\x15\xaf\x81\x79\xe0\x4b\xfb\x3e\xf7\x88\xd8\xc4\x77\x4a\ +\x4c\x4b\xae\x69\x0b\xbb\x78\x50\xb4\x56\x37\x89\x8e\xad\x6e\xdf\ +\xf6\x0a\xd1\x15\x13\xd6\x28\xf7\x6e\xd9\x41\x5d\x07\x3e\x16\x5d\ +\x4e\xca\xa4\x30\x73\x64\x36\xe3\x3d\xde\x31\xe6\xcc\xcc\xbe\xee\ +\x11\xcd\xb9\x99\x46\xb2\x96\x1f\x16\x1d\x9e\x38\x0d\xe4\xba\xd9\ +\x02\x29\x9d\x7b\xd7\xac\xb0\x2f\xd9\xea\xbd\xe7\x56\x0d\x9b\xfa\ +\x7e\xd0\x5f\x74\xd9\x86\x09\xc6\x67\xa2\xff\x6c\xc2\xf9\x2f\xf7\ +\x8a\x9e\xcc\xaa\x70\xa9\x60\xed\x73\x48\x62\xb3\x0f\x6f\x6f\x76\ +\x33\xe9\xba\x10\xe6\x2a\x06\x6b\xfc\x11\xd1\x7f\x2c\xd9\x9c\xb6\ +\x58\xda\xc2\x2e\xd8\x7c\x8f\x77\xb4\x64\x9a\xc2\x35\x17\xb9\x70\ +\xbd\x47\x2e\x5c\xef\x91\x0b\xd7\x7b\xfc\x0f\xcf\x88\xf6\x3d\x9f\ +\xd0\x2e\xe3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x04\x5e\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -2660,126 +514,907 @@ \x08\xc9\x90\x0c\x21\x19\x92\x21\xb2\xe8\x33\xf4\xff\x33\x14\x19\ \x92\x21\x24\x43\x08\x21\x06\xc2\x4f\xd8\x23\x52\x37\xb4\xd7\x44\ \x43\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x07\x56\ +\x00\x00\x38\x2d\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x07\x08\x49\x44\x41\x54\x78\x9c\xed\ -\x9c\x5f\x88\x5c\xe5\x19\xc6\x9f\x77\x66\x76\x09\xc1\x6e\x1a\x8d\ -\xba\x39\xe7\x3b\x67\x47\x0d\x51\x34\x29\x18\xb1\x5e\x95\x92\xfe\ -\x21\x85\xd6\xa2\x17\x35\x42\x62\x12\x21\x9a\xa0\xe8\x45\xaf\x42\ -\x11\x44\xbc\xd0\x8b\x42\x29\x88\x26\xa4\xd0\x56\x13\x4d\xc5\x16\ -\x6f\x04\x21\xd4\x48\x2b\x95\x80\x78\x21\x06\x61\x31\x30\x9e\x33\ -\x67\xd8\x98\x60\xcc\x22\x51\xd7\x39\xf3\x7a\xd1\x0d\xca\xce\xd9\ -\x3f\x33\x3b\xe7\x7b\xbf\x99\xef\xfd\xc1\xde\x9c\x6f\x86\x79\x76\ -\x9e\xdf\x9e\xef\x9c\xb3\xe7\x7c\x80\xa2\x28\x8a\xa2\x28\x3e\x42\ -\xd2\x01\x6c\x51\xaf\xd7\xd7\xcc\xcd\xcd\x5d\x25\x9d\xc3\x26\xb5\ -\x5a\x2d\x4f\x92\xe4\xe2\x52\xaf\x19\x79\x01\x6e\xb8\x61\xe3\x54\ -\x9e\x57\x9e\x67\xc6\x0e\x00\x55\xe9\x3c\x02\x34\x99\xe9\xa9\x66\ -\xb3\xf9\x97\xa2\xc1\x91\xfe\x42\x36\x6c\xd8\xf0\x83\x6a\x75\xec\ -\x34\x80\x3b\x01\x54\xa4\xf3\x08\x31\x41\x84\xdf\x4e\x4c\xac\xcb\ -\x66\x67\x67\xdf\x5f\x38\x38\xd2\x5f\xca\xda\xb5\x6b\x1e\x04\x50\ -\x97\xce\xe1\x02\x44\xfc\x64\xd1\xf6\x91\x16\x00\xe8\x6c\x91\x4e\ -\xe0\x10\x26\x8e\xe3\xf5\x0b\x37\x8e\xb4\x00\xcc\x95\x91\xfe\xfd\ -\x7a\xa5\xdd\x6e\x77\x4d\xf9\xfa\x05\x79\x8e\x0a\xe0\x39\x35\xe9\ -\x00\x82\x7c\x04\xf0\x1f\xa4\x43\x0c\x12\x66\xdc\x45\x44\x87\x7a\ -\x79\x8f\xcf\x02\x7c\x96\xa6\xad\xd7\xa5\x43\x0c\x92\x28\x0a\x7a\ -\x7e\x8f\x4e\x01\x9e\xa3\x02\x78\x8e\x0a\xe0\x39\x2a\x80\xe7\xa8\ -\x00\x9e\xa3\x02\x78\x8e\x0a\xe0\x39\x2a\x80\xe7\xa8\x00\x9e\xa3\ -\x02\x78\x8e\x0a\xe0\x39\x2a\x80\xe7\xa8\x00\x9e\xa3\x02\x78\xce\ -\x92\xff\x0e\x9e\x9a\x0a\xb6\x75\x3a\xf4\x23\x66\x1a\xd2\x7f\x1b\ -\xf3\xcd\x4b\x0c\x5e\x6f\x8c\xd9\xdf\xbd\xb9\xc3\x40\xe5\x62\xad\ -\x56\x7b\xab\xd1\x68\x7c\x5e\x5a\x34\x47\x28\x2c\x36\x08\x82\xb5\ -\xd5\x2a\x9d\xe8\x74\x70\x37\x00\x10\xb1\xdd\x54\x76\xd8\x44\xc4\ -\x47\xbb\x37\x13\x00\x46\x9e\x7f\x73\x29\x8a\x82\x7d\xa3\x76\xcf\ -\xc0\x42\x0a\xa7\x80\x6a\x95\xfe\x08\xfc\xbf\x7c\x8f\x59\x07\xd0\ -\x2b\x71\x1c\xdf\x28\x1d\xa4\x4c\x8a\x04\xa8\x01\xd8\x6b\x3b\x88\ -\xa3\xac\x61\xce\x77\x49\x87\x28\x93\x2e\x01\xc2\x30\x5c\x07\x60\ -\xad\x40\x16\x57\xe9\xfd\x3e\xab\x21\xa2\xeb\x18\x80\x99\xc9\x83\ -\x47\x06\x7b\xa1\xd4\x2f\xc3\x18\xf3\x63\x00\xa6\x52\xa9\x9c\x5a\ -\xee\x41\xce\x32\xd0\xd3\x40\x39\x28\x8a\xc2\x17\x88\xf8\x34\x11\ -\xff\x93\x39\x9f\xae\xd7\x83\x5b\x6c\x87\x50\x01\x64\xa0\x38\x0e\ -\x8e\x00\x38\xf8\xbd\x6d\x1b\xf2\xbc\xb7\x5b\xba\x07\x41\x1f\xe7\ -\xf7\x7c\xef\xa8\x9d\x1a\x45\x91\x79\x0f\xe0\x3b\x2c\x7d\x1c\xc5\ -\x71\x70\x84\x99\x1e\xea\x1a\x20\x58\x5f\xbf\x40\xf7\x00\x76\x59\ -\xb4\x7c\x00\x39\xc0\x47\x6c\x07\x1a\xd2\x2b\x7c\x43\xc9\x92\xe5\ -\x33\xd3\xde\x34\xcd\x4e\xda\x0e\xa5\x02\xd8\x81\x8c\x09\x0f\x33\ -\x63\xd1\xf2\x9b\xcd\xe6\x71\xeb\xa9\xa0\x53\x80\x0d\xc8\x98\xf0\ -\x30\x11\x1e\x2e\x18\x13\x2d\x1f\x50\x01\xca\x66\xa9\xf2\x3b\xd2\ -\xe5\x03\x2a\x40\x99\x2c\x57\xfe\x1e\xe9\xf2\x01\x3d\x06\x28\x0b\ -\x8a\xa2\xf0\x05\xc0\xed\xf2\x01\xdd\x03\x94\xc1\x95\xf2\x0f\x14\ -\x8c\x39\xb1\xdb\xff\x3e\x2a\xc0\x60\x59\x49\xf9\xc7\x6c\x87\x5a\ -\x0a\x15\x60\x70\x0c\x5d\xf9\x80\x0a\x30\x28\x28\x8a\xc2\xe7\xb1\ -\x48\xf9\x44\xd8\xe7\x62\xf9\x80\x0a\x30\x08\xae\x94\x7f\xb0\x60\ -\xac\x43\x84\x7d\x49\x92\xbd\x64\x3b\xd4\x4a\xd1\xb3\x80\xd5\xb1\ -\x54\xf9\x20\xc2\xcb\x9d\x0e\x9d\x37\xc6\xfc\xca\x4a\x18\xc2\xed\ -\xcc\xbd\xdd\xbf\xa9\x02\xac\x82\x38\x0e\xfe\xcc\x5c\x5c\x3e\x00\ -\x30\x63\x37\x11\xef\xb6\x95\xa7\xc7\xee\x01\xe8\x14\xd0\x37\xc6\ -\x98\x4d\xcc\xf4\x98\x74\x8e\xd5\xa2\x02\xf4\xcf\x35\xd2\x01\x06\ -\x81\x0a\xd0\x27\xcd\x66\xf3\x3d\x00\x1f\x4a\xe7\x58\x2d\x7a\x0c\ -\xd0\x3f\x39\x50\xd9\x01\x74\x4e\x01\xd8\x5c\xfc\x12\xfe\x0f\x11\ -\x52\x5b\x81\x98\xc9\x00\xf8\x69\x2f\xef\x51\x01\x56\x41\x9a\xa6\ -\xad\x28\x8a\xb6\x2f\x26\x01\x33\x4d\x55\xab\xf9\xde\x46\x63\xa6\ -\x61\x23\x4f\x14\x05\xf7\x00\xd4\x93\x00\x3a\x05\xac\x92\x34\x4d\ -\x5b\x40\x65\x3b\x80\xe9\x85\x63\x44\x98\x6a\xb7\xab\x6f\xd7\xeb\ -\x93\x75\xfb\xc9\x56\x86\x88\x00\xc6\x98\x7b\xe3\x38\x38\x66\x4c\ -\xf0\x8c\x31\xe6\x6a\x89\x0c\x83\x64\x98\x25\xb0\x2e\x40\x1c\x87\ -\xf7\x11\xf1\xbf\x98\x69\x17\x11\x1d\x22\xc2\x7f\x6f\xba\xe9\xfa\ -\xeb\x6c\xe7\x18\x34\xc3\x2a\x81\x75\x01\x98\xb1\xe0\xc2\x08\xdf\ -\x3a\x37\x57\x7d\x4b\x25\x90\xc1\xba\x00\x44\x7c\xae\x60\xeb\x6d\ -\x2a\x81\x0c\xd6\x05\x68\xb7\xf1\x34\x80\x56\xf7\x88\x4a\x20\x81\ -\x75\x01\x5a\xad\x56\xd2\xe9\x60\x3b\x54\x02\x27\x24\x10\x39\x0b\ -\xc8\xb2\x6c\x7a\x39\x09\x26\x27\x27\xaf\xb5\x1e\x6c\xc0\x0c\x83\ -\x04\x62\xd7\x01\x96\x93\x60\x6c\xac\x72\x4a\x25\x28\x1f\xd1\x0b\ -\x41\x2a\x81\xbc\x04\xe2\x57\x02\x55\x82\xef\x24\x30\xc6\x84\xb6\ -\x73\x89\x0b\x00\xac\x44\x02\x3f\x8e\x09\x88\xf8\x09\xdb\x99\x9c\ -\x10\x00\x58\x4e\x02\x6c\xf1\x41\x02\x80\x36\xda\xce\xe3\x8c\x00\ -\x80\x4a\x00\x74\x4e\xd8\xce\xe2\x94\x00\x80\x5f\x12\x8c\x8f\xb7\ -\x7f\x02\xe0\x4f\xcc\x78\x8d\x08\x3b\xd3\xb4\x65\x5d\x00\x27\xef\ -\x07\xc8\xb2\x6c\x3a\x0c\xc3\xed\x95\x0a\x4e\xa1\x7b\x99\xb6\x2d\ -\x63\x63\xd5\x7f\x4f\x4e\x4e\xfe\x7c\x66\x66\xe6\xbc\x44\xbe\x41\ -\x71\xf6\xec\xb9\x4f\x01\xfc\x5e\x32\x83\x73\x7b\x80\x2b\x2c\xb3\ -\x27\xd8\x3a\x2f\xc1\xd0\xef\x09\xa4\xe9\x63\x0f\x40\x8f\x46\x91\ -\xf9\xcd\xe0\xa3\x2c\x06\x4f\xa3\x78\xb1\xc6\xad\xa3\xb2\x27\x90\ -\xa4\x9f\x29\xe0\x17\x80\x33\x8b\x47\x6f\x1d\x1b\xab\xbe\x09\xe0\ -\x4e\x00\x1d\xe9\x30\xc3\x88\xb3\x53\x40\x0f\x6c\x8b\xe3\x8d\xb7\ -\x4b\x87\x18\x56\x46\x41\x00\x30\xd7\x46\x7e\x5d\xff\xb2\x18\x01\ -\x01\xe8\xb9\x34\x4d\xcf\x4a\xa7\x18\x56\x7a\x3e\x06\x60\xe6\x67\ -\x89\x70\xba\x8c\x30\xc5\xd0\xfd\x00\x76\x16\x8e\x10\x1f\x4d\x92\ -\xec\x71\x7b\x59\x46\x8f\x9e\x05\x20\xc2\x69\x5b\x4b\xc5\x1a\x63\ -\x76\x11\xf1\xef\x8a\x73\xf0\xd1\x24\x69\x1d\x80\x43\x47\xa4\xc3\ -\x88\xb3\x53\xc0\x7c\xf9\x2f\xa2\x20\xa3\x96\x3f\x38\x9c\x14\xc0\ -\x18\xb3\x5b\xcb\xb7\x83\x73\x02\xcc\x97\xff\x77\x68\xf9\x56\x70\ -\x4a\x00\x2d\xdf\x3e\xce\x08\x10\xc7\xe1\x03\x5a\xbe\x7d\x9c\x10\ -\x20\x8e\xc3\x07\x98\xf1\x37\x68\xf9\xd6\x11\x17\x40\xcb\x97\x45\ -\x54\x80\x38\x0e\xf7\x68\xf9\xb2\x88\x09\x30\x5f\xfe\x5f\x8b\x32\ -\x68\xf9\xf6\x10\x11\x40\xcb\x77\x07\x81\xf5\x01\x82\x5f\x6a\xf9\ -\xee\x20\xb0\x3e\x00\x1d\x2c\xfa\x5c\x2d\x5f\x06\xeb\x37\x85\x12\ -\xe1\xf2\xc2\x15\x2d\x1d\x2f\x7f\x7f\x14\x85\xfb\xa4\x43\xac\x90\ -\x9e\xff\xa0\x05\xee\x0a\xae\x3e\x0b\xe4\xbf\x06\xb0\x7e\x7e\xc3\ -\xe1\x24\x69\x3d\x02\x37\xcb\x07\x80\xea\xfc\xcf\x48\x62\x5d\x80\ -\x24\x49\xce\x04\x41\xb0\xb9\x56\xa3\x9f\xe5\x39\xd2\x2c\xcb\xde\ -\xb5\x9d\x41\xf9\x0e\x91\xe7\x02\x5a\xad\xd6\x05\x00\xaf\x4a\x7c\ -\xb6\xcf\x10\x51\xd7\x5e\x56\xfc\x4a\xa0\x62\x8d\x2f\xb3\x2c\xbb\ -\xb4\x70\xa3\x0a\xe0\x09\x44\x7c\x1c\x40\x7b\xe1\x76\x15\xc0\x0f\ -\x4e\x5e\xbe\x3c\x57\xf8\x08\x9a\x93\xcf\x06\x3a\xc6\x3b\xcc\xfc\ -\x0f\xe9\x10\xfd\x40\x44\xed\x4a\x85\x3f\xf8\xe4\x93\xd6\xff\x16\ -\x7b\x8d\x0a\xb0\x3c\x67\x9a\xcd\xd6\x73\xd2\x21\xca\x42\xa7\x00\ -\xcf\x51\x01\x3c\x47\x05\xf0\x1c\x15\xc0\x73\x54\x00\xcf\x51\x01\ -\x3c\x47\x05\xf0\x1c\x15\xc0\x73\x54\x00\xcf\x51\x01\x3c\x47\x05\ -\xf0\x1c\x15\xc0\x73\x54\x00\xcf\x51\x01\x3c\xa7\x8f\x45\xa2\x70\ -\x57\x14\x15\x2d\xdc\x39\xcc\xf0\x0f\xa5\x13\x48\xd1\xc7\x22\x51\ -\x74\xa8\x8c\x20\x8a\x0c\x3a\x05\x78\x8e\x0a\xe0\x39\x5d\x02\xd4\ -\x6a\xb5\x5c\x22\x88\xc3\x8c\xf4\xf7\xd1\x25\x40\x92\x24\x17\x01\ -\x34\x05\xb2\x38\x09\x11\x3e\x90\xce\x50\x26\x85\x53\x00\x33\x3d\ -\x65\x3b\x88\xa3\x7c\xfc\xf5\xd7\xed\x63\xd2\x21\xca\xa4\xf0\xa1\ -\xc7\xd9\xd9\xd9\xf7\x27\x26\xd6\x65\x44\xd8\x06\x60\xc2\x72\x26\ -\x17\x68\x03\x78\x23\xcf\x79\xe7\xcc\xcc\xcc\x05\xe9\x30\x65\x42\ -\xcb\xbd\x20\x8e\xe3\xf5\xed\x76\x7b\x64\x9f\x8e\x2d\x62\x7c\x7c\ -\xfc\x8b\x46\xa3\xf1\x95\x74\x0e\x45\x51\x14\x45\x51\x94\xb2\xf8\ -\x16\x71\x67\xe1\x7d\x0f\xc0\x8e\x36\x00\x00\x00\x00\x49\x45\x4e\ -\x44\xae\x42\x60\x82\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ +\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ +\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xe2\x02\x13\x17\x36\x16\xcb\x95\x2a\xe9\x00\x00\x00\x19\x74\x45\ +\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\ +\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\ +\x00\x20\x00\x49\x44\x41\x54\x78\xda\xec\xbd\x79\x9c\xdd\x55\x7d\ +\xff\xff\x7c\x9f\x73\x3e\x9f\xcf\xbd\x77\x96\x24\x33\x59\xd8\x49\ +\x08\x20\x8b\x40\x94\x4d\xa9\x6c\x2e\x88\x5b\xc5\xba\x56\x41\x50\ +\x6a\xb5\x3f\x51\xa0\xfd\xda\x5f\xb5\xb5\x6a\x17\xbf\xb5\xad\x56\ +\x71\xa3\x4a\x55\x14\xd7\xd6\x56\x11\x11\x41\x59\x45\xd9\x77\x42\ +\x08\x48\x86\x2d\x40\x92\xc9\x32\x33\x77\xee\xfd\x7c\x3e\xe7\x9c\ +\xf7\xf7\x8f\x73\x27\x89\x6c\x61\x49\x30\x4b\xcf\xe3\x31\x99\x3b\ +\xf3\x98\x7b\xf3\x39\xe7\xfd\x3e\xef\xfd\xfd\x7a\x0b\x5b\xd9\xea\ +\x5f\x35\xc3\xc9\x0a\x19\x00\xf6\x06\xd9\x47\xaf\xaf\xe6\xd9\xa6\ +\xec\x68\xf6\x77\x3b\x46\x98\xad\x22\x43\xc0\x20\xd0\x00\xb2\xde\ +\xdb\x6a\xa0\x0b\x8c\x01\x2b\x81\x65\xc0\x83\xbd\xaf\x25\xc0\x42\ +\xe0\x0e\x60\x7c\x6c\xee\xa8\xdf\x9a\xce\x4b\xb6\xf4\x0d\x0c\x7e\ +\xa8\xb9\x9d\xfb\x93\xc6\x11\x75\x2e\x87\x8b\xc8\xa1\xaa\x3a\x5f\ +\x97\xea\x90\x0c\x0a\xf4\x0b\xe1\xab\x1d\x8a\xf7\x34\x20\x42\x14\ +\xc0\x80\x3e\xf3\x6d\xaf\x04\x7e\x0b\x5c\x0d\x5c\x01\x5c\x3e\x36\ +\x77\xf4\xe1\xff\x65\x80\xe7\x9a\xe8\x67\x0f\x1c\xea\x8e\xc8\x4e\ +\xe8\xfe\x4d\xfb\xad\x7e\x25\x33\x9b\x5f\xea\x47\x25\x91\x55\x9a\ +\xc2\xf8\x1f\x8f\xd3\xfa\xf7\x01\x8a\x02\xaa\x1f\x97\xf0\xda\x02\ +\x54\x51\x01\x91\x8d\xbe\xe5\x15\xc0\xf7\x81\x6f\x8d\xcd\x1d\xbd\ +\x7a\x4b\x3b\x4b\xb3\x59\x13\x7a\x64\x78\xfd\xd7\x47\x0e\x2c\x99\ +\x79\xd6\xc0\x6f\x87\xba\xcc\x90\xab\x10\xde\x4f\xc5\xcc\x38\x12\ +\xd0\xa6\xac\xe3\x65\xaf\xd8\x03\x33\x10\x25\x3e\x12\xc1\x0a\x4a\ +\x22\xfe\x26\x5a\x33\x81\xf7\x03\x57\x0d\x8e\x0c\x77\x07\x47\x86\ +\xcf\x1a\x1c\x19\x3e\xf2\xf1\xf6\xf0\xbf\x0c\xf0\xf4\x09\x3f\x73\ +\x70\x64\xf8\x33\x83\x23\xc3\xa3\xc0\xa5\x44\x39\x59\x1a\x52\xc4\ +\x25\x01\x7d\x38\x62\xf7\xb6\xc4\x25\x01\xc9\xd7\xa3\x6e\x05\xd9\ +\x71\x39\x61\x51\x20\xde\x11\xb0\x7b\xb9\x24\xea\x44\x90\x4d\x2f\ +\xf0\x0a\xe0\x64\xe0\xd2\xc1\x91\xe1\xd1\xc1\x91\xe1\xcf\xf4\x18\ +\x64\xb3\x65\x84\xcd\x55\x02\x2c\x18\x1c\x19\x3e\x1f\x58\x0e\x9c\ +\x0e\x0c\x01\x60\x23\x5a\x2a\xee\x45\x19\xfe\xfc\x0a\xbf\xc8\xa3\ +\xb1\x67\xc2\xa1\xa0\xbd\x1d\xad\x56\x58\x1a\xd1\x3e\xa0\x95\x88\ +\xaf\xaa\xcf\xb5\xc2\x1b\xea\x3d\xfb\xf2\xde\x5e\x16\xfc\x2f\x03\ +\x6c\xe0\xc6\x0f\x8e\x0c\xbf\x76\x70\x64\xf8\x3a\xe0\x46\xe0\x55\ +\x4f\xf8\xc4\x43\x82\x3b\x32\x23\x7b\x59\x8e\x54\x4a\x58\xb4\xce\ +\x30\x8f\x80\x7a\xb0\x2f\xcb\x91\x08\x58\xd6\x4a\x80\xdf\xe3\x7a\ +\x15\x70\xe3\xe0\xc8\xf0\x75\x83\x23\xc3\xaf\xdd\x9c\x24\x82\xd9\ +\x1c\x08\x0f\x1c\x32\x38\x32\xbc\x18\xf8\x09\x70\xe0\x13\xbe\x21\ +\x26\x22\x4a\x26\xc4\x36\x98\xf9\x16\xfa\x84\x78\x9b\x07\x15\x8c\ +\x07\xa3\x20\x73\x84\x70\x75\x0d\x15\xc4\x87\xe3\xe6\x74\xe1\x0e\ +\x04\x7e\xd2\xdb\xeb\x21\x9b\x03\x23\x98\xdf\x33\xe1\x77\x18\x1c\ +\x19\xbe\xb0\xe7\x56\xed\xb1\x61\x9f\x45\x11\xed\xbd\x1c\x04\xd9\ +\xd1\x62\xe6\x08\x32\xc7\x80\x68\xda\x4d\x4c\x76\x00\xd3\x0d\x0c\ +\x09\xba\x4a\x93\x7a\xd8\xbc\xd6\x1e\xc0\xd5\xbd\xbd\xef\xf0\xfb\ +\x64\x04\xf3\xfb\x20\xfe\xd8\xdc\x51\x06\x47\x86\x3f\xd7\x0b\xb4\ +\xbc\xe2\x29\x3f\xac\x28\x22\x10\x15\x74\xba\x21\x8e\x2b\x66\x27\ +\x8b\xff\x71\x89\x46\x03\xe3\x8a\x31\x60\x76\x12\x24\x07\x9d\x30\ +\xc8\xa8\xe2\x14\x9c\x2a\xa2\x89\x19\x36\x23\x96\x78\x05\xf0\xe0\ +\xe0\xc8\xf0\xe7\x7a\x67\xb2\xf5\x32\xc0\x7a\x9b\xdb\x6f\x70\x64\ +\x78\x39\xf0\xc1\xa7\x1d\xb4\xd0\x75\xd1\x0b\x69\x09\xe1\x76\x8f\ +\xdd\xcd\x52\x9f\x57\xa1\x93\x8a\xf6\x0b\x52\x81\x69\x0a\x61\x91\ +\x47\x0b\x88\x4b\x63\x2f\xf8\xb3\x59\x47\x3d\x3e\xd8\x3b\x93\xfd\ +\x9e\x6b\x69\x60\x9e\x0b\xc2\xaf\x77\xeb\x3f\x0f\xdc\x02\x3c\xa3\ +\x1d\xaa\xac\x63\x02\xcd\xc0\xbe\x38\x23\xff\x9b\x16\xa2\x8a\xde\ +\xdf\x8b\xef\x09\x48\x50\xa4\x01\x0c\x08\xf1\x91\x00\x86\x64\x10\ +\x6e\xde\x6b\x18\xb8\x65\x70\x64\xf8\xf3\x53\xd2\xe0\xb9\x60\x84\ +\x4d\xce\x00\x63\x73\x47\x01\x66\x0f\x8e\x0c\x2f\x05\x4e\x59\x77\ +\x87\x9f\xfe\x12\x9d\x32\xf3\x7b\x04\x75\x10\xce\xad\x88\xe3\x4a\ +\xf7\x9f\x27\xd1\xbc\xf7\xfb\x0a\xcc\x6e\x0e\x55\x25\x44\x10\x23\ +\xa8\xd9\x1c\x4d\x81\xdf\xdd\x5e\xef\xfb\x29\xbd\xb3\x9a\xdd\x3b\ +\xbb\x2d\x5e\x02\xbc\x05\x78\x04\xd8\xfe\xd9\x7e\x96\xf6\x02\x7e\ +\xa2\x3d\x69\x60\xc0\x1c\x9d\xd1\xf8\x70\x1f\x78\x45\x0c\x88\xa4\ +\xaf\x78\x87\x27\x4e\x2a\xb4\x15\xed\x24\xdb\x61\x0b\x0a\x7c\x6f\ +\x0f\x3c\xd2\x3b\xbb\x2d\x8f\x01\xd6\xf3\xeb\x3f\x43\x8a\x93\x6f\ +\x9c\x2b\x12\x41\x1f\x89\xe9\x36\x1b\x50\x03\xc6\x42\xf6\x9e\x06\ +\xba\x4c\x08\xe7\x57\x48\x96\xe2\x7d\x76\xbe\x4d\xfa\xbf\x29\xe8\ +\x1a\x5d\x2b\x39\xb6\xb0\xf5\xfd\xde\x19\x6e\x32\x75\x60\x36\x05\ +\xf1\x7b\x3a\xec\xaa\x5e\x24\x6c\xe3\x2d\x05\x19\x14\x44\x41\x42\ +\x8f\xa0\x4d\x21\x9c\x57\x42\x5f\xa0\xf3\x2f\x1d\x42\x54\x62\x09\ +\xb2\x9d\x41\x76\x34\x60\x15\x59\x12\xa0\x7c\x02\x83\x72\xf3\x5f\ +\xa7\x0f\x8e\x0c\x5f\xb5\xa9\xbc\x04\xd9\xc8\xb7\x5e\x80\x1c\xb8\ +\x01\xd8\x67\xa3\x3f\x6c\xad\x10\x7a\x6a\x20\x5f\xcf\xb2\x0f\xd0\ +\xf9\xc4\x24\xa6\x05\xd9\x11\x19\xe6\x90\x0c\xed\x2a\xe1\x11\xc1\ +\x3c\x50\x63\xaf\xf3\x98\xe3\x0b\xfc\x76\x06\xed\xbd\x49\x94\x2d\ +\x2d\x17\xba\x10\x78\x61\x2f\xca\xa1\x1b\xcb\x3e\xd8\xd8\x12\x60\ +\x1a\x70\xff\xa6\x20\x3e\x24\xa3\x4f\x82\x12\x6e\xac\x53\x0e\xa0\ +\x47\x43\xc9\xc1\x0c\x09\xaa\x50\xfd\x57\x95\x76\x35\xc3\xe0\x7f\ +\x5d\x62\x5f\x94\x51\x5e\x58\xa1\x99\x20\xb1\xf7\xf7\x6c\x91\x6b\ +\x9f\xde\xd9\x4e\xdb\xac\x54\xc0\x7a\xee\x4a\x3f\x70\x37\x30\x6b\ +\x93\x1d\x81\x82\x4e\x33\x29\xf4\xdb\xd3\xeb\xba\x52\x89\xf7\x44\ +\x8a\xd3\x9a\x30\xa1\xf8\x8b\x2b\xc2\x9d\x01\x3a\x4a\xfe\xd6\x06\ +\x1a\xc0\x8f\xf5\x52\xc3\x66\x3d\xe2\x6f\x99\x5c\x30\xab\x77\xc6\ +\xfd\x1b\xcb\x4d\xdc\x18\x12\x40\x80\xe9\xc0\xc8\x33\xf5\xef\x9f\ +\xce\xd3\x4a\xa9\x64\x27\x37\xf1\xd7\xd4\x48\x21\xc8\x4c\x83\x2e\ +\x8f\x88\x87\xe2\xb4\x16\xf6\xd8\x1c\x7f\x4b\x40\x9b\x06\x26\x23\ +\x61\x42\xb1\x6f\xca\xa9\x7e\x52\xa2\x9d\x75\xd5\x40\xaa\xca\x16\ +\xba\x86\x7b\x67\x3d\x7d\x63\xb0\xb1\x79\xb6\xb7\xbf\xa7\xf3\x17\ +\x6f\x72\xe2\x93\x0c\x3f\xb5\xe9\xbb\x99\x6e\xa0\x54\xd4\x81\x3e\ +\x18\xc0\x25\x15\xa1\x40\xbc\x2f\xc2\x58\x44\x66\x08\xfe\x97\x25\ +\xee\x3d\x4d\xea\x5f\xd6\x48\xc1\x56\x50\x04\xb7\x96\x09\x16\x03\ +\xf9\xb3\x95\x02\xe6\xd9\x10\xbf\x67\x88\xdc\xb0\x49\xc5\xfe\xa3\ +\x64\x8d\x68\x8f\x09\xe6\x18\xfc\xa5\x35\x52\x2b\xb2\x83\x4d\xba\ +\x7d\xba\x20\xdb\x5b\xcc\xc1\x8e\xfa\xfc\x0a\x6a\x70\x47\x17\xc8\ +\x6c\x8b\x7a\x85\xe5\x11\x53\x4f\x7d\xd6\x16\xcf\x09\xb3\x80\x1b\ +\x9e\xad\x77\xf0\x8c\x19\x60\x3d\x57\x6f\x9f\xe7\x6a\xc7\xd1\x08\ +\x51\x04\x15\x41\xe6\x1b\x74\x75\x84\x49\x60\x2c\x12\xc6\x15\x13\ +\xa1\x71\xb4\x23\x7c\x6c\x02\xbd\xd5\x53\xff\x4f\x99\x18\xe5\x62\ +\x8f\x79\x69\x93\xf2\xbb\x15\x62\x14\x89\xba\xb5\x88\x82\x7d\xa6\ +\x5c\xc4\xdf\x87\x04\xf8\x0c\x70\xe8\xef\x67\xdf\xc9\x1d\xcc\xdf\ +\x50\x50\xff\x47\x07\x7b\x50\x96\x4a\xc0\x2c\x98\xfd\x1d\xcd\x33\ +\x06\x30\x3b\x18\xdc\xeb\x1a\x50\x83\xb4\xa0\x38\xa5\x45\xf5\x9f\ +\x5d\x4c\xec\x15\x86\x69\x64\x2b\x59\x87\x4e\x05\x8b\x36\x39\x03\ +\xac\x17\xe1\x7b\xcb\x46\x0f\xf2\x3c\x93\x95\x01\xfd\x92\xf8\x61\ +\x71\x44\x9d\x10\x6b\x60\x9e\x81\xbd\x1d\xf5\x4f\x6a\x18\x30\x98\ +\x3d\x2d\x20\xc4\x07\x22\xf1\xf2\x3a\x49\x10\x65\x6b\x5a\xa7\x4f\ +\x85\x8d\x9f\xae\x3a\x30\xcf\xe0\xe6\xcf\x66\x23\x86\x77\x9f\x95\ +\xef\x51\x41\x7e\x72\x23\x05\x77\x0c\x29\xe4\x2b\xc0\x6c\x43\x5c\ +\x14\xa0\x10\xba\x7f\xd3\x46\xa6\x5b\x74\x3c\x82\x83\xf8\xad\x2e\ +\x56\x52\xe5\xd0\x56\xb6\xbe\xdf\xa3\xcd\xa6\x61\x80\xf5\x8c\xbe\ +\x9b\x36\x9b\x2d\x1b\x52\x64\xd0\x81\x3b\xae\xa0\xfe\xf7\x0e\xd2\ +\x12\xe8\x28\xf6\x88\x0c\x71\x60\xe6\x5a\xe2\x6d\x81\xb8\x38\x50\ +\xbc\x26\xa7\xbe\xa4\xc6\xdd\x16\xb7\x12\x67\xe0\x31\xeb\xa6\xa7\ +\x6b\x14\x3e\x65\x06\x58\x2f\x9f\xbf\xfd\x66\xb3\xdd\x1e\x15\x65\ +\x40\xf0\xdf\xeb\x60\x77\x36\xe8\x42\x8f\x09\xe0\xe6\x1b\xaa\xef\ +\x77\x30\x73\x0d\xfe\x66\x8f\x7b\x75\x8e\x0c\x25\xfd\xef\x3f\xdd\ +\x81\x42\xb6\xc4\xe4\xd0\x86\xd6\xf6\x53\xf5\x04\x1b\x95\x01\x7a\ +\x51\xa7\xfd\x58\x97\xcf\xff\xfd\xd3\x5d\xd7\xa3\x5f\x4c\x06\x61\ +\xb8\xb4\x82\x25\x21\xd5\x05\x00\x8d\x3f\x6f\x62\xa6\x0b\xac\x51\ +\xe2\xc3\x91\x70\x4b\x40\xfa\x0d\xfe\x96\x80\x59\x18\xd9\x4a\xd7\ +\x29\x83\x23\xc3\xfb\x3d\x55\x29\x60\x9e\x0a\xf1\x7b\x1c\x75\x31\ +\x9b\xc9\x9d\x51\x92\x2b\x18\x11\x02\x42\x34\x82\x99\x65\xb0\xc7\ +\x14\x74\xfe\xa3\x0b\x2b\x53\xbc\xcf\xed\x67\xf1\x17\xd7\xb8\x23\ +\x0b\xe2\xcd\x4a\xfe\xa5\x19\x74\x87\x2c\x7e\xd2\x20\x5f\x56\x68\ +\x27\x67\x40\x03\x68\xdc\x6a\xc4\x81\x02\x17\x3f\x55\x55\xb0\x41\ +\x06\x58\xaf\x80\x73\xe6\xe6\xec\x3c\x6b\xa5\xb8\xe3\x72\xdc\x21\ +\x19\x9d\x0f\x4c\x40\x4f\x0a\x14\xa7\x36\x08\xb7\xd7\xc4\x3b\x6b\ +\xcc\x2e\x82\x59\x60\x08\x9d\x88\x5f\x12\xa0\x9c\xaa\x24\xd6\xdf\ +\x77\xdf\xc0\xc6\x16\x90\x33\xa7\x0a\x4d\x9f\x15\x03\xf4\x44\xff\ +\x0e\x3c\x83\x02\xce\xe7\x7c\xd7\x01\xa4\x06\xfb\xb2\x0c\x7f\x45\ +\x8d\xbf\x20\x85\xfc\x44\x95\x70\x5d\x89\xfb\xc3\x8c\xf2\x1f\x26\ +\xb1\x47\xe5\x44\xa0\xbb\xa8\x4b\xf8\x71\x05\xcb\x63\x6a\x2d\xdb\ +\xfa\x34\xc2\x07\x07\x47\x86\x77\xd8\x90\x14\x30\x1b\xba\xfd\xc0\ +\x37\xb6\x88\xed\xf6\xf2\x00\x6e\x81\x23\x3f\xbe\x60\xf2\xcf\x27\ +\xd0\x65\x29\xff\x5b\xfc\x9f\x06\xe1\xea\x12\x7b\x48\x86\x7d\x55\ +\x46\xfe\xa3\x7e\x7c\x37\x52\x7f\xb3\x0b\x37\x7a\x6c\x05\x5b\xa9\ +\x5b\xf0\x8d\x0d\x49\x01\xd9\x40\xd0\xe7\x10\x52\xd3\xc6\xe6\x7d\ +\xfb\x1d\xc4\x9f\x57\xd8\xa3\xb3\x74\x93\x9b\xc2\xc4\x21\xab\x28\ +\x4e\x6d\x92\xfd\x61\x0e\xb9\xe0\x1f\x56\xe2\x18\xd8\x3d\x33\xca\ +\x4f\x4f\x40\x05\xf2\x83\x2e\x76\x9a\xa5\xf8\x9f\x41\xe2\x8c\x54\ +\x62\x36\xa5\x44\xb7\x22\x7e\x38\x14\xb8\xe6\x89\x18\xc1\x6c\xe0\ +\xf6\x9f\xb3\x45\x58\x3d\x1e\x64\x67\x43\x5c\x11\x53\x76\xb0\xab\ +\x34\xbf\xd0\x4f\xf9\xc5\x0e\xfe\xa2\x1a\xb1\x60\xb6\x13\xc2\x2f\ +\x2a\x3a\xa7\x4f\x90\xbf\xab\x0f\x99\x93\x5c\xc2\x78\x5f\x20\x7c\ +\xa5\x8b\x66\xeb\x88\xbf\x95\xad\x73\x9e\x4c\x0a\xd8\x27\x91\x00\ +\xaf\xdd\x5c\xdc\xbe\xa7\x24\x05\xa6\xf7\xc2\xbb\x8d\x5e\xff\xe0\ +\x0e\x06\x3b\xdb\x50\xff\x6d\x9b\xac\x69\xe0\x40\x87\x79\x41\x41\ +\x5c\x14\x89\x4b\x02\xee\xc8\x0c\x33\x29\xc4\xdb\x03\xe1\xe6\x9a\ +\xec\xf0\x02\x99\x65\x7a\x38\x02\xc2\xd6\x63\x13\x32\x5c\x9c\xd6\ +\xba\xbe\xfc\x6c\x67\xf1\xd3\xb5\x01\x3e\xbe\x45\x39\x3e\x0e\xea\ +\x4b\x6a\x98\xec\x85\x83\x3d\xd8\xd7\xe5\xe4\xaf\x2b\xa8\xfe\xb6\ +\x8d\x5c\x54\x43\xae\x14\xa7\x36\x89\xa3\x0a\x56\x90\x77\x14\xe8\ +\xee\x16\xf5\x42\xf5\x81\x36\xe2\x41\xbc\x6c\x8d\xe6\xc0\xc7\x9f\ +\xb2\x0d\xd0\xd3\xfd\x0b\x48\x2d\xda\x5b\x8e\xef\x13\x15\x4a\xa5\ +\xfe\x49\x45\xf6\xd6\x22\xd9\x02\x02\x4e\xa0\x3c\x61\x1c\x7f\x79\ +\x4d\x7e\x66\x3f\xbc\xa6\xa0\xfe\x45\x44\x86\x32\xe2\x2d\x1d\xec\ +\xce\x96\xea\xa4\x31\x40\xc8\x5f\x57\xe0\xbe\xd4\x87\x86\xad\x32\ +\x48\xf4\x02\x7a\xa1\xe2\x27\x95\x00\xbd\x3f\xf8\xe4\x16\x19\xfe\ +\xe8\x17\xe2\x43\x11\x56\xf4\xfc\x7b\x85\x50\x41\xfe\x77\xad\xb4\ +\xd9\x8f\x76\xb1\x37\x78\xdc\xcb\x32\xaa\x6f\xd7\xc8\x8e\x19\x9d\ +\x4f\xb5\x71\xc7\x35\xb0\xce\x50\x5f\x54\xa1\x57\x79\xf0\x5b\xa5\ +\x4b\xf0\xc9\xc7\xb3\x05\xe4\x71\x6e\xff\x4c\x12\x32\xc7\x16\x45\ +\x7c\xd1\x54\x24\x5a\xff\xa0\xc4\xec\x63\x31\xf3\x1d\x32\x00\x04\ +\xb0\x06\xf8\x46\x97\xfa\x13\x1d\x74\x96\x81\xef\x0d\xa2\xb3\x9b\ +\x74\xde\x32\x8a\x3b\xd2\x92\xd7\x86\xea\x3f\x3a\x88\x15\x42\x88\ +\xf4\xdf\x3e\x4c\xc8\x02\xe2\x12\xb2\x88\x18\xd9\x5a\xdc\x82\x59\ +\xc0\x8a\xf5\x19\xc1\x3c\xce\xed\xff\xc8\x16\xb7\xad\xa9\xac\xa0\ +\x40\xf6\xb6\x82\x70\xab\x47\x3a\x11\x5d\xae\x88\x4d\xed\xe4\xe6\ +\xe4\x06\xe6\xa4\x06\x61\x79\xa4\xfb\x96\x35\xc8\xca\x0e\xcd\xaf\ +\x0d\x50\x9f\x5b\x53\x5d\x5f\xd3\xfc\xfb\x7e\x08\x11\x41\xe8\xbc\ +\x71\x4d\x22\x7e\xad\x6b\x55\xc9\x56\xb2\x3e\xb2\x41\x15\x00\x9c\ +\xb8\xc5\x6d\x6b\x0a\x0a\xa6\x27\xf6\xb3\x23\x32\xca\xb3\xba\xc8\ +\x0c\x41\xd7\x44\xf0\x10\x4b\x30\x9f\x68\xa2\xfb\x59\xb2\xd5\x42\ +\x7c\xed\x18\xc6\x40\x71\x6a\x8b\x70\xa7\x27\x5c\x53\xe3\x5e\x98\ +\x23\x06\xc2\xa2\x40\xfb\xed\x6b\x52\xc6\xd0\x6e\x55\xea\xe0\xc4\ +\x27\xf5\x02\x7a\xf0\x66\x43\x5b\xdc\xb6\x04\xd4\xa4\x04\x91\x5a\ +\x81\x5d\x2d\x3a\x64\xe8\x7c\x62\x12\x76\xb6\x84\x2e\x78\x03\x31\ +\x40\xf1\xb5\x7e\xc2\x2c\xc5\xb7\x23\x9d\x3f\x58\x41\xf1\x4a\x8b\ +\xf9\xa3\x8c\xee\x64\xc0\x7d\xa0\x45\xde\x70\xf4\x37\x0a\xf4\x6a\ +\x4f\x79\xea\x38\x66\x00\x88\x8a\x41\x71\xf5\x14\xc8\xc4\x16\xbb\ +\x86\xd6\x87\xb0\x7b\x3c\x09\x70\xc2\xd6\xc1\xe8\x42\xf1\xde\x26\ +\x66\xbe\xa1\xfd\xc6\x31\xcc\x1c\x81\x5a\xd1\xb6\xa2\x4d\xa1\x79\ +\xc9\x34\xe2\xac\x54\x61\x3c\xf9\x8a\x55\x34\xff\xb1\x1f\xe9\xb7\ +\x74\xce\xea\xd2\xfc\xd4\x20\xb1\x1b\xc9\xf6\xc9\xa8\x7f\x5c\xd1\ +\xfd\xbb\x49\xc8\x40\x3c\x3d\x9c\x81\x2d\x5b\x22\xa8\xea\x09\x4f\ +\x66\x04\x76\x49\x58\x77\x5b\xf6\x26\xa3\x82\x4f\x9b\xab\xbf\xdb\ +\x85\xfb\x22\xf9\x47\x5b\x09\x0d\xd8\x28\xb1\x0d\xf1\xde\x88\xfe\ +\x4d\x87\xea\xb6\x0a\x9d\x65\x69\xfe\x60\x10\xff\xa5\x12\xb9\x43\ +\x71\x73\x1d\xd5\x79\x93\xa8\x53\x6a\x1f\x91\x5d\x0d\xfd\xbf\x98\ +\x86\x75\x42\x8c\x24\x29\xb3\x65\x12\x1f\x94\x72\x7c\xb7\x95\x8d\ +\xc7\x30\xc0\xe0\xc8\xf0\xa1\xc0\x55\x5b\x85\x00\xd0\xc4\x04\x22\ +\x82\x71\x10\xcf\xab\x08\x2b\x02\x61\xb5\x52\x9c\xd2\x22\xac\x51\ +\x30\x8a\x5b\xa8\x74\x4e\x6e\x43\x47\xf1\x44\xfa\x7e\x30\x8d\xee\ +\x67\x27\x31\x03\x42\x3e\x6e\xa8\xaf\xaa\xa8\x35\x10\xa2\x22\x3b\ +\x1b\xfa\x2e\x99\x9e\x02\x48\xb2\x9e\xeb\xb9\x65\xf2\xc2\x8b\xa6\ +\x60\x6d\xcd\xd6\x27\xfe\x13\x51\xc4\x4a\x2a\x14\x8d\x8a\xbc\x2a\ +\xc3\xbd\xb5\x81\xae\x56\xfc\x15\x15\xba\x3c\x40\x80\xb8\x93\xa3\ +\xf8\xf7\x01\xa4\x4f\x28\x8c\xa5\xfb\xe6\x35\xe4\x6f\x2e\x88\xed\ +\x88\x7b\x43\x13\x3b\xd7\xe1\xe6\x58\x1a\x87\xe4\xb0\x34\xd2\x39\ +\x71\x2c\xc1\xd1\xc4\x2d\x16\x6f\xe0\x31\xb4\x5e\x5f\x02\x2c\xef\ +\xc5\x00\xb6\xbe\xd5\x23\x98\x34\x20\x2e\x8e\x94\xff\xdc\x26\x7b\ +\x63\x01\xb3\x9a\xc8\x00\xb8\x1f\x56\xf8\xb3\x3a\xa8\x44\xca\xd2\ +\x63\x5f\x5f\xa0\xb7\x09\x8d\x3f\x6c\x60\x3b\x4a\xe7\xcc\x09\x42\ +\x2b\x12\x27\x41\x77\x15\x1a\xff\xdc\x8f\x7b\x49\x86\xb6\x15\xd9\ +\x32\x6b\x0b\x57\x8c\xcd\x1d\x9d\xb5\x56\x02\x0c\x8e\x0c\x6f\xb7\ +\xd5\x12\x1f\x45\x45\x92\x9b\x58\x82\xdd\xc5\xd0\x3a\x6b\x10\xee\ +\x8b\x94\x67\x97\xe0\x14\x32\x41\xaa\x88\x01\xb2\x5c\x88\xe7\x95\ +\xc4\x95\x91\xce\x67\x27\x91\x41\xc1\xed\xe0\x90\x8e\x60\xac\x20\ +\x1d\xa1\xf3\xae\x71\x26\xdf\x31\x86\x8e\xa6\x52\x73\x9e\x48\x18\ +\xe8\xd4\x3f\x9b\x1d\x87\xcc\xec\xd1\x3c\x49\x80\x5e\x53\xc1\xf7\ +\xd9\x06\x56\xa2\x89\x22\x4e\xb0\xa2\x4c\xec\xb4\x92\xc6\xb0\x25\ +\x37\x06\xbb\x4a\xc9\x33\x8b\xef\x44\xaa\x61\x4b\x28\x23\xb1\xdf\ +\xc0\x5e\x8e\x30\x5d\xe8\xfc\xac\x84\x32\x62\xfa\x23\x3a\xa9\x44\ +\x15\xf2\x3f\x69\x92\xbd\xa9\x81\xd9\xcb\x21\x79\x0f\x8f\x88\x88\ +\x68\xaa\x4b\x34\x3d\x3b\xc1\x6f\x7e\x86\xe3\x5b\xc7\xe6\x8e\xfe\ +\x60\xca\x06\x38\x9c\x6d\x65\x69\xaf\xfe\x2f\x80\x56\xd0\x77\xe9\ +\x34\xe2\x3c\xa1\x9c\x08\xf8\x96\x50\xe7\xc0\x76\x06\x33\xd7\xe1\ +\x5e\x94\x23\x3b\x98\x24\x21\xf2\x04\x51\x6b\x5f\x92\x13\x27\x0c\ +\x51\x0c\x32\x4b\xa8\xce\x9e\xa4\x7d\xec\x4a\x26\x0e\x59\x4e\xe7\ +\xff\x6f\x13\x97\x2a\x0c\x38\xa2\x73\x04\x63\xa9\xad\xa5\xb6\x6e\ +\x73\x3c\x89\xc3\xd7\x37\x02\x0f\xdd\x56\xe8\x3f\x85\x1c\xae\xa5\ +\x12\x2b\x45\x67\x5b\xcc\x1b\x73\xc2\x2e\xc2\xe4\x58\x4d\xa7\x2f\ +\xd0\xf5\x01\x0e\xb0\x70\x44\x46\xf6\xa6\x26\xda\x56\xaa\x1f\x74\ +\x31\x25\xc4\xdb\x03\x8a\x4d\xe5\x43\xa3\x82\x54\x4a\xe6\x14\xbb\ +\x2c\x12\xcf\x69\xd3\x7e\xc9\x0a\xc6\x5f\x38\x4a\xf5\xb5\x2e\x71\ +\x44\xc0\xe6\x60\xdc\x63\x23\x2e\xbf\x7f\xad\x70\x28\x80\x0c\x8e\ +\x0c\x3b\x12\x8c\xdb\x10\xdb\xd8\x12\x51\xe2\x92\x48\xf8\x79\x89\ +\x3b\x38\xa3\xfa\x4c\x87\xf8\xab\x1a\xf7\x7c\x87\xe4\x0e\x77\x74\ +\x41\x9c\x84\xfa\xd7\x35\xee\x00\x47\x75\x61\x45\xcc\x05\xff\x88\ +\xa6\xbc\x41\x08\xd8\x9e\xb8\x37\x3d\xf4\x11\x11\x41\x73\x43\x5d\ +\x41\x88\x82\x7d\x61\x8e\x7b\x7d\x81\x31\x15\xee\xe0\x0c\x73\xb0\ +\x83\x09\x85\x92\x75\x68\x67\xf4\xa4\xd2\x73\xeb\x56\xae\x0c\x21\ +\xcc\x71\xc0\xc0\xb6\x48\x7c\x00\x7c\xba\x9c\xf5\x03\x8a\x2e\x50\ +\x74\x86\xc0\x91\x19\xe5\x65\x35\x22\x8a\xee\x6d\xc9\x8f\x68\x10\ +\x97\x44\x28\xa1\xd8\x37\x4f\x31\x81\xed\x02\xfe\xda\x90\x88\xe5\ +\x94\xe8\x13\xe1\x5a\x43\x19\x4c\x1a\x62\xa5\xb8\x39\x06\xac\xa1\ +\xbe\x2b\xe2\xff\xb6\x8d\x50\x53\x59\xc5\xce\x73\xd8\xc3\x32\xcc\ +\x81\x0e\x77\xa0\x83\xb9\x06\xbc\xa0\x41\x7b\x10\x36\xcf\x19\x07\ +\x0c\x89\xc8\x80\x0c\x8e\x0c\x1f\x06\x5c\xb9\x2d\xd2\xdf\xd4\x0a\ +\x8f\x44\xaa\xff\xe8\x12\xc6\x14\x7f\x65\x8d\x34\x40\x86\x0d\xf5\ +\xf5\xb1\x07\x28\x25\x14\x7b\x15\xd8\xe5\x0a\x03\x96\xf0\x50\x05\ +\x87\x1a\x64\x50\xd0\x35\x50\xfd\xaa\x46\x9d\xa2\x16\x9a\x31\x35\ +\x23\x84\x10\x30\xbb\x58\x62\xa1\x84\xfb\xeb\x1e\x82\x79\x00\x27\ +\x68\x57\x93\x47\x12\x7a\xf3\x2d\xf6\x74\x64\x1f\x69\x91\x1d\x93\ +\x83\xd7\xe7\xba\x3c\xfd\x0f\x1c\xcf\x21\xc0\xc3\x66\xb7\x2c\x88\ +\x05\x5d\x1d\x29\xfe\xb4\x49\xf1\xb6\x02\x99\x01\xed\xf7\x4c\x60\ +\xe6\x19\xf4\x91\x88\x94\x4a\x75\x67\x89\xcd\x0c\x4e\x95\x58\x2a\ +\xe6\x7e\x8f\x7f\x28\x82\x33\x29\x30\x14\xc0\x1d\x96\x53\x5e\xe6\ +\x53\xde\x60\x48\xf0\xa3\x1e\xf5\x8a\xcc\x06\xbd\x37\xa2\xce\x40\ +\x04\x93\x27\xc9\x23\x4e\x10\xaf\x98\xbb\x23\xfe\xa4\x71\xca\x1d\ +\x0d\xee\xd8\x82\xe2\x13\x83\x10\x02\x04\x45\x36\x71\x0b\xb3\xaa\ +\xee\x63\x80\x79\xdb\x2c\x03\xd4\x10\xee\x89\xc8\x02\x87\xde\xed\ +\x09\x17\x56\x18\x2b\x0c\x7e\x7b\x10\x3b\xcf\x20\x05\xc4\x10\x89\ +\x2e\xe0\xfb\x3d\xdd\xba\xa4\xc6\xe3\x1f\x04\xed\x0a\x61\x22\xe0\ +\x16\x64\xb4\x4e\x69\x61\x16\x05\xec\xfe\x60\xf7\x53\x44\x22\xd2\ +\x0e\x98\x49\xb0\x13\x16\xb7\x6b\x23\x15\xab\xce\x34\x84\x5a\x30\ +\x7b\xe6\xe0\x05\xc9\x2c\x99\xb3\x34\x73\x07\x0f\x43\xf5\xcd\x80\ +\xae\x70\x10\x0b\xf0\xac\x1d\x90\xb1\x09\x0d\xe2\x79\x06\xd8\x71\ +\x5b\xa5\x7f\x2c\x84\x30\xae\x84\x2b\x6b\x64\x9a\x21\x3b\xbe\x20\ +\x2e\x8f\xc4\x42\xb0\xfb\x58\x74\x55\xc4\x1e\xe0\x30\x03\x06\x99\ +\x65\x61\x32\x89\x6d\x5f\x45\xbc\x55\x54\x0c\xe5\x4d\x15\x13\x67\ +\xb4\xa9\x27\x02\x7e\x79\xa4\xba\x21\x10\x9d\xc1\xbd\xb2\x89\xe4\ +\x06\x5d\x23\xc8\xd2\x80\x44\xc1\xed\x67\x71\xcf\x77\xd4\x8b\x6a\ +\xc2\x0c\xe0\x20\x4b\x75\x98\x65\x72\x3a\x68\x03\xf0\x35\x13\x0b\ +\x96\x52\xff\xf7\x04\xf4\x99\x4d\x39\xe9\x6c\x6a\xed\xb8\x4d\x33\ +\x80\x46\x43\x7d\x4b\x82\x93\x8f\x37\x7a\xe8\x28\x0c\x19\x62\x50\ +\x8a\xd3\x9b\xf4\xff\x78\x90\xc6\xfb\x1a\xb8\xe7\x1b\x4c\x54\x08\ +\xbd\x81\x13\x85\xa2\x28\x51\x02\x6a\x22\x98\x48\xec\x04\xe2\x72\ +\x01\x67\x89\x4b\x15\x7f\x63\xc0\x38\x83\x6d\x3a\x24\x58\xf2\xed\ +\x1c\x5c\x15\xc8\x8e\x29\x90\x3e\x21\x3b\xb1\x49\x78\x18\xea\x6b\ +\x6a\xe2\x50\x86\x0c\x0a\x79\xc3\x90\x23\x94\x7f\x39\x86\x2e\x07\ +\x54\x36\x35\x9c\xdd\x8e\x06\x98\xbd\x4d\x12\x1f\x20\xcb\xa8\xff\ +\xbb\xc6\x1e\x98\x21\x13\x8a\x14\x06\xb5\x42\xcc\x4d\x6a\x26\x99\ +\x65\xd0\xd1\x88\xb6\x04\x7b\xb0\xc3\x1d\xec\x70\x2f\xcb\xa0\xee\ +\x19\x72\x59\x0f\x9a\xdc\x02\x46\x52\xab\xb1\x8f\x68\xa6\x84\xa5\ +\x9e\xb0\xa3\x50\x4f\xd4\xd4\x3e\xa0\xc3\x10\xda\x4a\xf9\xcd\x2e\ +\xda\x56\xc2\xd5\x81\xc6\x67\xfb\x31\xdb\x67\x64\x6f\x2e\xc8\x5f\ +\x9e\x93\xef\x96\x92\x4f\x26\x40\x75\x76\x07\x71\xc9\x3d\xd4\xb0\ +\x71\x8d\x43\x55\x9d\x62\xac\xd9\xb6\x38\xad\xf5\xd7\xa4\x59\xba\ +\xdb\x56\x0c\xc0\x00\x3e\x27\xdc\xa6\xd4\xdf\x69\x63\x16\x06\xcc\ +\x01\x0e\xdd\xcd\x22\x4d\x83\xcd\x40\xf2\xd4\x6c\x92\xed\x62\x71\ +\x07\x65\xd8\x1d\x4c\x22\xc8\xf2\x88\xe4\x60\x07\x04\x5d\x9d\xd0\ +\xc9\x00\x8c\x55\x4c\x06\x34\x53\xc6\x50\x1b\x9a\x88\x37\xd7\x10\ +\x1e\x0e\x89\x61\x54\x31\xf3\x1c\x54\x8a\xff\x69\x2a\x60\x65\x45\ +\xa0\x3e\xb7\x44\x4a\x60\x37\x8b\xec\x63\xa9\xbe\xdd\xc5\x1e\x9d\ +\x21\xb3\x24\x15\xa5\x6e\x44\x50\xdf\x29\x48\x7d\x90\xda\x6c\x8b\ +\xc4\x4f\x06\x00\xd0\xb0\x48\xbf\xa5\x38\x2e\x27\x3b\xda\x11\xaf\ +\xab\x99\x3c\x69\x02\x8c\x21\x2e\xf2\x90\x83\xd9\xcf\x21\xf3\x2c\ +\x4c\x28\x66\x67\x8b\x78\xa5\xf1\xea\x9c\xfe\xcf\x0d\xe0\xa6\x19\ +\xfa\xff\xa1\x45\xb6\xbd\x21\x1b\x10\xac\x42\xd6\x07\xd3\xbe\x3e\ +\x80\xe9\x03\xbb\xab\xe0\x8e\x2b\x68\x7e\xb5\x1f\x7b\x40\x41\xf6\ +\xce\x3e\xcc\xae\x19\x71\x61\x20\x2e\xf6\xe8\x48\x80\x8b\x2a\xec\ +\xa5\x35\x8d\x37\x36\xa8\xac\xd2\xbd\xad\x82\x59\x06\x83\x50\x7f\ +\xb3\x8b\xb8\x8d\xdf\xb9\x9c\x14\x59\x4a\x03\xd9\xe2\xb4\xd6\x27\ +\x78\x92\x16\xb1\xad\x92\xf0\xf4\x22\x6e\xde\x23\xd3\x13\xae\x70\ +\x5c\x9a\x30\x87\xfb\xbe\x3c\x40\x9c\x8c\xe8\x1a\x45\x15\xe2\xbd\ +\x01\xd9\xcb\x11\x57\x2b\xe1\xa1\x80\x5a\x41\xe6\x59\x3a\x1f\x6b\ +\x63\x5f\xe4\xa8\xbe\x56\x42\x43\x30\x3b\x19\x8a\xe3\x0a\xcc\x6e\ +\x8e\x38\x1a\xb1\xbb\x59\xf4\x81\x88\xde\xe3\x71\xfb\xa4\xbc\x41\ +\xbc\xab\xa6\xf1\xf1\x26\xb2\xb3\x10\x2e\xa9\x90\x0c\x34\x28\xda\ +\x89\x84\x3a\x12\xef\xf3\x69\xd4\xdd\x23\x01\x9a\x10\xae\xab\xc9\ +\x4f\x6a\x40\xd1\x0b\x10\xc9\xc6\x21\xbf\x61\x0a\x34\x5b\xc4\xb0\ +\x6e\x84\xfa\x36\x12\xfd\xe9\x1d\x3a\x20\x79\x24\xfc\xaa\xc4\x1e\ +\x99\xe1\xde\xd3\x40\x3d\x54\xff\xd8\xc6\xdc\x56\x63\x0e\x4c\x37\ +\x5f\xb6\xb7\xc4\x87\x22\xe5\xe7\x3b\xd0\x34\x29\x48\x74\x79\x8d\ +\xd9\xd7\x21\x83\x86\x68\xc0\x0c\x0a\x0c\x1a\xe4\x85\x19\x66\x81\ +\xc3\xbd\xa9\xc0\x1e\x9a\x51\x9c\xd4\x40\x17\x07\xea\xb3\x3a\xc8\ +\x74\xc5\x1e\x62\x29\xbf\xd2\xc1\xed\x63\x21\x03\xad\x93\x8a\x08\ +\xda\x1b\x7e\xd9\x94\x64\x64\xae\x8a\xa9\x9a\x19\x12\x10\xa6\xd9\ +\x78\x77\xff\x77\x79\x48\x33\x19\x1c\x19\xde\xba\x2a\xdf\x37\x74\ +\x04\x3e\xa5\x82\xc9\xa0\xf3\xe1\x2e\x66\xb6\x92\xbd\x3e\x47\x0a\ +\xc1\x64\x60\x56\xc4\xd4\x4e\x3e\xa9\xd4\xff\x59\xe2\x5e\x93\x13\ +\xae\xac\x09\x23\x81\x78\x67\x40\x27\x52\xc8\xd6\xee\xeb\x70\x07\ +\x39\xe8\x80\x9d\x21\x54\xff\x55\x26\x3c\x02\x03\xd2\x10\xb2\x97\ +\x66\xc8\x7c\x8b\x99\x67\xe9\x7c\xa4\x8d\xee\x61\xd1\x5a\xc9\xde\ +\xd1\xa0\xfe\x56\x49\x1c\x09\xc4\x91\x54\x99\xf4\x3b\xd5\x45\xd2\ +\x7b\xdd\x4a\xc4\x2f\x3e\xde\xa2\x78\x67\x73\x23\xe1\xdc\x3f\x9a\ +\x01\x50\x19\x1c\x19\x2e\x49\x80\xcf\x6c\x4b\x4c\xc0\x98\xe2\x7f\ +\x13\xd1\x51\xc5\xec\x0e\xe6\xf9\x0e\x93\x29\x52\x01\x83\x92\xaa\ +\x7d\xa6\x0b\xf1\xb6\x90\xe6\x0f\x4f\x33\xd0\x56\x64\x57\x0b\x63\ +\x4a\xf5\x8d\x2e\xe1\xc2\x0a\x7f\xa3\x4f\x79\x7f\x03\xb4\x52\xf5\ +\x31\x7d\x06\xbb\xc0\x22\x2d\xc1\x1e\x96\x41\x13\xfc\x04\xb8\x57\ +\xe6\x74\xff\xa6\x4d\xf6\xd6\x02\x5d\x16\xe9\x7e\xa4\xbd\x8e\xe0\ +\xeb\x33\x00\xbd\xcf\x9a\x54\xdc\xab\x72\x5a\x5f\x1e\xd8\x48\xd9\ +\xc3\xf5\x18\x20\x25\x9e\x2a\x43\xaa\x95\x65\x5b\x93\x00\xb2\x83\ +\x41\x06\x0d\xf6\xe5\x39\x32\xc7\x12\x7f\x1b\x50\x23\xc4\x42\xd2\ +\xf0\xa9\x5c\xd0\x87\x22\xf1\xa1\x88\x8e\x82\x2e\x8d\xf8\xcb\x6b\ +\xc2\xb5\x9e\xce\x29\xe3\x84\xfb\x42\xb2\xe0\x01\xd3\xea\x21\xcf\ +\x7a\x4d\x8d\xa9\xab\x22\xd2\x2f\xb8\x03\x1c\x12\xc1\x1c\x94\x61\ +\x86\x0c\xfa\x70\xc4\xcc\xb7\xf8\xf3\x4a\xc2\x62\xbf\x2e\xfb\x37\ +\x35\xf4\xda\xae\x47\x1c\xa3\xc8\x60\x8f\xa1\x36\x05\x84\x4d\xfa\ +\x7f\xbb\x06\x18\xdb\xa6\xdc\x3f\xd7\x83\x96\xbd\xb2\x46\xd7\x80\ +\x2e\x07\xb3\x47\x86\x3b\x28\x4f\x58\x41\x15\xd4\xbf\xf6\xc4\xe5\ +\x11\xa6\x1b\xcc\x4c\x83\x34\xd3\xac\x22\x77\x74\x8e\x3d\xc0\x92\ +\xbd\xbd\xc0\x4c\x37\xd4\xe7\x56\xa9\x00\x35\x13\x64\x50\xe8\xfb\ +\xe9\x74\xdc\x6b\x72\x54\xc1\x5f\x58\x61\xe6\x5b\xc2\x2d\x9e\x78\ +\x41\x95\x7e\x77\x4d\x8d\x56\x8a\x39\x20\x43\x47\x75\xbd\x80\x44\ +\xef\x7b\x58\xf7\xb3\x0c\xa4\xd6\x34\x7d\x38\xa6\x06\x86\x4d\xa3\ +\xa4\xc7\x0c\xb0\x72\x5b\x8b\x00\xa9\x57\xcc\xde\x8e\x70\x43\x8d\ +\x3d\xc0\xa2\x8f\x90\x6e\x7a\x66\x60\x50\xb0\x87\x67\xc8\x6c\x93\ +\x12\x3b\xbb\x19\xcc\xbe\x16\xd9\xd9\x20\x3b\x0a\xe4\x82\x9d\x67\ +\x09\xb7\x79\xb4\x4c\xe3\xe8\xb4\x4c\xc4\x6b\xff\xc9\x18\x9d\xf7\ +\x4d\x40\x91\xaa\x8d\xea\x4b\x2a\xb2\x37\x15\xc4\x5e\x60\x27\x7b\ +\x4d\x8e\xdd\xcf\xe1\x8e\xcc\xd0\x15\x09\xbf\x48\x9c\x20\x96\xc7\ +\x8a\xf8\xf1\x64\x03\xc8\xa0\x41\x57\xeb\x46\x89\x08\xca\x63\x7f\ +\xb1\xd2\x01\xcb\xb6\x35\xff\x5f\xac\x50\x5f\x59\x91\xbd\xca\x40\ +\xb7\x46\x71\x48\xcc\x61\x15\xe0\x22\x61\xa4\xc6\x1c\x90\x11\x6f\ +\xf0\x54\x67\xd5\xc8\x5e\x10\xaf\xaf\xc8\xf6\xb3\x98\xbd\x0d\xe6\ +\xd0\x0c\x44\x89\xbd\xf1\x44\x74\x15\x5a\xe0\x97\x24\x22\x39\x9b\ +\x54\x42\x76\x74\x4e\x58\x15\xa9\xaf\xa9\x61\x79\xc4\xff\xb4\x82\ +\x01\x43\x75\x76\x45\xb8\x21\x90\xb5\x7a\xe6\x7d\x54\x64\xa6\x20\ +\x99\xa0\x92\xc6\xdd\x9a\x19\x82\x8c\x2b\xf9\x0c\xc1\xc5\x29\x0d\ +\xa0\x49\x8b\x3f\xc3\xc2\x11\x7d\xec\x9b\x96\x19\xd2\x00\xe7\x6d\ +\x6b\x19\xa0\xad\x84\x2b\x94\xf8\x20\xe8\x43\x91\xb0\xb8\x44\xc5\ +\xa3\xdd\x1a\x5d\xe1\x29\xdf\xbb\x1a\x7f\x5e\x87\x70\x59\x1b\x16\ +\xd7\x69\x3a\x49\x09\xf5\x6f\x3c\xf1\x06\x8f\x3d\x34\xc3\xcd\x94\ +\xb5\xa1\x05\xa9\x7b\xd1\x35\x03\x31\x42\x76\x64\x06\x73\x4c\x42\ +\x26\xdf\xce\x60\x8f\x2d\xf0\x77\x04\xa4\x01\xb6\x2f\x52\xf4\x43\ +\x6e\x95\xac\x8c\xb8\x96\xd0\x7c\x73\x03\xf5\x8a\x7d\x5d\x8e\x07\ +\xaa\x65\xc9\x55\x8d\x37\x79\x4c\xc1\xba\xf9\xc7\x1b\x35\x17\xa2\ +\x0f\x6e\x73\x0c\xa0\x53\x38\xf1\x46\xb0\x47\xe5\x74\xff\xaa\x8b\ +\x7b\x21\x64\x2f\x13\x64\x55\x8d\x5c\x57\xc1\xd9\x1d\xdc\x23\x01\ +\x2e\x2b\xc9\x4a\x25\xfc\x77\x17\xae\xae\xe9\x7e\x71\x12\x9d\x54\ +\xba\x7f\xdd\x46\x97\x44\xdc\xb1\xf9\x5a\xd9\xea\x6b\xd6\x8d\xa7\ +\x9d\x63\x52\x8a\x79\x52\x91\xbe\x34\xe4\xda\x5f\x12\x91\x28\x64\ +\x7b\x3b\xe4\x5a\x4f\xd6\x06\xd7\x56\x5a\xfb\x38\xdc\x76\x86\x70\ +\x65\x4d\x76\x64\x8e\xbf\x35\x42\x9f\x40\x65\x12\xc1\x27\x53\xb1\ +\xc9\xa6\xa8\x21\x14\x23\x0f\x1a\x60\xc9\x36\x65\x04\xd2\x8b\xab\ +\x07\x25\x8e\x18\x5a\x9f\xef\x87\xd5\xc0\x1d\x9e\x78\x79\xcd\xe4\ +\x29\x6d\xca\x5f\x7b\xea\x7b\x02\x66\x8d\x92\x0d\x08\x8d\x21\xc1\ +\x04\x4d\xaa\xe3\x7b\x25\x76\x27\x03\x5e\x71\x47\x66\x49\x9f\x67\ +\xbd\xb1\xb6\x21\x49\x81\xec\xc5\x8e\xec\x7d\x0d\x62\x0d\xd5\x57\ +\x3b\xe8\xfd\x11\x1a\x60\xf7\x77\xf8\x7f\x9d\x24\x5b\xa3\x34\xb6\ +\x17\x72\x05\xbd\xc5\x93\x3b\xc1\x0d\x08\x66\x51\xc0\x2c\xf2\x48\ +\x0d\x48\xaa\x48\xd2\x8e\xc2\xfd\x71\x53\x15\x91\x2e\x71\xa4\x81\ +\x84\xdb\x90\x0d\xa8\x88\x17\xa8\xa1\xfe\xf6\x24\xba\xd2\xc2\xd2\ +\x1a\xee\xa9\xf1\x63\x8a\x79\x4b\x0b\xb3\x5b\x13\x5d\x59\x83\xd6\ +\xe8\x15\x15\x76\x55\xc4\x1c\xe4\x90\x52\xf0\xcb\x02\xb2\x52\xa1\ +\x4f\x89\x4b\x23\xd9\xb1\x19\x76\x1f\x4b\x7d\xb5\x27\xdb\xc7\xa2\ +\x13\x4a\xf6\x67\x4d\xea\x8b\x6b\xe2\x3d\x81\x70\x93\xc7\x78\xc5\ +\x1d\x6b\x89\xdf\xef\xd0\x78\x49\x8e\x2e\xf2\xc4\x47\x22\x32\xc7\ +\x20\xa3\x11\x59\xe4\x93\xa1\x39\xaa\xa9\x10\xe5\x7a\x4f\x0d\x34\ +\x5f\x9e\x11\x27\x74\xed\x50\x8c\x8d\x7e\x16\xaa\x0b\x65\x70\x64\ +\x78\xc6\xb6\xe4\x09\x68\x9d\x6e\x72\xf5\xa3\x2e\xf5\xf7\x03\x66\ +\xc2\x93\xbf\xc4\x91\xbd\x2e\xa7\x6e\x38\x64\xa8\x0f\x99\x5e\xa0\ +\x95\xe0\x7f\xbe\x9a\x7c\xc7\x92\x46\xa5\x54\x17\xd7\x54\x3b\x1a\ +\xf4\xfe\x88\x69\x2b\x0c\x0a\x51\xa0\x3e\xbf\xc2\x9d\xdc\x40\x06\ +\x04\xb9\xca\xa3\x95\x52\x5e\xe3\x89\xa3\x31\x41\xd7\xce\x32\xb8\ +\x5d\x0c\x4c\x13\xec\xca\x88\xcb\x84\x6c\x3f\x47\xf7\x87\x25\xb6\ +\x4f\x70\x95\x92\x1b\x30\xbb\x5a\xc2\xd2\x48\x98\x54\xcc\x50\xca\ +\x37\xd4\x83\x42\x78\x77\x33\xb5\xb6\xef\xef\x92\x2a\x60\xa3\x56\ +\x0f\x0f\xb9\x9e\xc3\xb1\x92\x6d\xa4\x32\x58\x9c\xa0\x28\xe1\x16\ +\x8f\xac\x09\x98\x05\x96\xe2\xfd\x4d\xd4\x81\x69\x3a\xb4\x6d\xd0\ +\xc9\x80\x76\x2c\xf6\x05\x36\x65\x06\x57\x47\xea\xbb\x3c\x04\x87\ +\xd9\xdb\x92\x1d\x98\xa1\x4d\xa8\xbe\x53\x92\xfd\x71\x83\xea\x2b\ +\x5d\xec\x1e\x06\xab\x42\x58\x1e\x31\x43\x42\x7c\xb8\x37\xab\xe8\ +\xe5\x19\x7a\xb5\xa7\x38\x22\xc3\x5f\x53\xe3\x5e\x5d\x50\x7f\xbf\ +\x8b\x5f\xa3\xf0\xfa\x82\xac\x09\x7d\xe3\x4a\xb0\xd0\xbe\x27\x90\ +\xbf\xab\x81\xbf\xd6\x63\xff\xbc\x85\xbf\xcb\x23\x39\x94\xdf\x49\ +\x65\xeb\xf8\xb5\x57\xf7\xd9\x4f\x3d\x53\x56\xd6\x6b\xea\xf1\xa9\ +\xd6\xb0\x6b\x80\x83\xb7\x15\x09\x40\x80\xce\x7b\xc6\x71\x3b\x09\ +\x6e\x2f\x47\x76\x52\x83\xe8\xe9\x19\x5b\x69\x36\x9d\x59\x19\x91\ +\x2c\x45\xe0\xc2\x0d\x35\xe1\x4a\x8f\xd9\xc7\x22\x87\xe7\x09\x68\ +\x2a\x2a\x56\x41\xef\x0a\xd8\x96\x50\x7e\xbc\x4d\x7d\x67\x80\xd9\ +\x86\xb0\x32\xd2\x38\xb5\x85\xac\x8a\xb8\xfb\x02\xd9\xee\x8e\xf8\ +\xaf\x93\x64\xef\x6d\xd2\xfe\xfc\x24\xa1\x10\xaa\x71\x25\x04\x68\ +\xce\x14\x86\x3f\xda\x47\xf5\xa6\x82\x70\x51\x89\xef\x37\xc8\xfe\ +\x0e\x3f\x1a\x71\xf7\x06\xe2\xa8\xd2\xbd\xd6\x53\xfc\x73\x3f\xda\ +\x06\x34\xe2\x04\xc2\xb3\x47\xb2\xbc\x76\x6c\xee\xe8\x21\x53\x79\ +\xa6\xab\xb7\x15\x15\x80\x01\x9d\x50\xe2\x92\x90\x4a\xb2\x4f\x6c\ +\xa0\x93\xba\x6e\xac\xec\xd4\x14\x92\x61\x83\xb4\x40\x9a\x82\x3b\ +\x22\x27\x7b\x6f\x03\x77\x78\x8e\x19\x96\x54\xbe\xad\x92\x66\x10\ +\x3d\x12\x91\xd9\x82\xd9\xd9\xe0\xfe\xa2\x45\x6c\x19\xb2\xf7\x37\ +\xa9\xce\xec\x10\xbf\xd8\x21\x5e\x50\x91\x05\x65\xf0\x84\x06\xd9\ +\x6f\x2a\x9a\xbb\x5b\x32\x27\x34\x5a\xd0\x28\x80\x1a\x26\x2f\x2c\ +\x89\x8b\x02\xdd\x47\x94\x78\x70\x46\xf7\xc2\x88\xce\xc8\x89\xf7\ +\x44\xea\x0f\xb7\x31\x17\x56\x70\x43\xc0\xd6\x20\x46\x08\x1b\x47\ +\xfc\x5f\x0d\x6b\x7b\x5b\xb9\x82\x2d\x08\x16\xf6\xd9\x86\xc3\xb4\ +\xd3\x43\x10\xe9\xef\x95\x73\xf5\xdc\x2c\x5d\x6f\xb0\xb0\x06\x25\ +\x4e\x35\x74\x5a\x52\x72\xa6\x91\x10\x42\x30\x3d\x09\x5c\x83\x3d\ +\x3c\x5b\x3b\xb3\xa8\xba\x51\x89\x2b\x05\x7d\x30\x92\xcf\x31\xe4\ +\xf3\x0d\x33\x4e\x6d\xd1\xfd\xe0\x04\x31\x2a\xf1\x05\x19\xcd\x23\ +\x0d\xf9\x1d\x01\x39\xc0\x51\xff\x77\x89\x8f\xd0\xf9\x69\x8d\x19\ +\x9d\xa0\x73\xb3\x47\xcf\xa9\x28\x3e\x34\x48\xf9\xa9\x92\x66\xe9\ +\xe9\xfb\xa3\x82\xee\x8f\x6a\xb2\x5f\x7b\xe2\x3c\x9b\xfa\x09\xec\ +\x46\x69\x1f\xb9\x62\x2a\x24\x02\x70\xf9\xb6\x12\x06\x26\x00\xe3\ +\x4a\xf6\xee\x06\x34\x13\xb1\xc4\x3d\xb6\xd8\x62\x0a\x39\x7c\x6d\ +\x82\xa6\x4f\xd2\xc4\x52\xc7\x5a\xdc\x40\x75\xc9\x9d\xd4\x35\x8a\ +\x0c\x1b\x74\x4c\x29\x4e\xca\x91\xab\x6a\xf2\x23\x1c\xcd\xc3\x73\ +\xda\x7f\x32\x4e\xf3\x8f\x0b\xb2\xb7\x14\x14\x7b\xd9\xd4\x4f\x70\ +\x6c\x4e\x9c\x2e\xf8\x9b\x03\x45\x80\xe9\xfd\x86\xe2\x8e\xc8\xe0\ +\x1f\x64\xb8\x45\x9e\xfa\x13\xab\x69\xfd\x55\x8e\xdd\x3f\xc7\xcd\ +\xb6\x34\x77\xb6\xf0\xd5\x0e\x59\x00\x89\x6c\xac\x72\xf1\xcb\x7f\ +\x27\x3c\xbc\x55\x03\x44\xac\x4f\xd8\x52\xa9\xce\xe9\x22\x40\xfe\ +\xe2\x0c\xb3\xb3\x41\x06\x7a\xd8\x3f\x66\xdd\x91\xe8\x53\x88\xa9\ +\x0b\x8a\x04\xb0\x5d\xed\xe1\x09\x74\x30\xbb\x58\x8a\x55\xa0\x17\ +\x97\x14\xd3\x84\xc6\x5b\x1b\x84\xc3\x1c\x3c\x18\x29\x5b\x82\x6c\ +\x6f\x88\xfb\x39\xcc\xcf\x2a\xe4\xa6\x40\xe3\x97\x35\xf9\x03\x81\ +\xb2\x1d\x29\x0f\x74\x84\xfd\x1d\x93\x67\x76\x61\x40\x68\x7d\xbc\ +\x1f\x33\x94\xaa\x89\xf4\x23\x13\x54\x06\xe4\x7b\xd3\xf0\x15\x48\ +\xf6\xac\xfc\xc2\xb5\x00\x11\x6b\x4b\xc1\x8a\xd3\x5a\xbb\x92\xe6\ +\x03\x6c\xdd\x1a\x20\x4b\x85\x9c\x76\x8e\xc1\xed\xeb\xd6\xde\x7e\ +\x9d\xaa\x93\xda\x80\x70\x95\x47\xbd\x96\x5e\x31\x47\x38\xb7\xc2\ +\x55\x4a\xfc\x72\x97\x7c\x77\x43\xb1\x4f\x6a\x02\x0d\x56\x28\xcf\ +\x29\x59\xf5\xe5\x2e\xe5\x3d\x81\xf6\x8f\x6b\xba\xdf\x2a\x89\xe3\ +\x42\xb1\xa0\x85\x79\x20\x92\x2d\xae\x60\x6f\x8b\xee\x64\x61\x2f\ +\x8b\xbc\xc8\x51\x2f\x0c\xb4\xff\xab\xc4\xce\x31\xc8\x44\x44\x1f\ +\x0a\x54\x57\x79\xa8\x0c\x72\x78\xf6\x6c\x43\x83\x5f\x2f\x3f\xdb\ +\x39\xff\xd1\x12\x60\xeb\x01\x89\x7a\xb4\xd8\x97\x54\x0a\x2d\x22\ +\x84\x7b\x02\xfe\x9c\x2e\xf6\x90\x0c\xf7\x62\x87\x4c\x93\xf5\x8e\ +\x52\x1e\xfd\xb6\xc7\x67\x02\x55\x54\x05\xe9\x25\x67\xc4\x40\x9c\ +\x04\x33\x24\x54\x47\xad\xa2\x79\x90\xc3\x4c\x28\x74\xc0\xdf\x15\ +\x88\xb3\x85\x7a\x0d\xb8\x37\xe6\x4c\x7e\xa9\x83\x19\x10\xe4\x5e\ +\x25\xc3\x90\x9f\xd9\x47\x73\x17\x21\x04\x25\x2c\x89\x48\x06\x76\ +\x61\xc0\xbd\xa9\xc1\x9a\xaf\x4d\x52\x7e\xb3\xa4\x71\x54\x46\xf1\ +\xa5\x01\xc2\x17\x3a\x74\xfe\xbd\x4b\xdf\x4f\xa7\x53\xed\x21\xbd\ +\x41\xda\xb2\xee\x59\x9f\x7a\x7c\xe0\xb1\x20\x51\xbd\x5f\x94\x5b\ +\xa3\xd1\x87\xf6\xda\xb6\x2d\xf8\x0b\x6a\xdc\xf1\x0d\xf2\x97\xe6\ +\xc9\xa8\x43\x92\xf5\xf7\xa8\x36\x9c\x27\x23\xfe\x94\xf8\x5f\x9b\ +\xca\xcf\x04\xbd\xcb\xd3\x3d\xb3\x8b\xf9\xd3\x26\xf1\x80\x8c\xfa\ +\x91\xc8\xe4\xcf\x2b\x82\x2a\xb1\x84\x70\xbf\xc7\x1a\xe8\x7b\x71\ +\x46\x5e\x08\xf9\x76\x82\x27\x30\x71\xea\x38\x4b\x5f\xbd\x86\xd5\ +\x67\x75\xe1\x45\x19\x32\xcd\x20\xd7\x07\xe2\x9b\xc6\x69\xed\x9f\ +\x31\xed\xe2\xe9\x30\x2c\xf8\x1b\x6a\xaa\x5f\x55\xf4\x7d\xac\x49\ +\xfd\xae\x35\x58\xd7\x43\x2b\xab\xf4\x51\xcf\xb7\x41\x0e\x28\xa7\ +\x88\xbf\xbe\x17\x30\xb5\xce\x01\x4e\xde\xaa\xe8\x1f\x21\x4a\xcf\ +\xc4\x8f\x06\xfb\x82\xd4\xd8\x11\xc7\x14\x1d\xa6\x07\x24\xdc\x03\ +\x85\x7e\x0a\xd7\x27\xa5\x63\x53\x62\xd5\x2a\x84\x8b\x4a\xf4\xd2\ +\x8a\xfc\x5d\x4d\xe4\x75\x19\x9d\x77\x4d\x10\x1e\x0e\xd8\x2a\x62\ +\xe7\x5b\xc2\x43\x81\x18\xa0\xef\x97\xd3\xa9\xfe\xbd\x4b\xe7\xa7\ +\x15\x8d\x17\x39\x8a\x1f\x0e\xd2\xe8\x13\x62\x4b\xf0\xcb\x22\xfe\ +\x67\x15\xed\x37\xad\xc1\xb4\x84\xe6\xb7\x07\xe1\x1b\x1d\xe4\x2e\ +\x4f\xfd\x9f\x5d\xdc\x3f\xf5\x61\xe7\x5a\xf4\xb8\x82\xee\xf7\x2a\ +\xc2\x8a\x88\xfd\xe0\x04\xd9\x17\xfa\x53\x13\xa9\xac\xd3\x08\xba\ +\xe1\xa1\xc8\xe7\x3c\xca\x2b\xfe\x9d\xf5\xad\xad\x4e\x03\x18\x7a\ +\xf9\x5a\x21\xdc\xe8\xf1\xbf\xaa\x53\x0c\x7e\x48\x10\x7a\x4d\x17\ +\x3c\xcd\xbe\x7c\x4d\x10\x33\xf1\x56\x4f\xf1\x8e\x06\xcd\x77\x36\ +\xc8\xae\xab\x29\x3f\xd0\x26\x7f\x5b\x03\x1c\x84\xd5\x10\x07\x04\ +\x77\x72\x0b\xb3\x8f\xa5\xbc\x35\xe0\x3e\xdd\x47\x76\x42\x41\xfe\ +\xd3\x69\xf8\x8e\x52\xad\x8e\xd4\x3f\xad\x60\x85\x92\xfd\x61\x4e\ +\xeb\xc6\x19\xe4\x5f\xe9\x67\xf2\xf4\x09\xba\xcb\x23\x2c\x70\x88\ +\x03\xff\xfe\x09\xca\x77\x8c\x21\x03\x06\xf5\x91\x50\x43\xfc\x51\ +\x09\xe7\x96\x18\x9b\x02\x5b\xeb\x4b\xbb\x0d\xac\x6f\x3d\xa9\xa4\ +\x1b\x1c\x19\x1e\xdd\xaa\xc2\xc2\xbd\x9a\x67\xed\x0a\x71\x19\xf8\ +\x5f\x55\xb8\x43\x2d\x66\x28\x05\x7b\x9e\xb6\x2d\x15\x01\x49\xb7\ +\x4e\x7c\xba\x41\xc6\x40\xfd\xf9\x49\xba\x77\x0b\xf5\x45\x35\xb6\ +\xeb\x69\xbd\xbd\xc0\x5f\xeb\xa9\x05\x5a\xd7\x0f\x51\xfd\xb8\x24\ +\xdc\xe6\xf1\x17\x57\xf4\x7d\x65\x80\xf0\xcb\x1a\x7f\x6e\x49\xfe\ +\xee\x26\xfe\x8a\x8a\xb8\x34\x12\x47\x02\xb2\x9d\xc1\x1d\xe4\xb0\ +\xb3\x0d\xfa\xd5\x2e\xf9\x4b\x33\xe2\xdd\x81\x38\xa6\xb8\x63\x72\ +\xda\x9f\x99\x44\x15\x9a\xdb\x1b\xc2\xb8\x52\x9c\x3b\x0d\x3f\xc7\ +\xa4\x01\xda\x92\xa0\x6c\xf5\x89\xbb\x3c\x56\x8e\xcd\x1d\x1d\x7e\ +\x32\x09\x00\x70\xf6\x56\x17\xf8\x51\x20\x13\xda\xc7\xad\x46\x9c\ +\x60\xf6\x75\x84\xfb\xc3\x33\x6b\x87\x99\xea\xd2\x8a\x49\x7b\xf8\ +\x5c\xe8\xde\xa7\x74\x27\x1d\xf5\x42\x65\xf0\xd6\x21\xb2\xc3\x1b\ +\xc8\x51\x39\xc5\x4f\xa6\x91\xff\xdf\x7e\xd6\x3c\x6f\x25\xe5\x19\ +\x93\xd8\xdd\x2c\x8d\x53\x5a\xb4\x8f\x5d\x43\x79\x46\x07\xb3\xbb\ +\xa5\xfb\x77\x6d\xca\xb3\xba\xd4\x3f\xaf\x70\xbb\x19\xa4\x4f\xb0\ +\xb3\x4d\x1a\x80\xfd\xbe\x26\xf5\xed\x01\x77\x52\x03\x3b\x98\x3a\ +\x85\xf2\x3d\x1c\xcd\x93\x9b\xc4\xdf\x46\x74\x99\x52\xff\xb4\x42\ +\x1e\x8e\xa9\x6c\x50\x79\x32\xe2\x3f\x2e\x6d\xb7\x8e\x81\x11\x1b\ +\xb8\xb1\x5a\x2a\x93\xef\x6c\x23\xb3\x1d\xf9\x9f\x35\x31\xbb\x80\ +\x4c\x53\xc4\xa5\x68\xde\xd3\xa2\xbf\x2a\x32\xa6\x84\x8e\xa2\xfd\ +\x96\xb8\x48\xf0\x3f\x57\xc2\x3d\x4a\x71\x82\xa5\x73\xf2\x4a\x5a\ +\xc7\xe7\xe8\x9d\x35\xfe\x26\x8f\x8f\xa0\xb3\x1c\xc5\x3b\x12\x14\ +\x3d\x51\xa8\xcf\x98\x44\x2a\x68\x7c\xb4\x8f\xb0\x24\x50\x9e\xdb\ +\xa5\xf1\xa1\x16\xf9\x6b\x7a\x03\xae\xcb\xd4\xbb\x18\x51\x64\x12\ +\xf4\x92\x1a\xb9\xae\x46\x2a\xf0\xa3\x91\xea\xb2\x9a\x62\x6f\x47\ +\x6c\x09\xe5\x6f\x6a\xec\x5f\x34\x71\x27\x34\xd0\xc1\x29\xee\x7c\ +\x42\x75\xb6\xe1\x81\x11\x63\x73\x47\x57\x00\x3f\xdb\x6a\x6c\x00\ +\x11\x30\x42\xf1\xc1\x9c\xb8\xb8\x44\x27\x15\x1d\x17\x28\x21\xdc\ +\x92\x10\xa5\xd5\xeb\x06\x55\xc1\x94\xbf\xaf\x41\x88\x03\x82\x6c\ +\x67\x91\x18\x89\xb7\x74\x09\x37\x8d\x13\xae\x5b\x43\xf9\xee\x15\ +\x14\xc7\x64\x54\x9d\x08\x7f\xd9\x47\x3d\xd3\x90\xbd\xb1\x81\x9b\ +\x8c\x34\x1e\x89\xc8\x7f\x97\x08\x68\x92\xb5\x00\x00\x17\x89\x49\ +\x44\x41\x54\x98\x3b\x3c\x5a\x2b\x61\x7b\x4b\xfb\x5b\x15\x93\xdf\ +\xec\x92\x7d\xa8\x95\x86\x59\xf4\x1b\x7c\x14\xea\x0c\x6a\x0b\xde\ +\x1a\xea\x01\x21\x1c\x57\x10\xfe\x79\x00\xbf\x8b\x83\xa3\x1a\xd8\ +\xbd\x72\x74\x4c\x71\xc3\x86\x6c\xdf\x8c\xfa\xd3\x1d\xe2\x65\x01\ +\x71\xe6\x77\xa2\x84\x8f\x2a\x24\xfd\xd9\xd8\xdc\xd1\x15\x8f\x1e\ +\x18\x61\x1f\xc7\x06\x00\xb8\x1d\x78\xdf\x56\xc1\x01\x56\x08\xbf\ +\xaa\xd1\xab\x3c\xe1\xaa\x1a\x06\x52\xcf\x9e\xdd\x53\x30\x3b\xdb\ +\xb5\x43\xa3\xa7\x8c\xc1\x27\xb6\xfe\x75\x6d\x35\x91\x06\x12\x7c\ +\xcc\x4c\x4b\xb8\xb2\xc6\x5f\x54\x62\x66\x0a\x8d\xb7\x34\xa8\x2f\ +\xab\xf0\xd7\xd6\xf8\x9f\x55\x34\xfe\xb6\x0f\x5d\x12\x68\xbc\xa5\ +\x49\xf5\xaf\x93\xe8\xa8\xe2\x1f\x89\x34\xbf\x3b\x8d\xfa\xe7\x35\ +\xba\x26\x52\xbc\xbb\x45\xf1\x81\x06\x74\xd7\x1f\x4d\x23\xeb\x45\ +\x24\x7b\xf9\xff\x0a\xf4\x90\x0c\x3b\x6c\xb1\x99\x10\xae\x28\x09\ +\x0b\x7d\x6a\xed\xed\x42\x7d\x7e\x89\xad\x04\x7b\x54\x96\x06\x62\ +\x4f\x79\x35\xeb\xb6\xf5\x96\xe2\xb4\xd6\xc3\xe5\x67\x3b\x4f\xc9\ +\xdd\x65\x70\x64\xf8\x3a\xe0\xc0\x2d\x9e\x01\x0c\xe8\xad\x1e\x7f\ +\xfa\x04\xf2\xfa\x9c\x50\x18\xb2\xe3\x1a\x48\x15\x60\xd8\x20\x45\ +\x4a\xfc\x3c\xd9\x5c\xa0\xdf\x89\xaf\x18\xd2\x04\x92\xc9\x48\xe7\ +\xa4\x71\xc2\x75\x1e\xd9\xd5\xd0\x3a\x6b\x80\xfa\x53\x1d\xfc\x95\ +\x35\x2a\x90\x9d\xd8\xa0\xfe\x61\x89\x08\x98\x1a\xec\x1a\xc5\x1c\ +\xe8\x52\x60\xa8\x29\x84\x87\x23\x66\x27\x4b\xdf\xe5\xd3\x90\xc8\ +\x3a\x94\xb0\x27\x40\x14\x15\x3f\xf5\x0c\x09\x01\xdd\x75\x03\xfe\ +\x97\x35\xe5\x07\x27\xb0\x2d\xc1\x57\x09\x43\xa0\xf1\xf1\x3e\xea\ +\xe3\x1b\x3d\x8c\xa1\xb5\x9f\x75\xfd\xd8\xdc\xd1\x83\x9e\xe0\x78\ +\x9e\x70\x7d\x7c\x6b\x51\x03\xf5\xd7\x3a\x98\x00\xe1\x5b\x65\x42\ +\xf7\xba\xcf\xa7\x56\xae\x35\xa9\x39\x53\x6c\x0f\x84\x41\x59\xdb\ +\x81\x33\x25\x3e\x35\xf6\xec\x08\x15\x34\x0a\xf5\x05\x35\xfe\xba\ +\x9a\xf6\x2b\xd7\xa4\xe2\xcd\x96\x50\x9c\xd4\xa4\xfb\x91\x36\xf5\ +\x2f\x2a\xb4\xab\x88\x42\xfd\xad\x2e\x2c\x8b\xb8\x7d\x1d\x3a\xd3\ +\xe0\x2d\x94\xd7\xd4\xc4\x08\x71\x69\x80\xa8\xe4\xef\x2e\xd6\xfa\ +\xf0\x92\xcb\x93\x4e\x30\x57\x97\xa4\xbb\x8a\x12\x62\x24\xe4\x82\ +\x3b\x26\xa3\xef\xb6\x19\x34\x7f\x39\x9d\xd6\x3b\x1a\xd8\x3a\xed\ +\x49\xe4\x31\x2e\xe1\xc7\x9f\x4a\x68\xfb\xf1\xa4\xc0\x62\x60\x8f\ +\x2d\x31\xfc\xbb\x76\xda\x97\x2a\x7a\xa5\xa7\x3a\x61\x8c\xb8\xa3\ +\x41\xde\x50\x50\x9c\xd6\x42\x1e\xf0\x44\x11\xcc\x0e\xa9\xfa\x56\ +\x8c\x24\x75\x60\x58\x1b\x17\x50\xd1\x74\xea\x22\x68\x47\x90\x3e\ +\x8b\x8e\xd6\x94\x67\xb6\x09\x57\x54\xc4\xbb\x7b\x05\xfb\x91\x34\ +\x66\xc3\x93\xa6\x94\x0d\x1a\xa8\x15\xbb\xaf\xa3\xba\xae\xee\xcd\ +\x32\x4a\x04\x4e\x2a\x47\xb1\x73\x84\xfe\x9b\x87\xd0\xa7\xd3\xfd\ +\xbb\x9e\x28\x32\x9a\x08\x6d\x62\xaf\x24\x7d\x42\x61\x65\x84\x99\ +\x86\xee\x0c\xb3\x3e\x61\xef\x1a\x9b\x3b\xba\xe7\x93\x08\xc8\x27\ +\x24\x3e\xc0\xf1\x5b\xac\xf7\x67\x04\xa2\x12\x1f\x51\x3a\xff\xd0\ +\x46\x87\x84\xec\xad\x45\x42\xe7\x28\x0c\x66\x57\x4b\x7c\x30\xa2\ +\x75\xaf\x4c\x6c\xaa\x6b\x58\x53\xd0\x48\xa4\xe7\x56\x2d\x09\xd0\ +\x10\xea\x1f\x56\xe8\xa8\xd2\xfd\x64\x87\x78\x95\x27\x2e\x8e\x6b\ +\x27\x95\xd1\x83\x7e\x23\x4a\x6a\x24\xad\x14\x9b\x0b\xe1\xe6\x1a\ +\x69\xf4\x06\x4f\x15\x36\xb9\xa3\xbd\xfa\x83\xfc\x5d\xcd\xd4\x6c\ +\x2a\x4f\x23\x10\x21\xeb\xf8\x20\x20\x04\x04\x2f\x69\x1e\x52\x98\ +\x26\x84\xf9\x96\x30\xf0\x98\x68\xd0\xf1\x4f\x36\x42\x7e\x83\xe1\ +\xaf\xc1\x91\xe1\x0b\x81\x57\x6c\x51\x02\xa0\xa7\xff\x74\x79\xa4\ +\x3c\xb3\x8b\x4e\x2a\xce\x29\xd5\xd5\x9e\xc6\x67\xa7\x63\xf6\x31\ +\xf8\x9f\x77\x41\x95\xec\xc8\x3c\x4d\x07\x33\xa4\x40\xcc\x70\x02\ +\x81\x24\x2a\x71\xa5\xa2\x93\x20\x03\x8e\xb0\x30\xa4\x5a\xbe\x73\ +\x27\x93\x3b\x67\x7a\x07\x3d\x55\x63\xe0\x80\x86\x20\xd3\x05\xf3\ +\x90\xa6\xac\x63\x57\x89\x99\x26\xad\xe2\x1d\xd2\x02\xfa\x22\xba\ +\x2c\x32\x70\xc5\x74\xec\xf6\x26\x0d\xbb\x32\x4f\x5d\x00\xac\xff\ +\x83\xac\xdf\xea\x1b\xd6\xd9\x8f\x71\x1d\xe2\xe8\x45\x63\x73\x47\ +\x8f\x79\xb2\xcf\x74\x1b\x20\x3e\xc0\x49\x6c\x41\xcd\x23\xd2\x6b\ +\x80\x32\x4e\xf1\xb7\x7b\xcc\xee\x96\xea\x07\x35\xd9\xdf\xf5\xc3\ +\xc2\x09\xe2\x03\x91\xb0\xa8\xa6\xfc\x6a\x97\x81\xf3\x07\x60\x59\ +\x44\x66\x99\x54\xde\xf5\x9b\x7a\xed\x54\x71\xfa\x05\x1d\xce\x40\ +\x1d\xe5\x19\x1d\x30\x35\xf1\xdc\x2e\xb9\xe9\xf5\x6a\xc6\x5e\xa3\ +\x69\x5f\x92\x16\x71\x8d\x12\xa2\xc2\x52\x85\x19\x82\xae\x4a\xb3\ +\x04\xf2\xbd\x2d\x61\x71\xc0\xab\xc7\xee\x68\x09\x4b\x14\x33\xcf\ +\xc2\x3c\x47\xa8\x52\xd3\xa7\x3c\x3d\x01\xf0\xf8\x3f\xd8\xc7\x76\ +\x98\x03\x27\x0d\x8e\x0c\xf3\x64\xd3\xc3\x9f\x94\xf7\x7a\x71\x81\ +\xa5\xc0\x19\x5b\x90\xfa\x4f\xbb\xaa\xc1\x1d\xe2\x40\x23\x76\xae\ +\x12\xae\xe8\x60\x8f\x71\xe0\x23\x66\x37\x8b\x9d\xef\x60\x5c\x91\ +\x19\xbd\xe3\xaa\xc1\xbe\xd8\x61\xf7\x70\xd4\x57\xd4\x94\xff\xd4\ +\x21\xfe\x36\x10\x1f\x89\x84\x45\x81\xfa\x82\x0a\x5c\xaa\x27\x30\ +\xad\xa4\xcb\x63\xa5\xd8\x5d\x2c\x71\x55\x32\xf6\x24\x24\xa3\xd1\ +\xcc\x32\x34\x3f\xd3\x8f\x7b\x9e\x25\x2e\x0c\xa9\x88\xb7\x10\xa4\ +\xdf\x20\xc3\x82\xdd\xcf\xa6\xf0\xa4\x61\x53\x4e\x29\x3f\x63\x6c\ +\xee\xe8\xd2\x27\x23\xfe\x06\x19\x60\x4a\x0a\x8c\xcd\x1d\x3d\x15\ +\x58\xc1\x96\x32\x1c\xa5\x57\xb7\xe7\x6f\xf0\xb8\x07\x22\xad\xd7\ +\x64\x14\x07\x5b\xec\x1c\x88\xf7\x79\xea\x6f\x97\xc8\x1c\x03\x79\ +\xf2\xe9\x69\x0a\xf5\x7f\x96\xd4\xdf\x2c\x19\x7f\xe9\x6a\xea\x0b\ +\x6a\xc2\x8d\x9e\x78\x7d\x45\xf5\xf5\x2e\xf1\x5e\x9f\x3a\x75\x03\ +\x98\x1d\x53\xdc\x3d\x7f\x43\x13\xb3\xb3\x23\x8c\x44\x98\x66\x08\ +\x2b\x15\xbb\xbd\xc5\x0c\x0a\x71\x24\xe0\xbf\x9f\x10\x43\x34\x13\ +\xf2\x3f\xc8\x10\x2f\x84\x25\x1e\x42\x02\xa3\xd8\x84\x33\x87\xb4\ +\x17\xed\x3b\xf5\xc9\x74\xff\x53\xb6\x01\xd6\x53\x05\xfb\x01\xb7\ +\x6c\x09\x32\x40\x34\x41\xb8\xb5\xdf\x36\xc6\xc0\xbf\xf5\x61\x07\ +\x85\xce\x8f\xaa\x54\x8a\x7d\x17\x34\x4e\x6b\x26\x2c\xbf\xef\x74\ +\xc9\x5e\x9d\x53\x9f\x5b\x61\xf6\x34\xf8\x5f\xd6\xd8\x03\x1d\x54\ +\x90\xef\x67\xf1\xd6\x10\x57\x0b\x93\xef\x9a\x80\x2a\x60\x06\x14\ +\x53\x42\xb1\x4b\x46\x0c\x11\x3b\x64\x08\xbf\x0d\xe0\x49\x33\x09\ +\x55\xb1\x3b\x1a\xdc\x11\x19\xe5\x77\xba\x34\x4f\x6b\x51\x5f\x91\ +\xe0\x65\x74\x81\xa3\xfa\x65\x05\x16\x8a\x7f\xe9\x4f\x33\x8b\x7a\ +\xf1\xfb\x4d\xd0\xfb\xbf\x3f\x70\xeb\x86\x6e\xff\x53\x92\x00\xeb\ +\xa9\x82\x5b\x81\x2f\x6c\x29\x09\x20\x7f\x49\x8d\x3b\xd8\x51\x5d\ +\x54\x53\x5f\xeb\x09\x39\x90\x59\xdc\x4b\x73\xea\xdf\xd4\x70\x43\ +\x8d\x7b\x75\x6a\xee\xcc\xfe\xb8\xa0\x3e\xaf\x42\xb6\x33\xe8\x8a\ +\x88\x99\x25\xf8\xef\x95\xd4\xff\xd6\xa1\xfc\x87\xce\xba\x5c\x7b\ +\x5b\xc9\x8f\xc9\x89\xa3\x20\x13\x16\x7f\x7b\xa4\xf8\xeb\x01\xcc\ +\x9c\x0c\xac\xc1\x6c\x27\xd8\x7d\x1d\xe1\xd6\x80\x9d\x6f\xd1\x96\ +\x90\x9f\xd8\xc0\xec\x6a\x50\xd3\x83\x99\xc9\x7a\x65\xe5\x4f\xeb\ +\x0a\x3e\xad\xf5\x85\xb1\xb9\xa3\x4f\x89\xf8\x4f\x99\x01\xd6\x53\ +\x05\x1f\x00\x1e\xda\xec\xa9\x0f\x54\x3f\xec\xa6\x8a\x9f\xb6\x52\ +\xb5\x41\x8e\x6a\x60\xf6\x6c\xa0\x13\x82\xa8\xe2\x76\xb5\x08\x10\ +\xef\x0f\xd4\xe7\x95\x14\x1f\x68\x92\x1d\x9b\x53\xbc\xbf\x89\x7d\ +\x9e\x23\x9b\x67\x53\xb1\xc7\xd2\x80\xf4\xf5\x9a\x45\xfa\x20\xdc\ +\xee\xb1\x73\x0c\xd9\xab\x72\xb2\xc3\x72\xaa\x7f\x9a\xa4\xf8\x70\ +\x0b\xb3\x8b\xc1\x6d\x67\xd1\xa5\x81\xe2\x84\x06\x52\x41\xf8\x45\ +\x85\xde\xea\xb1\xb1\x07\x22\xe1\xd3\xa4\x92\x70\xbd\x5f\xe7\xd2\ +\x6d\x5c\x35\xf0\xd0\xd8\xdc\xd1\x0f\x3c\x15\xd1\xff\xb4\x19\x60\ +\x6c\xee\xe8\x94\x2a\x58\xb0\x59\x92\xbd\x17\xd3\x5f\x1b\x20\x69\ +\x0a\x71\x51\x20\x5c\xe3\x93\xb1\x97\x5b\xec\xfe\x0e\x77\x68\x86\ +\x99\xef\xd2\x9c\xe1\x01\xc1\x64\x42\xd6\x12\xb2\xe9\x06\xff\xd1\ +\x36\x7a\xa3\x67\xec\x88\xd5\xb4\xcf\xe9\xa6\x94\x9c\x0a\xac\x51\ +\x88\x06\x77\x42\x83\x50\x2b\xdd\xc5\x15\x61\x71\x9d\x9a\x8c\x57\ +\xd4\x74\xff\x71\x1c\x77\x58\x46\x5c\x16\x88\xbf\x0d\x94\x5f\xeb\ +\xa0\x19\x98\x61\x43\xfd\xb3\x0a\x0a\x41\xae\xa8\x90\x32\xa9\x27\ +\x5d\x0a\x74\x05\xa9\x15\xb3\x71\x25\xc0\x82\x0d\x59\xfd\xcf\x98\ +\x01\xd6\x63\x84\x65\xc0\x5b\x37\x47\xf3\xdf\x78\xc5\x38\xa1\xfa\ +\xb3\x71\xb8\x31\x60\xd6\x44\x6c\x2e\x48\x01\x93\xc7\xaf\x46\x86\ +\x15\x7f\x79\x0d\x19\x84\x9b\x02\x3a\xa9\x84\xbb\x3c\x7a\x6b\xc0\ +\xb5\x20\x9f\x6f\xf1\xdf\xec\x62\xfb\x84\xea\xfe\x88\x97\x14\xc1\ +\xd3\x08\xf9\x89\x4d\xca\x2f\x76\x89\xf7\x47\xd8\x51\xa8\x17\x57\ +\x30\x16\x29\xf6\xcb\x69\xfc\x49\x0b\xbf\x3c\xe0\x0e\xcf\xc1\x80\ +\xd9\xcb\x51\xdd\x13\xf0\x23\xc9\x0d\x95\x1a\x9a\x07\x59\x5c\x4b\ +\x90\x19\x06\xff\x9b\x1e\x40\x94\x23\x15\x15\x6c\x9c\xf5\xd6\x1e\ +\x6d\x9e\x6e\xaa\xe4\x69\x11\x7f\xea\xfb\x0f\x80\x7f\xdb\xac\x7c\ +\x3f\x03\x9a\x41\xf9\x91\x09\xa4\xdf\x60\x0f\x71\x98\xfb\x95\xfc\ +\x94\x26\xfe\xac\x2e\xf9\x1b\x33\x74\x75\x00\x02\xe1\x97\x15\xb2\ +\xbd\xc0\xca\x88\x99\x66\x70\x47\x66\x94\x1f\x6e\x13\xee\x0b\xd4\ +\x97\xd6\xc4\x6e\xaf\xe2\xc7\x09\x14\x50\xbc\xab\x49\xb8\x35\x45\ +\xf5\x62\x0e\xba\x2c\xe2\x8e\x2a\xf0\xcb\x3d\x6a\xa1\xfc\x7a\x87\ +\xfa\xe7\x25\xe1\x0a\x8f\xa8\x50\x9e\x5f\x92\x1d\x9c\xe1\x7f\x1b\ +\xc9\x5e\x94\xe1\x6f\xaa\x31\x77\x04\x32\x07\xce\x28\xe2\x15\xff\ +\x9b\x0a\x55\x21\x6e\x1c\x3f\xf0\xdf\x7a\x34\x79\x5a\xb7\xff\x19\ +\x49\x80\xf5\x98\xe1\xcf\xd9\x5c\x7a\x0a\x7b\x75\xfd\xe5\xe7\x3a\ +\x84\xab\x6a\xf2\xa3\x33\xe2\xd7\xbb\x98\x19\x42\xf5\x9a\xd5\x70\ +\x5f\xc0\x9f\xd1\x41\x1e\xa8\xc8\xe6\x43\xe3\xf4\x06\x7a\x95\xa7\ +\xfb\xa1\x36\xb1\xad\x84\x71\x45\xbd\x50\xfd\xc6\xe3\x57\x2a\x2a\ +\x60\x8a\xd4\x18\xea\x5e\x99\x53\xfe\xa8\x8b\x3e\xac\x68\xa5\x64\ +\x47\x66\xc4\x52\xf1\xf7\x78\xcc\x5e\x19\x61\xa1\xc7\x3f\xe8\x61\ +\xba\x60\x5e\xe2\x88\xa2\x64\x7b\x3b\x74\x55\xc4\xcc\x11\xea\x4b\ +\x2b\x8c\x13\x4c\x4c\x51\xe0\x7c\x8e\xc5\x34\x95\xee\xff\x99\x80\ +\x7e\xbb\x31\x8c\xc0\xab\x7b\xb4\x78\x16\x16\xd3\x33\x58\x53\xba\ +\x66\x70\x64\xf8\x76\x7e\x0f\x63\x67\x34\xe8\xda\xe4\x8a\x34\x84\ +\xfa\xcb\x1d\xea\xb3\xbb\xd8\x12\x4c\x50\xb2\xb9\x36\x11\xf0\xd5\ +\x39\xf5\xcf\x4b\xec\x61\x19\xf5\x2a\x05\x07\xd9\x41\x39\xd5\xe7\ +\x26\xd1\xfd\x1d\xfe\xbc\x12\x7c\xaf\x39\x84\x14\xb6\x55\x03\x36\ +\x0a\xfa\xc2\x8c\xb8\xd4\xe0\x5e\xdd\xa4\xfe\xe6\x38\x6e\x7a\x44\ +\xc7\x22\xb1\x0b\x76\xd8\x50\xec\x95\x41\x80\xb0\x3a\x90\xfd\x65\ +\x8b\x6c\x02\xba\x1f\x99\x20\x06\x85\xf9\x06\x59\xae\x18\x23\x50\ +\x2a\x7d\x51\xa9\xca\x14\xb7\xaf\x0b\xa1\x5c\x11\x29\xfe\xbe\x3f\ +\x61\x01\xfb\xf8\xa4\x99\xc0\x27\x59\x0b\xc7\xe6\x8e\xee\xfb\x74\ +\xf5\xfe\x46\x61\x80\xf5\xe2\x03\x05\x70\x3f\xa9\xdc\xe8\x39\x15\ +\xfb\x1a\x15\x5d\xae\x54\x67\x76\xf0\xdf\xe8\xd2\x38\x36\x47\x6f\ +\xa8\xc9\x5f\x9d\x53\xff\x57\x49\xdf\xf9\xd3\x53\x27\xf0\x3d\x01\ +\xc9\x25\x35\x6e\x9c\xd5\x4d\x33\x03\xef\x0e\x54\x0f\x28\x4c\x37\ +\x09\x97\xf7\x79\x96\xf0\x60\x40\xc7\x14\x72\xc8\x9a\x42\xd8\x35\ +\xc3\xcc\x6b\x10\x1e\x54\xe2\xf5\x1d\xf2\x9d\x15\x9d\x26\xf8\xa5\ +\x11\x37\xd3\xc0\x9d\x81\xc6\x9f\xb6\xd0\x69\x42\xf7\xeb\x93\xe4\ +\x11\xa4\x00\x99\x67\x29\xaf\xa9\xc9\xe6\x39\xec\x6c\x41\xef\x08\ +\x64\x13\x11\x77\x58\x46\x79\x7d\xc4\xcf\x82\xee\x3d\x01\x1d\x14\ +\xfa\xaf\x9a\x81\xb4\x64\x6d\xe3\xca\xd3\x58\xcb\x81\x9d\x49\x75\ +\xfe\x3c\xe7\x12\x60\x3d\x26\x10\x60\x1a\x70\x37\x30\xfc\x5c\x88\ +\xfb\xa9\xb4\x68\x5c\x16\xe9\xfe\xd5\x04\xf1\x4a\xcf\xc0\xdb\x0a\ +\x74\xd0\x60\xda\x91\x70\x57\xc0\x1c\xec\x30\xfd\x06\x37\x0d\xc2\ +\x15\x35\xfe\xd2\x1a\xd9\xd5\x60\x9e\xef\x28\xbf\x53\x42\x2e\x44\ +\x2b\xc8\x7c\x4b\xb8\xbf\x57\xa4\xb1\x34\xe0\x8e\x2f\xd0\x85\x01\ +\x33\x12\xa8\x57\x09\xda\xc8\x31\xcf\xcf\x89\xd7\x4d\xe2\xb2\x00\ +\xa2\x78\xc0\x3d\xcf\x21\xb7\x04\xcc\x76\x06\x73\x80\xc3\xbe\xbd\ +\xc0\x2e\x0c\x70\x9b\x27\xce\x10\xba\xe7\x74\x31\xd3\x04\x57\x08\ +\xba\x2c\x92\x99\x14\x26\x16\x07\x55\x10\x38\xd0\xd2\xbd\xc1\xd3\ +\xf8\x5c\x3f\xd9\x6b\x8b\x75\xb3\x03\x9f\xda\x1a\x05\x76\x07\xd6\ +\x8c\xcd\x1d\x7d\x56\x56\xa4\xd9\x38\x77\x91\xd5\xc0\xdc\xde\x83\ +\x6d\x84\x64\xce\x7a\x5f\x41\x91\xd8\x7b\x1d\x15\x7a\x3d\xf2\xf1\ +\x92\x40\xf7\x7d\x13\x38\x03\xad\x77\x16\xc4\x85\x9e\xfa\x0b\x93\ +\x70\x7c\x41\x68\x91\x74\xf3\x9a\x88\xcf\x81\x3f\x6d\x12\x76\x34\ +\x74\x6f\x0f\x4c\x5e\xe7\xd1\xe7\x5b\xc2\x7c\x43\xb7\x03\x7e\xbf\ +\x1c\x3f\x2c\xc4\x87\x63\x52\x25\xdf\x2e\x53\xfb\xd8\xca\x04\xe0\ +\x28\xb6\x46\x7f\x3b\x01\x36\x10\xe7\x08\x6a\x85\xc6\xae\x05\x8d\ +\x93\xfa\xd0\x17\x64\xc4\x9d\x2c\xe1\xda\x48\xfc\x5c\xc5\xc4\xa7\ +\xbb\x84\xe7\x39\xfc\x45\x35\xad\x83\x32\xf2\x35\x0a\xcb\x22\x03\ +\xff\xda\x8f\xec\x64\x52\x84\xfa\xf0\x0c\x53\x28\xb2\x30\xd0\xd8\ +\xcd\x12\xcf\xea\x60\x5b\x60\x23\x69\xaf\x1b\x8e\x0f\x8f\xf6\xce\ +\x7a\xf5\xc6\x08\x26\x6f\x34\x2f\xb4\xa7\x0e\xa6\x03\x8b\x9f\xad\ +\x3a\x98\x3a\x84\x29\x24\x14\xed\xa5\x3a\xc5\x40\x9c\x80\xfa\x47\ +\x35\xdd\x8f\xb5\x31\x33\x14\xa9\xa1\x75\x7c\x41\xe3\xb5\x39\xe5\ +\xaf\x3d\xe5\x4f\x4a\xc2\xc3\x91\xbe\x4f\xf6\xa3\x97\x55\x98\xc3\ +\x73\xba\xdf\xee\x12\xee\x0e\x48\x13\xf4\x41\x25\xf4\xa7\x74\xaf\ +\x79\x59\x0b\x33\x4f\xf0\x17\x74\x09\x37\x7b\x4c\x43\x88\x53\x51\ +\xba\xda\x60\x76\x37\x09\xd1\xbb\x91\x5c\x4c\x04\xa4\x2b\x88\x35\ +\xe8\x90\xe0\xfe\xb8\x40\x57\x2a\xe1\xbc\x0a\xb7\xbd\x25\x0e\x0b\ +\xc5\xa9\x05\xf5\x9b\xd6\xa4\xf9\x3f\xc7\xe4\xd4\x77\xd6\x09\x15\ +\x34\x17\xb2\x43\x1c\xe5\xcf\x2a\xcc\x3c\x8b\x7b\x69\x46\x75\x41\ +\x45\xbd\x42\xc9\x3f\xd6\x22\x7f\x4b\x41\xe8\xd5\x17\xe8\x13\x93\ +\x65\x39\xb0\x27\xb0\xfa\xd9\x88\xfd\x4d\xc9\x00\x53\xe5\x11\x37\ +\x6c\x2c\xc3\x50\x43\xaf\x09\xb3\x29\x70\x49\xc9\xe4\x7b\x27\x90\ +\x1d\x2c\xd9\x6b\x0a\xa4\x13\x60\x85\x62\xc6\x22\xc5\xc9\x0d\x74\ +\xd8\x24\x70\xc6\x87\x23\xba\x24\x60\x03\x74\x3e\x35\x49\x7d\x7f\ +\x4c\x85\x9c\x06\xb4\x80\xe2\x83\x2d\x98\x2e\x94\x5f\xaf\xd1\xb1\ +\x80\x0c\x80\x3c\xac\x84\x52\xa1\xea\x89\xc6\x5d\xd3\xe0\xe8\x78\ +\x6f\x8d\x3e\xec\x31\x16\xdc\x80\x21\x4c\x28\x21\x0a\x78\xc8\xdf\ +\xdf\xa4\xfe\x66\x09\x56\x91\x69\x92\x26\x8b\x0f\x08\xc5\x8e\x0e\ +\xbd\xb4\x46\x06\x85\xec\x95\x8e\xb0\x5a\x31\x1e\xc2\x9d\x9e\xb0\ +\x46\x71\x7b\xa4\x0c\xa2\xd9\xc5\xd2\xbd\xa2\x46\xe7\x19\x5a\x9f\ +\xe9\x47\x0e\x70\x3d\x40\xc8\xc7\x25\xcb\x42\xe0\x85\xa4\x27\xd4\ +\x8d\xc5\x00\x1b\x6d\x14\x41\x2f\x5f\xa0\x3d\xa3\x64\xdf\xa7\xe5\ +\x22\xae\x9f\x19\x9b\x2a\xb0\x98\xe2\xd0\x02\xc2\xe2\x54\x80\xd9\ +\xfd\x68\x1b\xbb\xbf\x45\xdb\x91\xf2\xcc\x36\x71\x61\xa0\xf1\xfe\ +\x26\x8d\xcf\xf5\xa3\x99\x50\x7f\xa3\x43\xbc\xc5\xc3\x6d\x1e\x79\ +\x20\x62\x66\x1b\xe2\x58\x4a\xbb\x46\x52\xa1\x04\x03\x86\xce\x67\ +\x26\xa9\x2f\xaa\x71\x2f\x32\x98\xed\x41\x97\x44\xe2\x44\x44\x2a\ +\xc8\xde\xde\xc2\xec\x9c\x23\xbb\x64\xc4\x7b\x03\x54\x82\x99\xe9\ +\x12\xe2\xd7\x5e\x0e\x99\x6b\x31\x3b\xf4\x50\xc2\xe7\x59\xe8\x07\ +\x32\xc1\xec\x9f\x11\xd7\x28\xd9\x89\x4d\xfc\x9d\x1e\xf6\xb4\xb8\ +\xd7\x15\xd4\x95\x50\x47\xa8\x05\xcc\xc9\x0d\x62\x5b\x53\xcb\xd7\ +\x01\x19\xea\x04\xb3\xc0\x41\x9d\xc0\xa5\x9f\xa4\x3a\xe3\xea\xde\ +\x99\x96\x63\x73\x47\x37\x1a\xf1\x37\x4d\x2a\xe2\x77\x5d\xc4\xcf\ +\x00\xa7\x3f\x25\x8b\x9e\xf5\xca\x98\xeb\xe4\xae\xc5\x91\x48\xb8\ +\xd9\xd3\xf9\xab\x36\xc5\x7b\x1a\x64\x4d\xc8\x3f\xdc\xa2\xbe\xca\ +\xa3\xcb\x22\xd5\xa7\x3b\xe4\x2f\xb0\x98\x4a\x31\x6f\x6e\x90\xef\ +\x6b\xa9\xce\xec\x12\xef\x0b\xc4\x1a\xca\x73\x2b\xa4\x5f\x52\xfc\ +\xbd\x4e\x5d\x33\xf6\x98\x3c\x85\x77\x67\x58\xdc\x3c\xa5\xfa\x62\ +\x17\xed\x28\x12\x04\x76\x77\xc4\x11\xa0\x16\x64\x07\x87\x8e\x05\ +\x98\x0c\x10\x62\x1a\x22\x65\x84\xe0\x23\xe6\xc0\x9c\x70\x75\x85\ +\x14\x26\xcd\x15\xdc\xdb\x61\x0f\x73\x84\x85\x35\x2c\x8d\xc8\x5d\ +\x01\xe7\x0c\xf2\xb2\x9c\xfa\xf6\x40\xf6\x67\x4d\xc2\x8f\x26\x09\ +\x17\xd7\xc8\x4c\x21\x3e\x10\x70\x3b\x5b\xe2\xa8\x12\xee\xf5\x09\ +\x83\xb0\x25\x34\xfe\x63\xa0\x77\x16\xf2\xe8\x20\xcf\x9f\x3f\x1b\ +\x57\xef\x39\x67\x80\x47\x31\xc3\x5b\x80\xef\x6f\x90\x07\x62\x2a\ +\xaf\xb2\x80\x19\x10\xba\xa7\x8c\xd3\xbd\xa0\xc6\xed\x6c\xd2\xcd\ +\x7a\x49\x46\x5c\x14\x90\x3d\x2c\x32\xcf\xe0\x0e\x70\x10\xa0\x38\ +\xd0\xa1\x97\xd7\xa9\xd2\xe7\x9a\x9a\xc6\x1b\x0a\xcc\x89\x05\xab\ +\x8e\x5a\x93\x66\xfc\x20\xf0\x60\x44\x6d\xc2\xf0\x25\x42\xfe\xe1\ +\x41\xc2\xaf\x6a\xec\x76\x11\xff\x3f\x65\xc2\xdd\x11\x90\xf9\x39\ +\xf9\xdb\x5a\x94\x5f\xaa\xa1\xaa\x61\xc0\xa0\x8f\x84\x34\xe9\x6b\ +\x17\xd0\xe5\x9a\xe0\x5f\x1b\x82\x9b\x66\x31\x43\x02\x1d\x45\xa7\ +\x1b\xaa\xc5\x15\xb4\x23\xf6\x60\x87\x2c\x03\xee\x57\xcc\x82\x8c\ +\x58\x08\x66\x7e\x86\xec\xec\x89\x57\xa7\xe1\x12\x76\x9e\x25\xfc\ +\xa2\x42\x2a\xc1\xbc\xc2\x11\xae\xab\x91\x21\xa1\x71\xd6\x20\x34\ +\x7e\x87\x01\xde\x3a\x15\xe1\xdb\xb4\xa9\xb3\x4d\xcf\x04\xb3\x81\ +\x9b\x80\xed\x1f\x97\xf8\x9a\xaa\x6f\x45\x14\xbd\xb4\x86\x2b\x2a\ +\xaa\x9f\x55\x14\xa7\xb4\x70\x87\x3a\xc2\xbd\x01\xbd\x33\xe0\xef\ +\x49\x23\x56\x74\x5c\xf1\xb7\x7a\xf2\x63\x72\xcc\x6d\x9e\xfe\xef\ +\x0c\x52\x5f\x95\x3a\x35\xfd\xe7\x27\x29\x03\xc8\xee\x96\x7a\x54\ +\xf1\x97\xd4\xc9\x80\x9c\x6b\x88\x25\x60\x84\xec\xdd\x2d\xc2\x6f\ +\x3c\x26\xd6\xb0\x28\x41\xb1\xc9\x4e\x8e\x30\x6e\xa0\x99\xa1\xf7\ +\x7a\xec\x2c\x81\x95\x8a\x79\x45\x86\x2e\x8f\xf8\x5b\x2a\xec\x01\ +\x86\xec\xf5\x05\xf5\x97\x3a\x98\x35\x60\x2b\x45\x06\x0c\xa1\x84\ +\x5a\x62\x82\x77\xdd\xc5\x60\x73\x83\xde\xa6\x68\x13\xcc\x71\x0d\ +\xc2\x75\x1e\xf7\x12\x41\xd7\x44\x1a\xef\x6b\x31\x79\xe2\x1a\x9a\ +\x7f\xdf\x4f\xf5\xff\x4d\x20\x73\xc0\x2f\x55\xb2\xa3\x1d\xe6\xc0\ +\x8c\xec\x4f\x1b\xa8\xca\x43\xc0\x82\x67\x12\xdb\xdf\x1c\x25\xc0\ +\xfa\xd9\xc4\xcf\x03\xa7\xa0\xa8\x51\x15\x95\x54\x5b\xa7\x4e\x08\ +\x17\xd7\x74\xff\x69\x12\xfd\xad\xa7\x38\x2c\xa3\xfe\x55\x8d\xf4\ +\x90\x39\x65\x77\x4b\xe3\xf4\x26\xee\x88\x8c\x78\x79\x45\xf3\x25\ +\x19\x76\xba\xa0\x4b\x02\x61\xb9\x52\x5f\xeb\x29\x97\xc7\x34\xb7\ +\xf1\xa1\x88\x5f\x1c\x52\x49\xd8\x6c\x43\x5c\x12\x88\x63\x10\x1b\ +\xc0\x50\x2a\xda\xb4\x4d\x41\x6f\xf0\x78\x15\xec\x4b\x7a\xb5\xf9\ +\x77\x05\xe2\x2a\x87\x79\xf9\x0c\xcc\x3e\x4d\xaa\x4f\x2d\x21\x7f\ +\x67\x1f\xf5\x05\x11\xb3\xbb\x25\x9b\x05\x72\x73\x45\x35\x52\x12\ +\x1a\x42\xd6\x07\x6e\x02\x28\x2d\x75\x21\xe8\xde\x0e\xe9\x07\x5d\ +\xee\x89\xf7\x7b\x98\x8c\x98\xe9\x42\xf1\x86\x82\xd8\x51\xcc\x8e\ +\x06\x99\x63\xa8\xce\xee\x62\x17\x38\xc2\x65\x35\xf6\x79\x16\x7b\ +\xaf\x12\xef\x56\xaa\xa3\x9c\xba\x17\x18\x19\x38\xbd\xf9\x85\x15\ +\xbb\xac\xfc\xc0\xe0\x92\x61\x10\x36\x89\xd8\x7f\xce\x25\xc0\xa3\ +\xec\x82\xfd\x80\x8b\xa5\x92\x99\x18\x45\xef\xf5\x54\xdf\x2c\xa9\ +\x7f\x58\x62\x32\x68\xbe\xaf\x49\xfe\x22\x47\xcc\x85\x70\x61\x49\ +\xfe\xbe\x16\xe1\x1e\x9f\xba\x60\x7e\x55\x53\x1c\xec\x30\x2b\x22\ +\xb6\x29\xe4\x27\x37\x90\x3d\x1d\xfe\x9a\x9a\xb0\x93\xa1\xba\x35\ +\xd0\xfe\x70\x3b\x4d\x05\x57\x30\x93\x3d\xdd\x3f\x0e\xee\x8f\x32\ +\x28\x0c\x7a\x77\x4a\xcc\x68\x1b\xea\xa2\x20\x7b\xdb\x20\xf5\xd9\ +\xe3\xd0\x0f\x76\xaf\x02\x5d\x5e\xa0\x5a\xc0\x03\x0f\x61\x8f\x29\ +\x08\x57\x78\x1a\x9f\x9a\x4e\xf5\xd5\x71\xc2\xf5\x5d\xec\x1f\x14\ +\xc4\xdb\x03\xe2\x02\xd9\xca\x5e\xcf\xe0\xbe\x16\x3f\x24\x70\x45\ +\xc9\xb4\xeb\x67\xd2\x7e\xfb\x6a\xcc\x1b\x72\xea\x3b\x42\x9a\x0e\ +\xf6\x70\xa4\xf9\x90\x92\x9d\xd4\xa0\xfb\xb1\x36\xf6\x15\x19\xd5\ +\xcf\x2b\x14\xc8\x66\x3a\xd4\x19\x3a\x45\x58\xa1\x8f\x84\x97\xd2\ +\xe5\xd6\x1d\x17\x0e\xf1\xe0\x3e\xcf\x0d\x7a\xef\x73\x36\x2f\x70\ +\xaa\x27\xad\x38\xad\xb5\x6c\x6c\xee\xe8\xbf\x34\x3e\xd4\x37\xe4\ +\xcf\xea\x1e\x5a\x7d\x6e\x92\xd6\xfb\x9b\x98\xb6\xd2\x78\x7d\x41\ +\xb8\xac\xa2\xfb\xd5\x2e\xd5\x79\x25\x72\x7f\xa4\xfe\x71\x05\x0f\ +\x04\xec\x7c\x47\xfe\xd7\x7d\xc8\xcc\x74\x93\xb2\x77\x36\x09\xd7\ +\xd4\x8c\x1f\x37\x86\x6c\x67\x98\x38\xb3\x4b\x7d\x4b\x20\x7b\x5d\ +\x83\x70\x93\x27\x3b\x3a\xc3\xe4\x10\x96\xc4\xd4\x20\x5a\x18\x4c\ +\x9f\x60\x3a\x8a\xbf\x2f\x92\x0d\x18\x74\xcf\x3e\xb4\x14\xec\xe1\ +\xad\x84\x01\x3c\x37\x43\x27\xc0\x1d\xd7\x47\xb8\x7c\x25\xfa\x10\ +\xd8\x97\xb4\xa8\xbe\xd0\xc6\xbd\xbe\x89\x2e\xf1\x68\xd7\x52\x9c\ +\x3e\x88\xbf\xaa\x06\x4d\x83\x1d\xec\xf6\x86\xf8\xeb\x92\x46\xbf\ +\x81\x8b\x2a\x58\xae\xc8\x90\x85\x1d\x1d\x14\x0e\x77\x44\x93\x6c\ +\x24\x10\xce\xaf\xb0\xef\x6a\xe1\xaf\xaa\x70\x27\x37\x89\x51\x31\ +\x43\x16\x33\x24\x67\x54\xb7\xd5\x2f\x6d\x7d\x7e\x70\x59\xfd\xd3\ +\x92\xf1\x2f\x76\x9e\xb3\x88\xfa\x73\x3e\x30\xb2\xfc\x6c\x87\x83\ +\xbf\xfc\x72\xee\x79\xf9\x6d\x17\xd4\x57\x54\x5f\x65\x99\xee\xef\ +\x7f\x59\xcd\xcf\x76\xb2\xc4\x5b\x3c\x66\xd8\x90\xbd\x34\x27\xdb\ +\xc9\x60\x8f\xcc\x21\x2a\xfa\x40\x24\xdc\xe4\x99\xfc\x5e\x45\xfd\ +\xb3\x8a\xfa\xc2\x1a\x5a\x60\xff\xa8\x81\x1a\xa1\xba\xca\x63\x4f\ +\x6c\x52\x7d\xad\x8b\xd9\x3b\x47\x4b\xd0\x87\x3c\xd9\x61\x39\xf5\ +\x15\x1e\x19\xb4\xb0\x3c\x10\x1f\x0c\x64\xc7\xe4\xc8\x0c\xc1\xdf\ +\x02\x3a\x64\xc8\x5e\xd9\xa4\xfe\xc2\x04\x8d\x93\x1b\xf0\xdd\x2e\ +\xb2\x13\xf8\xcb\xc6\x31\xbb\x46\xec\x82\x0c\x7f\x7e\x07\xf7\x86\ +\x26\xfe\xec\x49\xc8\xc0\x1d\x5e\x10\x16\xa6\xd6\xae\xb8\xdc\x63\ +\xf7\x30\xc4\x25\x1e\x6d\x2b\xce\x81\xed\x9a\x84\x1f\xb8\x4b\x46\ +\x75\x73\xc4\xbd\xaa\x49\xfd\x83\x92\xee\x95\x1d\xe2\x02\x4b\xbd\ +\x26\x12\xfa\x05\x7d\x5e\x46\x6c\xc9\x45\xf5\x32\x7f\x44\x79\x55\ +\xfd\x9f\x4d\xa0\xf3\xd3\xe7\x1e\xa2\x69\xb3\x98\x17\x38\xeb\xda\ +\xe9\x87\xf8\x9f\x94\xe7\x64\x6f\x6c\xec\x51\x7d\xad\x8b\xec\x6f\ +\x91\x83\x33\xba\xef\x1e\x27\x7b\x67\x03\xc9\xa1\xfe\x4a\x07\x7b\ +\x5a\x8b\xea\xcb\x1d\xfc\x72\x45\x67\x08\x7d\x7f\xd5\xa2\x73\xea\ +\x38\xad\x2f\x0f\x50\x2e\x51\x74\x25\x84\xab\x23\xc5\x87\x0b\x3a\ +\xef\x5e\x83\x69\xc7\x34\xfd\xb3\x9b\x5c\xcd\xd6\xfb\x1a\x4c\x9e\ +\xd1\x49\xb3\x33\x83\x03\x0b\x66\xcf\x06\x66\xa7\x9c\x78\x65\x97\ +\xc6\x58\x20\x44\x4f\x3d\x18\xd3\x48\xed\x68\xd0\x07\x81\x32\xd5\ +\x1a\xa0\x1e\x99\xe1\x60\x20\xa7\xf9\x4f\x4d\xca\x7f\x19\x43\x97\ +\x47\x18\x09\xd8\x39\x96\xdc\x43\xf6\xe2\x26\xe5\x75\x25\x71\x3f\ +\x8b\x7d\x77\x1f\xf6\xa8\x9c\xc9\xd7\x8f\xd3\xfa\x46\x0b\x86\x0d\ +\xe1\x4a\x4f\x58\xe4\xef\xca\x5e\xd3\x3c\x7e\xe2\x80\xa5\xd7\x34\ +\x7e\x34\x8b\xee\x71\xbf\x3f\x38\x86\xcd\x82\x01\x86\xcf\xe8\x63\ +\xf4\x83\x6d\xfa\x0e\x76\xaf\x8d\x95\x7e\xdc\x3f\xa8\x07\xda\xe7\ +\x59\xe2\x7d\x11\x5d\x11\xd3\x58\xbd\x00\x76\x8e\x10\xfb\x04\x06\ +\x2d\xd9\x7b\x1a\xf8\xff\xea\xc0\x48\xc0\x1d\x9d\x53\x5e\x16\xc9\ +\xfe\xa8\x45\xb8\xd3\x13\xef\xf4\xb8\x03\xc1\x0e\x0b\xe5\x17\x3a\ +\x98\x08\xee\xcd\x05\xfe\x7f\x2a\xcc\x09\x0d\xb4\xed\x08\x4b\x0c\ +\x7a\x6f\x0d\x0d\x8b\xd9\xb3\x45\xb8\x68\x15\xc5\xf3\x0d\xf1\xe6\ +\x2e\x6b\xe1\x02\x5a\x06\x97\x59\xa4\x23\xc4\x3a\x12\x49\x05\x20\ +\x78\x41\xe6\x98\xc4\x38\x23\x1e\x99\x65\x70\x07\xe5\xc4\xef\x56\ +\x34\x4f\x6a\x52\xdd\x5d\x23\xc7\x66\x74\x3f\x3c\x41\xe3\x33\xd3\ +\x30\xbb\x1b\xba\xff\xb7\x43\xf6\x87\xee\x7a\x19\x92\x8f\x77\xdf\ +\xbb\xea\xbc\x81\xbb\xe7\x30\xbe\xfb\x23\x9b\x43\x29\xc5\xe6\xb7\ +\x72\x58\x40\x21\x9f\x34\x2d\x5e\x25\x83\x82\xde\x1b\x31\x39\x30\ +\x28\x09\x20\x69\x8d\x12\x11\x64\x48\x28\xfe\xa2\x49\x58\x1e\xa8\ +\x17\x5a\xcc\xb0\x10\xee\xa8\x70\x07\x38\xaa\xb3\x27\x69\x9c\xd6\ +\xa4\xfc\x6c\x07\xfb\xc2\x0c\xb3\xaf\xc3\xcc\x80\xf2\xbb\x25\x3a\ +\xee\x70\xaf\x6e\xa1\x93\x86\xe2\x2f\xa6\xd3\xfd\xd0\x2a\xfe\x5f\ +\x7b\xe7\xd3\x1b\x65\x15\x85\xf1\xe7\xdc\x7b\xdf\x7f\x33\x9d\x99\ +\xce\x30\x2d\xc5\x09\x60\x2d\x22\x5a\x1b\x63\x58\x54\x1b\x28\x2c\ +\x1a\x82\x3b\x76\xb0\xa0\x0b\x6d\xf4\x03\x68\x34\xd1\xf8\x05\x88\ +\x06\x37\xb8\x30\x6e\x4c\xaa\xb1\xa6\x1b\x25\x04\x63\x42\x48\x80\ +\x15\x41\x23\x1b\xe4\x4f\x24\x6c\x68\x53\x9a\xd2\x45\x67\x78\x3b\ +\xef\x7b\xdf\x7b\x1f\x17\xaf\xac\xdd\x32\xc4\xf3\x11\x4e\x72\xcf\ +\xe2\xdc\xe7\xfc\x7e\x7c\xe4\x61\x0e\x11\x76\xb9\x07\x3d\x13\x02\ +\x5b\x84\xbb\x55\x40\x69\x81\x14\x02\x51\xae\xc4\xc2\x28\x5f\xa6\ +\xb8\x02\x01\x72\x22\xfc\xb0\x8a\xe2\x87\x0c\xaa\xa5\xa0\x0f\x27\ +\x28\x6e\x78\x70\xdd\x82\x55\x83\x70\x61\x08\xe8\x59\x98\xb7\xcd\ +\xaf\xf6\x62\xef\xb3\xfc\xdc\x93\x9b\xf8\xbf\xfe\xbb\x86\x67\xca\ +\x9d\xe8\x24\xf7\xb7\x3b\xdb\xed\xb3\x63\x97\x1a\x8f\x3b\xdf\x0d\ +\x71\xf8\xfd\x98\x15\x01\x5b\x27\x42\xd6\x9b\x8a\xb5\x51\xcd\xa8\ +\xa5\xa8\xab\x42\xb5\xdf\x50\xed\xd3\x14\x53\x52\xff\x92\x4f\x2a\ +\x44\x20\xac\xfe\xb6\x83\xc1\x07\x75\xca\xbe\x88\xe1\xc7\x43\xc4\ +\x0e\x43\x73\xb4\x42\x84\x21\xd5\x78\x93\xf1\xb9\xdd\x94\x5d\x75\ +\x22\x19\xa2\x7a\xa9\x4e\x33\xd7\x22\xe2\x2a\xc5\x84\x94\x5a\x44\ +\x19\x0d\x19\x9d\xaa\x51\x20\x8c\xdf\x88\x18\x4c\x47\xd4\xb3\x41\ +\x79\xe2\x9b\x94\xdf\x0b\xe1\x41\xc3\xa0\x02\x9a\x30\x60\xed\xc2\ +\x4e\x9a\xb9\x61\xd6\xd6\xc6\x1f\x27\x4b\x9d\xb3\x78\x8a\xdf\x7d\ +\xf3\xd9\x94\xb4\x3f\xd3\xce\xe0\x17\x2e\xd5\xb0\x3a\xd7\x05\x00\ +\x34\x0f\x98\x23\x18\xc6\xbc\xbd\x51\x9c\xd6\x0e\x91\x59\x88\xa1\ +\x67\x02\x64\x3f\x67\xf0\x1e\x90\xd7\x0d\xb2\x2f\xd3\x72\x44\x27\ +\x02\xbb\x45\xb0\xa1\xa1\x76\x96\x0c\x58\xff\xd0\x21\xf9\xb6\x8e\ +\xec\xeb\x0c\x62\x34\xd4\xcb\x06\xfe\x01\x10\x1c\x53\xe8\x7f\x91\ +\x42\x36\x0a\x98\xe3\x11\x98\x03\xc5\xe5\xbc\x3c\xe4\x74\x84\x68\ +\x80\x29\x10\xbd\xa5\x01\x0d\x14\x7f\x5b\xb8\xf5\x32\x2a\x2e\x0d\ +\x05\xbf\xea\xa0\x9a\x0a\xf4\x84\xe9\x9a\x4c\xef\x31\xdf\xcb\xe7\ +\xc9\x62\xba\xb0\x79\x65\x10\x1e\xdb\x40\x4a\xa3\x5b\xb1\x4c\x57\ +\x3e\x4a\xe6\xb3\x8b\xd9\x49\x37\xa2\xdb\xd9\x1f\x16\xc9\x3b\x21\ +\xf4\x8b\x1a\xfd\xa5\x0c\xac\x29\xa4\x7f\x16\x28\xcc\xbf\x90\x40\ +\x05\xe8\xd9\x18\xc1\x9c\x81\x3d\x4f\xc8\x44\x84\x62\x39\x05\xe0\ +\xa1\xa7\x34\x78\xd7\x42\x65\x84\xb7\x84\x57\x84\x39\x1e\xa1\xb8\ +\x60\x21\x22\x10\x03\x98\xaa\x82\xdb\x2e\xa0\x95\x00\xbb\x05\x8c\ +\x08\x15\x0b\xdc\x9d\x02\x4c\xf5\x86\x6b\xf0\x27\xd5\xd6\x8b\xfe\ +\x5e\x3e\x70\xde\x85\x81\xb7\x86\x57\x80\xb1\xfa\x99\xca\x2c\x96\ +\xb3\xc3\xdc\xc6\xb4\x1f\x53\x13\xfd\xfb\xbe\x65\x53\x20\x8f\x05\ +\x5c\x71\xa5\x99\x73\x42\x21\x78\xb7\x8a\xfc\xab\x14\xc9\x37\x6d\ +\xe4\x3f\xe6\x70\xbf\xf4\x4a\xd6\x7f\x17\x10\xe3\xe0\xbd\x07\x43\ +\x82\x23\x0a\x0a\x51\x19\xd9\x5e\x2b\xd7\xcf\xa6\x23\xf0\xeb\x7e\ +\x53\xf6\xca\xfd\xe8\xd3\xe4\x7a\xff\xbd\xee\xb5\xf0\x40\xe5\x6a\ +\xef\xce\x93\xb5\x41\xee\xdf\xf3\xa8\x8d\x37\xf5\x49\x5d\xc3\x2b\ +\xfa\xd5\xec\x96\x7b\xcd\xa7\x1c\xf7\x0f\xd9\xf1\x60\x27\x3e\x53\ +\x1d\xcd\x96\x6d\xcb\xff\xee\xea\x08\x74\x2c\x8d\x20\x40\x44\xe8\ +\x98\xd6\x58\xf6\xdd\x23\xbb\xc5\xcc\x6d\x52\xcb\xba\x8c\xc4\x2b\ +\xdc\x28\x56\x94\x96\x07\xd2\xc7\x5f\x32\x82\xdb\xcd\xcb\xed\xee\ +\xda\xd4\x6a\xf1\x3c\x35\xeb\x1f\x6d\xf2\x0b\xa1\xbd\xd1\x6f\x68\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\xec\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -2813,6 +1448,650 @@ \xc0\xea\x44\x00\xe8\x00\x68\x11\x00\x3a\x00\x5a\x04\x80\x0e\x80\ \x16\x01\xa0\x03\xa0\x75\x06\xb3\x25\x70\x41\xfb\xde\x5c\xea\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x18\xa8\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\ +\x00\x00\x02\xde\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\ +\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x65\x78\x69\x66\x00\x00\x78\ +\xda\xed\x97\x5b\x92\x1b\x21\x0c\x45\xff\x59\x45\x96\xd0\x92\x10\ +\x12\xcb\xa1\x79\x54\x65\x07\x59\x7e\x2e\x98\xe9\xb1\x3d\x93\xa9\ +\xca\xe3\x23\x1f\x6e\xca\x0d\xad\x16\x17\xd0\x11\xd8\x0e\xfd\xc7\ +\xf7\x11\xbe\xe1\xa2\x2c\x47\x88\x6a\x9e\x72\x4a\x07\xae\x98\x63\ +\xe6\x82\x86\x1f\xb7\xeb\x56\xd3\x11\xd7\x7d\x5d\xf6\xf6\x8e\x1e\ +\xed\xe1\x7a\xc1\x30\x09\x6a\xb9\x3d\xa6\xbe\xfd\x0b\xec\x7a\x27\ +\x14\xb7\xfd\x7c\xb4\x07\xab\x5b\xc7\xb7\xd0\x7e\xf1\x26\x28\x73\ +\x64\x46\x63\xfb\xf9\x16\x12\xbe\xd9\x69\x3f\x87\xbc\xfb\x95\x78\ +\xb7\x9c\xfd\xa9\x7d\x49\x1c\xb4\x45\x9f\x9f\xa3\x21\x18\x4d\x61\ +\x14\x0e\xdc\x05\x76\xdc\xd3\x1c\x45\x30\x03\x71\x29\xa8\x33\xee\ +\x2c\xc4\xd3\x92\xd0\x86\xd7\xb2\xeb\xe7\xb1\x0b\x57\xf3\x29\x78\ +\x57\xeb\x29\x76\x47\xd9\x76\x79\x0c\x45\x38\xd2\x76\x48\x4f\x31\ +\xda\x76\xd2\xcf\x63\xb7\x22\x74\x3f\x23\x7a\x1f\xf9\xe1\x85\xc9\ +\x35\xc4\x87\xd8\x8d\xd1\x7c\x8c\x7e\x5b\x5d\x89\x09\x91\x4a\x61\ +\x2f\xea\x6d\x29\xab\x05\xc7\x13\xa1\x94\xd5\x2d\xa1\x18\x3e\x8a\ +\xb6\xad\x92\x51\x1c\x4b\xac\x20\xd6\x40\xf3\x44\xa9\x81\x32\x31\ +\xe2\x38\x28\x52\xa3\x42\x83\xfa\xaa\x2b\x55\x4c\x31\x72\x67\x43\ +\xcd\x5c\x11\xf7\x69\x73\x31\xce\x5c\x17\x94\x38\x0b\x0d\x36\x80\ +\x69\x01\x8c\x58\x2a\xa8\x09\xcc\x7c\xcd\x85\xd6\xb8\x79\x8d\x57\ +\xc9\x31\x72\x23\x78\x32\x41\x8c\xd0\xe3\x43\x09\x9f\x19\xff\xa4\ +\x5c\x42\x63\xcc\xd4\x25\x3a\xfc\x8a\x15\xe6\xc5\x33\x01\x31\x8d\ +\x49\x6e\xde\xe1\x05\x20\x34\x76\x4c\x75\xc5\x77\x95\x70\x97\x37\ +\xc7\x1d\x58\x01\x41\x5d\x61\x76\x2c\xb0\x1c\xe7\x4d\xe2\x54\x7a\ +\xcf\x2d\x59\x9c\x05\x7e\x7a\xc4\x70\xdc\xb6\x06\x59\xdb\x02\x08\ +\x11\xc6\x56\x4c\x86\x04\x04\x8e\x44\xa2\x94\xe8\x30\x66\x23\x42\ +\x1c\x1d\x7c\x0a\x66\xce\x12\xf9\x04\x01\x52\xe5\x46\x61\x80\x8d\ +\x48\x02\x1c\xe7\x39\x36\xfa\x18\x2d\x5f\x56\xbe\x99\x71\xb4\x00\ +\x84\x62\xa3\x18\xd0\x60\xeb\x00\x56\x8c\x8a\xfc\xb1\xe8\xc8\xa1\ +\xa2\xa2\x31\xa8\x6a\x52\x53\xd7\xac\x25\x49\x8a\x49\x53\x4a\x96\ +\xe6\x19\x55\x4c\x2c\x9a\x5a\x32\x33\xb7\x6c\xc5\xc5\xa3\xab\x27\ +\x37\x77\xcf\x5e\x32\x67\xc1\x11\xa6\x39\x65\x0b\xd9\x73\xce\xa5\ +\x60\xd0\x02\xe9\x82\xde\x05\x1e\xa5\x9c\x7c\xca\x19\x4f\x3d\xd3\ +\x69\xa7\x9f\xf9\x2c\x15\xe9\x53\x63\xd5\x9a\xaa\x55\xaf\xb9\x96\ +\xc6\x4d\x1a\xb6\x7f\x4b\xcd\x42\xf3\x96\x5b\xe9\xd4\x91\x4a\x3d\ +\x76\xed\xa9\x5b\xf7\x9e\x7b\x19\xc8\xb5\x21\x23\x0e\x1d\x69\xd8\ +\xf0\x91\x47\xb9\xa8\x6d\xaa\x8f\xd4\xe8\x89\xdc\xd7\xd4\x68\x53\ +\x9b\xc4\xe2\xf2\xb3\x77\x6a\x30\x9b\xbd\x49\xd0\x3c\x4e\x74\x32\ +\x03\x31\x8e\x04\xe2\x36\x09\x20\xa1\x79\x32\x3b\x9c\x62\xe4\x49\ +\x6e\x32\x3b\x32\x63\x53\x28\x83\x1a\xe9\x84\xd3\x68\x12\x03\xc1\ +\xd8\x89\x75\xd0\xc5\xee\x9d\xdc\x97\xdc\x82\xc6\xdf\xe2\xc6\xbf\ +\x22\x17\x26\xba\x7f\x41\x2e\x4c\x74\x9b\xdc\x47\x6e\x9f\x50\x6b\ +\x65\x7d\xa3\xc8\x02\x34\x77\xe1\x8c\xe9\x21\x03\x07\x1b\x1c\xba\ +\x17\xf6\x32\xbf\x93\xfe\xb8\x0e\x7f\x2b\xf0\x12\x7a\x09\xbd\x84\ +\x5e\x42\x2f\xa1\x97\xd0\x4b\xe8\xff\x11\x1a\xf8\xf1\x80\xbf\x9a\ +\xe1\x27\x99\xb5\x91\xa5\xbc\x2b\xf8\x6d\x00\x00\x00\x06\x62\x4b\ +\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\xbb\x7f\x00\x00\x00\x09\ +\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7\x6f\xa8\ +\x64\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xe2\x09\x15\x16\x0a\x06\ +\xf6\xa8\x47\x88\x00\x00\x15\x4b\x49\x44\x41\x54\x78\xda\xed\x9d\ +\xf9\x77\x14\xd7\x95\xc7\xbf\xbd\x68\x43\xa0\x15\x21\x30\x9b\x00\ +\x1b\x03\x06\x6c\x0c\x18\x2f\xc4\xf1\x42\x4c\xec\xcc\x24\x76\xe2\ +\x9c\xf8\xcc\x3f\x38\x99\xcc\x24\x33\x99\xb1\x27\x01\x07\x63\x07\ +\xdb\xd8\xc1\x80\x17\x56\x63\x56\x0b\x10\x9b\x24\xb4\x2f\xad\xee\ +\xfc\x50\x9f\x7b\xde\x55\x59\x62\xb3\xa4\x2e\xa1\xba\xe7\xd4\x91\ +\x10\xd5\x5d\xaf\xde\xf7\xee\xef\xde\xf7\xa4\x94\x52\x4a\x29\xa5\ +\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\ +\x52\x9a\x0d\x94\x49\xf8\xd8\x32\x92\xb2\x5c\x49\xa3\xa2\xbb\x52\ +\x80\xef\x83\xb2\x92\x16\x48\x6a\x96\xd4\x28\x69\x9e\xa4\x7c\x02\ +\xc7\x59\x90\x34\x28\xa9\x4b\xd2\x2d\x49\x3d\x49\x04\x3b\x69\x00\ +\xe7\x01\x76\xab\xa4\x97\x25\x6d\x92\xd4\x04\xe8\x49\x1a\x6b\x09\ +\x30\xbb\x25\x1d\x93\xb4\x5f\xd2\x21\x49\x37\x01\x3e\x51\x13\x9a\ +\x24\xc9\x5d\x24\xe9\x55\x49\xbf\x92\xb4\x8d\x7f\x57\x25\x54\xd3\ +\x94\x24\x8d\x48\x7a\x5c\xd2\x6a\xc6\xfa\x17\x49\xd7\x24\x8d\x25\ +\x65\x90\xb9\x04\x69\x92\x66\x49\xcf\x4b\xfa\x37\x49\x2f\x4a\x6a\ +\x95\x54\x99\x70\xf3\x56\x81\x39\x69\xe5\x67\xb7\xa4\x0e\x54\x77\ +\x2a\xc1\x6e\xa2\x6a\x24\x6d\x40\x72\x77\x60\x7b\xb3\x48\xc2\x30\ +\x92\x52\x4c\x98\xb6\xa9\x40\xbb\xe4\x25\x35\x60\x56\xba\x25\x5d\ +\x47\x5d\xf7\x23\xe5\x73\x1e\xe0\xac\xa4\x15\x92\x5e\x41\x72\x9b\ +\xf9\xdb\xa8\xa4\x4b\x92\x8e\x27\xd0\xb6\xe5\x18\xe7\x46\x49\xcb\ +\xd1\x34\x0b\x25\x3d\x27\xe9\x22\x20\x9f\x4e\xc2\x98\xf3\x09\x00\ +\xb7\x01\xa9\xfd\x19\xaa\x2e\x8f\xe4\x5e\xc3\xa6\xfd\x87\xa4\xf6\ +\x04\x02\xbc\x54\xd2\xef\x24\xfd\x2b\x0c\x9a\x93\xb4\x84\xf7\x38\ +\x23\xe9\x06\x8c\x59\x9c\xab\x00\x67\x24\x55\x4b\x7a\x12\xc7\x6a\ +\x1d\xff\x2e\x49\xea\x93\x74\x10\x80\xbf\x96\xd4\x9b\x04\x75\x17\ +\x1b\x7b\x27\xa6\xa5\x15\x93\x52\x8f\xca\x5e\x2d\x69\xb7\xa4\xcb\ +\x92\x3e\xc6\x1e\x97\xca\xc9\x89\x93\xbd\x40\xd6\x25\x1b\xa6\xfa\ +\x32\x1b\xb6\x42\xd2\x9b\x92\x5e\x67\xa2\x72\xd8\xdc\x53\x92\xfe\ +\x44\xf8\xd1\x95\x30\x70\x7d\x1c\xdc\x87\x7a\x7e\x04\x2f\xba\x82\ +\xab\x1e\xa6\x6c\x27\x3e\x2e\x4d\xe3\x5c\x66\xee\x55\x82\x6d\xe2\ +\x73\x0c\xba\x9a\xc1\x66\xa6\x49\x02\x1a\xb0\xbb\x2f\x4b\x5a\xe6\ +\x54\xf3\x4d\x49\x1f\x48\xfa\x24\x09\x2a\xee\x2e\x99\xac\x2e\xa4\ +\x74\x25\x2a\xdb\xde\x63\x31\x5a\xe9\x06\xf7\x76\x4f\xd3\x7b\x94\ +\xf0\x55\x86\x70\x44\xc7\x78\x4e\x29\x0e\xb0\xa9\xcb\x65\x92\xd6\ +\x22\x59\x8d\x00\x9d\x9d\x26\x80\xeb\xf0\x3c\x37\xf0\x9c\x12\xdc\ +\x7e\x48\xd2\x3e\x49\xe7\x93\x14\x4f\xde\x41\x8a\x2f\x48\xfa\x48\ +\xd2\xa3\x48\x6e\x03\xef\xb3\x5e\xd2\x6f\x24\xb5\x39\x29\x9e\x0e\ +\x26\x1b\x81\x81\x2e\xe1\xd8\x5d\xf6\x66\x21\x0f\x80\x75\x92\x9e\ +\x90\xf4\x92\xa4\x9f\x00\x72\xdd\x34\xc6\xc9\xa6\x5a\xaa\xd0\x12\ +\x62\x50\xa7\x24\xbd\x47\x76\x68\x20\xa1\xaa\x39\x2e\x41\xc3\xf8\ +\x09\x7f\x41\x8a\xb7\x48\xaa\x95\x34\x9f\x64\xcd\x26\xee\x2b\x4d\ +\xa3\x26\xe9\x91\xf4\x2d\xda\xe4\x43\x22\x8f\x6e\x49\xc5\x3c\x83\ +\xd9\x22\xe9\x1d\x54\xe6\x62\x9c\x87\xdc\x0c\x4f\xd2\x19\x49\x7f\ +\x95\x74\x80\x30\xa3\xa8\xd9\x41\x45\x45\xb9\xe8\x83\xf8\x11\xb5\ +\x38\x8c\x35\x30\x70\xd5\x0c\x8c\xa1\x5e\x52\x0b\x5a\x64\x05\x91\ +\xc7\xe7\x92\xfa\x72\xa8\xc8\x77\x24\xfd\x82\x98\xae\x06\xe9\x2a\ +\xa2\x22\x0b\xfc\x9c\x8e\x6b\x14\x67\xe4\x3b\x24\xe0\x8f\x92\xce\ +\xa1\x76\xa6\x52\x5b\xe4\xdc\x35\x1d\x79\xed\x22\x89\x8d\x4e\x9e\ +\xd1\xc0\x3c\xca\xcd\xe3\x54\x5f\x7e\x25\x2b\x8b\x59\xb0\xac\xda\ +\x18\xf1\x78\x57\x9e\xb8\x6d\x07\x9e\x60\x05\xff\x39\xc8\x60\x7b\ +\x00\x61\xba\x38\xbf\x1f\x1b\xf6\x19\x4e\xd5\x19\x1c\x86\x07\x8d\ +\xa9\x73\x98\x1d\x0f\xa8\x39\x8c\x55\x2e\x3b\x36\xe2\x32\x64\x9e\ +\x81\x0b\x6e\xf2\xee\x97\x86\x60\xd4\xff\x92\x74\x45\xd2\xb3\x84\ +\x4c\xf3\x35\x7d\xcb\x9d\x96\x2a\x6d\x52\x58\x75\x5b\xac\x28\xe5\ +\x7b\x5a\x52\x7b\x5e\xd2\x2e\xc4\xba\x02\x75\x79\x13\x75\x73\x90\ +\xbc\x6a\x61\x1a\x55\xf3\x10\xea\xf8\x02\x3f\x47\x1f\x00\xd4\x2c\ +\x2f\x56\x07\xf7\x2e\x23\xe1\x60\xcb\x8d\xf3\x9d\xad\xcf\x38\xcf\ +\x73\x18\x06\xeb\xe2\x9d\x3b\x70\x50\xae\xc2\xd8\x05\xdd\xff\x7a\ +\xef\x20\x13\xdb\x29\xe9\x1b\xc6\x53\xa3\xe9\x5b\x2c\xc9\x13\x9e\ +\x3d\x23\xe9\xa7\xa8\xe9\x3c\x8c\xb5\x45\xd2\xde\x3c\xce\x55\x03\ +\x83\x18\x63\xb2\xff\x93\x50\xa5\x6b\x06\xec\xef\x83\x2c\x9c\x5b\ +\xa2\xbf\x81\x10\x65\x15\xde\xea\x8a\x18\xc0\xa6\x2a\xe3\x6a\xd9\ +\x9e\x3b\x28\xe9\x36\x36\xf4\x2a\x71\xeb\x25\xe6\xe0\x3c\xbf\x77\ +\x21\xe9\xf7\xea\x24\x8d\xc2\x2c\xd7\x35\xfd\xcb\x9c\x19\xec\xef\ +\x25\xcc\xab\x25\x5b\xea\x98\x83\x85\x79\x72\xa8\x16\x2e\x8d\xf1\ +\xa2\x5f\x12\xc3\x25\x2d\x4c\xb1\x70\xae\x05\x2e\x5d\x27\xe9\x29\ +\xb2\x61\x2b\x90\xd6\x0a\x67\x6b\x73\x77\x99\xe0\x1a\x98\x60\x19\ +\x79\xe5\x51\xa4\xfa\x22\x12\xf8\x95\xa4\x13\x80\x7d\xfd\x3e\xb2\ +\x52\x33\x59\xe9\x31\x82\x07\x7d\x99\xd0\xcc\x42\xdb\x79\x92\x9a\ +\xf3\xfc\x21\xe3\x00\x1e\x24\x44\x19\x4b\x18\xb0\x15\x48\xe5\xa3\ +\xa8\xa4\x9d\x68\x9f\x66\x5e\x66\xa2\x98\xbd\xe4\x6c\x6b\xd1\x65\ +\x94\xb2\x2e\x44\xcc\xb9\x88\xa1\x06\x26\x69\x24\x54\x7c\x19\x80\ +\x3f\x96\xf4\x0f\x7c\x84\x5b\xf7\x29\xd1\x33\x11\x85\x8c\x80\x5b\ +\x21\xe6\x58\xd6\xe4\x27\xe0\xf0\x92\x92\x15\x7f\xe6\x08\x3d\x56\ +\x28\x5a\x6d\x7a\x15\x69\x5b\x84\x83\x91\x8b\xbd\xe8\xb0\x73\xa0\ +\x46\x90\xc8\x01\xfe\x56\x00\xd8\x4a\x80\x34\xc6\xa8\x74\x21\x4d\ +\x1e\x2d\x51\xed\xc2\x8f\xf5\x38\x2e\xfb\x24\xfd\x1d\x09\xef\x4b\ +\x90\x10\x94\xe2\x19\x2c\x63\xe4\xfc\x14\x4a\x58\xd6\xfd\x5e\x72\ +\x0f\xfd\xb1\x5e\xe2\x42\x49\x4f\x93\xaf\x36\xcf\xb4\x9e\xe7\x95\ +\x00\x6d\x04\x10\xaf\x12\x66\x9d\xc7\x9e\x5e\xc7\x61\x1a\x72\xde\ +\xb1\x49\x6d\x35\xb6\xaa\x05\x15\xbd\x8a\xef\x5e\x0c\xf8\x95\xdc\ +\x57\x0f\x23\xb5\x60\xef\x37\x10\xaf\x1f\xc2\x8c\x25\xaa\x44\xe7\ +\x4e\xb9\xe8\x07\x0d\x4d\xf2\xa8\xb6\x3a\x85\x0a\x8c\x31\x26\xbc\ +\x57\x61\xb1\xbe\xf4\x00\x2a\xb9\x8d\xec\xda\xcf\x51\xcb\x8b\x62\ +\xfe\xc2\x20\x21\xc9\x09\xb2\x37\x67\x01\xf6\x1a\xaa\xf4\x36\x92\ +\x5b\x9c\x64\xec\xe6\x90\x34\xe3\xf1\x2e\xc5\x04\x6c\xe0\x5a\xe6\ +\x9c\xb4\x7a\xb2\x52\xad\x84\x94\x4b\x71\x44\x2f\x24\x4c\x65\x4f\ +\x19\xc0\x59\xa4\x6b\x3d\xb6\x70\x31\x52\x61\x93\x7f\x9b\x09\xff\ +\x4a\xd2\xf7\xba\xf7\x32\x16\x4b\x61\xae\x45\x6a\x7f\x21\x69\x33\ +\x52\x94\x05\xac\x01\x80\xfc\x4a\xd2\x51\x7e\x9e\x42\xa2\x3c\x43\ +\x79\x73\x93\x99\xc4\x36\x0f\xc0\x10\xa7\x60\xd0\x16\x45\x75\x56\ +\x9b\xd1\x1c\x9b\x90\xdc\x5a\x17\x67\xbe\xc4\x7d\x8d\x92\xfe\x9f\ +\xd0\x68\x28\x89\x20\xe7\x7f\x04\xb8\x8d\xa8\xcc\xb7\x15\x55\x32\ +\x34\xc7\xec\xe1\x20\x4e\xc9\x7b\x92\xfe\x97\x24\xc0\xbd\xc4\xb9\ +\xd5\x30\xcd\xaf\x14\x2d\xa6\xaf\xc5\x56\x66\x5c\x08\x72\x1c\xc7\ +\xe7\xef\x78\x90\x3d\x93\x68\x0a\xd3\x04\x66\x5b\x33\x31\xb5\x3e\ +\xea\x4c\x89\x01\xfe\x3d\x80\x7f\x29\xe9\x53\x72\xf3\x3b\x01\xbc\ +\x95\xef\xab\xc3\x73\x5f\x00\xf0\xff\x8d\x16\x19\x4c\x1a\xc8\x0f\ +\x0a\x70\x05\x2a\xec\x97\x92\x5e\x03\xdc\xf8\x77\x2d\xe0\xaa\x41\ +\x5d\x76\xdd\x43\x8e\xb9\x1a\xe9\xf9\xad\xa4\x7f\x91\xb4\x46\xa1\ +\x08\x60\x00\xe7\xe6\x43\x6c\xe0\x51\x12\x0a\x43\xee\x3b\xf3\x30\ +\xc3\x02\xe7\x44\xd5\x71\x59\x7e\xdd\x54\x7b\x0f\x26\xa4\x1f\x87\ +\xa9\x97\x67\x58\xbd\xf3\x30\xf7\x5c\x54\xb4\x98\xf0\x3a\x92\xdb\ +\xc6\xf7\xce\x93\xf4\x98\xa4\x5f\xf3\xdc\xdf\xa3\x05\x12\x25\xc9\ +\x0f\x0a\x70\xb5\xa2\x95\x92\x9d\x93\x80\x2b\x17\x8b\xad\x46\x0a\ +\x4e\xea\xce\xeb\xbb\x95\x38\x3a\x6f\x4a\x7a\x03\x5b\x58\xc5\x64\ +\xf5\x22\xb5\x7f\xc6\xee\x7d\xa7\x50\x68\x6e\x2a\x7d\xbe\x8b\x8f\ +\x9f\x60\xf2\x97\xa3\x69\xaa\x5d\x4c\x6c\xea\x79\x18\xa6\xfb\x1e\ +\x4d\x73\x82\xef\xbd\x01\xe8\xc3\xce\xc6\xf7\xe2\xc0\x5d\x82\xa9\ +\x37\xc2\x34\x55\x8c\xf9\x0d\x34\xc2\xbf\x63\x96\x86\x67\x33\xc0\ +\x96\x6c\x58\x4e\xb6\x24\x77\x97\x7b\x6b\x98\x84\xd6\x3b\xe4\x64\ +\x73\x38\x34\xbb\x27\x00\xf7\xb6\xa4\xc3\x64\xd7\xf6\x03\xc8\xb0\ +\x1b\xff\x02\x24\x7d\x1b\xd7\x1a\x9e\xd5\xe4\x40\xc8\x4c\x12\x5a\ +\x98\x94\x76\xa1\x96\xcf\xf2\xac\x43\x80\xdd\x87\x44\xf7\xc0\x00\ +\x76\xef\xdb\x3c\xcb\xd6\xcc\xd7\x20\xe1\x7d\x8c\xf3\x62\x52\x42\ +\xa8\x07\x95\xe0\xfb\xed\x19\xba\x53\xca\x2e\x0b\x18\xcf\x22\x1d\ +\xb6\xd4\x66\xe0\x1e\x42\x32\xf6\xb9\xdc\xb8\x31\xd9\x0a\xe2\xd3\ +\xe7\xb1\x89\x6d\x64\xa6\x7c\xb9\xd1\x44\xb1\xbd\x8d\xbf\xc6\x65\ +\xc6\xd6\x20\x99\x4f\x2a\x2a\x44\xb0\x7c\xfc\x05\x17\x47\x5f\xc0\ +\x3c\xd8\x22\xc5\x0e\xc6\x6e\xa6\xe5\x75\x24\xde\x1c\xb7\x59\x59\ +\x36\x6b\x9c\xdf\x81\x3a\xab\xbe\xcb\xf7\x8c\x20\x75\x37\x27\x78\ +\x61\x53\xaf\x9b\x90\xdc\xcd\xa8\x5a\xa1\x26\x8f\x48\xfa\x83\xa4\ +\xbd\xd8\xef\x82\x63\x88\x4d\x0a\x25\x3f\xeb\x08\x63\x72\x13\xc4\ +\xe1\x05\xa7\x6e\x0b\xb1\x44\x46\xde\x31\x42\x05\xdf\x5b\x8f\xc6\ +\xd9\x80\xba\xdf\x87\x97\xde\xe9\x52\xb9\x7f\xe3\x33\x95\x84\x6f\ +\x75\x38\x5b\x1b\xf1\x1d\xae\x3a\x9b\x5e\x9a\x8d\x12\x3c\x84\x97\ +\x79\x88\x97\x6b\x9c\x44\x9a\x87\x01\xf7\x1f\x70\xff\xd8\x04\xaa\ +\x79\x39\xce\xcb\x4e\x26\x37\xc3\xf7\x9f\xc0\xe6\x7a\x70\x73\xc4\ +\xc2\x26\xed\x2f\x11\xb6\x54\xba\xc4\xc7\x10\x60\xdc\xe4\xea\x72\ +\x0e\xd5\x08\x0c\x55\xeb\xc6\xbd\x10\x09\x6e\xd2\xf8\x42\xf6\x2d\ +\x98\xa0\xa5\x44\x01\x07\x15\xda\x52\xae\x01\xbc\x39\x73\x4f\xc1\ +\x30\x0d\x8c\xed\x0c\xb9\xe1\x6f\xcb\xad\xaa\x1f\x14\xe0\x61\xbc\ +\xd8\x16\x1c\xa9\x0d\x4c\x58\x85\x4b\xb6\x0f\xa1\xae\x3e\x52\x54\ +\xa5\xd1\x11\x73\xb0\x32\x4c\xce\x0e\x9c\x30\x4b\x62\x14\x98\x9c\ +\x3d\x92\xde\x67\x32\x3d\xb8\x2f\xe1\x65\x3f\xef\x1c\x3c\x0b\xcb\ +\x6e\x91\xc5\x3a\xc6\x75\x12\x69\x1a\x98\x20\x93\x55\x03\x80\xeb\ +\xd0\x06\x1b\x51\xf1\x0b\x15\xaa\x31\x96\xe2\x17\x58\x97\xe3\xbe\ +\x18\xc8\x7b\xb8\xbf\x19\x69\xcf\x33\x27\xaf\x00\x6e\x87\xa2\xd2\ +\x99\xd2\x6c\x03\xd8\xca\x54\x0c\x80\x67\xb1\x61\x96\x1b\x1e\xe2\ +\xe5\xbe\x41\x7a\x27\xf2\x2c\x2b\x9c\x0d\xdd\xe8\x9c\xaa\x6e\xe2\ +\xdb\x0f\xf0\x5a\x47\x01\xa5\x59\xd1\x9a\xe7\xef\x24\xbd\xa0\xd0\ +\x75\x38\xc6\x67\xac\x26\xe9\x00\x0e\x52\x27\x52\x3b\x3c\x89\x14\ +\x65\xd1\x2e\x27\x61\xc2\xd5\x68\x91\x17\xb1\xa7\xf5\x0e\xb0\xe7\ +\x9d\x86\xda\xc3\xbb\x17\x48\xb6\xec\x25\xb3\x65\xeb\xcf\x55\x78\ +\xf0\xcf\x13\x36\x7d\xa9\xa9\xad\x50\x99\xb1\x4c\x56\x01\x70\x0f\ +\x92\xff\xb5\x6a\x42\x5b\x57\xee\x43\x45\x76\x4e\xf0\x82\x26\xbd\ +\xdb\x51\x6f\x96\x5b\x1e\x04\x9c\x7d\x48\xa0\x65\xbf\xea\xf1\x5a\ +\xdf\x62\xe2\x9a\x5c\xe2\xe3\x1a\xb1\xf1\x5e\x3c\xe0\x76\x9e\x5d\ +\xbc\x07\x26\x1d\xe0\xba\xc1\xe7\xce\xc3\x94\xbb\x9d\xfa\xaf\x00\ +\xb8\x1d\x30\x6e\x1f\xcf\xeb\x86\x79\x8c\x41\x1e\x67\x8c\x16\x7b\ +\x6f\x07\xdc\x33\x2e\xa1\x32\xeb\x72\xd1\x16\xa3\xf6\xdd\x21\x14\ +\x29\x4d\xf2\xdc\x56\x26\x6d\x8d\x53\xb3\xb7\x90\xde\xa3\x4e\xb5\ +\x55\x13\x36\xfd\xd2\xa9\xe5\x2c\x93\x7b\x11\x89\x7a\xd7\x25\x3e\ +\x8a\x0f\x30\x99\x45\xde\xe3\x34\x0c\x73\x0d\xdb\xbd\x1b\xb5\x5d\ +\x0d\x53\x3d\xc7\xb8\xae\x92\xfc\x18\xc0\xbe\x7f\x01\xc0\x96\x98\ +\xb1\x3c\xfa\x16\xb2\x61\xfd\xe5\x92\xe2\xa9\x5a\x4d\xba\xdf\x25\ +\x46\xab\x3c\x5c\x87\x74\x64\x90\xd6\x73\xa8\xd8\x76\x67\x2f\x97\ +\xe0\x29\xbf\x88\x44\x65\x5d\x4a\xf1\x3d\x45\x35\x50\xc7\xee\x51\ +\x6a\xef\x46\x63\x00\xfb\x39\xdf\x37\x82\xd6\x58\x09\x68\xad\x98\ +\x87\x0b\x30\xc1\x45\x9e\x69\x8e\xe4\x4e\x34\x59\x2d\xe6\x6a\x3d\ +\x91\xc1\xa5\x72\x01\x5c\x8e\xbd\x2f\xac\xab\x61\x2b\x4e\x4c\xce\ +\x49\xef\x51\x6c\x69\x9f\x63\x84\x8d\x8a\x0a\x03\xad\x6b\xa0\xc8\ +\xe4\xee\x57\x54\x85\xf9\x0d\xd2\x37\x55\x15\x14\x56\x0c\x78\x4c\ +\x51\xfb\xcc\x07\x3c\xcf\x18\xce\x3a\x21\x37\x01\xa2\x45\x15\x67\ +\x30\x57\x9d\x2e\x42\x68\x73\x39\xeb\xcc\x5c\x01\x38\x87\xe7\xb9\ +\x19\x07\xc6\x26\xb5\x1d\xc9\xb9\xe9\x26\x73\x19\x0e\xdc\x7a\xc0\ +\xb6\xc6\xb4\x43\x84\x50\xc7\x35\x3d\x7d\xb8\x96\xfb\x3e\x09\xc8\ +\x87\x50\xc5\x72\x26\xe3\x45\xc6\x67\x71\xf7\x55\xee\xf3\xc9\x98\ +\x16\x16\x4b\x2c\x94\x7b\xe8\x01\xce\x28\x54\x67\x2c\xc3\x21\x11\ +\xea\xd9\x7a\x81\x7b\x5d\x6e\x7a\x1d\x00\x37\x3a\xd5\x7c\x0e\xa7\ +\xe6\xc8\x14\x4b\xee\x64\xfe\xc5\xd7\x48\xf1\x19\x97\x68\xb1\x5e\ +\xe0\x47\x15\x96\x48\xfb\x71\xd2\xbe\x73\xcc\x50\x09\xb8\x8f\xf1\ +\xde\x73\x42\x82\xeb\x15\xaa\x32\x4c\x3d\xdf\x64\x62\x6e\xba\x49\ +\x6c\x04\xe0\xb5\x2e\x84\xea\xc7\xa1\xf9\x14\x95\x3e\xdd\x49\x84\ +\x22\x2a\xf7\x63\x3c\xe2\x5e\xe7\xf8\xad\x60\x51\xa3\xd5\x45\x0e\ +\x9d\x24\x68\x6e\x39\x86\x6e\xe2\x1d\xe6\xcf\x15\x09\x6e\x00\xe0\ +\x5a\x37\x89\x1d\x00\x6c\xeb\xa9\x79\x1c\x9b\xc7\xb9\x3f\x47\xa8\ +\xd1\x4e\x28\x74\x56\x33\x57\x2a\x33\x82\x33\x75\x04\x09\x1d\xe5\ +\x3d\x16\x60\x87\xad\xf9\x5b\x98\x8f\xd3\x00\x6c\x66\xc3\xbf\x6f\ +\x66\x2e\x48\x70\x9d\x42\x29\x8c\x01\x7c\x9d\x49\x1c\x76\x49\x90\ +\x55\x5c\x15\xce\x91\x39\x85\x13\x36\x9d\xaa\x79\x32\x7b\x7c\x9c\ +\xe7\x8f\x3a\x5b\xbc\xd6\x39\x8a\xe2\xbe\x0b\x2e\x6f\x6d\x8c\xf0\ +\x08\x12\x9c\x99\x0b\x12\x5c\xab\xb0\x3d\x92\xcf\x8a\x5d\x71\x93\ +\x97\x67\xe2\x96\xba\x50\xce\x00\x6e\x2f\x43\x7e\xd7\xda\x44\xcf\ +\x2a\x2c\x20\x54\x10\xc2\x59\xa9\x52\x06\x69\xb7\xe4\xce\xb0\xbb\ +\xaf\x21\x96\xca\x7d\x68\x01\xb6\x12\xd8\x46\x85\x56\x19\x5b\x6f\ +\xed\x76\xde\x67\x25\x4c\x60\x49\x0d\x93\xa2\x73\x2e\x64\x99\x49\ +\x32\xfb\xda\xee\xa4\xd3\x96\x1b\x5b\x9c\x13\x68\xa5\xbb\xb7\x50\ +\xd7\x56\x87\x5d\xc5\xbb\xd4\xcc\xb4\x14\x67\x67\x58\x7a\x2b\x00\ +\xb8\xca\x4d\xc8\xa0\x42\xce\xb8\xa4\xb0\x95\xa1\xb5\x61\x98\x03\ +\xd3\xcb\xc4\x95\x6b\x09\x6e\x54\x61\xdb\xc2\x82\x63\xd8\x06\x97\ +\x6a\x35\x69\xef\xc6\x21\xf4\xef\x5d\xa7\x99\x69\x25\x2d\xab\x04\ +\x57\x38\x70\xcd\xbe\x0d\x69\x7c\x5d\x95\x49\x79\x75\x6c\xd2\x7a\ +\x61\x86\x72\xf5\x0d\x9b\x17\x7f\xdb\x01\x9c\xc5\xb6\xfa\x0e\x42\ +\xeb\x79\xf2\xa5\xb4\xb6\x7a\x95\x7f\xd8\x01\xce\xeb\x87\xfb\x7e\ +\x8c\xc4\x26\x23\xde\xf9\x6f\x00\xf7\xa9\xfc\xf5\xc7\xd6\x91\x58\ +\x8c\x8d\xd5\xb7\xff\x98\x9a\x1e\x8d\xcd\x73\x95\xca\xb0\xb3\x60\ +\x39\x9c\xac\x78\x29\xcd\x9d\xee\x8b\x4b\x50\xb9\x69\xb2\x9c\x7b\ +\x12\xc7\x5a\x16\x80\xad\xf6\xb8\x14\xb3\x4f\xf9\x18\xe8\xa3\xb1\ +\x38\x37\xa7\xd0\xe0\x5c\xce\x8d\x49\x2b\x15\x3a\x1d\xbc\xb4\xc6\ +\x35\x50\x3e\x26\xad\x45\xde\xa9\xf8\xb0\x03\x6c\x8d\xd7\x71\x15\ +\x57\xed\x80\xb3\x75\xda\x61\x37\x69\x56\x3d\x59\x5d\x46\x80\x33\ +\x0a\x6b\xbd\xb9\x58\x8c\x3c\x10\x03\xb8\x46\xe3\x73\xcf\x56\xe1\ +\x52\x78\x98\x01\x36\x6e\x1f\x50\x58\x00\xb7\xc9\x98\xef\x6c\xf3\ +\x18\x61\x53\x8f\xbb\x2f\x37\x81\x67\x3d\xd3\x94\x53\xa8\xe3\xca\ +\x39\x8d\x74\x5b\xe3\x37\x03\xcf\x33\x4e\xeb\xc6\x28\xc5\x7c\x88\ +\x87\x5e\x45\x9b\x27\x3a\x1a\x0b\x21\x7c\x6e\x7a\x88\x70\xc4\x36\ +\x10\xb3\x22\xfa\x95\x8a\x12\xfd\x99\x32\xcc\x53\x1d\x19\x29\xdb\ +\x26\xc1\xc7\xbc\x5d\x0a\x45\xf8\x56\x9d\xe9\x33\x57\xc3\xdc\x37\ +\xe3\x5d\x0f\x33\x0d\xb0\xad\xb5\xde\x74\xdc\x9c\x43\x2a\x5a\x9d\ +\xe7\x5c\x20\xb3\x75\xd5\x65\xad\x6a\x14\xe5\xa6\x97\x95\xc1\x1b\ +\xcd\x2b\xb4\x98\xd6\x2a\xac\x6c\xdd\x20\xf1\x32\xc0\xbb\x99\xf4\ +\x36\xb9\xa4\x86\x85\x78\x56\xe2\xf3\x50\x4b\xb0\x78\x59\xdb\x8d\ +\xcd\x6c\xd6\x42\x85\x6d\x79\x0d\xe0\x0b\x5c\x3e\xf7\xbb\x5e\x51\ +\xe2\x7e\xa6\x6d\x71\x95\xa2\x95\xad\xc7\xdd\x18\x6d\x57\x9d\xcb\ +\x6e\x8c\x35\xbc\x47\x93\xd3\x46\xfd\x30\xc1\x54\x54\x9c\x24\x1e\ +\x60\xeb\x56\x38\x0f\xd7\xdb\x18\x16\x2b\xaa\x67\xaa\x72\xce\xd8\ +\x79\x45\x6b\xb0\x16\x77\x56\x2a\x54\x48\x2c\x9f\xc1\xa4\x41\x05\ +\xe3\xdb\xa2\x68\xfd\xb7\x42\xe3\x17\x20\x2e\x39\xe0\xe6\x2b\x5a\ +\x80\x68\x72\x0c\x68\xef\x5b\x96\x0d\xc2\xcb\x21\xc1\x5d\x8a\x92\ +\xf6\x3d\xce\xbe\x2e\x62\xf2\xcc\x81\xb1\x15\xa6\x53\x1a\x5f\x3a\ +\x5b\xa7\xa8\x93\xe0\x19\xcd\x4c\x19\x8c\xad\x06\x6d\x57\xd4\x2b\ +\xec\x37\x2b\xef\x50\x54\xd6\x73\xd5\xbd\x47\x3d\x5a\x66\xa1\x73\ +\xb0\x3a\x61\xd4\xbe\xb9\x10\x07\x5b\xc9\xcd\x45\xd4\xd6\xb0\xe3\ +\xfc\x36\x85\xca\x07\x6b\x8f\x39\xa9\xa8\x98\xed\x36\x7f\xab\x54\ +\x54\x64\x6f\xfb\x69\x4e\x77\xf2\xbe\x1a\xcd\xf2\x2a\xcf\x35\xe9\ +\xed\x56\xb4\x2e\xfd\xad\x93\x4c\xdb\xcc\x75\x9d\xc2\xb6\x54\x05\ +\x18\xd5\x34\x91\xe6\x82\x04\x8f\xf2\xd2\x27\x14\x0a\xd4\xcc\x89\ +\xd9\xe6\xd4\xdb\x18\xaa\xed\x53\x85\xb5\x62\x93\x92\x9d\x8a\x9a\ +\xc3\xdb\x62\x69\xc2\xa9\x4e\x6a\xb4\xf1\x1c\xab\xc5\xf6\x47\x0d\ +\x7c\xa8\xd0\x45\x68\xf5\x57\x4f\xe1\x69\x57\x2a\x1c\xbb\x73\x4e\ +\xd1\x2a\xd4\xd0\x5c\x01\xb8\x84\x9a\x3e\xe2\xd4\x9b\xf0\xa2\xb7\ +\x2b\xd4\x21\x9b\xbd\xfe\x92\xc9\xb4\xe6\xf1\x9c\xa2\x2a\x8a\x9f\ +\x2b\x6a\xf4\x9a\x6a\x90\x33\x0e\xdc\x37\xb8\x56\x2a\x54\x74\x76\ +\x28\xda\x76\xd1\xd7\x6e\x5b\x81\xc2\x0b\x4e\x3d\x5b\x39\xed\x31\ +\x4d\xdf\x7e\xd1\x89\x04\xd8\x3c\xe9\x63\x0a\x3d\xb8\x42\x35\xaf\ +\x55\x54\x0c\x6f\xbd\xc4\x45\xa4\xe5\x7d\x45\x15\x8b\x5d\xce\xab\ +\x5d\xab\xa8\xbb\xfe\xd7\xa8\xcf\xda\x29\x78\x1f\x5b\xe3\x5d\xcf\ +\xf7\xfe\x86\xe7\x54\x3b\x87\xe9\xb0\xa2\x62\xfb\xef\x9d\x6f\xd0\ +\x8a\x13\xf6\x04\xe6\xc6\x62\xf9\xd3\x30\x42\x7f\x99\xe6\xb9\x6c\ +\x67\x36\x8c\x28\xd4\x57\x3d\x01\x40\xbe\xb9\xec\xb8\xc2\xa2\x79\ +\xbf\xa2\xda\xe7\x77\x51\x93\xdb\x98\xc4\x5a\x45\x35\x51\xb5\xd8\ +\xbc\xbf\xa1\xf6\x6f\xe8\xfe\x5b\x45\x2c\x7f\xdc\x82\x0d\x7d\x0d\ +\x0d\xf1\xa8\x42\xe5\x67\xbf\xc2\xbe\xd0\x56\xd1\x69\x99\xb8\xcd\ +\x8c\x7b\x11\xef\x61\x0d\x74\x5f\xe1\x50\x8e\xcc\x35\x80\x6d\x77\ +\xf7\xcf\xe0\xfc\x95\x0a\xad\x98\x9b\x14\xd5\x1c\x5b\x63\x98\x95\ +\xc1\x7c\xa8\xd0\x6c\x6d\xc0\xd6\xe0\x98\xbd\x83\x33\xb4\x4f\x51\ +\xd5\xe5\x15\xa4\x6d\x50\x77\x2e\xef\xb1\xfd\xb2\xea\xb1\x9d\x5b\ +\x71\xa8\xb6\x13\x1a\x59\xd8\x66\x35\xd2\xef\xc2\x48\xb7\xd0\x2e\ +\x15\x8c\xfd\x27\x7c\xb6\xd6\x85\x50\x47\x61\xe0\xb2\x9e\x69\x58\ +\xce\x53\x57\x86\x51\x61\x9f\x29\x6c\xc5\x64\xe7\x0f\xfd\x0c\x09\ +\xb7\x4d\x42\x2d\xb3\xf5\x7f\x4e\x0d\x9b\x3a\xb4\x36\x4f\x8b\x41\ +\x8f\xe3\x79\x1f\x43\xbd\xf7\x2a\x6c\x13\x6c\xf9\x6f\xdb\x76\x78\ +\x01\xce\xdd\x26\x40\xdd\xc8\xbf\xeb\x9c\xcd\xed\x23\x5c\xfb\x23\ +\x00\x5f\x56\x68\x67\x6d\x81\x21\x5e\x61\xdc\x39\x85\x86\xf7\x4f\ +\x19\xc3\x48\x19\xe7\xb8\xac\x00\x17\x91\xb2\x4f\x14\xaa\x13\x17\ +\x2a\xec\x79\xf1\x06\x92\xbb\x47\x61\xc7\xd7\x8b\x8a\x3a\x1a\x06\ +\x14\x6d\xb3\xb4\x55\x21\x87\x6d\x7b\x72\x3c\x02\x60\xd7\x60\x8a\ +\x0e\x3e\xdf\x07\x53\xd9\x1e\xcb\x8d\x48\xe9\x52\x6c\xe8\x62\x85\ +\xc2\x38\x5b\x20\xe8\x46\xcd\xfe\x0f\x7e\xc0\x05\x67\x77\x1b\x70\ +\xaa\x76\x33\xfe\x4a\x17\x42\x1d\x80\xc9\xba\x34\x87\xcf\x4d\xb2\ +\x90\xe9\x2c\xea\xf7\x51\x26\xcc\xec\xeb\xd3\x30\x40\x2f\x13\x76\ +\x1b\x90\xcf\x2b\x6a\x3a\xeb\x02\xc0\x17\x00\xa9\xda\x01\xdd\x48\ +\x5a\xd1\xba\xff\xfa\x51\xd7\xa3\x0a\x3b\xf3\xcd\x07\xd0\x79\x1a\ +\xbf\x87\x48\x11\x46\xb8\x8c\x14\xee\x81\x09\xaf\x28\x2c\xf7\x59\ +\x27\xff\x5b\x30\x99\xf5\x28\xf5\xe1\x2f\xec\x23\x46\x1e\x2d\xf3\ +\xfc\x96\x1d\x60\x4b\x7c\x7c\xe1\x24\x69\xbd\x42\xbb\xe6\x0b\x0a\ +\x9b\x88\x7e\xae\x50\x79\x69\x8d\xd7\x97\x89\x33\x9f\x55\xe8\x32\ +\xa8\x74\x4e\xd3\x02\xe7\xd5\x4a\xe3\xd7\x6c\xfd\x65\x95\x1a\xd6\ +\x6f\x7c\x02\xd3\x71\x00\x09\xee\x76\xf1\x6e\x23\x99\xb4\xb7\xb1\ +\xbd\x2d\x0a\xed\xac\xe7\x14\xed\x7c\x77\xd8\x25\x67\xe6\x34\xc0\ +\x62\xe2\xae\x20\xc5\x4b\x91\x5e\x8b\x6d\x5b\xf1\x4e\x2d\x27\x6c\ +\xcd\x69\xd6\xe6\x79\x08\x89\xfe\x5a\x61\xa7\x80\xe5\x78\xb3\xf5\ +\x0e\xec\xec\x24\xcc\x25\xc2\x99\xdb\x0a\x4d\xe0\xdf\x20\xb9\x47\ +\xf9\xdb\x90\x8b\xbf\x17\x02\xee\x5b\xd8\xde\x25\xce\x6b\x6e\x47\ +\x72\xdf\x87\xf1\x12\x71\xa8\x48\x52\xce\x0f\x36\x55\xfd\x67\x80\ +\xd9\xad\xd0\x2e\xba\x44\xd1\xb1\x03\xa6\x52\x3f\xc1\xae\x0e\x29\ +\x6c\x54\xd6\x4d\x42\x64\x15\x21\xcb\x26\x7e\xb7\x5a\x64\xdb\x24\ +\xdc\x6f\x84\x36\xaa\x70\x36\xc5\x39\x1c\xa2\xaf\xb0\xb3\xb7\x14\ +\x76\xe5\xb1\xaa\x93\x25\x68\x94\x37\xf9\xd9\xe2\xc0\xed\x50\xd4\ +\xce\xfa\x27\x85\xf6\x16\xa5\x00\x8f\xa7\x01\x26\xf9\xf7\x48\xde\ +\x2e\x85\x2d\x14\x16\xa1\x0e\x9b\x91\xf2\x7d\x80\xd2\xa3\x50\x33\ +\xdd\x8f\xc4\x9d\x46\x7d\x37\xf0\xb9\x45\xfc\x6e\x35\x5d\xfe\x68\ +\xf6\xeb\x7c\xa6\x4b\xa1\x32\xc3\x97\xe6\xda\x59\x10\x2b\xf1\xec\ +\x5f\x47\x4b\x34\x3a\x70\xaf\x33\x9e\x3f\xe0\xc1\x27\xea\xbc\xa7\ +\x24\x01\x6c\xf6\xf8\x4b\x85\x63\xee\x76\x29\x9c\x06\xd3\x84\x43\ +\xd3\x8c\xd7\xba\x1f\x3b\x79\x4d\xa1\xde\xc9\xea\xa3\x3a\x5c\x8c\ +\x6b\x85\xf6\x15\x2e\x3b\x56\xe0\x33\xfd\x0a\x7b\x49\xc7\x8b\xe6\ +\xaa\x15\xb6\x99\x78\x85\x9f\x6d\x0a\x4d\x73\x23\x3c\x7b\xaf\xa2\ +\x5d\x06\xca\x1e\xf3\x26\x1d\x60\xf3\x60\xed\x78\x3b\xdb\x73\xfa\ +\x35\x24\xa8\x1a\x29\x5c\x87\x2d\x5c\x43\x92\xe4\x0b\x6c\x70\xbb\ +\x4b\x6c\x18\x88\x7d\x77\x49\x13\x7a\x50\x73\x8e\x29\x96\xa2\xea\ +\x6d\x99\x70\x83\xc6\xef\xa6\x6b\xfb\x7f\xed\x21\x84\x3a\x82\x06\ +\x48\xdc\x61\x5e\x49\x03\xd8\x40\xee\x05\xe4\x41\xec\xeb\x2e\xbc\ +\xe4\x05\x2e\xc1\xd0\x40\x28\xb4\x05\x80\x4f\x61\xff\x2e\xa3\x36\ +\xad\x03\xa1\x74\x97\xdc\xb3\xa9\xe1\x45\x00\xdb\x06\x13\x3d\x89\ +\x47\xdf\x14\x93\xfe\x1e\x9e\xb5\x8f\x70\xed\xb8\xca\x54\xad\x31\ +\x5b\x01\x36\x90\xfb\x51\xd7\x5d\x64\xb3\x5e\x53\xb4\x1c\x67\xdd\ +\x7c\x55\xce\xbe\x6e\x41\x2d\x9f\x21\xfe\x3c\xaf\x70\xfe\x91\xb5\ +\x91\xd8\xc1\x1c\x06\xaa\xd5\x38\xd7\xa3\x8a\x57\xa1\xfa\x1f\x53\ +\x38\xde\x2f\xbe\x83\x5e\x07\x63\x7a\x1f\x80\x2f\x29\xa1\x1b\x81\ +\x27\x1d\x60\xb9\x49\x3d\x87\x34\x7e\x07\xc8\x2f\x28\xaa\xcb\xb2\ +\x9d\x5e\x0d\xec\x5a\x3c\xef\xe7\x00\xb5\x0f\x6f\xd8\x36\x44\x33\ +\xf5\xed\xcf\x6b\x68\xe2\xb2\x9a\xeb\xf8\x1e\x96\x56\x78\xd0\x85\ +\x77\xfd\x09\x36\xf7\x6b\xbe\x7b\x54\x09\xa7\xbc\x92\x4f\x56\x20\ +\xf0\x39\x12\x73\x58\xd1\x8e\x77\xcf\xa0\x52\x0d\x1c\x3b\x9c\xd9\ +\x12\x1b\x76\xf4\xea\xc8\x1d\x72\xd1\x95\x4e\x4a\x33\xb1\xd8\x7c\ +\x18\xc6\xb8\x82\xb9\xd8\x8f\xf4\x5e\x49\xb2\x4a\x9e\x8d\x00\x7b\ +\xbb\x3c\x80\xe4\x9c\x56\xb4\x61\xda\xd3\xa8\xed\xc7\x9c\xad\xf4\ +\x67\x17\xd6\x28\xec\x24\x70\xb7\xef\x2f\x70\x59\x9b\xe8\x77\x00\ +\x7a\x98\xe7\x5d\x74\x19\xad\x59\x43\x79\xcd\x2e\xb2\x46\xec\x6e\ +\x85\x4d\x47\x0f\x28\xca\x63\xaf\xc6\xdb\x5e\x8e\x4d\xad\xd3\xf8\ +\x5e\xa6\xcc\x04\xde\xb3\xef\x3a\xe8\xc0\x33\xbe\x88\x59\x38\xcb\ +\xcf\x4b\x4e\x62\x4b\xb3\x6c\xbe\x66\x1d\xc0\x72\x99\xa8\x1e\x45\ +\x6b\xb4\xb6\x01\xd9\x12\x45\xa5\x3c\xcb\x71\x92\x9a\x15\xf6\x71\ +\xb6\x6d\x82\x7d\x1c\x6c\xad\xa0\x3d\xce\x91\x33\x80\x6d\xbf\xe7\ +\xc2\x6c\x05\x76\x36\x03\x1c\x07\xda\xd2\x8e\xe6\x88\x59\x0f\xb2\ +\x9d\x4b\x68\x07\x54\x5a\x7f\xae\xad\x16\x0d\xf0\x99\x6e\x85\x7e\ +\xa9\x82\x7e\xdc\x11\xb3\x29\xc0\xd3\x68\xa3\x8b\xfa\x61\xd3\xf5\ +\x75\x27\xb9\xf1\x95\xa3\xe2\xc3\x06\xe6\xc3\x0c\xf0\xbd\x82\x3e\ +\xe7\x28\xab\x94\x1e\x16\x9a\x70\x57\x84\xac\xc6\x27\xda\xb3\xfa\ +\x61\xc7\x7d\x4a\xc9\xa7\xdc\x04\x98\x15\x25\x8d\xe6\xf1\x16\xed\ +\x98\x55\xdb\x16\x68\x99\x42\x5b\x64\x4a\xc9\x26\xdb\x83\xab\x59\ +\xa1\x39\xde\x92\x3c\xb7\xf3\x8a\x52\x70\x2b\x14\x36\xf3\x6a\x53\ +\x54\xf0\xb6\x40\x77\x3e\xa9\x2c\xa5\x64\x98\xd8\x46\x45\xd5\x2c\ +\xd6\x56\xeb\x4f\x9e\xb9\x91\x57\xb4\x93\xea\x2e\x85\x03\xa5\x56\ +\x28\x3a\xf8\x62\x2b\x37\x15\xd2\x79\x4c\xb4\x6a\xb6\x13\x5f\xac\ +\x7c\xc8\xce\x76\x3a\x2d\xa9\x33\xaf\xa8\x48\x6c\x09\x97\xed\xc6\ +\xb6\x8c\x0f\x96\xed\x30\x89\x94\xee\xd9\xb1\xb2\x98\xdf\x1a\xce\ +\xfb\x14\x95\x1e\x1d\x94\xd4\x93\x57\x94\x6f\x7d\x57\xe1\x64\x93\ +\xf9\xdc\x3c\x3f\x9d\xbf\x59\x43\x96\xf4\xe9\x53\x94\x3b\xff\xab\ +\xa2\x15\xaf\xa1\xbc\x42\x5b\x88\xed\xfa\xba\x4d\xa1\x16\x2a\xa5\ +\xd9\x41\x23\x8a\x92\x3a\x06\xee\x47\x8a\x6a\xcd\xc6\x32\x2e\xe1\ +\xb1\x50\x51\x41\xd9\x36\x74\x7a\x93\xc2\x52\x5a\x4a\xc9\x94\x5a\ +\xdb\xe9\xa7\x4b\xd1\xe2\xcb\x61\x24\xf7\x86\xf9\x4e\x99\x98\x47\ +\x56\x89\x6a\x36\xb7\x7b\x5e\x0a\x70\xa2\xc9\x36\x3e\xed\x04\xd4\ +\x3e\xfc\xa6\x31\x6f\xa4\x27\x32\xdc\xb6\xa6\x9a\x4d\x13\x1e\xb3\ +\x42\x8a\x6d\x91\x24\x75\x88\x53\x4a\x29\xa5\x94\x52\x4a\x29\xa5\ +\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\ +\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x52\x4a\x29\xa5\x94\x12\ +\x4f\xff\x04\xec\xcd\xf9\xe1\xa4\x70\xe2\x88\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0f\x50\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ +\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xe2\x01\x1e\x12\x14\x01\x5c\xf5\x89\xe8\x00\x00\x0e\xdd\x49\x44\ +\x41\x54\x78\xda\xed\x9d\x7b\x90\x55\xc5\x11\x87\x3f\x96\x7d\xf0\ +\x5c\x40\x7c\xa0\xa0\x01\x7c\x80\x08\x2a\x31\xe0\x2b\xbe\x0d\x1a\ +\xf3\x20\xc6\x18\x82\x1a\x4d\x48\xd4\x98\x18\x2b\xc6\x67\x52\xd1\ +\x42\x8d\x8a\xc6\x57\xa9\x15\x89\x14\xb1\x42\x34\x41\x4b\x34\x46\ +\x63\x91\x68\x90\xc4\x07\x41\x45\x14\x41\x05\x34\x28\x0a\x82\xb0\ +\x59\x56\x1e\x0b\xcb\xee\xdd\xfc\xd1\x7d\xdd\xb3\x73\xe6\xde\xbb\ +\x7b\xce\x9c\xbb\x67\xf7\xce\xaf\xea\x54\xed\xd9\x7b\x6f\x9f\x39\ +\xdd\x3d\x33\x3d\xdd\x3d\x3d\xe0\xe1\xe1\xe1\xe1\xe1\xe1\xe1\xe1\ +\xe1\xe1\xe1\xe1\xe1\xe1\x51\x2a\xe8\xd6\xc9\xda\x7a\x10\x30\x0e\ +\x38\x18\x38\x00\xd8\x07\xd8\x0d\xe8\x07\x54\xea\xf7\x1a\x80\x4d\ +\xc0\x06\x60\x35\xb0\x12\x58\x02\xbc\x0c\xbc\x05\x34\x7b\xb1\x77\ +\x1e\x54\x03\x67\x03\x8f\x00\x35\x2a\xbc\x38\x57\x0d\x30\x1b\x38\ +\x0b\xe8\xeb\xd9\x9b\x5e\x1c\x09\x3c\x08\xd4\x3b\x10\x7a\xae\x6b\ +\x1b\x30\x0b\x38\xc2\xb3\x3b\x3d\x38\x15\x78\x29\x41\xa1\xe7\xba\ +\x5e\x04\x26\x78\x1b\xa0\xe3\x70\x28\x70\x27\x70\x7c\x81\xef\xed\ +\x04\x5e\xd1\x6b\x85\x5e\x6b\x81\x2d\x7a\x35\xeb\xd0\xde\x07\x18\ +\xa4\x76\xc2\x01\x6a\x37\x8c\x0f\xd8\x09\xb9\x30\x0f\xb8\x54\x6d\ +\x06\x8f\x22\xa0\x07\xf0\x1b\xa0\x31\x4f\xef\xac\x05\x66\x00\xa7\ +\x00\xbd\x63\x3c\xab\x27\x70\x12\x70\x5f\x01\x7b\x62\x27\x30\x0d\ +\xa8\xf2\xe2\x49\x16\x63\x80\x65\x79\x04\xf1\x2a\x30\x29\x21\x41\ +\x54\x00\xdf\x04\x16\xe4\x79\xfe\x12\x60\x94\x17\x53\x32\x98\x0c\ +\x6c\xcd\xc1\xf8\x57\x80\x2f\x15\xb1\x2d\xc7\xa9\x0d\x60\x6b\xcb\ +\x16\xe0\x4c\x2f\x2e\xb7\xb8\x26\x07\xb3\x37\x02\xe7\x03\x65\x1d\ +\x64\x0b\x9d\x0b\xac\xb3\xb4\x2b\x03\x5c\xed\xc5\xe6\x06\xb7\xe7\ +\x10\xfe\xdf\x81\x3d\x52\xd0\xbe\x81\xc0\x13\x39\xda\x78\xab\x17\ +\x5f\x3c\xdc\x66\x61\x6a\x13\x70\x15\xe9\xf3\x48\x5e\xa2\xc6\xa0\ +\xd9\xde\x9b\xbc\x18\xa3\xe1\x0a\x0b\x33\xb7\x03\x67\xa4\xb8\xcd\ +\x5f\xc9\x61\xa7\x5c\xe2\xc5\xd9\x3e\x7c\x5d\xe7\x51\xd3\xb8\x3a\ +\xae\x13\xb4\xfd\x70\x24\xae\x60\x8e\x5a\xa7\x78\xb1\xb6\x0d\xc3\ +\x80\x3a\x83\x81\x3b\x8a\x6c\xe5\xc7\xc5\xb1\x84\x5d\xd2\x35\xc0\ +\x10\x2f\xde\xfc\xe8\x9e\x63\x9d\x3d\xa9\x13\xbe\xcb\x44\xcb\x28\ +\x36\x9f\xce\x15\x4d\x2d\x3a\x2e\xb7\x08\xff\xb6\x4e\xfc\x3e\xbf\ +\xb6\xbc\xcf\x8f\xbd\x98\xed\x18\x4c\x8b\x6f\x3e\x18\x70\x29\x77\ +\x44\xbf\x2f\xe2\x4c\x9a\x81\xc4\xf9\x37\x22\x79\x00\x0d\x48\x1e\ +\xc0\xcb\xc0\xfd\xc0\x77\x90\xb8\x80\xab\x11\xed\x39\xe3\x9d\x36\ +\x21\xf9\x08\x1e\x06\x1e\xb0\xcc\xfb\x23\x1c\xd0\xdd\x1f\x98\x89\ +\x84\x72\xdb\x1a\xe9\xdb\xaa\x8a\xb2\x9f\x83\xe7\x0f\xb7\xd8\x03\ +\xbf\xf5\xe2\x6e\x8d\x11\x84\x83\x3b\x37\xc4\xa4\xd9\x13\x09\x1a\ +\xed\x24\x7a\xc8\xb7\x01\x09\xf2\xf4\x88\xd9\x96\x5f\x59\xe8\x0e\ +\xf5\x62\x6f\xc1\x4c\x83\x41\x6b\x55\x80\x51\xb1\x1f\x12\x98\x71\ +\x15\xfb\x7f\x5d\x7b\x72\x54\x54\x22\xa9\x66\x41\x9a\xf7\x7a\xb1\ +\x0b\x76\x55\x07\x4f\x90\x39\x3f\x8f\x41\xef\x50\x60\x7d\x1e\x61\ +\x2e\x42\x5c\xb4\xe7\x02\xa7\xe9\x75\x9e\xfe\xef\xb5\x3c\xbf\x5b\ +\x87\xe4\x15\x46\xc5\x4f\x2c\xd3\x4c\x3f\x2f\x7e\xb8\xcc\x60\xcc\ +\x06\xa0\x57\x8c\x9e\x6f\x13\x7e\x06\x49\xe5\x6a\x4b\xa8\x76\x34\ +\xf0\x50\x1e\x25\x88\x3a\x12\x54\x01\x1f\x1b\xf4\x2e\xf2\xe2\x0f\ +\xf7\xba\x3b\x62\xcc\xf9\xb6\x61\x7f\x35\x70\x4c\x04\x7a\x27\x00\ +\x6b\x2c\xf4\x16\x13\x3d\xdf\x60\x9a\x41\xeb\x85\x52\x17\xfe\x30\ +\x0b\x83\x0f\x89\x48\xeb\x56\x0b\xad\x37\x91\x34\xaf\x38\x4b\xd3\ +\xb7\x2c\x74\x6f\x8e\x48\x6f\x94\x65\x64\xda\xab\x94\x15\xc0\x9c\ +\x17\x97\xc5\x58\xea\xed\xb4\xf4\xfc\x41\x0e\xda\x38\xd8\x32\x12\ +\x34\x00\xfb\x46\xa4\xb7\xd8\xa0\x35\xa5\x94\x15\xe0\x51\x83\x19\ +\x77\x39\x5a\x45\x64\x22\x0e\xfb\xb9\x70\xa2\x65\x14\xb8\xdf\xd1\ +\x48\x35\xab\x94\x15\xe0\x23\x83\x19\x5f\x8b\x40\xa3\xaf\xc5\xc9\ +\xf3\xc7\x04\xda\xfa\x30\xe1\xe8\x64\x94\x84\xd3\x53\x0d\x3a\x2b\ +\x4b\x79\xf9\x67\xf6\xaa\x5d\x22\xd0\x99\x6c\xa1\x93\x44\x62\xe6\ +\xa1\x96\xe7\x7c\x3b\xa2\xc2\x9a\xa3\x55\x9f\x52\x54\x80\xa3\x0d\ +\x46\x7c\x12\x91\xce\x0c\xcb\x3a\x3f\x29\xbc\x69\x3c\x6b\x7a\x44\ +\x3a\xa6\x4d\x71\x58\x67\x12\x9c\xab\x04\xcc\xa1\xc6\xfd\xf2\x88\ +\x74\xcc\x55\xc3\x3f\x13\x7c\xf7\x67\x0b\x3c\xbb\xad\x58\x6e\x59\ +\x0d\x95\x9c\x02\x98\x16\xfa\xea\x88\x74\x4c\xc7\xcc\xd2\x04\xdf\ +\x7d\x59\x81\x67\xb7\x15\x1f\x14\xe0\x45\x49\x28\xc0\x00\xe3\x7e\ +\x73\x44\x3a\xd5\xc6\xfd\xc6\x04\xdf\x7d\x83\x71\xdf\x3f\x22\x1d\ +\xf3\x5d\x77\x29\x45\x05\x30\x23\x6c\x5b\x4a\xc8\xfe\xd9\x5c\x80\ +\x17\x25\xa1\x00\xdd\x8d\xfb\x1d\x11\xe9\xd4\x19\xf7\x49\x26\x5b\ +\x98\xb4\x37\x45\xa4\x63\xbe\x6b\x79\x29\x2a\x80\xc9\x84\xa8\xfe\ +\xf5\x55\xc6\xfd\x41\x09\xbe\xfb\x68\xe3\xfe\xbf\x11\xe9\x98\xa1\ +\xee\x86\x52\x54\x80\xba\x02\x36\x41\x5b\xf1\xba\x71\x7f\x72\x82\ +\xef\x6e\xd2\x7e\xc3\x91\xfd\x53\x57\x8a\x0a\xb0\xce\xb8\x8f\x1a\ +\x14\x99\x67\xdc\x8f\xb5\xf4\x54\x17\x18\x6b\x19\x5d\xa2\x2e\x39\ +\xf7\x2c\x60\x5c\x96\x04\x4c\xff\xfa\x8a\x88\x74\xfa\x10\xde\x8d\ +\xf3\x50\x02\xed\x35\xe3\x16\x9b\x89\x5e\x7b\x60\xa9\x41\xeb\xc4\ +\x52\x54\x80\x21\x06\x13\x1a\x89\x9e\x08\x62\x7a\x03\x33\x48\x3c\ +\xdf\x15\x26\x10\x76\x03\x47\xf5\x02\x56\xea\x9c\x1f\xa4\xb5\x0f\ +\x25\x0a\xb3\xea\xc6\xd1\x11\xe9\xec\x67\x61\xea\x1a\x24\x94\x1b\ +\x17\x7b\x13\xce\xe4\xd9\x41\x74\xef\xdd\x78\xc2\x69\xe2\x25\x8b\ +\xb9\x06\x33\xae\x8a\x41\x6b\x9a\xa5\x97\x2e\x8b\xa9\x04\x7b\x03\ +\xef\x58\xe8\xde\x18\x83\xa6\xb9\xf9\xe5\x99\x52\x56\x80\x5f\x1a\ +\xcc\x98\x17\x83\x56\x0f\x5d\x11\x34\x5b\x46\x82\x28\x73\xec\x04\ +\x4b\xcf\xcf\x06\x9b\xe2\x94\xa0\x79\xd6\xa0\x77\x6d\x29\x2b\xc0\ +\x38\xc2\xc5\x96\xe2\xb8\x45\x87\x63\xaf\xd8\xd1\x8c\xc4\xf3\xdb\ +\x12\xbc\x19\x6b\x31\xf8\x82\xe9\xea\x43\x63\xb4\x6f\x20\xe1\xcc\ +\xa5\x23\x4b\x59\x01\xba\x59\x7a\xd9\x85\x31\x69\x1e\x9c\x47\x09\ +\xb2\x79\x82\x77\x02\x3f\x44\x36\x70\x4e\xd4\xbf\xef\xb2\x58\xe7\ +\xa6\xf0\xc7\xc4\x6c\xdb\x45\x06\xcd\x8f\xe9\x98\xf2\x36\xa9\xc2\ +\xbd\x06\x53\x5e\x76\x40\x73\x38\xe1\xdc\xbb\x38\xd7\x22\xdc\xec\ +\xe4\x31\x33\xa0\xef\xc1\x23\x64\x15\x37\x03\x5f\x74\x40\xb7\x07\ +\x92\xbd\xdb\x10\x43\xf0\x3b\xd4\xe0\x73\x51\x76\xee\x24\x0b\xfd\ +\x71\x5e\xfc\x82\x85\x06\x63\x9e\x72\x48\x7b\x5f\x24\x81\x73\x4b\ +\x3b\x04\xbf\x59\xd7\xf9\x2e\x13\x35\x9e\x4d\x60\xa4\xeb\x32\x38\ +\xc3\xe2\xc8\x19\xe3\xf8\x19\x7d\x90\x1c\xbe\xe9\x48\x11\x8a\xf5\ +\xda\xc3\x77\xe8\xdf\x0b\xf4\xb3\x6f\x11\xaf\xba\x68\x5b\x8c\xdd\ +\x66\xa4\x0c\x8e\x87\xa2\xcc\xb2\xde\x7e\xa8\x0b\xbd\xdf\x1c\xe3\ +\xdd\x96\xe2\x2b\x85\x84\x30\x85\xb0\x6b\x78\x58\x17\x78\xaf\x91\ +\x84\x4b\xc5\x7c\xb7\xb3\x2f\xdd\x92\x40\x25\xf0\x1e\xad\x0b\x29\ +\xdd\x47\xe7\x28\xa9\x52\x86\x24\xb8\x54\x58\x3e\x9b\x6e\x08\x7c\ +\xb5\x4e\x6f\x8d\x45\x92\x55\x46\x7d\x0f\x8d\x69\x57\x00\x90\x6d\ +\xe1\xb7\x07\xee\xb7\xeb\xf2\x6b\x7d\xca\x15\xa0\x8f\xf6\xf4\xa3\ +\x69\x09\xf6\x80\xe4\x0c\x5e\x43\xeb\xec\xa7\x39\xc0\xf3\x45\x12\ +\x7e\x4f\x24\x47\xf2\x35\x1c\xa6\xcb\x77\x4b\x98\x91\x1f\xd0\xda\ +\x1b\x38\x0d\xf8\x45\xca\x15\x60\x2f\xe0\x74\xe0\x02\x24\x49\x35\ +\xab\x00\xbb\xd1\x3a\xf9\xa3\x09\xc9\x22\x2a\xd6\x19\x44\x15\xc8\ +\x7e\x8b\x07\xe9\x44\x05\x29\xae\x33\xe6\xcb\x3a\xd2\x5f\x48\x61\ +\xa8\xb6\xbb\x91\xe2\x9f\x5c\x52\xe8\xaa\x03\xae\x77\x3d\xdf\x25\ +\x89\xbb\x91\xbd\x7e\x59\x54\x93\xfe\x42\x0a\x8d\xda\xe6\xfa\x14\ +\xb6\xad\x0e\x49\x98\xe9\x34\x0a\x50\x83\x24\x78\x04\xf1\x33\xd2\ +\x9f\x3a\x9d\xd6\x65\x9d\xf3\xe9\xa6\x18\xc1\x8b\xdb\xd5\x72\xcd\ +\x62\x0f\xd2\xbd\x8f\xbe\x5b\x8a\x15\xa0\x32\xc7\xea\x24\xd5\x0a\ +\xf0\x21\x61\x47\xd0\xe5\x84\xf7\x12\xa4\x4d\x09\xd2\xd8\xbe\x0a\ +\xd7\xca\x59\xac\x4d\x0c\xb7\x20\xd5\xbb\xb2\x8d\x1f\x86\x54\xf1\ +\x4c\xa3\x87\xb0\x49\xe7\xff\x7a\xf2\x97\xb7\xcb\xe6\x3c\x6c\xa6\ +\xa5\x20\x76\x52\x23\x47\x99\x2e\x43\xdf\x73\xbd\x8c\x2e\xe6\x50\ +\xf7\x38\xf0\x8d\xc0\xfd\x52\x24\xde\x9f\xb6\xa3\x5c\x07\x20\xa5\ +\xec\xcf\x47\x0a\x40\xe4\x1a\x25\x77\x00\xef\x23\xc1\xae\xd9\xea\ +\xe7\xa8\x48\xb0\x53\x95\xab\x52\xae\x23\x9c\x86\x9f\xfa\x11\x00\ +\x24\x9c\x1b\x54\x80\xd1\xc8\xa1\x0c\x4f\xa5\x4c\x01\xb6\x21\xc5\ +\xa4\x3e\x2c\x30\x45\x96\x23\xa1\xe5\x5e\x3a\x5d\x2c\xd7\x11\xa1\ +\x2c\xc1\x8e\xd5\x4c\x27\x3f\xfb\x78\x1e\xe1\x02\xd2\x69\x9c\xff\ +\x73\x95\xa9\xb3\x85\x9a\x5f\x55\xe5\x3e\x84\xc2\x07\x53\x96\x3c\ +\x6c\x39\xf9\xc7\xa4\x4c\xf8\x20\xdb\xc6\x6c\xb5\x86\x6d\x4a\x90\ +\x41\x3c\x82\x53\x81\xcf\xe3\x0f\x9c\x2c\x88\x45\x06\x03\x9f\x4e\ +\x61\x1b\xcd\x84\x8f\xb5\x81\x21\x3e\x57\xb6\xd1\x62\xc4\xd5\x3d\ +\xbe\x33\x09\xa3\x23\x96\x3a\xb5\xb4\x3e\x8c\x71\x7f\xe0\x2f\xa4\ +\x27\x48\x34\x8e\x70\xf1\xc8\x9b\xb5\x97\x0f\x42\xb2\x81\x6d\x7c\ +\x1c\xa0\x53\x47\x06\x71\x80\xd5\xea\xdf\xc5\x36\xb6\x53\xaf\x00\ +\xef\x00\x67\x19\x8c\xec\x8f\x44\xd6\xd2\x80\x7b\x80\x03\x03\xf7\ +\x6f\x23\x99\xc6\x75\x2a\xe4\xdd\x91\x2c\xa3\x32\x8b\x51\xd8\x37\ +\xb0\x74\x5c\xab\x36\x42\xc6\x2b\x40\xd8\x92\xad\xa7\x75\x1a\xd5\ +\x81\xea\x13\xa8\xed\x60\x7e\x8c\x44\x22\x6d\x41\x81\x5d\x89\x1c\ +\x67\xbb\x49\x97\x7a\x55\x88\x37\xd3\xa6\x04\x55\xaa\xcc\xbd\xf5\ +\x5d\x6a\x03\x4a\xe0\x11\x40\x25\xe1\xf2\x6a\xd3\x53\xd0\xae\xdf\ +\x13\x2e\x51\x5b\x61\xf4\xf2\x09\xc0\x93\x48\x6c\x3e\x93\x67\x75\ +\xf0\x30\x70\x36\xb2\x25\xcd\xdb\x00\x06\x9a\xb4\xf7\x4c\x08\xfc\ +\x6f\x0c\x52\x26\xb6\xa3\xea\x0b\x0d\xd1\xe7\x07\x79\x32\x15\x78\ +\x29\x70\x9f\xd1\x91\xa0\x16\x09\x68\xed\x8d\x3d\xb0\x55\xa9\xf6\ +\x42\xa5\xbe\xcf\x3a\xd2\x19\x5d\xec\x50\x7f\xf7\x12\x24\x34\xdc\ +\x33\xd0\xbb\x32\x74\xdc\x06\xcb\xeb\x68\xbd\xa3\xb9\x06\x49\xff\ +\xda\x69\x7c\x2f\xeb\x8d\x6b\x56\x3b\x66\x50\x8e\xf5\x7f\x2f\x24\ +\xf7\xa1\x4c\x9d\x4b\xeb\x75\x0a\xf1\x0a\xa0\x68\x40\xb2\x86\x8e\ +\x0d\xfc\xef\x60\x24\x77\xb0\xd8\x8c\x1a\x88\xd4\x24\x0e\x0a\xf2\ +\xd6\x3c\xca\xd8\xa0\xc3\xfc\x56\x15\xf4\xbe\xd8\xbd\x86\xbd\x95\ +\x76\x4f\xa4\x96\xf2\x26\xa2\x17\xd0\xea\x72\x0a\x00\xb2\xb7\xef\ +\xe2\xc0\x3c\x5b\xa5\x43\xe6\xf3\x45\x6e\xc7\x55\xb4\x3e\xcd\x74\ +\x2b\x52\xb7\xb8\x3e\x8f\x21\x5b\x87\x94\x83\xe9\xa6\xd3\x47\x3f\ +\xc3\x5e\x68\x56\xa5\xa8\x56\x25\xd8\x06\x7c\xaa\xbf\xdb\x81\xc7\ +\x67\xb8\x9b\x70\x9d\xe1\x9e\x45\x7c\x7e\x6f\xc2\xc5\x2d\xee\x68\ +\x47\x07\x1a\x89\x1c\x28\xbd\x90\xdc\xde\xc2\x9d\x48\xe0\xe8\x26\ +\x64\xc7\x72\xb9\x1f\x01\x5a\xb0\x0c\xf8\x69\x60\x08\xed\xad\x73\ +\x6c\xb1\xb6\x5b\x5d\x4c\xeb\x20\x55\x03\x12\xaa\x6e\x4b\xb5\xd3\ +\x6c\x55\x90\x0d\xea\x03\xe8\xa7\xbe\x02\x53\xc0\xd9\x70\x6e\x2f\ +\x5a\x42\xc8\x1b\x48\x41\x60\x27\x0d\x0a\x50\x87\x94\x85\x09\xee\ +\xf7\x3f\x48\xd7\xe3\x49\xaf\x9f\x2b\x75\xb9\x16\x2c\x51\x3b\x0b\ +\xc9\xbc\x6d\x2b\x32\x3a\x6d\x7d\xaa\x7f\xf7\xa7\x75\x95\xb4\x60\ +\x9e\xc0\xae\xea\x48\xca\x9e\x2d\xb0\xd9\x2b\x80\x60\x05\xb2\x69\ +\x24\xcb\xa8\xfe\xc0\xbb\xba\x52\x48\x12\xe7\x01\xe7\x18\xc2\x3c\ +\x9b\xf6\xd7\x28\xce\xe8\xd2\xb0\x3e\xe0\x28\xea\x4f\x38\xbd\xac\ +\xbb\x8e\x70\x7d\x74\x29\x9c\x75\x19\x7b\x00\x4f\x10\xae\x09\x94\ +\xa4\x0b\xd5\xb6\x87\x31\xae\x3b\x7a\x00\x12\x49\xbc\x87\xf0\xe1\ +\x92\x66\x7a\xf7\x42\xe0\xfb\xf8\xb3\x87\x3f\xc3\x11\x16\x46\x4d\ +\x4c\xf0\x79\x67\x90\xcc\x1e\xff\x5d\x10\x07\xd7\x6c\x24\xa9\xa4\ +\x89\xdc\x47\xd9\x3e\xa6\xab\x8d\xc1\x5e\xfc\x82\xf9\x06\x93\x16\ +\x24\xf8\xac\x57\x8c\x67\xb9\x3c\x9c\xa2\x1a\x09\x78\xcd\xd6\x91\ +\xc0\xe6\x32\xce\xa8\x0d\x30\x17\x98\x44\x07\x6d\x98\x49\x5b\xe6\ +\xeb\x3a\x63\x4e\x1e\x02\xfc\x4b\x97\x50\x2e\x71\x32\x70\xb5\xf1\ +\xbf\x0b\x89\x5e\x30\xda\xc4\x4e\x5d\xce\xd6\xab\xa1\x39\x80\x70\ +\xf0\xa8\x9b\x7e\xd6\x57\x3f\x2b\xd7\xdf\x6c\x2e\xf5\x51\xc0\xac\ +\xbd\x33\x37\x81\x67\x98\x09\x1f\xaf\x3a\xa2\x6b\xda\x2c\xa3\x90\ +\x14\xf8\x05\x84\x8f\x9d\x0f\x26\x93\x2c\x45\x4e\x47\x1f\x59\x6c\ +\x66\xa7\xb1\xaa\xd5\x2d\xc6\xfd\x29\x48\xaa\x95\x2b\x8c\x43\x6a\ +\xfc\x04\x31\xcd\x21\xfd\xa0\x12\x6c\x41\x3c\x80\xf9\xb6\x73\x37\ +\x6a\xaf\xaf\xa1\x93\x95\x9a\x4f\x72\x5a\x5a\x69\xf4\x92\x47\x1c\ +\xd2\x37\x2b\x7c\x2c\x4f\xb0\x23\x8c\x57\xe5\x7a\x87\xdc\x5e\xc2\ +\x55\x48\xa9\xbb\xa3\x28\xd1\x23\xe7\x6c\xb8\xc0\x60\x52\x13\x92\ +\x3a\x16\x17\xb6\x0a\x1f\x3f\x48\x68\x64\x1d\x89\x9c\xa6\xfe\x62\ +\x9e\xe5\xe0\x27\xaa\xdc\xa7\xe3\xbe\x96\x51\xa7\x46\x15\x92\x52\ +\x15\x64\xd6\x0c\x07\x74\xcd\x84\x8f\x8f\x48\x26\x95\x7b\x57\x24\ +\xd4\xfd\xb4\x3a\x95\x72\x2d\x03\xff\xa6\x0a\x38\xd4\x8b\x3c\x8c\ +\x2b\x2d\xc6\x52\x9c\xd3\xb9\x87\x58\x86\xe1\xcb\x12\x68\x77\x5f\ +\xa4\x36\xe2\x63\xba\xaa\xb1\x2d\x01\xb7\xeb\x34\x77\x05\x12\x4a\ +\xae\xf0\xe2\xb6\x33\xb2\xd6\x60\xdc\x6d\x31\xe8\xdd\x69\xd0\xfa\ +\x5f\x02\x73\x6e\x2f\x35\x32\xa7\x12\x3e\x4b\x39\xd8\xf3\xdf\x43\ +\xb2\x8f\x0e\xf7\x62\xce\x8f\x1b\x09\xe7\xda\x45\x39\x8f\x68\x20\ +\xe1\xe2\x92\xd7\x27\xd0\xde\xa1\x48\xd5\xf4\xd5\x79\x8c\xbe\x5a\ +\xe0\xcf\x6a\x20\xfa\x79\xbf\x00\x76\x27\x7c\x9a\xf8\x35\x11\xe8\ +\x4c\x35\x68\x6c\xd5\x79\xda\xe5\xd2\x6f\x18\x92\x3e\xfe\x8f\x3c\ +\x46\xdf\x46\x64\x2f\xe4\x14\x1d\xe1\x3c\xda\x00\xb3\x00\xf5\x06\ +\xda\x77\x1c\x8d\x2d\xe1\xe3\x6e\xc7\x6d\xac\x46\x3c\x98\x73\x90\ +\xdc\xbf\x5c\x5b\xc8\x9e\x43\x72\x1f\x46\xe0\x8b\x4b\xb6\x6b\x58\ +\x35\xb7\x64\x5d\xd2\x8e\xdf\x5f\x6a\x99\x83\x5d\x9e\xeb\xd3\x13\ +\xf8\x02\xf0\x3b\x24\xf8\x93\x2b\x23\x68\x35\xb2\xc3\x68\x2c\xe9\ +\x2e\x8e\x91\x4a\x3c\x48\xfe\x7c\xfd\x5c\xa8\xb4\x18\x63\x7f\x70\ +\xec\xb4\x3a\x44\xa7\x98\xc5\x96\xe9\x2a\xeb\xc3\x58\xa3\x4b\xd0\ +\x2f\x13\xfd\x4c\xc5\x92\xc6\x68\xcb\x72\xea\x7b\x6d\xf8\xdd\x14\ +\xcb\x30\x3c\xca\x61\xbb\xf6\x54\xa7\xd5\x22\x35\x50\x6d\xbd\xff\ +\x53\x24\xd2\xf8\x55\x24\xf6\xef\x87\xfe\x88\x78\xd2\x60\xec\x5b\ +\x05\x98\x69\x4b\xf8\x78\xc2\xb1\x81\x3a\x11\xf8\x53\x1e\x8b\x7f\ +\x0b\xf0\x1f\x35\x5c\x7d\xe2\x47\x4c\x1c\x65\x61\xf0\xe9\x79\xbe\ +\x6f\x4b\xf8\x38\xc2\x51\x5b\x7a\x20\x01\xa5\x19\xe4\xcf\xfc\x79\ +\x03\xb8\xc1\xcf\xfb\xee\xf0\x6f\x83\xc1\x0b\xf3\x7c\xd7\x4c\xf8\ +\x98\xef\xa8\x0d\x15\x6a\xc5\x4f\x45\x02\x49\xb9\x2c\xfe\x8d\xea\ +\xec\x39\xc1\x8b\xcd\x1d\x4e\xb3\x30\xdb\x76\x8c\x9c\xad\xc2\xc7\ +\xa9\x8e\xda\xf0\x39\xa4\xde\xf1\x82\x1c\x46\x5f\xd6\xd5\x3b\x4b\ +\x47\xa8\xdd\xbd\xd8\xdc\xc2\x3c\x4f\xd0\xb6\x7d\xcb\x4c\xf8\x78\ +\xcd\x91\xb3\xa7\x1a\x29\x6e\x31\x3f\x8f\xd1\x57\xaf\xcf\x3b\x0b\ +\x89\x5d\x78\xa3\xcf\x31\x26\x5b\x98\x7e\x58\xe0\x73\xdb\x91\x2e\ +\x93\x1c\x08\xbf\x1f\x52\xd5\x6c\x26\x12\xa9\xcc\xe4\x11\xfe\x0d\ +\x48\xcd\x03\x1f\xe4\x49\x00\xdd\x91\x60\x4a\x90\xf1\x8f\x06\x3e\ +\x37\x13\x3e\x56\x3a\x30\xc0\xca\x91\xac\xa4\xbb\x94\x5e\xae\x5a\ +\x41\xab\x90\x94\xf0\x23\xf1\x7e\xfe\x44\xf1\x23\x8b\xb3\x65\x04\ +\xf6\x84\x8f\xb8\x87\x57\x56\x20\x21\xdb\x8b\xd4\xe8\xcc\x95\xe1\ +\x5b\xa3\xcb\xcc\xc9\x14\x77\x6f\x63\x49\xa2\x8a\xf0\x29\xa5\x33\ +\x09\x27\x7c\xac\x25\x7e\xd9\xb6\x41\xea\x74\xfa\x2b\xb2\x0f\x30\ +\x57\x88\x77\xae\x2a\xe6\x70\x2f\x9e\xe2\xe0\x6a\x8b\x10\x4c\x87\ +\xcc\x95\x0e\x86\xfe\xe3\x91\xfd\x83\xdb\xf2\xac\xf7\x3f\x40\x62\ +\x0e\x7b\x7b\xb1\x14\x0f\xd5\x79\x7a\x64\x36\xee\x1e\x37\xe4\x7a\ +\x9c\xce\xe9\x2b\x68\x7d\x82\x48\x70\x1a\x78\x17\x49\x54\x39\x9c\ +\xf6\x45\x29\x3d\x1c\xe0\xe6\x3c\x0a\x70\x63\xcc\x9e\x3f\x18\x49\ +\x1a\x79\x1b\x49\x47\xb3\xcd\xfb\x9f\x00\x0f\xa8\xf0\xab\xbd\x38\ +\x8a\x8f\x3d\xb0\x6f\xb8\xd8\x16\xc3\x01\x53\x81\x84\xa0\xcf\x41\ +\xe2\xf7\x36\x8b\xbf\x49\x6d\x90\xc7\x1d\x2c\x31\x3b\x14\xe5\x9d\ +\x5c\x01\xd6\x6b\x0f\x34\xcf\x21\x7a\x40\x7b\x67\x14\xf4\x41\x2a\ +\x96\x9d\x89\xd4\x29\xb0\xf1\x28\xa3\x0a\xb0\x54\x0d\xcd\x81\xb4\ +\x54\x3e\x2b\x23\x99\xc2\x0f\x65\x3a\x0d\x6d\xc7\x61\xc5\xb1\xae\ +\xe0\xa5\x1a\x66\xac\xf5\x1b\x91\x3d\x04\xef\x47\xa4\xb7\x27\x12\ +\x48\xba\x96\xdc\x11\xbc\xec\x16\xef\x8f\x55\xd1\xb2\xf9\x86\xd9\ +\x52\xf1\x2e\x15\x20\x4b\xb7\x9f\x1a\x9b\x73\x70\x58\x55\xb5\xbc\ +\x0b\x28\xc0\x2a\x64\x73\xc5\x64\xbd\x7f\x98\x78\x9b\x49\xb3\x25\ +\x5f\x0b\x39\x72\xaa\xd5\xe8\x1b\x4a\xb2\x35\x81\xb3\x0a\x50\xa5\ +\xab\x8c\x37\xfd\x14\x10\xc6\x34\x5a\x5c\xc4\x71\xf7\xf9\x65\xab\ +\x7a\x14\x2a\x4f\x53\x46\xf1\xcf\x07\xe8\x85\xe3\x72\xf4\x5d\x45\ +\x01\x96\x20\xbb\x70\xb2\xa7\x79\xc7\x41\xa6\x0d\xc2\xef\xa8\xa9\ +\x73\x2b\xad\xcf\x61\xf4\x0a\x60\x2c\x09\x5d\x0e\xbb\x25\x81\xae\ +\xa4\x00\x2f\x38\xa2\xd3\x1d\xf1\xe5\xa7\x31\x92\xd7\x16\xdb\xa4\ +\x64\x15\xc0\x15\x32\x3a\xd4\xd6\xa8\xe5\x9d\x86\xfa\xbe\xd9\x6a\ +\x22\x1b\x71\x5c\x4c\xdb\x2b\x40\x18\x5b\x90\x84\xd3\x67\x90\xdc\ +\xbf\xfa\x14\x4c\x09\x65\xea\x9f\x58\xe3\xc0\xc6\xe9\x72\x7e\x80\ +\x24\x98\x5d\x41\x4b\x19\xf8\xe6\x14\xb5\xab\x09\x09\x78\xf9\x5a\ +\xc3\x1e\x1e\x1e\x1e\x1e\x1e\x1e\xb1\xf0\x7f\x25\xe7\xa9\x18\x4c\ +\x88\xc3\xd9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x15\xb4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ @@ -3163,430 +2442,1900 @@ \xc0\x82\x79\x8b\x90\x09\x1d\xb5\xa0\xba\x3d\xf3\xfc\xff\x07\x96\ \xf2\xfd\x5b\x97\x0e\x13\x1f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ -\x00\x00\x0f\x50\ +\x00\x00\x06\xe3\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ -\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xe2\x01\x1e\x12\x14\x01\x5c\xf5\x89\xe8\x00\x00\x0e\xdd\x49\x44\ -\x41\x54\x78\xda\xed\x9d\x7b\x90\x55\xc5\x11\x87\x3f\x96\x7d\xf0\ -\x5c\x40\x7c\xa0\xa0\x01\x7c\x80\x08\x2a\x31\xe0\x2b\xbe\x0d\x1a\ -\xf3\x20\xc6\x18\x82\x1a\x4d\x48\xd4\x98\x18\x2b\xc6\x67\x52\xd1\ -\x42\x8d\x8a\xc6\x57\xa9\x15\x89\x14\xb1\x42\x34\x41\x4b\x34\x46\ -\x63\x91\x68\x90\xc4\x07\x41\x45\x14\x41\x05\x34\x28\x0a\x82\xb0\ -\x59\x56\x1e\x0b\xcb\xee\xdd\xfc\xd1\x7d\xdd\xb3\x73\xe6\xde\xbb\ -\x7b\xce\x9c\xbb\x67\xf7\xce\xaf\xea\x54\xed\xd9\x7b\x6f\x9f\x39\ -\xdd\x3d\x33\x3d\xdd\x3d\x3d\xe0\xe1\xe1\xe1\xe1\xe1\xe1\xe1\xe1\ -\xe1\xe1\xe1\xe1\xe1\xe1\x51\x2a\xe8\xd6\xc9\xda\x7a\x10\x30\x0e\ -\x38\x18\x38\x00\xd8\x07\xd8\x0d\xe8\x07\x54\xea\xf7\x1a\x80\x4d\ -\xc0\x06\x60\x35\xb0\x12\x58\x02\xbc\x0c\xbc\x05\x34\x7b\xb1\x77\ -\x1e\x54\x03\x67\x03\x8f\x00\x35\x2a\xbc\x38\x57\x0d\x30\x1b\x38\ -\x0b\xe8\xeb\xd9\x9b\x5e\x1c\x09\x3c\x08\xd4\x3b\x10\x7a\xae\x6b\ -\x1b\x30\x0b\x38\xc2\xb3\x3b\x3d\x38\x15\x78\x29\x41\xa1\xe7\xba\ -\x5e\x04\x26\x78\x1b\xa0\xe3\x70\x28\x70\x27\x70\x7c\x81\xef\xed\ -\x04\x5e\xd1\x6b\x85\x5e\x6b\x81\x2d\x7a\x35\xeb\xd0\xde\x07\x18\ -\xa4\x76\xc2\x01\x6a\x37\x8c\x0f\xd8\x09\xb9\x30\x0f\xb8\x54\x6d\ -\x06\x8f\x22\xa0\x07\xf0\x1b\xa0\x31\x4f\xef\xac\x05\x66\x00\xa7\ -\x00\xbd\x63\x3c\xab\x27\x70\x12\x70\x5f\x01\x7b\x62\x27\x30\x0d\ -\xa8\xf2\xe2\x49\x16\x63\x80\x65\x79\x04\xf1\x2a\x30\x29\x21\x41\ -\x54\x00\xdf\x04\x16\xe4\x79\xfe\x12\x60\x94\x17\x53\x32\x98\x0c\ -\x6c\xcd\xc1\xf8\x57\x80\x2f\x15\xb1\x2d\xc7\xa9\x0d\x60\x6b\xcb\ -\x16\xe0\x4c\x2f\x2e\xb7\xb8\x26\x07\xb3\x37\x02\xe7\x03\x65\x1d\ -\x64\x0b\x9d\x0b\xac\xb3\xb4\x2b\x03\x5c\xed\xc5\xe6\x06\xb7\xe7\ -\x10\xfe\xdf\x81\x3d\x52\xd0\xbe\x81\xc0\x13\x39\xda\x78\xab\x17\ -\x5f\x3c\xdc\x66\x61\x6a\x13\x70\x15\xe9\xf3\x48\x5e\xa2\xc6\xa0\ -\xd9\xde\x9b\xbc\x18\xa3\xe1\x0a\x0b\x33\xb7\x03\x67\xa4\xb8\xcd\ -\x5f\xc9\x61\xa7\x5c\xe2\xc5\xd9\x3e\x7c\x5d\xe7\x51\xd3\xb8\x3a\ -\xae\x13\xb4\xfd\x70\x24\xae\x60\x8e\x5a\xa7\x78\xb1\xb6\x0d\xc3\ -\x80\x3a\x83\x81\x3b\x8a\x6c\xe5\xc7\xc5\xb1\x84\x5d\xd2\x35\xc0\ -\x10\x2f\xde\xfc\xe8\x9e\x63\x9d\x3d\xa9\x13\xbe\xcb\x44\xcb\x28\ -\x36\x9f\xce\x15\x4d\x2d\x3a\x2e\xb7\x08\xff\xb6\x4e\xfc\x3e\xbf\ -\xb6\xbc\xcf\x8f\xbd\x98\xed\x18\x4c\x8b\x6f\x3e\x18\x70\x29\x77\ -\x44\xbf\x2f\xe2\x4c\x9a\x81\xc4\xf9\x37\x22\x79\x00\x0d\x48\x1e\ -\xc0\xcb\xc0\xfd\xc0\x77\x90\xb8\x80\xab\x11\xed\x39\xe3\x9d\x36\ -\x21\xf9\x08\x1e\x06\x1e\xb0\xcc\xfb\x23\x1c\xd0\xdd\x1f\x98\x89\ -\x84\x72\xdb\x1a\xe9\xdb\xaa\x8a\xb2\x9f\x83\xe7\x0f\xb7\xd8\x03\ -\xbf\xf5\xe2\x6e\x8d\x11\x84\x83\x3b\x37\xc4\xa4\xd9\x13\x09\x1a\ -\xed\x24\x7a\xc8\xb7\x01\x09\xf2\xf4\x88\xd9\x96\x5f\x59\xe8\x0e\ -\xf5\x62\x6f\xc1\x4c\x83\x41\x6b\x55\x80\x51\xb1\x1f\x12\x98\x71\ -\x15\xfb\x7f\x5d\x7b\x72\x54\x54\x22\xa9\x66\x41\x9a\xf7\x7a\xb1\ -\x0b\x76\x55\x07\x4f\x90\x39\x3f\x8f\x41\xef\x50\x60\x7d\x1e\x61\ -\x2e\x42\x5c\xb4\xe7\x02\xa7\xe9\x75\x9e\xfe\xef\xb5\x3c\xbf\x5b\ -\x87\xe4\x15\x46\xc5\x4f\x2c\xd3\x4c\x3f\x2f\x7e\xb8\xcc\x60\xcc\ -\x06\xa0\x57\x8c\x9e\x6f\x13\x7e\x06\x49\xe5\x6a\x4b\xa8\x76\x34\ -\xf0\x50\x1e\x25\x88\x3a\x12\x54\x01\x1f\x1b\xf4\x2e\xf2\xe2\x0f\ -\xf7\xba\x3b\x62\xcc\xf9\xb6\x61\x7f\x35\x70\x4c\x04\x7a\x27\x00\ -\x6b\x2c\xf4\x16\x13\x3d\xdf\x60\x9a\x41\xeb\x85\x52\x17\xfe\x30\ -\x0b\x83\x0f\x89\x48\xeb\x56\x0b\xad\x37\x91\x34\xaf\x38\x4b\xd3\ -\xb7\x2c\x74\x6f\x8e\x48\x6f\x94\x65\x64\xda\xab\x94\x15\xc0\x9c\ -\x17\x97\xc5\x58\xea\xed\xb4\xf4\xfc\x41\x0e\xda\x38\xd8\x32\x12\ -\x34\x00\xfb\x46\xa4\xb7\xd8\xa0\x35\xa5\x94\x15\xe0\x51\x83\x19\ -\x77\x39\x5a\x45\x64\x22\x0e\xfb\xb9\x70\xa2\x65\x14\xb8\xdf\xd1\ -\x48\x35\xab\x94\x15\xe0\x23\x83\x19\x5f\x8b\x40\xa3\xaf\xc5\xc9\ -\xf3\xc7\x04\xda\xfa\x30\xe1\xe8\x64\x94\x84\xd3\x53\x0d\x3a\x2b\ -\x4b\x79\xf9\x67\xf6\xaa\x5d\x22\xd0\x99\x6c\xa1\x93\x44\x62\xe6\ -\xa1\x96\xe7\x7c\x3b\xa2\xc2\x9a\xa3\x55\x9f\x52\x54\x80\xa3\x0d\ -\x46\x7c\x12\x91\xce\x0c\xcb\x3a\x3f\x29\xbc\x69\x3c\x6b\x7a\x44\ -\x3a\xa6\x4d\x71\x58\x67\x12\x9c\xab\x04\xcc\xa1\xc6\xfd\xf2\x88\ -\x74\xcc\x55\xc3\x3f\x13\x7c\xf7\x67\x0b\x3c\xbb\xad\x58\x6e\x59\ -\x0d\x95\x9c\x02\x98\x16\xfa\xea\x88\x74\x4c\xc7\xcc\xd2\x04\xdf\ -\x7d\x59\x81\x67\xb7\x15\x1f\x14\xe0\x45\x49\x28\xc0\x00\xe3\x7e\ -\x73\x44\x3a\xd5\xc6\xfd\xc6\x04\xdf\x7d\x83\x71\xdf\x3f\x22\x1d\ -\xf3\x5d\x77\x29\x45\x05\x30\x23\x6c\x5b\x4a\xc8\xfe\xd9\x5c\x80\ -\x17\x25\xa1\x00\xdd\x8d\xfb\x1d\x11\xe9\xd4\x19\xf7\x49\x26\x5b\ -\x98\xb4\x37\x45\xa4\x63\xbe\x6b\x79\x29\x2a\x80\xc9\x84\xa8\xfe\ -\xf5\x55\xc6\xfd\x41\x09\xbe\xfb\x68\xe3\xfe\xbf\x11\xe9\x98\xa1\ -\xee\x86\x52\x54\x80\xba\x02\x36\x41\x5b\xf1\xba\x71\x7f\x72\x82\ -\xef\x6e\xd2\x7e\xc3\x91\xfd\x53\x57\x8a\x0a\xb0\xce\xb8\x8f\x1a\ -\x14\x99\x67\xdc\x8f\xb5\xf4\x54\x17\x18\x6b\x19\x5d\xa2\x2e\x39\ -\xf7\x2c\x60\x5c\x96\x04\x4c\xff\xfa\x8a\x88\x74\xfa\x10\xde\x8d\ -\xf3\x50\x02\xed\x35\xe3\x16\x9b\x89\x5e\x7b\x60\xa9\x41\xeb\xc4\ -\x52\x54\x80\x21\x06\x13\x1a\x89\x9e\x08\x62\x7a\x03\x33\x48\x3c\ -\xdf\x15\x26\x10\x76\x03\x47\xf5\x02\x56\xea\x9c\x1f\xa4\xb5\x0f\ -\x25\x0a\xb3\xea\xc6\xd1\x11\xe9\xec\x67\x61\xea\x1a\x24\x94\x1b\ -\x17\x7b\x13\xce\xe4\xd9\x41\x74\xef\xdd\x78\xc2\x69\xe2\x25\x8b\ -\xb9\x06\x33\xae\x8a\x41\x6b\x9a\xa5\x97\x2e\x8b\xa9\x04\x7b\x03\ -\xef\x58\xe8\xde\x18\x83\xa6\xb9\xf9\xe5\x99\x52\x56\x80\x5f\x1a\ -\xcc\x98\x17\x83\x56\x0f\x5d\x11\x34\x5b\x46\x82\x28\x73\xec\x04\ -\x4b\xcf\xcf\x06\x9b\xe2\x94\xa0\x79\xd6\xa0\x77\x6d\x29\x2b\xc0\ -\x38\xc2\xc5\x96\xe2\xb8\x45\x87\x63\xaf\xd8\xd1\x8c\xc4\xf3\xdb\ -\x12\xbc\x19\x6b\x31\xf8\x82\xe9\xea\x43\x63\xb4\x6f\x20\xe1\xcc\ -\xa5\x23\x4b\x59\x01\xba\x59\x7a\xd9\x85\x31\x69\x1e\x9c\x47\x09\ -\xb2\x79\x82\x77\x02\x3f\x44\x36\x70\x4e\xd4\xbf\xef\xb2\x58\xe7\ -\xa6\xf0\xc7\xc4\x6c\xdb\x45\x06\xcd\x8f\xe9\x98\xf2\x36\xa9\xc2\ -\xbd\x06\x53\x5e\x76\x40\x73\x38\xe1\xdc\xbb\x38\xd7\x22\xdc\xec\ -\xe4\x31\x33\xa0\xef\xc1\x23\x64\x15\x37\x03\x5f\x74\x40\xb7\x07\ -\x92\xbd\xdb\x10\x43\xf0\x3b\xd4\xe0\x73\x51\x76\xee\x24\x0b\xfd\ -\x71\x5e\xfc\x82\x85\x06\x63\x9e\x72\x48\x7b\x5f\x24\x81\x73\x4b\ -\x3b\x04\xbf\x59\xd7\xf9\x2e\x13\x35\x9e\x4d\x60\xa4\xeb\x32\x38\ -\xc3\xe2\xc8\x19\xe3\xf8\x19\x7d\x90\x1c\xbe\xe9\x48\x11\x8a\xf5\ -\xda\xc3\x77\xe8\xdf\x0b\xf4\xb3\x6f\x11\xaf\xba\x68\x5b\x8c\xdd\ -\x66\xa4\x0c\x8e\x87\xa2\xcc\xb2\xde\x7e\xa8\x0b\xbd\xdf\x1c\xe3\ -\xdd\x96\xe2\x2b\x85\x84\x30\x85\xb0\x6b\x78\x58\x17\x78\xaf\x91\ -\x84\x4b\xc5\x7c\xb7\xb3\x2f\xdd\x92\x40\x25\xf0\x1e\xad\x0b\x29\ -\xdd\x47\xe7\x28\xa9\x52\x86\x24\xb8\x54\x58\x3e\x9b\x6e\x08\x7c\ -\xb5\x4e\x6f\x8d\x45\x92\x55\x46\x7d\x0f\x8d\x69\x57\x00\x90\x6d\ -\xe1\xb7\x07\xee\xb7\xeb\xf2\x6b\x7d\xca\x15\xa0\x8f\xf6\xf4\xa3\ -\x69\x09\xf6\x80\xe4\x0c\x5e\x43\xeb\xec\xa7\x39\xc0\xf3\x45\x12\ -\x7e\x4f\x24\x47\xf2\x35\x1c\xa6\xcb\x77\x4b\x98\x91\x1f\xd0\xda\ -\x1b\x38\x0d\xf8\x45\xca\x15\x60\x2f\xe0\x74\xe0\x02\x24\x49\x35\ -\xab\x00\xbb\xd1\x3a\xf9\xa3\x09\xc9\x22\x2a\xd6\x19\x44\x15\xc8\ -\x7e\x8b\x07\xe9\x44\x05\x29\xae\x33\xe6\xcb\x3a\xd2\x5f\x48\x61\ -\xa8\xb6\xbb\x91\xe2\x9f\x5c\x52\xe8\xaa\x03\xae\x77\x3d\xdf\x25\ -\x89\xbb\x91\xbd\x7e\x59\x54\x93\xfe\x42\x0a\x8d\xda\xe6\xfa\x14\ -\xb6\xad\x0e\x49\x98\xe9\x34\x0a\x50\x83\x24\x78\x04\xf1\x33\xd2\ -\x9f\x3a\x9d\xd6\x65\x9d\xf3\xe9\xa6\x18\xc1\x8b\xdb\xd5\x72\xcd\ -\x62\x0f\xd2\xbd\x8f\xbe\x5b\x8a\x15\xa0\x32\xc7\xea\x24\xd5\x0a\ -\xf0\x21\x61\x47\xd0\xe5\x84\xf7\x12\xa4\x4d\x09\xd2\xd8\xbe\x0a\ -\xd7\xca\x59\xac\x4d\x0c\xb7\x20\xd5\xbb\xb2\x8d\x1f\x86\x54\xf1\ -\x4c\xa3\x87\xb0\x49\xe7\xff\x7a\xf2\x97\xb7\xcb\xe6\x3c\x6c\xa6\ -\xa5\x20\x76\x52\x23\x47\x99\x2e\x43\xdf\x73\xbd\x8c\x2e\xe6\x50\ -\xf7\x38\xf0\x8d\xc0\xfd\x52\x24\xde\x9f\xb6\xa3\x5c\x07\x20\xa5\ -\xec\xcf\x47\x0a\x40\xe4\x1a\x25\x77\x00\xef\x23\xc1\xae\xd9\xea\ -\xe7\xa8\x48\xb0\x53\x95\xab\x52\xae\x23\x9c\x86\x9f\xfa\x11\x00\ -\x24\x9c\x1b\x54\x80\xd1\xc8\xa1\x0c\x4f\xa5\x4c\x01\xb6\x21\xc5\ -\xa4\x3e\x2c\x30\x45\x96\x23\xa1\xe5\x5e\x3a\x5d\x2c\xd7\x11\xa1\ -\x2c\xc1\x8e\xd5\x4c\x27\x3f\xfb\x78\x1e\xe1\x02\xd2\x69\x9c\xff\ -\x73\x95\xa9\xb3\x85\x9a\x5f\x55\xe5\x3e\x84\xc2\x07\x53\x96\x3c\ -\x6c\x39\xf9\xc7\xa4\x4c\xf8\x20\xdb\xc6\x6c\xb5\x86\x6d\x4a\x90\ -\x41\x3c\x82\x53\x81\xcf\xe3\x0f\x9c\x2c\x88\x45\x06\x03\x9f\x4e\ -\x61\x1b\xcd\x84\x8f\xb5\x81\x21\x3e\x57\xb6\xd1\x62\xc4\xd5\x3d\ -\xbe\x33\x09\xa3\x23\x96\x3a\xb5\xb4\x3e\x8c\x71\x7f\xe0\x2f\xa4\ -\x27\x48\x34\x8e\x70\xf1\xc8\x9b\xb5\x97\x0f\x42\xb2\x81\x6d\x7c\ -\x1c\xa0\x53\x47\x06\x71\x80\xd5\xea\xdf\xc5\x36\xb6\x53\xaf\x00\ -\xef\x00\x67\x19\x8c\xec\x8f\x44\xd6\xd2\x80\x7b\x80\x03\x03\xf7\ -\x6f\x23\x99\xc6\x75\x2a\xe4\xdd\x91\x2c\xa3\x32\x8b\x51\xd8\x37\ -\xb0\x74\x5c\xab\x36\x42\xc6\x2b\x40\xd8\x92\xad\xa7\x75\x1a\xd5\ -\x81\xea\x13\xa8\xed\x60\x7e\x8c\x44\x22\x6d\x41\x81\x5d\x89\x1c\ -\x67\xbb\x49\x97\x7a\x55\x88\x37\xd3\xa6\x04\x55\xaa\xcc\xbd\xf5\ -\x5d\x6a\x03\x4a\xe0\x11\x40\x25\xe1\xf2\x6a\xd3\x53\xd0\xae\xdf\ -\x13\x2e\x51\x5b\x61\xf4\xf2\x09\xc0\x93\x48\x6c\x3e\x93\x67\x75\ -\xf0\x30\x70\x36\xb2\x25\xcd\xdb\x00\x06\x9a\xb4\xf7\x4c\x08\xfc\ -\x6f\x0c\x52\x26\xb6\xa3\xea\x0b\x0d\xd1\xe7\x07\x79\x32\x15\x78\ -\x29\x70\x9f\xd1\x91\xa0\x16\x09\x68\xed\x8d\x3d\xb0\x55\xa9\xf6\ -\x42\xa5\xbe\xcf\x3a\xd2\x19\x5d\xec\x50\x7f\xf7\x12\x24\x34\xdc\ -\x33\xd0\xbb\x32\x74\xdc\x06\xcb\xeb\x68\xbd\xa3\xb9\x06\x49\xff\ -\xda\x69\x7c\x2f\xeb\x8d\x6b\x56\x3b\x66\x50\x8e\xf5\x7f\x2f\x24\ -\xf7\xa1\x4c\x9d\x4b\xeb\x75\x0a\xf1\x0a\xa0\x68\x40\xb2\x86\x8e\ -\x0d\xfc\xef\x60\x24\x77\xb0\xd8\x8c\x1a\x88\xd4\x24\x0e\x0a\xf2\ -\xd6\x3c\xca\xd8\xa0\xc3\xfc\x56\x15\xf4\xbe\xd8\xbd\x86\xbd\x95\ -\x76\x4f\xa4\x96\xf2\x26\xa2\x17\xd0\xea\x72\x0a\x00\xb2\xb7\xef\ -\xe2\xc0\x3c\x5b\xa5\x43\xe6\xf3\x45\x6e\xc7\x55\xb4\x3e\xcd\x74\ -\x2b\x52\xb7\xb8\x3e\x8f\x21\x5b\x87\x94\x83\xe9\xa6\xd3\x47\x3f\ -\xc3\x5e\x68\x56\xa5\xa8\x56\x25\xd8\x06\x7c\xaa\xbf\xdb\x81\xc7\ -\x67\xb8\x9b\x70\x9d\xe1\x9e\x45\x7c\x7e\x6f\xc2\xc5\x2d\xee\x68\ -\x47\x07\x1a\x89\x1c\x28\xbd\x90\xdc\xde\xc2\x9d\x48\xe0\xe8\x26\ -\x64\xc7\x72\xb9\x1f\x01\x5a\xb0\x0c\xf8\x69\x60\x08\xed\xad\x73\ -\x6c\xb1\xb6\x5b\x5d\x4c\xeb\x20\x55\x03\x12\xaa\x6e\x4b\xb5\xd3\ -\x6c\x55\x90\x0d\xea\x03\xe8\xa7\xbe\x02\x53\xc0\xd9\x70\x6e\x2f\ -\x5a\x42\xc8\x1b\x48\x41\x60\x27\x0d\x0a\x50\x87\x94\x85\x09\xee\ -\xf7\x3f\x48\xd7\xe3\x49\xaf\x9f\x2b\x75\xb9\x16\x2c\x51\x3b\x0b\ -\xc9\xbc\x6d\x2b\x32\x3a\x6d\x7d\xaa\x7f\xf7\xa7\x75\x95\xb4\x60\ -\x9e\xc0\xae\xea\x48\xca\x9e\x2d\xb0\xd9\x2b\x80\x60\x05\xb2\x69\ -\x24\xcb\xa8\xfe\xc0\xbb\xba\x52\x48\x12\xe7\x01\xe7\x18\xc2\x3c\ -\x9b\xf6\xd7\x28\xce\xe8\xd2\xb0\x3e\xe0\x28\xea\x4f\x38\xbd\xac\ -\xbb\x8e\x70\x7d\x74\x29\x9c\x75\x19\x7b\x00\x4f\x10\xae\x09\x94\ -\xa4\x0b\xd5\xb6\x87\x31\xae\x3b\x7a\x00\x12\x49\xbc\x87\xf0\xe1\ -\x92\x66\x7a\xf7\x42\xe0\xfb\xf8\xb3\x87\x3f\xc3\x11\x16\x46\x4d\ -\x4c\xf0\x79\x67\x90\xcc\x1e\xff\x5d\x10\x07\xd7\x6c\x24\xa9\xa4\ -\x89\xdc\x47\xd9\x3e\xa6\xab\x8d\xc1\x5e\xfc\x82\xf9\x06\x93\x16\ -\x24\xf8\xac\x57\x8c\x67\xb9\x3c\x9c\xa2\x1a\x09\x78\xcd\xd6\x91\ -\xc0\xe6\x32\xce\xa8\x0d\x30\x17\x98\x44\x07\x6d\x98\x49\x5b\xe6\ -\xeb\x3a\x63\x4e\x1e\x02\xfc\x4b\x97\x50\x2e\x71\x32\x70\xb5\xf1\ -\xbf\x0b\x89\x5e\x30\xda\xc4\x4e\x5d\xce\xd6\xab\xa1\x39\x80\x70\ -\xf0\xa8\x9b\x7e\xd6\x57\x3f\x2b\xd7\xdf\x6c\x2e\xf5\x51\xc0\xac\ -\xbd\x33\x37\x81\x67\x98\x09\x1f\xaf\x3a\xa2\x6b\xda\x2c\xa3\x90\ -\x14\xf8\x05\x84\x8f\x9d\x0f\x26\x93\x2c\x45\x4e\x47\x1f\x59\x6c\ -\x66\xa7\xb1\xaa\xd5\x2d\xc6\xfd\x29\x48\xaa\x95\x2b\x8c\x43\x6a\ -\xfc\x04\x31\xcd\x21\xfd\xa0\x12\x6c\x41\x3c\x80\xf9\xb6\x73\x37\ -\x6a\xaf\xaf\xa1\x93\x95\x9a\x4f\x72\x5a\x5a\x69\xf4\x92\x47\x1c\ -\xd2\x37\x2b\x7c\x2c\x4f\xb0\x23\x8c\x57\xe5\x7a\x87\xdc\x5e\xc2\ -\x55\x48\xa9\xbb\xa3\x28\xd1\x23\xe7\x6c\xb8\xc0\x60\x52\x13\x92\ -\x3a\x16\x17\xb6\x0a\x1f\x3f\x48\x68\x64\x1d\x89\x9c\xa6\xfe\x62\ -\x9e\xe5\xe0\x27\xaa\xdc\xa7\xe3\xbe\x96\x51\xa7\x46\x15\x92\x52\ -\x15\x64\xd6\x0c\x07\x74\xcd\x84\x8f\x8f\x48\x26\x95\x7b\x57\x24\ -\xd4\xfd\xb4\x3a\x95\x72\x2d\x03\xff\xa6\x0a\x38\xd4\x8b\x3c\x8c\ -\x2b\x2d\xc6\x52\x9c\xd3\xb9\x87\x58\x86\xe1\xcb\x12\x68\x77\x5f\ -\xa4\x36\xe2\x63\xba\xaa\xb1\x2d\x01\xb7\xeb\x34\x77\x05\x12\x4a\ -\xae\xf0\xe2\xb6\x33\xb2\xd6\x60\xdc\x6d\x31\xe8\xdd\x69\xd0\xfa\ -\x5f\x02\x73\x6e\x2f\x35\x32\xa7\x12\x3e\x4b\x39\xd8\xf3\xdf\x43\ -\xb2\x8f\x0e\xf7\x62\xce\x8f\x1b\x09\xe7\xda\x45\x39\x8f\x68\x20\ -\xe1\xe2\x92\xd7\x27\xd0\xde\xa1\x48\xd5\xf4\xd5\x79\x8c\xbe\x5a\ -\xe0\xcf\x6a\x20\xfa\x79\xbf\x00\x76\x27\x7c\x9a\xf8\x35\x11\xe8\ -\x4c\x35\x68\x6c\xd5\x79\xda\xe5\xd2\x6f\x18\x92\x3e\xfe\x8f\x3c\ -\x46\xdf\x46\x64\x2f\xe4\x14\x1d\xe1\x3c\xda\x00\xb3\x00\xf5\x06\ -\xda\x77\x1c\x8d\x2d\xe1\xe3\x6e\xc7\x6d\xac\x46\x3c\x98\x73\x90\ -\xdc\xbf\x5c\x5b\xc8\x9e\x43\x72\x1f\x46\xe0\x8b\x4b\xb6\x6b\x58\ -\x35\xb7\x64\x5d\xd2\x8e\xdf\x5f\x6a\x99\x83\x5d\x9e\xeb\xd3\x13\ -\xf8\x02\xf0\x3b\x24\xf8\x93\x2b\x23\x68\x35\xb2\xc3\x68\x2c\xe9\ -\x2e\x8e\x91\x4a\x3c\x48\xfe\x7c\xfd\x5c\xa8\xb4\x18\x63\x7f\x70\ -\xec\xb4\x3a\x44\xa7\x98\xc5\x96\xe9\x2a\xeb\xc3\x58\xa3\x4b\xd0\ -\x2f\x13\xfd\x4c\xc5\x92\xc6\x68\xcb\x72\xea\x7b\x6d\xf8\xdd\x14\ -\xcb\x30\x3c\xca\x61\xbb\xf6\x54\xa7\xd5\x22\x35\x50\x6d\xbd\xff\ -\x53\x24\xd2\xf8\x55\x24\xf6\xef\x87\xfe\x88\x78\xd2\x60\xec\x5b\ -\x05\x98\x69\x4b\xf8\x78\xc2\xb1\x81\x3a\x11\xf8\x53\x1e\x8b\x7f\ -\x0b\xf0\x1f\x35\x5c\x7d\xe2\x47\x4c\x1c\x65\x61\xf0\xe9\x79\xbe\ -\x6f\x4b\xf8\x38\xc2\x51\x5b\x7a\x20\x01\xa5\x19\xe4\xcf\xfc\x79\ -\x03\xb8\xc1\xcf\xfb\xee\xf0\x6f\x83\xc1\x0b\xf3\x7c\xd7\x4c\xf8\ -\x98\xef\xa8\x0d\x15\x6a\xc5\x4f\x45\x02\x49\xb9\x2c\xfe\x8d\xea\ -\xec\x39\xc1\x8b\xcd\x1d\x4e\xb3\x30\xdb\x76\x8c\x9c\xad\xc2\xc7\ -\xa9\x8e\xda\xf0\x39\xa4\xde\xf1\x82\x1c\x46\x5f\xd6\xd5\x3b\x4b\ -\x47\xa8\xdd\xbd\xd8\xdc\xc2\x3c\x4f\xd0\xb6\x7d\xcb\x4c\xf8\x78\ -\xcd\x91\xb3\xa7\x1a\x29\x6e\x31\x3f\x8f\xd1\x57\xaf\xcf\x3b\x0b\ -\x89\x5d\x78\xa3\xcf\x31\x26\x5b\x98\x7e\x58\xe0\x73\xdb\x91\x2e\ -\x93\x1c\x08\xbf\x1f\x52\xd5\x6c\x26\x12\xa9\xcc\xe4\x11\xfe\x0d\ -\x48\xcd\x03\x1f\xe4\x49\x00\xdd\x91\x60\x4a\x90\xf1\x8f\x06\x3e\ -\x37\x13\x3e\x56\x3a\x30\xc0\xca\x91\xac\xa4\xbb\x94\x5e\xae\x5a\ -\x41\xab\x90\x94\xf0\x23\xf1\x7e\xfe\x44\xf1\x23\x8b\xb3\x65\x04\ -\xf6\x84\x8f\xb8\x87\x57\x56\x20\x21\xdb\x8b\xd4\xe8\xcc\x95\xe1\ -\x5b\xa3\xcb\xcc\xc9\x14\x77\x6f\x63\x49\xa2\x8a\xf0\x29\xa5\x33\ -\x09\x27\x7c\xac\x25\x7e\xd9\xb6\x41\xea\x74\xfa\x2b\xb2\x0f\x30\ -\x57\x88\x77\xae\x2a\xe6\x70\x2f\x9e\xe2\xe0\x6a\x8b\x10\x4c\x87\ -\xcc\x95\x0e\x86\xfe\xe3\x91\xfd\x83\xdb\xf2\xac\xf7\x3f\x40\x62\ -\x0e\x7b\x7b\xb1\x14\x0f\xd5\x79\x7a\x64\x36\xee\x1e\x37\xe4\x7a\ -\x9c\xce\xe9\x2b\x68\x7d\x82\x48\x70\x1a\x78\x17\x49\x54\x39\x9c\ -\xf6\x45\x29\x3d\x1c\xe0\xe6\x3c\x0a\x70\x63\xcc\x9e\x3f\x18\x49\ -\x1a\x79\x1b\x49\x47\xb3\xcd\xfb\x9f\x00\x0f\xa8\xf0\xab\xbd\x38\ -\x8a\x8f\x3d\xb0\x6f\xb8\xd8\x16\xc3\x01\x53\x81\x84\xa0\xcf\x41\ -\xe2\xf7\x36\x8b\xbf\x49\x6d\x90\xc7\x1d\x2c\x31\x3b\x14\xe5\x9d\ -\x5c\x01\xd6\x6b\x0f\x34\xcf\x21\x7a\x40\x7b\x67\x14\xf4\x41\x2a\ -\x96\x9d\x89\xd4\x29\xb0\xf1\x28\xa3\x0a\xb0\x54\x0d\xcd\x81\xb4\ -\x54\x3e\x2b\x23\x99\xc2\x0f\x65\x3a\x0d\x6d\xc7\x61\xc5\xb1\xae\ -\xe0\xa5\x1a\x66\xac\xf5\x1b\x91\x3d\x04\xef\x47\xa4\xb7\x27\x12\ -\x48\xba\x96\xdc\x11\xbc\xec\x16\xef\x8f\x55\xd1\xb2\xf9\x86\xd9\ -\x52\xf1\x2e\x15\x20\x4b\xb7\x9f\x1a\x9b\x73\x70\x58\x55\xb5\xbc\ -\x0b\x28\xc0\x2a\x64\x73\xc5\x64\xbd\x7f\x98\x78\x9b\x49\xb3\x25\ -\x5f\x0b\x39\x72\xaa\xd5\xe8\x1b\x4a\xb2\x35\x81\xb3\x0a\x50\xa5\ -\xab\x8c\x37\xfd\x14\x10\xc6\x34\x5a\x5c\xc4\x71\xf7\xf9\x65\xab\ -\x7a\x14\x2a\x4f\x53\x46\xf1\xcf\x07\xe8\x85\xe3\x72\xf4\x5d\x45\ -\x01\x96\x20\xbb\x70\xb2\xa7\x79\xc7\x41\xa6\x0d\xc2\xef\xa8\xa9\ -\x73\x2b\xad\xcf\x61\xf4\x0a\x60\x2c\x09\x5d\x0e\xbb\x25\x81\xae\ -\xa4\x00\x2f\x38\xa2\xd3\x1d\xf1\xe5\xa7\x31\x92\xd7\x16\xdb\xa4\ -\x64\x15\xc0\x15\x32\x3a\xd4\xd6\xa8\xe5\x9d\x86\xfa\xbe\xd9\x6a\ -\x22\x1b\x71\x5c\x4c\xdb\x2b\x40\x18\x5b\x90\x84\xd3\x67\x90\xdc\ -\xbf\xfa\x14\x4c\x09\x65\xea\x9f\x58\xe3\xc0\xc6\xe9\x72\x7e\x80\ -\x24\x98\x5d\x41\x4b\x19\xf8\xe6\x14\xb5\xab\x09\x09\x78\xf9\x5a\ -\xc3\x1e\x1e\x1e\x1e\x1e\x1e\x1e\xb1\xf0\x7f\x25\xe7\xa9\x18\x4c\ -\x88\xc3\xd9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x0a\xf6\ +\x00\x00\x06\xaa\x49\x44\x41\x54\x78\x9c\xed\x9d\x4d\x8b\x1c\x55\ +\x14\x86\x9f\xae\x9e\xcc\x98\x19\x25\xc1\x0f\x30\x41\x31\x5b\x09\ +\x2e\x44\x82\x08\x51\x04\x71\x9b\x2c\x5c\xe8\x42\x41\xdc\xa8\xc4\ +\x9f\xe0\xc2\x9d\x3f\xc0\x85\x0b\xdd\x4a\x36\xae\x05\x05\x89\x20\ +\x08\xee\x55\x04\x3f\xc0\x4d\xe2\x42\x49\x30\x99\x9e\xcc\x74\x4f\ +\xb7\x8b\xd3\xa7\xeb\xa3\x6f\x55\xf5\x24\x3d\xd3\x75\xef\xbc\x0f\ +\x24\x53\xe9\xa9\x99\x5c\xea\xbe\xf7\x9c\x73\xcf\x5b\xd5\x0d\x42\ +\x08\x21\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x84\x10\x22\x59\ +\x7a\x0b\xbe\x76\xd4\x4c\x56\x3d\x80\xe3\x48\x46\x37\x26\xdf\xe9\ +\xda\x78\x92\x24\x74\x81\xd7\x81\x3e\xab\x5d\x85\x7b\xc0\x78\x7a\ +\xdc\x5b\xf1\x58\x92\xa6\x47\x7e\x81\x2f\x00\x17\x81\x33\xc0\x26\ +\x36\x01\xab\x58\x81\x63\xe0\x5f\xe0\x77\xe0\x2b\xe0\x16\x12\xc1\ +\xa1\xe1\x13\xfc\x3a\x70\x09\xbb\xf8\x43\x56\x7f\xb1\xfb\x58\x24\ +\xba\x01\x7c\x8a\x89\x21\x23\x8f\x0a\x62\x49\xf4\x80\xe7\x81\x2b\ +\xc0\x5d\x6c\xe2\xbb\x92\x77\xc7\xc0\x49\x2c\x02\x7c\x0c\xfc\x8d\ +\x22\xc1\xd2\xc9\x80\x97\xb1\x8b\x3d\x21\x2f\xbc\xba\xf0\xa7\x0f\ +\xec\x00\xa7\x81\x0f\x80\x87\xe8\x96\x40\x93\x20\x03\xce\x02\xa3\ +\xe9\x71\xd7\x70\x11\x9c\x03\xde\x05\x4e\x4c\x5f\x97\x08\x96\x44\ +\x06\x6c\xd1\xed\xb0\xda\x07\xee\x00\xcf\x02\x6f\xa1\x28\xb0\x54\ +\x32\xba\x3d\xf9\x8e\x8b\xe0\x15\xe0\x32\x96\xb2\xba\x18\xb1\xa2\ +\x23\xa6\x8b\x98\x01\xdb\xc0\x6b\xc0\x8b\x48\x04\x4b\x21\xc6\x0b\ +\xb8\x07\xbc\x0d\x9c\x47\x22\xb8\x6f\x62\xbb\x78\x3d\xf2\x06\xd5\ +\x7b\xc0\x13\xac\xae\x61\x95\x04\xb1\x09\x00\x6c\xb2\x87\xd8\xb6\ +\xf0\x0a\x70\x0a\x15\x86\xf7\x4c\x8c\x02\x00\x1b\xf7\x5d\xe0\x49\ +\xe0\x7d\x60\x63\xfa\xba\x44\x70\x40\x62\x15\x00\xe4\x3b\x83\x67\ +\xb0\x9a\xc0\xa3\x80\x44\x70\x00\xd6\x56\x3d\x80\xfb\xc4\x45\xf0\ +\x12\x66\x20\x7d\x49\xdc\xa2\x5e\x26\x0b\x6d\xef\x63\x17\x00\xe4\ +\xdb\xc3\xcb\x98\x08\xae\xad\x76\x38\x9d\xc2\x23\x62\xad\x89\x96\ +\x82\x00\x9c\x5d\xe0\x4d\xe0\x3f\xe0\x67\x64\x1c\xed\x93\x3b\xbb\ +\xb5\xd7\xa2\x07\x7c\x76\x84\x83\x3a\x4c\xdc\xcc\x9a\x00\x83\x15\ +\x8f\xa5\x0b\x0c\x80\xeb\xc0\xb7\xc0\x2f\xd4\x88\x20\x25\x01\x40\ +\xae\xf6\xfe\xaa\x07\xd2\x01\x7a\x58\x84\x9f\x00\x5f\x00\x5f\x13\ +\xb8\xa7\x22\xa5\x14\x00\xf9\x0e\x60\xb4\xd2\x51\x74\x87\x5d\x6c\ +\x8e\xdf\x00\xfe\xc0\x6e\xac\x29\xd5\x05\xa9\x09\xc0\xd1\x56\xd0\ +\xe8\x63\x8b\x61\x03\x78\x15\xf8\x07\xdb\x35\xcd\x16\x48\xaa\x02\ +\x10\x39\x7d\xac\x69\xf6\x1c\xe6\x9f\xdc\x04\xbe\x07\xbe\x81\xc5\ +\x05\x30\xe1\x78\x57\xd4\xa9\xb0\x81\x75\x4f\xdf\x01\x9e\x02\x3e\ +\x5f\x54\x00\x1b\xd8\xdd\x38\xb1\x8a\x20\xd6\x71\x3b\xcb\x1a\xff\ +\x3e\x56\x17\xec\x62\xcd\xb3\x3f\xdb\x04\x30\xc1\x42\xc8\xaf\xc0\ +\x5f\xd4\x57\xd7\x8b\xe6\xdc\xba\xf3\x0e\xfa\x7a\xd7\xff\xdf\x7b\ +\xfd\xfe\x61\x8e\x67\x0c\x3c\x86\xad\xfc\x21\x26\x86\x17\x9a\x04\ +\xe0\x93\xbf\x0d\x7c\x82\x15\x0f\x22\x6e\x4e\x02\x1f\x61\x42\x18\ +\x02\x8f\xb7\x45\x80\x3e\x70\x1b\x2b\x22\x8e\xb2\xc7\x1e\x7b\xc8\ +\xee\x2a\x7b\xd8\x0e\xc0\x23\xc6\xa4\x4d\x00\x3d\xac\xa3\x34\x46\ +\x0f\x65\xc4\x8c\x77\x01\xd7\xb1\xfb\x28\xf6\x99\x2e\xee\xa6\x55\ +\xed\xad\xd5\x6d\x34\xf9\xa9\xf0\x00\x79\x77\xb0\x07\x6c\xb7\x85\ +\x75\x8f\x00\x7e\x2c\xe2\xe6\x41\xf2\x42\xbe\x55\x00\x33\x95\x14\ +\x7e\x40\xc4\x89\xcf\xdd\x16\x26\x80\xf1\xf4\xeb\x9d\xb6\x08\xe0\ +\x29\xa0\xf8\x4b\x44\xbc\x6c\x72\x80\x14\xe0\x85\x83\xac\xd5\x74\ +\xd8\xa2\xfc\x30\x50\x6b\x0d\x30\x22\x8f\x00\xda\x9a\xc5\x4b\x31\ +\x05\xf8\xce\x6f\x9f\x16\x01\x64\x7e\xd2\x21\x0e\x4c\x1c\x2d\x9b\ +\xe4\x76\x70\xab\x00\xc0\x22\x80\x52\x40\xfc\x78\xf4\xde\x22\x7f\ +\x90\x66\x44\x4b\x11\xe8\xfd\x63\xa5\x80\xf8\x29\x0a\xc0\x0b\xc0\ +\xc6\x08\xe0\x27\x15\x6b\x00\x11\x2f\x2e\x80\x4d\x6c\xe2\x5d\x00\ +\xad\x11\x60\x88\xf9\x00\x22\x7e\x8a\xef\x05\xe1\xf5\xdd\xa0\x4d\ +\x00\x83\xe9\x89\xa0\x14\x10\x2b\xbe\x03\xe8\x53\x4e\x01\x3b\xc0\ +\xb0\x6d\x17\xb0\x8d\x6e\xb0\x4c\x85\x35\xf2\x14\xe0\x36\xff\xa8\ +\xa9\x06\x70\x01\x68\xe5\xa7\x41\xb5\x0b\x38\x00\xc6\x8b\xa4\x00\ +\x3f\x16\x71\xe3\x3e\x40\xc9\xe3\x69\xdb\x05\xc8\x07\x88\x1f\x9f\ +\xbb\x4d\x72\x01\xcc\x3c\x9e\x45\x6a\x80\xe2\x2f\x11\xf1\xe2\x6d\ +\x60\x77\x02\x07\x50\x2f\x00\x19\x41\xe9\xe1\x29\x00\x6c\x6e\x5b\ +\x23\x80\x8c\xa0\x34\xa8\xa6\x00\x98\xf6\x00\xa0\x5e\x00\x32\x82\ +\xd2\x63\x8b\x5c\x0c\xb3\xb9\x6d\x8b\x00\x4a\x01\xf1\x53\x6c\x03\ +\x17\x8d\xa0\xd6\x1a\x40\x46\x50\x1a\x54\x8d\xa0\x59\x1b\x18\xc2\ +\x02\x90\x11\x94\x16\x45\x01\x94\x8c\x20\x68\x8e\x00\x32\x82\xd2\ +\x21\xc3\x52\x40\x71\x71\xef\xf8\x37\x42\xc8\x08\x4a\x83\xaa\x11\ +\xe4\x35\xc0\x0e\xb6\xc0\x1b\x77\x01\x32\x82\xd2\xc1\x8d\x20\x6f\ +\x02\x6d\x33\x5d\xdc\x75\x35\x80\x8c\xa0\xb4\x28\x1a\x41\xa5\xa7\ +\xbd\xda\x52\x80\x1f\x8b\xb8\xa9\x1a\x41\xb3\xb9\x6d\xda\x05\xc8\ +\x07\x88\x9f\x6a\x17\xd0\xdf\x5e\x7f\xb6\xbb\x6b\xab\x01\x8a\xbf\ +\x44\xc4\x8b\x1b\x41\x25\x27\x10\xc8\x42\x02\xf0\x26\x90\xba\x80\ +\xe9\x50\x34\x82\xa0\x30\xb7\x75\x11\xa0\xe8\x03\xa8\x10\x8c\x97\ +\x90\x11\x54\x32\xf9\x42\x02\x90\x11\x94\x1e\x41\x23\x08\xea\x23\ +\x80\x8c\xa0\x34\x08\x19\x41\x33\x1f\x00\xc2\x02\x90\x11\x94\x0e\ +\x21\x23\xa8\x31\x05\xc8\x08\x4a\x8b\x3a\x23\xa8\x31\x05\xc8\x08\ +\x4a\x8b\x90\x11\xd4\x9a\x02\x64\x04\xc5\x4f\x9d\x11\x74\x97\xa9\ +\x11\x04\x61\x01\xc8\x08\x4a\x8b\xaa\x11\x74\x87\xc2\xe2\x0e\xd5\ +\x00\x32\x82\xd2\xa2\xd6\x08\x82\xfa\x14\xa0\x36\x70\x3a\xd4\x1a\ +\x41\x30\x2f\x00\x57\x89\x9c\xc0\xf8\x69\x35\x82\x40\x11\xe0\x38\ +\x50\x35\x82\x7c\x71\x67\xb3\xbf\x0a\xc8\x08\x4a\x8f\xe0\x13\x41\ +\x4e\x28\x02\xc8\x08\x4a\x83\xba\x27\x82\x4a\x73\x5b\x15\x40\xe9\ +\x9e\x71\x91\x04\x55\x23\xa8\x34\xb7\xa1\x08\x30\x42\x1f\x0e\x91\ +\x02\x75\x4f\x04\x35\xa6\x80\x6a\x0d\xa0\x14\x10\x2f\x21\x23\x68\ +\xce\xe4\xcb\x2a\x3f\x20\x23\x28\x1d\x42\x46\xd0\x42\x11\x40\x46\ +\x50\x3a\x54\x8d\xa0\xd6\x1a\x40\x46\x50\x1a\xd4\x19\x41\x03\x2a\ +\x1e\x4f\x68\x17\x20\x23\x28\x1d\x6a\x9f\x08\xa2\xa6\x06\x90\x11\ +\x94\x16\x8d\x46\x10\x84\x53\x80\xda\xc0\xe9\xd0\x68\x04\x41\x38\ +\x05\xc8\x08\x8a\x9f\x85\x8c\x20\x08\x6f\x03\x15\x01\xd2\xa1\xf6\ +\x89\x20\xaa\x07\x53\x8a\x8d\x02\x11\x3f\x55\x23\x68\xae\xc5\x9f\ +\x55\x8e\x8b\xfb\x44\x15\x82\xf1\xb2\x90\x11\x04\x65\x01\xcc\xdd\ +\x32\x2c\xa2\xa7\xf6\x89\x20\xa7\x9a\x02\xd4\x06\x4e\x83\xc6\xb7\ +\x86\x2b\x52\x8d\x00\x32\x82\xd2\xa0\xce\x08\x9a\x9b\xdb\xac\xf0\ +\x82\x8c\xa0\x74\xa8\x33\x82\xe6\x6c\xfe\x6a\x0a\x18\x02\xbb\x87\ +\x3a\x34\x71\x54\xf4\x69\x78\x22\xc8\xc9\x28\x1b\x07\xb7\xc9\x9d\ +\x40\xa5\x80\xb8\x99\x90\x0b\x20\xc3\xde\x1a\x6e\xce\xe3\x59\xc3\ +\x42\xbe\x17\x0b\x27\x81\xd3\xc0\x2d\xd4\x08\x8a\x15\x7f\xab\xff\ +\xb3\xc0\x29\x6c\xd2\xd7\x81\x9b\xe4\x02\x98\x2d\xee\x35\xe0\x3a\ +\xf0\x34\x16\xfa\x1f\x06\x3e\x9c\x9e\x5c\xfc\x90\x61\x11\x1f\x8f\ +\x02\x1b\xc0\x1e\xb6\xc0\x6f\x50\x2e\x08\x01\x13\xc0\x77\xc0\x79\ +\x4c\x39\x7b\x58\x04\x78\xe4\x48\x87\x2a\x0e\x83\x11\x56\xd3\x9d\ +\xc0\x16\xf7\x0f\xa1\x93\xd6\x80\x1f\x81\x73\xc0\x25\x4c\x19\x43\ +\x74\x3f\x40\x0a\x14\x3f\x28\xf2\x2a\xf0\x1b\xf9\x56\x7f\x86\x7f\ +\x92\xf4\x04\xb8\x00\x5c\x04\xce\x50\x6e\x20\x88\xb8\xf0\x30\x7f\ +\x1b\x4b\xef\xd7\x80\x9f\xc8\xe7\xb9\x44\x68\x82\xd7\xc9\x3d\x64\ +\x11\x27\xbe\xed\x1b\x16\xfe\xdd\x3a\x9f\xc5\x2d\xa1\x48\x83\x1e\ +\xcd\x9f\x0a\x13\x9c\x70\x89\x20\x0d\x14\xc1\x85\x10\x42\x08\x21\ +\x84\x10\x42\x08\x21\x84\x10\x42\x08\x21\x8e\x3b\xff\x03\x69\x93\ +\xf2\x2c\x16\x87\x31\x05\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x23\xfb\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\x00\x00\x00\x00\x00\xf9\x43\ +\xbb\x7f\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ +\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xe2\x02\x0c\x00\x2b\x16\x25\xea\xb4\xc9\x00\x00\x20\x00\x49\x44\ +\x41\x54\x78\xda\xed\x7d\x79\x90\x9d\x65\x9d\xee\xf3\x9c\x73\xfa\ +\xf4\x92\x74\x3a\xe9\xec\x5b\x87\x24\x40\x02\x09\x48\x64\x13\x51\ +\x59\x95\xcd\x01\x41\xd4\x71\x46\xc5\x2b\xe8\x0c\x38\x5a\xcc\x8c\ +\x63\x39\x35\x55\xde\xa5\xee\x9d\xa9\xba\xd7\x9a\x9a\x3b\x5a\xea\ +\x8c\x0a\x28\x20\xcb\xa0\xac\x57\x50\x64\xcd\x40\x24\x84\xc5\x40\ +\x48\x42\x42\x16\x48\x48\x77\x96\xde\x92\xde\x4e\x9f\x73\x7e\xf7\ +\x8f\xf7\x79\xd3\x5f\xbe\xfe\xbe\xd3\xdf\x49\xba\x3b\xdd\xc9\x79\ +\xab\x4e\x25\x95\x9c\xf3\x2d\xef\xfb\xbc\xbf\xe5\xf9\x2d\x2f\x50\ +\x19\x95\x51\x19\x95\x51\x19\x95\x51\x19\xc7\xe3\x48\x8f\xe2\xbd\ +\x32\x00\xa6\x03\xa8\x05\xd0\x0d\x00\x24\x2b\x2b\x70\x1c\x01\x60\ +\x01\x80\xcb\x48\x9e\x41\x32\x47\xb2\xdd\xcc\x0a\x95\x25\x38\x3e\ +\x00\x30\x03\xc0\x27\x49\x7e\x09\xc0\xe5\x00\xa6\x00\xd8\x0c\x60\ +\x4f\x65\x09\x8e\x7d\x00\x4c\x05\xf0\x69\x92\x37\x00\x38\x17\x40\ +\x23\x80\x26\x00\x59\x92\x2d\x00\x9a\x2b\xcb\x70\xf4\x46\x66\x84\ +\xc1\x35\x53\x3b\xff\xcb\x00\xce\x01\x90\x0a\x48\x84\x3f\x05\x90\ +\x22\xd9\x6d\x66\x1b\x47\xe9\x7d\x6b\x00\xd4\x91\xac\x05\x50\x0d\ +\x20\x0b\xa0\x4a\xcf\xea\x9f\xcd\xf4\xc9\x03\xe8\x07\x90\x33\xb3\ +\x5e\x00\xbd\x00\xba\x00\xe4\x2a\x00\x48\x3e\xd9\xa7\x91\xfc\x33\ +\xed\x7c\x46\xa8\x85\x6b\x01\x64\x48\x7e\xcf\xcc\xb6\x03\x28\x0c\ +\x33\x00\xab\x48\x66\xb4\xc8\x0d\x66\x36\x1f\xc0\x7c\x01\x73\x1a\ +\x80\xc9\x00\x26\xea\x59\xab\xf4\x8c\x45\x2d\x7c\x0f\x80\xfd\x00\ +\xda\x48\xee\x35\xb3\x66\x92\xef\x01\x78\x4f\x40\xe8\x37\x33\x0f\ +\x92\x62\x05\x00\x83\x47\x5e\x13\x95\x8a\x58\x7c\xe8\xdf\xe6\x09\ +\x04\xed\x24\xef\x34\xb3\xf5\xc3\xf8\x5e\x4d\x00\x4e\xd4\x9f\xf3\ +\x00\xcc\x24\x39\xdd\xcc\xfc\xc2\x4f\x02\x30\x41\x5e\x49\x36\xf0\ +\x9c\x7e\xf7\xe7\x04\x82\x2e\x00\x9d\x00\x5a\x01\xec\x95\xdd\xf2\ +\x3e\x80\x1d\x00\xde\x05\xb0\x49\x6a\xac\x58\x01\xc0\xa1\xa3\x2f\ +\x95\x4a\xbd\x6e\x66\xbf\xd4\x04\x9f\x21\xb1\x1b\x1e\xb3\x00\xdc\ +\x0c\x20\x4f\xf2\x76\x33\xdb\x7a\x10\x21\x24\xcc\x2c\xe9\xfd\xaa\ +\x00\x4c\x26\x39\x03\xc0\x42\x33\xfb\x20\x80\xb3\x00\x7c\x40\x20\ +\x40\x19\xae\x67\x95\x80\xd1\x10\xf3\xbb\x02\x80\xcd\x24\x5f\x37\ +\xb3\x97\x48\xbe\x01\x60\x3b\x80\xbd\x66\xd6\x39\xcc\x92\x6c\xfc\ +\x1a\x81\x66\x96\x23\xb9\x0e\x40\x9f\x44\xef\xf4\x98\x7b\xd6\x00\ +\x38\x49\x0b\xf8\x2a\xc9\xbe\xb8\x1d\x15\x5e\x40\x92\x59\x92\x93\ +\x01\x9c\x0a\xe0\x33\x24\x6f\x01\x70\x03\xc9\x8b\x48\x9e\x24\xa3\ +\x73\xb8\x09\x87\x94\xa4\xc8\x62\x92\x1f\x03\x70\xa9\x80\x56\x0f\ +\xa0\x8b\x64\x97\x9e\xb3\x78\xdc\x02\x20\xb0\x50\x79\x92\xcd\x12\ +\xa5\xd3\x01\xcc\x8e\xb9\x6f\xbd\xec\x82\x89\x00\xb6\x93\x6c\x97\ +\x38\x8e\x1c\x37\xdf\x7c\x33\xd6\xac\x59\x33\x05\xc0\xb9\x24\xaf\ +\xd7\xe7\x12\x2d\x44\xa3\xa4\x4d\xd5\x08\x2c\x7e\x10\x04\x59\x81\ +\x77\x8a\x00\xbe\x40\xa0\x9b\x23\xdb\xa0\x3d\x9d\x4e\xe7\xcd\x0c\ +\x73\xe6\xcc\x41\x7d\x7d\x3d\xf6\xef\xdf\x7f\x7c\xb9\x19\x1e\x08\ +\x24\xa7\x93\xbc\x95\xe4\x7a\x92\x56\xe2\xd3\x29\xbe\x60\x4a\xdc\ +\xe2\x91\xac\x21\x79\x32\x80\x2f\x00\xb8\x97\x64\xc7\x10\xd7\x1c\ +\xed\xcf\xfb\x24\x7f\x0c\xe0\x6a\x92\xf3\x05\x44\x24\x91\x68\xc7\ +\x1c\x0f\x10\x78\xc1\x1c\x80\x0e\x92\x4d\xb2\x07\x62\xf5\xaf\x99\ +\xbd\x2b\x9d\xba\x27\x42\x8c\x66\x24\x76\xbf\x45\xf2\x16\x92\x67\ +\xc7\xd8\x16\x91\x5a\x29\xe4\xea\x15\x03\xff\xc6\x04\xbf\x43\x42\ +\x89\x52\x0f\xe0\x4c\x92\xe7\x03\x98\x43\xf2\x1d\x92\x7b\xc2\xf3\ +\x52\xa6\x8d\x33\xee\x8c\xc0\x30\x10\x66\x02\xb8\x0e\xc0\x05\x31\ +\x13\x4c\x00\xfb\xcd\xec\x31\x00\x0f\xc9\xba\xce\x87\xbe\x77\x32\ +\xc9\xcf\x00\xb8\x0a\xc0\x29\xd2\xc3\x49\xc7\x7e\x00\x5b\xcc\x6c\ +\x0b\xc9\xf7\x01\xb4\x00\x68\xd5\x02\x7c\x90\xe4\x55\x72\x0f\xc3\ +\xa3\x07\xc0\x93\x7a\x96\x93\x01\x2c\x4d\x38\x6f\x04\x30\x17\xc0\ +\xd5\x00\x4e\x00\xf0\x6b\x00\x0f\x07\x88\x2f\x96\x52\x71\xc7\x0c\ +\x00\xcc\x0c\x24\xa7\xc8\x50\xfa\x14\x80\x85\x31\x93\x75\x00\xc0\ +\x33\x00\x6e\x03\xf0\x07\x79\x11\x28\x16\x8b\x20\x39\x41\x52\xe3\ +\x93\x00\x3e\x03\x60\x71\x82\xc9\xcb\xc9\x5d\x6b\xd6\x9f\xdb\x01\ +\x6c\x01\xb0\xdd\xcc\x9a\x01\xec\x20\xd9\x0a\x60\x29\xc9\xa5\x31\ +\xd7\xe8\x06\xb0\xd6\xcc\xee\x07\xb0\x8f\xe4\x12\x81\x60\x9e\x6c\ +\x99\xd9\x02\x4d\xd5\x10\x64\xd8\x85\x00\xa6\x90\xac\x07\xf0\x38\ +\xc9\x0d\xc5\x62\xf1\xf8\x89\x83\x90\xbc\x86\xe4\x73\x24\x7b\x63\ +\x74\x66\x3f\xc9\x47\x49\x7e\x2a\x6a\x32\x49\x5e\x46\xf2\x7e\x92\ +\xbb\x87\xd0\xbd\x45\x5d\xab\x8b\xe4\x4b\x24\xff\x11\xc0\x27\x64\ +\x7f\xd4\x93\xac\x93\xba\xc8\x04\xae\x7d\x83\x44\x74\x31\x74\xad\ +\x02\xc9\x2d\x00\xfe\x5e\x0b\x9d\x25\x59\xa7\x45\x5c\xa0\x77\xfa\ +\x17\x92\x6f\x90\xec\x8e\xf8\x7d\xd4\x3b\xb6\x90\xfc\xbf\x24\x97\ +\x8f\x15\x1b\x60\xa4\x17\x3e\x25\x36\xf0\xdf\x49\xb6\x96\x98\x98\ +\xe7\x65\xc5\xd7\x84\x7e\x9f\xd1\x02\xfd\x96\x64\x7b\x82\x09\xde\ +\x48\xf2\x07\x24\xaf\x53\xd4\x71\x9e\xc8\x9e\xb8\xdd\x79\x32\xc9\ +\x1f\xeb\xb7\x16\x01\x80\x17\xa5\x6a\x52\x83\x5f\x8d\xf5\x24\x4f\ +\x20\x79\x2e\xc9\xbf\x24\xf9\x60\x82\x67\x34\x92\x7b\x48\xde\x2d\ +\x50\xa7\xc3\x20\x18\x6d\x40\x64\x46\x58\xfc\xd7\x6b\x57\x5f\x1a\ +\xa3\xaf\x8b\x00\xde\x02\xf0\x33\x00\x4f\x9b\x59\xaf\x37\x8c\x48\ +\x36\xea\x77\x5f\x06\x70\x76\x89\x85\x0c\x5f\x6f\xbf\x99\x6d\x01\ +\xf0\xfa\x10\xe0\x9c\x0c\xe0\x32\x00\x1f\x8d\x98\x07\x93\x01\xfa\ +\x0a\x80\xb7\x23\x0c\x51\x33\xb3\xfd\x24\xf7\x9b\xd9\x36\x49\x8a\ +\xad\x00\xde\x04\xf0\x11\x00\x2b\x82\x24\x52\x68\x4c\x03\x70\xa5\ +\xd4\x1e\x49\x3e\x2d\xbe\x84\xba\xee\x31\xe3\x05\x64\x49\x9e\x09\ +\xe0\x2f\x01\x9c\x1e\x61\x3d\x17\xa4\x97\x1f\x00\x70\xbb\x99\xb5\ +\x05\x16\xa7\x0a\xc0\x15\x62\x08\xcf\x49\xb8\xf8\x07\xfd\x73\x91\ +\x43\x69\x89\x65\xca\x80\x2b\x86\x00\xb0\x0c\xc0\x8d\x00\xce\x8f\ +\xb1\x1f\x5e\x04\xf0\x1f\x00\xd6\x27\x90\x74\x3d\x00\x76\x02\x58\ +\x0b\x17\x2b\x98\x28\xaa\xb9\xb6\x04\xf1\x35\x57\x7c\xc5\x96\x54\ +\x2a\xb5\xcb\x8e\x92\x3b\x30\x92\x44\xd0\xa9\x00\xfe\x0b\x80\x8b\ +\xf5\xc2\x51\xd6\xf5\x43\x00\x7e\x20\xa3\x2c\xf8\xdb\xab\xf4\xdb\ +\x8f\x96\xb1\xf8\x94\x7e\x9f\x21\x56\xf0\x23\x00\xce\x04\xd0\x28\ +\x52\xa9\xd5\x1b\x8e\x24\x17\xc0\xc5\x20\xae\x88\x91\x4c\xbd\x00\ +\xee\x12\x00\xfa\x86\x72\x73\xb5\x76\x79\x00\x07\x14\x30\xda\x24\ +\x09\x32\x49\x04\x51\xd4\xa8\x15\x61\x94\x01\xb0\x2b\x93\xc9\xb4\ +\x14\x8b\x45\x3b\x56\x00\x50\x45\xf2\x0a\x00\x37\xe8\x25\xa3\xac\ +\xeb\x67\x01\xfc\xc2\xcc\xd6\x04\x74\x5f\x16\xc0\x72\x92\xdf\x14\ +\x70\xea\x0f\x83\x9d\xab\xd1\xa2\xce\x11\x10\xe6\x02\x58\x48\x72\ +\x8e\x6c\x8c\x2e\x92\x97\x02\xf8\x92\x2c\xfa\xf0\x1c\xf4\x03\x78\ +\x09\xc0\xbd\x66\xb6\xc1\xfb\xeb\x65\x8c\x7e\x79\x1d\xef\xc3\x05\ +\xa0\xce\x2f\xf1\xdd\x1a\xb8\x38\x45\xae\x58\x2c\xee\x0c\x82\x74\ +\x5c\xdb\x00\x24\xcf\xd0\x0e\x9c\x15\xf3\x95\xcd\x00\xee\x31\xb3\ +\x17\x82\xee\xa2\x16\xea\x2b\x00\x3e\x56\x42\x87\xe6\xb5\x68\x4c\ +\x08\x88\x65\x32\xe4\x2e\x05\xf0\x12\xc9\x17\x00\x9c\x27\x70\x44\ +\xb9\x6f\xbb\xcc\xec\x3e\x00\xeb\x02\xcf\x55\xee\xfb\x57\x49\xd7\ +\x4f\x92\xea\x49\x95\xf8\xfa\x0c\x71\x05\x1d\x92\x3a\xef\x1d\x0b\ +\x46\xe0\xa5\x12\xdf\xb5\x11\xff\xb7\x4f\xfa\xf5\x25\x91\x33\x7e\ +\x34\x92\xfc\x88\xc8\xa2\xe9\x11\xbf\x2b\x88\x2b\x68\xd6\xc2\xcd\ +\x94\xc8\x27\xe2\x43\xce\xc1\x77\x6c\x92\x44\x59\x0e\x97\xa5\x54\ +\x17\xa3\x96\xd6\x8a\xf8\x69\x39\xdc\x39\x35\xb3\xe5\xca\x80\xba\ +\x3c\x21\x50\x97\x90\xbc\xc6\xcc\xde\x06\xb0\x7b\x28\xb5\x33\x96\ +\x01\x90\xd6\xae\xff\xb0\x08\x9f\x28\x15\xf3\x1a\x80\x07\xe1\xe2\ +\xe9\x41\x7a\xf7\x02\x00\x9f\x15\xc9\x12\x35\x5a\x05\x9c\x55\x5a\ +\xa8\x26\xe9\xd7\xd9\xfa\x73\x6e\x09\x42\xc6\x8f\x29\xfa\xc4\x89\ +\xee\x75\x00\x1e\x4e\xa5\x52\xdb\x0e\x53\x1f\xa7\x01\x9c\x2e\x29\ +\xf6\xd9\x18\x20\xc7\x49\xaa\xd3\x48\x7e\x56\xf6\xd0\x0b\x21\xfb\ +\x62\xdc\x00\xa0\x41\x86\xd5\x89\x31\xc8\xdf\x07\x60\xa5\x99\x3d\ +\x2b\x4b\x1b\xd9\x6c\x16\xfd\xfd\xfd\xf3\xc4\xf0\x7d\xa2\xc4\xb5\ +\x5b\x01\xfc\xde\xcc\xee\xd1\x75\xa0\x85\x3f\x83\xe4\xb9\x70\x59\ +\x47\x27\xca\x68\x6c\x90\x3d\x51\xce\x38\x00\xe0\x59\x33\xbb\xef\ +\x30\xb3\x95\xab\x00\x9c\xa2\x9d\x7f\x63\x8c\xe1\xeb\x3d\x8c\xa8\ +\x67\xab\x83\x0b\x1e\x6d\x03\xf0\xb6\x99\xed\x19\x0d\xc7\x60\x58\ +\x8d\x40\x92\xf3\x48\x7e\x43\x6e\x5f\x78\x02\x3a\x01\x3c\x67\x66\ +\xbf\x92\x0d\xe0\x1c\xf7\x62\x71\x1a\x5c\x7e\xe0\x95\x43\xec\x98\ +\x6e\x00\xdb\x48\xbe\x09\xa0\x5d\xff\xb6\x9f\xe4\x2e\x89\xed\x67\ +\x25\x21\x5a\x34\xc1\x93\x31\x10\x63\x60\x02\x51\xdc\x0a\xe0\x69\ +\x5d\x27\xe5\x8d\xb1\x6c\x36\x8b\x74\x3a\x8d\x42\xa1\x30\xd4\x0e\ +\x5e\x4e\xf2\x2f\x00\xfc\x59\x84\xf1\xea\x9f\xa3\x57\xdc\x42\x8d\ +\x3e\xa9\x88\x0d\x49\x00\x7b\x49\xee\xd4\xf7\xc7\x0d\x00\x52\x24\ +\x57\x00\xb8\x45\x06\x50\x78\xec\x04\x70\x0f\x80\x27\x02\x2f\x96\ +\x96\x3f\x7e\xab\x8c\xb5\xa1\x24\x52\x57\xc0\xd7\xf6\xa3\x4f\xb6\ +\xc4\x1e\xb9\x5f\xcd\x24\x77\x88\x63\xe8\xc1\x40\xda\xd7\x50\xef\ +\xda\x0f\xc0\x94\x43\xd8\x2e\xc0\xa2\x50\x28\x0c\xb5\xf8\x04\xb0\ +\x82\xe4\x17\xe5\x5a\xce\x8a\xf9\x4e\x97\x44\xfb\x6d\xfa\xbb\x37\ +\x12\xc3\x20\x68\x94\xbd\xb3\xee\x08\xec\x90\xd1\x67\x7d\x01\xcc\ +\x25\xf9\xb7\xe2\xc5\xa3\x28\xd0\x95\x21\x97\x88\x9a\xac\x6f\x94\ +\x88\x11\x84\x79\xfe\x8d\x24\xaf\x2d\x43\xaf\x5e\xa6\xfb\x76\x95\ +\x11\xcb\xdf\x06\xe0\xaf\x01\x2c\x4d\xa7\xd3\x43\x81\x26\x03\x17\ +\x4c\xfa\x9e\x28\xde\xb8\x6b\xf6\x91\x7c\x4a\x09\xb2\x90\x9d\xf0\ +\xa3\x12\x79\x0c\xeb\xa5\x4a\xea\x46\x7a\xe1\x52\xc3\x24\xfa\x49\ +\xf2\xf4\x18\x5a\x15\xa2\x49\x9f\x43\xa0\x06\x40\x49\x1d\x67\x93\ +\xbc\x0e\xc9\xc3\xab\xf3\xa4\xf7\x23\xbf\x9f\x4a\xa5\x0e\x21\x68\ +\x24\x7a\xe7\xc4\x78\x23\x71\x63\x01\xc9\xef\x92\xfc\xaf\xc5\x62\ +\xf1\xb2\x38\x0e\x40\xf7\x5a\x40\xf2\x56\x00\x37\xc5\x48\x3d\xaf\ +\xf3\x57\x02\xf8\x21\x80\x7b\xf5\x6f\x6b\x01\xfc\x3f\xcd\x4b\x94\ +\x78\x99\x05\xe0\x0a\x92\xe7\x8c\x0b\x15\xa0\xa0\xcf\x55\xd2\xe5\ +\xf5\x11\xfa\x76\x95\xc4\xff\x5b\xf2\xe3\x41\xb2\x01\xc0\x9f\x00\ +\xf8\xf3\x04\xd6\x7b\x10\xb0\x5b\xe1\xf8\xf9\x41\x29\x63\x81\x38\ +\x42\x0a\xc0\xc5\x24\x6f\x84\xe3\xe5\xab\xcb\x7c\xa5\x6a\x79\x15\ +\xb3\x04\x9e\x2d\x11\xae\xd9\x07\xa4\xf3\xaf\x2b\xb1\xf8\xbd\xb2\ +\x4b\x7e\x08\xe0\xf7\x41\x9d\x4e\xb2\x5b\xf3\x74\x5a\x84\xcd\x50\ +\x23\xf5\xb0\x45\xee\xf2\xd8\x96\x00\x7a\x91\x45\x88\x4f\xc0\x7c\ +\x07\xc0\x5b\x66\xd6\x13\x10\x9d\x0b\x45\xd0\x64\x63\x7c\xfe\x28\ +\x13\x98\x66\xb6\x1c\x2e\x37\x60\x90\x78\x54\xee\x40\x46\x46\xe8\ +\x17\xa4\x93\x27\xc6\x2c\x4c\x9b\xf4\x7c\x3e\xe6\x9d\x1a\xe5\x95\ +\x7c\x9d\xe4\xd5\x24\x67\x65\xb3\x07\x1f\xf5\x54\x00\x9f\x03\x70\ +\xbd\xdc\xd0\xa8\xd1\x07\x60\x35\x80\x5f\x00\xf8\x8d\x88\x1e\x7a\ +\x89\x62\x66\x3b\xcc\xec\x11\x6d\x8a\xa8\x77\x9d\x2a\x55\x31\x77\ +\x18\xd7\x69\x44\x24\x40\x46\xee\xcf\xd5\x70\xd9\x32\xa9\x90\xf5\ +\xdb\x0c\xe0\x11\x00\x2f\xfb\x5d\xa4\xd4\xed\xab\x01\x7c\x1c\x83\ +\xb3\x70\x4c\xc6\x4f\x3e\x40\xf4\x04\xb5\x4d\x03\xc9\x9d\x24\x5f\ +\x91\x31\x15\xa6\x6a\x9b\x48\xfe\x2f\x49\xa4\x38\x1d\xba\x51\x62\ +\x79\x87\x76\x5f\x43\x04\xa0\xfd\xfc\x4c\x87\x4b\x2f\xcf\x17\x0a\ +\x85\xf5\x22\xac\x6e\x05\xf0\xc5\x12\x8b\xdf\xaf\xc5\xbf\x0d\xc0\ +\x9d\x66\x96\x0b\x3e\x67\xe0\x79\xbb\x14\x97\x68\x8a\x31\x08\xf3\ +\x00\x5a\x49\xbe\xad\x6b\x8e\x3d\x1e\x80\x64\x56\x62\x76\x76\xc4\ +\xee\xef\x07\xf0\xba\x99\x6d\xc2\xa1\x25\x55\x53\x00\x7c\x48\x80\ +\x89\x92\x26\x77\xc0\x55\x13\x7f\x3a\x42\x7c\x4f\xd1\x0e\x9c\xe9\ +\xad\x64\x33\x43\x2a\x95\x82\x6a\x01\xbe\x29\x2a\x79\x52\xcc\x23\ +\x77\x00\xf8\x2d\x80\xbb\xe1\xca\xbe\x3e\xa6\x34\xb3\xf3\x63\x54\ +\x51\x46\xcf\xf2\x79\x65\xfc\xd6\xe9\xd9\xa7\x85\x40\xeb\x9f\xdd\ +\x47\x12\x7f\x02\xe0\x31\xcf\x29\x44\x91\x3a\x24\x7b\xcd\xec\x09\ +\x79\x42\x33\x71\x68\xe0\x2b\x0b\x60\x89\x48\xb5\x87\xc6\x32\x11\ +\xe4\x8b\x3e\x22\x01\x60\x66\xaf\xc9\x3d\xeb\x0f\x19\x39\x0b\x63\ +\x26\xbc\xdd\xcc\x1e\x27\xb9\x50\xd7\x5d\x12\x21\xa9\x16\x00\x38\ +\x8b\xe4\x4e\x33\xdb\x97\x4a\xa5\xaa\xcc\xec\x2c\xf9\xe0\xd7\xc5\ +\x88\x7d\xc8\x5d\x7c\x04\x2e\x3f\xef\x0d\x33\xeb\x17\xa9\xd4\x21\ +\x95\x70\xbe\xb8\xf9\xa8\x71\x0a\x5c\x2a\x9a\x4f\x07\x4f\x45\x48\ +\x8c\x9c\x74\xf6\xcf\x01\xfc\xce\xcc\x3a\xfd\xc2\x47\x91\x3a\x0a\ +\x01\xbf\x02\x97\xbb\x70\x01\x06\x47\x3e\x1b\x75\xdf\xe9\xde\x2d\ +\x1d\xab\x00\x38\x45\x08\x0e\x03\x20\x47\x72\x83\x99\xbd\x17\xb0\ +\x76\xa7\xea\xfb\x8d\x31\x5c\xfc\x5b\x24\xb7\x8b\x98\x79\x41\xe2\ +\x31\xbc\xa0\x4d\x70\x79\x76\x6b\x01\xec\x2b\x16\x8b\x9e\x84\xb9\ +\x06\xf1\x11\xc4\x2e\x2d\xce\xcf\x00\xac\xd6\xe2\x43\x2a\xea\x51\ +\x00\xdb\xc4\x25\xc4\x19\xb2\x55\x43\x18\xab\xfd\xa2\xb9\xef\x12\ +\xd5\xdd\x91\x90\xca\xcd\x69\x83\xbc\xab\x39\x49\x45\x78\x04\x4b\ +\x01\xec\x12\x19\x36\xe6\x00\x50\x0d\x97\xf5\x1a\x45\x7d\x76\x8a\ +\x00\xea\x0b\xe8\xbe\x79\x70\x01\x99\x89\x11\xba\x7f\xaf\x99\xad\ +\x94\x85\xdc\x22\xcb\xf9\x9a\x88\xef\x4e\x91\x5e\x3e\x0f\x2e\xd9\ +\xf2\x6b\x70\xe1\xe3\x52\x59\xc2\x2b\x01\x7c\x1f\xc0\x2a\x33\xeb\ +\x0f\x18\x63\xa6\x9d\xfa\x07\x49\x88\x66\xb8\x5c\x84\xf9\x65\xcc\ +\x41\x5e\x3b\xf9\x36\x00\x0f\x98\x59\x47\x84\x6d\x12\x3b\x94\x55\ +\xf4\x9a\x80\x1d\xf6\x28\xea\x65\x0c\xae\x57\xa6\xd3\x98\x02\x40\ +\xda\xcc\xa6\xcb\xa5\x8b\xda\x11\xdb\x25\x5a\x83\xa2\x72\xb6\xc4\ +\x7a\x5d\x04\x00\xf6\x89\x2e\xee\x05\xd0\xa7\x9a\xbb\x2d\xda\x19\ +\xe1\x67\x9d\x0f\xe0\x1a\x92\x1f\x87\x8b\xba\xc5\xed\xce\x22\x80\ +\xa7\x00\xdc\x0e\xe0\x29\x33\xcb\xf9\x6c\xe3\x83\x24\x7c\x5d\x1d\ +\xba\xbb\xbb\x0b\x92\x28\xad\x24\xfb\xe1\x32\x90\x97\x95\x50\x27\ +\x41\xb5\xb2\x5a\x3e\xfe\x23\x66\xd6\x26\x7b\xc4\xbb\xa4\x49\xa4\ +\xc0\x56\x00\x6b\xa4\x82\xc2\x00\x98\xa0\xe7\x98\xa1\xb9\x18\x53\ +\x00\x98\x28\x5d\x9e\x89\xe1\xd6\x37\xc1\x05\x59\x82\x00\x98\x29\ +\x5d\x5a\x1b\x03\x80\x3f\x4a\x15\x00\x2e\x34\xfa\xac\xc8\x9c\xf9\ +\x21\xb1\x5c\x27\x09\x60\x25\x16\xbf\x1b\xc0\x1b\x00\x7e\x04\xe0\ +\x99\xaa\xaa\xaa\xbe\x5c\x2e\x77\xc8\xe2\x03\x40\x77\xf7\x21\x92\ +\x75\x87\xc0\x52\x2b\x5b\x63\x28\x00\xb4\x8a\xe4\x7a\xdc\xcc\x76\ +\x7b\x77\x34\xb0\xbb\x93\xcc\xe3\x6e\xb8\xd4\xb3\x8e\x88\xff\xab\ +\xd3\x86\x99\x36\xd6\x78\x00\x5f\x20\x79\x42\x0c\x00\xda\x25\x01\ +\xba\x43\x6e\xe7\x74\x2d\x28\x23\xc4\x68\xb3\x3e\x85\x80\x0a\x79\ +\x4c\x6e\x5b\x21\xe2\xfe\x75\x88\x4f\x19\xeb\xd5\xae\xfa\x67\x00\ +\xcf\x98\x59\x7b\x2e\x97\x4b\x24\x96\xcd\xac\xa8\x6b\x27\xc9\x48\ +\x6a\x40\xf9\x99\x4b\x51\xa3\x05\x03\x51\xce\xf0\x26\x9d\x23\xdb\ +\x69\x4c\x01\x80\xda\x1d\x71\xc5\x9e\x5d\x66\xb6\x2b\x40\xfe\xc0\ +\xcc\xea\x84\xe4\xaa\x88\xdd\xdf\xa6\xdd\x57\x0c\x7c\xbf\xdf\xcc\ +\x56\x49\xc4\xee\x2e\xe3\xd9\xba\x01\x3c\x0f\xe0\x67\x66\x76\xbf\ +\x99\xb5\xc7\xb9\x62\x11\x63\x1e\xc9\xcf\x03\xb8\x08\xc9\xf2\x11\ +\x27\xeb\xbb\x97\x93\x3c\xb8\x48\xd5\xd5\xe5\x92\x8f\x68\x97\x2a\ +\x88\xaa\x1e\xad\x89\x31\x9a\x8f\x1e\x00\xc4\xff\xd7\x28\x7d\x3b\ +\x15\x63\x75\x07\xb3\x5b\x88\x81\xae\x1c\x51\xcc\xdf\x4e\x44\xa7\ +\x43\x15\xa5\xfb\x76\x60\xe8\xf6\x2c\x05\x01\xe9\x19\x00\xdf\x37\ +\xb3\xbb\x42\x3b\x7b\x28\x40\xcf\x55\x1a\xfb\xdf\xc2\x55\x19\x27\ +\x1d\x1f\x84\xcb\x60\xbe\xdc\xe7\xfa\xf7\xf5\xf5\x95\x33\x95\xd5\ +\x9a\x97\x9e\x18\x00\x78\x69\x5b\x3f\xdc\x00\xc8\x1c\xa1\x04\xa8\ +\x95\x45\x1e\x09\x00\x92\xbb\x65\xd0\x79\x77\x71\x1a\xa2\x73\xfd\ +\x8a\xf2\x00\x5a\x02\xb3\x92\x22\x99\x29\x16\x8b\x67\xc1\x05\x99\ +\xe6\x0f\xe1\x86\x15\x05\xb8\x27\xe5\x87\xaf\x46\x79\xf5\xf9\x73\ +\x48\x7e\x0e\xc0\x57\x31\x38\x91\x35\x58\x54\x1a\x95\x5b\x90\x92\ +\x6b\xfb\x79\x01\xf0\x37\x81\x39\xb2\x12\x1b\x28\x5d\x2c\x16\x67\ +\x89\x48\xbb\x18\xc0\x25\x31\x3b\x3d\xa5\x79\x9e\x11\x03\x90\xa3\ +\x06\x00\x2f\x9a\xd2\x31\x3a\xb8\x35\xa0\xbb\xab\xf4\x12\x93\x62\ +\x16\xaf\x35\x20\xe6\xab\x00\x9c\x60\x66\x67\xc2\x65\x18\x5d\x22\ +\x7f\x98\x43\xb8\x62\x1b\xe0\x32\x8d\x9f\x0e\x4c\x74\x52\xb1\xff\ +\x29\xb8\xc0\x54\x1c\x3b\xd9\x25\x1d\xed\x77\x6b\x75\x84\xb1\x76\ +\x21\x5c\x1b\x99\x77\x64\xb7\x58\x89\x79\x9f\x6d\x66\x27\xc3\xa5\ +\xae\x5f\x08\x57\xff\x30\xb5\x84\xa4\xae\xd7\x5c\xbf\x33\x96\x00\ +\xe0\x27\x23\x15\x43\x70\xf4\x86\xee\x35\x11\xd1\xa1\x59\xd3\x04\ +\x77\x93\xac\x35\xb3\xd3\xc4\xb5\x5f\x4f\x72\x56\xc2\xe7\x29\x00\ +\xd8\x69\x66\x6b\xf5\x3c\x49\x77\xff\x74\x92\x9f\x14\x85\x7c\x52\ +\x09\xe9\xf2\xa6\xb8\x84\xa9\x70\x19\xcf\x51\xde\xcf\x04\xd9\x03\ +\x5b\x45\x08\x85\x17\x2b\x45\x32\x63\x66\x27\xc1\x45\x42\x3f\xaf\ +\x3a\xc1\xa1\x54\x71\xaa\x0c\xa3\x74\x54\xdd\xc0\x8c\x44\x3b\x63\ +\x76\xa4\x85\x5e\xc2\xb7\x66\x8b\x62\x45\xab\xe0\xf2\xfa\x6e\x20\ +\xf9\x21\xb9\x8a\xe5\x94\x7f\x67\x01\x9c\x47\xf2\xaf\x01\xfc\x13\ +\x5c\x89\xd8\x50\xbb\x7f\xaa\x32\x79\x6e\x86\x8b\x66\x86\x41\xe9\ +\x45\xf8\x3a\x00\xbf\x04\x70\x9f\xa4\xdd\xdf\x09\xa0\x51\x3b\xb6\ +\x49\xaa\xe4\x1d\x33\x0b\xa6\x75\xa5\x74\x8f\x2f\x92\xbc\x50\xae\ +\x5d\x63\x42\x3b\xcc\x6f\xb6\xea\xb1\x06\x00\x96\x78\x81\x41\x00\ +\x90\xb1\x13\xa5\xc7\xab\x48\x7e\x40\x7e\xf7\xc9\x12\xf7\xe5\x1a\ +\xa8\x69\xb9\xa4\x57\xc3\x95\x97\x3f\x45\xb2\xab\x04\x00\xe6\x2a\ +\xbb\xe8\x0b\x70\xc9\xa4\x51\xef\x66\x12\xe5\x3f\x87\x8b\x21\xec\ +\x31\xb3\x22\xc9\xfb\xa5\xca\xae\x45\x74\x96\x71\x93\xa4\xd7\x6e\ +\x33\xfb\x9d\x9e\xeb\x43\xca\x7c\xbe\x44\x40\x48\x97\x39\xcf\x55\ +\x88\x4f\x34\x1d\x93\x00\x38\x24\xa6\xaf\x40\x78\x3a\xe6\xfb\x55\ +\x70\x89\x11\x7e\xa7\xc4\xe9\x7a\xaf\x2a\xf2\x9a\x8c\x70\x50\x26\ +\xad\xc5\xfc\x82\x24\xc0\x33\x25\xc4\xfe\xe5\x70\xd9\xbb\x67\x94\ +\xb8\xd7\x66\xed\xfa\xbb\xfc\xe2\x4b\x5c\xad\x52\x14\x74\x21\x5c\ +\xe4\x31\x1d\xa3\x0a\xf6\x90\x7c\xcf\xcc\x3e\x49\xf2\x4f\x45\x81\ +\x67\x0e\xd3\xfb\xca\x90\x4c\x0f\x77\xa6\xf0\x70\xc4\x02\x4a\xf5\ +\x01\x0c\x4f\x68\xa1\x84\x61\x94\x64\x47\x74\x03\xb8\x53\x04\xd3\ +\x85\x52\x19\xe1\x1d\x58\x0d\x97\x61\xbc\x13\x03\x4d\x21\x0e\x59\ +\x1c\xe5\xe6\xdd\x2c\x31\x1c\xb7\xf8\x6f\x4b\xec\xff\x00\x40\x9b\ +\x2f\xde\x0c\x44\xf7\x5e\x03\xf0\x2f\x6a\x5e\x71\x4e\x0c\x4b\x7a\ +\x2d\x5c\x13\xab\x19\x12\xf7\x55\x47\x30\xcf\x45\x0f\xc0\xb1\x04\ +\x80\x70\x9f\x9d\xf0\x82\x32\xc4\xae\xf5\x93\xcc\x1f\xc6\x7d\x5a\ +\xe5\xd6\x3d\x03\xe0\x49\x33\xdb\xa3\x88\x61\x83\xe8\x60\x44\xec\ +\xc0\x6b\xd4\x86\xf6\xff\x60\x20\x8d\xbc\x51\x0d\xa8\x6e\x90\x8d\ +\x11\xa7\xf3\x37\xc2\x65\xf2\xdc\x6b\x66\xad\x31\x1e\x45\x27\x80\ +\x17\xcc\xec\x51\x92\xd3\x25\xe6\x19\xda\x18\x53\x91\xac\x4d\xdd\ +\x7e\x01\x6e\x97\xd4\xc3\x29\xa1\xdf\x18\xd4\xb6\x76\xac\x01\x20\ +\x2f\x23\xc7\x62\xc4\x3a\x43\x96\x74\x5f\x99\x2f\xd1\x2e\x6a\x78\ +\x15\x5c\xc8\x76\x15\x5c\xc8\xb6\x00\xe0\x3f\xb5\x83\x17\x21\xba\ +\xb7\x4f\x13\x5c\x93\xea\x75\x66\xf6\xa4\x44\xe8\xc7\x01\x7c\x45\ +\xa2\x98\x31\x3a\xdf\x8b\xfd\x07\xe0\x42\xc4\xa5\xdc\xc9\x7d\x7a\ +\xae\x99\x70\x85\x2d\x33\x13\x48\xc2\xb0\x44\x6b\x86\x0b\x53\xaf\ +\x36\xb3\x6e\x92\xd7\xc8\x15\x0d\x03\x20\xec\x55\x1d\x75\x00\x78\ +\x54\xee\x8f\x71\xb9\xc2\xba\xae\xa0\x17\x4e\xfa\x12\x2d\xda\xf1\ +\xbf\x82\x0b\x10\xed\x32\xb3\x60\x60\x69\x97\x99\xfd\x5a\xbb\xef\ +\xe6\x08\xbd\x9a\xd6\x2e\xff\x36\x5c\xfd\xc1\x24\xb8\x66\x13\xcb\ +\x4a\x2c\xca\x56\xdd\xef\x36\xb9\x94\x16\x08\x1b\xc7\x3d\xe7\x1f\ +\xe1\x6a\x1d\x7c\xcd\x61\xd2\x39\xed\x96\xb1\x7a\x0f\x80\xff\xd4\ +\xbb\x9d\x85\xe8\xde\x86\xa6\x79\xeb\x19\x6b\x12\x20\x07\x17\xed\ +\x8b\x9a\x9d\x6a\x1c\x1a\x49\xeb\x17\x4b\x56\x8a\xc9\xea\xd1\x0e\ +\x7c\x19\x2e\x90\xf3\x9a\x99\x05\xa3\x83\x41\x1d\x5c\x00\xb0\xde\ +\xcc\x1e\x54\xcf\xc0\x8f\x44\x70\x0c\x19\xb8\xec\xdd\xaf\xcb\x68\ +\x8c\xf3\xb9\xfd\xce\xbf\x1f\xc0\x1d\x6a\x53\x57\x4e\x6d\x5e\x8b\ +\xde\x2b\x9f\x70\x4e\x57\xc1\x85\xa8\x57\x9a\xd9\xcb\x70\x0d\xa9\ +\x7d\x49\x5b\x5c\x27\x15\xdf\xaf\x78\x4c\x49\x80\x3e\x3d\x58\x94\ +\x04\xa8\x15\xf5\x9b\x15\x50\x7c\xfa\x55\x5c\x6a\x93\xaf\xfa\xb9\ +\x57\x7a\xde\x57\xf6\x58\x88\x30\x08\xab\xa0\x57\xcd\xec\x0e\x35\ +\x6f\x3a\x37\x66\x77\x9f\x33\x84\x38\xde\x24\x91\xff\x4b\x33\xdb\ +\x5c\xc6\xe2\x93\xe4\x09\xb2\xf8\x9b\x12\xcc\xe7\x7e\xb8\xd0\xf1\ +\xbd\xf2\x50\x76\x05\xde\xcf\x07\xd6\xa2\x1a\x64\x16\xa5\x0e\xf7\ +\x8c\x35\x00\x84\xe9\xde\x43\x0c\x31\x33\xf3\x25\xdc\x39\x7d\x67\ +\x5f\xc0\x20\x0b\x5f\xab\x43\x22\xf1\x3e\x33\x3b\xa4\x41\x64\x26\ +\x93\x41\x3e\x1f\x6b\x3b\xb6\x91\x7c\x4e\x46\xd8\x94\x18\xcb\x9e\ +\x31\x06\x1f\xe4\x25\x3c\x24\x51\xbc\xa1\x8c\xc5\xf7\xbc\xc3\x4d\ +\xb2\xf6\xe7\x0f\xe1\xc9\x98\xa8\xee\xef\xfb\x5d\x1f\x21\x31\xe7\ +\x21\x3a\xee\xef\x83\x5c\xfb\x86\x1b\x00\xa9\x23\x04\xc0\x01\xa1\ +\x38\x0a\x00\x75\x70\xc1\x8b\x9a\xc0\x76\xe9\xd4\x4b\x58\xc4\x02\ +\xd5\xc0\xe5\xfd\xb7\x84\x25\x4a\x89\xc5\xf7\xa3\x19\xae\x09\xe3\ +\x03\x70\x5c\xfc\x50\xee\x92\x3f\x17\x60\x1b\x5c\x82\xe8\x9d\x00\ +\xd6\x89\xe4\x49\x2a\xf6\x4f\x25\xf9\x55\xb8\xf8\x81\xcf\x70\x62\ +\x82\xfb\x66\x48\xe6\x1a\x1b\x07\xc5\x7c\x7c\xdf\xa0\xc9\x25\x00\ +\x60\x63\x06\x00\x66\x56\x34\xb3\xce\x50\xc2\x67\x70\xd4\x93\x9c\ +\x1d\xd2\xcb\x39\xed\x82\x28\x24\x4f\xd6\x44\x4e\x00\xc0\xda\xda\ +\x64\xd5\x5c\x5a\xb0\x82\x99\xad\x83\xeb\xe9\xf3\x04\x92\x25\x4f\ +\xee\x85\x2b\xcf\xba\xdd\xcc\xde\xf4\x06\x5f\x92\xc5\x27\x79\xba\ +\x28\xe4\xaf\x22\x79\xee\x20\xe1\x92\x61\xbe\x02\x60\x49\x5b\x5b\ +\x5b\x58\x5a\x4c\x45\x7c\x46\xf2\xbe\x91\xd8\xfd\xc3\x21\x01\x3a\ +\xe1\x62\xf8\x51\x00\x98\x02\xe0\x44\x35\x67\x0c\x8e\xdd\x70\x41\ +\x92\xbe\x88\xeb\x35\x8a\x11\xac\xee\xe9\xe9\x49\x0a\xc4\xe0\xdf\ +\x77\xa9\xed\x4c\x92\x1f\xb7\x01\x78\x39\x78\x3e\x41\x82\x1d\x9c\ +\x16\x48\x6f\x91\x47\x11\x97\xa4\x51\x8c\xe1\x47\x26\xc2\x75\x4f\ +\x59\x8c\x43\x63\x22\x53\x44\x81\x37\xc4\xd8\x46\x1b\xc6\x22\x00\ +\xbc\xd5\xbe\x13\xd1\x2d\x4d\xa6\x88\x96\xad\x8f\xb0\x98\xdf\x8e\ +\xd8\xa5\x84\x0b\xce\x9c\x87\xe8\xb4\xec\xa1\xc6\x24\x35\x6d\xbc\ +\x02\xc9\x32\x79\xa6\xc2\x15\x60\x7e\xdc\x8b\xdd\x21\x5a\xb5\xa5\ +\xe0\x1a\x4b\xde\x02\x17\xc9\x9b\x5e\xc2\xbd\xdb\x29\x83\xad\x37\ +\xe2\x1d\x1b\x00\x9c\x65\x66\xf3\x02\x36\x43\x13\x5c\x4e\x40\x63\ +\x09\x00\xec\x1d\x09\x00\x1c\x71\x69\x98\x32\x60\xae\x93\xf8\x8a\ +\x22\x57\x7e\x87\x40\x43\x08\x59\xce\xb3\xe1\x38\xf8\x49\x11\xcf\ +\x63\xea\x1c\xda\x56\xc6\x63\x4c\x54\xa0\xe5\x46\xb8\x34\xf2\x24\ +\x94\x6b\x9d\xdc\xc2\x59\xea\x19\xdc\xee\x5d\xd4\x74\x3a\x1d\xa5\ +\x0a\x4e\x26\x79\x3d\x80\x6f\x20\x3e\x6e\x9f\xc3\x40\x8f\xa1\xdd\ +\xda\xf1\x71\xdf\xdd\x2d\xef\xa3\x5f\xa0\xbf\x16\x2e\x1c\x1d\x36\ +\xcc\x5b\xcc\xec\x5e\xb8\xe2\x91\x9e\xb1\x26\x01\xfc\x4b\xbf\x85\ +\x88\x6a\x5d\x19\x36\x0b\x43\xa2\x6d\x87\x5e\xa6\x33\x02\x2c\x93\ +\xe1\x52\xa3\x67\x96\x01\xce\x1a\x92\x1f\x06\xf0\x2d\xb8\x66\xd4\ +\xe5\x8e\x8b\x00\xfc\x4f\xe5\x01\x9e\x50\x5b\x5b\x1b\xd5\x10\x62\ +\xba\xfe\xff\xdb\x88\xcf\x12\xce\xc1\xe5\x0c\xfc\xc4\xcc\xbe\x6b\ +\x66\x3f\x32\xb3\x57\x62\xbe\x7b\x36\xc9\x33\x75\x7a\x19\xc4\x66\ +\x2e\x41\x74\xb8\xb7\x4d\x35\x03\xad\x23\x21\x01\x8e\x18\x00\x4a\ +\xdc\x8c\xeb\x66\xe1\xfb\xfe\x2d\x54\xeb\x34\x3f\xde\x87\xab\x84\ +\x89\x1a\x93\xcd\xec\x3c\x33\x9b\x93\xe0\xf9\x6a\x25\xc2\xbf\x03\ +\xd7\x4e\x36\x6c\x53\x04\xff\x5e\x4a\xbc\x2f\x02\xf0\x35\x92\xdf\ +\xee\xed\xed\xbd\x38\xec\xce\x92\xfc\x2b\xb8\xb2\xb3\x09\x25\x54\ +\xe1\x8b\x70\x85\x27\x0f\x02\xe8\x24\xf9\x47\x15\xb0\x22\x66\x5e\ +\x4e\x80\x4b\x3d\x5b\x01\x57\xcd\x1c\x65\xf5\x1e\x18\x49\xf1\x3f\ +\x2c\x2a\x40\x3b\xb7\x5e\x0d\x22\x9a\x62\x74\xf7\x26\x19\x7e\xfd\ +\xd2\x01\xbe\xfe\x7e\x1e\x06\x47\xf3\x52\xaa\xef\x7f\x0f\xf1\x0d\ +\x14\xbc\x97\xe1\xc5\xfe\xe5\x18\x9c\x68\xc2\x80\xa8\x7d\x0a\x2e\ +\x32\xd8\x10\xb3\x88\x3e\x70\xb3\x50\xb6\x44\x4e\x46\x62\x3d\xc9\ +\x2b\x45\x35\x9f\x84\xf8\xcc\xa7\x83\x65\xe0\xe2\x30\x40\xd2\x24\ +\x2d\xce\xd6\x7d\xc3\xbf\xed\x54\xb6\xf2\x87\xd5\x1e\x2f\x9c\x5d\ +\x9d\xd7\xbc\x3d\x06\x17\x2b\xe8\x1f\xab\x00\x30\xb8\x2a\x9e\x73\ +\xe0\x78\xf6\x70\x7c\x7e\x2a\x5c\x46\xcd\xab\x01\xa3\x28\x2f\xdb\ +\x61\x11\x06\xa7\x61\x11\xc0\x09\x24\xb7\x92\x5c\xa9\xef\x0e\xa2\ +\x99\xa5\x37\xbf\x09\x97\x00\x12\x67\x30\xb6\xc2\x25\x68\x7e\x57\ +\x24\xd3\x2c\x81\xae\xa6\x84\x5d\xb0\x14\xae\xf3\x58\x0e\x2e\x51\ +\xf4\x1f\x64\xcc\x66\x62\xac\xfd\x35\x00\x7e\x0a\xe0\x61\x33\xdb\ +\x1b\x74\x4f\x05\xca\x46\x5d\x33\x7c\xcf\x02\xc9\x49\x6a\x9b\x73\ +\x62\x84\xf8\xef\x85\x2b\x63\xbb\x47\x12\xb3\x38\x66\x01\xa0\x5a\ +\xbe\x15\x70\xa5\xcc\x61\xa4\x57\x69\xf7\xad\x09\xb0\x5f\xfd\x24\ +\xbb\x04\x80\xf3\x63\xa4\x4a\x2f\xdc\x21\x0d\xdb\x42\x6d\xdb\xa8\ +\x64\x8e\x6f\xc1\xe5\x04\x64\x4a\x18\x59\x0f\x03\xf8\x1e\x80\x4d\ +\x66\xb6\x83\xa4\x4f\xd4\x6c\x42\x7c\xf9\x78\x5a\x52\x69\xb9\x8e\ +\xa6\x59\x88\xe8\x34\xb6\xbc\x0c\xbe\x1f\x02\x78\xc8\x37\xbb\x0e\ +\xf4\x00\x30\x9f\x11\x4d\xf2\x13\x88\xee\x02\x32\x47\xde\x44\x94\ +\xee\xef\x14\x43\x79\x1f\x46\xf0\xf4\xb1\xe1\xea\x12\x66\x00\xe6\ +\xab\x7e\x7e\x5a\xc4\x8e\xec\x06\xf0\x7e\xb0\xf5\x19\xc9\xa2\x44\ +\xe3\x92\x18\x02\x64\x8a\xc0\xb3\x1a\x03\x25\x53\x35\x5a\xfc\x9b\ +\xe0\x32\x71\xea\x62\xe8\xdd\x3d\x9a\xbc\x3b\xe0\x4e\xfc\xf0\x00\ +\xda\xad\xf3\x8a\x7b\x02\x16\x7a\x26\x66\x5e\x1a\x10\x5d\x93\xe8\ +\x77\xfe\xeb\x70\x25\x64\x8f\xf8\x9d\x4f\xb7\xea\xc1\xef\xf5\xe9\ +\x3d\x2f\xc3\xe0\x66\x12\x19\x81\x20\x1d\x63\x53\xac\x86\x4b\x43\ +\x7b\x1b\x23\x38\x86\xb3\x4d\x5c\xb5\xac\xe5\xd3\x22\x26\x6d\xa2\ +\x40\xb0\x0e\x03\x01\x0d\x93\x18\x9c\x00\x57\x58\x11\x76\xdd\x6a\ +\xb5\x00\x6f\x93\x7c\x57\xf3\x7b\x36\x80\xbf\x92\xce\xaf\x8b\xd1\ +\xf9\xad\x62\xf8\xee\x00\xb0\xc6\x97\x81\xfb\x9d\x99\x4a\xa5\xf6\ +\x02\xd8\x6a\x66\x07\x14\x4a\x9e\x11\xb3\xc8\xa5\x7a\x0b\x6e\x87\ +\x0b\x1b\xdf\x6f\x66\x3b\x82\xd7\x8f\x70\x93\x0d\x2e\x18\xd5\x84\ +\xe4\x39\x7d\x3b\x75\xed\xdf\x23\xba\x5e\x70\x4c\x02\xa0\x53\x06\ +\xd4\x95\x11\x13\x5a\xab\x5d\xf3\x5a\x80\x13\x28\xca\x5a\xee\x87\ +\x6b\x8e\xd0\x18\xa3\x93\x67\x9b\xd9\x4e\xf5\xca\xf9\x3a\x5c\x9d\ +\x40\x4d\x09\x9d\xff\x04\x80\x7f\x85\xeb\x4c\xd2\x17\xa0\x8b\xfd\ +\x9f\x86\x81\xba\xc5\x4d\xf2\x4e\x16\xa1\xbc\xce\xa2\xcf\x03\xf8\ +\x0f\x33\x7b\x35\x8a\x9a\x8e\x30\x30\xe7\x2b\x6a\x38\x33\xe1\xf5\ +\x57\xc3\xc5\x27\xde\xc4\x08\x8f\xe1\x04\x40\x9f\xda\xb1\x5f\x80\ +\xe8\x5a\x01\xc2\x25\x49\xbe\x13\x40\x75\x41\x87\x2d\x34\x4a\xd7\ +\xd6\x47\x3c\xdf\x2c\x92\xd3\x64\x4d\x5f\x80\xf8\xdc\xf8\xdd\x00\ +\x1e\x07\xf0\x63\xb8\xec\x9a\x7c\x70\xf1\x63\x18\xbb\x77\xd5\x54\ +\xb2\x43\xf7\xaa\x4f\xb8\x4b\xfb\xe4\x82\xce\xd1\xf7\xf7\x23\xbe\ +\xc1\x73\x0a\xee\xc4\xf2\x53\x11\x9d\x7d\x1c\x56\x5f\x1b\x01\xdc\ +\x6d\x66\xcf\x61\x04\x1a\x42\x8c\x24\x00\x7c\x7b\xb6\x59\xe2\xba\ +\xc3\xd1\xb1\xac\x24\xc1\x0e\xa9\x82\xe0\x64\xee\x53\x52\xc7\x49\ +\x11\x62\x37\x0d\x17\x70\x59\x24\x17\x8e\x31\x8b\xff\x5b\xb9\x62\ +\x2b\x15\xd8\x61\x82\xe0\x4e\x41\x47\xc8\x6d\x97\x0a\x5b\x88\x64\ +\x0d\x9e\xa7\xc2\xf5\x29\x3a\xc3\x9f\x43\xa0\x53\x4a\xb2\xea\x52\ +\x96\x0f\xb8\xaf\x05\xb8\x82\x97\x15\x70\x55\x40\x71\xae\x34\xe4\ +\xea\x3d\x6c\x66\xbf\xc0\xa1\xcd\xb4\xc7\x0d\x00\xfa\x45\x5e\x9c\ +\x8b\xc1\xa5\x5c\x19\xed\x74\xdf\x03\xc0\x67\x06\x15\x15\x26\x9e\ +\x2c\x3d\x19\x65\x10\x66\x30\xd0\x47\x37\x4a\xec\x3f\x29\x83\x6c\ +\x95\xce\xdf\x01\x92\xc7\x12\x4c\xc0\x5d\x22\x7a\x3a\x89\x98\xf6\ +\x45\x2e\x53\x65\xc9\x2f\xd7\xe2\x2e\x96\x14\x31\x00\xdd\xa9\x54\ +\x2a\x2f\x95\xb3\x5f\x6c\xe5\x47\x87\x90\x2a\x6b\xe0\x32\x91\x57\ +\x61\x94\xce\x1d\x1e\xee\x13\x43\xfa\x65\x69\x9f\xab\xc9\xa8\x8e\ +\x60\xc0\xb2\xfa\xce\x56\x0c\xb4\x8e\xc9\xcb\x45\xcc\xc8\x60\x4a\ +\xc2\xe5\x1b\x06\x1a\x3c\xff\x04\x2e\xaf\xae\x37\xbc\xeb\x93\xf4\ +\x03\x90\xf7\x72\x1d\x5c\x4e\x5e\x6d\x99\xef\x5c\x27\xd0\x9c\x08\ +\x17\xd1\x5b\x40\xf2\x64\x9d\x45\xb8\x48\x0d\xb4\x17\x8a\x72\x5e\ +\x5e\xe2\x3a\xdb\x64\xb8\x3e\x86\x61\x2e\x00\x1d\xf5\x41\xf2\x26\ +\x9d\xdb\x97\x8b\xe8\x83\x9b\x23\xf9\x88\x0e\x94\x0a\xff\xee\x83\ +\x24\x7f\x53\xa2\xdf\x70\xf0\xd3\xae\xb3\x04\x2f\x2a\x67\xb1\x23\ +\xee\x39\x4d\x67\x1a\x6f\x8f\xb9\x4f\x41\xf7\xea\x3d\x8c\x33\x84\ +\xf7\x91\x5c\x43\xf2\x0f\xea\x6d\x58\xea\x28\xb9\x1f\x0b\x88\x87\ +\xfd\x2e\x63\x41\x02\xf8\x87\xdf\x2d\x5d\xba\x2c\xc2\x5d\x4b\xeb\ +\xdf\x3a\xa4\xe7\x82\x29\x62\x1d\x3a\x74\x69\xb9\x7e\x5f\x2a\x65\ +\xad\x19\x2e\x8d\xeb\x61\xaf\x6f\x79\x18\xb3\x26\x00\x7d\x4d\xbb\ +\x37\x13\x41\xf3\x6e\x87\x4b\x41\x3f\x20\xf1\x9e\x42\xe9\xea\xa5\ +\xb0\xf7\x33\x4d\x12\x62\x52\x0c\x95\x5c\x54\xfc\xe0\xa7\x70\x6d\ +\x62\x46\xf5\x44\xd1\x61\x07\x80\x1a\x24\x75\x2a\xd2\xb5\x5c\x04\ +\x48\x2a\x62\x62\x26\x07\xec\x01\x0b\xa8\x90\x1d\xa2\x89\xe7\xa0\ +\x74\x8d\xa0\xe7\xeb\x3b\xf5\x39\x9c\x50\xe9\x0c\x15\x72\x5e\x1b\ +\x61\xfd\x1b\x5c\xba\xdb\xdd\x02\xd9\x1b\x02\x6d\x1f\x06\xaa\x9c\ +\x99\x70\x8e\xe3\xca\xc1\xf2\x32\x5e\x6f\x93\xfd\xd2\x37\xda\x07\ +\x47\x0e\x3b\x00\xbc\xfe\x25\xd9\x87\x81\x0c\x9a\xc9\x11\xf7\x9d\ +\x2a\xe3\x6b\x2b\x5c\x24\xb1\x18\xd8\x11\x6b\xe5\x9f\x2f\x43\x7c\ +\x85\xf0\x04\x19\x5e\x27\xc3\x85\x4c\xbb\x52\xa9\x54\x57\xf8\xb4\ +\x8f\x12\x13\xda\x00\xe0\x22\x92\x9f\x8e\x71\xcf\xfa\xe0\x32\x86\ +\xfe\x07\x5c\x0b\xb8\x37\x01\x3c\x4f\x72\x9f\x16\x3e\x13\x72\xe1\ +\x92\x4a\x05\x04\xbc\x83\x37\xcd\xec\x1f\x65\xc4\xe6\x7c\x77\xb1\ +\xd1\x54\x03\x23\xa2\x02\x26\x4c\x98\x80\x5c\x2e\xd7\x21\xda\xd5\ +\x5b\xc7\x8c\xb0\xec\xe7\xa8\xc5\xcc\xaa\xea\xea\xea\xfd\x81\x38\ +\x7c\x41\x3e\x7a\xb3\x2c\xf3\x86\x12\xb7\x9b\x13\x08\xa8\x14\x00\ +\x6c\x0d\x1c\xf5\x66\x25\x44\xff\x7c\x9d\xed\x13\xd5\x62\x2e\x0f\ +\x97\xe3\xf0\x00\x5c\x42\xcb\x41\xa9\xa3\xf3\x04\x7e\xaf\x6a\xa3\ +\x8d\x02\x7a\xbd\x3e\x49\xe7\xd3\xe0\xca\xca\xfe\x49\xea\xa5\xc7\ +\x6f\x1e\x75\x46\x49\x2b\x96\x30\xe2\x20\x18\x11\x00\xf4\xf7\x1f\ +\x8c\x5c\x76\x8b\x0a\x9d\x17\x23\xce\x6b\xbc\x24\x28\x14\x0a\xef\ +\xe2\xd0\x54\xe9\x03\x00\x5a\x48\x76\xe8\xb7\xd3\x62\x9e\x37\x25\ +\x91\x3c\x17\x2e\x8a\xb8\x14\x2e\x8e\xd0\x2b\xe3\x2d\xea\x11\xb3\ +\xea\x41\xf0\x19\xb8\x92\xf4\xf0\xe8\x12\xd5\x7b\x17\x06\xa7\x6f\ +\xfb\x72\xb8\xdd\x00\xda\x55\x8f\x30\x4f\x7a\x3e\x29\x9b\xf8\x38\ +\x80\xdb\x49\x0e\xa2\x7a\x55\x26\xbf\x42\x9e\xc0\x81\x71\x29\x01\ +\x42\x93\xf5\x9e\xce\xe9\x8d\x6b\xba\x58\x2f\x02\x68\x2f\xc9\x4d\ +\x21\x5d\xbe\x1f\xc0\x3a\xd9\x04\x33\x31\x10\x20\x8a\x22\x52\x7c\ +\x5f\xbf\x33\x05\x86\x09\x02\x58\x95\xdc\xd1\x14\x06\x7a\x16\x9c\ +\xaa\x83\x2a\x3e\x1c\xc1\x2c\x16\xe0\xe2\xf0\xb7\x99\x59\xb8\x57\ +\x7f\x35\x80\x06\x92\x53\x49\x36\xe9\x38\xf9\x25\x92\x70\x49\x00\ +\xd0\x0e\xe0\x25\x33\xfb\x57\xb8\x78\x45\x70\x81\x33\x24\x17\xc3\ +\x15\xae\x5e\x2e\x69\xb3\x73\x34\xd8\xc0\xd1\x70\x0b\xcf\x26\xf9\ +\x6f\x3a\x3e\x3d\xca\x0d\xca\xeb\x98\x94\xef\xc4\x5c\x22\x4b\xf2\ +\x2a\x9d\x22\xde\x97\xc0\xfd\xca\xcb\x6d\xdb\x43\xf2\x79\x00\xff\ +\x1b\xae\xb7\xff\x89\x7a\x9e\xeb\x49\xae\x8d\xf9\xed\x2e\x00\xff\ +\x0d\x83\x3b\x86\x4c\xd4\xce\xfc\xb2\xde\x65\x8d\x4e\x44\xef\xd3\ +\xfd\x8a\x49\xdc\x56\x6d\x84\x6c\x58\xcf\x93\x5c\x2c\x57\xb0\x55\ +\xd7\x5a\x4f\xf2\xe6\x91\x5e\x9b\xcc\x28\x61\xe0\x15\xed\xb4\x05\ +\x70\xa1\xd1\x28\x49\xb4\x18\xc0\xe7\x48\xe6\xcd\xec\xdf\x71\x68\ +\xce\x60\x0e\xae\xa4\xaa\xdd\xcc\x5e\x55\x67\x8f\x25\x43\x48\xb6\ +\xb4\x76\xec\x99\xea\xc9\x7f\x89\xbc\x8e\x66\x01\x61\x51\x09\x66\ +\xb0\x1e\xae\xc7\x40\x46\xcc\xe4\x0c\xb1\x7e\x93\x31\xd0\xad\x6b\ +\x1a\x92\xd7\xfb\xbf\x68\x66\x0f\x93\x7c\x42\x5c\x7f\x3e\x68\x34\ +\x2b\xca\x79\x23\x5c\xb6\xb1\xcf\x90\x5a\x04\xe0\x26\x92\x59\x33\ +\xfb\x29\x5c\xd7\xb5\x61\x3f\x47\x30\x3d\x0a\xbb\x1f\xe2\xe6\x3b\ +\xf4\xe2\x33\x25\xa2\xa3\x38\xff\x46\xb8\xc8\x59\x0f\xc9\x3d\x57\ +\x5e\x79\x65\xc7\xa6\x4d\x9b\xfc\x75\x72\xd9\x6c\x76\x47\xa1\x50\ +\x78\x5f\xc9\x24\xde\x13\x18\xaa\x95\x6b\x95\xc0\x37\x03\x2e\x0f\ +\xef\x14\xe9\xec\xea\x12\x56\xbb\xf7\x40\xce\x97\x9a\x38\x5b\x80\ +\x6b\xd2\xf3\x27\x31\xf8\x8a\xe2\x10\x9e\xd5\x51\xb4\x8f\x28\x10\ +\x56\x08\x89\xfd\x15\x70\xc5\x22\xd7\xe0\xd0\xf6\x74\xbe\xab\xea\ +\x2c\x49\x8f\x66\x33\xeb\x1a\x6f\x36\xc0\x41\x11\x57\x5d\x5d\xdd\ +\x93\xcf\xe7\xb7\x8b\xac\x39\x25\x86\x18\xf1\x20\x38\x05\x40\x6e\ +\xd3\xa6\x4d\x9b\x83\x3a\x50\x5e\x42\x1b\xc9\x75\x50\x1d\x9f\x26\ +\x69\xe2\x10\xef\xe2\xdd\x34\xef\x93\xa7\x87\x58\xfc\x19\x02\xe9\ +\x0c\x3d\x67\x55\x40\xaa\x24\x71\xf7\xfa\x44\xea\x3c\x00\x75\x28\ +\xc7\xe0\x92\xb5\xac\x0e\x8a\xf8\x3b\xb8\xb4\xb6\x19\x31\x06\xee\ +\x74\x49\xc7\xbd\x7a\xe7\xc2\xb8\x02\x80\x07\x81\xea\xfb\x7a\x65\ +\x14\xf6\xc1\xe5\xc9\x4d\x8e\x79\xe9\xa9\xe2\xd1\xe7\xc0\x25\x47\ +\xb4\x84\x76\x56\x8f\xa2\x78\x1b\x45\xd0\xec\x96\x34\x98\x39\x1c\ +\x8f\xab\x05\x3f\x9c\x5e\x3e\x79\x19\x79\x77\x92\xfc\x39\x5c\x92\ +\xe8\x66\x01\x22\x28\xbb\x27\xa9\x35\xdd\xad\x70\xc7\xe6\x4c\x29\ +\xc5\xad\x09\x1c\x73\xc4\x9b\xbc\x32\xee\x00\x10\x1a\x07\x64\x68\ +\x55\x21\x3a\x2b\xd8\x8f\x46\x00\x8b\x75\x46\x50\x4a\x2a\xe4\x40\ +\x08\x08\xad\x70\xd9\xc6\xdb\xc4\x19\xb4\x60\xa0\x5c\x7d\xe2\x28\ +\xbd\x5f\xb7\x9e\xe1\x55\xb1\x7a\xbf\x86\x4b\xe5\x5a\x83\x88\x6c\ +\x1e\xd5\x15\xfa\xa6\x94\x17\x21\xd9\xd9\x80\x29\x81\x7b\x96\xd4\ +\xdf\xbb\x02\x15\xc2\xe4\xd1\x78\x00\x00\x52\xa9\x94\x3f\x48\x22\ +\x25\x26\x2f\xae\xb2\xb6\x4e\x06\xdb\x3c\x4d\x5e\xa7\x12\x50\x83\ +\xe5\xc2\x05\x55\x11\x6d\xd6\xee\xd8\x88\x81\x66\x0d\xde\x80\xf4\ +\xee\x5f\x0a\x47\x56\x0b\xd1\x2f\x29\xd6\x2d\x97\x6e\x97\x16\xfa\ +\x31\xb8\xbe\x06\x8f\xc1\x25\x8a\xee\x09\xed\xf8\x34\xdc\xc1\x16\ +\xcb\xe0\x6a\x0a\xff\x5c\x34\x79\x75\x99\x6b\x35\x15\xae\xde\x72\ +\x27\xc9\xdd\x3a\x73\x68\x7c\x49\x00\x6f\x14\xa6\x52\xa9\x7d\x70\ +\xe9\xce\xbd\x02\x41\x5c\x96\x6e\x35\x5c\x3c\x61\x11\x5c\x62\x48\ +\x5e\xfa\xb0\x27\x24\x0d\xfc\x51\x70\x3b\x14\x6a\xfe\x23\x5c\xa7\ +\x91\xcd\x92\x0c\x07\xa4\x3f\xb3\x28\xbf\xe1\xa2\xef\x5f\xb0\x1d\ +\x2e\x99\xe5\x05\xf9\xf1\x0f\x02\x78\xc2\xcc\x5e\xd4\xbf\xb7\x45\ +\x88\x7b\x68\xd1\x3e\x05\x97\xcc\x7a\x31\xe2\x5b\xec\x27\xf1\xda\ +\x66\x4b\x25\x74\x49\xbd\x1c\x51\xbd\x00\x8f\x86\x04\x08\xb9\x33\ +\xf3\x75\xde\xcf\xd5\x18\x5c\x57\x10\x65\x5c\x3d\x07\x97\xf7\xf7\ +\x32\x80\x0d\xc1\x5c\xfc\x98\x31\x9d\xe4\x22\x4d\xfa\x5c\x4d\xe0\ +\x34\x59\xf2\xb5\x02\x44\xd0\x30\xf4\x95\xbd\xbe\x2b\x57\xb7\xd4\ +\xca\x5e\x01\x76\x87\x8e\x6e\x79\x07\xa5\xe3\xf6\x55\x7a\xb7\x65\ +\x70\x19\xcc\x57\xc2\x65\x11\x95\x1a\x1d\x92\x62\x07\xc4\x39\x94\ +\x2a\x3d\xbf\xdb\xcc\xbe\x83\x23\xac\x19\x38\x2a\x00\x88\x00\xc4\ +\x34\xb8\xd2\x2b\xdf\xac\x79\xd2\x10\xbb\xb1\x55\x13\xf5\x98\x00\ +\xd1\xa2\x26\x4b\x5d\xd1\x97\x67\x2a\xb0\xc0\x29\x2d\x78\x8d\x99\ +\x35\xc0\xc5\x19\x6a\xb5\x60\x29\x49\x89\x7e\xf9\xdd\x1d\x5a\xfc\ +\x3e\xfd\x7b\x11\x03\xfd\xfa\xa2\xac\xf1\x34\xc9\x89\xba\xe6\x62\ +\x31\x7a\x57\x09\x7c\xa5\x2a\x96\x0b\x32\x64\x57\x02\xf8\x37\xa9\ +\x90\xaf\xc0\x1d\x4e\x19\x75\x36\xe1\x1e\x00\xf7\x98\xd9\x3f\xc3\ +\x85\xd4\x0b\xe3\x46\x05\x04\xc7\xe4\xc9\x93\xd1\xdb\xdb\xeb\x63\ +\x06\xef\xc9\x2e\xa8\x11\xf2\xe3\x7a\x10\x53\xb6\xc1\x2c\x51\xc8\ +\xa7\xc9\x3f\x4f\xeb\x3a\x7d\xa1\xbc\x00\x5f\x17\x58\xd0\x27\x1f\ +\xd8\xd9\xbe\x43\x79\xb3\xee\xbd\x43\x9f\x9d\xd2\xef\x6d\x52\x35\ +\xde\x8e\xf0\x20\xb0\x00\xb8\xd2\xfa\xf8\xc3\xb3\x2e\x21\xf9\x59\ +\xc5\x19\x3e\x2a\x1b\x26\x3b\x04\xa0\x37\xca\x65\xbc\x1b\xae\x0c\ +\x6c\xa7\x9e\x2b\x8b\x81\xfc\x4a\x3f\x3a\xe1\x5a\xd7\xde\x0f\xd7\ +\xde\xe6\x88\x54\xc0\x51\x05\x40\x6f\x6f\x6f\x30\xda\xe5\x9b\x25\ +\xfa\x00\x8e\xdf\x9d\x71\x2a\x21\x2b\x1f\xf9\x14\x00\x27\xa9\xab\ +\xf8\x0c\x45\x17\x27\x49\xcf\x7b\xdb\x60\x28\xfd\xee\x81\xd1\x1f\ +\x58\xe8\xa1\xac\xab\x2a\x00\xd3\xc4\x32\x9e\x0a\x57\xe3\x77\xb9\ +\x74\xfd\x55\x02\x67\xc3\x10\x52\x76\x3f\x5c\xfa\xfa\xfd\x32\x22\ +\x5f\xc5\x40\xfd\x64\x8b\x40\xe0\x83\x4d\x13\xc4\x64\x3e\x6a\x66\ +\x3f\x94\x04\x3c\xe2\x7a\xc1\x31\xa1\x02\x22\xc6\x4c\xb5\x60\xf9\ +\x92\x8c\xbf\xba\x32\x9e\xb5\x43\xbb\xe8\x65\xd1\xc6\x6f\x68\xa7\ +\xe7\x01\x14\x94\x2f\x50\xc4\xa1\x5d\x3c\xac\x04\x79\x74\xb0\xc7\ +\xb1\x82\x52\x69\xa9\x8f\x79\x70\x2d\xe8\xce\x86\x3b\x49\xf4\xd4\ +\x32\xa8\x4e\x95\xa9\x47\x00\x00\x03\x7c\x49\x44\x41\x54\xe1\x7e\ +\x79\x11\x6b\x24\xc6\x57\x22\x90\x56\x1e\xb4\x91\x94\x2d\xfd\xdf\ +\x75\x8f\x57\xcc\xec\x6f\x10\x3a\x5a\xe7\x58\x04\x00\xb5\x93\x97\ +\x89\x22\x0d\x76\xe1\x4a\xf2\xcc\x07\x42\x9f\x16\xb8\x6a\xe3\xf7\ +\xcc\x6c\x97\x76\x56\x2b\x06\x42\xae\xbd\x01\x57\x31\x8d\x81\xce\ +\xdc\xf5\x22\xab\xa6\x0a\x94\x73\xf5\x1c\x73\xf5\x6f\x9e\x8a\x9e\ +\x84\x64\xa1\x60\x2f\x59\x9e\x37\xb3\x87\x48\x3e\x0d\x60\x4b\xf0\ +\x5c\xa5\x88\x89\xa8\x96\x97\x34\x17\xc0\x01\x79\x1c\xc3\x96\x31\ +\x3c\x56\x01\x10\x9c\x80\x15\x70\x45\xa0\xe7\xc1\x25\x87\x34\xe1\ +\xf0\xfa\xe6\xb7\x69\xe1\xf7\x62\xa0\x1b\x48\x97\x74\x7c\x7f\x60\ +\x71\x7c\xb6\x4f\xb5\x8c\x43\x9f\xec\xd1\x88\x81\xfc\xbe\x72\x33\ +\x87\x4d\xf7\x5b\x0f\xd7\xd7\xf0\x19\xb8\x44\x90\x66\x94\x4e\x5a\ +\x09\x7a\x4b\x9e\xa1\x1c\xd6\x7e\xc1\xe3\x01\x00\x54\x30\x69\x19\ +\x5c\xea\xf6\x9f\x48\xbf\x06\x2d\xf7\x72\x16\x22\xea\xef\xe5\xcc\ +\x51\xb9\x69\x5f\x3d\x92\x32\xab\x01\xfc\xda\xcc\x7e\x25\xe0\x25\ +\xe9\x42\x39\xec\xd1\xbf\x71\x05\x80\x60\x83\x48\xe9\xdf\x7a\x33\ +\x9b\xad\xba\x83\xab\x44\xa5\x4e\x1d\xc3\xaf\xb0\x59\xae\xea\x6f\ +\xcc\x6c\x3d\xc9\xb6\x91\x88\xe8\x1d\xd3\x12\x40\xd4\xf1\x21\xa7\ +\x71\xaa\xaa\x77\xa9\x3c\x80\xa5\x32\xc0\x96\x22\x3a\xbd\x6b\x34\ +\x47\x9f\x5c\xba\xf5\x70\x39\x85\x1b\x00\xbc\x6d\x66\x1b\x30\x02\ +\x9d\xbe\x8f\x1b\x00\x44\x54\xfb\x78\x7d\xe8\xcf\x2e\x3e\x07\x2e\ +\x66\x7f\xba\x5c\xa6\x89\x32\xd0\x26\x20\x79\xfa\x76\xb9\xa3\x5f\ +\x5c\x42\x97\xfe\x6c\x13\x3b\xf8\xaa\x99\xad\x26\xf9\xa6\xfe\x2f\ +\xef\x0b\x55\x47\x53\xb4\x1f\x53\x00\x48\x30\x79\x13\xc5\xc0\x4d\ +\x04\x30\xcb\xcc\x4e\xd7\x69\x5c\x4b\x44\xc4\xcc\x1d\x66\xce\xe3\ +\x00\x5c\x29\xd7\x26\xb8\x8e\xe5\x6b\xd5\x7d\x64\x1f\x80\x6e\xb1\ +\x92\x7d\xe3\x62\x3e\x71\x6c\x8e\x59\x24\x67\xca\x6a\x6f\x94\x9d\ +\xd0\x00\x97\x71\x73\x3e\x02\x2d\x69\x43\x06\x5b\x9b\x18\x40\xcf\ +\x16\xf6\x98\x59\xb7\x2c\xf8\x76\x45\x1d\xf7\x62\xa0\x75\x6b\xab\ +\x9a\x42\x35\x23\xbe\x0b\xfa\x98\x1e\x99\x63\x14\x00\x9e\x45\x63\ +\x80\xc8\xc9\x98\xd9\x02\x15\x9c\xcc\x8e\x20\x97\x72\x70\x11\xc4\ +\x47\x31\x90\xfa\xdd\x23\x31\xde\xa1\x05\xdf\xab\x85\xce\x79\x5f\ +\x9c\x64\xd1\xc6\x8a\x3c\xaf\x00\x60\xc0\xc5\x0b\x2d\x4a\x5e\x22\ +\x79\x2b\x06\xce\x33\x0e\x2f\x5a\x0e\x2e\xbb\xe8\x17\x22\x75\x7c\ +\xc0\x27\xaf\x4f\xbf\x6f\x37\x73\x2c\x8d\x63\x15\x00\x71\xf6\x83\ +\x5f\xd4\x28\x26\xad\x08\xa0\xc3\x77\xfb\x3a\x5e\x46\x0a\xc7\xd7\ +\x28\x95\xd4\x49\x94\xd7\x27\xa8\x02\x80\xca\xa8\x00\xa0\x32\x2a\ +\x00\xa8\x8c\x0a\x00\x2a\xa3\x02\x80\xca\xa8\x00\xa0\x32\x2a\x00\ +\xa8\x8c\x0a\x00\x2a\xa3\x02\x80\x31\x3c\x86\x3a\x3a\xc6\x2a\x00\ +\x38\xbe\x07\x8f\xb7\x17\x1e\x77\xb1\x80\x09\x13\x26\xa0\xab\xab\ +\x2b\x83\x81\x63\xd6\x2d\xe1\xc2\xf6\x98\x59\x0d\xc9\x52\x05\x27\ +\x55\x70\x74\x70\xaa\x4c\x40\x04\x6b\x0b\xac\x82\xf8\x91\x1d\x35\ +\xea\xf0\x75\x29\x5c\xac\xbf\x3b\xe1\x7b\xf4\xc3\xa5\x7a\x9f\x03\ +\x97\x42\x36\x29\xf4\xbb\x3e\xb8\x70\xf0\xf3\x28\x7d\x58\x44\x78\ +\x54\xc1\xe5\x11\xac\x05\xf0\x07\x33\xdb\x59\x91\x00\x23\x0c\x00\ +\xb8\xf4\xaf\x2f\xc2\xa5\x68\xf7\x26\x5c\x2c\x9f\xf2\x5d\x1d\x90\ +\x1e\xc1\x91\x05\xf0\x01\xb8\xdc\xc2\x72\xe7\x70\x0f\xdc\xe1\x54\ +\xef\xc0\x95\x75\x55\x00\x30\xc2\x52\xab\x1a\x2e\xfd\xab\x1a\x87\ +\x57\x23\x50\xea\xba\x87\x73\xbd\x49\x70\xb9\x87\xe9\xf1\x36\x99\ +\xe3\xd1\x08\x34\x89\xeb\xb1\x94\x73\xd7\x27\x49\x54\xa8\x00\x60\ +\x74\x46\x7a\x8c\x3d\x7b\x7a\x0c\x3e\xd3\x31\xab\x02\xc2\xfe\x7a\ +\x61\x0c\x2c\x7e\x71\xbc\xf2\x08\xe3\x11\x00\xbe\x39\xd4\xfb\xda\ +\x71\x9d\x47\xd9\x9b\xc9\xc2\x65\x12\xb7\x60\x9c\xa4\x82\x8f\x77\ +\x00\xe4\xe0\x2a\x6e\x1e\x84\xab\xdc\xed\x3d\xca\x00\xc8\xe8\x0c\ +\x60\xdf\x23\x68\xdc\x59\xd4\xe3\xee\x99\x55\x32\x5d\x23\x09\x60\ +\x47\x71\xee\x0c\x00\xd5\x32\x26\x87\x81\x56\x32\x95\x51\x19\x95\ +\x51\x19\xe3\x60\xfc\x7f\x66\xf7\xc1\xe3\xfd\x1b\x32\x09\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0c\x69\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x0c\x0b\x49\x44\x41\x54\x78\x9c\xed\ +\x9d\x7d\x8c\x1c\x65\x1d\xc7\xbf\xbf\xdf\xec\x96\x5a\x76\xf1\xee\ +\xea\xf5\x76\x76\xaf\x3d\x21\xa5\xc5\x03\x79\x6b\x29\x2a\x6a\x22\ +\x41\x01\x15\x82\x45\x53\xde\x0a\x22\xf1\x25\x82\x22\x31\x44\x31\ +\xc6\x18\x14\x13\xa3\x18\x14\xfd\x43\x44\x2d\x29\xef\x2f\x6a\x34\ +\x6a\x55\xb4\x88\xa8\x31\x08\x94\xc2\x1d\x96\x96\x83\xde\xed\xcd\ +\xec\xde\x89\xb4\x9d\xb1\x07\x77\x3b\xcf\xcf\x3f\xba\x35\x0d\x69\ +\x67\x66\xf7\x66\x9f\x99\x6d\x9e\xcf\x9f\x37\xbf\x67\xe7\x3b\x37\ +\xbf\x79\xbe\xf3\x3c\xf3\xbc\x00\x06\x83\xc1\x60\x30\x18\x0c\x06\ +\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\ +\x60\x30\x18\x0c\x86\xc3\x0a\x4a\x5b\x40\x52\x94\xcb\xe5\x15\x44\ +\x74\x92\x88\xac\x04\xb0\x12\xc0\x12\xa5\x54\x81\x88\x8a\x00\x20\ +\x22\x1e\x33\xfb\x00\xea\x00\x9e\x27\xa2\x6d\x22\xf2\xb4\xe3\x38\ +\xcf\xa7\xa9\x3b\x6d\xba\x36\x01\x6c\xdb\x5e\x04\xe0\x02\x22\xfa\ +\x80\x88\xbc\x87\x88\xec\x76\x7e\x47\x29\xe5\x30\xf3\x66\x11\xf9\ +\xb5\x65\x59\xbf\xa8\x56\xab\x33\x09\x4b\xcd\x34\x5d\x97\x00\xa5\ +\x52\x69\x35\x11\x5d\x4d\x44\x17\x02\x28\x26\xfc\xf3\x7b\x94\x52\ +\x0f\x11\xd1\xf7\x5d\xd7\x7d\x32\xe1\xdf\xce\x24\x5d\x93\x00\xb6\ +\x6d\xbf\x8b\x88\xbe\x0c\xe0\x7d\x9a\x4e\xb9\x49\x44\xbe\xee\xba\ +\xee\x5f\x35\x9d\x2f\x15\x32\x9f\x00\x95\x4a\x65\x50\x44\x6e\x01\ +\x70\x61\x1a\xe7\x17\x91\xfb\x73\xb9\xdc\x75\x13\x13\x13\x4e\x1a\ +\xe7\xef\x34\x56\xda\x02\xc2\xb0\x6d\xfb\x1a\x00\x3f\x07\x70\x72\ +\x5a\x1a\x88\xe8\x78\x11\xf9\x44\xb1\x58\xdc\xed\x79\xde\xe3\x69\ +\xe9\xe8\x14\x99\xac\x01\x86\x86\x86\x7a\xe6\xe6\xe6\x7e\x02\xe0\ +\x43\x69\x6b\x79\x1d\x0f\x2d\x5c\xb8\xf0\xaa\xb1\xb1\xb1\xdd\x69\ +\x0b\x49\x8a\xcc\x25\x40\xa5\x52\x39\x56\x44\x36\x01\x38\x26\x6d\ +\x2d\x07\x43\x44\x5e\xb0\x2c\xeb\x9c\x6a\xb5\xba\x23\x6d\x2d\x49\ +\x90\xa9\x04\x28\x95\x4a\xab\x99\xf9\x37\x00\xfa\xe7\xf1\x33\x7b\ +\x95\x52\xdb\x88\x68\x3b\x80\x97\x01\xf8\xcd\xbf\x17\x00\x2c\x16\ +\x91\x15\xcc\xbc\x02\xc0\xa2\x79\x9c\x63\x4a\x44\xce\x3d\x1c\x5a\ +\x0a\x99\x49\x80\xc1\xc1\xc1\x35\x4a\xa9\x87\xd1\x46\xd3\x4e\x29\ +\xf5\x14\x11\xdd\x27\x22\x7f\xaa\xd5\x6a\x4f\x02\x08\x22\x8a\x58\ +\x83\x83\x83\xab\x82\x20\x38\x53\x44\xd6\x31\x73\x3b\xef\x18\x9e\ +\x52\xea\xcc\x5a\xad\xf6\xcf\x36\xca\x66\x86\x4c\x24\x40\xb9\x5c\ +\x5e\x09\xe0\x31\x00\x6f\x8a\x5b\x46\x44\xe6\x44\x64\x63\x2e\x97\ +\xbb\xa5\x5a\xad\x3e\x33\x9f\xf3\x57\x2a\x95\x13\x95\x52\xd7\x11\ +\xd1\x65\x00\x72\x2d\x14\x9d\x26\xa2\x33\x26\x27\x27\xb7\xcf\xe7\ +\xfc\x69\x92\x7a\x02\x94\x4a\xa5\x7e\x66\x7e\x1c\xc0\x50\xdc\x32\ +\x22\x72\x3f\x80\xeb\x5d\xd7\x1d\x4f\x52\xcb\xc0\xc0\xc0\x9b\x2d\ +\xcb\xba\x19\xc0\xda\x16\x8a\xbd\x08\xe0\x34\xc7\x71\x5e\x4e\x52\ +\x8b\x2e\x38\xe5\xf3\x13\x33\x6f\x44\xcc\x9b\x2f\x22\xae\x88\x9c\ +\xe3\xba\xee\xba\xa4\x6f\x3e\x00\xd4\xeb\xf5\x97\x1c\xc7\xb9\x90\ +\x88\x3e\x08\x60\x2a\x66\xb1\xa3\x45\x64\x03\x32\xf0\x30\xb5\x43\ +\xaa\xfd\x00\xb6\x6d\x7f\x91\x88\x3e\x19\x27\x56\x44\x36\x2b\xa5\ +\xce\xaa\xd5\x6a\x5b\x3b\xad\xcb\xf3\xbc\xed\xbd\xbd\xbd\x77\x29\ +\xa5\xd6\x20\x46\x72\x12\xd1\x8a\x62\xb1\xe8\x79\x9e\xf7\xf7\x4e\ +\x6b\x4b\x9a\xd4\xb2\xb6\x5c\x2e\xaf\x50\x4a\x3d\xc3\xcc\x0b\xa2\ +\x62\x95\x52\xf7\xf5\xf5\xf5\x5d\x3e\x3a\x3a\x3a\xab\x43\xdb\x7e\ +\x96\x2f\x5f\x7e\xc4\xde\xbd\x7b\xef\x42\x8c\x5e\x48\xa5\xd4\xab\ +\xf9\x7c\xfe\x84\x89\x89\x89\x17\x34\x48\x4b\x8c\xd4\x12\xa0\x54\ +\x2a\xfd\x81\x99\xcf\x8a\x11\x7a\xb7\xe3\x38\xeb\x01\xa8\x4e\x6b\ +\x3a\x04\x6c\xdb\xf6\xbd\x44\xf4\x91\x18\xb1\x9b\x1c\xc7\x39\xb7\ +\xe3\x8a\x12\x24\x95\x77\x00\xdb\xb6\x2f\x88\x79\xf3\x7f\x67\xdb\ +\xf6\x47\x91\xde\xcd\x07\x00\xd5\xdb\xdb\x7b\x99\x88\x6c\x8e\x11\ +\x7b\x4e\xb9\x5c\x3e\xaf\xe3\x8a\x12\x24\x95\x1a\xa0\x5c\x2e\x3f\ +\x01\xe0\xd4\x88\xb0\x9d\xb9\x5c\xee\x94\xf1\xf1\xf1\x57\x74\x68\ +\x8a\xa2\x54\x2a\xf5\x03\xd8\xc2\xcc\xe5\x88\xd0\xc7\x1d\xc7\x59\ +\xa3\x43\x53\x12\x68\xaf\x01\x4a\xa5\xd2\xb9\x88\xbe\xf9\x0a\xc0\ +\xc5\x59\xb9\xf9\x00\x50\xab\xd5\xa6\x2d\xcb\xba\x14\x80\x44\x84\ +\x9e\x66\xdb\xb6\xae\x4f\xd6\xf3\x46\x7b\x02\x30\xf3\xb5\x51\x31\ +\x22\x72\x9b\xe3\x38\x99\x7b\xa3\x9e\x9c\x9c\x7c\x44\x44\xee\x88\ +\x11\x1a\x79\x8d\x59\x41\xab\x05\x2c\x5d\xba\xb4\x1c\x04\xc1\x38\ +\x42\x9a\x9f\x22\xb2\x3b\x9f\xcf\x1f\x9d\xa5\xa7\xff\x40\x06\x06\ +\x06\x96\x58\x96\x35\x06\xe0\xc8\x90\xb0\x46\xa3\xd1\x18\x9c\x9a\ +\x9a\xaa\xeb\xd2\xd5\x2e\x5a\x6b\x80\x20\x08\x2e\x41\x44\xdf\x03\ +\x11\xfd\x20\xab\x37\x1f\x00\xea\xf5\xfa\x94\x88\xfc\x30\x22\x2c\ +\x97\xcf\xe7\x2f\xd1\x22\x68\x9e\xe8\xb6\x80\xf3\xc3\x0e\x8a\xc8\ +\x5c\x10\x04\xdf\xd5\x25\xa6\x5d\x2c\xcb\xfa\x0e\x22\x3e\x38\x29\ +\xa5\x42\xaf\x35\x2b\x68\x4b\x00\xdb\xb6\x17\x29\xa5\x4e\x0f\x8b\ +\x11\x91\xdf\xd6\xeb\xf5\xb8\x5d\xb0\xa9\x51\xad\x56\x27\x01\xfc\ +\x31\x2c\x46\x44\xde\x3e\x34\x34\xb4\x50\x93\xa4\xb6\xd1\x59\x03\ +\x9c\x11\xd5\xeb\xc7\xcc\x77\xeb\x12\x93\x00\xa1\x5a\x99\xf9\x88\ +\x46\xa3\xf1\x0e\x5d\x62\xda\x45\x67\x02\x44\x35\xfd\x44\x44\x42\ +\x9f\xaa\x2c\xc1\xcc\x0f\x47\xc5\x88\x48\xd4\x35\xa7\x8e\xb6\x04\ +\x68\xce\xd8\x09\x63\xd4\x75\xdd\x7f\x6b\x11\x93\x00\xd5\x6a\x75\ +\x52\x29\x15\x35\x2c\x2c\xea\x9a\x53\x47\x67\x0d\x10\xfa\xcf\x50\ +\x4a\x3d\xab\x4b\x48\x52\x30\x73\x94\x66\x93\x00\xff\x3f\x51\x44\ +\x17\x2a\x11\x75\xe3\x1c\xbd\x6d\x61\x07\x45\x24\xaa\xdb\x38\x75\ +\x74\xd6\x00\x85\x88\xe3\x99\x7f\xfb\x3f\x08\xa1\x9a\xf7\x4f\x4c\ +\xcd\x32\xda\x12\x40\x29\x15\xfa\xcf\x20\x22\x4f\x97\x96\xa4\x10\ +\x91\x50\xcd\x51\xd7\x9c\x05\x74\x5a\x40\x68\x0f\xa0\x52\x2a\x6a\ +\x24\x6f\xe6\x20\xa2\x46\xc4\xf1\x56\x06\x98\xa6\x82\xce\x1a\xc0\ +\x0f\x3b\xce\xcc\x51\x16\x91\x39\x44\x24\xf4\x09\x8f\xaa\x21\xb2\ +\x80\xce\x77\x80\xd0\x04\x10\x91\x1e\x5d\x42\x92\x82\x88\x7a\xc3\ +\x8e\x33\xb3\x49\x80\x03\x08\x1d\x36\x4d\x44\xcb\x75\x09\x49\x90\ +\x28\xcd\x99\x1f\x2a\xae\x2d\x01\xa2\x9a\x79\x4a\xa9\xb7\xe8\xd2\ +\x92\x20\xc7\x85\x1d\x54\x4a\x65\xbe\x69\xab\xb3\x06\x08\x6d\x33\ +\x03\x38\x75\xf9\xf2\xe5\x47\x68\x51\x92\x00\xfd\xfd\xfd\x05\x11\ +\x39\x29\x2c\x86\x88\xa2\xae\x39\x75\x74\xd6\x00\xa1\xbd\x66\xcc\ +\xbc\x70\x66\x66\x26\xf3\x1f\x4f\xf6\x63\x59\xd6\x3b\x89\x28\x1f\ +\x16\xc3\xcc\x23\xba\xf4\xb4\x8b\xb6\x04\x98\x9b\x9b\xfb\x73\x54\ +\x8c\x52\x2a\x95\x55\x40\xda\x81\x99\xa3\xb4\x4a\xa3\xd1\x88\xbc\ +\xe6\xb4\xd1\x96\x00\xd3\xd3\xd3\x35\x00\xff\x0a\x8b\x11\x91\x8b\ +\x56\xad\x5a\x15\xfa\x54\x65\x81\xa1\xa1\xa1\x85\x22\x12\x35\x4f\ +\x60\xa4\x1b\xc6\x36\xe8\x1e\x11\xb4\x29\xec\x20\x33\x2f\x76\x5d\ +\x37\xf3\x43\xa9\x1a\x8d\xc6\x15\x44\xf4\xc6\xb0\x98\xe6\x22\x17\ +\x99\x47\x6b\x02\x88\xc8\x9d\x51\x31\x4a\xa9\x1b\x90\xfe\xa4\xd5\ +\x30\x72\x22\xf2\x85\xa8\x20\x22\xba\x4b\x87\x98\xf9\xa2\xf5\x1f\ +\xed\xba\xee\x13\x00\x42\x5f\x8c\x98\x79\x65\xa5\x52\xf9\xb8\x26\ +\x49\x2d\x63\xdb\xf6\xd5\x00\x8e\x0e\x8b\x51\x4a\x6d\x75\x1c\x67\ +\x8b\x26\x49\xf3\x42\xfb\x93\x26\x22\xb7\x45\xc5\x04\x41\xf0\x8d\ +\xe6\x4c\x9c\x4c\xb1\x6c\xd9\x32\x9b\x88\x6e\x8c\x8a\x63\xe6\xc8\ +\x6b\xcc\x0a\x69\x54\xb5\xb7\x23\xe2\x33\x2a\x33\xf7\x11\xd1\x06\ +\x64\x6b\xce\x3d\xcf\xce\xce\x6e\x04\x70\x54\x44\x5c\x2d\x9f\xcf\ +\xff\x58\x87\xa0\x24\xd0\xbe\x3e\x80\xef\xfb\x73\x85\x42\x21\x47\ +\x44\xa1\x93\x43\x89\xe8\xd8\x42\xa1\xf0\x9a\xef\xfb\x8f\xe9\xd2\ +\x16\x86\x6d\xdb\x5f\x65\xe6\x2b\x63\x84\xde\x58\xad\x56\x1f\xed\ +\xb8\xa0\x84\x48\xeb\x65\xeb\x7b\x00\x76\x46\x05\x11\xd1\x4d\xa5\ +\x52\x69\xbd\x06\x3d\xa1\xd8\xb6\x7d\x15\x11\x7d\x25\x46\xe8\x58\ +\x3e\x9f\xbf\xb5\xe3\x82\x12\x24\x95\x15\x42\x9a\xb5\xc0\x8b\x44\ +\x74\x51\x44\x28\x11\xd1\x79\x85\x42\xe1\x05\xdf\xf7\xe7\xb5\x10\ +\x54\xbb\x94\xcb\xe5\x2b\x88\xe8\x47\x88\xf1\xb0\x10\xd1\xfa\x89\ +\x89\x89\xe7\x34\xc8\x4a\x8c\xd4\x96\x88\xf1\x7d\x7f\x5b\xb1\x58\ +\x3c\x19\x11\x1f\x54\x00\x30\x11\xad\x2d\x16\x8b\xff\xf5\x3c\xef\ +\x6f\x3a\xb4\xed\xc7\xb6\xed\x1b\x88\xe8\x56\xc4\xb8\xf9\x22\xf2\ +\xa0\xe3\x38\x37\x69\x90\x95\x28\xa9\xbe\x64\x0d\x0e\x0e\xf6\x35\ +\x1a\x8d\x2d\xcc\xbc\x34\x66\x91\x9f\xe5\xf3\xf9\xab\x76\xee\xdc\ +\xb9\x4b\x83\xae\x0d\xcc\x1c\x77\xb1\x87\x97\xf2\xf9\xfc\x29\x9d\ +\xd6\xd5\x09\x52\xed\x70\xa9\x56\xab\xff\x61\xe6\x75\x22\x32\x17\ +\xb3\xc8\xda\xd9\xd9\xd9\x51\xdb\xb6\x3b\xd6\x5b\x58\xa9\x54\x2e\ +\x57\x4a\x3d\x17\xf7\xe6\x2b\xa5\x66\x99\x79\x5d\x37\xde\x7c\x20\ +\x23\xcd\xac\x52\xa9\xb4\x9e\x99\xef\x40\x0b\x7a\x44\xe4\x1f\x44\ +\x74\x93\xe3\x38\xbf\x4a\x40\x02\xd9\xb6\x7d\x7e\x73\x3f\x82\xd5\ +\x2d\x94\x13\x11\xb9\xd4\x75\xdd\x7b\x12\xd0\x90\x0a\x99\x48\x00\ +\x00\x28\x97\xcb\x9f\x07\xf0\xed\x56\xcb\x29\xa5\xb6\x33\xf3\x9d\ +\x00\xee\x73\x1c\xa7\xa5\xef\xef\xb6\x6d\x1f\x47\x44\xeb\x94\x52\ +\x97\x31\x73\xcb\x23\x92\x44\xe4\x73\xae\xeb\x66\x7e\x36\x73\x18\ +\x99\x49\x00\x00\x28\x97\xcb\xd7\x03\xf8\x26\xda\xd4\xa5\x94\x9a\ +\x64\xe6\x47\x01\x3c\x07\xe0\x79\x00\x2f\xef\x1f\x6e\xde\x1c\xc0\ +\xb9\x18\xc0\xca\xe6\xe8\xa3\x77\xc7\x58\xef\xe7\x50\x08\x80\xeb\ +\x1d\xc7\xb9\xb9\xcd\xf2\x99\x21\x53\x09\x00\xec\x6b\x76\x61\x5f\ +\x6f\x61\x56\x87\x54\x0b\x80\x8f\x39\x8e\xb3\x21\x6d\x21\x49\x90\ +\xb9\xaf\x6e\x8e\xe3\xdc\x41\x44\xef\x15\x11\x37\x6d\x2d\x87\x80\ +\x44\xa4\x1b\x07\xb0\x1e\x94\xcc\xd5\x00\xfb\x69\xae\xc5\xb3\x11\ +\xfa\x36\x89\x6a\x85\x40\x29\xf5\xb6\x6e\x5f\x2a\x1e\xc8\x70\x02\ +\xec\xa7\xd9\x42\xf8\x16\x80\x81\xb4\xb5\xbc\x8e\x67\x17\x2d\x5a\ +\xb4\x7a\xc7\x8e\x1d\xaf\xa5\x2d\x64\x3e\x64\x7a\xd3\x28\x00\xf0\ +\x7d\x7f\x6b\x5f\x5f\xdf\xed\x41\x10\x58\x44\x74\x12\x80\xc8\xb5\ +\x85\x35\xb1\x64\x76\x76\x16\xbe\xef\xc7\x59\x41\x34\xb3\x64\xbe\ +\x06\x38\x90\x72\xb9\xbc\x58\x44\xae\x6d\xae\x30\xbe\xa4\x43\xa7\ +\x99\xc6\xbe\x25\xe0\xe2\x6c\x29\x13\x88\xc8\xe9\xcd\x81\x2e\x5d\ +\x49\x57\x25\xc0\x01\xe4\x2a\x95\xca\xd9\x41\x10\xac\x07\x70\x36\ +\x33\xcf\x6b\x5a\x99\x52\xea\x15\x66\xde\xa4\x94\xda\x58\xab\xd5\ +\x7e\x5f\x2a\x95\x2e\x60\xe6\x07\x63\x16\x7f\xb6\xa7\xa7\x67\x95\ +\xee\x95\xcc\x93\xa2\x5b\x13\xe0\x40\xd8\xb6\xed\x53\x88\xe8\x3d\ +\x00\x4e\xdc\xbf\x79\xf4\xa1\x06\x6d\x8a\xc8\x6e\x00\xdb\x9a\x93\ +\x36\x9e\x16\x91\xcd\xae\xeb\x6e\xc1\xeb\x16\xa4\x2e\x95\x4a\xf7\ +\x32\xf3\xba\x38\x02\x44\xe4\x6b\xae\xeb\xc6\xf9\x5c\x9c\x39\x0e\ +\x87\x04\x38\x28\xc3\xc3\xc3\x0b\x76\xed\xda\x55\x0c\x82\xe0\x28\ +\x00\xb0\x2c\x6b\x4f\x4f\x4f\x8f\x17\xf7\x49\x6d\x6e\x65\x33\x82\ +\x78\x3b\x98\x05\x22\xb2\xa6\x1b\x77\x11\x3b\x6c\x13\x20\x09\x2a\ +\x95\xca\x87\x45\xe4\x81\x38\xb1\x22\xf2\x4c\x6f\x6f\xef\xea\x6e\ +\xb3\x82\xcc\xb7\x02\xd2\xc4\xf3\xbc\xd1\x42\xa1\x30\x4c\x44\xc7\ +\x47\xc5\x12\xd1\xc0\xcc\xcc\x8c\xf8\xbe\xff\x88\x06\x69\x89\x61\ +\x6a\x80\x08\x9a\x56\x30\x8a\x78\x5b\xda\x35\x00\xac\x71\x1c\xe7\ +\xa9\x0e\xcb\x4a\x8c\xcc\x75\x05\x67\x8d\x5a\xad\x36\x4d\x44\x9f\ +\x8e\x19\x9e\x53\x4a\x6d\x18\x1e\x1e\xce\x4a\x5f\x45\x24\xc6\x02\ +\x62\xd0\xb4\x82\xe3\x5b\xb0\x02\xd5\x2d\x56\x60\x2c\x20\x26\xcd\ +\x6f\x13\x23\x88\x6f\x05\xa7\x75\xc3\xec\x20\x63\x01\x31\x69\xce\ +\xf4\xbd\x3a\x66\x78\xd7\x58\x81\xb1\x80\x16\xf0\x3c\x6f\xa4\x50\ +\x28\x9c\x40\x44\xc3\x51\xb1\x44\x54\x7a\xf5\xd5\x57\x03\xcf\xf3\ +\x32\xbd\x46\x80\xb1\x80\x16\x19\x18\x18\x58\x42\x44\xa3\xcc\xbc\ +\x38\x46\x78\xe6\xad\xc0\x58\x40\x8b\xd4\xeb\xf5\x29\x66\x6e\xc9\ +\x0a\xb2\xbc\xe8\x85\xb1\x80\x36\xf0\x3c\x6f\xb4\x58\x2c\x9e\x00\ +\x20\x96\x15\xf8\xbe\x9f\x59\x2b\x30\x16\xd0\x26\x4b\x96\x2c\x19\ +\x60\xe6\x91\xb8\x56\x40\x44\xab\x27\x27\x27\x9f\xee\xb8\xb0\x16\ +\x31\x16\xd0\x26\x53\x53\x53\xf5\x56\xac\x20\x08\x82\x4c\x5a\x81\ +\xb1\x80\x79\xd0\xb4\x82\xb7\x02\x88\x5c\xe4\xb2\x69\x05\x8d\xac\ +\x59\x81\xb1\x80\x79\xd2\xed\x56\x60\x2c\x60\x9e\x34\xad\xe0\x9a\ +\x98\xe1\xb9\x20\x08\x7e\x9a\x25\x2b\x30\x16\x90\x00\x9e\xe7\x8d\ +\x14\x8b\xc5\x13\x11\xcf\x0a\x6c\xdf\xf7\xe7\x3c\xcf\xcb\xc4\x2a\ +\x22\xc6\x02\x12\xa2\xbf\xbf\xbf\x64\x59\xd6\x08\x33\xf7\x45\xc5\ +\x8a\xc8\x1c\x33\xaf\x9e\x9c\x9c\xdc\xaa\x43\x5b\x18\xc6\x02\x12\ +\x62\x7a\x7a\xba\x46\x44\xb1\xac\x80\x88\xf2\x22\x92\x09\x2b\x30\ +\x16\x90\x20\xbe\xef\x8f\x14\x8b\xc5\x93\x10\xbd\xea\x09\x00\xd8\ +\xbe\xef\xcf\xa6\x6d\x05\xc6\x02\x12\xa6\x55\x2b\xb0\x2c\x6b\x55\ +\xb5\x5a\x4d\x65\xfd\x23\xc0\x58\x40\xe2\x34\xad\xe0\x33\x71\x62\ +\x89\x28\x9f\xf6\xb7\x02\x63\x01\x1d\xc0\xf7\xfd\x67\x63\x2e\x80\ +\x05\xec\xb3\x82\xd7\x3c\xcf\xfb\x4b\xa7\x75\x1d\x0c\x63\x01\x1d\ +\x62\xd9\xb2\x65\xf6\xec\xec\xec\x08\x33\x87\x6e\x2c\x05\xec\xb3\ +\x02\xa5\xd4\x29\xf5\x7a\x5d\xfb\x06\x13\xa6\x06\xe8\x10\xbb\x77\ +\xef\xf6\x8b\xc5\x62\x95\x88\xd6\x46\xc5\x12\x91\xc5\xcc\x03\x9e\ +\xe7\xdd\xaf\x43\xdb\x81\x98\x77\x80\x0e\xe2\xba\xee\xdd\x4a\xa9\ +\x5f\xc6\x89\x55\x4a\xbd\x1f\x29\x3c\x90\x26\x01\x3a\x8b\x2c\x58\ +\xb0\xe0\x53\x4a\xa9\x57\xa2\x02\x99\xf9\x0d\xc7\x1c\x73\x8c\xf6\ +\xcd\x33\x4d\x02\x74\x98\xf1\xf1\x71\x17\xc0\x67\x63\x84\x7a\x63\ +\x63\x63\xda\x37\x9a\x34\x09\xa0\x81\x5a\xad\x76\x57\x94\x15\x28\ +\xa5\x1e\xc0\xeb\x66\x28\xeb\xc0\x24\x80\x1e\x24\x97\xcb\x5d\xa9\ +\x94\x3a\xd4\x67\xe0\x71\xa5\xd4\x97\xb4\x2a\x6a\x62\x5a\x01\x9a\ +\xd8\xb3\x67\xcf\xcc\x91\x47\x1e\xb9\x91\x88\x1a\x44\x34\x04\xa0\ +\x07\xc0\x1e\x11\xb9\x27\x9f\xcf\x5f\xec\x38\x4e\x2d\x6d\x8d\x06\ +\xbd\xe4\x60\xfa\x61\x0c\x06\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\ +\x60\x30\x18\x0c\x06\x83\xc1\x60\x30\x18\x0c\x06\x83\xc1\x60\x30\ +\x74\x80\xff\x01\xde\x72\x7a\x59\x43\xce\xf8\xef\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0c\x83\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x0c\x35\x49\x44\x41\x54\x78\x9c\xed\ +\xdd\x59\xcc\x5c\x65\x1d\xc7\xf1\xef\xdb\xb7\xb4\x8d\x50\x90\x56\ +\x20\x86\xd5\x0b\x11\x01\x6f\x00\x29\x70\x81\xe0\x02\x98\x98\xc8\ +\x52\xd6\xc4\x04\x04\x15\x84\x78\x25\x08\xc8\xe2\x76\xc1\x26\xca\ +\x12\xf5\x06\x5c\xd8\x24\x2a\xab\x02\xde\xb0\x09\x15\x49\x40\xa0\ +\x10\xc3\x22\x20\x11\xa4\x24\x6c\x25\x40\xa1\x2d\xe3\xc5\x83\xa2\ +\x40\xe1\x9d\xe5\xfc\xce\x99\x79\xbe\x9f\x64\x2e\x9a\xbc\x33\xf3\ +\xfc\x9f\xe7\xff\xfc\x7b\x66\xe6\xfc\xcf\x01\x49\x92\x24\x49\x92\ +\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\ +\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x51\x53\x23\x7a\x9d\xb9\ +\xc0\xee\xc0\x2e\xc0\x16\xc0\x07\x46\xf4\xba\x92\xde\xf2\x0a\xf0\ +\x38\xb0\x04\xb8\x09\x78\x6d\xd8\x17\x1c\xb6\x00\xcc\x07\xbe\x09\ +\x1c\x03\x2c\x18\x76\x30\x92\x66\xec\x39\xe0\x7c\xe0\x2c\xe0\xa5\ +\x41\x5f\x64\x98\x02\xb0\x13\x70\x39\xb0\xd9\x10\xaf\x21\x69\x38\ +\x4f\x00\x07\x02\x77\x0c\xf2\xe4\x41\x0b\xc0\x9e\xc0\xd5\x94\x43\ +\x7f\x49\xed\x7a\x0d\xf8\x22\xf0\xc7\x7e\x9f\x38\x48\x01\xd8\x06\ +\xf8\x0b\xb0\xf6\x00\xcf\x95\xd4\x8c\x97\x81\x45\xc0\x03\xfd\x3c\ +\xa9\xdf\x02\x30\x0b\xb8\x13\xd8\xbe\xcf\xe7\x49\x6a\xde\x5d\xc0\ +\x8e\xc0\x1b\x33\x7d\xc2\xac\x3e\xdf\x60\x31\x6e\x7e\xa9\xab\xb6\ +\xa7\xec\xd1\x19\xeb\xb7\x00\x1c\xd9\xe7\xdf\x4b\xca\xea\x6b\x8f\ +\xf6\xf3\x11\x60\x3e\xf0\x3c\x30\xdd\xd7\x70\x24\x25\xad\x06\xd6\ +\x67\x86\x3f\x0d\xf6\x73\x04\xf0\x09\xdc\xfc\x52\xd7\x4d\x53\xf6\ +\xea\x8c\xf4\x53\x00\x36\xea\x7f\x2c\x92\x5a\x30\xe3\xbd\xda\x4f\ +\x01\x18\xd5\x69\xc3\x92\x3a\xa2\x9f\x02\xf0\x74\x63\xa3\x90\x34\ +\x4a\xcb\x66\xfa\x87\xfd\x7e\x09\xf8\x02\xfd\xff\x72\x20\x29\xa7\ +\xb1\x2f\x01\x5f\x02\x6e\x19\x64\x44\x92\x62\x6e\xa5\x8f\xe6\xa0\ +\x7e\xff\x37\xff\x69\x9f\x7f\x2f\x29\xeb\x67\xfd\xfc\xb1\xa7\x02\ +\x4b\x93\xa3\xef\x53\x81\x07\x6d\x06\xba\x13\x2f\xfa\x21\x75\xcd\ +\xb6\xf4\xd9\x0c\x34\xc8\x17\x7a\x0f\x00\x87\x00\xbd\x01\x9e\x2b\ +\xa9\x19\x3f\xa1\xcf\xcd\x0f\x83\x9f\xd9\xf7\x20\xa5\xfd\x70\x8f\ +\x01\x9f\x2f\x69\x74\x7e\x0b\x1c\x3a\xc8\x13\x87\x39\xb5\xf7\xcf\ +\xc0\x26\xc0\x76\x43\xbc\x86\xa4\xe1\x5c\x0e\x1c\x34\xe8\x93\x87\ +\x3d\xbb\x6f\x0e\x70\x03\xe5\x82\xa0\x29\x4f\x51\x8a\x8f\xd4\x35\ +\xbb\x00\x1f\x0e\xbe\xdf\x8d\xc0\x5e\xc0\xca\xe0\x7b\xbe\xc3\x02\ +\xca\x47\x82\x5e\xe8\xf1\x0c\xe5\xca\xc3\x52\x97\x7c\x84\x92\x9b\ +\xa9\x7d\xf0\x20\xe5\x84\x9f\x4e\xf8\x28\xe5\x2a\xa5\xa9\xe0\xef\ +\x07\xd6\x8d\x44\x26\xbd\xbf\xf5\x28\x5f\xc0\xa5\xf2\xff\x59\xca\ +\x9e\xeb\x94\xdd\x80\xd7\xc9\x4d\xc2\xf5\xc0\xec\x44\x60\xd2\x7b\ +\x98\x4d\xf9\x18\x9c\xca\xfb\xd7\x81\x4f\x45\x22\x1b\xc0\x61\xe4\ +\x26\xa2\x07\x9c\x9b\x09\x4b\x5a\xa3\xf3\xc8\xe6\xfc\x61\x99\xb0\ +\x06\x77\x3a\xd9\x09\x39\x3a\x13\x96\xf4\x0e\xc7\x90\xcd\xf5\xd3\ +\x32\x61\x0d\x67\x16\x70\x25\xb9\x49\x59\x4d\xf9\x26\x54\x4a\xda\ +\x8b\x92\x7b\xa9\x3c\xbf\x82\x31\xea\xc4\x5d\x1b\xb8\x9b\xdc\xe4\ +\xbc\x48\x39\x45\x59\x4a\xd8\x16\x58\x4e\x2e\xbf\xef\x62\x0c\xef\ +\xc3\xb1\x31\xf0\x24\xb9\x49\x7a\x0c\xd8\x30\x12\x99\x6a\xb6\x21\ +\xe5\x06\x9d\xa9\xbc\x7e\x92\xb2\x97\xc6\xd2\x76\x94\x53\x86\x53\ +\x93\xb5\x04\x98\x17\x89\x4c\x35\x9a\x47\xc9\xb1\x54\x3e\xbf\xcc\ +\x04\x9c\x69\xbb\x0f\xa5\x3d\x31\x35\x69\x97\xe0\xf5\x0b\x35\x7a\ +\x53\xc0\xa5\xe4\xf2\xf8\x0d\x60\xef\x48\x64\x01\xc7\x91\x9b\xb8\ +\x1e\x70\x4a\x26\x2c\x55\xe4\x54\xb2\x39\x7c\x6c\x26\xac\x8c\x29\ +\xe0\x02\xb2\x13\x38\x70\x83\x84\xf4\x36\x07\x93\xcd\xdd\x0b\x98\ +\xc0\xa3\xd8\x39\xc0\xcd\xe4\x26\x71\x05\xb0\x53\x22\x30\x4d\xb4\ +\x9d\x29\xb9\x94\xca\xdb\x9b\x28\x7b\x65\x22\x2d\x04\x1e\x22\x37\ +\x99\xcb\x80\xcd\x23\x91\x69\x12\x6d\x41\xc9\xa1\x54\xbe\x3e\x44\ +\x69\xae\x9b\x68\x5b\x92\x6d\x1c\x5a\x8a\x8d\x43\xea\xdf\xba\x94\ +\xdc\x49\xe5\xe9\x73\x94\xbd\x51\x85\xdd\x29\x3d\xcc\xa9\xc9\xbd\ +\x0e\x1b\x87\x34\x73\xb3\x29\x39\x93\xca\xcf\x95\x64\xaf\xa9\xd1\ +\x09\x47\x90\x9b\xe0\x1e\x70\x4e\x26\x2c\x4d\x80\x73\xc9\xe6\xe6\ +\xe1\x99\xb0\xba\xe7\x4c\xb2\x13\xfd\xf5\x4c\x58\x1a\x63\x47\x93\ +\xcd\xc9\x33\x32\x61\x75\xd3\x34\x70\x15\xb9\xc9\x5e\x05\xec\x19\ +\x89\x4c\xe3\x68\x4f\x4a\x8e\xa4\xf2\xf1\x4a\xc6\xa8\xc1\xa7\x29\ +\xeb\x00\x7f\x25\x37\xe9\x2f\x02\x5b\x47\x22\xd3\x38\xd9\x86\x92\ +\x1b\xa9\x3c\xbc\x9b\x31\x6c\xf0\x69\xca\x26\x94\x8b\x7d\xa6\x26\ +\xff\x51\x60\x83\x48\x64\x1a\x07\x1b\x50\x9a\xc9\x52\xf9\x37\xd6\ +\x0d\x3e\x4d\xd9\x1e\x78\x85\xdc\x22\xdc\x06\xcc\x8d\x44\xa6\x2e\ +\x9b\x07\xdc\x4e\x2e\xef\x5e\xc6\x5b\xeb\xad\xd1\xbe\xe4\x16\xa2\ +\x07\x5c\xc4\x04\x9e\x72\xa9\x19\x9b\x02\x2e\x26\x9b\x73\xfb\x44\ +\x22\x1b\x63\xc7\x93\x5d\x90\x93\x32\x61\xa9\x83\x4e\x26\x9b\x6b\ +\xdf\xca\x84\x35\xde\xa6\x80\x9f\x93\x5d\x98\x03\x22\x91\xa9\x4b\ +\x0e\x24\x9b\x63\x17\xe2\xd1\xe6\x8c\xcd\x01\x6e\x21\xb7\x38\xaf\ +\x02\x8b\x22\x91\xa9\x0b\x16\x51\xd6\x3c\x95\x5f\x37\x33\xc1\x0d\ +\x3e\x4d\x59\x08\x3c\x42\x6e\x91\x9e\x06\x36\x8b\x44\xa6\x36\x6d\ +\x4e\xb6\xc1\xe7\x61\x4a\x2e\x6b\x00\x5b\x01\xcf\x93\x5b\xac\xfb\ +\x80\xf9\x91\xc8\xd4\x86\x75\x29\x6b\x9c\xca\xa7\xe7\x81\x8f\x45\ +\x22\x9b\x60\x9f\x21\xdb\x38\xf4\x7b\x86\xbb\x6b\xb2\xba\x69\x1a\ +\xf8\x03\xb9\x3c\x5a\x09\x7c\x3a\x12\x59\x05\xbe\x42\x6e\xe1\x7a\ +\xc0\x8f\x32\x61\x29\xe8\xc7\x64\x73\xe8\x88\x4c\x58\xf5\xf8\x21\ +\xd9\x05\x3c\x32\x13\x96\x02\x8e\x22\x9b\x3b\x67\x65\xc2\xaa\xcb\ +\x34\x70\x0d\xb9\x45\x5c\x05\x7c\x2e\x12\x99\x9a\xb4\x07\xd9\x06\ +\x9f\xab\xf1\x23\x64\x63\xd6\x01\xee\x21\xb7\x98\x2f\x00\x1f\x8f\ +\x44\xa6\x26\x6c\x4d\xb6\xc1\xe7\xaf\x94\x1c\x55\x83\x36\x05\xfe\ +\x45\x6e\x51\xff\x0e\x7c\x28\x12\x99\x46\x69\x03\x4a\xd3\x57\x2a\ +\x4f\x9e\xa2\x34\xb5\x29\xe0\x93\x64\x1b\x87\xfe\x84\x8d\x43\xe3\ +\x64\x2e\xa5\xd9\x2b\x95\x1f\xaf\x00\x3b\x44\x22\xd3\x7f\x2d\x26\ +\xb7\xc0\x3d\xe0\x57\x78\x2a\xe7\x38\x98\xa2\x34\x79\x25\x73\x63\ +\xbf\x48\x64\x7a\x87\x13\xc9\x2e\xf4\x89\x99\xb0\x34\x84\x6f\x93\ +\xcd\x89\x13\x32\x61\xe9\xdd\x4c\x01\xbf\x24\xbb\xe0\xfb\x47\x22\ +\xd3\x20\x0e\x20\x9b\x0b\xbf\xc0\xa3\xc2\xd6\xcd\x05\x6e\x25\xb7\ +\xe8\xaf\x52\xbe\x83\x50\xb7\xec\x48\xb6\xc1\xe7\x56\xfc\x5e\xa8\ +\x33\x3e\x44\xf9\xb6\x3e\xb5\xf8\xff\xc2\xc6\xa1\x2e\xd9\x8c\xd2\ +\xcc\x95\x5a\xff\x47\xf0\x97\xa1\xce\xd9\x8a\xf2\xbb\x7d\x2a\x09\ +\xee\xc5\xc6\xa1\x2e\x98\x4f\x59\x8b\xd4\xba\x3f\x4f\xc9\x35\x75\ +\xd0\x67\xc9\x9e\xf5\x75\x2d\x9e\xf5\xd5\xa6\x69\x4a\xf3\x56\x6a\ +\xbd\x57\x51\x9a\xd3\xd4\x61\x5f\x23\x97\x10\x3d\x4a\x8f\x82\xda\ +\x71\x36\xd9\xb5\xfe\x6a\x26\x2c\x0d\xcb\xc4\x98\x7c\x16\x7a\xad\ +\xd1\x34\xe5\xf0\x3c\x95\x1c\x2b\xf1\xd0\x30\x29\xfd\x51\xef\x1a\ +\xfc\xa8\x37\x76\xd2\x5f\x0e\xbd\x80\x5f\x0e\x25\xa4\xbf\xec\xbd\ +\x07\x1b\x7c\xc6\x96\x3f\x0f\x4d\x96\x36\x7e\xee\xdd\x34\x12\x99\ +\x1a\xe3\x09\x22\x93\xc1\x13\xbe\x34\xb0\xfd\xc9\x25\x4e\x0f\x4f\ +\x11\x1d\xb5\x36\x4e\xf9\x5e\x1c\x89\x4c\x31\xe9\x26\x91\xe3\x33\ +\x61\x55\xe1\x04\xb2\x6b\x67\xd3\xd7\x04\xb2\x4d\x74\x3c\xd9\xf6\ +\xad\x91\xf1\x42\x11\xe3\xc5\x0b\xbf\x68\xe4\xbc\x54\xd4\x78\xf0\ +\xd2\x6f\x6a\x8c\x17\x8b\xec\x36\x2f\xfe\xaa\xc6\x79\xb9\xe8\x6e\ +\xf2\xf2\xef\x8a\x49\xdf\x30\xe2\xcc\x4c\x58\x63\xed\x2c\xb2\x6b\ +\xe2\x0d\x60\x2a\xe7\x2d\xa3\xba\xc3\x5b\xc0\x29\xce\x9b\x46\x76\ +\x83\x37\x81\x55\x6b\xe6\xe3\x6d\xa3\xdb\xe4\x6d\xe0\xd5\xba\xcd\ +\xc9\x36\x0e\x3d\x0c\x2c\x8c\x44\xd6\x6d\x0b\x29\x4d\x54\xa9\x79\ +\x7f\x1a\xaf\xe7\xa8\x35\x58\x04\xac\x20\x97\x8c\x37\x03\x73\x12\ +\x81\x75\xd4\x5c\xe0\x16\x72\xf3\xfd\x2a\x65\x8d\xa5\x35\x3a\x90\ +\x5c\x42\xf6\x80\x0b\xa9\xf3\xd4\xd3\x29\x4a\xd3\x54\x72\xae\x0f\ +\x48\x04\xa6\xf1\x77\x32\xd9\xc4\xfc\x56\x26\xac\x4e\x39\x9e\xec\ +\x1c\x9f\x94\x09\x4b\x93\x60\x0a\xb8\x98\x6c\x82\xee\x1b\x89\xac\ +\x1b\xf6\x25\x3b\xb7\x17\x51\xe7\x51\x96\x86\x30\x0f\xb8\x9d\x5c\ +\x92\xbe\x02\x6c\x1f\x89\xac\x5d\x3b\x90\x6d\xf0\xb9\x0d\x1b\x7c\ +\x34\xa0\x0d\x81\xc7\xc8\x25\xeb\x93\xc0\xc6\x91\xc8\xda\xb1\x09\ +\xa5\x39\x2a\x35\x9f\x8f\x52\x9a\xbf\xa4\x81\x6d\x43\xb6\x71\xe8\ +\x6e\x60\xed\x48\x64\x59\xeb\x50\x9a\xa2\x52\xf3\xf8\x22\xa5\xe9\ +\x4b\x1a\xda\x9e\x64\x1b\x87\xae\x04\x66\x45\x22\xcb\x98\x06\xae\ +\x22\x37\x7f\xab\x28\xcd\x5e\xd2\xc8\x7c\x9d\x5c\x02\xf7\x80\xd3\ +\x33\x61\x45\x9c\x41\x76\xee\x8e\xca\x84\xa5\xda\x9c\x4b\x36\x91\ +\x0f\xcf\x84\xd5\xa8\x23\xc8\xce\xd9\x39\x99\xb0\x54\xa3\xd9\xc0\ +\x75\xe4\x92\x79\x25\xb0\x5b\x22\xb0\x86\xec\x4e\xb6\xc1\xe7\x0f\ +\xd8\xe0\xa3\x86\xad\x0b\x2c\x25\x97\xd4\xcf\x01\x5b\x46\x22\x1b\ +\xad\x2d\x29\x63\x4f\xcd\xd3\x52\xca\xda\x48\x8d\xdb\x02\x58\x46\ +\x2e\xb9\x1f\x02\x16\x24\x02\x1b\x91\x85\x94\x66\xa7\xd4\xfc\x2c\ +\xa3\x34\x73\x49\x31\x3b\x93\x6d\x1c\xba\x89\xf1\x68\x1c\x9a\x43\ +\x69\x72\x4a\xcd\xcb\x0a\x60\xa7\x44\x60\xd2\xdb\x1d\x4c\x2e\xd1\ +\x7b\xc0\x05\x74\xfb\x94\xd6\x29\xca\x18\x93\x73\x72\x50\x24\x32\ +\x69\x0d\x4e\x25\x9b\xf0\xc7\x66\xc2\x1a\xc8\x71\x64\xe7\xe2\x94\ +\x4c\x58\xd2\x9a\x4d\x01\x97\x92\x4b\xfa\x37\x80\xbd\x23\x91\xf5\ +\x67\x1f\xca\xd8\x52\xf3\x70\x09\xdd\x3e\x1a\x52\x45\xe6\x01\x4b\ +\xc8\x25\xff\xcb\xc0\x76\x91\xc8\x66\x66\x3b\xca\x98\x52\xf1\x2f\ +\xa1\xcc\xb9\xd4\x19\x1b\x01\x8f\x93\xdb\x04\x5d\x69\x1c\xda\x98\ +\x32\x96\x54\xdc\x8f\x51\x9a\xb4\xa4\xce\xd9\x16\x58\x4e\x6e\x33\ +\xdc\x45\xbb\x8d\x43\x6b\x53\x9a\x97\x52\xf1\x2e\xa7\x34\x67\x49\ +\x9d\xb5\x17\xb0\x9a\xdc\xa6\xb8\x82\x76\x1a\x87\x66\x51\x9a\x96\ +\x52\x71\xae\xa6\xcc\xad\xd4\x79\xc7\x90\xdb\x18\x3d\xe0\xb4\x4c\ +\x58\xff\xe7\xf4\x21\xc6\x3b\xc8\xe3\xe8\x4c\x58\xd2\x68\x9c\x4f\ +\x76\x83\x1c\x96\x09\x0b\x80\x2f\x37\x18\xc7\xbb\x3d\xce\xcb\x84\ +\x25\x8d\xce\x6c\xe0\x06\x72\x9b\xe4\x75\x32\x97\xbc\x5e\xf4\xe6\ +\x7b\xa5\xe2\xba\x9e\x32\x97\xd2\xd8\x59\x0f\x78\x80\xdc\x66\xf9\ +\x1b\xb0\x56\x83\xf1\xac\xf5\xe6\x7b\xa4\xe2\xb9\x9f\x32\x87\xd2\ +\xd8\xfa\x08\xf0\x0c\xb9\x4d\x73\x68\x83\xb1\x1c\x1a\x8c\xe3\x19\ +\x4a\xd3\x95\x34\xf6\x76\x21\xd7\x38\xb4\xa4\xc1\x38\x52\x27\x3b\ +\xad\xa0\x34\x5b\x49\x13\xe3\x10\x72\xff\x7b\xae\xdf\xc0\xf8\xd7\ +\x0f\x8e\xff\xe0\x06\xc6\x2f\xb5\xee\xbb\x64\x36\xd0\xae\x0d\x8c\ +\x7d\xd7\xd0\xd8\xbf\xd3\xc0\xd8\xa5\x4e\x98\x02\x2e\xa3\xf9\x4d\ +\xb4\x5f\x03\x63\xdf\x2f\x30\xee\x4b\xb1\xc1\x27\x6a\x92\x2e\x3d\ +\x3d\x0e\x7a\x94\xdf\xd0\xef\x68\xf8\x7d\x9a\xd8\x44\x4d\x6f\xcc\ +\x3b\x78\xeb\xfc\x02\x85\x58\x00\xf2\x5e\xa5\xb4\xf3\x3e\xd1\xf6\ +\x40\x3a\xe4\x1f\x94\x39\x59\xd1\xf6\x40\x6a\x63\x01\x68\xc7\x32\ +\xe0\x0b\xc0\x4b\x6d\x0f\xa4\x03\x5e\xa2\xcc\xc5\xb2\xb6\x07\x52\ +\x23\x0b\x40\x7b\x96\xe2\xe5\xac\x00\x0e\xa4\x9c\xf0\xa3\x16\x58\ +\x00\xda\x75\x5d\xdb\x03\xe8\x80\xeb\xdb\x1e\x40\xcd\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\xc5\x2c\x00\x52\ +\xc5\x2c\x00\x93\x69\xba\xed\x01\x68\x3c\xcc\x6e\x7b\x00\x6a\xc4\ +\xaf\x81\x29\xe0\x37\xc0\xea\x96\xc7\xa2\x0e\xf3\x08\x60\x72\x5d\ +\x06\x2c\x05\x0e\xc2\x23\x02\xa9\xb3\x7a\x81\xc7\xdf\x80\x83\x19\ +\xae\x10\x2c\x6e\x68\x6c\x52\xd5\x12\x05\x60\x14\x85\xc0\x02\x30\ +\x81\xfc\x08\x50\x97\xad\x80\x4b\x81\xfb\x19\xfe\x88\x40\x13\xc0\ +\x02\x50\x27\x0b\x81\x00\x0b\x40\xed\x2c\x04\x95\xb3\x00\xb4\x6f\ +\x45\xdb\x03\xc0\x42\x50\x2d\x0b\x40\xfb\x1e\x6f\x7b\x00\xff\xc3\ +\x42\x50\x19\x0b\x40\xfb\xee\x68\x7b\x00\xef\xc2\x42\x20\x85\x7c\ +\x9e\xec\x4f\x81\x83\xfe\x7c\xf8\xbb\x86\x5e\x5b\x2d\x9a\x6a\x7b\ +\x00\x62\x1a\xb8\x0f\xd8\xba\xed\x81\xb4\xc4\x1c\x6c\x91\x1f\x01\ +\xda\xb7\x1a\xf8\x46\xdb\x83\x90\xd4\xae\x1f\xd0\xfe\xa1\x7e\x1b\ +\x0f\x49\x94\x43\xe1\xb3\x69\x7f\x43\x5a\x00\xa4\x16\x7d\x09\x78\ +\x8e\xf6\x37\xa6\x05\x40\x6a\xc9\xfa\xc0\xf7\x80\xe5\xb4\xbf\x41\ +\x2d\x00\x52\x4b\x16\x30\xf9\x85\x40\xd2\xfb\x98\xe4\x42\x20\x69\ +\x86\x26\xb1\x10\x48\xea\xd3\x24\x15\x02\x49\x03\x9a\x84\x42\x20\ +\x69\x48\x0b\x80\xef\x33\x9e\x85\x40\xd2\x88\x8c\x63\x21\x90\x34\ +\x62\xe3\x54\x08\x24\x35\x64\x1c\x0a\x81\xa4\x86\x75\xb9\x10\x48\ +\x0a\xe9\x62\x21\x90\x14\xd6\x95\x42\xb0\xaa\xe9\x40\x25\xad\x59\ +\xdb\x85\xe0\x9f\xcd\x87\x28\xe9\xfd\xb4\x55\x08\x7e\x9f\x08\x4e\ +\xd2\xcc\xa4\x0b\xc1\x51\x99\xb0\x24\xf5\x23\x51\x08\x96\x03\x1f\ +\x4c\x05\x24\xa9\x7f\x0b\x29\xd7\x2a\x6c\xa2\x10\x9c\x10\x8c\x43\ +\xd2\x10\x46\x5d\x08\x6e\x03\xd6\x8a\x46\x20\x69\x68\xa3\x28\x04\ +\x4b\x81\x0d\xd2\x03\x97\x34\x3a\x83\x16\x82\x6b\x29\xd7\x3b\x94\ +\x34\x01\xfe\x53\x08\x9e\xe5\xbd\x37\xfe\xbd\xc0\x62\xbc\x0b\x50\ +\xe7\xb8\x20\x1a\x85\x79\xc0\xee\xc0\xce\xc0\x16\x6f\xfe\xfb\x05\ +\xca\x3d\x05\x6f\xa4\xdc\xfa\xac\xd7\xd6\xe0\x24\x49\x92\x24\x49\ +\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\x49\x92\ +\x24\x49\x92\x24\x49\x92\x24\x49\x92\x24\xa9\x33\xfe\x0d\xdc\x35\ +\x4a\x35\xde\x17\xd7\xc6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x0f\x01\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ +\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xe2\x02\x16\x17\x31\x37\xff\x63\x5c\x42\x00\x00\x00\x19\x74\x45\ +\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\ +\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\ +\x00\x0e\x69\x49\x44\x41\x54\x78\xda\xed\x9d\x7b\xac\x1c\xd5\x7d\ +\xc7\x3f\xe7\xec\xee\xcc\x5c\x1e\x06\x1b\x1b\x2c\x1e\xc6\x76\x20\ +\xf1\x23\x98\x2a\xd8\x72\x84\x81\x46\x0e\x48\xd8\x29\xd4\x0f\xda\ +\x90\x26\x0a\x02\x55\x54\xb4\xc1\x51\x48\x9b\xd2\x06\xd3\xa0\x96\ +\xaa\x0f\x15\x52\x8a\x1a\x85\x8a\x3f\x48\x53\x42\x83\x6d\x88\x4b\ +\xec\x54\x60\x2b\x41\x90\x9a\xda\x6d\xa9\x89\x6d\x82\x52\x0c\x76\ +\x1d\x93\x3a\x7e\x00\x16\x9e\xd9\xd9\x3d\xbf\xfe\x31\xe7\xfa\x5e\ +\xfb\xee\x7b\x67\x67\x77\x66\xe7\x2b\x5d\xdd\xd7\x6a\xf7\xcc\xef\ +\xfb\x3d\xbf\xc7\x79\x2a\x32\x06\x2f\xd0\x77\x02\x55\xfb\xeb\x6a\ +\x60\x59\x97\x6f\xb9\x19\x58\x6f\x7f\x2e\xf8\xae\x79\x2c\x4b\xf6\ +\x52\x29\x27\x7b\x81\x7d\x86\x87\x80\xa5\xf6\xcf\xd2\xc3\xe7\x1a\ +\xff\xde\x5b\x81\x7b\x00\xf1\x5d\xb3\x33\x17\x40\x72\xa4\x7b\xc0\ +\x8d\xc0\x33\x03\xd6\xb4\x95\xc0\x0f\x7c\xd7\xf8\xb9\x00\x7a\x43\ +\xfc\x4e\x60\x1a\x30\x7d\xc0\x9b\xfa\x0e\x70\xc8\x77\xcd\x82\x34\ +\xd8\x55\x0f\x28\xd9\xca\x7e\x5f\xe2\x05\x7a\x9b\x17\x68\x01\xae\ +\x48\x01\xf9\xd8\x36\x5e\xe1\x05\x5a\x6c\xdb\x97\x8c\x7f\xa6\x5c\ +\x00\xad\xe1\x3e\x4b\xfa\x4b\xc0\xe2\x14\xa7\x29\x8b\x81\x97\xec\ +\xb3\xdc\x97\x87\x80\xc6\xbd\xfe\x6c\xe0\x66\xe0\xdb\x64\x1b\x9f\ +\x03\x36\xfa\xae\x79\x3f\x17\x40\x44\xfc\x14\xdb\x3b\xbe\xc4\x70\ +\xe1\x61\xe0\xcf\x7c\xd7\x1c\x19\x5a\x01\x78\x81\x7e\x13\x98\x99\ +\xf6\x72\xb4\xcb\xb2\xf2\x2d\xdf\x35\xb3\x87\x46\x00\x36\x19\x3a\ +\x17\xf8\x31\x30\x87\x1c\x00\xaf\x03\x57\x03\xc7\x7c\xd7\x48\xd6\ +\x93\xc0\xa7\x81\x23\x39\xf9\xa7\x60\x8e\xb5\xc9\xd3\x99\xad\x02\ +\xbc\x40\xaf\xf0\x02\xbd\x1d\x58\x95\xf3\x5d\x17\xab\xbc\x40\x6f\ +\xf7\x02\xbd\x22\x53\x21\xc0\x0b\xf4\x3c\x60\x57\xce\x6f\x5b\x98\ +\xef\xbb\x66\x77\xea\x05\x60\x6b\xe0\x1c\x1d\xc2\x77\x8d\x4a\xad\ +\x00\x72\xf2\x07\x5f\x04\xba\x07\xa4\x2b\x2f\xd0\x7f\xec\x05\xfa\ +\x6d\x5b\xe6\xe4\xe8\xb2\x54\xf4\x02\xfd\xb6\xb5\xa9\x1a\x78\x01\ +\x00\x5f\x00\x1e\x04\x66\x0c\x71\x7d\x1f\xe7\x48\x81\x32\xcf\xc9\ +\x0c\x1c\x1e\xb4\xb6\x1d\xdc\x10\xe0\x05\x7a\x15\x63\x8b\x27\x72\ +\xc4\x41\x90\x03\x27\x94\xc1\x7d\x55\xa3\xe6\x02\xb0\xda\x77\xcd\ +\x86\x81\xf3\x00\x5e\xa0\x97\xe6\xe4\xf7\xc0\x01\xbc\x1b\x7d\xaf\ +\xfc\xe9\xc9\x68\xba\xde\xda\x7a\x70\x04\x60\x7b\xfe\x96\x9c\xae\ +\xf8\x51\x5e\x6e\x6a\xfd\x79\x8b\xb5\x79\x7f\x05\x60\x13\xbe\xbb\ +\xf3\x9e\xdf\x23\x38\x60\xb6\xd5\xfd\xef\x7a\x2f\xd0\x77\x77\x9b\ +\x18\x76\xeb\x01\xfe\x08\x78\x24\x67\xaa\x37\x05\x7a\x78\xbb\x80\ +\x69\xf8\xaa\x47\x2c\x07\xfd\x49\x02\x6d\xa9\x37\x23\x67\xab\x37\ +\xbd\xdf\x1f\x31\x60\x57\x18\x96\xfe\x49\x51\xb8\xa5\x26\x5d\xfb\ +\x7c\xd7\x5c\x9a\xb8\x00\xec\x20\x4f\x2f\x57\xe0\x0e\x37\xf9\xca\ +\x9c\x64\x48\x9d\x03\xee\x51\x0d\xe5\x3a\x85\x22\xa8\x4e\x07\x8b\ +\x74\x17\xe4\x93\x93\xdf\x1b\x14\x5f\x28\x9d\x42\xaf\x57\x9f\xfc\ +\x93\x1c\x74\x3a\xea\xaa\x3b\x20\x7f\x5e\x4e\x51\x6f\x7b\x7f\x70\ +\x43\x75\xec\xd7\x8d\x0a\x09\x7b\xc7\x8d\x6e\x93\xfc\x15\xe4\xb3\ +\x7a\xbd\xcb\xfb\x1c\xf0\x27\x19\x42\x2a\x11\xf9\xcf\x29\xf4\x72\ +\xd5\xce\x80\xfa\xae\x76\xa7\x92\x55\x9b\x02\xd8\x0e\x2c\xcc\xa9\ +\xea\x11\xf9\xd3\x0c\x72\x38\x72\xfb\x0a\x85\x57\xd6\x88\xb4\xed\ +\xd9\x77\xf8\xae\x59\x14\xab\x07\xb0\xf5\xfe\x3a\xe0\xaa\x9c\xaa\ +\xda\x30\x05\xd3\x95\xdb\x3f\xe1\x5a\xf2\x01\x4a\xe0\x89\xea\x84\ +\x7c\x80\xab\xbc\x40\xaf\x6b\x75\x7c\xa0\xd5\x10\x70\x2e\xd1\x46\ +\xcb\x3c\xe9\xab\x83\xcb\xd7\x5f\x46\xd5\xe9\x40\x04\xda\x66\xfc\ +\x65\x4e\xba\xfa\x91\xb2\x46\xca\x5d\x95\xf6\xab\x2d\x67\xf1\x84\ +\x00\x2f\xd0\x7b\xc8\xd7\xf0\x35\x2d\xdb\x3c\x69\x98\xad\x37\x2e\ +\xf7\x2c\x46\xa4\x2b\xf2\xc7\xe3\x75\xdf\x35\x73\xbb\xf6\x00\x76\ +\xe9\x76\x4e\x7e\x03\x94\x17\x1b\x9c\x0d\xaa\x75\xf2\x05\xaa\x8f\ +\x0a\xc1\xd4\x53\xc9\xf7\xc2\xfa\xe4\x8b\x63\xf0\x27\xb7\xe5\x61\ +\xe6\x58\xee\x3a\x17\x80\xdd\xb4\x31\x33\xa7\xb8\x71\x2f\x2e\x7c\ +\x5e\xa1\x57\xb6\x16\x1d\x8d\x63\x38\xf3\xde\x33\x08\xbf\x2c\x63\ +\x31\x3f\xb2\xf5\xc4\x61\x5f\x89\x92\xc3\x60\x99\xa1\x34\xe5\x0c\ +\x2e\xfa\xe6\xf9\xed\xb6\x6e\xa6\xe5\xb0\xfe\x98\x43\x93\x37\xb8\ +\x2f\x8f\xfb\xf5\x7b\xb1\xa9\x08\x65\x57\xf0\x0e\x37\x71\xfd\x02\ +\xca\x85\xf0\x6b\x42\xe5\x01\x38\xcc\xf1\xb1\x00\x2c\x9c\x1a\x3a\ +\x46\x5f\xfb\x27\x02\x67\x40\xe5\xde\x28\x31\x28\x7f\xef\x04\x87\ +\x96\x7f\x80\x36\x6d\x55\xee\xca\x72\x78\x4f\xdb\x39\x80\xdd\xab\ +\xf7\x5e\xce\x74\x9d\x8e\xef\x94\x28\x28\x0f\x5f\xde\x6f\x1c\xb3\ +\x4b\xc0\x31\xf0\xa7\x98\x89\x96\x2f\xc1\x48\x60\xdd\xbe\x03\xf2\ +\x1a\xc8\x7b\x50\xbe\xc6\x9c\x14\x07\x80\xb3\x49\xa1\x97\xaa\x6e\ +\xba\xe2\xa4\x7a\x7b\x11\x1b\xc9\xe9\xe6\x9c\xe6\x3a\x28\xc0\x85\ +\x37\x5d\xc4\x0d\xcf\x2f\xac\x4f\xbe\x06\x39\x06\xe1\x4a\x99\x48\ +\xbe\x0d\x1d\x23\x81\xc6\x1c\x00\x39\x12\x25\x83\xc1\x02\x13\x91\ +\x6f\x3d\x01\x23\x51\x52\xd8\x25\xf9\x0d\xb9\x6c\xe4\x01\xf2\x05\ +\x9d\x35\xe0\x3b\x86\x6b\x17\x2f\xe2\xe5\x4b\xb6\xe3\x7c\x47\x4f\ +\x1c\xa5\xd3\x20\x87\x21\x98\x69\x20\xa0\xe6\x28\x9e\xb3\x49\x61\ +\x5e\x81\xca\x5f\x09\x9c\xa8\x6b\xff\x78\xdb\x5d\x67\xb2\x48\xd7\ +\x19\xf4\x59\x9b\x53\x3d\xb1\xab\xc8\x41\x01\x0d\x2f\x2f\xda\x8e\ +\xb3\x6e\x1c\xf9\x45\x9b\xac\xcd\x35\x04\x1f\x36\x04\xd3\xed\x34\ +\x6e\x9d\x2e\x54\x5e\x2e\x54\x1e\xa8\x4d\xbe\xfe\x35\x85\xbb\x2b\ +\xfe\xb5\xba\x5e\xa0\xd7\xd6\x1a\x1c\x52\x79\xef\x6f\x9e\xec\x81\ +\x10\x7e\x11\xaa\x8f\x0b\x85\xbb\x14\xa5\x47\x94\x35\x9c\xa2\x7c\ +\x87\xa1\x70\x48\x53\x7e\xae\x7a\x4a\xdc\x6e\x17\xc5\xb5\x8a\xc2\ +\xed\x0a\x35\x8b\xf6\xc6\x12\xba\xf4\x02\xaa\x06\xf9\x4b\x88\x4e\ +\xe6\xc8\x89\x0f\x85\xea\x33\x10\x7e\x3e\x62\xb5\xf0\xdb\x0a\x7d\ +\x0d\xe0\x42\xf8\x99\x78\xfa\x48\xe1\x0e\x85\xf3\xb8\x42\xaa\x8c\ +\x1d\x6e\xd7\x3b\x5c\xe3\xbb\xe6\xe5\x66\x02\xd8\x46\xba\x8f\x65\ +\xe9\x0e\x25\x90\x40\x90\xd7\xa0\x7c\x8d\x40\x48\xcf\xb6\xb7\xe8\ +\x9b\x15\xce\x77\x55\x92\x85\xf6\x2b\xbe\x6b\x3e\xde\x4c\x00\x43\ +\xe9\xfe\xc5\x17\xa8\x40\x70\x9e\xc0\x79\xc0\xe1\xde\x7f\x66\x8c\ +\xc3\xbe\x1d\x87\x01\x7d\x1a\xf9\x3b\x33\xc1\x66\xc1\x66\xe3\x08\ +\x14\x41\x4a\x12\x7d\x15\x04\x41\x90\xa2\xfd\x5e\x10\xcc\x1b\x42\ +\x30\xdd\x10\x5c\x2c\x11\xf9\x24\x43\xfe\x95\xff\x71\x59\xe2\xe4\ +\xd7\xe2\xf8\xf4\x91\xc0\x69\x69\xe3\xba\xf2\x0d\x41\x0e\x0a\xf2\ +\x06\x70\x1c\x78\x9f\xc8\xb0\xda\xfe\x7e\x54\x90\x0a\x60\x40\x9d\ +\x0b\xea\xc3\x20\x21\xc8\xd6\xfe\xb5\xf9\xa3\xff\x36\x9b\xdd\x57\ +\xfe\x8c\x42\xb5\x2f\x87\xb4\x4d\xab\x19\x02\xec\x09\x9c\x27\x06\ +\xd2\x3d\xff\x42\xa8\x3e\x09\xf2\x7f\x82\xfc\x14\xcc\x7f\x01\x3f\ +\x4f\xa7\x73\xf2\x44\x23\xa1\xa0\xa4\xaf\x23\xec\x23\xa3\x27\x9a\ +\x8e\xf7\x00\x37\x0e\x92\xa1\xcc\x5e\x41\x5e\x85\xf0\xcb\x02\x07\ +\xd2\x3d\x7e\x80\x80\xbe\x51\xe1\x6e\x56\x48\x39\x5a\xed\xd3\x67\ +\xdc\x08\x3c\x7b\xba\x07\xe8\x7b\xf2\x27\x65\xc1\x6c\x82\xca\xd7\ +\x04\xd9\x93\x81\xb1\xa3\xa9\x20\xc7\x61\xe4\x84\x46\x02\x06\x6a\ +\x5a\x6d\x34\x19\x2c\x5a\xf2\xfb\x7e\xae\x6d\xf5\x49\x21\xbc\x4b\ +\x4e\x6e\x84\x48\x35\xf1\xe7\x81\xfb\xb6\x8e\xac\xab\x6c\x4e\x32\ +\x60\x73\xaa\x5e\xa0\x17\xf8\xae\xd9\x59\xac\x57\x0e\x26\xe6\xea\ +\xdf\x10\xca\x9f\x90\x44\x32\xef\x5e\xc2\xf9\x91\xa6\x70\x1d\xd1\ +\x80\x8e\x02\xbb\xb0\x77\xd0\x83\xd3\xc9\x4d\x05\x5b\x18\x3b\x6f\ +\x3f\x31\x84\x5f\x32\x54\xff\x7e\xf0\xc9\x2d\x3d\xa5\xa2\x8a\xa2\ +\x51\x37\xf1\x41\x3e\x80\xe2\xef\xab\x9e\x0d\xe5\xc6\x8c\xad\xbe\ +\x6b\x3e\xd9\xd5\xae\x92\xce\x02\x3d\x48\x41\x08\x7f\x53\x30\xcf\ +\xa4\xa7\x87\xbb\x3b\x14\xea\x8a\x6c\xad\x8d\xf1\x5d\xa3\x92\x17\ +\x00\x10\xcc\x31\xc8\x5e\x12\x1b\x71\x8b\xcd\xcd\xef\x51\xe8\xd9\ +\x2a\x53\x02\xd0\xf6\x8e\x9d\xc4\x04\x50\x7d\x5e\x22\xf2\x21\x75\ +\x71\xbf\x3c\x57\x90\x03\x99\x19\x29\x17\x2f\xd0\x77\x6a\xa2\x39\ +\xa8\xc4\x64\x1d\xde\x92\x6e\x03\x06\xb3\x05\xa9\x64\x42\x04\x0a\ +\x48\x76\x2c\x32\xfc\x03\x93\x89\x32\x6f\x74\xa1\x66\x26\x54\xe0\ +\x05\x7a\x13\xdd\x5f\xad\xd6\x5a\xcc\x39\xd3\xa4\xa1\x3c\x6a\x2d\ +\x29\x7c\x43\xa1\x2e\x4d\x7d\x3e\xb0\x59\x27\x45\x7e\xf5\xdb\x92\ +\x19\xf2\x01\xc2\x2f\x66\xc2\x0b\x2c\x4b\x2c\x04\x54\xbf\x15\x83\ +\xc1\x14\xe8\xab\xc1\xf9\xb1\xc2\x13\x85\x7b\x50\x51\xf8\x0a\xe0\ +\x26\x6f\x39\xb3\x39\x3b\x21\x20\x11\x29\xfb\x17\xd8\x0d\x90\x1f\ +\x74\x51\x86\xbd\xa4\xd0\x8b\x6a\xb8\x5d\x47\x08\x66\x09\xf2\x56\ +\xb2\xc6\x2b\x3e\xa4\x28\xfe\x5e\xba\xc3\x40\x72\x49\xe0\xb1\xee\ +\xc8\x2f\x3e\xac\xd0\x1f\xaf\x63\xec\xb2\xc2\xf9\x61\xf2\x44\x54\ +\xff\x21\xfd\x61\x20\x11\x01\x54\x1e\xea\xd2\x50\x05\x28\xde\xa1\ +\x1a\x2e\x9a\x54\x97\x2a\x0a\xb7\x25\x5c\x48\x1f\x22\x17\x40\x4b\ +\x3d\xe5\xbb\xdd\x0b\x00\xaf\x59\x56\x06\xfa\xd6\x84\xbd\xc0\xfb\ +\xb9\x00\x9a\xf7\x12\x13\xd3\xdc\x7e\x2b\xdc\x26\x9d\x0c\x06\xb9\ +\x00\x5a\xc8\xfe\xe8\xbe\xfc\x33\x34\x5f\xac\x56\x04\xf9\x3e\x39\ +\x06\x4e\x00\x95\x18\x04\x50\x81\xea\x16\x69\xd8\x5a\x39\x0a\x95\ +\xbf\xc9\x37\x34\x0d\x5e\x08\x88\xe9\x5e\xcc\x70\xb5\x60\xfe\xb7\ +\x8e\x08\x1c\x08\x57\x99\x2c\x76\x9f\x0c\x3c\xc2\xd1\xb8\x94\x04\ +\xe5\xd9\x42\xf8\x55\x41\x0e\x44\xa4\x4b\x08\xd5\x67\x85\x60\x96\ +\xc1\xfc\xa8\x0f\xd6\x3b\x33\xfd\x02\xe8\xed\x40\x90\x8a\x2e\x3c\ +\x08\x66\x98\x01\x5d\x70\xde\x25\x2e\x06\xef\x7f\x74\xee\x01\xea\ +\xbd\xb3\xbc\x05\xc1\xc7\x32\x4a\x3e\x44\x1b\x45\xf3\x10\x50\x27\ +\x26\x7f\x25\xda\x2b\xcf\xfe\xec\x26\x50\xc5\xfb\xd3\xbf\x3a\xa8\ +\x18\xf7\x1b\x9a\xff\x16\xc2\xdf\x10\xe4\xed\x8c\x67\xcf\xd7\x83\ +\xfe\x90\xca\x3d\xc0\xf8\x24\x2d\xbc\x5f\x28\x2f\xc9\x3e\xf9\xea\ +\x72\x28\xfd\x4b\x36\xd6\x06\x6a\xa0\xbb\x89\x4d\x6b\x87\xf2\xa7\ +\x0d\xd5\xbf\xb4\xfb\xe9\x33\x0e\xe7\x25\x85\xd2\x99\x10\xc0\x66\ +\x4d\x37\x17\x3e\x15\xc1\xbc\x2a\xf8\x67\x1a\xcc\xf7\x18\x0a\x94\ +\x9e\x52\xa8\x73\x33\xb3\x32\x78\xbd\xee\xa6\xe7\x57\x37\x08\xe5\ +\xeb\xb3\xb5\xd2\xa7\x19\x0a\x2b\xb3\xb5\x37\x40\x13\xcd\xb5\xb5\ +\x35\x16\x20\x5a\xa8\xfc\x9d\x21\xfc\x2d\x19\xaa\xa3\x24\x9d\x17\ +\x33\x45\xbe\x00\x85\xf6\x36\x86\x08\x50\x01\xb5\xb4\xc8\x89\x7f\ +\x2f\x33\x54\x18\x01\xf7\xb0\x42\x15\xb2\xb5\x31\xa4\xf5\x32\xb0\ +\x08\xc5\x9d\x45\x8e\x5f\x5b\x86\xe3\x43\x46\x3e\xa0\x3e\x44\xa6\ +\xc8\x3f\xbd\x0c\xdc\xda\x8c\xfc\xea\x06\xe1\xf8\xc2\x32\xa3\xe7\ +\x1c\xb7\x6d\xc0\xf3\x41\x5d\x00\x6a\x9a\x0d\x3a\x69\x8b\xfd\xb7\ +\x67\x8e\xfc\xad\xe3\x05\x70\x4f\xfd\x27\x87\xea\x26\x89\xe2\x7d\ +\xab\xe7\xd8\x95\x40\x2f\x83\xe2\xb7\xe0\x8c\x03\x45\xdc\x0f\x14\ +\xee\x7e\x8d\xbb\x4f\xe3\xfc\x4c\x51\xfc\x3a\x70\x61\xca\x7a\xca\ +\x0d\x99\xeb\xfc\xf7\x8c\x17\x80\xd4\xcb\xf4\xc3\xaf\x1a\xc2\x9b\ +\x5a\xa8\xef\x15\xa8\xab\xc1\xd9\xa2\xf0\x7c\x8d\xf3\xac\xa6\xf8\ +\x69\x8d\x99\x6a\x4e\x71\x9d\xca\x53\x14\xef\xd4\x78\x7b\x35\xce\ +\x0f\x15\x8c\xa4\x44\x00\x1f\xc9\x9c\x07\x10\x4b\x5b\x84\x09\x89\ +\xa0\x02\xd9\x27\x04\x1f\x6d\x72\x6a\xc7\x08\x94\x9e\x50\x14\x3e\ +\xa9\x60\x12\xcd\xee\xba\xad\x89\xe0\x2a\x83\xfc\x64\xb0\xad\x15\ +\xf7\xe1\xcd\x83\x90\x00\x8e\xf7\x00\x00\x2b\x4f\x7d\x05\x94\x6f\ +\xab\x4f\x7e\xe1\x2e\x45\x69\xa3\xc2\x7b\x57\x47\xb5\xf1\x59\x9d\ +\x91\x0f\xe0\x6c\x57\xa8\x4b\x07\xbc\xbb\x1c\xcf\xd4\x6a\xa3\x95\ +\xe3\xfa\xf9\x49\x85\x8f\x1d\x13\x57\x80\xea\x3f\x4a\x74\x7b\xf5\ +\x28\xa6\x42\xe1\x53\xa0\x7e\x45\x51\xb8\x55\xa1\xa6\x47\x25\x21\ +\x31\x2d\xc4\x91\xfd\x42\x70\xd9\xe0\x1a\xd9\x79\x5e\xa1\xaf\xcb\ +\x4c\x18\x98\x78\x4c\x9c\xef\x1a\xdf\x0b\xf4\x3b\xc0\x74\x54\xb4\ +\x8f\x5f\x5d\x08\x9c\x0f\xa5\x6f\x28\xf4\x7c\xe0\x2c\x35\x96\x0b\ +\xc4\x5c\x09\xaa\x4b\x14\xfa\x16\xc1\xac\x1b\x4c\x8b\x55\x9f\x91\ +\xac\x08\xe0\x9d\x51\xf2\x4f\xf1\x00\xd6\x0b\xec\x04\xae\x90\xc3\ +\x40\x20\xa8\x99\x76\x33\x46\x35\x99\x96\xc9\x7b\x42\x30\x6d\x40\ +\xbd\xc0\xd9\xe0\x1e\x52\x28\x95\x7a\x11\xbc\xe6\xbb\x66\x41\x4d\ +\x01\xd4\x4c\x06\x93\x8c\xb3\x81\x10\x4c\x19\xd0\xb9\x85\x22\xb8\ +\x47\x15\xca\x49\xb7\x00\x1a\x1e\x16\x6d\xf1\x4a\xbf\x1a\xa7\x5c\ +\x35\xb8\x83\x44\x15\xa8\xfc\x45\xea\x13\xc1\x57\x6a\x54\xef\x13\ +\x3c\x40\x5f\x2f\x8c\xf0\xcf\x19\xec\x53\x44\xdc\xc3\x0a\x75\x56\ +\x6a\xbd\x40\xf3\x0b\x23\xfa\x1a\x06\xc4\x0a\x60\x80\xb7\x5c\xe9\ +\x5b\xc1\x79\x22\x9d\x63\x02\xb5\xae\x8c\xa9\x79\x69\x14\x70\x7f\ +\x5f\xf8\x17\x49\x2c\xe1\xec\x14\xe6\x29\xa8\xae\x4f\x65\x28\xb8\ +\xbf\xe5\x4b\xa3\xfa\xe5\x05\xc4\x17\x82\x73\xd2\x61\x5c\xe7\x45\ +\x85\x5e\xac\x52\xdd\xfb\xeb\x25\x81\xa3\xf8\x5c\xe2\xb5\xf6\x93\ +\xe9\xe9\x59\xe5\xeb\x84\xea\x0f\x52\xd3\xde\xba\x5c\x36\x12\xc0\ +\xc6\xc4\xdd\xeb\xbf\xa6\xcb\xa7\x86\xbf\x2e\x84\x77\x9b\x34\x34\ +\x75\x63\xdb\x02\xb0\x77\xcd\x3e\x9c\x68\x08\x48\xe1\x1d\x01\xd5\ +\xc7\xc0\xbf\xcc\x50\xdd\x30\xb0\xde\xe0\xe1\x7a\xf7\x06\x37\xcc\ +\x01\x6c\x1e\x30\x05\xf8\x25\x09\x9d\x24\x3a\xe8\x25\x60\x53\x4c\ +\x86\xd2\x3f\x2b\x0a\x9f\x50\x09\x1e\xbe\xdb\xac\xae\x62\xaa\xef\ +\x9a\x23\x1d\x09\xc0\x8a\xe0\x4d\x60\x56\x42\x89\x0a\x99\x80\x02\ +\xe7\x3f\x15\x6a\x0e\xfd\xde\x3f\xb0\xd7\x77\xcd\xec\x86\x65\x6d\ +\x0b\xa4\xcc\x06\x5e\xef\xb9\x54\x2b\x19\x9a\x6e\x15\x28\x7f\x4c\ +\x28\xff\xaa\xf4\x73\x1a\xf9\xf5\x66\xe4\xb7\xe4\x01\xac\x17\x98\ +\x0c\x1c\xe9\xa9\xcd\x02\x21\x98\x94\xc1\x13\x3e\x34\xa8\x39\xe0\ +\xbc\xa0\x50\xe7\x25\xea\x0d\xa6\xf8\xae\x39\xda\x42\xf3\x5a\xc2\ +\x31\xa2\x1d\x44\xbd\x63\xe8\x38\xd9\x84\x80\xec\x86\xf2\xb5\x42\ +\x78\x9b\x49\xc2\xd3\x89\xe5\xea\x58\x8b\xd1\xaa\x75\x78\x81\xde\ +\x0e\x2c\xec\x49\x09\xf8\xa6\x50\x9e\x3b\x04\x67\xfc\x5c\x04\xc5\ +\x35\x8a\xc2\x1d\xa0\x26\xf5\xc4\x23\xec\xf0\x5d\xb3\xa8\x0d\x07\ +\xd5\x16\x1e\xec\x99\x61\x86\x65\x87\xd1\xcf\xa1\xf2\x87\x12\x0d\ +\x24\x3d\x27\x48\x18\xbb\xe8\xdb\xe2\xa8\x6d\x09\x7a\x81\x9e\x07\ +\xec\x8a\xbd\x9e\x7e\x41\x08\x3f\x35\x44\xa7\x7c\x29\x50\xf3\x80\ +\x4a\xb4\xd5\x5c\xc7\x73\xf4\xfc\x7c\xdf\x35\xbb\xdb\x4c\x51\xda\ +\x2e\xd5\x76\xf7\xc2\x1e\xe6\xfb\x43\x76\xc4\x9b\x80\xec\x02\xf9\ +\x69\x74\x15\x4d\xf8\x40\xf7\x25\x70\x27\xdc\xe8\x0e\x3f\x48\x8d\ +\x4b\x38\xe2\xb1\xc7\x41\x86\x17\x55\xa8\xfe\x39\xf8\x33\x0c\xd5\ +\xa7\xa5\x03\x29\xd5\x9f\xec\xe9\x89\x00\xc6\x7d\x60\x6c\x27\x00\ +\xc9\x3b\xe4\xf8\x05\x84\x6b\x24\xda\x27\xf1\x5e\xcb\x42\xd8\xdf\ +\x29\xf9\x5d\x09\xc0\xe2\x9b\xb1\x3d\xfc\xc1\x9c\x7f\x00\x8e\x80\ +\xfc\x04\xca\x0b\x85\xf0\x5e\x83\xfc\x52\x7a\xca\x41\x57\x99\x87\ +\x5d\x60\xf0\x05\xe0\x91\xae\xe3\xd7\x39\xd9\xb8\x50\x2a\x76\x5c\ +\x0c\xa5\xbf\x56\xe8\x9b\x40\x95\x26\xd0\xb5\x06\x78\xd4\x77\x8d\ +\xf4\x45\x00\xe3\x84\xb0\x8a\x6e\x8e\x9a\x71\xc0\x57\x26\x27\xbb\ +\x11\x51\x73\xa0\xf4\x1d\x85\x9e\x77\x92\xb2\xd5\xbe\x6b\x36\xc4\ +\x50\x8c\xc4\x03\x2f\xd0\x4b\x81\x2d\x1d\xc5\xff\x77\x85\xe0\xfc\ +\xfc\xa0\xe7\xa6\x98\x02\x6a\x16\x38\x4f\xaa\xe5\xc1\x47\x24\x96\ +\x5b\x8b\x62\x1d\x8a\xea\xd4\x13\x98\x57\x85\xf2\xe2\x5c\x00\x2d\ +\xe2\x33\xc0\x53\x71\xbd\x59\xac\xcb\x5b\xad\x4b\x5a\xd3\xb6\x07\ +\xd8\x9b\xb3\xda\x22\xd6\xc4\x49\x3e\xf4\xe0\xa4\x50\xe0\x51\xe0\ +\x6c\xe0\x77\x80\x4b\x5a\xf1\x32\xb9\x00\x9a\xd6\xf9\xfb\x6d\xb6\ +\xff\x68\xec\xb9\x45\x2f\x5b\xde\xea\xca\xe2\xf0\x77\x0d\xd5\xc7\ +\x73\xa6\xfb\xc1\x53\x4f\x77\x38\xb4\x3a\x40\x51\x7d\x3e\x67\xb8\ +\x5f\x9d\xb4\xe7\x5b\x5c\xac\x08\xe6\x37\x7c\xd1\xbe\x9c\xe5\x1a\ +\x98\x4f\x02\x6b\x31\x13\xd9\xe3\x64\x27\x29\x56\x02\x3b\x38\x6d\ +\xfe\xa0\xf2\x44\x9e\xfd\x9f\x16\xef\x77\x58\x5b\xed\xce\xe4\x13\ +\x7a\x81\x5e\xe7\x05\x5a\x46\xbf\xd4\xb5\x08\x2e\x62\x1f\x7e\xd8\ +\xbf\xd6\x65\x5e\xe2\x5e\xa0\x95\x17\xe8\xc9\x5e\xa0\xf7\x78\x81\ +\x16\xce\x42\xd4\xe5\x43\x4f\xfc\x1e\x60\x32\x09\x2d\xbf\x1f\x18\ +\x38\xaf\xa9\x7d\x80\xe8\xeb\x87\x96\x78\x03\xbc\x39\xd4\x41\xcf\ +\x79\x51\x5d\xc0\x05\xfc\xed\x10\x92\xff\x10\x30\x25\x4f\x7b\xc6\ +\x70\x36\xf0\xd9\x21\x20\xfe\xb3\xf6\x59\x73\x34\xc0\xda\x0c\x12\ +\xbf\x36\xa7\xb5\xfd\xc1\x8f\x25\xc0\xb6\x14\x93\xbe\xcd\x3e\x43\ +\xcf\x07\x74\x86\x01\x3b\x89\xd6\x0d\x0d\x3a\xe9\x07\x6d\x5b\x73\ +\xf4\xaa\x92\x04\x56\x0c\x20\xf1\x2b\x6c\xdb\x72\x24\x88\x05\xc0\ +\x95\x44\x0b\x51\xc6\x97\x56\xbd\x2c\xdb\x46\x7f\xde\x62\x3f\x7b\ +\x41\x16\x62\x6d\x96\x70\x27\x63\x47\x4d\xad\x06\x96\x75\xf9\x7e\ +\x9b\x19\x5b\xe4\x52\x00\x1e\xcb\x92\xb1\xfe\x1f\xe2\x36\x43\x36\ +\x33\xba\x3e\xa2\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x09\x75\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x0a\x98\x49\x44\x41\x54\x78\x9c\xed\ -\xdd\x5d\x8c\x5c\x65\x1d\x80\xf1\x67\x97\x7e\x6c\x6b\xd1\x44\xaa\ -\xad\x14\x8c\x02\x11\x41\x82\x24\x0a\x25\x28\x76\x45\x41\x11\x15\ -\x02\xeb\x47\x52\x14\x2e\x50\x41\x8c\x44\xd1\x70\xc1\x85\x1a\x83\ -\x62\xaa\x89\x26\x4a\x44\x0d\x10\x44\x89\x16\x0d\x31\x36\x22\x1f\ -\x42\x14\x4b\x48\x4c\xf0\x93\x8f\x54\x6c\x20\xa5\x69\xa1\x85\x2d\ -\x74\xa1\xa5\x85\xf5\xe2\xdd\xa5\x74\xd9\x9d\x79\x67\xe6\xcc\xbc\ -\x73\xe6\xff\xfc\x92\x73\xd1\x76\xf6\xcc\x7f\xd3\x3d\xcf\xce\x99\ -\x79\xe7\xcc\x10\xf5\xb5\x0d\x38\xa8\xf4\x10\x12\xb0\x15\x58\x5e\ -\x7a\x88\x76\x0c\x97\x1e\x40\x52\x39\x06\x40\x0a\xcc\x00\x48\x81\ -\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\ -\x90\x02\x33\x00\x52\x60\xf3\x4a\x0f\xd0\x03\xdf\x03\x6e\x2e\x3d\ -\x84\x6a\x69\x0c\xb8\xa4\xf4\x10\x9a\xdd\x36\x60\x32\x63\x3b\xab\ -\xd4\x80\xaa\xbd\x31\xf2\x7e\xc6\xb6\x94\x1a\xb0\x53\x9e\x02\x48\ -\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\ -\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\ -\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\ -\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\ -\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\ -\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\ -\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\ -\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\ -\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\ -\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\ -\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\ -\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\ -\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\ -\x03\x20\x05\x36\xaf\x8d\xaf\x59\x00\x1c\x09\xac\x00\x96\x54\x3b\ -\x4e\xcb\x73\xe4\x38\x89\xf6\xbe\x4f\xe9\xc4\xcc\xdb\x8d\x00\x63\ -\xdd\x1c\xa4\x89\x9d\xc0\x26\xe0\x21\x60\x4f\x2b\x5f\x38\x94\x79\ -\xbb\xe9\x6f\x70\x35\xf0\x5e\x60\x61\x2b\x77\x22\xa9\x27\x76\x01\ -\x7f\x02\x7e\x01\xfc\x06\xd8\xdd\xe9\x0e\x0f\x00\x2e\x02\x36\x03\ -\x93\x6e\x6e\x6e\xb5\xd9\x36\x01\x9f\xa5\xc9\x69\x7e\xa3\x47\x00\ -\x47\x00\x37\x00\x2b\x1b\xed\x40\x52\x5f\x5b\x0f\x9c\x0b\x6c\x9c\ -\xed\x1f\xe7\x0a\xc0\xa9\xc0\x4d\xc0\xab\xbb\x34\x94\xa4\xde\x19\ -\x07\xce\x21\x9d\x1e\xec\x67\xb6\x00\x9c\x09\xac\x05\xe6\x77\x79\ -\x28\x49\xbd\xf3\x3c\x70\x36\xb0\xee\xe5\x7f\x39\x33\x00\x27\x03\ -\xb7\xe1\x93\x7c\xd2\x20\xda\x05\x9c\x02\xdc\x33\xfd\x17\x2f\x0f\ -\xc0\x72\xe0\xef\xc0\xb2\x1e\x0f\x25\xa9\x77\x36\x03\xc7\x01\x4f\ -\xc0\xfe\xcf\x10\x5e\x85\x07\xbf\x34\xe8\x0e\x06\x7e\x30\xfd\x87\ -\xe9\x47\x00\xa7\x00\x77\x14\x19\x47\x52\x09\x27\x03\x77\x4f\x07\ -\xe0\x2e\x60\x55\x8b\x3b\x78\x06\x78\x8e\xf4\x9a\x63\x49\xf3\x80\ -\xc5\xec\x5b\x19\xf8\x02\x69\xae\x5d\xc5\x26\xd2\x20\x1a\x01\x16\ -\x91\xd6\xc6\x4c\x92\x56\xdc\x4d\x90\x7e\xde\x4a\x1a\x22\xfd\xfc\ -\xb7\xba\x2a\xf7\x76\xd2\xab\x7d\x1c\x4d\xfe\xe2\x82\xa7\x81\x2f\ -\x93\x1e\x46\x48\xea\x1f\x2b\x80\xaf\x92\x96\x05\xe7\x1e\xcf\x87\ -\x03\x5c\x9e\x79\xe3\x3d\xc0\x09\xbd\xfa\x6e\x24\xb5\xe5\x24\xd2\ -\xa3\x92\x9c\x63\xfa\x2b\x90\x5e\xf6\xcb\xb9\xf1\xf5\x3d\xfc\x26\ -\x24\xb5\xef\x57\xe4\x1d\xd3\xeb\x86\x49\xa7\x00\x39\x6e\xad\x7e\ -\x4e\x49\x5d\x90\x7b\xac\x1e\x3d\x0c\x2c\xcd\xbc\xf1\x63\x6d\x0e\ -\x23\xa9\xb7\x36\x65\xde\x6e\xe9\x30\xf9\xef\xab\x6f\xe9\x7d\xc6\ -\x92\x8a\x79\x3e\xf3\x76\x8b\xbc\x22\x90\x34\x78\xb2\x5f\x9a\x37\ -\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\ -\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\xf3\x13\x73\xa4\ -\xee\x7a\x3d\xf0\x51\xd2\x3b\x69\x0f\x21\x1d\x73\x4f\x00\xff\x24\ -\x5d\xa0\xf3\xdf\xe5\x46\x4b\x72\xdf\x3b\xfc\xee\x52\x03\x4a\x35\ -\xb4\x02\xb8\x96\xb4\x2c\xb7\xd1\x71\x75\x37\xf0\xae\x8a\xef\x7b\ -\xb4\xc9\x7d\x4e\x6f\x7b\xc9\xbc\xa1\x01\x90\xf2\x9d\x01\x3c\x45\ -\x6b\x9f\xe4\x73\x05\xd5\x9d\x92\x8f\x66\xde\xa7\x01\x90\x2a\x76\ -\x0e\xe9\xc0\x6a\xe5\xe0\x9f\xde\x7e\x4a\xfe\xe7\x75\x36\x32\x9a\ -\x79\x7f\x06\x40\xaa\xd0\xb1\xa4\x6b\x51\xb6\x73\xf0\x4f\x6f\x97\ -\x54\x30\xc7\x68\xe6\x7d\x19\x00\xa9\x22\x43\xc0\xbd\x74\x76\xf0\ -\x4f\x02\xcf\x02\x87\x76\x38\xcb\x68\xe6\x7d\xed\xf5\x65\x40\xa9\ -\x1a\xa7\x51\xcd\x35\x33\x17\x01\x97\x56\xb0\x9f\x2c\x06\x40\xaa\ -\xc6\x79\x15\xee\x6b\x35\xe9\xf2\xe3\x5d\x67\x00\xa4\x6a\x8c\x56\ -\xb8\xaf\xa5\xc0\x31\x15\xee\x6f\x4e\x06\x40\xea\xdc\xab\x80\x37\ -\x54\xbc\xcf\xb7\x54\xbc\xbf\x59\x19\x00\xa9\x73\xad\x7e\x2a\x4f\ -\x8e\x03\xbb\xb0\xcf\x57\x30\x00\x52\xe7\x26\xba\xb0\xcf\x67\xba\ -\xb0\xcf\x57\x30\x00\x52\xe7\x76\x02\x5b\x2a\xde\xe7\x86\x8a\xf7\ -\x37\x2b\x03\x20\x55\xe3\xae\x0a\xf7\xb5\x1d\xf8\x57\x85\xfb\x9b\ -\x93\x01\x90\xaa\x51\xe5\x47\xe7\xdd\x48\x8f\x3e\x75\xd8\x00\x48\ -\xd5\xb8\x05\xf8\x5b\x05\xfb\xd9\x05\xac\xa9\x60\x3f\x59\x0c\x80\ -\x54\x8d\x49\xe0\x02\x60\x77\x87\xfb\xb9\x1c\x78\xb4\xf3\x71\xf2\ -\xf9\x5e\x00\xa9\x3a\x9f\x20\xff\xe3\xb9\x67\x6e\xd7\xe2\xbb\x01\ -\xa5\xda\xfb\x08\x30\x4e\x6b\x07\xff\x95\x54\xb7\xfc\x77\x34\xf3\ -\x3e\x0d\x80\xd4\x25\x2b\x80\xeb\x48\x1f\xaa\xdb\xe8\xb8\xfa\x2b\ -\xd5\x1f\x5b\xa3\x4d\xee\xf3\xa5\x00\x78\x4d\x40\xa9\x3b\x1e\x03\ -\xce\x07\x2e\x23\x3d\x22\x58\x09\xbc\x91\x74\x4d\xc0\xc7\x81\x7f\ -\x90\xae\x09\xd8\x93\x97\xfb\x1a\xf1\x11\x80\x34\x58\x46\xf1\x7a\ -\x00\x92\x9a\x31\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\ -\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\ -\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\ -\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\ -\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\ -\x00\xa4\xc0\x0c\x80\x14\x58\x9d\x3f\x19\xe8\xc7\xc0\x92\xd2\x43\ -\x48\xc0\x0e\xe0\xe2\xd2\x43\xb4\xa3\xce\x01\x18\x03\x0e\x2a\x3d\ -\x84\x04\x6c\xa5\xa6\x01\xf0\x14\x40\x0a\xcc\x00\x48\x81\x19\x00\ -\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\ -\x33\x00\x52\x60\x75\x5e\x08\x94\x6b\x2b\x70\x73\xe9\x21\x54\x4b\ -\x03\xbf\xd8\x2c\x42\x00\x2e\xc4\x00\xa8\x3d\xb7\x03\x6b\x4b\x0f\ -\xd1\x4d\x9e\x02\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\ -\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\ -\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\ -\x14\x98\x01\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\ -\x19\x00\x29\x30\x03\x20\x05\x16\xe1\x9a\x80\x55\x38\x00\xf8\x34\ -\x70\x3e\xf0\xd6\xa9\x3f\xab\xff\xec\x05\x1e\x04\xae\x01\x6e\x00\ -\x5e\x2c\x3b\x4e\xff\x33\x00\xcd\x8d\x00\xbf\x05\x4e\x2f\x3d\x88\ -\xb2\x2c\x03\x56\x01\x67\x03\x1f\x07\x9e\x2f\x3b\x4e\x7f\xf3\x14\ -\xa0\xb9\x2b\xf1\xe0\xaf\xa3\x33\x81\x6f\x96\x1e\xa2\xdf\x19\x80\ -\xc6\x5e\x0b\x7c\xbe\xf4\x10\x6a\xdb\x17\x81\x03\x4b\x0f\xd1\xcf\ -\x0c\x40\x63\x27\x00\xf3\x4b\x0f\xa1\xb6\x8d\x00\xef\x2c\x3d\x44\ -\x3f\x33\x00\x8d\x8d\x94\x1e\x40\x1d\x5b\x5c\x7a\x80\x7e\x66\x00\ -\x1a\x7b\xb0\xf4\x00\xea\xd8\xfd\xa5\x07\xe8\x67\x06\xa0\xb1\x87\ -\x80\x7b\x4a\x0f\xa1\xb6\xdd\x09\x6c\x2c\x3d\x44\x3f\x33\x00\x8d\ -\x4d\x02\x17\x00\xe3\xa5\x07\x51\xcb\x9e\x04\x3e\x57\x7a\x88\x7e\ -\x67\x00\x9a\xbb\x1f\x38\x09\xf8\x4b\xe9\x41\x94\xed\x4e\xe0\x44\ -\x60\x43\xe9\x41\xfa\x9d\x0b\x81\xf2\x3c\x00\xbc\x07\x38\x0c\x38\ -\x0a\x5f\x19\xe8\x57\x7b\x48\xc1\xf6\x61\x7f\x26\x03\xd0\x9a\xff\ -\x4d\x6d\xd2\x40\xf0\x14\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\ -\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\x00\ -\x52\x60\xad\x2c\x04\x1a\xea\xda\x14\xf5\xb0\x00\x78\x1f\x5e\x13\ -\xb0\x4a\xe3\xa4\x65\xbb\x0f\x97\x1e\x64\xc0\xe4\xfe\x62\x9f\x9c\ -\x07\x3c\x43\xde\x55\x53\x96\xb4\x3f\x4f\xed\x9d\x4a\xba\xd0\xe4\ -\x21\xa5\x07\x19\x50\xd7\x01\x17\x03\xcf\x16\x9e\x63\x50\xe4\x5e\ -\x05\xe9\xe9\x61\xe0\xd1\xcc\x1b\xbf\xad\xcd\x61\xea\x6e\x15\xb0\ -\x0e\x0f\xfe\x6e\x3a\x1f\xb8\x09\x4f\x49\xab\x72\x4c\xe6\xed\x1e\ -\x19\x06\xee\xcb\xbc\xf1\xa7\x88\xf7\xd0\x77\x18\xb8\x1a\xdf\xfc\ -\xd3\x0b\xa7\x03\x63\xa5\x87\x18\x00\xf3\x80\x73\x33\x6f\x7b\xdf\ -\x30\x70\x4b\xe6\x8d\x8f\x05\xbe\x4f\xac\x83\xe1\xed\xc0\x91\xa5\ -\x87\x08\xe4\x93\xa5\x07\xa8\xb9\x05\xc0\x0f\x49\xcf\x53\xe5\xf8\ -\xc3\x3c\xe0\x77\xe4\x3f\x0f\xf0\x05\xe0\x43\xc0\x5a\xd2\xe5\xb2\ -\x26\x48\x17\xcd\x28\x61\x41\x0f\xee\xe3\xcd\x3d\xb8\x0f\xed\x73\ -\x78\xe9\x01\xda\x34\x42\xb9\x47\x2f\x43\xa4\xe7\xe7\x8e\x02\x3e\ -\x06\xbc\x29\xf3\xeb\xc6\x81\x75\xd3\x4f\x02\xfe\x0c\xf8\x52\xe6\ -\x17\x1e\x06\x5c\xd6\xda\x8c\xb5\xe5\x95\x80\x7a\xeb\xc9\xd2\x03\ -\xb4\xe9\x35\xa4\x5f\x8a\x75\x72\x35\xf0\xdc\xf4\x93\x2e\xdf\x01\ -\x9e\x2e\x38\x4c\xbf\xba\x97\x14\x48\xf5\xc6\x6d\xa5\x07\x08\xe2\ -\x29\x60\x0d\xec\x7b\xd6\x75\x2b\x71\x7e\xab\xb7\x62\x02\xb8\xa2\ -\xf4\x10\x41\x6c\x06\xae\x2a\x3d\xc4\x0c\x83\xba\xf6\xe5\x52\x60\ -\x3b\xec\xff\xb2\xcb\xd5\xa4\xcf\xc0\x1b\x34\xcb\x3a\xfc\xfa\x35\ -\xc0\x8f\xaa\x18\x44\x73\xda\x0c\x9c\x41\xff\x9d\x72\x1d\x5c\x7a\ -\x80\x2e\xb8\x91\xb4\xee\x02\xd8\x7f\x25\xe0\x24\x70\x1e\x70\x28\ -\x70\x7c\x6f\x67\xea\xaa\x4e\x5f\xbf\x7f\x91\xf4\xe4\xe7\xaf\x49\ -\xaf\x57\x7b\x4d\xc0\xea\x6c\x07\xee\x20\xfd\xf2\xd9\x51\x78\x96\ -\xd9\xac\x28\x3d\x40\xc5\xd6\x93\xae\x72\xfd\xd2\x13\xf7\x33\x97\ -\x02\xef\x04\x3e\x48\x5a\xf8\x72\x62\xef\xe6\xea\xaa\x5d\x15\xed\ -\xe7\xcf\x53\x9b\xe2\xd8\x5d\x7a\x80\x0a\xad\x07\x3e\xcc\x8c\xd5\ -\x96\xb3\xad\xbc\x7a\x12\x78\x3f\xe9\xa1\xc2\x20\x70\x9d\xb9\xda\ -\xf5\xdf\xd2\x03\x54\xe4\xe7\xa4\xe5\xec\x4f\xcd\xfc\x87\xb9\x96\ -\x5e\x4e\x00\xab\x49\xa7\x04\xdb\xbb\x37\x57\x4f\x54\xf5\x08\x40\ -\xf1\x4c\x94\x1e\xa0\x43\x4f\xb0\xef\x38\x9e\xf5\x7d\x16\x8d\xd6\ -\x5e\x4f\x02\xd7\x93\x16\x67\x7c\x03\x78\xbc\xea\xe9\x24\x75\xc5\ -\x16\xe0\x6b\xc0\x11\xc0\x2f\x69\xb0\x58\x2f\xe7\xed\xc0\x3b\x80\ -\xaf\x03\xdf\x02\x4e\x01\x3e\x00\x1c\x47\x7a\x82\xe4\x40\xca\xbd\ -\x54\xf2\x3a\x7c\xf3\x88\xfa\xc3\x8b\xa4\xdf\xb6\x25\x4c\x92\xd6\ -\xaa\x6c\x22\xbd\xaf\xe7\x8f\xa4\xb7\x58\xef\x29\x34\x4f\xcf\x6c\ -\x23\x7d\xf3\xcd\xb6\xb3\x4a\x0d\xa8\xda\x1b\x23\xef\x67\x6c\x4b\ -\xa9\x01\x3b\xe5\x6f\x50\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\ -\x80\x14\x98\x9f\x0e\x9c\x67\x3e\x70\x21\x69\x29\xb0\x17\x05\xed\ -\x5f\x7b\x49\xd7\xa9\xb8\x06\xf8\xc9\xd4\x9f\xd5\x80\x01\x68\x6e\ -\x31\x69\x69\xf4\x68\xe1\x39\xd4\xdc\x42\xe0\x1d\x53\xdb\x99\x53\ -\x9b\x0b\xc1\x1a\xf0\x14\xa0\xb9\xef\xe2\xc1\x5f\x47\xa7\x01\xdf\ -\x2e\x3d\x44\xbf\x33\x00\x8d\x2d\x05\x3e\x53\x7a\x08\xb5\xed\x22\ -\xd2\xd5\x7a\x34\x07\x03\xd0\xd8\xf1\x78\x9a\x54\x67\xd3\xa7\x04\ -\x9a\x83\x01\x68\x6c\x61\xe9\x01\xd4\xb1\x91\xd2\x03\xf4\x33\x03\ -\xd0\xd8\x7f\x4a\x0f\xa0\x8e\xf9\x7f\xd8\x80\x01\x68\x6c\x03\x5e\ -\x04\xa4\xce\x6e\x05\x1e\x29\x3d\x44\x3f\x33\x00\xcd\x5d\x40\x7a\ -\xe3\x91\xea\x65\x2b\x69\xed\x86\x1a\x30\x00\xcd\x6d\x20\x5d\x1e\ -\x2d\xf7\x13\x94\x54\xde\xef\x81\x95\xc0\xc6\xd2\x83\xf4\x3b\x9f\ -\xe1\xce\xf3\x30\xe9\xb3\xeb\x96\x93\x3e\x2a\xcc\x8b\x82\xf6\xa7\ -\x3d\xc0\x03\x78\xf1\x9a\x6c\x06\xa0\x35\x5b\xa8\xf1\x7b\xbf\xa5\ -\x99\x3c\x05\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\ -\x19\x00\x29\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\ -\x90\x02\x33\x00\x52\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\ -\x30\x03\x20\x05\x66\x00\xa4\xc0\x0c\x80\x14\x98\x01\x90\x02\x33\ -\x00\x52\x60\x11\x2e\x09\x36\x0a\x8c\x97\x1e\x42\xb5\x34\x5a\x7a\ -\x80\x6e\x1b\x2a\x3d\x40\x07\xb6\x01\x07\x95\x1e\x42\x22\x5d\x82\ -\x7c\x79\xe9\x21\xda\xe1\x29\x80\x14\x98\x01\x90\x02\x33\x00\x52\ -\x60\x06\x40\x0a\xcc\x00\x48\x81\x19\x00\x29\x30\x03\x20\x05\x66\ -\x00\xa4\xc0\xea\xbc\x12\xf0\x85\xa9\x4d\x2a\xad\xb6\x3f\x87\xff\ -\x07\x0b\x8c\x7a\x26\x4f\x47\x61\x78\x00\x00\x00\x00\x49\x45\x4e\ +\x01\x00\x9a\x9c\x18\x00\x00\x09\x17\x49\x44\x41\x54\x78\x9c\xed\ +\x9d\x5b\x6c\x1c\x57\x19\xc7\xff\xdf\x99\xb5\xdd\x90\x6c\xba\xe7\ +\x9c\x89\x22\x1e\x2a\xd1\x07\xe0\xa9\x8a\x0a\xa5\x0a\x42\xe0\x8d\ +\x9d\x04\x37\x6a\x22\x5a\x41\x85\x2a\x54\x89\x6b\x24\x54\x89\x54\ +\x15\x55\x44\x54\x2e\x55\x10\x14\xa1\x52\x29\x0a\x94\x02\x2a\x77\ +\x41\x45\x45\x2b\xe8\x05\x92\xb4\x6a\xd5\x2a\x69\x41\x84\xa6\xa4\ +\xf4\x92\xa6\x31\x4d\x9a\x38\x9e\x9d\x8b\x9d\x9b\x83\xe7\x3b\x3c\ +\xc4\x15\x96\xdb\x78\x8f\xed\xdd\x99\x5d\x9f\xf3\x7b\xb2\x3d\x9f\ +\xe7\xfc\xb5\xdf\x4f\xb3\x67\xce\xec\xce\x10\x66\x50\xab\xd5\xae\ +\xa0\x20\xf8\x82\x01\xd6\x81\xf9\x32\x21\xc4\xb2\x99\x35\x9e\xae\ +\xe2\x3c\x33\x1f\x11\x44\x8f\x73\x10\xdc\x93\x8e\x8e\x3e\x3f\x7d\ +\x23\x4d\xfb\xb9\x57\x29\x75\x37\x88\x36\x03\x10\xc5\x66\xf4\x14\ +\x84\x81\x31\xf7\x56\xab\xd5\x2d\xc3\xc3\xc3\xe7\x80\xff\x0b\xd0\ +\x2b\xa5\x7c\x8c\x84\x58\x53\x62\x38\x4f\x51\x18\xf3\x64\xb5\x5a\ +\x1d\x1a\x1e\x1e\x3e\x17\x00\x80\x52\x6a\x07\x09\xf1\xa9\xb2\x73\ +\x79\x0a\x82\xe8\x3d\xe7\x27\x26\xc2\xb3\x67\xcf\x3e\x4c\xb5\x5a\ +\xed\x0a\x11\x04\xff\x84\x3f\xec\xbb\x86\x61\x21\xae\x0c\x96\x2c\ +\x5d\xba\x8d\x80\xd5\x65\xa7\xf1\x14\x0e\x11\x33\x0b\x03\xac\x2b\ +\x3b\x89\xa7\x1c\xd8\x98\x01\x01\xe6\xcb\xca\x0e\xe2\x29\x07\x41\ +\x74\x79\xa5\xd9\x79\x7e\xdc\x68\xd0\x6c\xdb\x3d\x9d\x8d\xd2\xda\ +\x5c\x74\x23\x51\x9f\x9f\xf8\x39\x8e\x17\xc0\x71\xbc\x00\x8e\xe3\ +\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\xc7\ +\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\ +\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\ +\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\ +\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\ +\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x80\ +\x12\x08\xc3\xf0\xbd\x52\xeb\x07\x6a\x52\x8e\xd7\xa4\x3c\xa3\xb4\ +\x7e\xf4\xd2\x30\xbc\xb2\x8c\x2c\x5e\x80\x82\x09\xc3\xf0\x83\x6c\ +\xcc\x3e\x02\xae\x17\x42\x2c\x13\x42\x2c\x01\x30\x44\x79\xfe\x8c\ +\x52\xea\xea\xa2\xf3\x78\x01\x0a\x44\x6b\x7d\x15\x1b\xb3\x1b\x80\ +\x9a\xb9\x4d\x08\xb1\x04\x44\x77\x17\x9d\xc9\x0b\x50\x10\x4a\xa9\ +\xab\x0d\xb0\x1b\x40\x6d\x96\xb2\xd5\x2b\x57\xae\x5c\x5a\x54\x26\ +\xc0\x0b\x50\x08\x4a\xa9\xd5\x4c\xb4\x0b\xc0\xa5\x65\x67\x99\x89\ +\x17\xa0\xcd\x48\x29\x3f\xcc\x44\x7f\x11\xc0\x72\x8b\xf2\xbd\x23\ +\x23\x23\xa7\xdb\x1e\x6a\x1a\x5e\x80\x36\x22\xa5\xfc\x88\x01\xac\ +\x9a\xcf\xcc\x67\x09\xd8\x52\x44\xae\xe9\x78\x01\xda\x44\x2d\x0c\ +\x3f\x6a\x80\xc7\x84\x10\xd5\x66\xb5\xcc\x7c\x36\x10\x62\x63\xa3\ +\xd1\xf8\x5b\x11\xd9\xa6\x53\x29\x7a\x40\x17\xa8\x85\xe1\xc7\x90\ +\xe7\x8f\x08\x21\x9a\x4e\xe8\x98\xf9\x4c\x20\xc4\xb5\x8d\x46\xe3\ +\x89\x22\xb2\xcd\xc4\x1f\x01\x5a\x8c\xd6\xba\x3e\x87\xe6\x9f\x46\ +\x10\x6c\x28\xab\xf9\x80\x17\xa0\xa5\x68\xad\x07\x72\xe6\x87\xe7\ +\xd2\xfc\x34\x8a\x9e\x2c\x22\xdb\xc5\xf0\x02\xb4\x08\xa5\xd4\xda\ +\x9c\xf9\xcf\x42\x88\x77\x35\xab\x65\xe6\x53\x04\x0c\xa5\x51\xf4\ +\x54\x11\xd9\x66\xc3\x0b\xd0\x02\x94\x52\xeb\xd9\x98\x3f\x4d\x2d\ +\xeb\xce\x0a\x33\x8f\x13\x30\x94\x24\xc9\xd3\x45\x64\x6b\x86\x17\ +\x60\x81\x48\x29\x87\xd8\x98\x87\x84\x10\x97\x34\xab\x65\x60\x8c\ +\x80\x8f\x27\x49\xf2\x4c\x11\xd9\x6c\xf0\x02\x2c\x00\x19\x86\x1b\ +\x88\xe8\x41\x9b\xe6\x03\xc8\x84\x31\xeb\x93\x24\xd9\xdb\xf6\x60\ +\x73\xc0\x0b\x30\x4f\x6a\x61\x78\x2d\x19\xf3\x47\x10\xf5\x59\x94\ +\x67\x30\x66\x7d\x1c\xc7\xcf\xb6\x3d\xd8\x1c\xf1\x02\xcc\x03\xad\ +\xf5\x26\x61\xcc\x03\x00\x7a\x2d\xca\x53\x02\xd6\xc5\x71\xfc\x5c\ +\xbb\x73\xcd\x07\x2f\xc0\x1c\xd1\x5a\x7f\xc2\x00\x7f\x80\x5d\xf3\ +\x13\x41\xb4\xb6\x8c\x15\x3e\x5b\xfc\x4a\xe0\x1c\x50\x4a\x5d\x6f\ +\x80\xdf\x01\xe8\xb1\x28\x8f\x73\xa2\xb5\x71\x14\xed\x6f\x77\xae\ +\x85\xe0\x8f\x00\x96\x28\xa5\x3e\x09\xa2\xdf\xc3\xae\xf9\x8d\x5c\ +\x88\xc1\xac\xc3\x9b\x0f\xf8\x23\x80\x15\x52\xca\x1b\x40\xf4\x1b\ +\xd8\xbd\x5e\x11\xe7\xf9\x60\xd6\x68\x1c\x68\x77\xae\x56\xe0\x05\ +\x68\x82\x0c\xc3\x4f\x93\x31\xbf\x06\x10\x34\x2d\x36\x66\x94\x99\ +\x07\xd3\x34\x7d\xa1\xfd\xc9\x5a\x83\x17\x60\x16\x6a\x5a\xdf\x48\ +\xc6\xfc\x12\x16\xcd\x37\xcc\x27\x01\x0c\xa4\x69\x7a\xb0\xfd\xc9\ +\x5a\x47\x27\xcc\x01\x3a\xf2\xb1\x74\x35\xad\x3f\x23\x00\xab\xe6\ +\x33\xf3\x08\x11\xad\x49\x92\xa4\xab\x9a\x0f\x94\x24\x80\xd6\xfa\ +\xfd\x52\xca\x87\xa6\x3e\x13\x7f\x4e\x4a\xb9\x5b\x6b\xfd\xa1\x32\ +\xb2\xbc\x13\x4a\xa9\x9b\x04\xf0\x0b\xd8\x35\xff\x84\x20\x5a\x13\ +\xc7\xf1\x8b\x05\x44\x6b\x39\x85\x0b\x10\x86\xe1\xfb\x0c\xb0\x97\ +\x84\xd8\x34\x75\xf1\xa4\x97\x84\x18\xcc\x99\x9f\x92\x52\x5e\x53\ +\x74\x9e\x99\x28\xa5\x3e\x0b\xa2\xfb\x60\xf1\xda\x30\xf3\xf1\x40\ +\x88\x7a\x1c\xc7\xff\x2e\x20\x5a\x5b\x28\x5c\x80\xdc\x98\xef\x02\ +\x90\x6f\x0b\x22\xc4\x25\x24\xc4\x83\x35\xad\x37\x16\x9d\xe9\x2d\ +\x94\x52\x9f\x07\xd1\xcf\x60\xd7\xfc\x37\x2b\x41\x50\x6f\x34\x1a\ +\x2f\x17\x10\xad\x6d\x14\x2e\x00\x01\x03\xb3\x6c\xee\x15\xc0\x03\ +\x4a\xa9\xeb\x0a\x0b\x34\x85\x0c\xc3\x2f\x82\xe8\x27\xb0\x98\x93\ +\x30\x70\xac\x12\x04\xf5\x28\x8a\x5e\x29\x20\x5a\x5b\x29\x63\x0e\ +\x70\xf1\x67\xd9\x5e\xa0\x07\x44\xf7\x4b\x29\x6f\x28\x24\x0d\x00\ +\xa9\xf5\x66\x32\xe6\xc7\xb0\x6b\xfe\xd1\x1e\x21\xea\x51\x14\xbd\ +\x5a\x40\xb4\xb6\x53\x86\x00\xbb\x2c\x6a\x2a\x24\xc4\x6f\x6b\x5a\ +\xdf\xd8\xee\x30\x35\xad\xbf\x4c\xc0\x8f\x60\x77\x36\xf2\x06\x0b\ +\x51\x1f\x1d\x1d\x3d\xd4\xee\x5c\x45\x51\xfc\x1c\x20\x08\xb6\x02\ +\x88\x2c\x4a\x03\x01\xfc\x4a\x29\x75\x53\xbb\xb2\x28\xa5\x6e\x16\ +\xc0\x4e\xd8\x35\x7f\x38\x9f\x9c\xec\x1f\x1b\x1d\x7d\xad\x5d\x79\ +\xca\xa0\x70\x01\xb2\x93\x27\x0f\x73\x9e\x0f\xc2\x98\x51\x8b\x72\ +\x01\xa2\xfb\x94\x52\x9f\x6b\x75\x0e\xa5\xd4\x57\x40\xb4\xc3\xb2\ +\xfc\x48\x3e\x39\x59\xcf\xb2\xec\xf5\x56\xe7\x28\x9b\x52\xd6\x01\ +\xd2\x34\x3d\x60\x8c\x59\xc3\xcc\x23\x16\xe5\x02\x44\x3f\x95\x5a\ +\x6f\x6e\xd5\xf8\x4a\xa9\x5b\xe6\xf0\x4d\xdc\xd7\x39\xcf\xeb\x59\ +\x96\x1d\x69\xd5\xf8\x9d\x44\x69\x2b\x81\x49\x92\x1c\x0c\x84\xa8\ +\x33\xf3\x71\x8b\x72\x22\xe0\x1e\xa5\xd4\xcd\x0b\x1d\x57\x6a\x7d\ +\x2b\x88\xee\xb2\x2a\x36\xe6\xb0\x61\xae\xa7\x69\x3a\xbc\xd0\x71\ +\x3b\x95\x52\x97\x82\x1b\x8d\xc6\x4b\x95\x20\xe8\x67\xe0\xa8\xd5\ +\x3f\x10\xed\x50\x4a\xdd\x32\xdf\xf1\xa4\xd6\xb7\x11\xf0\x7d\xab\ +\x62\x63\x5e\x33\xc6\xd4\x93\x24\xf9\xcf\x7c\xc7\xeb\x06\x4a\xbf\ +\x16\x10\x45\xd1\xab\x26\x08\xfa\x01\xd8\xbd\xd0\x44\x77\x49\xad\ +\x6f\x9b\xeb\x38\x52\xeb\xad\x04\xdc\x69\x53\x6b\x98\x0f\x01\xe8\ +\x4f\x92\xe4\x8d\xb9\x8e\xd3\x6d\x94\x2e\x00\x70\x61\x62\x98\x4f\ +\x4e\xf6\x03\xb0\x9a\x64\x11\x70\xa7\x52\x6a\x9b\xed\xfe\x95\x52\ +\xdb\x08\xf8\x8e\x4d\x2d\x33\xbf\x22\x84\xe8\x8f\xe3\xf8\x98\xed\ +\xfe\xbb\x99\x8e\x10\x00\x00\xb2\x2c\x3b\x62\x98\xfb\x61\x8c\xdd\ +\x69\x16\xd1\x76\xa9\xf5\xb7\x9a\x95\x29\xa5\x6e\x07\xd1\x76\x9b\ +\x5d\x32\xf3\xcb\x53\xcb\xbb\x6f\x5a\x65\x58\x04\x74\x8c\x00\x00\ +\x30\x75\xc8\xed\x67\x66\xab\x25\x56\x02\xbe\x2e\xb5\xfe\xf6\xc5\ +\xb6\x4b\xad\xbf\x09\xa2\x3b\x6c\xf6\xc5\xcc\x2f\xf5\x54\x2a\xf5\ +\x28\x8a\x6c\x26\xa5\x8b\x86\x8e\x12\x00\x00\xe2\x38\x3e\x56\x09\ +\x82\x3a\x03\x56\x57\xd8\x08\xf8\x9a\x52\xea\x7b\x33\xff\x2e\xb5\ +\xbe\x83\x80\x6f\xd8\xec\x83\x81\x17\x7b\x7b\x7a\xea\xa3\xa3\xa3\ +\x27\xe6\x9a\xb7\xdb\xe9\x38\x01\x00\x20\x8a\xa2\xe3\x7d\x95\x4a\ +\x1d\x80\xdd\x07\x2c\x88\xbe\x2a\xb5\xfe\xc1\x5b\xbf\x4a\xad\xb7\ +\x13\x70\xbb\xe5\x70\x07\xfb\x2a\x95\x35\x27\x4f\x9e\xb4\x59\x93\ +\x58\x74\x90\xd2\x7a\xd6\x8b\x33\x71\xa3\x51\xda\x27\x76\x96\x2d\ +\x5b\x16\xf6\xf6\xf6\xee\x06\xd1\x2a\x9b\x7a\xc3\xbc\x93\x88\xc6\ +\x41\xb4\xd5\x72\x88\x7f\x9d\xef\xe9\x19\x38\x75\xe2\x84\xcd\xaa\ +\x64\x57\xd2\xac\xbf\x1d\x2d\x00\x00\x2c\x5f\xbe\x5c\x05\x41\xb0\ +\x8b\x84\xf8\x40\x8b\x77\x7d\xe0\xfc\xc4\xc4\xe0\xa9\x53\xa7\x6c\ +\xae\x4b\x74\x2d\xcd\xfa\xdb\x91\x6f\x01\xd3\x19\x1b\x1b\x8b\x99\ +\x79\x90\x99\x5b\xf7\xed\x1a\x63\x9e\xff\xef\xf9\xf3\x03\x8b\xbd\ +\xf9\x36\x74\xbc\x00\x00\x90\x65\x59\x4a\xc0\x3a\x06\xf6\x2d\x78\ +\x67\xc6\xec\x9f\x9c\x9c\x1c\x18\x1f\x1f\x6f\xb4\x20\x5a\xd7\xd3\ +\x15\x02\x00\x40\x92\x24\x59\x00\xac\x07\x30\xef\x1b\x2b\x18\xe6\ +\x7f\xe4\x79\x3e\x38\x36\x36\x16\xb7\x30\x5a\x57\xd3\x35\x02\x00\ +\x40\xa3\xd1\x18\xef\xa9\x54\x86\x60\xcc\x9c\xef\xab\x63\x98\xff\ +\xce\xcc\x6b\xb3\x2c\x4b\xda\x91\xad\x5b\xe9\x2a\x01\x00\x60\x64\ +\x64\xe4\x74\x5f\x5f\xdf\x06\xc3\xbc\xc7\xf6\x7f\x18\x78\x8e\x99\ +\xd7\xf9\xe6\xbf\x9d\xae\x13\x00\x00\x8e\x1f\x3f\x7e\x66\xe9\xd2\ +\xa5\x1b\x19\xf8\x6b\xb3\x5a\x06\x9e\x25\xe6\xf5\x59\x96\xa5\x45\ +\x64\xeb\x36\xba\x52\x00\x00\x38\x7a\xf4\xe8\xd9\x54\xca\x4d\x30\ +\xe6\x91\x8b\xd5\x30\xb0\x6f\xea\xb6\x2c\x59\x91\xd9\xba\x89\xae\ +\x15\x00\x00\x70\xe8\xd0\x44\x1c\xc7\xd7\x01\xb8\x7f\xe6\x26\xc3\ +\xbc\x27\x00\xd6\xc7\x71\x3c\x56\x42\xb2\xae\xa1\xe3\x17\x82\x6c\ +\xa9\x85\x61\x3f\x19\x33\x08\xa0\x02\xa2\xa7\x93\x28\x7a\x14\xcd\ +\x3f\x82\xbe\xe8\xe9\xfa\x95\x40\xcf\xc2\xe8\xfa\x95\x40\x4f\x7b\ +\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\ +\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\ +\xc0\x71\xbc\x00\x8e\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\ +\x0b\xe0\x38\x5e\x00\xc7\xf1\x02\x38\x8e\x17\xc0\x71\xbc\x00\x8e\ +\xe3\x05\x70\x1c\x2f\x80\xe3\x78\x01\x1c\xc7\x0b\xe0\x38\x5e\x00\ +\xc7\xf1\x02\x38\x8e\x17\xc0\x71\x48\x69\x3d\x01\xbb\x47\xa1\x7b\ +\x16\x1b\xc6\x4c\x08\x66\x3e\x52\x76\x0e\x4f\x39\x30\xd1\x61\x21\ +\x88\x1e\x2f\x3b\x88\xa7\x1c\x08\xd8\x43\xb5\x15\x2b\x56\x09\xe6\ +\xfd\xe8\xd0\x67\xf8\x7a\xda\x86\xe1\x3c\x5f\x15\x9c\x3b\x73\x66\ +\x64\xc9\x92\x25\xef\x06\xd1\x55\x65\x27\xf2\x14\x87\x61\xfe\x61\ +\x9a\xa6\x3f\x17\x00\x50\xad\x56\xb7\xcc\xe7\xd6\x6b\x9e\xee\xc4\ +\x30\x3f\x91\x68\x7d\x2b\x30\x75\x1a\x38\x3c\x3c\x7c\xae\x5a\xad\ +\x0e\xe1\xc2\xd3\x33\x9d\xbf\xad\xca\x22\xc6\x18\xe6\x9d\x89\xd6\ +\xd7\xe0\xd0\xa1\x09\xe0\x1d\xde\xf7\x6b\x2b\x56\xac\x12\x79\xfe\ +\x25\x36\x66\x40\x10\x5d\x0e\xa2\xbe\xe2\x73\x7a\x5a\x86\x31\x13\ +\x4c\x74\x98\x80\x3d\x26\xcf\xef\x4d\xd3\xf4\x85\xe9\x9b\xff\x07\ +\x24\x5f\x0a\xa3\xc9\xca\xf5\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x0a\xbb\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x0a\x5d\x49\x44\x41\x54\x78\x9c\xed\ +\x9d\x7b\x8c\x15\x57\x19\xc0\x7f\x7b\x97\xb6\x58\x16\x76\x29\x0a\ +\x25\x85\x72\xb5\x55\x04\xc1\x1a\x4a\x6b\x1f\x68\x1f\xf6\xb9\x12\ +\xa2\xa5\xbe\x6a\x1a\x7c\xd4\xa8\x89\xc6\x46\x4d\xd4\xaa\xcd\xc6\ +\x28\x29\x68\x1f\xd4\xf8\x22\x22\x35\xad\xf5\xd5\xa2\xb5\xfe\x51\ +\x5b\xc5\x29\x7d\x98\x6e\x5f\x1b\x91\x96\x5a\x41\x40\x4b\x2d\x22\ +\x2c\xdd\x2d\x65\x61\x97\xf5\x8f\x6f\x6e\xe6\xcc\xdc\xb9\x77\xe6\ +\xee\xde\xb9\x67\x1e\xdf\x2f\x99\xdc\x33\x33\x67\xe6\x7c\x77\xe6\ +\x9b\xf3\xfc\xce\x77\x40\x51\x14\x45\x51\x14\x45\x51\x14\x45\x29\ +\x10\x6d\xb6\x05\xa8\xc3\x34\x60\x1e\x30\xc1\xb6\x20\x19\xe2\x08\ +\xf0\x0c\xb0\xdf\xb6\x20\xe3\xe1\x04\xe0\x76\x60\x18\x18\xd5\xad\ +\xe1\xed\x08\xb0\x1e\xe8\x6a\xf4\xc1\xa7\x81\x49\xc0\x66\xec\x3f\ +\xc4\x3c\x6c\x4f\x03\xc7\x47\x3d\xf0\xf6\xa8\x08\x2d\xa6\x07\x58\ +\x6e\x5b\x88\x9c\x70\x22\x92\x1b\x3c\x58\x2f\x52\xda\xea\x00\x3b\ +\x80\x39\x6e\x78\x14\xf8\x11\xf0\x82\x35\x69\xb2\xc7\xc9\xc0\x27\ +\x8c\xfd\xe7\x81\x37\x59\x92\xa5\x61\x4a\xf8\xb3\xb0\x47\xec\x8a\ +\x93\x59\x1e\xc7\x7b\x86\x87\xa3\x22\x97\x12\x17\x27\x3e\x41\x59\ +\x5e\xb5\x22\x45\xf6\x79\xc5\x08\x47\xbe\xdf\x34\x29\x80\x62\x01\ +\x55\x80\x82\xa3\x0a\x50\x70\xd2\xdc\xcb\xd6\x05\x7c\xc4\x52\xda\ +\x83\xc0\x5d\x96\xd2\x2e\x2c\x13\xf0\xb7\x02\x76\x93\x6c\x47\x49\ +\xbd\x6d\x47\xb2\x7f\x35\x51\x1c\xbc\xff\x31\x1c\x15\x59\x8b\x80\ +\x82\x33\x96\x22\xe0\x4a\xe0\x1a\xa4\x83\x61\x3c\x0a\xb4\x04\xf8\ +\x77\x8c\x78\x1f\x07\x36\x1a\xfb\x25\xa0\x13\xb8\x0c\xe9\x39\x3c\ +\x16\xd8\x04\xac\x08\x5c\x37\x09\x58\x04\x7c\x0d\xaf\x33\x64\x00\ +\x78\x6b\x8d\x74\x66\x01\x0f\xc5\x90\x27\x57\x34\xa2\x00\x25\xe0\ +\x36\xe0\xea\x16\xa7\xbd\x07\xc9\x92\x67\x21\xf5\x82\x57\x81\x3e\ +\xa4\xaf\xbb\x1f\xf8\xbe\x7b\x6c\x07\xf2\xd2\x5f\x8f\x64\x7d\x3b\ +\x81\x2d\xc0\xef\x80\xc7\x80\xb9\xc0\x51\xbc\xec\x7d\x41\x20\x9d\ +\xc8\x7e\xf3\xa2\x73\x2d\xcd\x2d\x67\xcb\x81\xfb\xd7\xaa\x03\x2c\ +\x75\xcf\xff\xc2\x38\x57\xa9\xa0\x1d\x0f\x8c\x00\xf7\xb9\xfb\xe7\ +\x1b\x71\x0e\x01\x57\xb9\xc7\x97\xba\xc7\xfa\x6b\xa4\x55\xd8\x3a\ +\x40\x23\x39\xc0\x17\x03\xfb\x7b\xf1\xf7\x3a\x35\x4a\xa4\x70\x75\ +\x38\xc3\xfd\x3d\x88\x0c\x78\x84\x71\x1c\xb0\x1a\xb8\x13\xf8\x03\ +\xa2\x10\x4a\x80\xb8\x0a\x30\x13\x38\xc9\xd8\x7f\x14\x78\x27\xf2\ +\xf5\xb5\x8a\xa7\x90\x2c\xbe\x1f\x58\xe7\x1e\x3b\x0d\x79\xd1\xb5\ +\x38\x09\xe8\x40\x9a\x75\xbb\x80\x19\xee\xf1\x61\xe0\xec\x40\xdc\ +\xf5\xc0\x9b\x9b\x25\x6c\x56\x88\xab\x00\xc1\x87\xfc\x3c\xad\x7d\ +\xf9\x20\x5f\xf3\x6a\x63\x7f\x1a\x32\x5a\x18\x45\xe5\x3f\x0e\x05\ +\x8e\x6f\x0d\xec\x17\x32\x87\x48\x73\x47\x50\x90\x8f\x02\xa7\x23\ +\xb5\xfe\x13\x81\xf3\x80\x29\x11\xd7\x1c\x02\x5e\x76\xc3\xd3\x8d\ +\xe3\x13\xc8\xb8\xd9\x54\xb3\xc8\x92\x02\x5c\x0a\x7c\xa0\xc1\x6b\ +\xee\x45\x6a\xfe\xf3\x91\xec\xff\x40\xb3\x85\xca\x3a\x59\x52\x80\ +\x38\xec\x02\x56\x21\xc5\xd3\x2e\xe0\x0e\xf7\xf8\xf5\xd6\x24\x4a\ +\x39\x79\x53\x80\xed\xc0\x97\x8d\xfd\xa9\x88\x42\x34\x9a\x73\x14\ +\x86\x2c\x28\xc0\x2a\xe4\xa5\xce\xad\x13\xe7\xed\xc0\xc3\x81\x63\ +\x9d\xee\x35\xc7\x18\xc7\x3a\x42\xe2\x15\x9a\x2c\x28\xc0\xfc\x18\ +\x71\xba\x80\x73\x63\xc4\x6b\x8f\x19\xaf\x30\xa4\x59\x01\xfa\x81\ +\xfb\x2d\xa5\xbd\xd7\x52\xba\x2d\x27\xcd\x0a\xb0\x1b\x7b\xf6\x00\ +\x85\x41\x87\x83\x0b\x4e\x9a\x73\x00\xdb\x4c\x46\xc6\x3f\x2e\x46\ +\x46\x1f\xe7\x00\x7f\x06\x6e\x44\x06\x5a\x72\x81\x2a\x40\x38\x25\ +\xe0\x4f\xc8\xa0\xd3\x10\xd0\x0d\xcc\x06\x7a\x91\x96\x44\x8f\x35\ +\xc9\x9a\x8c\x16\x01\xe1\x9c\x89\x37\xe2\xf8\x2c\x52\x21\xdd\x0c\ +\xdc\x80\x34\x49\x67\xd4\xb8\x2e\x73\xa8\x02\x84\xb3\xd8\x08\x6f\ +\x33\xc2\x37\x21\xc6\x27\xdd\xad\x15\x27\x39\x54\x01\xc2\x29\x1b\ +\xe1\x97\x8c\xf0\x00\x62\x98\xa2\x39\x40\xce\x99\x6a\x84\x5f\x0e\ +\x9c\x7b\x10\xcf\xb2\x28\xf3\x68\x25\x30\x1c\x73\xda\x7c\xd0\xee\ +\xe1\x9f\x48\x0b\x21\x17\xa8\x02\x84\x63\x1a\x8f\x1c\x1b\x38\x37\ +\x00\xfc\xa3\x85\xb2\x24\x8a\x2a\x40\x38\xa6\xdd\x40\xd0\xe8\x64\ +\x3b\x39\xb2\x1e\xd2\x3a\x40\x38\x66\xc5\x6f\x7a\xe0\xdc\x6b\x5b\ +\x29\x48\xd2\xa8\x02\x84\xf3\x2f\x23\x3c\x3b\x70\x6e\x31\x39\x42\ +\x15\x20\x1c\xb3\x8c\x3f\x25\x70\xee\x6d\xad\x14\x24\x69\x54\x01\ +\xc2\xf9\x3b\x5e\x7f\xff\x54\xbc\x62\xa0\x93\x6a\x85\xc8\x34\xaa\ +\x00\xe1\x0c\xe2\x9f\x1d\x54\x99\x4f\x78\x1e\xd5\xfd\x02\x99\x46\ +\x15\xa0\x36\x7d\x46\xb8\x52\xee\x5f\x00\xfc\xcf\x82\x2c\x89\xa1\ +\x0a\x50\x9b\x27\x8c\x70\x65\x16\xd1\x85\xc0\x7f\x2d\xc8\x92\x18\ +\xaa\x00\xb5\xe9\x35\xc2\x4b\x90\xc9\x28\x0b\xf1\x37\x11\x33\x8f\ +\x2a\x40\x6d\x1e\x43\x26\x95\x80\xf8\x2f\xfe\x2a\xe2\x58\xf3\x45\ +\x6b\x12\x25\x80\x2a\x40\x6d\x06\x10\x1b\x80\x0a\x9f\x76\x7f\x77\ +\x5a\x90\x25\x31\x54\x01\xea\x63\x7a\x0c\x69\x47\x6c\x01\xe2\x78\ +\x35\xc9\x0c\xaa\x00\xf5\x09\x3a\x5a\x7e\x1c\xaf\x58\xc8\x05\xaa\ +\x00\xf5\x71\xf0\x1b\x80\x3e\x69\x49\x8e\xc4\x50\x05\xa8\xcf\x5e\ +\xe0\xaf\xc6\xfe\x45\xb6\x04\x49\x0a\x55\x80\x68\x76\x19\xe1\x85\ +\xc0\x59\xb6\x04\x49\x02\x55\x80\xfa\x4c\x47\xdc\xd1\x99\x7c\xce\ +\x86\x20\x49\xa1\x0a\x50\x9f\x6b\xf0\xcf\x2e\x06\x78\x1f\xf0\x06\ +\x0b\xb2\x24\x82\x2a\x40\x6d\x26\xe0\xb5\xfd\x0f\xe0\x55\x06\xdb\ +\x91\x4e\xa1\x5c\xa0\x0a\x50\x9b\x2b\x11\xe7\x94\x00\x6b\x81\x0d\ +\xc6\xb9\x15\xc4\x9b\xb6\x9e\x7a\x54\x01\x6a\xf3\x05\x23\xbc\x0e\ +\xb8\x0e\xcf\x27\x61\x3b\x70\x4b\xcb\x25\x4a\x00\x55\x80\x70\x2e\ +\xc4\x1b\x02\xde\x04\x3c\x87\x18\x89\xdc\x6a\xc4\xb9\x18\xf8\x60\ +\x8b\xe5\x6a\x3a\xaa\x00\xe1\x7c\xc5\x08\xff\xc0\x08\xf7\xe0\x6f\ +\x16\xde\x4a\xb5\xd1\x68\xa6\x50\x05\xa8\xe6\x0c\xbc\x0e\x9f\xff\ +\x00\x77\x1b\xe7\x06\x91\x96\x41\xa5\x42\xf8\x3a\xc4\xc3\x68\xda\ +\x96\xdf\x8b\x8d\x2a\x40\x35\xa6\x4b\xb9\x1f\x52\xed\x8b\xf8\x01\ +\xfc\xe5\x7f\x37\x7e\xcf\x64\xb9\xa4\x8c\xdf\x9b\xf6\x6d\x09\xa4\ +\x11\xf4\xe0\xfd\xc7\x04\xd2\x88\x62\x91\x91\xfe\x41\xe4\x0b\x0f\ +\xe3\x18\xc4\x5f\x72\x25\xee\x08\xb0\xac\x15\x02\xc6\xc0\x41\x57\ +\x0c\x19\x33\x3d\x46\x78\x3d\xb5\xcd\xbf\x8e\x00\x57\xe0\xd5\x07\ +\x4a\xc0\xcf\x81\x73\x12\x93\xcc\x32\x65\xf2\x9f\x03\x2c\x36\xd2\ +\x3e\x42\xf5\x7a\x06\x61\xbc\x05\xd8\x67\x5c\xd7\x8f\x38\x97\xb0\ +\x89\x83\xe6\x00\x63\xe2\x1b\x46\xf8\x0e\xe2\x2d\x1a\xb1\x05\xf1\ +\x61\x5c\x99\x4b\xd8\x89\x28\xee\x25\x4d\x95\x2c\x05\x94\xc9\x77\ +\x0e\x70\x16\xfe\xaf\xff\xd4\x06\xaf\x5f\x84\x2c\x6d\x63\x7e\x79\ +\xd7\x63\x67\x75\x76\x87\x06\x72\x80\xb8\x94\xc9\xb7\x02\x3c\x60\ +\xa4\xbb\x2e\x22\x6e\x2d\x4e\x41\xfc\x09\x99\xff\xa1\x97\xc6\xa6\ +\x92\x95\x90\x0a\xe6\x78\x9a\x95\x0e\x0d\x28\x80\x4e\x0f\x97\x75\ +\x86\x2a\xed\xfe\x21\xfc\x45\x41\x23\x6c\x43\x7c\x16\xaf\x47\x2a\ +\x88\x20\x7d\x0a\x4f\x20\x0b\x5b\x6c\x40\x3e\xa4\x32\x32\xc6\x30\ +\x13\xe9\x44\x9a\x86\x14\x1d\x1d\xf8\x73\x8c\x21\xa4\x4e\xb1\x1b\ +\x99\xab\xf8\x24\xb2\xf4\x8d\x39\x61\xa5\x65\x94\xc9\x6f\x0e\xf0\ +\x88\x91\xe6\x4d\xe3\xbc\xd7\x24\xc4\x17\xf1\x5f\xf0\xff\x97\x66\ +\x6e\x8f\x52\xdf\x71\xb6\x83\xe6\x00\xb1\x59\x8a\xd7\x74\x3b\x00\ +\x7c\xab\x81\x6b\xdb\x90\x11\xc1\xb3\xdd\xed\x4c\x60\x1e\xf1\xca\ +\xfd\x03\x48\x51\xb3\x13\x69\x6a\xee\x47\xe6\x1c\xbe\x82\xd4\x41\ +\xda\x90\xa2\x60\x32\x32\x21\xe5\x8d\x48\xee\x72\x91\x9b\xd6\xfd\ +\x88\x12\xb4\xcc\x51\x45\x99\xfc\xe5\x00\x25\xc4\xee\xbf\x92\xde\ +\x97\x62\x5c\xb3\x00\xb1\x08\xba\x07\x99\x23\x18\xf6\x85\xbe\x84\ +\xc8\xbe\x06\xb1\x27\xb8\x0a\xc9\xb6\x83\xf1\x5e\x40\xc6\x1c\x4e\ +\x68\x40\xe6\x0e\xe0\xb3\x88\xd2\x5c\x5e\x23\x8e\x43\x03\x39\x40\ +\x5c\xca\xe4\x4f\x01\x56\x18\x69\xed\x04\x26\x86\xc4\xe9\x40\xca\ +\xf3\x9f\x20\x2f\x2c\xec\x25\xfe\x06\x31\x10\xb9\x1c\xf9\x5a\xc3\ +\x28\x21\x8b\x56\x6c\x09\xb9\xc7\x41\xe4\x79\x2e\x69\x40\xf6\x32\ +\x32\x51\x35\x0c\x07\x55\x80\x48\x5e\x83\xf4\xe2\x55\xd2\xfa\xb0\ +\x71\xae\x13\x51\x8e\xdf\x23\x59\xac\xd9\xdd\xdb\x07\x7c\x17\x79\ +\x99\x41\xcf\x21\x71\x68\x43\xba\x8c\x37\x52\xad\x08\xa3\x48\x45\ +\x72\x25\x52\x9c\xd4\x6b\x09\x4c\x74\xff\x43\x18\x0e\xaa\x00\x91\ +\x5c\x67\xa4\xd3\x8b\x94\xb7\x4b\x91\x15\x49\xcd\x97\xbe\x19\x19\ +\xf8\x59\x86\x2c\x4a\xd1\x4c\xe6\x01\xdf\xa1\xf6\x2a\xe9\x7b\x80\ +\x5f\x23\x86\x29\x97\x20\x6b\x1a\x96\x81\x77\x20\x1d\x55\xb5\x14\ +\xc4\x41\x15\xa0\x2e\x33\x90\x0a\x57\x25\x9d\xfb\x90\xe9\x5e\xa3\ +\x48\x65\xec\x97\xc8\x3a\x05\x33\x13\x4a\x3f\x48\x09\x69\x8a\xde\ +\x82\xe7\x99\x24\x6a\xbb\xa1\xce\xfd\x1c\x1a\x50\x80\x22\xb6\x02\ +\x56\xe2\x77\xf4\x38\x17\xf9\xd2\xee\x41\xd6\x13\x6a\xda\x57\x13\ +\x93\xa3\xc8\x4b\x73\x90\xf5\x99\x67\x21\x4d\xc9\xd3\x91\x56\xc6\ +\x1c\x3c\xcf\xa5\xbb\x11\x57\xb5\x2d\x37\x47\x2b\x93\x8f\x1c\x60\ +\x11\x52\x96\x57\xd2\x58\x91\x40\x1a\xb6\x71\x68\x20\x07\x28\xca\ +\x60\xd0\x6c\xa4\xcc\xfc\x1e\xde\x7f\xde\x08\xfc\xd4\x9a\x44\x29\ +\x21\xef\x0a\x70\x2e\xb2\xc2\xc7\x20\xf0\x31\xbc\x69\x5d\xc3\xe4\ +\x6c\x86\xcf\x58\xc9\x6b\x1d\xe0\x64\xe0\x66\xa4\x49\xf7\x1e\xa4\ +\xc9\xb4\xca\x38\xbf\x06\xf8\x9b\x05\xb9\x52\x47\xde\x72\x80\x12\ +\x52\x91\x7a\x06\xf9\xea\xbb\xdd\xdf\x9b\x91\x41\x17\x90\x1a\x7f\ +\x8f\x0d\xe1\xb2\x4c\x99\xf4\x57\x02\x67\xe3\x55\x80\xcc\x11\xbd\ +\xee\xc0\x7d\xd3\x62\xbb\x97\x14\x0e\x05\xec\x07\xb8\x14\x99\xcb\ +\x3f\x8a\x7f\x46\x4f\x17\xfe\x2e\xdc\x5f\x35\x45\xd2\x74\xe3\x50\ +\x30\x05\xf8\x0c\x5e\xd3\x2e\x38\xa0\x73\xa7\x71\xbf\x3d\xd4\xb6\ +\xf2\xcd\x13\x0e\x05\x52\x80\xaf\x1b\xf1\x57\x07\xce\x5d\x1d\xb8\ +\xdf\x15\x14\x03\x87\x82\x28\xc0\xe7\x8d\xb8\x1b\xf0\xf7\x8d\xcf\ +\x47\x2a\x7f\x95\xf3\x6b\x9b\x2d\x6c\x8a\x71\x28\x80\x02\x5c\x86\ +\x97\xed\x3f\x87\xbf\x6b\xb7\x0b\xd8\x6a\xdc\xa7\x8f\xda\x23\x67\ +\x79\xc4\x21\xe7\x3d\x81\x53\x10\xbb\xbb\x12\xf2\x07\x3f\x84\x38\ +\x75\x04\x59\xdf\xe7\x2e\x3c\x93\xa9\x7d\xc0\x72\xc4\xbf\x9f\x12\ +\x42\x16\x15\xe0\x5a\x3c\xc3\x8b\x1b\x81\xa7\xdc\x70\x3b\xf0\x33\ +\xe0\x5d\xee\xfe\x61\xa4\xdc\xdf\x86\x32\x6e\xca\xa4\xa7\x08\xa8\ +\x98\x5e\xef\xc3\xcb\xfa\x27\x22\xf5\x00\x33\xeb\x5b\x9e\x80\x8c\ +\x59\xc0\x21\xe7\x45\x40\xe5\xeb\xbf\x1d\xc9\xfa\xe7\x21\x96\xbd\ +\xef\x75\x8f\x1f\x42\xdc\xbb\xdc\x5d\x7d\xa9\x12\x24\x8b\x0a\xf0\ +\x6d\x44\xb3\x27\x22\x96\xb5\x7d\xc8\x30\x2f\x88\x41\xc5\x39\xc0\ +\x6f\xed\x88\x96\x3d\xb2\xa8\x00\x2b\x91\x4a\xde\x28\xf0\x6e\xf7\ +\xd8\xd3\xc8\xe8\xde\x42\x37\xac\xc4\x24\xab\xa3\x81\xdb\x81\x4f\ +\xb9\x9b\x32\x0e\xb2\x98\x03\x28\x4d\x44\x15\x20\xdf\x8c\x46\x45\ +\x48\x93\x02\x0c\xe3\xef\xb0\x59\x80\x18\x76\x28\xf1\x29\x23\x4e\ +\x2b\x2a\x0c\x46\x5d\x90\xb6\x3a\xc0\x26\x64\x68\x17\xc4\x7c\x3b\ +\x57\xcb\xb3\x58\xe0\xa1\xa8\x08\x69\xca\x01\x00\xbe\x49\xce\x56\ +\xe4\xb0\xc8\x08\xf2\x3c\xeb\x92\x36\x05\x78\x18\xf1\xc3\x77\xd8\ +\xb6\x20\x19\x67\x08\x99\xdc\xd2\x1b\x11\x2f\x75\x45\x00\xc8\x40\ +\xcf\x26\xe0\x93\xc0\x69\xc0\x71\x76\xc5\xc9\x14\x87\x90\x8e\xb1\ +\xb5\x48\x53\xb9\x69\x94\x49\x7e\x2c\x40\xb1\x40\xda\x8a\x00\xa5\ +\xc5\xa8\x02\x14\x1c\x55\x80\x82\x93\xc6\x4a\x60\x5e\x99\x02\xbc\ +\xdf\xd8\xdf\x8a\xb4\x7a\x32\x41\x19\xad\x04\x8e\x97\x53\xf1\x3f\ +\xc3\x1f\xdb\x15\x47\xd0\x22\xa0\xe0\xc4\x55\x80\x91\xc0\xfe\xd4\ +\xd0\x58\x4a\x3d\x82\xcf\xac\xd5\x8e\x28\x42\x89\x5b\x07\x78\x11\ +\x31\xbf\xaa\xd8\xe0\x2d\x03\xee\x45\x5c\xa5\x29\xd1\xb4\x51\xed\ +\xd5\xeb\x59\x1b\x82\x8c\x87\x35\xc4\xf3\x5f\xa3\x5b\xf4\x36\x88\ +\x0c\x76\x65\x8a\xc9\x88\xb9\x95\xed\x87\x97\xf5\x6d\x04\x99\xcb\ +\x90\x49\x3a\x10\x7f\xba\xfb\xb1\xff\x20\xb3\xb6\x1d\x45\x7c\x08\ +\x9f\xdf\xe8\x43\x4f\x92\xb1\xba\x25\x2f\x21\x9e\xae\xb5\x1f\x21\ +\x1e\xa3\x88\x6b\xba\x81\xa8\x88\x8a\xa2\x28\x8a\xa2\x28\x8a\xa2\ +\x28\x8a\x92\x20\xff\x07\xdd\x01\xb7\x24\xc0\x40\xb7\x6f\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x06\xa7\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x32\x00\x00\x00\x30\x08\x06\x00\x00\x00\x53\xf7\x29\xba\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x21\xb5\x00\x00\x21\xb5\ +\x01\x69\x95\xd0\x60\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x06\x24\x49\x44\ +\x41\x54\x68\x81\xbd\x99\x5d\x6c\x1c\xd5\x15\xc7\x7f\xe7\xce\xae\ +\x1d\x7b\x76\x16\x67\xbd\x4e\x4c\x42\x91\x4a\x3f\x50\xfb\xd0\x86\ +\x96\x82\x54\x41\x5b\x15\xb5\x35\x45\x84\xc6\x54\x29\x48\x04\x85\ +\xd8\x5b\x4b\x95\xda\x0a\xa9\x52\x55\xa9\x95\xe0\xb1\x7d\xa2\x41\ +\x54\x4a\x83\x1d\x85\x0f\x09\x91\x27\xc4\x0b\x12\x2f\xb4\x4f\x45\ +\x45\x88\x17\x9e\xa2\x36\x86\x62\x27\x31\xf6\x38\xfb\x41\x1c\x67\ +\x77\xee\xe9\xc3\xec\x8e\x37\xce\xda\xde\x19\xcf\xf0\x97\x2c\xed\ +\xde\x3b\x73\xce\xf9\xef\x39\xf7\xde\xff\x3d\x86\x8c\x51\x9f\x2b\ +\x7d\xbd\x7e\x7a\xf4\x6b\x59\xfb\x31\x59\x3b\xc0\xca\x24\x30\x99\ +\xb5\x9b\xec\x89\xc0\x24\xd8\xcc\x89\x48\x96\xc6\xaf\x9c\xbe\xe5\ +\x8b\x8e\x38\xff\x05\x08\x34\xb8\x63\xa4\x52\xbd\x90\x95\xaf\x4c\ +\x33\x92\x33\xce\x91\x5e\x9f\xb3\x40\xa6\x44\x54\xf9\x79\xf4\x19\ +\x1e\xcd\xd2\x57\x66\xa5\xd5\x38\x33\x36\xae\x41\xb0\xc0\xc6\x8f\ +\x65\x8d\x98\x2f\xb8\x53\xcb\x8b\x59\xf8\xcb\x2c\x23\x1a\xb4\x26\ +\x01\x83\x89\xbc\x18\xab\xc1\xcf\xb2\xf2\x97\x5d\x69\x89\x3c\x0a\ +\xa0\x05\x45\x5d\xed\x0c\x66\xb6\x7b\x65\x52\x5a\xb5\xb3\xde\xa8\ +\x34\xf3\x97\x80\x9c\x1e\xb4\xa0\x20\x8b\x06\x20\xd0\xa0\x39\x5e\ +\x9c\xa9\x2f\xa7\xed\x33\x9b\x8c\x34\xf3\x8f\x00\x39\x04\xd4\x55\ +\xb4\xa0\x20\x0a\xe0\x60\xf2\x0f\x67\xe1\x32\x13\x22\xa6\x73\x92\ +\xbb\x4a\xb4\x46\xdc\x30\xf9\xc6\x64\x53\x5e\xa9\x13\xf9\x74\xb6\ +\xec\x29\x3c\x00\xa0\x9e\x46\xe3\xd6\xb3\x00\xa8\xf2\xa3\x95\x57\ +\x4a\xc5\xb4\xfd\xa6\x4e\x64\x48\x83\x87\x81\x3d\x48\xb8\xd0\x23\ +\x78\xda\x5e\x91\x3a\x38\xb8\xa6\x0f\xa5\xed\x37\x75\x22\xda\xde\ +\x99\x74\x58\xc1\xb9\xd1\x93\x0e\x87\xc4\x34\x83\xf2\x4a\x95\x88\ +\xbe\x7e\xdb\x90\xc0\x04\x10\x66\x60\x33\x3a\x63\xca\x4f\xf5\xd4\ +\x81\xe1\x34\x7d\xa7\x4a\xa4\x5e\x5f\x9b\x50\x70\xc3\xb2\xba\x79\ +\xbe\x6b\x6c\xb8\xee\xac\xff\x38\x4d\xdf\xe9\x96\x96\xb6\x77\xab\ +\x21\x20\xd7\x23\x23\x39\x0d\xe7\x80\xb4\xa5\xbd\x34\x5e\x1c\x3d\ +\xa6\x68\x5a\x7b\xfb\x04\xe0\xe9\x3e\x8b\x96\x7a\x10\x01\xc4\x17\ +\x64\xc9\x00\xd4\x81\xb7\xd2\x70\x2a\xc8\x9b\xa2\x8a\x7c\x36\x5b\ +\xfa\x8d\x22\x7f\x06\x1d\x4c\xc3\xb0\x7e\x29\x40\xf3\x5b\x38\x6d\ +\x82\xfc\xc7\xe9\x3d\x19\x1b\xb2\x2e\xe8\xef\xdd\x29\xff\x64\x24\ +\x51\x3e\x9b\x2b\x7f\xcb\x5a\xfb\x1a\xf0\x95\xe8\xb9\x21\xd0\x5e\ +\x25\xb2\x1d\xf2\x8a\xee\xdb\xfe\x1d\x59\x12\x68\xc6\x53\x47\xd2\ +\x12\x58\xbb\x61\xe8\xbc\x31\xe6\x31\xf7\xc4\xf2\xfb\xb0\x49\x6b\ +\x2d\xbd\x30\x56\xd8\x33\xd8\xfa\x9b\x20\xc7\x00\x70\xc0\xde\x6a\ +\xa1\x10\x93\x4c\xca\x90\xab\x82\x2c\x08\x04\x51\xb8\xe7\x9a\x81\ +\x56\x4a\x33\xab\xd5\xe8\x99\x5e\x2f\x36\x66\x47\x9f\x54\xd5\x17\ +\x80\x02\x80\x96\x2c\x3a\xa6\x19\x5f\x8c\x7b\x40\x41\x56\x04\x59\ +\x36\x9d\xef\x6b\x22\xfc\xa1\x30\xed\xff\x75\xf3\xa3\x5b\x86\x56\ +\xfb\x7b\xf9\xab\x62\xf4\x35\xd0\xbb\x00\x74\x8f\xa2\x07\x14\x06\ +\x3e\x9f\xec\x48\xb3\xad\x98\xd7\xa2\x10\x3f\xc4\xf2\x0b\xef\x97\ +\xfe\x87\x3d\x9f\xdf\xce\x98\x9e\x64\xb0\xe1\x96\xfe\x82\xf2\x6b\ +\x40\x30\xa0\xe3\x16\x2d\x66\x4b\x46\xea\x82\x5c\x34\x60\xdb\x71\ +\xa0\x2f\x7b\x45\x77\x46\x8e\x7e\xb2\xb6\xe5\x3b\xfd\x18\xae\xcd\ +\x96\x0f\x8b\xda\x39\x60\x14\x40\x8b\x16\x1d\xd7\xf4\x05\x8e\x82\ +\x7c\x2a\x88\x1f\x19\xae\x02\x15\x6f\xda\x3f\xb7\xd3\xab\x7d\x57\ +\xfd\xd5\xd3\xa5\xdb\x02\xe1\x55\xe0\x7b\x00\x0c\x28\x7a\xc0\xa2\ +\x7b\x12\x04\xdc\x0b\xd7\x05\xb3\x60\x60\x3d\x0a\xec\xdd\x96\x06\ +\x8f\xf7\xdb\x42\x8a\xb5\x7c\xf5\x75\x9c\x46\xb5\xf4\x27\x84\x3f\ +\x02\x8e\x8a\xc2\x3e\x45\xf7\xee\xae\xd4\xa4\x26\x70\xc9\x20\x6d\ +\xa5\x8f\xf0\x7c\xa1\xe5\xff\x4e\x66\x68\xf6\x6d\x23\x89\xe3\xfa\ +\xdc\xc8\xf7\x09\xcc\xab\x08\x07\x01\x28\x28\xf6\xa0\x8d\x6f\xad\ +\x7d\x05\x96\xba\x74\xbe\x2f\x80\x79\xc2\xab\x2c\xbf\x13\x37\xa6\ +\x44\x55\xee\x9d\xb8\xf2\x0f\xb5\xcd\x43\x2a\xfc\x1b\x80\x6b\x49\ +\xac\x84\x90\xf6\xae\xa4\xf0\x9e\xda\xe6\xa1\x24\x24\x60\x17\xcb\ +\xb5\x38\x53\x5f\x16\x65\x00\xda\xaa\x36\x49\x6e\x05\xb4\x7d\x73\ +\x14\x18\xd8\x4d\x53\x22\x31\x91\xea\x8b\x63\x5f\x06\xbe\x09\xf4\ +\xbe\x7b\xf4\x8b\x0d\x69\xff\x8d\xda\x6c\xf9\xce\xa4\x66\x12\x13\ +\x11\x5a\x61\x0b\xd4\xd9\xb8\xf9\x25\x81\xba\x5d\x37\xc9\x5d\x34\ +\xf0\x12\x13\x31\x48\xd8\x94\xf6\x76\x90\x2e\xda\xfe\xdb\x0e\x6d\ +\x2d\x17\xd9\x4c\x14\x4f\x02\x5c\x3d\x3b\x7a\x50\xe1\x1e\x00\xbb\ +\x8d\xa0\x94\x26\x98\x8f\x0d\xf2\x91\x81\xeb\x5b\xb3\xb5\xed\xd2\ +\x54\xb8\x67\xed\xd4\xde\xdb\x93\xc4\x94\x88\x48\xd0\x62\x92\xb6\ +\x64\xc1\xdd\xe2\x02\x55\x13\xe4\x82\x03\x6b\x82\x5c\x13\xcc\xbc\ +\x09\xcf\x8b\x5e\x70\x23\x95\x20\x2d\x63\x12\x95\x57\xb2\xd2\xd2\ +\xf0\x9a\x1a\x76\x10\x37\xcf\x81\xb9\x68\x42\xc1\x17\x6e\x48\x2b\ +\xc0\x0a\x36\x3c\x33\xcc\x45\x73\x73\xa9\xdd\xd8\x3a\x4a\x74\x05\ +\x8e\x4d\xa4\x76\xca\x2b\x83\xdc\x07\xdc\xbc\x5b\x5d\x17\xcc\xbc\ +\x03\x55\xe9\xc4\xf7\x6e\xa0\xc1\x77\x1c\xe5\x10\xf0\x4f\x00\xaa\ +\xed\xec\x6c\x3e\x7b\x3a\x44\x44\xef\x6f\x9c\x19\x1b\x8f\x1b\x57\ +\xfc\x8c\xe4\xf2\x47\xe8\xf4\x75\xbb\xd6\x87\xd4\x04\x99\x8f\xb4\ +\x92\x45\x38\xe9\x06\xfe\xfd\x23\x95\xea\x85\xe1\x8a\xff\x49\xa1\ +\xe8\xff\x10\xe5\x59\x20\x60\x5d\xe0\x23\x83\xac\x76\xa5\x73\x23\ +\xbb\xc6\xda\x20\x76\x0f\x21\x3e\x11\xed\xea\xeb\x0a\x10\xb4\x65\ +\xc6\x62\xa4\x95\x2e\x8b\xf0\xa0\x37\xe5\xff\xb6\x5b\x2b\xc9\x51\ +\x02\xaf\xe2\x3f\x83\xb1\x0f\xa0\x2c\x88\x0a\x72\xd9\x84\x42\x31\ +\x00\xed\x5e\x6f\x1a\xbf\xbc\x62\x9d\xc7\xab\x67\x46\x46\x72\x81\ +\xb9\x0c\x0c\xe8\xad\x16\x1d\x00\xb3\x68\xe8\x92\x76\x6f\x8b\xe6\ +\x8e\x15\x2a\x4b\x97\xb7\xb3\x53\x3b\xe5\x95\x8d\x33\x30\xd7\xe9\ +\xde\x68\x0e\xf4\x40\x80\xb4\x0c\xb2\x28\x00\xcd\xe0\x7a\xb0\x7f\ +\xe4\x57\xd5\xd5\x7e\x63\x8b\x95\x91\xbc\x95\x87\x20\x94\x25\xac\ +\x0b\xe6\xe3\x0e\x09\x59\x17\xe1\xe9\xc2\x94\xff\x93\x9d\x48\x40\ +\x28\x6f\xdc\xa9\x95\x47\x44\x78\x1a\x64\x5d\x5a\x60\xfe\xe7\x84\ +\x9a\x2d\xfc\x69\xf3\xb9\xbc\x89\xd5\x1f\x8e\x45\xa4\xfb\x9f\x9b\ +\xe2\x4b\xa8\x5e\x61\xde\xaa\xfe\xa0\x30\xe5\x3f\x27\xb2\xe3\xd1\ +\x17\x41\x04\x2d\x4c\xf9\xcf\x19\x23\xdf\x05\xce\xa3\x1b\x36\x61\ +\xa3\x87\xdc\x2f\xfa\x26\x12\xf6\x6a\x65\x73\x9b\xf3\x5c\xd3\xb1\ +\x77\xdd\x52\xf1\xff\x15\xc7\x69\x37\xdc\x13\xcb\xef\x5f\x13\xf3\ +\x6d\x45\x5f\xde\x34\x35\x71\xe9\xa5\xfd\x6e\xbf\x76\xfa\x26\xd2\ +\xc8\x5d\x7b\x10\xe8\x34\x9e\x1b\x82\x1c\xf7\xa6\xfd\xa3\x7b\x9f\ +\xba\x72\xa5\x5f\x1b\x5b\x61\x6c\x6a\xb9\x5e\x9c\x5e\x7d\x52\x90\ +\xe3\x40\x03\x00\x61\xc8\x6d\x36\x27\xfa\xb5\xd1\x7f\x69\x69\x94\ +\xea\x0f\x54\xcc\xdd\x85\xe9\x95\xb3\x31\x62\xed\x0b\x85\xe9\x95\ +\xb3\x2a\xe6\x6e\xe0\x83\x4d\x3e\x77\x44\x5f\xbb\x96\x9e\x64\xb0\ +\x31\x5c\x5a\x52\xf4\x8d\x9d\xba\x19\x69\xa0\xab\x7b\x73\xbc\xe0\ +\x14\xf7\xcb\x53\xf3\xbb\xb8\xba\x75\xa1\x3a\x37\x7a\x6f\x6d\xb6\ +\x7c\x38\x15\x63\x31\x50\x9b\x2d\x1f\xae\xce\x8d\xde\xdb\xcf\xb3\ +\xff\x07\x10\xa4\x39\x53\xa9\xe5\x39\x8b\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x07\x56\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x07\x08\x49\x44\x41\x54\x78\x9c\xed\ +\x9c\x5f\x88\x5c\xe5\x19\xc6\x9f\x77\x66\x76\x09\xc1\x6e\x1a\x8d\ +\xba\x39\xe7\x3b\x67\x47\x0d\x51\x34\x29\x18\xb1\x5e\x95\x92\xfe\ +\x21\x85\xd6\xa2\x17\x35\x42\x62\x12\x21\x9a\xa0\xe8\x45\xaf\x42\ +\x11\x44\xbc\xd0\x8b\x42\x29\x88\x26\xa4\xd0\x56\x13\x4d\xc5\x16\ +\x6f\x04\x21\xd4\x48\x2b\x95\x80\x78\x21\x06\x61\x31\x30\x9e\x33\ +\x67\xd8\x98\x60\xcc\x22\x51\xd7\x39\xf3\x7a\xd1\x0d\xca\xce\xd9\ +\x3f\x33\x3b\xe7\x7b\xbf\x99\xef\xfd\xc1\xde\x9c\x6f\x86\x79\x76\ +\x9e\xdf\x9e\xef\x9c\xb3\xe7\x7c\x80\xa2\x28\x8a\xa2\x28\x3e\x42\ +\xd2\x01\x6c\x51\xaf\xd7\xd7\xcc\xcd\xcd\x5d\x25\x9d\xc3\x26\xb5\ +\x5a\x2d\x4f\x92\xe4\xe2\x52\xaf\x19\x79\x01\x6e\xb8\x61\xe3\x54\ +\x9e\x57\x9e\x67\xc6\x0e\x00\x55\xe9\x3c\x02\x34\x99\xe9\xa9\x66\ +\xb3\xf9\x97\xa2\xc1\x91\xfe\x42\x36\x6c\xd8\xf0\x83\x6a\x75\xec\ +\x34\x80\x3b\x01\x54\xa4\xf3\x08\x31\x41\x84\xdf\x4e\x4c\xac\xcb\ +\x66\x67\x67\xdf\x5f\x38\x38\xd2\x5f\xca\xda\xb5\x6b\x1e\x04\x50\ +\x97\xce\xe1\x02\x44\xfc\x64\xd1\xf6\x91\x16\x00\xe8\x6c\x91\x4e\ +\xe0\x10\x26\x8e\xe3\xf5\x0b\x37\x8e\xb4\x00\xcc\x95\x91\xfe\xfd\ +\x7a\xa5\xdd\x6e\x77\x4d\xf9\xfa\x05\x79\x8e\x0a\xe0\x39\x35\xe9\ +\x00\x82\x7c\x04\xf0\x1f\xa4\x43\x0c\x12\x66\xdc\x45\x44\x87\x7a\ +\x79\x8f\xcf\x02\x7c\x96\xa6\xad\xd7\xa5\x43\x0c\x92\x28\x0a\x7a\ +\x7e\x8f\x4e\x01\x9e\xa3\x02\x78\x8e\x0a\xe0\x39\x2a\x80\xe7\xa8\ +\x00\x9e\xa3\x02\x78\x8e\x0a\xe0\x39\x2a\x80\xe7\xa8\x00\x9e\xa3\ +\x02\x78\x8e\x0a\xe0\x39\x2a\x80\xe7\xa8\x00\x9e\xa3\x02\x78\xce\ +\x92\xff\x0e\x9e\x9a\x0a\xb6\x75\x3a\xf4\x23\x66\x1a\xd2\x7f\x1b\ +\xf3\xcd\x4b\x0c\x5e\x6f\x8c\xd9\xdf\xbd\xb9\xc3\x40\xe5\x62\xad\ +\x56\x7b\xab\xd1\x68\x7c\x5e\x5a\x34\x47\x28\x2c\x36\x08\x82\xb5\ +\xd5\x2a\x9d\xe8\x74\x70\x37\x00\x10\xb1\xdd\x54\x76\xd8\x44\xc4\ +\x47\xbb\x37\x13\x00\x46\x9e\x7f\x73\x29\x8a\x82\x7d\xa3\x76\xcf\ +\xc0\x42\x0a\xa7\x80\x6a\x95\xfe\x08\xfc\xbf\x7c\x8f\x59\x07\xd0\ +\x2b\x71\x1c\xdf\x28\x1d\xa4\x4c\x8a\x04\xa8\x01\xd8\x6b\x3b\x88\ +\xa3\xac\x61\xce\x77\x49\x87\x28\x93\x2e\x01\xc2\x30\x5c\x07\x60\ +\xad\x40\x16\x57\xe9\xfd\x3e\xab\x21\xa2\xeb\x18\x80\x99\xc9\x83\ +\x47\x06\x7b\xa1\xd4\x2f\xc3\x18\xf3\x63\x00\xa6\x52\xa9\x9c\x5a\ +\xee\x41\xce\x32\xd0\xd3\x40\x39\x28\x8a\xc2\x17\x88\xf8\x34\x11\ +\xff\x93\x39\x9f\xae\xd7\x83\x5b\x6c\x87\x50\x01\x64\xa0\x38\x0e\ +\x8e\x00\x38\xf8\xbd\x6d\x1b\xf2\xbc\xb7\x5b\xba\x07\x41\x1f\xe7\ +\xf7\x7c\xef\xa8\x9d\x1a\x45\x91\x79\x0f\xe0\x3b\x2c\x7d\x1c\xc5\ +\x71\x70\x84\x99\x1e\xea\x1a\x20\x58\x5f\xbf\x40\xf7\x00\x76\x59\ +\xb4\x7c\x00\x39\xc0\x47\x6c\x07\x1a\xd2\x2b\x7c\x43\xc9\x92\xe5\ +\x33\xd3\xde\x34\xcd\x4e\xda\x0e\xa5\x02\xd8\x81\x8c\x09\x0f\x33\ +\x63\xd1\xf2\x9b\xcd\xe6\x71\xeb\xa9\xa0\x53\x80\x0d\xc8\x98\xf0\ +\x30\x11\x1e\x2e\x18\x13\x2d\x1f\x50\x01\xca\x66\xa9\xf2\x3b\xd2\ +\xe5\x03\x2a\x40\x99\x2c\x57\xfe\x1e\xe9\xf2\x01\x3d\x06\x28\x0b\ +\x8a\xa2\xf0\x05\xc0\xed\xf2\x01\xdd\x03\x94\xc1\x95\xf2\x0f\x14\ +\x8c\x39\xb1\xdb\xff\x3e\x2a\xc0\x60\x59\x49\xf9\xc7\x6c\x87\x5a\ +\x0a\x15\x60\x70\x0c\x5d\xf9\x80\x0a\x30\x28\x28\x8a\xc2\xe7\xb1\ +\x48\xf9\x44\xd8\xe7\x62\xf9\x80\x0a\x30\x08\xae\x94\x7f\xb0\x60\ +\xac\x43\x84\x7d\x49\x92\xbd\x64\x3b\xd4\x4a\xd1\xb3\x80\xd5\xb1\ +\x54\xf9\x20\xc2\xcb\x9d\x0e\x9d\x37\xc6\xfc\xca\x4a\x18\xc2\xed\ +\xcc\xbd\xdd\xbf\xa9\x02\xac\x82\x38\x0e\xfe\xcc\x5c\x5c\x3e\x00\ +\x30\x63\x37\x11\xef\xb6\x95\xa7\xc7\xee\x01\xe8\x14\xd0\x37\xc6\ +\x98\x4d\xcc\xf4\x98\x74\x8e\xd5\xa2\x02\xf4\xcf\x35\xd2\x01\x06\ +\x81\x0a\xd0\x27\xcd\x66\xf3\x3d\x00\x1f\x4a\xe7\x58\x2d\x7a\x0c\ +\xd0\x3f\x39\x50\xd9\x01\x74\x4e\x01\xd8\x5c\xfc\x12\xfe\x0f\x11\ +\x52\x5b\x81\x98\xc9\x00\xf8\x69\x2f\xef\x51\x01\x56\x41\x9a\xa6\ +\xad\x28\x8a\xb6\x2f\x26\x01\x33\x4d\x55\xab\xf9\xde\x46\x63\xa6\ +\x61\x23\x4f\x14\x05\xf7\x00\xd4\x93\x00\x3a\x05\xac\x92\x34\x4d\ +\x5b\x40\x65\x3b\x80\xe9\x85\x63\x44\x98\x6a\xb7\xab\x6f\xd7\xeb\ +\x93\x75\xfb\xc9\x56\x86\x88\x00\xc6\x98\x7b\xe3\x38\x38\x66\x4c\ +\xf0\x8c\x31\xe6\x6a\x89\x0c\x83\x64\x98\x25\xb0\x2e\x40\x1c\x87\ +\xf7\x11\xf1\xbf\x98\x69\x17\x11\x1d\x22\xc2\x7f\x6f\xba\xe9\xfa\ +\xeb\x6c\xe7\x18\x34\xc3\x2a\x81\x75\x01\x98\xb1\xe0\xc2\x08\xdf\ +\x3a\x37\x57\x7d\x4b\x25\x90\xc1\xba\x00\x44\x7c\xae\x60\xeb\x6d\ +\x2a\x81\x0c\xd6\x05\x68\xb7\xf1\x34\x80\x56\xf7\x88\x4a\x20\x81\ +\x75\x01\x5a\xad\x56\xd2\xe9\x60\x3b\x54\x02\x27\x24\x10\x39\x0b\ +\xc8\xb2\x6c\x7a\x39\x09\x26\x27\x27\xaf\xb5\x1e\x6c\xc0\x0c\x83\ +\x04\x62\xd7\x01\x96\x93\x60\x6c\xac\x72\x4a\x25\x28\x1f\xd1\x0b\ +\x41\x2a\x81\xbc\x04\xe2\x57\x02\x55\x82\xef\x24\x30\xc6\x84\xb6\ +\x73\x89\x0b\x00\xac\x44\x02\x3f\x8e\x09\x88\xf8\x09\xdb\x99\x9c\ +\x10\x00\x58\x4e\x02\x6c\xf1\x41\x02\x80\x36\xda\xce\xe3\x8c\x00\ +\x80\x4a\x00\x74\x4e\xd8\xce\xe2\x94\x00\x80\x5f\x12\x8c\x8f\xb7\ +\x7f\x02\xe0\x4f\xcc\x78\x8d\x08\x3b\xd3\xb4\x65\x5d\x00\x27\xef\ +\x07\xc8\xb2\x6c\x3a\x0c\xc3\xed\x95\x0a\x4e\xa1\x7b\x99\xb6\x2d\ +\x63\x63\xd5\x7f\x4f\x4e\x4e\xfe\x7c\x66\x66\xe6\xbc\x44\xbe\x41\ +\x71\xf6\xec\xb9\x4f\x01\xfc\x5e\x32\x83\x73\x7b\x80\x2b\x2c\xb3\ +\x27\xd8\x3a\x2f\xc1\xd0\xef\x09\xa4\xe9\x63\x0f\x40\x8f\x46\x91\ +\xf9\xcd\xe0\xa3\x2c\x06\x4f\xa3\x78\xb1\xc6\xad\xa3\xb2\x27\x90\ +\xa4\x9f\x29\xe0\x17\x80\x33\x8b\x47\x6f\x1d\x1b\xab\xbe\x09\xe0\ +\x4e\x00\x1d\xe9\x30\xc3\x88\xb3\x53\x40\x0f\x6c\x8b\xe3\x8d\xb7\ +\x4b\x87\x18\x56\x46\x41\x00\x30\xd7\x46\x7e\x5d\xff\xb2\x18\x01\ +\x01\xe8\xb9\x34\x4d\xcf\x4a\xa7\x18\x56\x7a\x3e\x06\x60\xe6\x67\ +\x89\x70\xba\x8c\x30\xc5\xd0\xfd\x00\x76\x16\x8e\x10\x1f\x4d\x92\ +\xec\x71\x7b\x59\x46\x8f\x9e\x05\x20\xc2\x69\x5b\x4b\xc5\x1a\x63\ +\x76\x11\xf1\xef\x8a\x73\xf0\xd1\x24\x69\x1d\x80\x43\x47\xa4\xc3\ +\x88\xb3\x53\xc0\x7c\xf9\x2f\xa2\x20\xa3\x96\x3f\x38\x9c\x14\xc0\ +\x18\xb3\x5b\xcb\xb7\x83\x73\x02\xcc\x97\xff\x77\x68\xf9\x56\x70\ +\x4a\x00\x2d\xdf\x3e\xce\x08\x10\xc7\xe1\x03\x5a\xbe\x7d\x9c\x10\ +\x20\x8e\xc3\x07\x98\xf1\x37\x68\xf9\xd6\x11\x17\x40\xcb\x97\x45\ +\x54\x80\x38\x0e\xf7\x68\xf9\xb2\x88\x09\x30\x5f\xfe\x5f\x8b\x32\ +\x68\xf9\xf6\x10\x11\x40\xcb\x77\x07\x81\xf5\x01\x82\x5f\x6a\xf9\ +\xee\x20\xb0\x3e\x00\x1d\x2c\xfa\x5c\x2d\x5f\x06\xeb\x37\x85\x12\ +\xe1\xf2\xc2\x15\x2d\x1d\x2f\x7f\x7f\x14\x85\xfb\xa4\x43\xac\x90\ +\x9e\xff\xa0\x05\xee\x0a\xae\x3e\x0b\xe4\xbf\x06\xb0\x7e\x7e\xc3\ +\xe1\x24\x69\x3d\x02\x37\xcb\x07\x80\xea\xfc\xcf\x48\x62\x5d\x80\ +\x24\x49\xce\x04\x41\xb0\xb9\x56\xa3\x9f\xe5\x39\xd2\x2c\xcb\xde\ +\xb5\x9d\x41\xf9\x0e\x91\xe7\x02\x5a\xad\xd6\x05\x00\xaf\x4a\x7c\ +\xb6\xcf\x10\x51\xd7\x5e\x56\xfc\x4a\xa0\x62\x8d\x2f\xb3\x2c\xbb\ +\xb4\x70\xa3\x0a\xe0\x09\x44\x7c\x1c\x40\x7b\xe1\x76\x15\xc0\x0f\ +\x4e\x5e\xbe\x3c\x57\xf8\x08\x9a\x93\xcf\x06\x3a\xc6\x3b\xcc\xfc\ +\x0f\xe9\x10\xfd\x40\x44\xed\x4a\x85\x3f\xf8\xe4\x93\xd6\xff\x16\ +\x7b\x8d\x0a\xb0\x3c\x67\x9a\xcd\xd6\x73\xd2\x21\xca\x42\xa7\x00\ +\xcf\x51\x01\x3c\x47\x05\xf0\x1c\x15\xc0\x73\x54\x00\xcf\x51\x01\ +\x3c\x47\x05\xf0\x1c\x15\xc0\x73\x54\x00\xcf\x51\x01\x3c\x47\x05\ +\xf0\x1c\x15\xc0\x73\x54\x00\xcf\x51\x01\x3c\xa7\x8f\x45\xa2\x70\ +\x57\x14\x15\x2d\xdc\x39\xcc\xf0\x0f\xa5\x13\x48\xd1\xc7\x22\x51\ +\x74\xa8\x8c\x20\x8a\x0c\x3a\x05\x78\x8e\x0a\xe0\x39\x5d\x02\xd4\ +\x6a\xb5\x5c\x22\x88\xc3\x8c\xf4\xf7\xd1\x25\x40\x92\x24\x17\x01\ +\x34\x05\xb2\x38\x09\x11\x3e\x90\xce\x50\x26\x85\x53\x00\x33\x3d\ +\x65\x3b\x88\xa3\x7c\xfc\xf5\xd7\xed\x63\xd2\x21\xca\xa4\xf0\xa1\ +\xc7\xd9\xd9\xd9\xf7\x27\x26\xd6\x65\x44\xd8\x06\x60\xc2\x72\x26\ +\x17\x68\x03\x78\x23\xcf\x79\xe7\xcc\xcc\xcc\x05\xe9\x30\x65\x42\ +\xcb\xbd\x20\x8e\xe3\xf5\xed\x76\x7b\x64\x9f\x8e\x2d\x62\x7c\x7c\ +\xfc\x8b\x46\xa3\xf1\x95\x74\x0e\x45\x51\x14\x45\x51\x94\xb2\xf8\ +\x16\x71\x67\xe1\x7d\x0f\xc0\x8e\x36\x00\x00\x00\x00\x49\x45\x4e\ \x44\xae\x42\x60\x82\ \x00\x00\x12\x5f\ \x89\ @@ -3887,73 +4636,85 @@ " qt_resource_name = b"\ +\x00\x0e\ +\x0c\x9f\x83\xa7\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x05\xb4\xff\x07\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ \x00\x0d\ \x0f\xcb\xdd\xc7\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x62\x00\x69\x00\x72\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x13\ +\x0b\xf6\x2f\xc7\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x64\x00\x61\x00\x74\x00\x65\x00\x74\x00\x6f\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ \x00\x16\ \x09\x08\x77\x47\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6c\x00\x61\x00\x70\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x6d\x00\x61\x00\x6c\ \x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ -\x09\x5b\x04\x47\ +\x0a\x01\x56\x27\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x73\x00\x2e\x00\x70\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x74\x00\x72\x00\x69\x00\x70\x00\x72\x00\x65\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ -\x00\x0c\ -\x0b\x5d\x9f\x87\ +\x00\x0f\ +\x00\x0a\xc1\xa7\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x70\x00\x64\x00\x66\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0c\ -\x0e\x77\x9f\x87\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x63\x00\x61\x00\x6d\x00\x65\x00\x72\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x0f\x56\x6a\x87\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6d\x00\x61\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0f\ -\x06\x4f\x71\xa7\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x74\x00\x61\ +\x00\x6c\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x13\ +\x0c\x87\xdd\x47\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x76\x00\x69\x00\x64\x00\x75\x00\x61\x00\x6c\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ \x00\x0d\ \x0a\x0d\xda\x27\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0c\ +\x0e\x77\x9f\x87\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6d\x00\x61\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0d\ \x03\x0b\xdd\x67\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x66\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x11\ -\x05\xb4\xff\x07\ -\x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\ -\x00\x13\ -\x0b\xf6\x2f\xc7\ +\x00\x0f\ +\x06\x4f\x71\xa7\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x64\x00\x61\x00\x74\x00\x65\x00\x74\x00\x6f\x00\x74\x00\x61\x00\x6c\x00\x73\x00\x2e\x00\x70\ -\x00\x6e\x00\x67\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x10\ -\x00\x2b\xf6\x07\ +\x08\x98\xb1\x67\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x61\x00\x72\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6c\x00\x61\x00\x70\x00\x77\x00\x69\x00\x6e\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x13\ -\x0a\x01\x56\x27\ +\x09\x5b\x04\x47\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x74\x00\x72\x00\x69\x00\x70\x00\x72\x00\x65\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x6c\x00\x69\x00\x73\x00\x74\x00\x73\x00\x2e\x00\x70\ \x00\x6e\x00\x67\ -\x00\x13\ -\x0c\x87\xdd\x47\ +\x00\x0c\ +\x0b\x5d\x9f\x87\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x69\x00\x6e\x00\x64\x00\x69\x00\x76\x00\x69\x00\x64\x00\x75\x00\x61\x00\x6c\x00\x2e\x00\x70\ -\x00\x6e\x00\x67\ -\x00\x17\ -\x0f\x56\x6a\x87\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x70\x00\x64\x00\x66\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x05\xc9\xdb\xa7\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x6c\x00\x6f\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x74\x00\x6f\x00\x74\x00\x61\ -\x00\x6c\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0e\ -\x0c\x9f\x83\xa7\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x73\x00\x74\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x00\x2b\xf6\x07\ \x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x63\x00\x6f\x00\x6e\x00\x5f\x00\x63\x00\x6f\x00\x6d\x00\x70\x00\x61\x00\x72\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x11\ \x05\xf4\xbe\x07\ \x00\x69\ @@ -3962,64 +4723,73 @@ " qt_resource_struct_v1 = b"\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x10\x00\x00\x00\x01\ -\x00\x00\x01\x72\x00\x00\x00\x00\x00\x01\x00\x00\xa4\x58\ -\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x88\xea\ -\x00\x00\x01\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x95\x57\ -\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\xdd\xa8\ -\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x00\x75\x7c\ -\x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x05\x14\ -\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x3d\x45\ -\x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x00\xab\xb2\ -\x00\x00\x00\xde\x00\x00\x00\x00\x00\x01\x00\x00\x82\x03\ -\x00\x00\x00\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x46\xbe\ -\x00\x00\x01\x46\x00\x00\x00\x00\x00\x01\x00\x00\x9f\xf6\ -\x00\x00\x01\xc4\x00\x00\x00\x00\x00\x01\x00\x00\xad\xa2\ -\x00\x00\x02\x24\x00\x00\x00\x00\x00\x01\x00\x00\xd2\xae\ -\x00\x00\x00\x9c\x00\x00\x00\x00\x00\x01\x00\x00\x51\x7d\ -\x00\x00\x01\xf0\x00\x00\x00\x00\x00\x01\x00\x00\xc3\x5a\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x13\x00\x00\x00\x01\ +\x00\x00\x00\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x59\x30\ +\x00\x00\x02\x8a\x00\x00\x00\x00\x00\x01\x00\x01\x04\xaa\ +\x00\x00\x01\xb6\x00\x00\x00\x00\x00\x01\x00\x00\xc1\xce\ +\x00\x00\x00\x22\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xfa\ +\x00\x00\x02\x6a\x00\x00\x00\x00\x00\x01\x00\x00\xfd\xff\ +\x00\x00\x02\xb0\x00\x00\x00\x00\x00\x01\x00\x01\x0c\x04\ +\x00\x00\x01\xd6\x00\x00\x00\x00\x00\x01\x00\x00\xce\x3b\ +\x00\x00\x01\xfa\x00\x00\x00\x00\x00\x01\x00\x00\xda\xc2\ +\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x1f\x0f\ +\x00\x00\x02\x20\x00\x00\x00\x00\x00\x01\x00\x00\xe9\xc7\ +\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x00\x57\x40\ +\x00\x00\x01\x78\x00\x00\x00\x00\x00\x01\x00\x00\x96\xe8\ +\x00\x00\x02\x4c\x00\x00\x00\x00\x00\x01\x00\x00\xf3\x40\ +\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x01\x00\x00\x1a\xad\ +\x00\x00\x01\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x81\x30\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x00\x9d\xcf\ +\x00\x00\x01\x18\x00\x00\x00\x00\x00\x01\x00\x00\x71\xdc\ +\x00\x00\x00\x4a\x00\x00\x00\x00\x00\x01\x00\x00\x15\x99\ " qt_resource_struct_v2 = b"\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x10\x00\x00\x00\x01\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x13\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x01\x72\x00\x00\x00\x00\x00\x01\x00\x00\xa4\x58\ -\x00\x00\x01\x61\x87\x2a\x8c\x6a\ -\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x88\xea\ -\x00\x00\x01\x61\x48\x23\x5c\x9f\ -\x00\x00\x01\x1e\x00\x00\x00\x00\x00\x01\x00\x00\x95\x57\ -\x00\x00\x01\x61\x48\x1e\xf7\x84\ -\x00\x00\x02\x46\x00\x00\x00\x00\x00\x01\x00\x00\xdd\xa8\ -\x00\x00\x01\x61\x48\x57\x3d\xd8\ -\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x00\x75\x7c\ -\x00\x00\x01\x62\x1c\x57\x9d\x7f\ -\x00\x00\x00\x20\x00\x00\x00\x00\x00\x01\x00\x00\x05\x14\ -\x00\x00\x01\x61\xb0\x7d\x61\xdf\ -\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x3d\x45\ -\x00\x00\x01\x61\x48\x24\x30\xaf\ -\x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x00\xab\xb2\ -\x00\x00\x01\x61\x48\x29\xad\x8b\ -\x00\x00\x00\xde\x00\x00\x00\x00\x00\x01\x00\x00\x82\x03\ -\x00\x00\x01\x61\x47\xfd\x70\xda\ -\x00\x00\x00\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x46\xbe\ -\x00\x00\x01\x61\xba\x09\xcd\xac\ -\x00\x00\x01\x46\x00\x00\x00\x00\x00\x01\x00\x00\x9f\xf6\ -\x00\x00\x01\x61\x48\x45\x61\xc6\ -\x00\x00\x01\xc4\x00\x00\x00\x00\x00\x01\x00\x00\xad\xa2\ -\x00\x00\x01\x61\xb5\x44\x71\x40\ -\x00\x00\x02\x24\x00\x00\x00\x00\x00\x01\x00\x00\xd2\xae\ -\x00\x00\x01\x61\xd4\x67\x77\x38\ -\x00\x00\x00\x9c\x00\x00\x00\x00\x00\x01\x00\x00\x51\x7d\ -\x00\x00\x01\x61\x87\x77\x5e\x6d\ -\x00\x00\x01\xf0\x00\x00\x00\x00\x00\x01\x00\x00\xc3\x5a\ -\x00\x00\x01\x61\x48\x4c\x17\xc5\ +\x00\x00\x00\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x59\x30\ +\x00\x00\x01\x65\xfe\x2e\xd2\x30\ +\x00\x00\x02\x8a\x00\x00\x00\x00\x00\x01\x00\x01\x04\xaa\ +\x00\x00\x01\x61\x87\x2a\x8c\x00\ +\x00\x00\x01\xb6\x00\x00\x00\x00\x00\x01\x00\x00\xc1\xce\ +\x00\x00\x01\x61\x48\x23\x5a\xa0\ +\x00\x00\x00\x22\x00\x00\x00\x00\x00\x01\x00\x00\x0a\xfa\ +\x00\x00\x01\x61\x48\x1e\xf5\xa0\ +\x00\x00\x02\x6a\x00\x00\x00\x00\x00\x01\x00\x00\xfd\xff\ +\x00\x00\x01\x6d\x3a\xdf\xa9\x32\ +\x00\x00\x02\xb0\x00\x00\x00\x00\x00\x01\x00\x01\x0c\x04\ +\x00\x00\x01\x61\x48\x57\x3b\xe0\ +\x00\x00\x01\xd6\x00\x00\x00\x00\x00\x01\x00\x00\xce\x3b\ +\x00\x00\x01\x62\x1c\x57\x9a\x70\ +\x00\x00\x01\xfa\x00\x00\x00\x00\x00\x01\x00\x00\xda\xc2\ +\x00\x00\x01\x61\xbf\xec\x60\xb8\ +\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x1f\x0f\ +\x00\x00\x01\x61\xb0\x7d\x5f\xb0\ +\x00\x00\x02\x20\x00\x00\x00\x00\x00\x01\x00\x00\xe9\xc7\ +\x00\x00\x01\x61\x48\x24\x2d\x90\ +\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x00\x57\x40\ +\x00\x00\x01\x61\x48\x29\xab\xd0\ +\x00\x00\x01\x78\x00\x00\x00\x00\x00\x01\x00\x00\x96\xe8\ +\x00\x00\x01\x61\x47\xfd\x6f\x98\ +\x00\x00\x02\x4c\x00\x00\x00\x00\x00\x01\x00\x00\xf3\x40\ +\x00\x00\x01\x61\xba\x09\xcd\x20\ +\x00\x00\x00\x6a\x00\x00\x00\x00\x00\x01\x00\x00\x1a\xad\ +\x00\x00\x01\x61\x48\x45\x61\x90\ +\x00\x00\x01\x4c\x00\x00\x00\x00\x00\x01\x00\x00\x81\x30\ +\x00\x00\x01\x61\xb5\x44\x71\x28\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\x61\x48\x1f\x64\x39\ +\x00\x00\x01\x61\xd4\x67\x77\x30\ +\x00\x00\x01\x98\x00\x00\x00\x00\x00\x01\x00\x00\x9d\xcf\ +\x00\x00\x01\x61\x87\x77\x5c\x10\ +\x00\x00\x01\x18\x00\x00\x00\x00\x00\x01\x00\x00\x71\xdc\ +\x00\x00\x01\x61\x48\x4c\x14\x68\ +\x00\x00\x00\x4a\x00\x00\x00\x00\x00\x01\x00\x00\x15\x99\ +\x00\x00\x01\x61\x48\x1f\x63\x00\ " -qt_version = QtCore.qVersion().split('.') -if qt_version < ['5', '8', '0']: +qt_version = [int(v) for v in QtCore.qVersion().split('.')] +if qt_version < [5, 8, 0]: rcc_version = 1 qt_resource_struct = qt_resource_struct_v1 else: diff --git a/lapwing.py b/lapwing.py deleted file mode 100644 index 329e8d5..0000000 --- a/lapwing.py +++ /dev/null @@ -1,22 +0,0 @@ -# import the GUI forms that we create with Qt Creator -import code_MainWindow - -# import basic Python libraries -import sys - -from PyQt5.QtWidgets import ( - QApplication, - QStyleFactory - ) - - -def main(): - app = QApplication(sys.argv) - QApplication.setStyle(QStyleFactory.create( "Fusion")) - form = code_MainWindow.MainWindow() - form.show() - app.exec_() - - -if __name__ == '__main__': - main()